Mage_Core_Modules - Version 1.9.3.1

Version Notes

1.9.3.1

Download this release

Release Info

Developer Magento Core Team
Extension Mage_Core_Modules
Version 1.9.3.1
Comparing to
See all releases


Code changes from version 1.9.3.0 to 1.9.3.1

RELEASE_NOTES.txt CHANGED
@@ -1,3 +1,13 @@
 
 
 
 
 
 
 
 
 
 
1
  ==== 1.9.3.0 ====
2
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1
+ ==== 1.9.3.1 ====
2
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4
+ ] NOTE: Current Release Notes are maintained at: [
5
+ ] [
6
+ ] http://merch.docs.magento.com/ce/user_guide/magento/release-notes-ce-1.9.3.1.html [
7
+ ] [
8
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10
+
11
  ==== 1.9.3.0 ====
12
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
13
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
app/Mage.php CHANGED
@@ -171,7 +171,7 @@ final class Mage
171
  'major' => '1',
172
  'minor' => '9',
173
  'revision' => '3',
174
- 'patch' => '0',
175
  'stability' => '',
176
  'number' => '',
177
  );
171
  'major' => '1',
172
  'minor' => '9',
173
  'revision' => '3',
174
+ 'patch' => '1',
175
  'stability' => '',
176
  'number' => '',
177
  );
app/code/core/Mage/Api/Model/Server/Handler/Abstract.php CHANGED
@@ -553,16 +553,21 @@ abstract class Mage_Api_Model_Server_Handler_Abstract
553
  * See allowed characters in XML:
554
  * @link http://www.w3.org/TR/2000/REC-xml-20001006#NT-Char
555
  *
556
- * @param array $result
557
  * @return mixed
558
  */
559
- public function processingMethodResult(array $result)
560
  {
561
- foreach ($result as &$row) {
562
- if (!is_null($row) && !is_bool($row) && !is_numeric($row)) {
563
- $row = $this->processingRow($row);
 
 
564
  }
 
 
565
  }
 
566
  return $result;
567
  }
568
 
553
  * See allowed characters in XML:
554
  * @link http://www.w3.org/TR/2000/REC-xml-20001006#NT-Char
555
  *
556
+ * @param mixed $result
557
  * @return mixed
558
  */
559
+ public function processingMethodResult($result)
560
  {
561
+ if (is_null($result) || is_bool($result) || is_numeric($result) || is_object($result)) {
562
+ return $result;
563
+ } elseif (is_array($result)) {
564
+ foreach ($result as $key => $value) {
565
+ $result[$key] = $this->processingMethodResult($value);
566
  }
567
+ } else {
568
+ $result = $this->processingRow($result);
569
  }
570
+
571
  return $result;
572
  }
573
 
app/code/core/Mage/Catalog/Helper/Product/Type/Composite.php CHANGED
@@ -127,7 +127,7 @@ class Mage_Catalog_Helper_Product_Type_Composite extends Mage_Core_Helper_Abstra
127
  'includeTax' => Mage::helper('tax')->priceIncludesTax() ? 'true' : 'false',
128
  'showIncludeTax' => Mage::helper('tax')->displayPriceIncludingTax(),
129
  'showBothPrices' => Mage::helper('tax')->displayBothPrices(),
130
- 'idSuffix' => '',
131
  'oldPlusDisposition' => 0,
132
  'plusDisposition' => 0,
133
  'plusDispositionTax' => 0,
127
  'includeTax' => Mage::helper('tax')->priceIncludesTax() ? 'true' : 'false',
128
  'showIncludeTax' => Mage::helper('tax')->displayPriceIncludingTax(),
129
  'showBothPrices' => Mage::helper('tax')->displayBothPrices(),
130
+ 'idSuffix' => '_clone',
131
  'oldPlusDisposition' => 0,
132
  'plusDisposition' => 0,
133
  'plusDispositionTax' => 0,
app/code/core/Mage/CatalogRule/Model/Resource/Rule.php CHANGED
@@ -733,7 +733,8 @@ class Mage_CatalogRule_Model_Resource_Rule extends Mage_Rule_Model_Resource_Abst
733
  ->where('customer_group_id = ?', $customerGroupId)
734
  ->where('product_id = ?', $productId)
735
  ->where('from_time = 0 or from_time < ?', $date)
736
- ->where('to_time = 0 or to_time > ?', $date);
 
737
 
738
  return $adapter->fetchAll($select);
739
  }
733
  ->where('customer_group_id = ?', $customerGroupId)
734
  ->where('product_id = ?', $productId)
735
  ->where('from_time = 0 or from_time < ?', $date)
736
+ ->where('to_time = 0 or to_time > ?', $date)
737
+ ->order('sort_order');
738
 
739
  return $adapter->fetchAll($select);
740
  }
app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext.php CHANGED
@@ -350,39 +350,39 @@ class Mage_CatalogSearch_Model_Resource_Fulltext extends Mage_Core_Model_Resourc
350
  if ($like) {
351
  $likeCond = '(' . join(' OR ', $like) . ')';
352
  }
 
353
 
354
- $mainTableAlias = 's';
355
- $fields = array('product_id');
356
-
357
- $select = $adapter->select()
358
- ->from(array($mainTableAlias => $this->getMainTable()), $fields)
359
- ->joinInner(array('e' => $this->getTable('catalog/product')),
360
- 'e.entity_id = s.product_id',
361
- array())
362
- ->where($mainTableAlias . '.store_id = ?', (int)$query->getStoreId());
363
-
364
- $where = "";
365
- if ($searchType == Mage_CatalogSearch_Model_Fulltext::SEARCH_TYPE_FULLTEXT
366
- || $searchType == Mage_CatalogSearch_Model_Fulltext::SEARCH_TYPE_COMBINE
367
- ) {
368
- $bind[':query'] = implode(' ', $preparedTerms[0]);
369
- $where = Mage::getResourceHelper('catalogsearch')
370
- ->chooseFulltext($this->getMainTable(), $mainTableAlias, $select);
371
- }
372
- if ($likeCond != '' && $searchType == Mage_CatalogSearch_Model_Fulltext::SEARCH_TYPE_COMBINE) {
373
- $where .= ($where ? ' OR ' : '') . $likeCond;
374
- } elseif ($likeCond != '' && $searchType == Mage_CatalogSearch_Model_Fulltext::SEARCH_TYPE_LIKE) {
375
- $select->columns(array('relevance' => new Zend_Db_Expr(0)));
376
- $where = $likeCond;
377
- }
378
 
379
- if ($where != '') {
380
- $select->where($where);
381
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
382
 
383
- $this->_foundData = $adapter->fetchPairs($select, $bind);
 
384
  }
385
 
 
 
386
  return $this;
387
  }
388
 
350
  if ($like) {
351
  $likeCond = '(' . join(' OR ', $like) . ')';
352
  }
353
+ }
354
 
355
+ $mainTableAlias = 's';
356
+ $fields = array('product_id');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
357
 
358
+ $select = $adapter->select()
359
+ ->from(array($mainTableAlias => $this->getMainTable()), $fields)
360
+ ->joinInner(array('e' => $this->getTable('catalog/product')),
361
+ 'e.entity_id = s.product_id',
362
+ array())
363
+ ->where($mainTableAlias . '.store_id = ?', (int)$query->getStoreId());
364
+
365
+ $where = "";
366
+ if ($searchType == Mage_CatalogSearch_Model_Fulltext::SEARCH_TYPE_FULLTEXT
367
+ || $searchType == Mage_CatalogSearch_Model_Fulltext::SEARCH_TYPE_COMBINE
368
+ ) {
369
+ $bind[':query'] = implode(' ', $preparedTerms[0]);
370
+ $where = Mage::getResourceHelper('catalogsearch')
371
+ ->chooseFulltext($this->getMainTable(), $mainTableAlias, $select);
372
+ }
373
+ if ($likeCond != '' && $searchType == Mage_CatalogSearch_Model_Fulltext::SEARCH_TYPE_COMBINE) {
374
+ $where .= ($where ? ' OR ' : '') . $likeCond;
375
+ } elseif ($likeCond != '' && $searchType == Mage_CatalogSearch_Model_Fulltext::SEARCH_TYPE_LIKE) {
376
+ $select->columns(array('relevance' => new Zend_Db_Expr(0)));
377
+ $where = $likeCond;
378
+ }
379
 
380
+ if ($where != '') {
381
+ $select->where($where);
382
  }
383
 
384
+ $this->_foundData = $adapter->fetchPairs($select, $bind);
385
+
386
  return $this;
387
  }
388
 
app/code/core/Mage/CatalogSearch/Model/Resource/Fulltext/Collection.php CHANGED
@@ -127,7 +127,7 @@ class Mage_CatalogSearch_Model_Resource_Fulltext_Collection extends Mage_Catalog
127
  if (!empty($foundIds)) {
128
  $this->addIdFilter($foundIds);
129
  } else {
130
- $this->getSelect()->orWhere('FALSE');
131
  }
132
  $this->_isSearchFiltersApplied = true;
133
 
127
  if (!empty($foundIds)) {
128
  $this->addIdFilter($foundIds);
129
  } else {
130
+ $this->getSelect()->where('FALSE');
131
  }
132
  $this->_isSearchFiltersApplied = true;
133
 
app/code/core/Mage/Cms/Block/Page.php CHANGED
@@ -85,6 +85,14 @@ class Mage_Cms_Block_Page extends Mage_Core_Block_Abstract
85
  'title' => $page->getTitle()
86
  )
87
  );
 
 
 
 
 
 
 
 
88
  }
89
 
90
  $root = $this->getLayout()->getBlock('root');
@@ -99,14 +107,6 @@ class Mage_Cms_Block_Page extends Mage_Core_Block_Abstract
99
  $head->setDescription($page->getMetaDescription());
100
  }
101
 
102
- $breadcrumbsObject = new Varien_Object();
103
- $breadcrumbsObject->setCrumbs($breadcrumbsArray);
104
-
105
- Mage::dispatchEvent('cms_generate_breadcrumbs', array('breadcrumbs' => $breadcrumbsObject));
106
-
107
- foreach ($breadcrumbsObject->getCrumbs() as $breadcrumbsItem) {
108
- $breadcrumbs->addCrumb($breadcrumbsItem['crumbName'], $breadcrumbsItem['crumbInfo']);
109
- }
110
  return parent::_prepareLayout();
111
  }
112
 
85
  'title' => $page->getTitle()
86
  )
87
  );
88
+ $breadcrumbsObject = new Varien_Object();
89
+ $breadcrumbsObject->setCrumbs($breadcrumbsArray);
90
+
91
+ Mage::dispatchEvent('cms_generate_breadcrumbs', array('breadcrumbs' => $breadcrumbsObject));
92
+
93
+ foreach ($breadcrumbsObject->getCrumbs() as $breadcrumbsItem) {
94
+ $breadcrumbs->addCrumb($breadcrumbsItem['crumbName'], $breadcrumbsItem['crumbInfo']);
95
+ }
96
  }
97
 
98
  $root = $this->getLayout()->getBlock('root');
107
  $head->setDescription($page->getMetaDescription());
108
  }
109
 
 
 
 
 
 
 
 
 
110
  return parent::_prepareLayout();
111
  }
112
 
app/code/core/Mage/Core/Model/Session/Abstract/Varien.php CHANGED
@@ -385,7 +385,7 @@ class Mage_Core_Model_Session_Abstract_Varien extends Varien_Object
385
  */
386
  public function useValidateSessionExpire()
387
  {
388
- return true;
389
  }
390
 
391
  /**
@@ -458,6 +458,7 @@ class Mage_Core_Model_Session_Abstract_Varien extends Varien_Object
458
  }
459
 
460
  if ($this->useValidateSessionExpire()
 
461
  && $sessionData[self::VALIDATOR_SESSION_EXPIRE_TIMESTAMP] < time() ) {
462
  return false;
463
  } else {
385
  */
386
  public function useValidateSessionExpire()
387
  {
388
+ return $this->getCookie()->getLifetime() > 0;
389
  }
390
 
391
  /**
458
  }
459
 
460
  if ($this->useValidateSessionExpire()
461
+ && isset($sessionData[self::VALIDATOR_SESSION_EXPIRE_TIMESTAMP])
462
  && $sessionData[self::VALIDATOR_SESSION_EXPIRE_TIMESTAMP] < time() ) {
463
  return false;
464
  } else {
app/code/core/Mage/Customer/Model/Customer.php CHANGED
@@ -596,7 +596,7 @@ class Mage_Customer_Model_Customer extends Mage_Core_Model_Abstract
596
  * @throws Mage_Core_Exception
597
  * @return Mage_Customer_Model_Customer
598
  */
599
- public function sendNewAccountEmail($type = 'registered', $backUrl = '', $storeId = '0', $password = '')
600
  {
601
  $types = array(
602
  'registered' => self::XML_PATH_REGISTER_EMAIL_TEMPLATE, // welcome email, when confirmation is disabled
@@ -611,7 +611,10 @@ class Mage_Customer_Model_Customer extends Mage_Core_Model_Abstract
611
  $storeId = $this->_getWebsiteStoreId($this->getSendemailStoreId());
612
  }
613
 
614
- $this->setPassword($password);
 
 
 
615
  $this->_sendEmailTemplate($types[$type], self::XML_PATH_REGISTER_EMAIL_IDENTITY,
616
  array('customer' => $this, 'back_url' => $backUrl), $storeId);
617
  $this->cleanPasswordsValidationData();
596
  * @throws Mage_Core_Exception
597
  * @return Mage_Customer_Model_Customer
598
  */
599
+ public function sendNewAccountEmail($type = 'registered', $backUrl = '', $storeId = '0', $password = null)
600
  {
601
  $types = array(
602
  'registered' => self::XML_PATH_REGISTER_EMAIL_TEMPLATE, // welcome email, when confirmation is disabled
611
  $storeId = $this->_getWebsiteStoreId($this->getSendemailStoreId());
612
  }
613
 
614
+ if (!is_null($password)) {
615
+ $this->setPassword($password);
616
+ }
617
+
618
  $this->_sendEmailTemplate($types[$type], self::XML_PATH_REGISTER_EMAIL_IDENTITY,
619
  array('customer' => $this, 'back_url' => $backUrl), $storeId);
620
  $this->cleanPasswordsValidationData();
app/code/core/Mage/Customer/Model/Session.php CHANGED
@@ -222,6 +222,7 @@ class Mage_Customer_Model_Session extends Mage_Core_Model_Session_Abstract
222
  {
223
  $this->setCustomer($customer);
224
  $this->renewSession();
 
225
  Mage::dispatchEvent('customer_login', array('customer'=>$customer));
226
  return $this;
227
  }
@@ -307,6 +308,7 @@ class Mage_Customer_Model_Session extends Mage_Core_Model_Session_Abstract
307
  $this->setId(null);
308
  $this->setCustomerGroupId(Mage_Customer_Model_Group::NOT_LOGGED_IN_ID);
309
  $this->getCookie()->delete($this->getSessionName());
 
310
  return $this;
311
  }
312
 
222
  {
223
  $this->setCustomer($customer);
224
  $this->renewSession();
225
+ Mage::getSingleton('core/session')->renewFormKey();
226
  Mage::dispatchEvent('customer_login', array('customer'=>$customer));
227
  return $this;
228
  }
308
  $this->setId(null);
309
  $this->setCustomerGroupId(Mage_Customer_Model_Group::NOT_LOGGED_IN_ID);
310
  $this->getCookie()->delete($this->getSessionName());
311
+ Mage::getSingleton('core/session')->renewFormKey();
312
  return $this;
313
  }
314
 
app/code/core/Mage/Customer/etc/config.xml CHANGED
@@ -603,7 +603,7 @@ T: {{var telephone}}
603
  <cron_expr>0 0 1 * *</cron_expr>
604
  </schedule>
605
  <run>
606
- <model>mage_customer/observer::deleteCustomerFlowPassword</model>
607
  </run>
608
  </customer_flowpassword>
609
  </jobs>
603
  <cron_expr>0 0 1 * *</cron_expr>
604
  </schedule>
605
  <run>
606
+ <model>customer/observer::deleteCustomerFlowPassword</model>
607
  </run>
608
  </customer_flowpassword>
609
  </jobs>
app/code/core/Mage/ImportExport/Model/Import/Entity/Product.php CHANGED
@@ -1436,11 +1436,11 @@ class Mage_ImportExport_Model_Import_Entity_Product extends Mage_ImportExport_Mo
1436
  }
1437
  if (!empty($rowData['_media_image'])) {
1438
  $mediaGallery[$rowSku][] = array(
1439
- 'attribute_id' => $rowData['_media_attribute_id'],
1440
- 'label' => $rowData['_media_lable'],
1441
- 'position' => $rowData['_media_position'],
1442
- 'disabled' => $rowData['_media_is_disabled'],
1443
- 'value' => $rowData['_media_image']
1444
  );
1445
  }
1446
  // 6. Attributes phase
1436
  }
1437
  if (!empty($rowData['_media_image'])) {
1438
  $mediaGallery[$rowSku][] = array(
1439
+ 'attribute_id' => isset($rowData['_media_attribute_id']) ? $rowData['_media_attribute_id'] : '',
1440
+ 'label' => isset($rowData['_media_lable']) ? $rowData['_media_lable'] : '',
1441
+ 'position' => isset($rowData['_media_position']) ? $rowData['_media_position'] : '',
1442
+ 'disabled' => isset($rowData['_media_is_disabled']) ? $rowData['_media_is_disabled'] : '',
1443
+ 'value' => $rowData['_media_image']
1444
  );
1445
  }
1446
  // 6. Attributes phase
app/code/core/Mage/Sales/etc/config.xml CHANGED
@@ -1227,7 +1227,6 @@
1227
  </grand_total>
1228
  <msrp>
1229
  <class>sales/quote_address_total_msrp</class>
1230
- <before>weee,freeshipping</before>
1231
  </msrp>
1232
  </totals>
1233
  <nominal_totals>
1227
  </grand_total>
1228
  <msrp>
1229
  <class>sales/quote_address_total_msrp</class>
 
1230
  </msrp>
1231
  </totals>
1232
  <nominal_totals>
app/code/core/Mage/SalesRule/Model/Validator.php CHANGED
@@ -245,26 +245,26 @@ class Mage_SalesRule_Model_Validator extends Mage_Core_Model_Abstract
245
  $item->setFreeShipping(false);
246
 
247
  foreach ($this->_getRules() as $rule) {
248
-
249
  /* @var $rule Mage_SalesRule_Model_Rule */
250
- if (
251
- $rule->getSimpleFreeShipping()
252
- && $this->_canProcessRule($rule, $address)
253
- && $rule->getActions()->validate($item)
254
- ) {
255
-
256
- switch ($rule->getSimpleFreeShipping()) {
257
- case Mage_SalesRule_Model_Rule::FREE_SHIPPING_ITEM:
258
- $item->setFreeShipping($rule->getDiscountQty() ? $rule->getDiscountQty() : true);
259
- break;
260
 
261
- case Mage_SalesRule_Model_Rule::FREE_SHIPPING_ADDRESS:
262
- $address->setFreeShipping(true);
263
- break;
264
- }
265
- if ($rule->getStopRulesProcessing()) {
 
 
 
 
 
 
266
  break;
267
- }
 
 
268
  }
269
  }
270
  return $this;
@@ -316,198 +316,204 @@ class Mage_SalesRule_Model_Validator extends Mage_Core_Model_Abstract
316
  foreach ($this->_getRules() as $rule) {
317
 
318
  /* @var $rule Mage_SalesRule_Model_Rule */
319
- if ($this->_canProcessRule($rule, $address) && $rule->getActions()->validate($item)) {
320
-
321
- $qty = $this->_getItemQty($item, $rule);
322
- $rulePercent = min(100, $rule->getDiscountAmount());
323
-
324
- $discountAmount = 0;
325
- $baseDiscountAmount = 0;
326
- //discount for original price
327
- $originalDiscountAmount = 0;
328
- $baseOriginalDiscountAmount = 0;
329
-
330
- switch ($rule->getSimpleAction()) {
331
- case Mage_SalesRule_Model_Rule::TO_PERCENT_ACTION:
332
- $rulePercent = max(0, 100 - $rule->getDiscountAmount());
333
- //no break;
334
- case Mage_SalesRule_Model_Rule::BY_PERCENT_ACTION:
335
- $step = $rule->getDiscountStep();
336
- if ($step) {
337
- $qty = floor($qty / $step) * $step;
338
- }
339
- $_rulePct = $rulePercent / 100;
340
- $discountAmount = ($qty * $itemPrice - $item->getDiscountAmount()) * $_rulePct;
341
- $baseDiscountAmount = ($qty * $baseItemPrice - $item->getBaseDiscountAmount()) * $_rulePct;
342
- //get discount for original price
343
- $originalDiscountAmount = ($qty * $itemOriginalPrice - $item->getDiscountAmount()) * $_rulePct;
344
- $baseOriginalDiscountAmount =
345
- ($qty * $baseItemOriginalPrice - $item->getDiscountAmount()) * $_rulePct;
346
 
347
- if (!$rule->getDiscountQty() || $rule->getDiscountQty() > $qty) {
348
- $discountPercent = min(100, $item->getDiscountPercent() + $rulePercent);
349
- $item->setDiscountPercent($discountPercent);
350
- }
351
- break;
352
- case Mage_SalesRule_Model_Rule::TO_FIXED_ACTION:
353
- $quoteAmount = $quote->getStore()->convertPrice($rule->getDiscountAmount());
354
- $discountAmount = $qty * ($itemPrice - $quoteAmount);
355
- $baseDiscountAmount = $qty * ($baseItemPrice - $rule->getDiscountAmount());
356
- //get discount for original price
357
- $originalDiscountAmount = $qty * ($itemOriginalPrice - $quoteAmount);
358
- $baseOriginalDiscountAmount = $qty * ($baseItemOriginalPrice - $rule->getDiscountAmount());
359
- break;
360
 
361
- case Mage_SalesRule_Model_Rule::BY_FIXED_ACTION:
362
- $step = $rule->getDiscountStep();
363
- if ($step) {
364
- $qty = floor($qty / $step) * $step;
365
- }
366
- $quoteAmount = $quote->getStore()->convertPrice($rule->getDiscountAmount());
367
- $discountAmount = $qty * $quoteAmount;
368
- $baseDiscountAmount = $qty * $rule->getDiscountAmount();
369
- break;
370
 
371
- case Mage_SalesRule_Model_Rule::CART_FIXED_ACTION:
372
- if (empty($this->_rulesItemTotals[$rule->getId()])) {
373
- Mage::throwException(Mage::helper('salesrule')->__('Item totals are not set for rule.'));
374
- }
 
375
 
376
- /**
377
- * prevent applying whole cart discount for every shipping order, but only for first order
378
- */
379
- if ($quote->getIsMultiShipping()) {
380
- $usedForAddressId = $this->getCartFixedRuleUsedForAddress($rule->getId());
381
- if ($usedForAddressId && $usedForAddressId != $address->getId()) {
382
- break;
383
- } else {
384
- $this->setCartFixedRuleUsedForAddress($rule->getId(), $address->getId());
385
- }
386
- }
387
- $cartRules = $address->getCartFixedRules();
388
- if (!isset($cartRules[$rule->getId()])) {
389
- $cartRules[$rule->getId()] = $rule->getDiscountAmount();
390
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
391
 
392
- if ($cartRules[$rule->getId()] > 0) {
393
- if ($this->_rulesItemTotals[$rule->getId()]['items_count'] <= 1) {
394
- $quoteAmount = $quote->getStore()->convertPrice($cartRules[$rule->getId()]);
395
- $baseDiscountAmount = min($baseItemPrice * $qty, $cartRules[$rule->getId()]);
396
- } else {
397
- $discountRate = $baseItemPrice * $qty /
398
- $this->_rulesItemTotals[$rule->getId()]['base_items_price'];
399
- $maximumItemDiscount = $rule->getDiscountAmount() * $discountRate;
400
- $quoteAmount = $quote->getStore()->convertPrice($maximumItemDiscount);
401
 
402
- $baseDiscountAmount = min($baseItemPrice * $qty, $maximumItemDiscount);
403
- $this->_rulesItemTotals[$rule->getId()]['items_count']--;
404
- }
 
405
 
406
- $discountAmount = min($itemPrice * $qty, $quoteAmount);
407
- $discountAmount = $quote->getStore()->roundPrice($discountAmount);
408
- $baseDiscountAmount = $quote->getStore()->roundPrice($baseDiscountAmount);
 
 
 
 
 
 
 
 
 
 
 
 
409
 
410
- //get discount for original price
411
- $originalDiscountAmount = min($itemOriginalPrice * $qty, $quoteAmount);
412
- $baseOriginalDiscountAmount = $quote->getStore()->roundPrice($baseItemOriginalPrice);
 
 
 
 
 
 
413
 
414
- $cartRules[$rule->getId()] -= $baseDiscountAmount;
 
415
  }
416
- $address->setCartFixedRules($cartRules);
417
 
418
- break;
 
 
419
 
420
- case Mage_SalesRule_Model_Rule::BUY_X_GET_Y_ACTION:
421
- $x = $rule->getDiscountStep();
422
- $y = $rule->getDiscountAmount();
423
- if (!$x || $y > $x) {
424
- break;
425
- }
426
- $buyAndDiscountQty = $x + $y;
427
 
428
- $fullRuleQtyPeriod = floor($qty / $buyAndDiscountQty);
429
- $freeQty = $qty - $fullRuleQtyPeriod * $buyAndDiscountQty;
 
430
 
431
- $discountQty = $fullRuleQtyPeriod * $y;
432
- if ($freeQty > $x) {
433
- $discountQty += $freeQty - $x;
434
- }
435
 
436
- $discountAmount = $discountQty * $itemPrice;
437
- $baseDiscountAmount = $discountQty * $baseItemPrice;
438
- //get discount for original price
439
- $originalDiscountAmount = $discountQty * $itemOriginalPrice;
440
- $baseOriginalDiscountAmount = $discountQty * $baseItemOriginalPrice;
441
  break;
442
- }
 
443
 
444
- $result = new Varien_Object(array(
445
- 'discount_amount' => $discountAmount,
446
- 'base_discount_amount' => $baseDiscountAmount,
447
- ));
448
- Mage::dispatchEvent('salesrule_validator_process', array(
449
- 'rule' => $rule,
450
- 'item' => $item,
451
- 'address' => $address,
452
- 'quote' => $quote,
453
- 'qty' => $qty,
454
- 'result' => $result,
455
- ));
456
-
457
- $discountAmount = $result->getDiscountAmount();
458
- $baseDiscountAmount = $result->getBaseDiscountAmount();
459
-
460
- $percentKey = $item->getDiscountPercent();
461
- /**
462
- * Process "delta" rounding
463
- */
464
- if ($percentKey) {
465
- $delta = isset($this->_roundingDeltas[$percentKey]) ? $this->_roundingDeltas[$percentKey] : 0;
466
- $baseDelta = isset($this->_baseRoundingDeltas[$percentKey])
467
- ? $this->_baseRoundingDeltas[$percentKey]
468
- : 0;
469
- $discountAmount += $delta;
470
- $baseDiscountAmount += $baseDelta;
471
-
472
- $this->_roundingDeltas[$percentKey] = $discountAmount -
473
- $quote->getStore()->roundPrice($discountAmount);
474
- $this->_baseRoundingDeltas[$percentKey] = $baseDiscountAmount -
475
- $quote->getStore()->roundPrice($baseDiscountAmount);
476
- $discountAmount = $quote->getStore()->roundPrice($discountAmount);
477
- $baseDiscountAmount = $quote->getStore()->roundPrice($baseDiscountAmount);
478
- } else {
479
- $discountAmount = $quote->getStore()->roundPrice($discountAmount);
480
- $baseDiscountAmount = $quote->getStore()->roundPrice($baseDiscountAmount);
481
- }
482
 
483
- /**
484
- * We can't use row total here because row total not include tax
485
- * Discount can be applied on price included tax
486
- */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
487
 
488
- $itemDiscountAmount = $item->getDiscountAmount();
489
- $itemBaseDiscountAmount = $item->getBaseDiscountAmount();
 
 
490
 
491
- $discountAmount = min($itemDiscountAmount + $discountAmount, $itemPrice * $qty);
492
- $baseDiscountAmount = min($itemBaseDiscountAmount + $baseDiscountAmount, $baseItemPrice * $qty);
493
 
494
- $item->setDiscountAmount($discountAmount);
495
- $item->setBaseDiscountAmount($baseDiscountAmount);
496
 
497
- $item->setOriginalDiscountAmount($originalDiscountAmount);
498
- $item->setBaseOriginalDiscountAmount($baseOriginalDiscountAmount);
499
 
500
- $appliedRuleIds[$rule->getRuleId()] = $rule->getRuleId();
 
501
 
502
- $this->_maintainAddressCouponCode($address, $rule);
503
- $this->_addDiscountDescription($address, $rule);
504
 
505
- if ($rule->getStopRulesProcessing()) {
506
- $this->_stopFurtherRules = true;
507
- break;
508
- }
 
 
509
  }
510
  }
 
511
  $item->setAppliedRuleIds(join(',',$appliedRuleIds));
512
  $address->setAppliedRuleIds($this->mergeIds($address->getAppliedRuleIds(), $appliedRuleIds));
513
  $quote->setAppliedRuleIds($this->mergeIds($quote->getAppliedRuleIds(), $appliedRuleIds));
245
  $item->setFreeShipping(false);
246
 
247
  foreach ($this->_getRules() as $rule) {
 
248
  /* @var $rule Mage_SalesRule_Model_Rule */
249
+ if (!$this->_canProcessRule($rule, $address)) {
250
+ continue;
251
+ }
 
 
 
 
 
 
 
252
 
253
+ if (!$rule->getActions()->validate($item)) {
254
+ continue;
255
+ }
256
+
257
+ switch ($rule->getSimpleFreeShipping()) {
258
+ case Mage_SalesRule_Model_Rule::FREE_SHIPPING_ITEM:
259
+ $item->setFreeShipping($rule->getDiscountQty() ? $rule->getDiscountQty() : true);
260
+ break;
261
+
262
+ case Mage_SalesRule_Model_Rule::FREE_SHIPPING_ADDRESS:
263
+ $address->setFreeShipping(true);
264
  break;
265
+ }
266
+ if ($rule->getStopRulesProcessing()) {
267
+ break;
268
  }
269
  }
270
  return $this;
316
  foreach ($this->_getRules() as $rule) {
317
 
318
  /* @var $rule Mage_SalesRule_Model_Rule */
319
+ if (!$this->_canProcessRule($rule, $address)) {
320
+ continue;
321
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
 
323
+ if (!$rule->getActions()->validate($item)) {
324
+ continue;
325
+ }
 
 
 
 
 
 
 
 
 
 
326
 
327
+ $qty = $this->_getItemQty($item, $rule);
328
+ $rulePercent = min(100, $rule->getDiscountAmount());
 
 
 
 
 
 
 
329
 
330
+ $discountAmount = 0;
331
+ $baseDiscountAmount = 0;
332
+ //discount for original price
333
+ $originalDiscountAmount = 0;
334
+ $baseOriginalDiscountAmount = 0;
335
 
336
+ switch ($rule->getSimpleAction()) {
337
+ case Mage_SalesRule_Model_Rule::TO_PERCENT_ACTION:
338
+ $rulePercent = max(0, 100-$rule->getDiscountAmount());
339
+ //no break;
340
+ case Mage_SalesRule_Model_Rule::BY_PERCENT_ACTION:
341
+ $step = $rule->getDiscountStep();
342
+ if ($step) {
343
+ $qty = floor($qty/$step)*$step;
344
+ }
345
+ $_rulePct = $rulePercent/100;
346
+ $discountAmount = ($qty * $itemPrice - $item->getDiscountAmount()) * $_rulePct;
347
+ $baseDiscountAmount = ($qty * $baseItemPrice - $item->getBaseDiscountAmount()) * $_rulePct;
348
+ //get discount for original price
349
+ $originalDiscountAmount = ($qty * $itemOriginalPrice - $item->getDiscountAmount()) * $_rulePct;
350
+ $baseOriginalDiscountAmount =
351
+ ($qty * $baseItemOriginalPrice - $item->getDiscountAmount()) * $_rulePct;
352
+
353
+ if (!$rule->getDiscountQty() || $rule->getDiscountQty()>$qty) {
354
+ $discountPercent = min(100, $item->getDiscountPercent()+$rulePercent);
355
+ $item->setDiscountPercent($discountPercent);
356
+ }
357
+ break;
358
+ case Mage_SalesRule_Model_Rule::TO_FIXED_ACTION:
359
+ $quoteAmount = $quote->getStore()->convertPrice($rule->getDiscountAmount());
360
+ $discountAmount = $qty * ($itemPrice-$quoteAmount);
361
+ $baseDiscountAmount = $qty * ($baseItemPrice-$rule->getDiscountAmount());
362
+ //get discount for original price
363
+ $originalDiscountAmount = $qty * ($itemOriginalPrice-$quoteAmount);
364
+ $baseOriginalDiscountAmount = $qty * ($baseItemOriginalPrice-$rule->getDiscountAmount());
365
+ break;
366
 
367
+ case Mage_SalesRule_Model_Rule::BY_FIXED_ACTION:
368
+ $step = $rule->getDiscountStep();
369
+ if ($step) {
370
+ $qty = floor($qty/$step)*$step;
371
+ }
372
+ $quoteAmount = $quote->getStore()->convertPrice($rule->getDiscountAmount());
373
+ $discountAmount = $qty * $quoteAmount;
374
+ $baseDiscountAmount = $qty * $rule->getDiscountAmount();
375
+ break;
376
 
377
+ case Mage_SalesRule_Model_Rule::CART_FIXED_ACTION:
378
+ if (empty($this->_rulesItemTotals[$rule->getId()])) {
379
+ Mage::throwException(Mage::helper('salesrule')->__('Item totals are not set for rule.'));
380
+ }
381
 
382
+ /**
383
+ * prevent applying whole cart discount for every shipping order, but only for first order
384
+ */
385
+ if ($quote->getIsMultiShipping()) {
386
+ $usedForAddressId = $this->getCartFixedRuleUsedForAddress($rule->getId());
387
+ if ($usedForAddressId && $usedForAddressId != $address->getId()) {
388
+ break;
389
+ } else {
390
+ $this->setCartFixedRuleUsedForAddress($rule->getId(), $address->getId());
391
+ }
392
+ }
393
+ $cartRules = $address->getCartFixedRules();
394
+ if (!isset($cartRules[$rule->getId()])) {
395
+ $cartRules[$rule->getId()] = $rule->getDiscountAmount();
396
+ }
397
 
398
+ if ($cartRules[$rule->getId()] > 0) {
399
+ if ($this->_rulesItemTotals[$rule->getId()]['items_count'] <= 1) {
400
+ $quoteAmount = $quote->getStore()->convertPrice($cartRules[$rule->getId()]);
401
+ $baseDiscountAmount = min($baseItemPrice * $qty, $cartRules[$rule->getId()]);
402
+ } else {
403
+ $discountRate = $baseItemPrice * $qty /
404
+ $this->_rulesItemTotals[$rule->getId()]['base_items_price'];
405
+ $maximumItemDiscount = $rule->getDiscountAmount() * $discountRate;
406
+ $quoteAmount = $quote->getStore()->convertPrice($maximumItemDiscount);
407
 
408
+ $baseDiscountAmount = min($baseItemPrice * $qty, $maximumItemDiscount);
409
+ $this->_rulesItemTotals[$rule->getId()]['items_count']--;
410
  }
 
411
 
412
+ $discountAmount = min($itemPrice * $qty, $quoteAmount);
413
+ $discountAmount = $quote->getStore()->roundPrice($discountAmount);
414
+ $baseDiscountAmount = $quote->getStore()->roundPrice($baseDiscountAmount);
415
 
416
+ //get discount for original price
417
+ $originalDiscountAmount = min($itemOriginalPrice * $qty, $quoteAmount);
418
+ $baseOriginalDiscountAmount = $quote->getStore()->roundPrice($baseItemOriginalPrice);
 
 
 
 
419
 
420
+ $cartRules[$rule->getId()] -= $baseDiscountAmount;
421
+ }
422
+ $address->setCartFixedRules($cartRules);
423
 
424
+ break;
 
 
 
425
 
426
+ case Mage_SalesRule_Model_Rule::BUY_X_GET_Y_ACTION:
427
+ $x = $rule->getDiscountStep();
428
+ $y = $rule->getDiscountAmount();
429
+ if (!$x || $y > $x) {
 
430
  break;
431
+ }
432
+ $buyAndDiscountQty = $x + $y;
433
 
434
+ $fullRuleQtyPeriod = floor($qty / $buyAndDiscountQty);
435
+ $freeQty = $qty - $fullRuleQtyPeriod * $buyAndDiscountQty;
436
+
437
+ $discountQty = $fullRuleQtyPeriod * $y;
438
+ if ($freeQty > $x) {
439
+ $discountQty += $freeQty - $x;
440
+ }
441
+
442
+ $discountAmount = $discountQty * $itemPrice;
443
+ $baseDiscountAmount = $discountQty * $baseItemPrice;
444
+ //get discount for original price
445
+ $originalDiscountAmount = $discountQty * $itemOriginalPrice;
446
+ $baseOriginalDiscountAmount = $discountQty * $baseItemOriginalPrice;
447
+ break;
448
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
449
 
450
+ $result = new Varien_Object(array(
451
+ 'discount_amount' => $discountAmount,
452
+ 'base_discount_amount' => $baseDiscountAmount,
453
+ ));
454
+ Mage::dispatchEvent('salesrule_validator_process', array(
455
+ 'rule' => $rule,
456
+ 'item' => $item,
457
+ 'address' => $address,
458
+ 'quote' => $quote,
459
+ 'qty' => $qty,
460
+ 'result' => $result,
461
+ ));
462
+
463
+ $discountAmount = $result->getDiscountAmount();
464
+ $baseDiscountAmount = $result->getBaseDiscountAmount();
465
+
466
+ $percentKey = $item->getDiscountPercent();
467
+ /**
468
+ * Process "delta" rounding
469
+ */
470
+ if ($percentKey) {
471
+ $delta = isset($this->_roundingDeltas[$percentKey]) ? $this->_roundingDeltas[$percentKey] : 0;
472
+ $baseDelta = isset($this->_baseRoundingDeltas[$percentKey])
473
+ ? $this->_baseRoundingDeltas[$percentKey]
474
+ : 0;
475
+ $discountAmount += $delta;
476
+ $baseDiscountAmount += $baseDelta;
477
+
478
+ $this->_roundingDeltas[$percentKey] = $discountAmount -
479
+ $quote->getStore()->roundPrice($discountAmount);
480
+ $this->_baseRoundingDeltas[$percentKey] = $baseDiscountAmount -
481
+ $quote->getStore()->roundPrice($baseDiscountAmount);
482
+ $discountAmount = $quote->getStore()->roundPrice($discountAmount);
483
+ $baseDiscountAmount = $quote->getStore()->roundPrice($baseDiscountAmount);
484
+ } else {
485
+ $discountAmount = $quote->getStore()->roundPrice($discountAmount);
486
+ $baseDiscountAmount = $quote->getStore()->roundPrice($baseDiscountAmount);
487
+ }
488
 
489
+ /**
490
+ * We can't use row total here because row total not include tax
491
+ * Discount can be applied on price included tax
492
+ */
493
 
494
+ $itemDiscountAmount = $item->getDiscountAmount();
495
+ $itemBaseDiscountAmount = $item->getBaseDiscountAmount();
496
 
497
+ $discountAmount = min($itemDiscountAmount + $discountAmount, $itemPrice * $qty);
498
+ $baseDiscountAmount = min($itemBaseDiscountAmount + $baseDiscountAmount, $baseItemPrice * $qty);
499
 
500
+ $item->setDiscountAmount($discountAmount);
501
+ $item->setBaseDiscountAmount($baseDiscountAmount);
502
 
503
+ $item->setOriginalDiscountAmount($originalDiscountAmount);
504
+ $item->setBaseOriginalDiscountAmount($baseOriginalDiscountAmount);
505
 
506
+ $appliedRuleIds[$rule->getRuleId()] = $rule->getRuleId();
 
507
 
508
+ $this->_maintainAddressCouponCode($address, $rule);
509
+ $this->_addDiscountDescription($address, $rule);
510
+
511
+ if ($rule->getStopRulesProcessing()) {
512
+ $this->_stopFurtherRules = true;
513
+ break;
514
  }
515
  }
516
+
517
  $item->setAppliedRuleIds(join(',',$appliedRuleIds));
518
  $address->setAppliedRuleIds($this->mergeIds($address->getAppliedRuleIds(), $appliedRuleIds));
519
  $quote->setAppliedRuleIds($this->mergeIds($quote->getAppliedRuleIds(), $appliedRuleIds));
app/code/core/Mage/SalesRule/etc/config.xml CHANGED
@@ -134,8 +134,8 @@
134
  <totals>
135
  <freeshipping>
136
  <class>salesrule/quote_freeshipping</class>
137
- <after>subtotal,tax_subtotal</after>
138
- <before>shipping</before>
139
  </freeshipping>
140
  <discount>
141
  <class>salesrule/quote_discount</class>
134
  <totals>
135
  <freeshipping>
136
  <class>salesrule/quote_freeshipping</class>
137
+ <after>subtotal</after>
138
+ <before>tax_subtotal,shipping</before>
139
  </freeshipping>
140
  <discount>
141
  <class>salesrule/quote_discount</class>
app/code/core/Mage/Tax/etc/config.xml CHANGED
@@ -162,8 +162,8 @@
162
  <totals>
163
  <tax_subtotal>
164
  <class>tax/sales_total_quote_subtotal</class>
165
- <after>subtotal</after>
166
- <before>tax,discount,msrp</before>
167
  </tax_subtotal>
168
  <tax_shipping>
169
  <class>tax/sales_total_quote_shipping</class>
162
  <totals>
163
  <tax_subtotal>
164
  <class>tax/sales_total_quote_subtotal</class>
165
+ <after>freeshipping</after>
166
+ <before>tax,discount</before>
167
  </tax_subtotal>
168
  <tax_shipping>
169
  <class>tax/sales_total_quote_shipping</class>
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Core_Modules</name>
4
- <version>1.9.3.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Collection of Magento Core Modules</summary>
10
  <description>Collection of Magento Core Modules</description>
11
- <notes>1.9.3.0</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
- <date>2016-10-04</date>
14
- <time>13:04:40</time>
15
- <contents><target name="magecore"><dir name="Mage"><dir name="Admin"><dir name="Helper"><file name="Block.php" hash="9a1ba075a3e26fe7b3355e3518ecd9f3"/><file name="Data.php" hash="9349200d6f92c46180199ac23f98f7f6"/><dir name="Rules"><file name="Fallback.php" hash="383a4d353d762e1c925071be90cef644"/></dir><file name="Variable.php" hash="05034a643f757264fa384d34c8a38a45"/></dir><dir name="Model"><dir name="Acl"><dir name="Assert"><file name="Ip.php" hash="08ca27c4cb5d661cf244ebb2e6651758"/><file name="Time.php" hash="286d3eb95e0bd7c35303bd1645c6136d"/></dir><file name="Resource.php" hash="0c2dc0fc7553ec1f3edc827f8b315381"/><dir name="Role"><file name="Generic.php" hash="4f1f977403ed910a5753afab02c62b89"/><file name="Group.php" hash="a3eb3645929348237344ab9be05b78b1"/><file name="Registry.php" hash="1a061baac87efc3b82c267d9b496b161"/><file name="User.php" hash="584e727edf544f15e9d9c9f05b12bfdf"/></dir><file name="Role.php" hash="81b9facdda473ecd5d4c0a9831f12f23"/></dir><file name="Acl.php" hash="7d626befb3db46f07bdb75399b4536db"/><file name="Block.php" hash="cba4ab4189cf2a3b1e6a8366c7864ee4"/><file name="Config.php" hash="505e6f9bccb6b1781f006dfa0f277254"/><dir name="Mysql4"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="335baf1a546832d4430b359d2a14aac3"/></dir><file name="Role.php" hash="57e55b6117759af057407b2b52dca8e5"/></dir><file name="Acl.php" hash="535836809a79d0870f491abe690069d1"/><dir name="Permissions"><file name="Collection.php" hash="5c6808e128191b50f3f0a24d19a874e8"/></dir><dir name="Role"><file name="Collection.php" hash="0b5c5dcf8609974c82a2eb70c44db3a7"/></dir><file name="Role.php" hash="591f9370829d00af7990de49fa5246e5"/><dir name="Roles"><file name="Collection.php" hash="1f7f9e665cedc00597698d7bce6ffcd9"/><dir name="User"><file name="Collection.php" hash="8c744c176b234379a39cc05af2b6df02"/></dir></dir><file name="Roles.php" hash="1924f8555f51b66e3801bfa76690dfd0"/><dir name="Rules"><file name="Collection.php" hash="6eccb4ad5e45096587bec068f34342f0"/></dir><file name="Rules.php" hash="341d66cdfd28daf435517a49600495b3"/><dir name="User"><file name="Collection.php" hash="35a014dcc16e27dc66577c05b0747d46"/></dir><file name="User.php" hash="355610dbcb43e9d5f5fd7f3f78110048"/></dir><file name="Observer.php" hash="8bcd083d383968c893cf98d18eecba8e"/><file name="Redirectpolicy.php" hash="fbeea836834e629f96ddd6949a93e97b"/><dir name="Resource"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="bd5981e4c77d6c4bb819ac8c6c338c76"/></dir><file name="Role.php" hash="6d50597150e83a920d8e76cb74b4cfcf"/></dir><file name="Acl.php" hash="69d8caefb12003e449573d6ba87864f8"/><dir name="Block"><file name="Collection.php" hash="717351c260e79fa30fbda27111957a99"/></dir><file name="Block.php" hash="ff5550ea7047ffb019c2525c13fc17a9"/><dir name="Permissions"><file name="Collection.php" hash="439684f2b3259ca9e3959ced4aafa335"/></dir><dir name="Role"><file name="Collection.php" hash="15454b8025ed78cea0ce5d84d1e84c42"/></dir><file name="Role.php" hash="c4238cef7a9a25b72f7a9f4cb9b23f1e"/><dir name="Roles"><file name="Collection.php" hash="c1197e710a230d3ec001ae4abc3d9ec5"/><dir name="User"><file name="Collection.php" hash="7e551072e4cc23fcbef082b54b7fa798"/></dir></dir><file name="Roles.php" hash="86589cb054903023aeb3fd2a6015c83c"/><dir name="Rules"><file name="Collection.php" hash="cd0c1e7732bcbc6f9a73b84cecf5fa45"/></dir><file name="Rules.php" hash="b3d01cbc96c2f46f396c0698fc645b4a"/><dir name="User"><file name="Collection.php" hash="0177d1cee326c39536c29fa1879510fd"/></dir><file name="User.php" hash="3e216369763be663ca216f171d6454bc"/><dir name="Variable"><file name="Collection.php" hash="fd9c09d2184f32af4e48a982d0547a58"/></dir><file name="Variable.php" hash="f25a17650d60d5b1911e985fbd6904ea"/></dir><file name="Role.php" hash="2df749650c83f8203857ab6ba9a0bbe0"/><file name="Roles.php" hash="caa2c8b5b1a279297e3bf34cde27a94e"/><file name="Rules.php" hash="a37312eba4a2600a14f5bc81e6ef9a39"/><file name="Session.php" hash="619d5efe81e9ffaf11600b4df2a06352"/><file name="User.php" hash="dcec560e1ba661610d748efb726c250e"/><file name="Variable.php" hash="6e8f0d0da61445ab9e0042177694881c"/></dir><dir name="data"><dir name="admin_setup"><file name="data-install-1.6.0.0.php" hash="0274ac08aadb4bad103095a11bdaff14"/></dir></dir><dir name="etc"><file name="config.xml" hash="ddf36fe419691b25611a94b45b30f082"/></dir><dir name="sql"><dir name="admin_setup"><file name="install-1.6.0.0.php" hash="dbede184c784f531b99227dafaac6c3f"/><file name="mysql4-install-0.7.0.php" hash="ce195263d9a1483e0226725ecba4d280"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="1cc838be0dbfa4a57b367ff3ee852930"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="5f6112ff200e1156f793a88caa7fac7e"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="f4f648587b954ebf087dfcfad2e6e809"/><file name="upgrade-1.6.0.0-1.6.1.0.php" hash="6948bb0b0bf03c1a7a9f6d4992b95c32"/><file name="upgrade-1.6.1.0-1.6.1.1.php" hash="8a227654e1b908e80763a75d47b3219b"/><file name="upgrade-1.6.1.1-1.6.1.2.php" hash="d3e3dc656cb0f7b34c87c3cb57f6aae1"/></dir></dir></dir><dir name="AdminNotification"><dir name="Helper"><file name="Data.php" hash="16e00642e0d71e8f640513fbdce1fc72"/></dir><dir name="Model"><file name="Feed.php" hash="a50e6360e6f862da15017f92112f7089"/><file name="Inbox.php" hash="aa4212b432eb6c0b18d5d10f6d352f43"/><dir name="Mysql4"><dir name="Inbox"><file name="Collection.php" hash="ae2dc8ab53c50a4f2e1076f633050264"/></dir><file name="Inbox.php" hash="9476e2f1f83b120770cbef0fd7d5fbc6"/></dir><file name="Observer.php" hash="ed5d2f6241bc21d23e883afc4dec9c65"/><dir name="Resource"><dir name="Inbox"><file name="Collection.php" hash="45b86c1cc068f343096b176b7e597ac1"/></dir><file name="Inbox.php" hash="3f2ddbba6593c11626e577aee5adc866"/></dir><file name="Survey.php" hash="e8966921b8d2eb22e6b12ecb18244139"/></dir><dir name="etc"><file name="adminhtml.xml" hash="9127e273a03f08d4347096e6191ff1c4"/><file name="config.xml" hash="5e46b7a8603bb7d51093818533d98eef"/><file name="system.xml" hash="f2d8e0d8574e2680f80174341954d01d"/></dir><dir name="sql"><dir name="adminnotification_setup"><file name="install-1.6.0.0.php" hash="f1cfd5293e6997e6ea31d445caf9ff17"/><file name="mysql4-install-1.0.0.php" hash="bc08fe5d5c681ee7bcab1408c6c9dc7d"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="02520528d95f238c32456dc1f0504809"/></dir></dir></dir><dir name="Api"><dir name="Controller"><file name="Action.php" hash="774b4762b850592ab7659fdadb42ed84"/></dir><file name="Exception.php" hash="04fe0ad10ccb52bc9d66117e1ea8daf9"/><dir name="Helper"><file name="Data.php" hash="44c338b1e68841c25890cc25032bc92a"/></dir><dir name="Model"><dir name="Acl"><dir name="Assert"><file name="Ip.php" hash="c76874e041338f1a3a18da71bdd1124d"/><file name="Time.php" hash="5603cda1204e4270d92f67290f8b3882"/></dir><file name="Resource.php" hash="5536d4853e1e6ac50083dd48d12bb380"/><dir name="Role"><file name="Generic.php" hash="2f84ba87bd7d3a9ea0ae873bac95b970"/><file name="Group.php" hash="c8b844aaa124f8afa38e943f5fb7333a"/><file name="Registry.php" hash="0cf99ee44b46f1fd5abb01332d9176e3"/><file name="User.php" hash="c714175423aabf8a234c658966238574"/></dir><file name="Role.php" hash="89767b0b806ae6f6402b9dc357783d3e"/></dir><file name="Acl.php" hash="d3caadef3aaab9e8dada1f584184b6da"/><file name="Config.php" hash="e6108699ce87d3ca39462e70356fc0f7"/><dir name="Mysql4"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="29ee5de0d8a07033e66fe43f9046f3f7"/></dir><file name="Role.php" hash="606f2c8ccb598d3e3c8f3ed5bcf289f4"/></dir><file name="Acl.php" hash="e933dfe905bbdafed8e42b76b08a80f6"/><dir name="Permissions"><file name="Collection.php" hash="8f0cafdaf2c39d0b7b25addff48e3060"/></dir><dir name="Role"><file name="Collection.php" hash="65b742dffa3ce6881c55a27657bcd24e"/></dir><file name="Role.php" hash="5f635063dedb356c61da9062444228ea"/><dir name="Roles"><file name="Collection.php" hash="f3a0e95e05b018836a959d22fed1b3a7"/><dir name="User"><file name="Collection.php" hash="27c1248a4b9a201a3fde0bc1aa0b3006"/></dir></dir><file name="Roles.php" hash="78ca14d1032e095ee37c1ed027bbe8a3"/><dir name="Rules"><file name="Collection.php" hash="2bf02138aaf50a5786e8a9f9b944bb1e"/></dir><file name="Rules.php" hash="d6945e76e07b77f993f277162f75ca4e"/><dir name="User"><file name="Collection.php" hash="482d52e463eda673177bfa5b28d62171"/></dir><file name="User.php" hash="e56215febfa2bff9b644c1c422b05d20"/></dir><dir name="Resource"><file name="Abstract.php" hash="8afd58116d69d4f8cb00045e809fa065"/><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="e2a0a2811e5b14b041114ab1b54b0caf"/></dir><file name="Role.php" hash="3d48c43b4d9f76f1eb1e4d3d354146f0"/></dir><file name="Acl.php" hash="0f8f6aa57d0c9d21db67c6c694f54b99"/><dir name="Permissions"><file name="Collection.php" hash="48faac14df91a789288ef14863f23415"/></dir><dir name="Role"><file name="Collection.php" hash="358cfbd02523e45ac3a13230019a9855"/></dir><file name="Role.php" hash="f12e74794a4897e7df96f05507a95679"/><dir name="Roles"><file name="Collection.php" hash="d245ece070acf720da2e4e88cd1e6157"/><dir name="User"><file name="Collection.php" hash="45839c5e6c4eb16d669d0cb61791b51c"/></dir></dir><file name="Roles.php" hash="2378dd2f701d20222a9089c48f13d32d"/><dir name="Rules"><file name="Collection.php" hash="92ab48e1ec2d99c432e25e9c3e8b4bca"/></dir><file name="Rules.php" hash="cfaef65cfd5ac344fca073aa803bf070"/><dir name="User"><file name="Collection.php" hash="d7dfaa41c6f8c576ecc78124926da9ab"/></dir><file name="User.php" hash="68f0455fadd667de2c49b361c0c63b48"/></dir><file name="Role.php" hash="65d1434ddb3bd361a08126b6a8ed2739"/><file name="Roles.php" hash="399af59b973909e92fd63620ca0ac949"/><file name="Rules.php" hash="4ca5eaf6cef0ab6ec8db507620d7fb89"/><dir name="Server"><dir name="Adapter"><file name="Interface.php" hash="64124b37d8a9686866695c823d80713c"/><file name="Soap.php" hash="89d4a8211e292c4fe2567fa52cb5292a"/><file name="Xmlrpc.php" hash="a3bea0dc8c3045630f9ba479cfe89b1f"/></dir><dir name="Handler"><file name="Abstract.php" hash="608a7e7c5f637627bc38d3ac29881e7e"/></dir><file name="Handler.php" hash="f4be1b5c2758e3a921387b3933f7dcdc"/><dir name="V2"><dir name="Adapter"><file name="Soap.php" hash="2626e0417ea86b2f80a8f3832b3e18df"/></dir><file name="Handler.php" hash="bdc40c4c23dc5ab6889ea72baa64684c"/></dir><dir name="Wsi"><dir name="Adapter"><file name="Soap.php" hash="f58b7e580026a274b9afd4a4ad56c95b"/></dir><file name="Handler.php" hash="6c260b6ef745ee4acb5a585c110baa71"/></dir></dir><file name="Server.php" hash="3757b660bf81e78572ee4a16df10f61d"/><file name="Session.php" hash="08135d3e54cf10a7fc44f628c0ce51b8"/><file name="User.php" hash="873676067466da34a16ca124830bb4ac"/><dir name="Wsdl"><dir name="Config"><file name="Base.php" hash="02fea248877a1a4a36bc97f2ab5971ce"/><file name="Element.php" hash="11e2d31cd86e888f4cf90613e3e9af9f"/></dir><file name="Config.php" hash="e64dbce8fd9d9bb1e8fdc4651d85959a"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="2c0689b165c97288b2e8c7f1ea7fccb2"/><file name="SoapController.php" hash="7bcebcfc203e99777804ee9fc0bb46f4"/><dir name="V2"><file name="SoapController.php" hash="78d4a08f6a1369366ae349868965ab98"/></dir><file name="XmlrpcController.php" hash="ba4e2f4fd37b0375a77140340ff99b37"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1fa3c950da0464651007e8cd33f294b0"/><file name="api.xml" hash="16477872502aa7fee7b6e4ee85eb6d53"/><file name="config.xml" hash="d994cc2976bc842b796bc216af4ecabf"/><file name="system.xml" hash="d8d0ef91b865535c4f407f2eed075d7b"/><file name="wsdl.xml" hash="f0db676b04733b38f310355bb44bc3cb"/><file name="wsdl2.xml" hash="7d527421ba4b63a8a812ab6b1095891d"/><file name="wsi.xml" hash="9fb1700cf935a26e7fada90a07fae7fe"/></dir><dir name="sql"><dir name="api_setup"><file name="install-1.6.0.0.php" hash="9224f4bc3e4624a4b39829cd360f0469"/><file name="mysql4-install-0.7.0.php" hash="78a15f73deb0367b6902c80696ef0e62"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="59162c64de079f98682f67314851c92c"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="a76c976e331986d6249c15b79ec71cfe"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="c4b533ec0c78967c59942b8143936b97"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="ef060441ba7f33213e0a3aaf59a0266c"/></dir></dir></dir><dir name="Api2"><dir name="Block"><dir name="Adminhtml"><dir name="Attribute"><file name="Buttons.php" hash="30e7a5d3a1c83ef1df1b675173baa6dd"/><dir name="Edit"><file name="Form.php" hash="9da5d9bc5715ae0ae289a7646e27be85"/></dir><file name="Edit.php" hash="7ce77055d120c65648c1107fb2e5fc6a"/><file name="Grid.php" hash="770f37ab1ab5f7296cdd10e986a67e88"/><dir name="Tab"><file name="Resource.php" hash="69c35aa360066c71e6364d96fac6435c"/></dir><file name="Tabs.php" hash="6aea7548a023162ddc82e75e84cf8674"/></dir><file name="Attribute.php" hash="98679bff19e5a631eaa9e0c6cabc99ca"/><dir name="Permissions"><dir name="User"><dir name="Edit"><dir name="Tab"><file name="Roles.php" hash="b2acfc86b799efd51c7e76e10a2f7b5b"/></dir></dir></dir></dir><dir name="Roles"><file name="Buttons.php" hash="92a73c35cae3662229878c90d2e24fe8"/><file name="Grid.php" hash="215301b76a9a363c1253ec0377859241"/><dir name="Tab"><file name="Info.php" hash="3a4dacbc8eae6f0f35019df6912e89ad"/><file name="Resources.php" hash="2fd39485229e2d8f85b91d2ae7c4a862"/><file name="Users.php" hash="52ab2220a81f0e269f176e0d5615e8f7"/></dir><file name="Tabs.php" hash="5c4a34538372055306c8e7da3a8a5bde"/></dir><file name="Roles.php" hash="76bbcde1a4cbbfaa68890b7b6514b561"/></dir></dir><file name="Exception.php" hash="8e66157a187c75b217f4fc7ec56f3826"/><dir name="Helper"><file name="Data.php" hash="87e59f1ae52509cb875ab25365d6e351"/></dir><dir name="Model"><dir name="Acl"><dir name="Filter"><dir name="Attribute"><file name="Operation.php" hash="02a577838191e96fc389578891359dee"/><file name="ResourcePermission.php" hash="c0f28749c7ac8039df60f8e8ce3a4b45"/></dir><file name="Attribute.php" hash="9bd5d7c9a4818b3cd1616ae1391ddd19"/></dir><file name="Filter.php" hash="929e44dd71dcd3f25405933f14089b02"/><dir name="Global"><file name="Role.php" hash="c46376eceb36ca5d32e9582a1f5b4af4"/><dir name="Rule"><file name="Permission.php" hash="687b8715aa27e61ed516c53162775b57"/><file name="Privilege.php" hash="3d2975048cefa0226e59cd084fbcfdd7"/><file name="ResourcePermission.php" hash="a44cdbbafaf12ee628fec8ac8ba8a0ba"/><file name="Tree.php" hash="2358b8723c6e9bee54b3ea9fd7d0d953"/></dir><file name="Rule.php" hash="95040ad8b86317eb060569c28b16410b"/></dir><file name="Global.php" hash="0d95e4be423febd261812ceb03847411"/><file name="PermissionInterface.php" hash="11d294d4927d5070933d34ef2711eac9"/></dir><file name="Acl.php" hash="2ffa26f03192a669d9c86dbe724f46cd"/><dir name="Auth"><dir name="Adapter"><file name="Abstract.php" hash="e76e604f005c4dc398292c2acc00a4fc"/><file name="Oauth.php" hash="894fbacf6e21a7efeab9a0a9db946650"/></dir><file name="Adapter.php" hash="f3cbea7d5ab8b09386dc67fd107aa7d2"/><dir name="User"><file name="Abstract.php" hash="ad4d2f0c4d03eadbb81dcfbfbe4273ad"/><file name="Admin.php" hash="25e7646a77954a5784120335d13ef388"/><file name="Customer.php" hash="179a03eaa77810a013563fca02a56623"/><file name="Guest.php" hash="e572d1c2acf5facef9187d1cfe6aece6"/></dir><file name="User.php" hash="4f28b0c1bc6e6f71a0bf6a09a7a27773"/></dir><file name="Auth.php" hash="5e8ff5e0a305081a8319b2bf24496b1d"/><file name="Config.php" hash="0955d6231212120e16a5c2e7f21463a0"/><file name="Dispatcher.php" hash="1f61a75165aa48c8c97c16e72f1338d4"/><file name="Multicall.php" hash="c4741cbd2ebed177654a699ce15312e9"/><file name="Observer.php" hash="ab5efc3be71db1b54fb9f4858cd3beca"/><dir name="Renderer"><file name="Interface.php" hash="17d1ea9e291a600dd7f98a941a8945ba"/><file name="Json.php" hash="5fd32d14bd18d550ba78e9a9e901722e"/><file name="Query.php" hash="d7ea3556aaefe6c400510466a7f15077"/><dir name="Xml"><file name="Writer.php" hash="c2b3024abe24d48eac4d6bcc0f4e85e7"/></dir><file name="Xml.php" hash="fcd74870b09eb236ce768bb81b2466b9"/></dir><file name="Renderer.php" hash="7f9de64648eca506571a5156e51672c9"/><dir name="Request"><file name="Internal.php" hash="5b2981aacf6234be279b29c7eaa7bc39"/><dir name="Interpreter"><file name="Interface.php" hash="adf1d99caf07e26de34373618d1eeb7e"/><file name="Json.php" hash="759806f32a2f717d90e57657fdc2e703"/><file name="Query.php" hash="130b11ea74e1d91d9637abc5d877b218"/><file name="Xml.php" hash="3bbd3aae616947cfab67af3417e8bc73"/></dir><file name="Interpreter.php" hash="108d88f20c84667266bdeeae0f566ad0"/></dir><file name="Request.php" hash="6152f16393d2f6600131ce075be99627"/><dir name="Resource"><dir name="Acl"><dir name="Filter"><dir name="Attribute"><file name="Collection.php" hash="665ff0a1ef0b44ce90c6827fa7aee98f"/></dir><file name="Attribute.php" hash="0b1dd9c5e804f2d74f035280808e3096"/></dir><dir name="Global"><dir name="Role"><file name="Collection.php" hash="8d49bb4b7350e5143a66ac6ede38a451"/></dir><file name="Role.php" hash="208b98f459bc1efa86679e889ad1c5c1"/><dir name="Rule"><file name="Collection.php" hash="cfa58d513a38612949c71087500a9a72"/></dir><file name="Rule.php" hash="1f72374898d0ee315fe11ca122ea4bc5"/></dir></dir><file name="Setup.php" hash="d3f2fe1dd0355d83243d16dcae070bab"/><dir name="Validator"><file name="Eav.php" hash="85530468f643d51545bfb026ea31c60b"/><file name="Fields.php" hash="669ab0efb47133f83250847f032f1c37"/></dir><file name="Validator.php" hash="b4728be46e9e8b46f46af0478dcd8449"/></dir><file name="Resource.php" hash="0c8dcd44c2d03e288b985f976650c3ec"/><file name="Response.php" hash="0fbabaec58d372103b7863f6a27ec143"/><dir name="Route"><file name="Abstract.php" hash="1a27c8f502aee85f52c0b9a994ea204f"/><file name="ApiType.php" hash="6a0ec483520e9983f2cb40b5dd17fd8d"/><file name="Interface.php" hash="374d8c631c5e8adae4f11a5f11b4537b"/><file name="Rest.php" hash="cd9a94ad7d40766cb62a50a60c3dba32"/></dir><file name="Router.php" hash="fd7c3235d8dae9bf2fc8dff91472fb5c"/><file name="Server.php" hash="9ac47ece0cdc38b210dcb7df6d8c1ced"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Api2"><file name="AttributeController.php" hash="347953872ae6d5e90b16561388e6848f"/><file name="RoleController.php" hash="d27833725254f6fc12a799efd2510973"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ad36dd3cd7d6e5d120bb9e7c15e11ff1"/><file name="config.xml" hash="4821abb0ebec976548c9e30d30a2b213"/></dir><dir name="sql"><dir name="api2_setup"><file name="install-1.0.0.0.php" hash="592bbea52850ec9fc91066bff5508914"/></dir></dir></dir><dir name="Authorizenet"><dir name="Block"><dir name="Directpost"><file name="Form.php" hash="9dc667687a53dd0017fa7cded230b4f1"/><file name="Iframe.php" hash="5ae85348c16639f2006542866f798d66"/></dir></dir><dir name="Helper"><file name="Admin.php" hash="ead9dd582ab6f747f2466c996b50aa31"/><file name="Data.php" hash="5440d68161cc5379507c6a0771bc7f42"/></dir><dir name="Model"><dir name="Directpost"><file name="Observer.php" hash="0fd3c47026cdba1c36b4aa5e8f43500e"/><file name="Request.php" hash="7a968e895e936e86b4e0488537e45587"/><file name="Response.php" hash="a136dcb41d52650f99036483b81d27fc"/><file name="Session.php" hash="b96a36a37ede54e2af70ed3f28c90413"/></dir><file name="Directpost.php" hash="b6869c83e477ab7f5d0590c1aeb0d856"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Authorizenet"><dir name="Directpost"><file name="PaymentController.php" hash="c49edc9dba097d0757eeefd8a00d2086"/></dir></dir></dir><dir name="Directpost"><file name="PaymentController.php" hash="e7e5bb728fda361ef16911f123e50e0c"/></dir></dir><dir name="etc"><file name="config.xml" hash="316742cf75cd9a1d8e31621757eafdb2"/><file name="system.xml" hash="772679033f6a49116ba41a49da828f3c"/></dir></dir><dir name="Backup"><file name="Exception.php" hash="1d9584b08582ee0931ae942ddc597056"/><dir name="Helper"><file name="Data.php" hash="9c4b278a8188970834ea3264dca74197"/></dir><dir name="Model"><file name="Backup.php" hash="163966b51cb4df0584200c39375b21ae"/><dir name="Config"><dir name="Backend"><file name="Cron.php" hash="ed07667ca13aa89805ebb7136d0dcd71"/></dir><dir name="Source"><file name="Type.php" hash="ed9703bce1523c0c634e862c7ad70f5e"/></dir></dir><file name="Db.php" hash="d35147f61a16f6e4d58969ae58205907"/><dir name="Fs"><file name="Collection.php" hash="d2e6b760f5050792712b1d79c35dfc68"/></dir><dir name="Mysql4"><file name="Db.php" hash="11fec4cd1cde22cf681bf8b4780c0a09"/></dir><file name="Observer.php" hash="03078671713743c8c8e97a717c2e80c2"/><dir name="Resource"><file name="Db.php" hash="35961c796f60164427dcd9ce6a1c87b9"/><dir name="Helper"><file name="Mysql4.php" hash="4d24628fa1b2890c91d8048cd65fd7da"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="e48cb7bbc9b47dc55c11205716a727ad"/><file name="config.xml" hash="bbef782377f0d496a05daa4ab71473d7"/><file name="system.xml" hash="e461e31f4a3d7a05ebe6398bea5ec004"/></dir></dir><dir name="Bundle"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Composite"><dir name="Fieldset"><file name="Bundle.php" hash="d1a01550cc44852c92276e95e161f44a"/><dir name="Options"><dir name="Type"><file name="Checkbox.php" hash="72b0fdbe208a568907ca6e03b6cc4970"/><file name="Multi.php" hash="b50b7d8093326d9c5ba76c907b3707b6"/><file name="Radio.php" hash="c3510dc759996779d7e70bec6c05a1bc"/><file name="Select.php" hash="b6719e8406961f0c5cbae9d6bbdaa973"/></dir></dir></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Attributes"><file name="Extend.php" hash="c7177a24ec87ff4c63620754314fbf61"/><file name="Special.php" hash="edc5952b3071bb875c24e1a81d05d2fb"/></dir><file name="Attributes.php" hash="20404aae31a0d039019f640c85f05ea5"/><dir name="Bundle"><dir name="Option"><dir name="Search"><file name="Grid.php" hash="1119c21a96470f11950d7d84f65a221a"/></dir><file name="Search.php" hash="665485b2d6f20f2b715f7243c3f5d9b6"/><file name="Selection.php" hash="b2b8cf4675d04f1264a3c4a04ed2dca7"/></dir><file name="Option.php" hash="1dd71760cbe26ee1fabc3e3299bbb9fb"/></dir><file name="Bundle.php" hash="55373aaaa8f72c91051e678f03ba5029"/></dir><file name="Tabs.php" hash="9296e80b1084b9a8dc6bd1c4ce2062e1"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Items"><file name="Renderer.php" hash="34710f3c5f673268d1d13a74d50c1caf"/></dir><dir name="View"><dir name="Items"><file name="Renderer.php" hash="73a0c1e6afe739b78ca2237ef2cece89"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="List"><file name="Partof.php" hash="62d55ff286597964b23ebb4bbb73f8d5"/></dir><file name="Price.php" hash="13955390c1c20f705be3b7f6a7224368"/><dir name="View"><dir name="Type"><dir name="Bundle"><dir name="Option"><file name="Checkbox.php" hash="7703ad9fc12df82467b1269c25bcf50c"/><file name="Multi.php" hash="cd5638f49dd792c79fa448650021d40c"/><file name="Radio.php" hash="46f0caaedeb69fbb3f7307a250c6176e"/><file name="Select.php" hash="07bbb86c3bd29f4856bbbfcb47607e0e"/></dir><file name="Option.php" hash="f9aa8a487a359dff377e4e48cc7edf31"/></dir><file name="Bundle.php" hash="85dc00e3c6624bd8f946577289d8d120"/></dir></dir><file name="View.php" hash="dbd39805a66f8efa5923826033520c1c"/></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="92eecf3508f521f28c4332b143139d2b"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Items"><file name="Renderer.php" hash="1cbdc643a998d58bc27d33977ab6247e"/></dir></dir></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="3043d1b7f4599a49b37bc5f6a935a7aa"/></dir></dir><file name="Data.php" hash="9b51be0fea4acbedc363240046c243af"/></dir><dir name="Model"><dir name="CatalogIndex"><dir name="Data"><file name="Bundle.php" hash="08fcad235cc860bebf0e43dd9336d329"/></dir></dir><dir name="Mysql4"><file name="Bundle.php" hash="a105d7dd3f8efeddf367ce54c3bf27dc"/><dir name="Indexer"><file name="Price.php" hash="a49e39a23e70132f0ae71080b944bcdb"/><file name="Stock.php" hash="871b4097d83cbee3008e89ac6f440406"/></dir><dir name="Option"><file name="Collection.php" hash="30d6be1fbbe1ade58485f739f8ad453d"/></dir><file name="Option.php" hash="1795c05a00627e4ae2780198ed21cc3b"/><dir name="Price"><file name="Index.php" hash="14edc32b873efbaf576ff7afe5bddb17"/></dir><dir name="Selection"><file name="Collection.php" hash="a8fcdb51475db3cca91c117aadb4b32a"/></dir><file name="Selection.php" hash="b67d2542e335ac673b98208e8583bcf7"/></dir><file name="Observer.php" hash="e71e6581febdffc6db50b198c051b628"/><file name="Option.php" hash="2aafa265c1a09ca14873789c24081152"/><dir name="Price"><file name="Index.php" hash="8295fe309a878eb9b2b2cacc81177cbc"/></dir><dir name="Product"><dir name="Attribute"><dir name="Source"><dir name="Price"><file name="View.php" hash="40936c9f32040f4fbe9757f3038f2e6e"/></dir></dir></dir><file name="Price.php" hash="8300e53a3d8ba6480a674bb5a7f7a09d"/><file name="Type.php" hash="f795e704b950d1062789735506e07965"/></dir><dir name="Resource"><file name="Bundle.php" hash="dac365d9b9dc19ae98504b7a354fdfaa"/><dir name="Indexer"><file name="Price.php" hash="09346af9318133cdcd4bfe07ef2409b4"/><file name="Stock.php" hash="1d2a9f422efd1a85d4edf75ee67ef790"/></dir><dir name="Option"><file name="Collection.php" hash="85c0a9674eee8735fb0b674f2b69cd97"/></dir><file name="Option.php" hash="04f9d973469beb08582b72c285815fe0"/><dir name="Price"><file name="Index.php" hash="0d623baf6d9f22212eff19075e38030a"/></dir><dir name="Selection"><file name="Collection.php" hash="86fd88e9420793830e08ae09da4ad6bd"/></dir><file name="Selection.php" hash="4b11349866beaf419718e435ba6f7800"/></dir><dir name="Sales"><dir name="Order"><dir name="Pdf"><dir name="Items"><file name="Abstract.php" hash="6e94008eaed3489d1ce78686f9160a65"/><file name="Creditmemo.php" hash="7a009148c167f32c8d64c52e8a1467d1"/><file name="Invoice.php" hash="a37bebede91906ec96d949d0555b3a3f"/><file name="Shipment.php" hash="2d76cd2a857c85297b76519c919e91f1"/></dir></dir></dir></dir><file name="Selection.php" hash="df581745d68a5f9c1b2512b83e1ef5c5"/><dir name="Source"><dir name="Option"><dir name="Selection"><dir name="Price"><file name="Type.php" hash="4d1dba02f19be6162f4c041088b53861"/></dir></dir><file name="Type.php" hash="de0061e8100adf8c073f82f35344cd2c"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Bundle"><dir name="Product"><file name="EditController.php" hash="7b354c43663ae7359b5357674883d16f"/></dir><file name="SelectionController.php" hash="b420a1ca332482c3bc55b5d2fcdfaa8f"/></dir></dir><dir name="Product"><file name="EditController.php" hash="d2bf3045167b891f534a3c490901bf94"/></dir><file name="SelectionController.php" hash="9348a022b8d2a28b7bc9e2aaac2e8ac6"/></dir><dir name="data"><dir name="bundle_setup"><file name="data-install-1.6.0.0.php" hash="6edda03943c56b8077f77340b67694e0"/></dir></dir><dir name="etc"><file name="config.xml" hash="2f8a1d2fbf06b32f1a32fc893b47ca3b"/></dir><dir name="sql"><dir name="bundle_setup"><file name="install-1.6.0.0.php" hash="9fc392edbf05d6c30ba9f265892014ef"/><file name="mysql4-data-upgrade-0.1.13-0.1.14.php" hash="4dab0c1d90a659ff1e1f94c1e9acb132"/><file name="mysql4-install-0.1.0.php" hash="82c9663f990f4e9ae9a75c26e3979b23"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="20e77245c14eb8059b187264e8152e29"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="85b79bb079050cbd190bde83a280783f"/><file name="mysql4-upgrade-0.1.10-0.1.11.php" hash="2151261f762c2562d561569e14c6d9a8"/><file name="mysql4-upgrade-0.1.11-0.1.12.php" hash="212828a3289510319fd7479e9251b270"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="b92eb535f69cc85034592088f696eaf4"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="9b83041cd925624e8a80a965c16e9380"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="ae04d9a83330f2706b2e62b172efea3f"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="f0ac187df40e0f6d202faedcc17d9292"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="13940f417ccbdff869375925e41972e9"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="32377c2202aae4b003943383315634d4"/><file name="mysql4-upgrade-0.1.7-0.1.8.php" hash="75110184a452c033ae19cdecc77a3e17"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="81d93640a1700e63de5046e1a774de77"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="6a9b12e735a6a3fc0be490019487295a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="bfdb71af0a3fa27111431c4e66ad5f00"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.0.1.php" hash="1a4e94847369b5ccf118cd1e96797fc7"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="63e676fd5c7cae10ac232c732807ca6d"/></dir></dir></dir><dir name="Captcha"><dir name="Block"><dir name="Captcha"><file name="Zend.php" hash="e3140ff48b0ebf607d5ff1702b823eb1"/></dir><file name="Captcha.php" hash="197d8bf48a7a236f840c9b9052a519a0"/></dir><dir name="Helper"><file name="Data.php" hash="cb661b87e454aefb55ad1b48f872af86"/></dir><dir name="Model"><dir name="Config"><file name="Font.php" hash="564160d4501a0983d247e94142f49bc1"/><dir name="Form"><file name="Abstract.php" hash="690bff323d84194efd1c300d2fb2c57b"/><file name="Backend.php" hash="da613c3fed8fb74fd5bc976646cc9d56"/><file name="Frontend.php" hash="b3088a0b9df26a2e1ba3f3c97139ca38"/></dir><file name="Mode.php" hash="e429bbf441d140df0f77ff123dcdac8d"/></dir><file name="Interface.php" hash="3d00e72f1a02fc1f7b63ea4ef747ba18"/><file name="Observer.php" hash="659576bf1859959b5b890eaf0e3ed887"/><dir name="Resource"><file name="Log.php" hash="24b083056fcb18954a72c87eb67421a9"/></dir><file name="Zend.php" hash="62867a57ba8e68a150055b5a4db9ee6a"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="RefreshController.php" hash="54b78c3619e28c26585e6111bd90450f"/></dir><file name="RefreshController.php" hash="6702b9e4aaac22baad8a29030b956742"/></dir><dir name="etc"><file name="config.xml" hash="587c37a06b7bd60161c9c3d793d070f2"/><file name="system.xml" hash="edeedb1737798eda557aa9c5faf09b8f"/></dir><dir name="sql"><dir name="captcha_setup"><file name="install-1.7.0.0.0.php" hash="6e8d794f94dadd6f266c7fe329e9eef7"/></dir></dir></dir><dir name="Catalog"><dir name="Block"><file name="Breadcrumbs.php" hash="dab2381718549050f05cbb86706b7e5e"/><dir name="Category"><file name="View.php" hash="f14a047e957430565a3292784ec3c9b8"/><dir name="Widget"><file name="Link.php" hash="bad2d201324e439074ec22972d1e3972"/></dir></dir><dir name="Layer"><dir name="Filter"><file name="Abstract.php" hash="eefcbcb98818b2ae12e3506aada0c913"/><file name="Attribute.php" hash="d5bd80637bf7dd879ade11e6259f05d6"/><file name="Category.php" hash="06f66db270055c1153068ec990c54df5"/><file name="Decimal.php" hash="29865012d50a70ab2d144e4c0cb8ac9d"/><file name="Price.php" hash="5636ca99c6588924845c484594f1e873"/></dir><file name="State.php" hash="a9c13d850f4607a04d1c428e98a2c4c9"/><file name="View.php" hash="11e3c1f24d801f6431e3be49aca41583"/></dir><file name="Navigation.php" hash="89f15c96eb17886c364ddf87d4e456a4"/><dir name="Product"><file name="Abstract.php" hash="7328523670e73e435c44af3a5808b240"/><dir name="Compare"><file name="Abstract.php" hash="c48b7dab6bee655b6eadd762fd242606"/><file name="List.php" hash="f3cb7750c7227edd3b87e33ebe46cab3"/><file name="Sidebar.php" hash="aac8306a9e8613dfc7f2a0dc36b04398"/></dir><file name="Gallery.php" hash="357c7d68ef3eff66f551627a5d5d0467"/><dir name="List"><file name="Crosssell.php" hash="876a23484f926c2e29d2ec07a571dfc8"/><file name="Promotion.php" hash="f4bb4b4626b8a15443a4ae04bef9ae0e"/><file name="Random.php" hash="3541c59092f62a31889e5aebb00456d4"/><file name="Related.php" hash="f20a66f4de9ae05a91ca2091633ef51d"/><file name="Toolbar.php" hash="860922416d2d9ab6cb606e349ce4cc86"/><file name="Upsell.php" hash="955a21e298fd8d6ab05b4a71bdde936a"/></dir><file name="List.php" hash="e8e75d2e527d89da82eaee62608af684"/><file name="New.php" hash="1660afbb4e83ff8f7218c91c5c6aafcf"/><dir name="Price"><file name="Template.php" hash="174757929a4637d3d4569b7804409562"/></dir><file name="Price.php" hash="eeed225d412451fec2f937bce058dbb0"/><file name="Send.php" hash="563e1e0b47de6cded50958fc8ba7c943"/><dir name="View"><file name="Abstract.php" hash="b22e9d718bf41c5382c4dc58cc003f8b"/><file name="Additional.php" hash="64048a426caafbf36d41dab9e077dc84"/><file name="Attributes.php" hash="b9eb935b62dc4693f15604a3737b76e8"/><file name="Description.php" hash="62bcfd7556f13279339e0f8953b22e7f"/><file name="Media.php" hash="4e576e71f469f2210808ef5df5827246"/><dir name="Options"><file name="Abstract.php" hash="ee57d5767122bb1fc496aee7bdeec76a"/><dir name="Type"><file name="Date.php" hash="21eca2c2db2061b75cf944f1d8fd4a94"/><file name="Default.php" hash="d643f7ddf73ab70e504fd70a5c1460a7"/><file name="File.php" hash="407e9c7d21b1f8c8a7ba830487ce9e94"/><file name="Select.php" hash="cbe99df038ac71aca106800fc39f22b7"/><file name="Text.php" hash="8a74862cba8bf5aa680c5f9104bea6f6"/></dir></dir><file name="Options.php" hash="ff35316d33688661240c14d9dc567c05"/><file name="Price.php" hash="1f6e98dfdae3f71d86a84eef7ea98e90"/><file name="Tabs.php" hash="11630345e930dbcf6e9729a16b09a589"/><dir name="Type"><file name="Configurable.php" hash="e61c2916fa2b3de94ecc7c7683247b3f"/><file name="Grouped.php" hash="b131a8ec490670de0b7a0043f23d6707"/><file name="Simple.php" hash="4e2214d776eca1f2baae3b6774f7f2af"/><file name="Virtual.php" hash="df4a51eec042f9024c6dd9086456d93e"/></dir></dir><file name="View.php" hash="a0e4ad0acaaf8834ddaac74f2a2e0301"/><dir name="Widget"><dir name="Html"><file name="Pager.php" hash="e59c96a77fa455d8a2aeb09b15f0a234"/></dir><file name="Link.php" hash="2502953b5e8b48182daa221517ea76f9"/><file name="New.php" hash="4a9a8981957dc0511cece8c9a6f498e3"/></dir></dir><file name="Product.php" hash="4444c47b16af1ee34a1c77aff29dd3f5"/><dir name="Seo"><dir name="Sitemap"><file name="Abstract.php" hash="5c0e40f42669d48af47b389a28501475"/><file name="Category.php" hash="b5ac1974fe6256597bd24f4b15484ef5"/><file name="Product.php" hash="df73746b3b434bf7d893afb16146ef27"/><dir name="Tree"><file name="Category.php" hash="b5512d7fe864e588c070ff10dbe8ce3a"/><file name="Pager.php" hash="fb5588cd7322c23026f27638a45c8d65"/></dir></dir></dir><dir name="Widget"><file name="Link.php" hash="d2c57e7e866c3bba797b9ae3780afb47"/></dir></dir><file name="Exception.php" hash="32ae17c72416f6c75b88e74776a42a17"/><dir name="Helper"><dir name="Category"><file name="Flat.php" hash="2a2cf087a8b262591b88d789c7ff508a"/><dir name="Url"><dir name="Rewrite"><file name="Interface.php" hash="0c6a04a205885d1dfa6ba43aa60a78ab"/></dir><file name="Rewrite.php" hash="c9144f35444311c1de4b69adcba1011c"/></dir></dir><file name="Category.php" hash="d2c4aaf8f55f2301d2c0c3aadaff5f94"/><file name="Data.php" hash="7fd21ab1980277fe851d3dcdee2ee9f7"/><dir name="Flat"><file name="Abstract.php" hash="4a669e8b86c77ac0375a39ec9ebd1c22"/></dir><file name="Image.php" hash="206d09e955869c6c7afd049b17630631"/><file name="Map.php" hash="991aae7948ba842c94fefc0c878194c5"/><file name="Output.php" hash="e66c7741f02e3f4fce1c0e8550f80bfc"/><dir name="Product"><file name="Compare.php" hash="052778e69e62955d8ba74a3ae0047c9d"/><dir name="Configuration"><file name="Interface.php" hash="7d6901165ea30966851e82735c64daa1"/></dir><file name="Configuration.php" hash="c5ec178e865833147bc26ebd9cdfcfb9"/><file name="Flat.php" hash="2d8f5df2a838567dcf003376361401df"/><file name="Options.php" hash="98afa1990b749d872ce9aad28c8b3061"/><dir name="Type"><file name="Composite.php" hash="2c56ad7d1249dc7f80ee0401ed70ea10"/></dir><dir name="Url"><dir name="Rewrite"><file name="Interface.php" hash="9b4996a5e9d4daa89c036dbfbd771543"/></dir><file name="Rewrite.php" hash="acda3fe8908422645c410bc8bd624b24"/></dir><file name="Url.php" hash="b674d6731e3cb8c63e179bdcb76588ff"/><file name="View.php" hash="61797e538e15b10861c88a021841dfd3"/></dir><file name="Product.php" hash="04b2822dc8cc3fed9127c00a680e7b17"/></dir><dir name="Model"><file name="Abstract.php" hash="3103620674496397bb4d21b9ec28f34f"/><dir name="Api"><file name="Resource.php" hash="a9fcca8b2c3419a9bcbfe65e4041f939"/></dir><dir name="Api2"><dir name="Product"><dir name="Category"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="8e42c2fa4ea79661f52c74bc8e43be3d"/></dir><dir name="Customer"><file name="V1.php" hash="d59ddd14679c8f9aa2ae7db86933d883"/></dir><dir name="Guest"><file name="V1.php" hash="e8021ef740e59a287d260d05db4323dd"/></dir></dir><file name="Rest.php" hash="93da01fc7573f0cb21f5ce8491e6e964"/></dir><file name="Category.php" hash="fd88a7c38acc3a4557fd97b8b528ecb5"/><dir name="Image"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="dc9a608bdba7831626b0bb3359edffb7"/></dir><dir name="Customer"><file name="V1.php" hash="7a8ec1c18d4879fb8847b4d70dc5a9d4"/></dir><dir name="Guest"><file name="V1.php" hash="53575456ac195abf8394e62f5cd574fd"/></dir></dir><file name="Rest.php" hash="5fc432d50069268bf87de3dd29f2b976"/><dir name="Validator"><file name="Image.php" hash="01d68ef27814d7262873018bec12a16d"/></dir></dir><file name="Image.php" hash="458a3a2d0af701ce6d92a1920faf4c13"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="83ef1afb58c8c5e3467fadfcc3dc72d4"/></dir><dir name="Customer"><file name="V1.php" hash="a341b1f231dec3c5b9742bfebcce7ec1"/></dir><dir name="Guest"><file name="V1.php" hash="53e0fdddf85dce5e474c706e528807b9"/></dir></dir><file name="Rest.php" hash="108eb659fd7de8d1d8dabf9d90abbbbf"/><dir name="Validator"><file name="Product.php" hash="69f20a23d0c413691ce8f3dcf01eedb3"/></dir><dir name="Website"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="23dc33bf46785827175930e1a15dc98e"/></dir></dir><file name="Rest.php" hash="a1a997aed079d3b7b27c0c395168a6bd"/><dir name="Validator"><dir name="Admin"><file name="Website.php" hash="e5b41e2f3cd67239b3226f5b580bcf1f"/></dir></dir></dir><file name="Website.php" hash="b490f8b56d66fe8c07429a7acfb23d1f"/></dir><file name="Product.php" hash="153b39154268727a39abbb70f206f293"/></dir><dir name="Attribute"><dir name="Backend"><file name="Customlayoutupdate.php" hash="8f3647c7ae0e9c71207091565a1d39d1"/><dir name="Urlkey"><file name="Abstract.php" hash="c0577637ef3b436a7218e9b6878adf19"/></dir></dir></dir><dir name="Category"><dir name="Api"><file name="V2.php" hash="e14aa15dd60b7968dc8a891791543b22"/></dir><file name="Api.php" hash="c2ec820764496fee4761a3652a45fe33"/><dir name="Attribute"><dir name="Api"><file name="V2.php" hash="fd7327a2eafc0a8a610f3a6fa39d22b1"/></dir><file name="Api.php" hash="8ab727a2af4401214c65d6a012b53b84"/><dir name="Backend"><file name="Image.php" hash="b8f275fc5befeeef8db39f4b42ed072d"/><file name="Sortby.php" hash="b4c6f5653a4b31079e40966511967c56"/><file name="Urlkey.php" hash="06f279de5fe222551e97b52ac1b59f31"/></dir><dir name="Source"><file name="Layout.php" hash="eba97851f2d59acec18db86202cbac4a"/><file name="Mode.php" hash="7aec1c98ef4706fbd84ee611d7529f8b"/><file name="Page.php" hash="9921b94d1305a74d8014c7eb3729cbf5"/><file name="Sortby.php" hash="1680da2e35d1232a59bb5e8139411f18"/></dir></dir><dir name="Indexer"><file name="Flat.php" hash="9d836804fb252ced0f1bae5e135a5e5a"/><file name="Product.php" hash="6bb2b173560b41800c67f1521ff2065c"/></dir><file name="Url.php" hash="d007be46a04160a3dab1c9ca48bf9b22"/></dir><file name="Category.php" hash="77f096d5a872a4af01317e2e7a9be122"/><file name="Config.php" hash="d2b67ebef5018fbe4806da55480fdf58"/><dir name="Convert"><dir name="Adapter"><file name="Catalog.php" hash="ec918565e45f17766817ea0a9aac9b5a"/><file name="Product.php" hash="5d8e58bdf5ba6aea18b51e7e53436351"/></dir><dir name="Parser"><file name="Product.php" hash="03dad5f92788f30c56329f84df76eb02"/></dir></dir><file name="Convert.php" hash="f4cb35d34b7e7b56c4ed16b28dde40c6"/><file name="Design.php" hash="3b424406387f0a395fb9bfee18eda2e7"/><dir name="Entity"><file name="Attribute.php" hash="65db780e088fefa284113d2a4d0d40bb"/><dir name="Product"><dir name="Attribute"><dir name="Design"><dir name="Options"><file name="Container.php" hash="cf987ae7b06b896650c8bbe35ebabed9"/></dir></dir><dir name="Frontend"><file name="Image.php" hash="2981031837295463e1d57f91b1b99512"/></dir></dir></dir></dir><file name="Factory.php" hash="5c940ab0d0ceae28c8a43a60f27e2d14"/><file name="Index.php" hash="3e6e38408882ce699a05cbccd5ed3c06"/><dir name="Indexer"><file name="Url.php" hash="a83fb403cb6ca1e6cb06aa98065705ba"/></dir><dir name="Layer"><dir name="Filter"><file name="Abstract.php" hash="8b543a2ea812d0100ed90183f8d54e9a"/><file name="Attribute.php" hash="6cf9b952b4a412dc1c5e662081ed7b76"/><file name="Category.php" hash="7fdfcc712efa16a0decc3786f5f28d83"/><file name="Decimal.php" hash="ebdf5a89c4a88f826101c27b98641f3d"/><file name="Item.php" hash="39b10c69714aaeab6b3980223d5f1544"/><dir name="Price"><file name="Algorithm.php" hash="2628a11cb85cd42fe49e89d56b14b4d1"/></dir><file name="Price.php" hash="9c536ad60547a4241e5e351a593b9bb0"/></dir><file name="State.php" hash="635bc64507b1d11312854ad582a08c38"/></dir><file name="Layer.php" hash="33f0735a45d5192876749545e960c80b"/><file name="Observer.php" hash="53b5ff795856c5a53ef73c2cac1875ea"/><dir name="Product"><file name="Action.php" hash="d9613b0275dde94f06e92b1454e95265"/><dir name="Api"><file name="V2.php" hash="f9fb5e59206b221a1af51af4d67720a6"/></dir><file name="Api.php" hash="8e921b1b5d0d9abaf414ea515ca9d833"/><dir name="Attribute"><dir name="Api"><file name="V2.php" hash="676fd9d10ea5a48f2a622da80ccb47f7"/></dir><file name="Api.php" hash="facd4342fe4a4500a5aad27974806b2f"/><dir name="Backend"><file name="Boolean.php" hash="8ef39bdda67176eafea7e35380862e7a"/><dir name="Groupprice"><file name="Abstract.php" hash="a032aa77fb64e0c5c6880e9683a13d9e"/></dir><file name="Groupprice.php" hash="4b9119c5a3f1a0a64b9e5e2f10349970"/><file name="Media.php" hash="9791d033e1b38e60530c7e187588c75d"/><file name="Msrp.php" hash="d2b4d99ed552f9cacf31634eef4eb78b"/><file name="Price.php" hash="b537265d74c73a8e0b1a59ca29ab59ca"/><file name="Recurring.php" hash="c5517fd0cb006a2ad38a7de84d57a3ce"/><file name="Sku.php" hash="40334dcdae3fca0ab8eb0cd9421933b7"/><dir name="Startdate"><file name="Specialprice.php" hash="aa33b14f5f1de6708efa6ef7a905b516"/></dir><file name="Startdate.php" hash="3f3819c60c86b91ae45b4ac279edb0fc"/><file name="Tierprice.php" hash="f978087f28711f7aec541e68e0f0f376"/><file name="Urlkey.php" hash="4c539dd4d1d3007a9d8fc09f967375d8"/></dir><dir name="Frontend"><file name="Image.php" hash="cae0a80831e2b3ca348577bf9dadd860"/></dir><file name="Group.php" hash="c233ddf9563a5b22d72232104384651b"/><dir name="Media"><dir name="Api"><file name="V2.php" hash="7f8b2e79e74698e557df3143e47f20ea"/></dir><file name="Api.php" hash="555d8539a15f3b5aa88c2f6244c49115"/></dir><dir name="Set"><dir name="Api"><file name="V2.php" hash="946b1c83955e059047f6ec3eb9985184"/></dir><file name="Api.php" hash="1580b4dfd2e989d83b0c3f451af58eed"/></dir><dir name="Source"><file name="Boolean.php" hash="e3acf66166cfb90ed611af2930a2e09a"/><file name="Countryofmanufacture.php" hash="f85b0a53f73e1ac0d8447132839ce577"/><file name="Inputtype.php" hash="e467064e239e36589353a6e6652c9138"/><file name="Layout.php" hash="e93a209f3093c5f5993d936ba6c2a6d2"/><dir name="Msrp"><dir name="Type"><file name="Enabled.php" hash="2ff76f69352ac583fd6ab9a85928733d"/><file name="Price.php" hash="f2dd34500faff206fa2d3e11bdf989ee"/></dir><file name="Type.php" hash="50a3f2d6ffac9dc2e08617811597733a"/></dir></dir><dir name="Tierprice"><dir name="Api"><file name="V2.php" hash="24d1eec7a3258cdbf86de7d99e714b9c"/></dir><file name="Api.php" hash="8385c627c4b3a36a97a6ce0e1ab8b855"/></dir></dir><dir name="Compare"><file name="Item.php" hash="63e7762670f57ac31acd8afa7367786f"/><file name="List.php" hash="27165978b12b654090aca4c348ffb6c8"/></dir><dir name="Condition"><file name="Interface.php" hash="4bac667bc046c13017377423fdde69f0"/></dir><file name="Condition.php" hash="c10a6a33977bd8a021bf83b0021b9abb"/><dir name="Configuration"><dir name="Item"><file name="Interface.php" hash="c07904168054df17507307f9c285b975"/><dir name="Option"><file name="Interface.php" hash="94125408528b68bc52b3b6cf1b2900fc"/></dir><file name="Option.php" hash="3c4c1ed602ccdd72b4ec151a18553d5a"/></dir></dir><dir name="Flat"><file name="Flag.php" hash="405820b0f95dab6fd33a749c21f7a5be"/><file name="Indexer.php" hash="3a7e8d73cae80a15a60c1c555a50a81c"/><file name="Observer.php" hash="769223829dc4d75b7593fa631b00dfb6"/></dir><file name="Image.php" hash="f40a8b18d965f4eab6dcc6891755ee13"/><dir name="Indexer"><file name="Eav.php" hash="7d74bc107ddc43da8498d77c97404ae8"/><file name="Flat.php" hash="1e6d861ae255d6b381f93e7eaf9e937b"/><file name="Price.php" hash="2624163fa13495ae28ee92ec587bf495"/></dir><dir name="Link"><dir name="Api"><file name="V2.php" hash="1485d465f1f47f879b7ce08dc58d0301"/></dir><file name="Api.php" hash="dfbb72a54bcb6c333f19b6b04553cda3"/></dir><file name="Link.php" hash="9fb1eeb979fb2e5a0854217feb11b798"/><dir name="Media"><file name="Config.php" hash="f0ac7b414a245deee9028917ade49cb9"/></dir><dir name="Option"><dir name="Api"><file name="V2.php" hash="295b9141f8b71108506896baaa0663e7"/></dir><file name="Api.php" hash="453d5d3d0a67ce2fefd9c449b744184a"/><file name="Observer.php" hash="11fc3d20f2880b159cc67ee863f5d403"/><dir name="Type"><file name="Date.php" hash="c4a7c48703337c027ad3d346224de33a"/><file name="Default.php" hash="36a093fe5b2aeb6a4c9992fbc70ca09c"/><file name="File.php" hash="5046c92d54f755462859a629d7bf12ae"/><file name="Select.php" hash="a1c5a0bfaafb1988ae9743646ec93c71"/><file name="Text.php" hash="d5d534ac247bde4bde6c4c502cfd5504"/></dir><dir name="Value"><dir name="Api"><file name="V2.php" hash="a68a7921a51f26bb3310478757b9e91a"/></dir><file name="Api.php" hash="a9230fb72895529e3212529fa035747b"/></dir><file name="Value.php" hash="2bcd5835204eec255f43fc763cabb19b"/></dir><file name="Option.php" hash="814db51ec4f4773266c176eb634c258c"/><file name="Status.php" hash="5dcbbe7769ef951715e659c2018cbd59"/><dir name="Type"><file name="Abstract.php" hash="4f466aae98f72edd97167c4b07180f5e"/><dir name="Api"><file name="V2.php" hash="81db9eb28dfa1cd4d927080d3a7ea612"/></dir><file name="Api.php" hash="3a6ebc6d8673b4f7af4ab2c5a3b12e16"/><dir name="Configurable"><file name="Attribute.php" hash="eb6e2a83ca8424339ac3cc0a5a4749c9"/><file name="Price.php" hash="1bea7b9f3d0de0946afa858a064fa379"/></dir><file name="Configurable.php" hash="3edd0599bf23f1995aa4963de3a55044"/><dir name="Grouped"><file name="Price.php" hash="0253182ccb911eabe8e19e669c8c7638"/></dir><file name="Grouped.php" hash="76016646cb2ea0a90160641e42d1a241"/><file name="Price.php" hash="6d2c627c4111efe5e4591697cdb22731"/><file name="Simple.php" hash="7f607549b4d12517f66a88987df9bb20"/><file name="Virtual.php" hash="829085212233f496782c9e9b031b6b3b"/></dir><file name="Type.php" hash="92b34b54f22e84f8ca82d0d9a746a562"/><file name="Url.php" hash="7f2ac3f907c3e6b6d9ea08c03723d2d5"/><file name="Visibility.php" hash="668ecfc9a1e2a53c0907088bc330c35e"/><file name="Website.php" hash="aa009a7f09e86588e7fb998b72a6ff5b"/></dir><file name="Product.php" hash="9dab6209a5352682012568a3bc3b8f25"/><dir name="Resource"><file name="Abstract.php" hash="f20d54eac39563874e060a0b181c42e1"/><file name="Attribute.php" hash="b6532d842732783f7ef1ebc3c38fd5b7"/><dir name="Category"><dir name="Attribute"><file name="Collection.php" hash="0e61f25ea822f1d50cbe0a97346ffbc0"/><dir name="Frontend"><file name="Image.php" hash="ec8d42c78ff0950dbc56e847e00afcf9"/></dir><dir name="Source"><file name="Layout.php" hash="b00432ca67ec3fc9e9322d4fb73f0cf6"/><file name="Mode.php" hash="391399eb421fc1d9b040c17020f6b741"/><file name="Page.php" hash="65d5115df4e8a006ae4b41e7be6b6b4e"/></dir></dir><file name="Collection.php" hash="7bfdbb5958be323e71dc4ea7b98af331"/><dir name="Flat"><file name="Collection.php" hash="072eb6260f847b9ce71bf38531ff5792"/></dir><file name="Flat.php" hash="d343d9a62fdbe22eb8634e178ebca640"/><dir name="Indexer"><file name="Product.php" hash="64e41b3a3d96c22b140adc45efef8006"/></dir><file name="Tree.php" hash="f0d2efe1b5319894776cb782df59edd2"/></dir><file name="Category.php" hash="e40e22f7750cd26686f3fa9272749898"/><dir name="Collection"><file name="Abstract.php" hash="409f7b6f1ad5cf20b04d2a37bc7620fb"/></dir><file name="Config.php" hash="2db6fae019ec79c5a7e6cb1daa8566bc"/><dir name="Eav"><file name="Attribute.php" hash="dd6e35d1579df9760022dd65f133bf66"/><dir name="Mysql4"><file name="Abstract.php" hash="ff5dbeb55fd6724afd42c09ed24cdc3c"/><file name="Attribute.php" hash="ede0ac3bfd412f86e2c36ed0a6f74b60"/><dir name="Category"><dir name="Attribute"><file name="Collection.php" hash="6d94bb5588fc4d1920e259037f93ffa4"/><dir name="Frontend"><file name="Image.php" hash="95a4d8e08d90d8da6b8340aa2b6f38f5"/></dir><dir name="Source"><file name="Layout.php" hash="929d6df5866c2fd332a2987b5d2fd953"/><file name="Mode.php" hash="6fed21b7c38e82b63b4edf38ad3be77c"/><file name="Page.php" hash="af44999736b5920e9a2ca662dff3cfaa"/></dir></dir><file name="Collection.php" hash="6c1e26b5f970df68c0858b7a6795fa78"/><dir name="Flat"><file name="Collection.php" hash="b56facaa8645f40ac01656900ae1f3cc"/></dir><file name="Flat.php" hash="3359d45de68809b455a8a9790633830c"/><dir name="Indexer"><file name="Product.php" hash="d294b0bd3c8aa36c8644b765377a9f26"/></dir><file name="Tree.php" hash="c0e160c2837e04122994443e26d5a8d8"/></dir><file name="Category.php" hash="859f32339e6411f3a4fd53e9ef484f55"/><dir name="Collection"><file name="Abstract.php" hash="672e5e04854b2c04acb50a2c22c6a5e0"/></dir><file name="Config.php" hash="6f86cfbbfabef5d5781a5c45bc2ac2cc"/><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="fcae67002e0a13614d5cfa11bb3f9044"/><file name="Decimal.php" hash="caa9eeee21a2dd5c806f3e83187a2e3b"/><file name="Price.php" hash="e49f552f44e6f59a97308bbed3d676ba"/></dir></dir><dir name="Product"><file name="Action.php" hash="e06b482cbb05de0f5c3a1b7f52c489bd"/><dir name="Attribute"><dir name="Backend"><file name="Image.php" hash="2438a13ffd8ba611955da135ba21c311"/><file name="Media.php" hash="d79857a5c10ac663691f55aa57b67957"/><file name="Tierprice.php" hash="ab380b633930301d131e0197f8747591"/><file name="Urlkey.php" hash="6c73b3436b040c859aadf9170c1bf9ea"/></dir><file name="Collection.php" hash="7b19cc84c1d35a09e775c70371c6a497"/><dir name="Frontend"><file name="Image.php" hash="16ec1ce2c602bcdb4764f04e97f8d1cc"/><file name="Tierprice.php" hash="bdaed65aa2d80a336a3966281893d7ae"/></dir></dir><file name="Collection.php" hash="97955be99c1f8f11f18b1af0763e9f5c"/><dir name="Compare"><dir name="Item"><file name="Collection.php" hash="80b9462ca1e9c0913d6d900d3da693f6"/></dir><file name="Item.php" hash="21919b8317303faa3b89d512ab268799"/></dir><dir name="Flat"><file name="Indexer.php" hash="de7818687372ab28543cd55c78bc4431"/></dir><file name="Flat.php" hash="4075045a5ccd98c92b5869873a4b29de"/><dir name="Indexer"><file name="Abstract.php" hash="734c4b1b6bad250cbd87c23cd03eb444"/><dir name="Eav"><file name="Abstract.php" hash="7b25ac3487d6e0549be448a453e6ea0f"/><file name="Decimal.php" hash="a56359dd2804d1b98e0bbdbb1f2023ac"/><file name="Source.php" hash="25353cd3162a000db1354bb031eba979"/></dir><file name="Eav.php" hash="eaaec7260717874a205b7c61e4c9a4b3"/><dir name="Price"><file name="Configurable.php" hash="31542ad203aef5d0185ce31471cb8773"/><file name="Default.php" hash="09efe3a441871a09940d183719369548"/><file name="Grouped.php" hash="1a09b97f2beaf2efcfdae52b1faf681d"/><file name="Interface.php" hash="b6e66a323e75e0c27584e232df6abb59"/></dir><file name="Price.php" hash="64837824ce41dd4e2a49e3c4e9355498"/></dir><dir name="Link"><file name="Collection.php" hash="2ae3996a8cac1413b9e3de5ea8b14385"/><dir name="Product"><file name="Collection.php" hash="a836990749fb372ebbd47608f5b2f04f"/></dir></dir><file name="Link.php" hash="f655704180895e85cc3245f5ea5134b8"/><dir name="Option"><file name="Collection.php" hash="27708fca4f45596a5e022eff29d19e66"/><dir name="Value"><file name="Collection.php" hash="c4746b8e0417aaafb693a0951f8c8676"/></dir><file name="Value.php" hash="041532a06fcd462d7dd481bb871cd070"/></dir><file name="Option.php" hash="184ae5c7ea858ea2029f57f59be809b9"/><file name="Relation.php" hash="07932cef0d70c5c2c42fa89bb0c1bfe5"/><file name="Status.php" hash="223c720090804a8ebed818cf36fe0193"/><dir name="Type"><dir name="Configurable"><dir name="Attribute"><file name="Collection.php" hash="c83735912b97dd31606ee4026745d8f0"/></dir><file name="Attribute.php" hash="ea01bce53397e1296418bd8ce58c9de4"/><dir name="Product"><file name="Collection.php" hash="5544baaa0fe365f68c82345f138f2cd3"/></dir></dir><file name="Configurable.php" hash="a3485101701ce27a1245face359bbacf"/></dir><file name="Website.php" hash="86d83b6ac6a33770f0d500af50249c7d"/></dir><file name="Product.php" hash="92cfd76f424656a754c5bc891e791cb7"/><dir name="Sendfriend"><file name="Collection.php" hash="c0a9d608296e3e14c54d6e1403fa0ce5"/></dir><file name="Sendfriend.php" hash="6d48bb31391b8f8b95e657cde0be7762"/><file name="Setup.php" hash="332bc2a49c8d89cc1da7ea3558b13752"/><file name="Url.php" hash="8ff30475c857c213a1524b92478cce47"/></dir></dir><dir name="Helper"><file name="Mysql4.php" hash="7c385341d8dfbe3e12417018501fe433"/></dir><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="f09cb0f19a7be42ab682ec67f3c2fbfb"/><file name="Decimal.php" hash="728037aecaabab3dea236d55ad466983"/><file name="Price.php" hash="81c8b318f93065a1313a5083985a6f5d"/></dir></dir><dir name="Product"><file name="Action.php" hash="3ecee6a9d5e528d1005c46feeffbd7fd"/><dir name="Attribute"><dir name="Backend"><dir name="Groupprice"><file name="Abstract.php" hash="3320e1ac24eed9782ac1eae7749a6f5c"/></dir><file name="Groupprice.php" hash="94ad553373be41f787f9f97ffa9004be"/><file name="Image.php" hash="98d7acc0ed12be48ff7c1ba82c3f4787"/><file name="Media.php" hash="7f7d8d066c4cf9b6b29b708e7b4b8c19"/><file name="Tierprice.php" hash="6abee5dcc3c234e50e8a2d7de254d0d9"/><file name="Urlkey.php" hash="2c13425706769e774a505009ffa87933"/></dir><file name="Collection.php" hash="f09a2706f0cc1c52d2106bb015b63256"/><dir name="Frontend"><file name="Image.php" hash="2031b292025aea8ad2c03698d8b88fdd"/><file name="Tierprice.php" hash="05a89f28521f362e39e959bba5f7c665"/></dir></dir><file name="Collection.php" hash="5e7c2d8882d8cff927d7993f8449ec4c"/><dir name="Compare"><dir name="Item"><file name="Collection.php" hash="4682910e74f1e83109a32b40f2d9f34f"/></dir><file name="Item.php" hash="a01172e17e3dad083a7a64f9cb6318f1"/></dir><dir name="Flat"><file name="Indexer.php" hash="cf608c32673e53c82b5218768c5a536c"/></dir><file name="Flat.php" hash="8193a7748b2a61d95cccbf050dc624ed"/><dir name="Indexer"><file name="Abstract.php" hash="4ce37f276d4aa581fc88ff92d61fe58c"/><dir name="Eav"><file name="Abstract.php" hash="0fe745af8f1b930ebd6dce5444672fdf"/><file name="Decimal.php" hash="0c4947e231e3722be366aff13f18b4bc"/><file name="Source.php" hash="e6eb02055fe59a3c33455ed6b8407481"/></dir><file name="Eav.php" hash="5687b6aef04079e2f27db54f60475ad1"/><dir name="Price"><file name="Configurable.php" hash="7e7e36cb2f769869b5b40f92f6edd89f"/><file name="Default.php" hash="a55d3119bdfeafafc098c77f7239a8a8"/><file name="Grouped.php" hash="e4629b734f76c5ef342407ace05e9c6c"/><file name="Interface.php" hash="b5cb0804860612471abeb6dafff7324c"/></dir><file name="Price.php" hash="2f1697c7c661b285d1afb6b42e1be83d"/></dir><dir name="Link"><file name="Collection.php" hash="4305b11e90fb5c1a795277e8d8b3c95d"/><dir name="Product"><file name="Collection.php" hash="924d095f564445185476e378e232123c"/></dir></dir><file name="Link.php" hash="bcd8db6c4d0e2d87a30bb65e243974f3"/><dir name="Option"><file name="Collection.php" hash="7624675ddb98f808be646109562ce272"/><dir name="Value"><file name="Collection.php" hash="69474973f904b263cbb9f1227d0c62db"/></dir><file name="Value.php" hash="8e9c636044ac2ec2c4c2342ed22011bd"/></dir><file name="Option.php" hash="a1118f95a3b411edd7767badf0e3838c"/><file name="Relation.php" hash="accc9f5e417192ca5ef4968564e9478e"/><file name="Status.php" hash="fed573760af2fddc873678ff57df5592"/><dir name="Type"><dir name="Configurable"><dir name="Attribute"><file name="Collection.php" hash="82a4ce119cfd7eae53fe790ffd309519"/></dir><file name="Attribute.php" hash="c768f597c9aec823e79a554d7cd4763a"/><dir name="Product"><file name="Collection.php" hash="b573e6295f5cc4a76eae1937559876be"/></dir></dir><file name="Configurable.php" hash="cd48973bc8b1b7484eea3be93713cb69"/></dir><file name="Website.php" hash="86b909ce4bb1bc5759df3381b9409e34"/></dir><file name="Product.php" hash="7acc4fb438509e65fd11e741403542e5"/><file name="Setup.php" hash="33355298a0b2d9e4012ba0712687e5a7"/><file name="Url.php" hash="b5a13b469f829617a8c0a73a1599a984"/></dir><file name="Session.php" hash="333421356b45a753ca190bd001cb2e68"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Catalog"><dir name="Category"><file name="Flat.php" hash="2c8fe43e4a233bf8934704c7fe0a8ec0"/></dir><dir name="Product"><file name="Flat.php" hash="754061a0376e7a804be51ba5ff644e66"/></dir><dir name="Url"><dir name="Rewrite"><file name="Suffix.php" hash="23ecaf925ea7ef9197cf7c9423352a98"/></dir></dir></dir></dir></dir></dir><dir name="Template"><file name="Filter.php" hash="96c6dfeae7b67990d60d77bc162a5b1a"/></dir><file name="Url.php" hash="2f3325358a78597164094dfdec07b2a6"/></dir><dir name="controllers"><file name="CategoryController.php" hash="c7c68016b46bd824b748959d090013ee"/><file name="IndexController.php" hash="ac301f4a5039061c8d4cf5e58b90fb26"/><dir name="Product"><file name="CompareController.php" hash="a97e663d47459bf714484cdde8c0591d"/></dir><file name="ProductController.php" hash="aba9a281433847277420e5da2e769c82"/><dir name="Seo"><file name="SitemapController.php" hash="0ad9c48e4a286100a0157896b89c14ff"/></dir></dir><dir name="data"><dir name="catalog_setup"><file name="data-install-1.6.0.0.php" hash="c4ca68125954765c850feaec77d77105"/><file name="data-upgrade-1.6.0.0.12-1.6.0.0.13.php" hash="030e24354ba8aca75a886da56736e76a"/><file name="data-upgrade-1.6.0.0.13-1.6.0.0.14.php" hash="a63c31ff7ec6d9de4f11db70af34d702"/><file name="data-upgrade-1.6.0.0.19.1.3-1.6.0.0.19.1.4.php" hash="33fe7adfb9d165b343279939d54710e5"/><file name="data-upgrade-1.6.0.0.4-1.6.0.0.5.php" hash="cec64dd7df5eef024a8496a3f72e4372"/><file name="data-upgrade-1.6.0.0.8-1.6.0.0.9.php" hash="a43bf0ff9fb72e57db9b883bd45aa382"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="b562b0c4140a43cdc7ed3fa21374a606"/><file name="api.xml" hash="eed902fc50af484f6484357fd6d5e013"/><file name="api2.xml" hash="10e038b1f127f74e8c0e3d1153cdffd3"/><file name="config.xml" hash="cb9e29a8540a06ceb0c7ba8098344499"/><file name="convert.xml" hash="59dccc5cc29cb3fbfc94eee26b529db2"/><file name="system.xml" hash="09a2876b271dd61e39cf89abee735ee8"/><file name="widget.xml" hash="0068b7b010d4985eb83b865ea838586d"/><file name="wsdl.xml" hash="fa198392d766134085b3c2ec1be4a0e9"/><file name="wsi.xml" hash="0acfd65c613ccb83404317500078a85d"/></dir><dir name="sql"><dir name="catalog_setup"><file name="install-1.6.0.0.php" hash="a57c3b2a53aa6384c2f0a693353fcba1"/><file name="mysql4-data-upgrade-0.7.57-0.7.58.php" hash="2120fdc78c6000ef2134b217f8c74f74"/><file name="mysql4-data-upgrade-0.7.63-0.7.64.php" hash="8f51c57d94bca45d11e27a0d8055147f"/><file name="mysql4-data-upgrade-1.4.0.0.28-1.4.0.0.29.php" hash="a194850e9a5388bf38b1ba5aa8739414"/><file name="mysql4-data-upgrade-1.4.0.0.42-1.4.0.0.43.php" hash="d0175f8e452128201765735009a5851e"/><file name="mysql4-install-0.7.0.php" hash="650ac4b7aff67f5e83639013d8f2b9fe"/><file name="mysql4-install-1.4.0.0.0.php" hash="243371a61b6c1e942b31abfaf4448d8f"/><file name="mysql4-upgrade-0.6.40-0.7.0.php" hash="2ea5fccbfdfd7dc682c57c1f0a4fe77e"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="dea20de1987cf262ec8ce66e6d05d785"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="8b171bb907cf9fac38b1ca561be15e9a"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="67cc3f88d62d577099591dba703591ab"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="5743235727dfa1b1745346d4a665dde0"/><file name="mysql4-upgrade-0.7.13-0.7.14.php" hash="c913f966bfbe54f9afc179916e346e3f"/><file name="mysql4-upgrade-0.7.14-0.7.15.php" hash="eda07a21268160d97d458708dccf3b5e"/><file name="mysql4-upgrade-0.7.15-0.7.16.php" hash="cbba89e54536d02170e5456e2b079ffd"/><file name="mysql4-upgrade-0.7.16-0.7.17.php" hash="5743235727dfa1b1745346d4a665dde0"/><file name="mysql4-upgrade-0.7.17-0.7.18.php" hash="7d1d1bead20fdf38cfab28cb21e78d6f"/><file name="mysql4-upgrade-0.7.18-0.7.19.php" hash="b6735d410395dfd34f21458427f99a13"/><file name="mysql4-upgrade-0.7.19-0.7.20.php" hash="67cc3f88d62d577099591dba703591ab"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="54a7a140bc602006a071acb6641673f7"/><file name="mysql4-upgrade-0.7.20-0.7.21.php" hash="4ba67e9710ca055f98a63d1df6c4f31f"/><file name="mysql4-upgrade-0.7.21-0.7.22.php" hash="ee461b2f49e962b362e1cfee547ecd9e"/><file name="mysql4-upgrade-0.7.22-0.7.23.php" hash="f61b8a86749dce0df458b02a835efe68"/><file name="mysql4-upgrade-0.7.23-0.7.24.php" hash="2050ea455761178daa9d220a34cd8254"/><file name="mysql4-upgrade-0.7.24-0.7.25.php" hash="261e90a21d40864974e60972cda1ae1c"/><file name="mysql4-upgrade-0.7.25-0.7.26.php" hash="261e90a21d40864974e60972cda1ae1c"/><file name="mysql4-upgrade-0.7.26-0.7.27.php" hash="2e2061fcffef07742e04f465c4545c64"/><file name="mysql4-upgrade-0.7.27-0.7.28.php" hash="047e843051f421435db7f9d45ad1bf3c"/><file name="mysql4-upgrade-0.7.28-0.7.29.php" hash="bad4802d0e999950f441f2adc841b8c7"/><file name="mysql4-upgrade-0.7.29-0.7.30.php" hash="448c3f0262d320927a67c3bdf2248b87"/><file name="mysql4-upgrade-0.7.30-0.7.31.php" hash="34ca255178a097f0bfd58d63024ff303"/><file name="mysql4-upgrade-0.7.31-0.7.32.php" hash="9c2270289ec1119ab13292825b7260e8"/><file name="mysql4-upgrade-0.7.32-0.7.33.php" hash="805cfe42d016780188eb0cb7bf5199fd"/><file name="mysql4-upgrade-0.7.33-0.7.34.php" hash="c115797b39ca05a11ba359bd2a997006"/><file name="mysql4-upgrade-0.7.34-0.7.35.php" hash="5e0c9878dca7097f391deb7f12041666"/><file name="mysql4-upgrade-0.7.35-0.7.36.php" hash="8c2ea970a1f8bfb1e4f8a44cbdb38fe6"/><file name="mysql4-upgrade-0.7.36-0.7.37.php" hash="07bf9ea01a058db11f3f53c2b262a547"/><file name="mysql4-upgrade-0.7.37-0.7.38.php" hash="30c07450806e0c47785c87ef33b93c30"/><file name="mysql4-upgrade-0.7.38-0.7.39.php" hash="b9272cd795d086256e30c392301dd694"/><file name="mysql4-upgrade-0.7.39-0.7.40.php" hash="48bddb7f32ca326c121521bea4aa123d"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="0e42c040a8ad7cdcd333513ad3242ea1"/><file name="mysql4-upgrade-0.7.40-0.7.41.php" hash="681a24fc90e818f247c9278e56fc22cf"/><file name="mysql4-upgrade-0.7.41-0.7.42.php" hash="9d42b6ee298ac25fb328fa5146492753"/><file name="mysql4-upgrade-0.7.43-0.7.44.php" hash="050e5d63ebfa04bdd57a6309679166f5"/><file name="mysql4-upgrade-0.7.44-0.7.45.php" hash="1a4cc1c7e259401c57aed4220483e633"/><file name="mysql4-upgrade-0.7.45-0.7.46.php" hash="5a4654a62a0811396925e2ca4adb2a46"/><file name="mysql4-upgrade-0.7.46-0.7.47.php" hash="c8b8e5055e15d33a8022ecc6adc77014"/><file name="mysql4-upgrade-0.7.47-0.7.48.php" hash="957376949159b9eb8753c9fa28a5a867"/><file name="mysql4-upgrade-0.7.48-0.7.49.php" hash="aaed0cde1206d55bf44cd3e6686af190"/><file name="mysql4-upgrade-0.7.49-0.7.50.php" hash="57b37f0719b078c4c625764d85ae5b03"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="7e0c59fa1f5d9f140fa31b3301efab6b"/><file name="mysql4-upgrade-0.7.50-0.7.51.php" hash="622a111a3f2b81c5d32b6d8025d1d048"/><file name="mysql4-upgrade-0.7.51-0.7.52.php" hash="b4c13ba1d8f8957f774abaf72ef35447"/><file name="mysql4-upgrade-0.7.52-0.7.53.php" hash="f62ec5e18aa80e66187cdf3b1de278de"/><file name="mysql4-upgrade-0.7.53-0.7.54.php" hash="757aa6098ea17b17d3116902dc7be3b3"/><file name="mysql4-upgrade-0.7.54-0.7.55.php" hash="96dc0d387fe6041c12a5cfa7014436f7"/><file name="mysql4-upgrade-0.7.55-0.7.56.php" hash="be67dce7c1e4b162e6f84d404ebf754d"/><file name="mysql4-upgrade-0.7.56-0.7.57.php" hash="3a269e09567cbc6bb616358059ab166d"/><file name="mysql4-upgrade-0.7.57-0.7.58.php" hash="3286e68856de2df6ad4727f4b06bb675"/><file name="mysql4-upgrade-0.7.58-0.7.59.php" hash="9d7e86bdc91bebcaa869322794fecf8b"/><file name="mysql4-upgrade-0.7.59-0.7.60.php" hash="38f210380cacc867ab17c56a6fefc71c"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="67cc3f88d62d577099591dba703591ab"/><file name="mysql4-upgrade-0.7.60-0.7.61.php" hash="0aa5d71181602994e81e57d12855dc41"/><file name="mysql4-upgrade-0.7.61-0.7.62.php" hash="115303e7a95de11ae88f7fc7d5bbad3d"/><file name="mysql4-upgrade-0.7.62-0.7.63.php" hash="05513ae185d2218c0cd7149a22d1ccd8"/><file name="mysql4-upgrade-0.7.63-0.7.64.php" hash="3361281520cea0d31c4ee630d7d727e4"/><file name="mysql4-upgrade-0.7.64-0.7.65.php" hash="92e376ef0bba20d8b619275fa76e139d"/><file name="mysql4-upgrade-0.7.65-0.7.66.php" hash="48d6fec6dde29cd75041f4d4ce5ee67e"/><file name="mysql4-upgrade-0.7.66-0.7.67.php" hash="d2976659ace49f2a265329db12b03129"/><file name="mysql4-upgrade-0.7.67-0.7.68.php" hash="89d1c98c285f09c343849cc930527b34"/><file name="mysql4-upgrade-0.7.68-0.7.69.php" hash="ea616d8ba8039db50d7d75460e2a1f46"/><file name="mysql4-upgrade-0.7.69-0.7.70.php" hash="52d5ad25a00242d9cea51db2b593021c"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="a68c2cd5a586e87a9351ee854cbd0d08"/><file name="mysql4-upgrade-0.7.70-0.7.71.php" hash="4247e7a1304a682043f2c028f8acface"/><file name="mysql4-upgrade-0.7.71-0.7.72.php" hash="b8d499e3820e95098b59241f1c1568f3"/><file name="mysql4-upgrade-0.7.72-0.7.73.php" hash="8387086581ab89ea580994e764abfdac"/><file name="mysql4-upgrade-0.7.73-1.4.0.0.0.php" hash="29b12a0fc191bed325fddadf54c24a08"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="180699aa8d5b88a650ee277ebbf77452"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="3b55a162a3af253b6506129c6df6360b"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="34a6f5923b96527a664a5598a8727a95"/><file name="mysql4-upgrade-1.4.0.0.10-1.4.0.0.11.php" hash="033f0c35991ba3a9c243f97e129c1269"/><file name="mysql4-upgrade-1.4.0.0.11-1.4.0.0.12.php" hash="a6faac10dad9ac7e8c7bba5ac816888e"/><file name="mysql4-upgrade-1.4.0.0.12-1.4.0.0.13.php" hash="ac727df9feaafbe4f71cf474ff734aaa"/><file name="mysql4-upgrade-1.4.0.0.13-1.4.0.0.14.php" hash="c28e9f8b3214308cb5a5d1da629b0245"/><file name="mysql4-upgrade-1.4.0.0.14-1.4.0.0.15.php" hash="2e39a7bfbd42ff9172a555d5610dd046"/><file name="mysql4-upgrade-1.4.0.0.15-1.4.0.0.16.php" hash="76eb00176e848426a7c2f2fa12a9c747"/><file name="mysql4-upgrade-1.4.0.0.16-1.4.0.0.17.php" hash="45f0e737d823702d981f3ee0ae700558"/><file name="mysql4-upgrade-1.4.0.0.17-1.4.0.0.18.php" hash="e90d278a0f5042539090da25152bfa90"/><file name="mysql4-upgrade-1.4.0.0.18-1.4.0.0.19.php" hash="72b100195e2885b4ef08c8d8c8f0a554"/><file name="mysql4-upgrade-1.4.0.0.19-1.4.0.0.20.php" hash="6b52232190f3c6bfbe6795c696477f61"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="2a830069f6b45abe68b6c752038c0ff1"/><file name="mysql4-upgrade-1.4.0.0.20-1.4.0.0.21.php" hash="b9b9101807c38728146574fb9ea943c9"/><file name="mysql4-upgrade-1.4.0.0.21-1.4.0.0.22.php" hash="bcf38c56ad3adb48a39de63d4d5a9743"/><file name="mysql4-upgrade-1.4.0.0.22-1.4.0.0.23.php" hash="235f71a24ea39c231e98db12a42b61b2"/><file name="mysql4-upgrade-1.4.0.0.23-1.4.0.0.24.php" hash="331fa853150d1ffa8c516d212aa2f8ad"/><file name="mysql4-upgrade-1.4.0.0.24-1.4.0.0.25.php" hash="82812309ff548852b02f1ed3e237fa88"/><file name="mysql4-upgrade-1.4.0.0.25-1.4.0.0.26.php" hash="b05811676a5dce07cef80ef120e8d81e"/><file name="mysql4-upgrade-1.4.0.0.26-1.4.0.0.27.php" hash="319cb1b721425218dfdbb8e6b35d2696"/><file name="mysql4-upgrade-1.4.0.0.27-1.4.0.0.28.php" hash="b05b195b2f019e9809ae5f632a290716"/><file name="mysql4-upgrade-1.4.0.0.28-1.4.0.0.29.php" hash="9dd311b7b21faa2ea4d51255ba418b4a"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="cbe028d3212877dd34d99d5dcebc6b5a"/><file name="mysql4-upgrade-1.4.0.0.30-1.4.0.0.31.php" hash="6467bf0816d5824368b73f14881a9594"/><file name="mysql4-upgrade-1.4.0.0.31-1.4.0.0.32.php" hash="63d31a684aae6f3685de3bdba5fa8382"/><file name="mysql4-upgrade-1.4.0.0.32-1.4.0.0.33.php" hash="e10a90a8b43ed815b753039927d987b6"/><file name="mysql4-upgrade-1.4.0.0.33-1.4.0.0.34.php" hash="6ff59cc05f2ba9cbaac47771bcf22ea3"/><file name="mysql4-upgrade-1.4.0.0.34-1.4.0.0.35.php" hash="2437bcdce44398b9ed73ed1e3decba40"/><file name="mysql4-upgrade-1.4.0.0.35-1.4.0.0.36.php" hash="68e92c8f846da8d06a49c7fa80d3262b"/><file name="mysql4-upgrade-1.4.0.0.36-1.4.0.0.37.php" hash="a52db42ba61e1621f7843566633367f3"/><file name="mysql4-upgrade-1.4.0.0.37-1.4.0.0.38.php" hash="c922e3c1000cf84cda132c340578b35b"/><file name="mysql4-upgrade-1.4.0.0.38-1.4.0.0.39.php" hash="346f6a122b15b7f1ac8e8a2f25a5f748"/><file name="mysql4-upgrade-1.4.0.0.39-1.4.0.0.40.php" hash="a1d2f7e1b745850087b5e23a19ced0c1"/><file name="mysql4-upgrade-1.4.0.0.4-1.4.0.0.5.php" hash="863fcd3a4d5f0d7f5a589d89e08291a5"/><file name="mysql4-upgrade-1.4.0.0.40-1.4.0.0.41.php" hash="e9b96de3dab54f6eb5b44ed1a6796dc5"/><file name="mysql4-upgrade-1.4.0.0.41-1.4.0.0.42.php" hash="75eefbda635369ec825856c3111419ac"/><file name="mysql4-upgrade-1.4.0.0.43-1.4.0.0.44.php" hash="44955c234a43e88720d98e69bed21d66"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="2b2d2223ab82953f2d561cecfc0565f4"/><file name="mysql4-upgrade-1.4.0.0.6-1.4.0.0.7.php" hash="e3a56b28711daac89ba7f7f0a0f1c236"/><file name="mysql4-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="20ec846642be63a3c0185211f45a4683"/><file name="mysql4-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="de70d7d3fb9ac7702845c5486f251a7e"/><file name="mysql4-upgrade-1.4.0.0.9-1.4.0.0.10.php" hash="d020d258926fad12d51577fb92238711"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="e9d8993129029d6ce440139fe76d2ae3"/><file name="mysql4-upgrade-1.6.0.0.8-1.6.0.0.9.php" hash="0e7307795fa7b2020f3e7d7068664395"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="018fc237065f4d0f3d467f40b6337eb3"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="ae66a75fdc23f3b148a98ff5f7189e75"/><file name="upgrade-1.6.0.0.10-1.6.0.0.11.php" hash="f4c233432fc57f2dad363dfa899eebe1"/><file name="upgrade-1.6.0.0.11-1.6.0.0.12.php" hash="38c8277fa9982c564b395248794a0fcf"/><file name="upgrade-1.6.0.0.14-1.6.0.0.15.php" hash="9d146cf31e038d66f1a6fbe754db7c8f"/><file name="upgrade-1.6.0.0.15-1.6.0.0.18.php" hash="57dc7ac4fdfb98a730fd06a8c52fb59e"/><file name="upgrade-1.6.0.0.18-1.6.0.0.19.php" hash="21c046f401d22b516e1a770e5b1e236f"/><file name="upgrade-1.6.0.0.19.1.1-1.6.0.0.19.1.2.php" hash="c7ac3babd810049a182c93b938467a2a"/><file name="upgrade-1.6.0.0.19.1.2-1.6.0.0.19.1.3.php" hash="fa45ba4962aaead2f228b24d7689b147"/><file name="upgrade-1.6.0.0.19.1.4-1.6.0.0.19.1.5.php" hash="00f9556e80b5c888cb8003cf895573b7"/><file name="upgrade-1.6.0.0.2-1.6.0.0.3.php" hash="756234b5c7485325e34e07d0ceb575b6"/><file name="upgrade-1.6.0.0.3-1.6.0.0.4.php" hash="d8db9fed9a6b4c3fb944f7fc2cde147e"/><file name="upgrade-1.6.0.0.4-1.6.0.0.5.php" hash="8beffe03092e948fad66fc023a34ab6e"/><file name="upgrade-1.6.0.0.5-1.6.0.0.6.php" hash="bc7b55027d59403cb325f1f79be7ec95"/><file name="upgrade-1.6.0.0.6-1.6.0.0.7.php" hash="74cdd027eb485ce7a38e5910f90c3833"/><file name="upgrade-1.6.0.0.7-1.6.0.0.8.php" hash="88c429ccc6589bc338a8f7459f0560d2"/><file name="upgrade-1.6.0.0.9-1.6.0.0.10.php" hash="3afc43cd784b7397da0318b7dd60c314"/></dir></dir></dir><dir name="CatalogIndex"><dir name="Model"><file name="Aggregation.php" hash="d8446e11e4e245b251f88cfd4da269b7"/><file name="Attribute.php" hash="e6216e285d12b7b51b0dff0d81747fca"/><dir name="Catalog"><dir name="Index"><file name="Flag.php" hash="e1eb655da746408366e7a977d28f6209"/><dir name="Kill"><file name="Flag.php" hash="1d37bd5c967979aa21bc99d6bc9f7154"/></dir></dir></dir><dir name="Data"><file name="Abstract.php" hash="d9f91599be307f824b17ba55a03777c3"/><file name="Configurable.php" hash="c98b4e4546bbf5af9cdec5bf4d32779c"/><file name="Grouped.php" hash="8964208ac3299ed7a0e918a1ad282c4d"/><file name="Simple.php" hash="966919e26852450fde971814d9267314"/><file name="Virtual.php" hash="34c4e295e18d47a3f0c84000c7cf37b7"/></dir><dir name="Indexer"><file name="Abstract.php" hash="163c7eb1f9d54cf54919c301a50d08bc"/><file name="Eav.php" hash="5f2d4772baae0ae42a3e963e9e6d1398"/><file name="Interface.php" hash="1701436dc2c161fc778c18135dad5579"/><file name="Minimalprice.php" hash="eb3b85b428e99ed84ff4226ce6430c00"/><file name="Price.php" hash="96f194a17250f6bf3c9737f5eb5b82f4"/><file name="Tierprice.php" hash="1765d4fed0a73ae74e756ac5f853aeaf"/></dir><file name="Indexer.php" hash="42484b0ee84d41b72aadad7334fda63b"/><dir name="Mysql4"><file name="Abstract.php" hash="8d7b96a754563d987b35f54ba1807457"/><file name="Aggregation.php" hash="82843ec810859f175730e7ca27225fca"/><file name="Attribute.php" hash="7e23d064ce0f6e24501c97cacd21adaa"/><dir name="Data"><file name="Abstract.php" hash="c869b2447587f487d821e953cde65236"/><file name="Configurable.php" hash="d841008e1a838053533d6a02ca3db950"/><file name="Grouped.php" hash="9765ee55da8451f5d76796eeb996f5d4"/></dir><dir name="Indexer"><file name="Abstract.php" hash="2e9a20aae085d294fbbccd65b34aee6f"/><file name="Eav.php" hash="a91a531718dd714f86f5819b8a4c3f22"/><file name="Minimalprice.php" hash="139a035f3cd6627a4b622471fa6bf6aa"/><file name="Price.php" hash="7d118cd7699496534a6318140f213256"/></dir><file name="Indexer.php" hash="aaa9010ef33d1e3b6e3babe05404a0e8"/><file name="Price.php" hash="5b01f7a082382b399f8cc02fc5f8637a"/><file name="Retreiver.php" hash="a8d0312325f1fcb397f1a816786cae9a"/><file name="Setup.php" hash="7c74778b63f245643a02b3133532fa0a"/></dir><file name="Observer.php" hash="4c4839c5c6289e4a68a4e68055d0fc39"/><file name="Price.php" hash="3cede2cadd925a804f5ab4533a0aedb6"/><dir name="Resource"><file name="Abstract.php" hash="6d28df0cb41449e78938675c2177ea5b"/><file name="Aggregation.php" hash="357e91b7049334de0d0e2242c40d6af5"/><file name="Attribute.php" hash="1c6e6fcd593b3982206ee870740b6632"/><dir name="Data"><file name="Abstract.php" hash="44d9ff50977584d81e3732a6bfca8c66"/><file name="Configurable.php" hash="33c11796275c59a0ccb21475d5fca796"/><file name="Grouped.php" hash="aee13957e362b6b29da1e130a0c9183e"/></dir><dir name="Indexer"><file name="Abstract.php" hash="77bd665e3220fba4e8874a2c9415f0f4"/><file name="Eav.php" hash="eeb4d41a3b496b7fa452aa7a88eb219f"/><file name="Minimalprice.php" hash="9e4e2c07140ee094c03dcf870fc7a8af"/><file name="Price.php" hash="b80a57584e61871ff1796c752f78110f"/></dir><file name="Indexer.php" hash="62590ce725754ad991a4b13b7631d100"/><file name="Price.php" hash="463262c0563bfbc9b4b12931edd38940"/><file name="Retreiver.php" hash="105b6e091067d5ad5ffbba34ec6de9e8"/><file name="Setup.php" hash="1e75b2e97a20aab6b916d800595a1423"/></dir><file name="Retreiver.php" hash="b0bad24bf9db93ad36c6a3f12cd6912e"/></dir><dir name="etc"><file name="config.xml" hash="a53aa3f175d09e5ec6364d19c0a41b05"/></dir><dir name="sql"><dir name="catalogindex_setup"><file name="install-1.6.0.0.php" hash="0301fb68116b2e5c6e57829c85770221"/><file name="mysql4-install-0.7.0.php" hash="ef60e25208b1c1c69f7760f788608866"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="edb518ac2880e64a3d1196fcca5c5408"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="5b08f13eecdbb190392bb1079ea992fa"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="79a5d99838ab289d59644b628479549d"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="86691781b4c72f2e3c009dbb219449d7"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="e0bbb2cf8699048f0dd4f11e26ee5b6f"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="ba2a3bf8d66332e75bda38855c520895"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="ce4b36e3b2e090fed799fcd96c1f3b4b"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="e9fb63a6f1712e39622423875a731f80"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="9cb3838b1c74e3ebb09bd1275d598d32"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="e49c1677360cdb321d1dc5fab9507457"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="c9a23a1358aa13ee28bfadf65ca8d70a"/></dir></dir></dir><dir name="CatalogInventory"><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Field"><file name="Customergroup.php" hash="163d3b06c6d929bcbb5aa7bcc37dd3b0"/><file name="Minsaleqty.php" hash="a1253bfe158b1c145657c13d7f530c52"/></dir></dir></dir><file name="Qtyincrements.php" hash="0b959b5a8399ff56452d30bf872c1af5"/><dir name="Stockqty"><file name="Abstract.php" hash="634f12287ffad43305214d5425338a79"/><file name="Composite.php" hash="39a929bff736748e49c8762cef926fae"/><file name="Default.php" hash="2b9c5f6a616b4d46ee15d5665b2c1012"/><dir name="Type"><file name="Configurable.php" hash="22930288268d14c881af4b0e228f5a77"/><file name="Grouped.php" hash="299fcfde251b737162a76c738b709af3"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="533b21d642ec4d0da92a493a52a9fcdf"/><file name="Minsaleqty.php" hash="252c7dc08342b1b576cd15adf6896cc3"/></dir><dir name="Model"><dir name="Api2"><dir name="Stock"><dir name="Item"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="c84e4ed181f22fa7b7af3c76ed05b18f"/></dir></dir><file name="Rest.php" hash="e270aadfdfe27e36ce10ce652df5cd5f"/><dir name="Validator"><file name="Item.php" hash="b9d1b5db0d174bf229f6481140eccf61"/></dir></dir><file name="Item.php" hash="b1e6789de22bc81cd8c9e5d418f6e417"/></dir></dir><dir name="Indexer"><file name="Stock.php" hash="86bb76e8c6e4eed87e48a7f1d5969118"/></dir><dir name="Mysql4"><dir name="Indexer"><dir name="Stock"><file name="Configurable.php" hash="c575d00d8ec9f9a02fd2fc91f093e862"/><file name="Default.php" hash="71fef27bb3953dab13046778d6cc85cb"/><file name="Grouped.php" hash="681655f42e1abf8a5e4c65bcd51b9632"/><file name="Interface.php" hash="6f8454915dcd8d4c0aa8098ac47d3149"/></dir><file name="Stock.php" hash="aa87f7c0f015fe5348afbf63d8b64307"/></dir><dir name="Stock"><dir name="Item"><file name="Collection.php" hash="d89055e9f449549be221f5e68157f53b"/></dir><file name="Item.php" hash="0095d1ccf8329fb63a3506ae6a2edb28"/><file name="Status.php" hash="dbfb58bd7d8ae6a805d15ea4520740fc"/></dir><file name="Stock.php" hash="b92334f297141b9295798bc2e4608675"/></dir><file name="Observer.php" hash="29a2f1d731037a75fa2e3ac539e9750b"/><dir name="Resource"><dir name="Indexer"><dir name="Stock"><file name="Configurable.php" hash="cc79a58c240df2dea5a7876596f4fa98"/><file name="Default.php" hash="dd5890df9d9d4dec9eaa9a22311cf636"/><file name="Grouped.php" hash="645cece573ebe2ae8c9a5b44a5d5875a"/><file name="Interface.php" hash="935fe279b249565fe7fc209bed740516"/></dir><file name="Stock.php" hash="47cac76c6e244d2f76686813fb8bc00a"/></dir><dir name="Stock"><dir name="Item"><file name="Collection.php" hash="9dd080a07edee641c784c898b5295238"/></dir><file name="Item.php" hash="a2064ba40b20174a12164cc36d3bd33d"/><file name="Status.php" hash="ad92e42f445a27ff103eb6f1b8fb63f3"/></dir><file name="Stock.php" hash="ad4cbd3e0236e529cd80a11de1b7a53a"/></dir><dir name="Source"><file name="Backorders.php" hash="7f08d25b4803c2b5b85e29e5af359c37"/><file name="Stock.php" hash="b9450ed75a0d1be3c4daeea22202a455"/></dir><dir name="Stock"><dir name="Item"><dir name="Api"><file name="V2.php" hash="783c76e4aed5a72e67a7de070185b741"/></dir><file name="Api.php" hash="e39eb5620e1f577cb51e9feae480c035"/></dir><file name="Item.php" hash="a7b33c47af793511fb67d3a00319654d"/><file name="Status.php" hash="20fbca52b8afa08194b67aa6b2c16c44"/></dir><file name="Stock.php" hash="d6185257041d13f6b566d6601b49edb2"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Minqty.php" hash="00aa4d4dba81277cb07a21de73133759"/><file name="Minsaleqty.php" hash="a29d77d011b419a9786b1d7f17ede6af"/><file name="Qtyincrements.php" hash="5663f823ca9993f8995a70d6a909d88e"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ec7bc5e2292512488a4248e8dbd1631e"/><file name="api.xml" hash="b037c38c8dfc663cbf6e1c1353e5d252"/><file name="api2.xml" hash="f983c350e9c44229e4fc4d41ce294d91"/><file name="config.xml" hash="79dd5f14b3d64fb65f20d5f3e3309a12"/><file name="system.xml" hash="d962c914c34134200d08f18d87d2fb00"/><file name="wsdl.xml" hash="cfad5924eb32b8fb7ccf79309e5966df"/><file name="wsi.xml" hash="ec7bdd8cb2bc5dd12c0a4d865fe3d313"/></dir><dir name="sql"><dir name="cataloginventory_setup"><file name="install-1.6.0.0.php" hash="186d243fdf3189b96caf9fbdc80aee6c"/><file name="mysql4-install-0.7.0.php" hash="75e2c895e6dfbad69c600f865db6cff4"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="6f0d39d6f4fe87c167fd43b5a39de2d9"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="7e6fcee3d6aeb8bed8be763687cdb8ba"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="04f921c7375bfb01a658b349c31537fd"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="e0e7a7ccefc05896c771fd99f780f708"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="5565cd4be6aead2b0932872f0eb55340"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="be17870a38cf723722f6f99b5bb68c18"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="17a69f148b233711d0c94537352837f1"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="243f5fc0eb15dec1d62992f4c7c7d56d"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="281755ca835ad1ee976f5118076bc94d"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.0.1.php" hash="bfd977798f6118c5368b614c9c5c7795"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="53308b12950c985fa05c7bbf9d49e12c"/></dir></dir></dir><dir name="CatalogRule"><dir name="Helper"><file name="Data.php" hash="560016778ef760247cb7d3b1caabb70f"/></dir><dir name="Model"><dir name="Action"><dir name="Index"><dir name="Refresh"><file name="Row.php" hash="b3d2f0876cfc7c3dc88cf084aa011f8c"/></dir><file name="Refresh.php" hash="73fc903920175f260c1400aa3924b902"/></dir></dir><file name="Flag.php" hash="7903d33b2f3b537f31def82ab02ea752"/><dir name="Mysql4"><dir name="Rule"><file name="Collection.php" hash="1c7ef5836a12d91c7b6cd1596a5c0c9d"/><dir name="Product"><dir name="Price"><file name="Collection.php" hash="4745a3b75d783c2ce549f8c66880f1b0"/></dir><file name="Price.php" hash="659daee66e70387f6ec6ad1c2782a9af"/></dir></dir><file name="Rule.php" hash="a2252e99ac1beaa96c558788d7541dca"/></dir><file name="Observer.php" hash="cc5c3ee1e4dfcff8e656b4c4f7df9713"/><dir name="Resource"><dir name="Rule"><file name="Collection.php" hash="b90b0ab93e58b0d99ba8a1d611a69b34"/><dir name="Product"><dir name="Price"><file name="Collection.php" hash="b05d4de6ec29c21af930a60b6b30b111"/></dir><file name="Price.php" hash="52dbe3cbb55103fcc8b1673ad0e29d5c"/></dir></dir><file name="Rule.php" hash="d4e895a2ed2e80408a4dadc95985eff2"/></dir><dir name="Rule"><dir name="Action"><file name="Collection.php" hash="cbefca5d6a981c7aa1d79431da1a1006"/><file name="Product.php" hash="1ef05545bae581adff21dea5eef7436c"/></dir><dir name="Condition"><file name="Combine.php" hash="d476c6954ab95cb3ebd80aff66eabb83"/><file name="Product.php" hash="22634d4e9c59ea7d4da5ac793e79c2e8"/></dir><dir name="Product"><file name="Price.php" hash="866097a5efe4d81c1bca28d1fce9973b"/></dir></dir><file name="Rule.php" hash="e3cd573194b1bcefbcd8d41b1ed07fa2"/></dir><dir name="etc"><file name="adminhtml.xml" hash="093d6f0890d18e7d864a9635fa08e26d"/><file name="config.xml" hash="93a7c143800b9a7f3ae090a0a97ce8bb"/></dir><dir name="sql"><dir name="catalogrule_setup"><file name="install-1.6.0.0.php" hash="f267d851d396f216b2ed0a73a177c717"/><file name="mysql4-install-0.7.0.php" hash="a2de42b77075ec0b403630b1a93e95f7"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="0fb948870f4792fd810bf6982237a0f7"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="9a60dc6338554003d882475a411f24ba"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="900eebf1d56e35c1ec6fe8b169ff71ab"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="c935d33a43baf1b58075fcd2fa9c8667"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="94818b4c3f6694c3fea522fa7071129a"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="b97239fccace41b55ae0b01d0334f07e"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="cd83d4f6daea4ea53974f39fc2603bf0"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="72612964477cbfdeacaa95a8bc7ace43"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="09a0d5a3d5c97841401bad35a7b34d05"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="5ada9f5e099cbbd1f03393f46d2ca6b7"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="4e50dfe5c65040c848b49001884ff11f"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="6e81e9960d6c8d22bfbdd8642bc41da8"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="d87e4ab753b65806b9cd8b3231abf543"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="363f01664e7f1b960920a03a67be5037"/></dir></dir></dir><dir name="CatalogSearch"><dir name="Block"><dir name="Advanced"><file name="Form.php" hash="e73320b5f9aa1db5d6dd535cd5a51c77"/><file name="Result.php" hash="158d8c4234b2b24f5bce04f068878997"/></dir><file name="Autocomplete.php" hash="40a423ace61e14fb7e928aa1c18dbb74"/><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="686db1fc07ef2ff608bc1982b43359a3"/></dir></dir><file name="Layer.php" hash="8c4c35b064430d739f6d0d4a216f2b14"/><file name="Result.php" hash="e2767174a41982becba4446853a38d6c"/><file name="Term.php" hash="f02a1a1991d2837d54ee71c632e641a7"/></dir><dir name="Helper"><file name="Data.php" hash="16b83aedc3e508276e90b116a5ef0610"/></dir><dir name="Model"><file name="Advanced.php" hash="673206deb25181e532fa901a3cfdd5ea"/><dir name="Fulltext"><file name="Observer.php" hash="d98bcfbda298c86a256b0039c88463ca"/></dir><file name="Fulltext.php" hash="f45fac39b3af844c0ad489cc31fd36c5"/><dir name="Indexer"><file name="Fulltext.php" hash="fdb752b9e4a49a9a06022f7cd943846d"/></dir><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="70ca3a299e5a79880ae1e67593f207eb"/></dir></dir><file name="Layer.php" hash="9b58138cc29407e8df0bbeed10991657"/><dir name="Mysql4"><dir name="Advanced"><file name="Collection.php" hash="4e13897ad78aadf7dd362b68f57449e7"/></dir><file name="Advanced.php" hash="852588dba6d4f9e68b7ccd72ed22efd7"/><dir name="Fulltext"><file name="Collection.php" hash="cdf89df38a26752fb99ad76f1889266d"/><file name="Engine.php" hash="c4268d353f9345fa90659ada21e85120"/></dir><file name="Fulltext.php" hash="dc7b4be01985a3a6be2641549777ba7d"/><dir name="Indexer"><file name="Fulltext.php" hash="4bf43c11bd0a0691220b6f435927b394"/></dir><dir name="Query"><file name="Collection.php" hash="446ad51d56c11f26debb0b2452f3b412"/></dir><file name="Query.php" hash="13604101b9dee37fe489630cec0a8887"/><dir name="Search"><file name="Collection.php" hash="de4b4bb9646a0a2b8185d4ad7d8612d4"/></dir></dir><file name="Query.php" hash="da8170ea36c99b6fe69cadee58ff624c"/><dir name="Resource"><dir name="Advanced"><file name="Collection.php" hash="a31a945c32e467b20a94fcb4cbe0a902"/></dir><file name="Advanced.php" hash="2db00b3266767e591d4a3712a95b0d0a"/><dir name="Fulltext"><file name="Collection.php" hash="5bc08811112fe51ee569a649d4aeb3b1"/><file name="Engine.php" hash="c82ac50d4a4c7dd5cca266611d5bb32b"/></dir><file name="Fulltext.php" hash="1bdc33c95bcc0db28ab7ba6067298ae6"/><dir name="Helper"><file name="Mysql4.php" hash="936338862674186b816444f5c6797af0"/></dir><dir name="Indexer"><file name="Fulltext.php" hash="f2f34a970c04267593442eac45fabed1"/></dir><dir name="Query"><file name="Collection.php" hash="9e49419777202fb6732dd4e76d80ca83"/></dir><file name="Query.php" hash="a62f0dac4012d29dcd4a4aa0c107eebd"/><dir name="Search"><file name="Collection.php" hash="72a2af0b587772e944547732ec6c46ec"/></dir></dir><file name="Session.php" hash="74ee378fc7dd0cf7c17637b1a876e733"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Sitemap.php" hash="28eafe560f68a8bd2cf7ae5ed82abd35"/></dir></dir></dir></dir><dir name="controllers"><file name="AdvancedController.php" hash="f58f4832cf837a644aff27d3e9831d82"/><file name="AjaxController.php" hash="c512ebd4bd8ab2f0ad0a2d18f068de21"/><file name="ResultController.php" hash="6199d499b4d9040b3beda927f07248c8"/><file name="TermController.php" hash="3ff5982242c57a7f4ae02ce2cd28b7f0"/></dir><dir name="etc"><file name="adminhtml.xml" hash="666740063c81d96ab024d95108e0eb1b"/><file name="config.xml" hash="071d829deff261b3899f8506a20da0d7"/><file name="system.xml" hash="7e133c61e5dac5dfaf765f29e429bc78"/></dir><dir name="sql"><dir name="catalogsearch_setup"><file name="install-1.6.0.0.php" hash="685d4b125a8c0156af263540c0662aa6"/><file name="mysql4-install-0.7.0.php" hash="b692090952faab6b90b0013012a67a5a"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="fcfb5aa7d2be0d3619fb1273db0bc0fa"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="78f25300474601a56ccae20b2899228a"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="6375fb28c6357cf9d9fa92d92801cd4e"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="85b4b27b90be56dff302e49b9038d419"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="80d97a392fd15c328d6e929428bfe677"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="435822849781f094803c02ded421fe8a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="20c3c617d661d1bf8a421594a6b3981a"/><file name="upgrade-1.6.0.0-1.8.2.0.php" hash="e9e7f420007c062e4c4536cf49205104"/></dir></dir></dir><dir name="Checkout"><dir name="Block"><file name="Agreements.php" hash="8d56692ecac1020f66f55d778263faff"/><dir name="Cart"><file name="Abstract.php" hash="f9ec040f942e590fdfc265813fd9fd1d"/><file name="Coupon.php" hash="511ace3d8e590ab1d3801d4da74e142c"/><file name="Crosssell.php" hash="862405f0b1554945cf9d249e33f0aaf6"/><dir name="Item"><file name="Configure.php" hash="278e92e905c3100630c48e875aa0466d"/><dir name="Renderer"><file name="Configurable.php" hash="87f290557da9375aa29539bbe00928d2"/><file name="Grouped.php" hash="0bf0e8c6a45b426435a63eb499029599"/></dir><file name="Renderer.php" hash="483f7b9973a1a2e5ec1cd4b380e1c773"/></dir><file name="Minicart.php" hash="2357ea9c0d495c8c608b36d67f8d864d"/><file name="Shipping.php" hash="1d480d34a3aa3829e7a17ec5d66a0100"/><file name="Sidebar.php" hash="479be1a791631077e4848911a2fe9816"/><file name="Totals.php" hash="643a06ca086b06a732004f073688eb35"/></dir><file name="Cart.php" hash="7ffacdd2422f769df682c83156aab966"/><file name="Links.php" hash="3ea4b4fd3a0c040d55c258e2b9c23102"/><dir name="Multishipping"><file name="Abstract.php" hash="b0a1ea630d0c18369dadc359446bb1e1"/><dir name="Address"><file name="Select.php" hash="0b7c8184050f87a58b1e2eb5a82f4dc9"/></dir><file name="Addresses.php" hash="f64e18dd22554cae891a9181e02abed0"/><dir name="Billing"><file name="Items.php" hash="75dbdfc33982acd44dc344b0b23626f5"/></dir><file name="Billing.php" hash="78b56757554c4e521e610376d975648d"/><file name="Link.php" hash="2a19d42e946334b65b12ce78a24ae31f"/><file name="Overview.php" hash="9bc38e98f85764d58ba8292aed5335c6"/><dir name="Payment"><file name="Info.php" hash="a670440634774b806310ea1a251ea034"/></dir><file name="Shipping.php" hash="3f1832bfc1c91d15d4491c4b8fed4ba4"/><file name="State.php" hash="0ec043c400c0ef3640c4946d85277a82"/><file name="Success.php" hash="d869c536a16ec9386b7dfca8eb94ab19"/></dir><dir name="Onepage"><file name="Abstract.php" hash="bcfa18c091ad1413c3398067b7919d66"/><file name="Billing.php" hash="edaae580ab1c058260cd2919bbbd86b5"/><file name="Failure.php" hash="56bf05b27fbf60186f6967e47726c78c"/><file name="Link.php" hash="3273d959fbb7923af96284a736d6fcca"/><file name="Login.php" hash="260a20603dd06f5f0be399db86464f3f"/><dir name="Payment"><file name="Info.php" hash="d165a359b5da76e98f30c8031a12d0a9"/><file name="Methods.php" hash="8f17730b97a36e5d20542afe940146e8"/></dir><file name="Payment.php" hash="0ad11208d8bcf7523aa4690846fa3b1f"/><file name="Progress.php" hash="fe224885dc3f53b82d7faa8c77b2a2dd"/><dir name="Review"><file name="Info.php" hash="6f9552265170840423bddf029c15def5"/></dir><file name="Review.php" hash="6f3b70cd1870a4349af5e78a29ca554b"/><dir name="Shipping"><dir name="Method"><file name="Additional.php" hash="9406f7ac92241d223906b3fa12531a82"/><file name="Available.php" hash="429a98e91babb72ae1eb1d5b03ce28e8"/></dir><file name="Method.php" hash="33542a802205b6e0aecfa7064dd396e5"/></dir><file name="Shipping.php" hash="1f9301b61fe67ab39e6e2d5462ab1b41"/><file name="Success.php" hash="44abaf732daf677bd272fda41c8e83b0"/></dir><file name="Onepage.php" hash="975f6c5d38ee23b49a336baaf90ec759"/><file name="Success.php" hash="e1bdcc4ff63a008a52416e7dcd9f20b7"/><dir name="Total"><file name="Default.php" hash="f72876020eb1e469d32a2439a9335608"/><file name="Nominal.php" hash="4675f9491a2608573a67371428db578d"/><file name="Tax.php" hash="5dc3bd46f6a148f409a7731ce1a5af84"/></dir></dir><dir name="Controller"><file name="Action.php" hash="43c24f20c6930bc9b9227eeb2dc057de"/></dir><file name="Exception.php" hash="4bffd7231c2d9380b18fc9f44ea62e07"/><dir name="Helper"><file name="Cart.php" hash="17e59a7184d8a7cb99b900984736e197"/><file name="Data.php" hash="51217ce0f916f303606743f5f3b8c98d"/><file name="Url.php" hash="9676658d942ddb56c34c76bb48705570"/></dir><dir name="Model"><file name="Agreement.php" hash="5ea689d86468a3e9bfe38d26274548a1"/><dir name="Api"><dir name="Resource"><file name="Customer.php" hash="fd4f5a72d3450a84bf635fea8d4bfa90"/><file name="Product.php" hash="0b62cd2b7405e808aadfc1b94d3a4f9a"/></dir><file name="Resource.php" hash="f70d9833d06848322aa3199ddf6aaff9"/></dir><dir name="Cart"><dir name="Api"><file name="V2.php" hash="8e565977022bad3538d555b4143600ce"/></dir><file name="Api.php" hash="4f3cd847a5e5ec831cf5a91875da1fe8"/><dir name="Coupon"><dir name="Api"><file name="V2.php" hash="300d9073ae574bf1a59c8a49405ccb54"/></dir><file name="Api.php" hash="3d79972a820b8e118eaaeb55fe71df84"/></dir><dir name="Customer"><dir name="Api"><file name="V2.php" hash="37e2cde05368b1825ae543663c98c64b"/></dir><file name="Api.php" hash="e148b69dbf2338fe2ca192de81af2615"/></dir><file name="Interface.php" hash="b12492224b276a8af17c00aa7dd22d3b"/><dir name="Payment"><dir name="Api"><file name="V2.php" hash="0a212d789a1bedf703f930b16873050c"/></dir><file name="Api.php" hash="400fbc37a9bbde155bbec0f92feeabd6"/></dir><dir name="Product"><dir name="Api"><file name="V2.php" hash="72dac519831f333fe8ad4f1cc6b68822"/></dir><file name="Api.php" hash="8462145424fadbc98ecb6ba3b6b03045"/></dir><dir name="Shipping"><dir name="Api"><file name="V2.php" hash="32bd4bbb1a051851da1c7b611f228f09"/></dir><file name="Api.php" hash="2d905e80b2233b6464722d4bcbfa9a22"/></dir></dir><file name="Cart.php" hash="86e4afc52506b761ca0226ed32f6f218"/><dir name="Config"><dir name="Source"><dir name="Cart"><file name="Summary.php" hash="08585e104eb4aed09d41c4491ff0d07b"/></dir></dir></dir><dir name="Mysql4"><dir name="Agreement"><file name="Collection.php" hash="0afca26f992a28eb4892066decbcb69b"/></dir><file name="Agreement.php" hash="792d897865a39eecbb919609a410619a"/><file name="Cart.php" hash="be6723269141b1451a4f7c86e7497300"/><file name="Setup.php" hash="c38f1ad47143d40d06a970a385a313bc"/></dir><file name="Observer.php" hash="2d31b6d1cb06767587b0a1c4cdfae1c9"/><dir name="Resource"><dir name="Agreement"><file name="Collection.php" hash="c913189410058ef96f312aa6a5d3527b"/></dir><file name="Agreement.php" hash="e0995392f16cfa42398e742a2c2abced"/><file name="Cart.php" hash="c78518be163aa4f0ab31e61c7f5e0e19"/><file name="Setup.php" hash="081ca5d71ba089d5d605f3186d423313"/></dir><file name="Session.php" hash="f8abf097841c62f56529f482a406296b"/><dir name="Type"><file name="Abstract.php" hash="fc48b701ceebbf0d057cc8d158827fac"/><dir name="Multishipping"><file name="State.php" hash="6d7e4f36bf9477d11f9a2a10cc39ccb1"/></dir><file name="Multishipping.php" hash="92f299c426eaaf207ff10f1a42ac0d31"/><file name="Onepage.php" hash="52bdd3ad2ea82a6adf54145ba10798bb"/></dir></dir><dir name="controllers"><file name="CartController.php" hash="0c443eccd41d6ef12a0ce8deb1f06a4a"/><file name="IndexController.php" hash="27765c343e0c3204259e5ac11bcad9b2"/><dir name="Multishipping"><file name="AddressController.php" hash="96de3280a8451974d109e44ffbedc311"/></dir><file name="MultishippingController.php" hash="d89dfbf2f130b832792907e62746e9c5"/><file name="OnepageController.php" hash="de8e00a003711936b831abb34c52e4d0"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3a89352000cfec6bdaebcfdba1fd01d9"/><file name="api.xml" hash="c898575a004eac996f514232ec42d894"/><file name="config.xml" hash="a033a72513ee637d6c86fae693430061"/><file name="jstranslator.xml" hash="09192c5171c833110988c9929eb8dff5"/><file name="system.xml" hash="047fb91fb6234a0f324ae8f88b75bf03"/><file name="wsdl.xml" hash="9a10e25803e84713f5031a168dd0c624"/><file name="wsi.xml" hash="2567bee4ef18e1b426c700ce66c3bcb1"/></dir><dir name="sql"><dir name="checkout_setup"><file name="install-1.6.0.0.php" hash="e9845a59bd24b9ed5ce891dcbc8929fe"/><file name="mysql4-install-0.9.1.php" hash="a583303cd013f23487f913cf7489a65c"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="0bb20a7e58b933371b288d310e528a3b"/><file name="mysql4-upgrade-0.9.1-0.9.2.php" hash="25503ad4ffcb56651642b2519194b852"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="fd21901e41bfea81736ac0ca1075a1ad"/><file name="mysql4-upgrade-0.9.3-0.9.4.php" hash="d79b9cb31eb2a39f4fd51ff16908f0ef"/><file name="mysql4-upgrade-0.9.4-0.9.5.php" hash="ff007a238948d561df296dbed692cb47"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="bc84512cc6d28fff2ee3c02bf1fb2ede"/></dir></dir></dir><dir name="Cms"><dir name="Block"><file name="Block.php" hash="808cc7b98e9d5d6b9bffa3fa2fb00620"/><file name="Page.php" hash="d9987805a72d22baf4267b0a1c34a572"/><dir name="Widget"><file name="Block.php" hash="ebe7556437cd84216b0a3dbd25b69269"/><dir name="Page"><file name="Link.php" hash="7aedc331ff5e05d58314a0650235d45c"/></dir></dir></dir><dir name="Controller"><file name="Router.php" hash="153a05f03ef48b34b18276dc18faf339"/></dir><dir name="Helper"><file name="Data.php" hash="704b0bf92e17ea9d45ad7aead5825fb8"/><file name="Page.php" hash="ef27b6592747ccbbcd19a7a32e774ffd"/><dir name="Wysiwyg"><file name="Images.php" hash="1af03c026e2fefc7c47d96166c3bdc3a"/></dir></dir><dir name="Model"><dir name="Adminhtml"><dir name="Template"><file name="Filter.php" hash="5f12afe3c720ffb4cea6fed946135bb9"/></dir></dir><file name="Block.php" hash="d4d7b6f77300797ba3ca3d72bc58818c"/><dir name="Mysql4"><dir name="Block"><file name="Collection.php" hash="6fd2d7b274c65303976683c9255f5667"/></dir><file name="Block.php" hash="16bd676bde704194d0eb383b53d853b4"/><dir name="Page"><file name="Collection.php" hash="c34032769799df3970c4edc4ceacce8d"/><file name="Service.php" hash="1404261f5a2aedd536cc79d431348eb1"/></dir><file name="Page.php" hash="477f2eff400115e79e61ef848d129d8c"/></dir><file name="Observer.php" hash="cc521139189d28588d9434bb58e79693"/><file name="Page.php" hash="2967afd2aa4840338d22e2d0e090cc3f"/><dir name="Resource"><dir name="Block"><file name="Collection.php" hash="9a86e9526a30783ed5ded05d9f5e9f14"/></dir><file name="Block.php" hash="d641f3d6a76d9186f44dae801d8094fc"/><dir name="Page"><file name="Collection.php" hash="c6ad6050fb8c4163a438698e1bb2cd0a"/><file name="Service.php" hash="ee4af8837bfd0333f48aa9d1475eea28"/></dir><file name="Page.php" hash="af4b60e4531be743407d0f6c36f5b2dd"/></dir><dir name="Template"><file name="Filter.php" hash="ea84ea91afc7c16077e72ac41a17e7d3"/></dir><dir name="Wysiwyg"><file name="Config.php" hash="a5e8ed87851da04ef8e219cc2b4f6596"/><dir name="Images"><dir name="Storage"><file name="Collection.php" hash="3fbb9096f505cf63a7a54f7f67fa3095"/></dir><file name="Storage.php" hash="1ddce482989fd0b9244845f903f2270c"/></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="0e7e12bc4babef09e69e7467cb65a108"/><file name="PageController.php" hash="55524ed778a003db6067c75ded5c7516"/></dir><dir name="data"><dir name="cms_setup"><file name="data-install-1.6.0.0.php" hash="fa64f4284e2bdbda37b03a586787eadf"/><file name="data-upgrade-1.6.0.0.0-1.6.0.0.1.php" hash="b3b6fa8bef11edfc71f459e7873b6268"/><file name="data-upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="2de01ad853f4243be77e6a8b6953870d"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="fe1b8ff7eebe920ed8ab2adc1eb0c7ea"/><file name="config.xml" hash="57993187979be0c04798d298a31fafd7"/><file name="system.xml" hash="df2b1f760a8f78b9f43a1ec7d05eea13"/><file name="widget.xml" hash="6c29f20e2b3267e154cba1fb4cccfb82"/></dir><dir name="sql"><dir name="cms_setup"><file name="install-1.6.0.0.php" hash="5669050d7b7e3b78e466fcd832eb66ab"/><file name="mysql4-install-0.7.0.php" hash="e7c388928acdec38b1146c1ea6482ad6"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="8199f7126a7a23e3fcd3010c212b86cb"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="2809caa9a092d89fc11e22504bb149be"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="e26c67326979cee3f22ead8e4a330ac2"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="971bb950e4533dc2fbfdb3651062bae8"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="ecf73f12a15a4c76b4b0c184b2815e41"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="c27a9ac81e7664b8555f369eb73c00ba"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="1d526c35029e9ccd1358bfb79ba85219"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="f7c8cad8181dce1db0ff749bb2a1f1c3"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="1a877f21e0adb5d14696f155d744cf3e"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="772f6217e2477aa7c7f6096654c08fc3"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="3533979da1385e39faff4bbde8179e24"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="be1f73f82e59a420e0a74401a0fca80b"/></dir></dir></dir><dir name="ConfigurableSwatches"><dir name="Block"><dir name="Catalog"><dir name="Layer"><dir name="State"><file name="Swatch.php" hash="ba2d565918d86b78d018bf2252ce107f"/></dir></dir><dir name="Media"><dir name="Js"><file name="Abstract.php" hash="65d13549eff5aed01e7de5fbd1dae86a"/><file name="List.php" hash="5d1bf59d2c66986f88516c17e578843d"/><file name="Product.php" hash="0e01cd15f0d717b0ed2db9a5c63a5d8b"/></dir></dir><dir name="Product"><dir name="List"><file name="Price.php" hash="1274be29931b6896545f142fc32fa5dd"/></dir><dir name="View"><dir name="Type"><dir name="Configurable"><file name="Swatches.php" hash="ca8cde3ec6ecba0f802a4be0a95b2720"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="83667ceddcda8538e54503027669e31b"/><dir name="List"><file name="Price.php" hash="c6597c6257ea1be6bd0c33e79cbdb21e"/></dir><file name="Mediafallback.php" hash="a4c9b34b6c02f24f5f879dfdcf431ee8"/><file name="Productimg.php" hash="7c45bc60904625048daebe1ae6ee3426"/><file name="Productlist.php" hash="485ac59635fa6338bb6047899ce210b6"/><file name="Swatchdimensions.php" hash="5d9b2d9c5cb9db5eee4b3a43d11c940d"/></dir><dir name="Model"><file name="Observer.php" hash="21a8192931a3a8c5a58e64b86a1a16b0"/><dir name="Resource"><dir name="Catalog"><dir name="Product"><dir name="Attribute"><dir name="Super"><file name="Collection.php" hash="19e2652eebbc5781ec5a5200ff21cf88"/></dir></dir><dir name="Type"><dir name="Configurable"><dir name="Product"><file name="Collection.php" hash="7ee76f04040a166ff09c9f49057916cf"/></dir></dir><file name="Configurable.php" hash="e240a0d73107c1a05bcd2f2c717b6305"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Catalog"><dir name="Product"><dir name="Configattribute"><file name="Select.php" hash="c1307cb449fcfc2b28405c32ac1be385"/></dir><file name="Configattribute.php" hash="36770f92cc2f60edf324faa1f7c26f0b"/></dir></dir></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="520821e755cb0713359c9d5e41e9b793"/><file name="config.xml" hash="34c0ad0df08a9ccdbb358d7d46778cf8"/><file name="jstranslator.xml" hash="6c0bfe8d32613e25cd6e81bf40e2eb52"/><file name="system.xml" hash="e06ba414a420bfbc067f36f2724bc147"/></dir></dir><dir name="Connect"><dir name="Block"><dir name="Adminhtml"><dir name="Extension"><dir name="Custom"><dir name="Edit"><file name="Form.php" hash="d789b9e5f5b5be54256d54c2067a7495"/><dir name="Tab"><file name="Abstract.php" hash="faa6ebfa9a24b2726091a7079e32b2af"/><file name="Authors.php" hash="18e44b9c37050798bc44e7bebefe6b79"/><file name="Contents.php" hash="a69e88be8f99a4dfdc42d1d8a5cfe64c"/><file name="Depends.php" hash="2f4c09428ffbafc3c976394e94a013ee"/><file name="Grid.php" hash="ff77b7a1539670805534f87ae2ef4a93"/><file name="Load.php" hash="1e51f328e913bbcb0a08feed4d1fdfc1"/><file name="Local.php" hash="2d3289cfa670c6ed650344225ad9175a"/><file name="Package.php" hash="e9d0265bb0a008a6c36cc760ceec0386"/><file name="Release.php" hash="b7f347176161922003596b1819dc0027"/></dir><file name="Tabs.php" hash="b27a5ab996909088f5d914598ffd5e22"/></dir><file name="Edit.php" hash="c7861675784fbb52b833e3dbe0f480fa"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="08cf5672c1c0b67a213ba6ace2a58107"/></dir><dir name="Model"><dir name="Extension"><file name="Collection.php" hash="8a067c24e32d6ce8ea9d8a5968a728f7"/></dir><file name="Extension.php" hash="816868c3415ddd41f45e409501f6c7dc"/><file name="Session.php" hash="5440476ad3ef3f7c3c2230ae1ab28ea8"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Extension"><file name="CustomController.php" hash="f33eead77dce7b537894d8b16226c5f2"/><file name="LocalController.php" hash="d930aaed8a7b773573b59e8bb442ddf6"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="101c7900791af6e5ee9c95da47c483f1"/><file name="config.xml" hash="fe2f20c5ab7f316d5c8148ff72008105"/></dir></dir><dir name="Contacts"><dir name="Helper"><file name="Data.php" hash="1a738165172917c879f9ac141c11b9e1"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Backend"><file name="Links.php" hash="ba1b3017172093f46465a105ad2996a2"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="bf03d63562bb14bc90fed7f19e0b7f30"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2cedca70a58666ac2347bbe3f9bdafd0"/><file name="config.xml" hash="5c00f20bddf8f55411db826d7d613921"/><file name="system.xml" hash="4de5af82897ea61d65abc342179e27f0"/></dir><dir name="sql"><dir name="contacts_setup"><file name="install-1.6.0.0.php" hash="13f3139c5258cd52688763b6b9dd99b0"/><file name="mysql4-install-0.7.1.php" hash="94a59176972576cb435ea6505e08636f"/><file name="mysql4-install-0.8.0.php" hash="894c4d3fda75ee5ff0bad394ef03ae15"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="f21132d7a6189d17610d76954ba3e6f8"/></dir></dir></dir><dir name="Core"><dir name="Block"><file name="Abstract.php" hash="60ab25109ee03a2e80dcd9c223b7a4c0"/><file name="Flush.php" hash="689a5e3eb946bcb0d761dfbc1ef737d4"/><dir name="Html"><file name="Calendar.php" hash="6159aac3f3bcfbb50f6292f8426128b5"/><file name="Date.php" hash="44aa2b30529c837699f0302d3f5a129e"/><file name="Link.php" hash="c0586fbede4941f473fb0d9b4199eabb"/><file name="Select.php" hash="3a00a83d4fcc827a19050989db504111"/></dir><file name="Messages.php" hash="81e21fc3d8782d4ddb9f82847f79f78d"/><file name="Profiler.php" hash="768c063dfbf1fd40e5d1472fe3f77884"/><dir name="Store"><file name="Switcher.php" hash="81c614c6aaa95f2b016351aa60a6565c"/></dir><dir name="Template"><file name="Facade.php" hash="66b97c587f08c3312a3a7e902d012d25"/><file name="Smarty.php" hash="726d82c94a6e6aca2b2ecc3a4abb2ce2"/><file name="Zend.php" hash="62cca867dd890b50e95988c0f863861c"/></dir><file name="Template.php" hash="e9011e2cee5cee76db541491dfc871fa"/><dir name="Text"><dir name="List"><file name="Item.php" hash="be4927dd33ac2147f6bbee57c4d9ce63"/><file name="Link.php" hash="8935c490d0b2cfea4147236707135178"/></dir><file name="List.php" hash="0415c60e89ee20a9b164303625630320"/><dir name="Tag"><dir name="Css"><file name="Admin.php" hash="bd031a45ce2d6071fcaa9d6c68c16201"/></dir><file name="Css.php" hash="871935fa964adbf99609e014e60d4ddd"/><file name="Debug.php" hash="36f5331bdcb23703d33418c423abc5ae"/><file name="Js.php" hash="659e91e2758e5e5582a42188e8671f59"/><file name="Meta.php" hash="cee17b0e3efeb8cd34c4f7f34d191789"/></dir><file name="Tag.php" hash="09b53ed3fe7f8730140f85ef49d8ba6e"/></dir><file name="Text.php" hash="5dd0190a290ba9314143284a465f3783"/></dir><dir name="Controller"><dir name="Front"><file name="Action.php" hash="0bd3f2b0428b65fec0b20d3260624a4c"/><file name="Router.php" hash="f4a1e85ed9ceff4df31de9fc3925b749"/></dir><dir name="Request"><file name="Http.php" hash="af9331e309ad5a600e37f45f456b85ea"/></dir><dir name="Response"><file name="Http.php" hash="b4e08d0cf4f3958fea43e98d23e921a3"/></dir><dir name="Varien"><file name="Action.php" hash="89b97e5ebc240a83f5d37a95fb0e269b"/><file name="Exception.php" hash="a798a1e14cf080320fd8ff1c61b7c0ce"/><file name="Front.php" hash="fa826d6cb39da808d9f2abdb6c4a3619"/><dir name="Router"><file name="Abstract.php" hash="9b7dbb6f0025291498471f3df80a1775"/><file name="Admin.php" hash="e2bfb79df9e269912795b699a2cbc57c"/><file name="Default.php" hash="4af9b582bf8c1d58a787c1b0fd814296"/><file name="Standard.php" hash="e270230e4ab92d50e975c49774ef57b2"/></dir></dir></dir><file name="Exception.php" hash="e24ff5a61dfb253617d88752d7035dae"/><dir name="Helper"><file name="Abstract.php" hash="8e71f2a30d98a6a7e9bdfa3d473679ed"/><file name="Array.php" hash="484a0a74a7f9e3c08c3a4b73f7337ac5"/><file name="Cookie.php" hash="7c6e78a4bb52f8a2e8cd72c611c3a607"/><file name="Data.php" hash="ef93ca79009474e6b8d935fdd7f03c46"/><dir name="File"><dir name="Storage"><file name="Database.php" hash="ad54c841a0cb8f9a6c85923fd70899d7"/></dir><file name="Storage.php" hash="8f02a3f236314fceb25ab16c5d47f2f6"/></dir><file name="Hint.php" hash="694fd4bbddbaacdd56bd07683802a234"/><file name="Http.php" hash="a63b38419324891ec908414714758d00"/><file name="Js.php" hash="be84944e4f41c399d10b154b8a130a81"/><file name="String.php" hash="30c8bed45c799cf6fdee9d34f699f472"/><file name="Translate.php" hash="a6dd08880eb8f27ef543d93ea532fff2"/><file name="UnserializeArray.php" hash="d5506fe8abd8794aaa7e4ad23821bce7"/><dir name="Url"><file name="Rewrite.php" hash="97e46be2318d6a82d40e217f234663d6"/></dir><file name="Url.php" hash="9f8fc179fc4eb191c17041ddca1ce8a1"/></dir><dir name="Model"><file name="Abstract.php" hash="3ebc995256ad69f924819f96e401b60f"/><dir name="App"><file name="Area.php" hash="6c814d69b0066a826869f69841e0b287"/><file name="Emulation.php" hash="218411722dbc2925f6afd70c4c493cb7"/></dir><file name="App.php" hash="c7d73ebf537565a7293a88ece6ea7613"/><file name="Cache.php" hash="00e7b0a35d49e3774f39b4c9811017da"/><file name="Calculator.php" hash="7903aee2fa175e91615c702870866b9f"/><dir name="Config"><file name="Base.php" hash="95d6606f6dc37e645b9bf5d95f860dac"/><file name="Data.php" hash="b002587f1ecdf2ddced2371c44591eb0"/><file name="Element.php" hash="070129342aea34a54ba3cc99052d4075"/><file name="Options.php" hash="a2afec98dfdde676d372aab35fc1d0b3"/><file name="System.php" hash="e44dcb546c68d06df2e58d135030a140"/></dir><file name="Config.php" hash="c0aac670427c25d85f8667a47ea9eb63"/><file name="Convert.php" hash="96387227fa5be3cff23e39a345234b75"/><file name="Cookie.php" hash="cc5c60b0a34494b472adcb4197286026"/><file name="Date.php" hash="1f7628558283dc16fc637116fc3df677"/><dir name="Design"><file name="Config.php" hash="93276cf40f2f17108cb16e6feb0fb674"/><file name="Fallback.php" hash="5484111090937874c9989a2df61a13d8"/><file name="Package.php" hash="267df9446f26ba8a64cb2c04c9f7b20d"/><dir name="Source"><file name="Apply.php" hash="232aac8a7ca16ed044f1d88d8ece4775"/><file name="Design.php" hash="b594cf0c90f77d1eab9947667024a6b3"/></dir></dir><file name="Design.php" hash="edf9897c28bb0697addc9050785b1389"/><file name="Domainpolicy.php" hash="80272f0001a2360486342d53df6a7890"/><dir name="Email"><file name="Info.php" hash="b928f262cef6543836df610a9ddb81d5"/><file name="Queue.php" hash="faa403ad5e67f15b7e76a702a72c787f"/><dir name="Template"><file name="Abstract.php" hash="8f8c124b78d71d3757fb7439d06ed229"/><file name="Filter.php" hash="5b30e3fd74c056d97ba00b49f3a7691b"/><file name="Mailer.php" hash="14660ee8eeee2b300b46a01392c35712"/></dir><file name="Template.php" hash="5ee9291da1cb0bfcf71d14430777d5ae"/><file name="Transport.php" hash="46a8e4e2e504fc31a034f41bd05af5ca"/></dir><file name="Email.php" hash="e31ab1cef8d2dbaf9c9e02239774c039"/><file name="Encryption.php" hash="19930c4f9ce2b59dff7bf8e6ebcb9fc4"/><file name="Factory.php" hash="1def8ecf557dd80c27bd8b9ae0389aa0"/><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="0f4742c51ad478f62623ce0ff36c02b7"/><dir name="Database"><file name="Abstract.php" hash="9558ea6318d43c989527c5c6781427d9"/></dir><file name="Database.php" hash="c8cd146d38f94cb1a34aa7ba4807e9d5"/><dir name="Directory"><file name="Database.php" hash="59a04f3cc135f69cc177d7713ee44da5"/></dir><file name="File.php" hash="33253411661b819e14dd8ffcbf68b991"/><file name="Flag.php" hash="36cd58ed02c91be1d8d6e163a6a37eaf"/></dir><file name="Storage.php" hash="29f0f2b03940992772d6d575742eac8b"/><file name="Uploader.php" hash="ac91eabcb578a50962258f0a1f684472"/><dir name="Validator"><file name="AvailablePath.php" hash="ec8d101e319bf09e3514236868d9fe96"/><file name="Image.php" hash="fed721fed352dcf04bae8d86d64c5e38"/><file name="NotProtectedExtension.php" hash="2a5bc90d074468f322ec80c5f22ff994"/></dir></dir><file name="Flag.php" hash="7dfd86cc88faaecb61270b06a8949afe"/><dir name="Input"><dir name="Filter"><file name="MaliciousCode.php" hash="45d2eba5b5367dd11cb343c3d95b2a0f"/></dir><file name="Filter.php" hash="9a705f56a3b458781ed1d0e08eb6d9de"/></dir><file name="Language.php" hash="5553b1a3996e214ee04bb873d2e496a2"/><dir name="Layout"><file name="Data.php" hash="ad8e232f9bfbcb6a2597762a4794ef59"/><file name="Element.php" hash="f763346da15b317cee92c02f57a37292"/><file name="Update.php" hash="d6b3c449d3e49dabc4087c36d083fa55"/></dir><file name="Layout.php" hash="f0496b8ddcef27367d8c492ed398a506"/><dir name="Locale"><file name="Config.php" hash="f38c5dec6e40442e75cac2587838acba"/></dir><file name="Locale.php" hash="8501f332360a8052748e3b25d1db656a"/><dir name="Log"><file name="Adapter.php" hash="16e93511497b13a8e07e4d517225ed0c"/></dir><file name="Logger.php" hash="beb95c8bf5b8505b8104278d3b9958a5"/><dir name="Magento"><dir name="Api"><file name="V2.php" hash="990a2e9e5813e05c5d1add95e22148a6"/></dir><file name="Api.php" hash="6fc47bad41f25c86614e3339b6171c4b"/></dir><dir name="Message"><file name="Abstract.php" hash="0b916894d2dc70d6ce62d46921e33d37"/><file name="Collection.php" hash="344cf87be807bf3d3824af6aca2bb9e3"/><file name="Error.php" hash="403f98d2d9612549c6f6258fa10a8d17"/><file name="Notice.php" hash="5d9e6c832be4e1bef81ad8081f75bc43"/><file name="Success.php" hash="66438b0c9cff77eb73ff5ff315df52f4"/><file name="Warning.php" hash="aafb26c475337e687ff1dfeb005edcaa"/></dir><file name="Message.php" hash="85d7966c908e150ac1e8fc41244f245a"/><dir name="Mysql4"><file name="Abstract.php" hash="44d0b31e3085e15ca2b3b0f9d0be2c5c"/><file name="Cache.php" hash="535e51f36277a7df2d30b9d2d6601b3c"/><dir name="Collection"><file name="Abstract.php" hash="4a98bfc00bea6a5da2fc5bf3609e6433"/></dir><dir name="Config"><dir name="Data"><file name="Collection.php" hash="4ef79294f6f55c6c2722abfb7ed34706"/></dir><file name="Data.php" hash="f53c79280bc295051fa7b3860cfea9ae"/></dir><file name="Config.php" hash="a42970610f64863e0097a58b9e6cc23b"/><dir name="Design"><file name="Collection.php" hash="743cd2d296bb161ecc98616e57a05d12"/><dir name="Package"><file name="Collection.php" hash="b0e13eba451dcbc84e59b3c1ba879b23"/></dir><dir name="Theme"><file name="Collection.php" hash="d15267e5e6c26e9e59a9c4be4735986e"/></dir></dir><file name="Design.php" hash="eda39942885b6a2679aa1ef3f41ea025"/><dir name="Email"><dir name="Template"><file name="Collection.php" hash="4f591b6e7817ed5fe9a06d1bbf77acf6"/></dir><file name="Template.php" hash="3ff3b156f0cc0cb243a1b09b74673339"/></dir><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="3922d04eb1e885ba9ee02df7cc9a6408"/><file name="Database.php" hash="c60d8d1728e449fac71590330def8f94"/><dir name="Directory"><file name="Database.php" hash="4ce089a2e5594faf2a7cb6ea88944dd1"/></dir><file name="File.php" hash="2072a576162d3e7d4b2d17dfff5c647f"/></dir></dir><file name="Flag.php" hash="a0a11d34b0b0e100b96fc11c9c975a1f"/><dir name="Language"><file name="Collection.php" hash="58144f7d71289903e929638fc4fc5f1d"/></dir><file name="Language.php" hash="aced85d1d84667357d79ebb0fb8bc3b8"/><file name="Layout.php" hash="57bc0dbe1d31bb305e4660759025901b"/><file name="Resource.php" hash="c408f0d94d0cf7c85b60b281665c7444"/><file name="Session.php" hash="2a829f916eb8f50f7a63b670ca399bf2"/><dir name="Store"><file name="Collection.php" hash="ee4457bf62e4b2e3e7614558cf2f0cb7"/><dir name="Group"><file name="Collection.php" hash="e78c87707665daf3261d0e61aa003175"/></dir><file name="Group.php" hash="2f704ed0988128cc94aa579c23b40195"/></dir><file name="Store.php" hash="b9ec990140144ae2b4ff4b1b4357a276"/><dir name="Translate"><file name="String.php" hash="2550beff52f20647c9070a521b177d81"/></dir><file name="Translate.php" hash="2bae6bc9d6d6f9b54d1e74e3ef541620"/><dir name="Url"><dir name="Rewrite"><file name="Collection.php" hash="618b2b7ac1893631af1c96381be8d6e2"/></dir><file name="Rewrite.php" hash="f0847e55d9ab40a714791c1866102915"/></dir><dir name="Variable"><file name="Collection.php" hash="8c6cf80f822398f16ddcb1f700e5b97a"/></dir><file name="Variable.php" hash="e3412c25b10a5e79c59e90f7fe817ce3"/><dir name="Website"><file name="Collection.php" hash="34999e0a76945a915346632845961062"/></dir><file name="Website.php" hash="a6457ca65b822869a2c42abab954ba12"/></dir><file name="Observer.php" hash="7a1f30833ecd016885791a9df66ba83e"/><dir name="Resource"><file name="Abstract.php" hash="694793a99cc08f415b84aa6f87d3b080"/><file name="Cache.php" hash="d421e47284b76a6d0034a55954354601"/><dir name="Config"><dir name="Data"><file name="Collection.php" hash="aa72268f5dcd2cb27a2e9583bd9a7b97"/></dir><file name="Data.php" hash="6f5b1ffa861eb1a771b650e55393b8d2"/></dir><file name="Config.php" hash="b609a605366bda0d9b77fb0b4da8f680"/><dir name="Db"><file name="Abstract.php" hash="2aa23ed3e3cfbb4f1ee504b1b080dc93"/><dir name="Collection"><file name="Abstract.php" hash="856ffddfc4b7eef7e653fc9f4ed1cc12"/></dir></dir><dir name="Design"><file name="Collection.php" hash="9eda836bfcfc20bd10d992cff0f42dee"/><dir name="Package"><file name="Collection.php" hash="71080e12d259608667ca14694fc06786"/></dir></dir><file name="Design.php" hash="ab67c437c1fb6b21e174271b5eea4795"/><dir name="Email"><dir name="Queue"><file name="Collection.php" hash="dc99090438f9d3da4eafdd6289b0e593"/></dir><file name="Queue.php" hash="e6ff94522082f76abd83abeede4350c4"/><dir name="Template"><file name="Collection.php" hash="74ff7fee4831faeabb215e745ea2c5d5"/></dir><file name="Template.php" hash="e24b6c1aa4117729b9e1fef8ce470df1"/></dir><dir name="Entity"><file name="Abstract.php" hash="fbab338c7741fac0f55ee32753eabb31"/><file name="Table.php" hash="82ccdee4411353933aa056b40219c66a"/></dir><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="63f9930772d7d6218a97eba4ef2e51e5"/><file name="Database.php" hash="9f8d3d2ae031cf910550022e48e04f24"/><dir name="Directory"><file name="Database.php" hash="7fd49ee18d156fc2cb5322497f066d8e"/></dir><file name="File.php" hash="db44e3c71d0a7ed03a1f98772fee81a1"/></dir></dir><file name="Flag.php" hash="fd7d58c0720668e089e1721675309e11"/><dir name="Helper"><file name="Abstract.php" hash="7f7d5923b0d30b78b5bb09101c6fa45d"/><file name="Mysql4.php" hash="9b7abcaf9407b0cfd54878aac2dc4a71"/></dir><file name="Iterator.php" hash="87812d0f3cc7c2aa3ad880845a9d81cb"/><dir name="Language"><file name="Collection.php" hash="a94b4d950521edf293306f2ce3d1f2e3"/></dir><file name="Language.php" hash="1a8abe38849f32cf206d94908d0bb157"/><file name="Layout.php" hash="eceec3e6ab5a55a7cdbcc9ed830cd9d8"/><file name="Resource.php" hash="5dd772aa7bd15d23902ec45c73a6e757"/><file name="Session.php" hash="f6113f0ded8c6c1ac47a3d3ea30a5d05"/><dir name="Setup"><dir name="Query"><file name="Modifier.php" hash="441f79117cff4d7d6bc7e1bf3af0534d"/></dir></dir><file name="Setup.php" hash="af2e8140844cf09135c7270cb6cc57b6"/><dir name="Store"><file name="Collection.php" hash="77e38160ee990c0ef701635da0727f27"/><dir name="Group"><file name="Collection.php" hash="69ef898295bf51476f85350909a30dbb"/></dir><file name="Group.php" hash="aadd4f4301afaa93d49cb98cd6a31a27"/></dir><file name="Store.php" hash="8deab7031d5538151a02b5a7b27b4de1"/><file name="Transaction.php" hash="304008e754044346662a2763add16495"/><dir name="Translate"><file name="String.php" hash="14389d4db4ba5795ccfbe923b876fd7d"/></dir><file name="Translate.php" hash="6717d307f1747093eaea31225aa18935"/><dir name="Type"><file name="Abstract.php" hash="688b26e10a67f4484131cdf9de51557b"/><dir name="Db"><dir name="Mysqli"><file name="Setup.php" hash="8a5f3235eb45f511db2b0e14ca7bac3d"/></dir><file name="Mysqli.php" hash="6459b80b973a0944cba2619a173aa895"/><dir name="Pdo"><file name="Mysql.php" hash="747a0822bd08cb3f0b2d1526c6dfeccf"/></dir></dir><file name="Db.php" hash="b8eb52fe758a85e093f2e7694d8663ca"/></dir><dir name="Url"><dir name="Rewrite"><file name="Collection.php" hash="683f36f30c844c054f01be8ff310230e"/></dir><file name="Rewrite.php" hash="fecead19766cf14766a558ea79f5a67d"/></dir><dir name="Variable"><file name="Collection.php" hash="5bc6509f458ccad5ff27fc03f35aa9d4"/></dir><file name="Variable.php" hash="75b3c3b20e1bfd1a0f4017b7e64ec1ce"/><dir name="Website"><file name="Collection.php" hash="1c353c8ed5e653bf799a81896da8a645"/></dir><file name="Website.php" hash="e385a6d19f6d87c1e8c0ac0e31dbf471"/></dir><file name="Resource.php" hash="a97d261d1638b03f3a19ba7947c0f03e"/><dir name="Session"><dir name="Abstract"><file name="Varien.php" hash="19260a0b1483c335437a1b83fbecbde4"/><file name="Zend.php" hash="48602c6c721a1419a16291602bbc6e6b"/></dir><file name="Abstract.php" hash="0fd88d73bd06001281b3f4cd3185f855"/><file name="Exception.php" hash="1419325851e05e56085a80360993ec7a"/></dir><file name="Session.php" hash="e2c1d6077d37b1fd5a648b1f7835c3e7"/><dir name="Source"><dir name="Email"><file name="Variables.php" hash="2d6e88ba25d3321a5af0d7fde74569c3"/></dir></dir><dir name="Store"><dir name="Api"><file name="V2.php" hash="23fce9936bfde4eddf3bc042da49c704"/></dir><file name="Api.php" hash="e26d51518a7bcd09ed5da2fac58b1b4f"/><file name="Exception.php" hash="59d2bd50b218ccf5f217e8f4f87db294"/><file name="Group.php" hash="685ea0a277d23ec5e17d44728deef16a"/><file name="Observer.php" hash="beed858da489fece24868586ae67624b"/></dir><file name="Store.php" hash="f895e6a4d4fc82542c471c2c276ff215"/><file name="Template.php" hash="e78ec82cbb982ce5e06e6937e8616ae0"/><dir name="Translate"><file name="Expr.php" hash="5e7825d1ad5d680fae8d2cb2e3e56a3f"/><file name="Inline.php" hash="c46e75758767785fcbf90429f3b27f7c"/><file name="String.php" hash="ff5d4c7d438f42a96481bcf50dcfe726"/></dir><file name="Translate.php" hash="40815cb1b455d9b11ee7bc5b209f7883"/><dir name="Url"><dir name="Rewrite"><file name="Interface.php" hash="9c5c19dbddac570166efa99fe23636eb"/><file name="Request.php" hash="1d981ff6255931373ab21012ef728a43"/></dir><file name="Rewrite.php" hash="65284f3fd21eab368bb60e9fcef41980"/><file name="Validator.php" hash="c701ffe374838bcc86a02daeb531716c"/></dir><file name="Url.php" hash="8d74e01ecc551a7fb4170fce4aab07d2"/><dir name="Variable"><file name="Config.php" hash="2e89c7e08f594c235ee7c54d9d8ecd04"/><file name="Observer.php" hash="abeffe7406776babb339ff8530c97bcb"/></dir><file name="Variable.php" hash="6b550791573110761a25dd7a014bd0ea"/><file name="Website.php" hash="159a68fc3084c56aa44b77214f6d22be"/></dir><dir name="controllers"><file name="AjaxController.php" hash="0fdf2d77ca172a26f52a058d9f4a7744"/><file name="IndexController.php" hash="bf938059a97c970206756db4f00c9584"/></dir><dir name="etc"><file name="api.xml" hash="6bbb100de305337ddec14d20e0cfdf70"/><file name="config.xml" hash="21bdbe591bc2a77e460fdfecfc12ffca"/><file name="jstranslator.xml" hash="75e1f15bd4333b43b2b4ed1f8e8d5584"/><file name="system.xml" hash="dfb91fb13c9b137c2d2314b6416f26eb"/><file name="wsdl.xml" hash="79501d6ccf39846b5dd551e85880dcb8"/><file name="wsi.xml" hash="31fa195d527181c946019bcd44d819d6"/></dir><file name="functions.php" hash="e720e89444d851040333f1cd71fc72f5"/><dir name="sql"><dir name="core_setup"><file name="install-1.6.0.0.php" hash="c69f3177bd988dcf47af832d0f30d867"/><file name="mysql4-data-upgrade-1.6.0.2-1.6.0.3.php" hash="fb24c3e570816db655406d337f606568"/><file name="mysql4-install-0.7.0.php" hash="d7fd9846b6460fc316c7e16c6728dedc"/><file name="mysql4-install-0.8.0.php" hash="cdee3cc30f18e8867a1a2804cdd84d03"/><file name="mysql4-upgrade-0.6.26-0.7.0.php" hash="345976f0456345f682763fac7316cc55"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="32fefbbffd4cecd44bb883383cfd9371"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="66ebb46fb35c1af148779933ef65fca8"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="c5412377ad835880e87f4732a3b6714a"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="0c21a8b350aeef94116668aca96d4ded"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="9e245ebd96215aae487df642a4244006"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="67525f1672117b14999c40df9b4ffe44"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="8aa20d72ba29c2c4c036a74f5da81354"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="60cfbe9a16cea4084149fbb60aadfe33"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="4b5bfe8f064af5094380fd0c6f4230b8"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="5e889e1e36552f97c6b47ccacc037878"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="e7b405393ee923ce77b4fc73fe2c49e5"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="e5177617bf9ff7cad413ebadbaa36c2e"/><file name="mysql4-upgrade-0.8.12-0.8.13.php" hash="58d94dcd86435d9a9678110d7380e9e6"/><file name="mysql4-upgrade-0.8.13-0.8.14.php" hash="4ef7145c13ab85b257e149ee4ce42aae"/><file name="mysql4-upgrade-0.8.14-0.8.15.php" hash="11462279aad7a312d138871c1232bc4c"/><file name="mysql4-upgrade-0.8.15-0.8.16.php" hash="b68084f2461e13da31d10ffb69b6c427"/><file name="mysql4-upgrade-0.8.16-0.8.17.php" hash="cc5a96f1ec35576e5cc04d2f3c8fcdbe"/><file name="mysql4-upgrade-0.8.17-0.8.18.php" hash="a049195d8b49c8fac0b422b55444f072"/><file name="mysql4-upgrade-0.8.18-0.8.19.php" hash="5c1e0d78fe374bc179fac4e0a201024c"/><file name="mysql4-upgrade-0.8.19-0.8.20.php" hash="57188799f2c9aa98b2db3e9cc88f57ca"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="5c4c948191730c5aaa46a9c0a4d529af"/><file name="mysql4-upgrade-0.8.20-0.8.21.php" hash="26306dc6458b0403f1a05bc92447af40"/><file name="mysql4-upgrade-0.8.21-0.8.22.php" hash="1375cdd7860773ed2f80282af9986008"/><file name="mysql4-upgrade-0.8.22-0.8.23.php" hash="96d94946d3d1d8471ff619228407cb7a"/><file name="mysql4-upgrade-0.8.23-0.8.24.php" hash="219d2459c587c5e8a81290c56154e0d6"/><file name="mysql4-upgrade-0.8.24-0.8.25.php" hash="6f1f9c00a382d22bcc220e1b9f3c8905"/><file name="mysql4-upgrade-0.8.25-0.8.26.php" hash="4558c5a6d9be1ca611ac9ca058e4edfb"/><file name="mysql4-upgrade-0.8.26-0.8.27.php" hash="65e15fa502932b633a0c8c828a6334bf"/><file name="mysql4-upgrade-0.8.27-0.8.28.php" hash="19590c1ee41148edfc36fc72965e402b"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="3cc627e59b0ceb3b3016e328c88b829e"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="5a829783619299f2538700da0ae1e123"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="3e314226e8fbaa3bcaf1694faefd8809"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="c2344bc955f3fb823c2926310209c25e"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="9b86798fe5b7fe0cb5cc595874b07501"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="d2bbc20b4f415a188d706abd0f67bb0d"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="6255b0401694107d9c3c67d0a7cb4a6f"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="91433f5df703361ded3d282200923d2d"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="dba0fecbc83001d5c62b114522103050"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="e043db02bb9983863f06f46dac0b78c2"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="1be7d02e33df1abe18f3df4d76063329"/><file name="upgrade-1.6.0.5-1.6.0.6.php" hash="eb7b611019f69996f4963183636b6094"/></dir></dir></dir><dir name="Cron"><file name="Exception.php" hash="7ad70a581e997407204ecec98768cdd5"/><dir name="Helper"><file name="Data.php" hash="a977275822fc9e8de01235a624ba7cc4"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Schedule"><file name="Collection.php" hash="62f2dd629591cebffd75273bdea7c5b7"/></dir><file name="Schedule.php" hash="6ac83aed52b6ae3256a9906a4370a66c"/></dir><file name="Observer.php" hash="3a61f2a4165aadd074686fc4dd6bfeea"/><dir name="Resource"><dir name="Schedule"><file name="Collection.php" hash="a8f6dddabd1265fb4743245ced01230b"/></dir><file name="Schedule.php" hash="33fc20836d2171d9949b73cc50e2d105"/></dir><file name="Schedule.php" hash="97c2856ad13132d2abbb4ad4937dae60"/></dir><dir name="etc"><file name="config.xml" hash="8ea948903301aed5a1117e1ec2b52b7d"/><file name="system.xml" hash="bc4190c5898ffc674bf7ae552b14cc7e"/></dir><dir name="sql"><dir name="cron_setup"><file name="install-1.6.0.0.php" hash="4ac9e29af105f14c9ea6e0565eb21dce"/><file name="mysql4-install-0.7.0.php" hash="3ba830a77c1d985f7a83fe0e008475e9"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="4d5d452d004acae9c2ace046afe0ad92"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="9008bddeb8e836fbb26f0c20aab65fdf"/></dir></dir></dir><dir name="CurrencySymbol"><dir name="Block"><dir name="Adminhtml"><dir name="System"><file name="Currencysymbol.php" hash="f47a77be4420bffac85f7d872e89f102"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="147a5a7af07ed0831da300c3f100c20e"/></dir><dir name="Model"><file name="Observer.php" hash="c6a9f862b406983ac0c3b4667998338b"/><dir name="System"><file name="Currencysymbol.php" hash="f43af0d9441283cb3583dfb25c9c72c2"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="System"><file name="CurrencysymbolController.php" hash="81843fabc7a4edeffb3c66a96f245111"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d406b1181fcc035d9e66f0478c772053"/><file name="config.xml" hash="9b618f0e516ffa912d7d6ba9ec4f7e93"/></dir></dir><dir name="Customer"><dir name="Block"><dir name="Account"><file name="Changeforgotten.php" hash="fced334ff0b4c476c421e8eb61ab898c"/><dir name="Dashboard"><file name="Address.php" hash="08fc3da5ef87ce0f3d3b6a49c6d6b96d"/><file name="Block.php" hash="7ecc346998aa07b344b488a1f68bcf3a"/><file name="Hello.php" hash="1577a3b7e668fb5eba42d771cee2a4df"/><file name="Info.php" hash="a28109d8c9e53d8df9c112fc6456c618"/><file name="Newsletter.php" hash="81eaf17f4451110516d15c1e9060a6df"/><file name="Sidebar.php" hash="78f7c1ecea5c5d84ffc9265ec682112b"/></dir><file name="Dashboard.php" hash="4ea7dc3f67fb46c8de31ac6dde8702a2"/><file name="Forgotpassword.php" hash="0954e6e8365b6f1bed1c8b5cfdb711c0"/><file name="Navigation.php" hash="2bb91a3fca4c66259eab57b299240a30"/><file name="Resetpassword.php" hash="ed4565c138a3ddc81e64fe6dbc84bd0a"/></dir><file name="Account.php" hash="afe508a80c28e23a4ecb1c3c5544a6b0"/><dir name="Address"><file name="Book.php" hash="5729c1d41ac620d29fbd2b7720f64c51"/><file name="Edit.php" hash="3ffd80fd5dfe6540383e8072433c6965"/><dir name="Renderer"><file name="Default.php" hash="fc8079a31280cb3e17e4955f002e9732"/><file name="Interface.php" hash="d66b89c20dd7ea78138f1f959cc0b901"/></dir></dir><dir name="Form"><file name="Edit.php" hash="d53369b67258ffabea416ab39348ae00"/><file name="Login.php" hash="0198cb1a7280263217b6c028c679ce8f"/><file name="Register.php" hash="cc64439d56326d315840b6bf8d50e151"/></dir><file name="Newsletter.php" hash="a1c95a95a4498fc1544da8b9060e85be"/><dir name="Widget"><file name="Abstract.php" hash="9f8810def5e03f41ca7bfbc6d029538f"/><file name="Dob.php" hash="cccffffa3c36c6f37cf7db02dc5e7cc9"/><file name="Gender.php" hash="20a92e9abae465f22df00485388e7ec2"/><file name="Name.php" hash="44e46d85ffc1aadf9584aadefb9a623d"/><file name="Taxvat.php" hash="5b6a1aeb9ea9eabc7a2202464c56e0a5"/></dir></dir><file name="Exception.php" hash="334d5017aa3ad32335b631affbf8b194"/><dir name="Helper"><file name="Address.php" hash="2d3a7d87871f4c022b6f5f531cf1f8ea"/><file name="Data.php" hash="10513c8d44c1f203ac836573cff34b66"/></dir><dir name="Model"><dir name="Address"><file name="Abstract.php" hash="5d9dee72eb717beae28d1922c057a11b"/><dir name="Api"><file name="V2.php" hash="266ad678cd335ba60c1af1da19f22bf9"/></dir><file name="Api.php" hash="a03cc80ec147566fcff37dbf64faab06"/><file name="Config.php" hash="80d39631075023919039fd1c57ba6669"/></dir><file name="Address.php" hash="fdd7f0519a98d5b0254d3fec6f21665c"/><dir name="Api"><file name="Resource.php" hash="a3ca3939facf9676e07572b2e0e2b1b8"/></dir><dir name="Api2"><dir name="Customer"><dir name="Address"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="0c688ce090e3d27195058d7d498dbede"/></dir><dir name="Customer"><file name="V1.php" hash="5234f6e89921abb1805b252a2f191545"/></dir></dir><file name="Rest.php" hash="b8d40fa6226e0a1de076a2dea49e7d8b"/><file name="Validator.php" hash="57a2007eca992a01d27ee93844ef1c83"/></dir><file name="Address.php" hash="aaa3e23cf5369a422c7dc7f60fe988f0"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="5b2113835c16750e3496a5f5fb1f5ae3"/></dir><dir name="Customer"><file name="V1.php" hash="4405dc245188874865c837f9558b3082"/></dir></dir><file name="Rest.php" hash="5ed64554ea1364509e0cf89288c04208"/></dir><file name="Customer.php" hash="bb6e0e4c5c2d5bfc28516547e6e61b64"/></dir><dir name="Attribute"><dir name="Backend"><dir name="Data"><file name="Boolean.php" hash="4ac8df716d7f38367d6dbe49e72052e2"/></dir></dir><dir name="Data"><file name="Abstract.php" hash="1867ecd751e10de5d28f4acf3459b1eb"/><file name="Boolean.php" hash="58e453aa57b80ec5e9372436ebaca1d6"/><file name="Date.php" hash="8452492f198664592e3e7a86aae0d9ef"/><file name="File.php" hash="d28febe339b50dbddaab12ca9b8cca4e"/><file name="Hidden.php" hash="6d33bce9cf131d228af61789be63cef0"/><file name="Image.php" hash="fdc9ced5bcab3f489d4d23db1c145c81"/><file name="Multiline.php" hash="475699822544385ca3dcc69e76fa13ba"/><file name="Multiselect.php" hash="cdc75f0b1ab1ce27dadb82349be079b6"/><file name="Postcode.php" hash="6a5bf54cf10fc54829effc31a63a72a2"/><file name="Select.php" hash="4d3809b46c33a1db0853ff6094d0e834"/><file name="Text.php" hash="fc8c36ddfdf5332a5d992b17a816c318"/><file name="Textarea.php" hash="fcd0ca5818876ddb39402575783eeebf"/></dir><file name="Data.php" hash="be5db892203623727253be6c7b993b88"/></dir><file name="Attribute.php" hash="4c616f072194b568dfa6dbcf2c9a28cd"/><dir name="Config"><file name="Share.php" hash="48d6a459edd906fa4433a8c7eb18bb53"/></dir><dir name="Convert"><dir name="Adapter"><file name="Customer.php" hash="d2eae522d3ca91753fbc3e29ddc1299f"/></dir><dir name="Parser"><file name="Customer.php" hash="beae99d9a77e453b1190adfec0750a3d"/></dir></dir><dir name="Customer"><dir name="Api"><file name="V2.php" hash="aa2436ca33afdaae7bdf096fc511b942"/></dir><file name="Api.php" hash="19f6a519c966b04198379abe62639baf"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="faa9c2539bbf7b7a74b943d00caa708c"/><file name="Password.php" hash="d0393528b65c863a25de9175c9cf0784"/><file name="Shipping.php" hash="b68a9d6f1736be20b4ed6a21a6d0b49a"/><file name="Store.php" hash="2e69bab09b526a69a49a83b3c0cce498"/><file name="Website.php" hash="4334601d447e0fda794cec9dce34da7e"/></dir><dir name="Source"><file name="Group.php" hash="98360127300b5e9809144987e61a0264"/><file name="Store.php" hash="4abe85c31478e7fa194d4c2c98fc66a7"/><file name="Website.php" hash="2618b2a43a90336eec9ca4e84e20c2a5"/></dir></dir></dir><file name="Customer.php" hash="415ef1ba5874495e1af03ce6532157b1"/><dir name="Entity"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Region.php" hash="1e8b5f5d46a5ad344f18f856dbc86a53"/><file name="Street.php" hash="f3eb2077afa392b82939a7d33058ad81"/></dir><file name="Collection.php" hash="d3ec4db3da89f9371c49196ff87d9cab"/><dir name="Source"><file name="Country.php" hash="ac1d2569e723fd3324242a1ab4c05849"/><file name="Region.php" hash="e4e8342efe2fd0b38294f3788e1bcbbc"/></dir></dir><file name="Collection.php" hash="05ddc8ad4046b66ef051b52d44fdd1e6"/></dir><file name="Address.php" hash="9ca25098a2ce67cc50d1f0c0bf492f32"/><dir name="Attribute"><file name="Collection.php" hash="b1bb2d740a7c345c0c46ecafa70167bd"/></dir><file name="Attribute.php" hash="e1b8d57fa9b3d802ac0ad6ff895b98b0"/><dir name="Customer"><file name="Collection.php" hash="c23343549f1e667660861a73fbe3dc19"/></dir><file name="Customer.php" hash="9cd6abf273d7d3699ee02f49569d327e"/><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="ef67e77017f7db0946f21874e3ebc711"/></dir><file name="Attribute.php" hash="618a8aff4746774c556906e2dbb56dc0"/></dir><dir name="Group"><file name="Collection.php" hash="e06ab66c1fc6b016a8cdc6e39fee5ab0"/></dir><file name="Group.php" hash="45fb0fbbe8e357fe6f26ae1cbf31b77f"/><file name="Setup.php" hash="33c38b117ba9aa195bb79504b56ae25c"/><dir name="Wishlist"><file name="Collection.php" hash="354fb025a63f5b3026f690cb4442ab9b"/></dir></dir><file name="Flowpassword.php" hash="aee79bea3f86395824b27d7d6ca93f50"/><file name="Form.php" hash="d5f1aa9224be4aa721771b8fb65e7abf"/><dir name="Group"><dir name="Api"><file name="V2.php" hash="5bdbdfeb06ce9a196eb712fefc9c402b"/></dir><file name="Api.php" hash="6d92e16c176002b84361ac07832bffb6"/></dir><file name="Group.php" hash="7cc8f0dd768aba328ee3564cbfecaf31"/><file name="Observer.php" hash="9758d692c88270f13c25e555ce4346c0"/><dir name="Resource"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Region.php" hash="0d9f0d30f70655765bed01b63d96d9b6"/><file name="Street.php" hash="04a83b26c53aa80ab01c1aafbb796ea1"/></dir><file name="Collection.php" hash="637774f2478002e6ee054df43bcc379b"/><dir name="Source"><file name="Country.php" hash="71a2b37a1748851c0035f809e0bdfe89"/><file name="Region.php" hash="844de0dca956ee491723b7902228fb04"/></dir></dir><file name="Collection.php" hash="36dce3f02858cf7a208cb5e1725aa97e"/></dir><file name="Address.php" hash="9903c920d224421684fb7bd93a7781a5"/><dir name="Attribute"><file name="Collection.php" hash="db7bbf94e78302488fde013cfacd9e98"/></dir><file name="Attribute.php" hash="eb31a55d0a28cffe6bc03e05df1ed514"/><dir name="Customer"><file name="Collection.php" hash="5c3207823fed1f27990d26cf0f8f3d2c"/></dir><file name="Customer.php" hash="78f73dd318200e4c5a07a766d63b7c68"/><dir name="Flowpassword"><file name="Collection.php" hash="ba8c62785415537ac758c04cf37289e7"/></dir><file name="Flowpassword.php" hash="337364917b9f7e2193d08b0518a7b4ad"/><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="d62fab14dc76f758829cef6a810df9d8"/></dir><file name="Attribute.php" hash="d7a7296e899066d4fc01b6f2a56f4db8"/></dir><dir name="Group"><file name="Collection.php" hash="5afd75ae771a976b601f81dafbbcec87"/></dir><file name="Group.php" hash="b7a915449ed7749c86b0ad1ce6ff0585"/><file name="Setup.php" hash="e9702ba3b32f695e2a2d99b31448ce85"/><dir name="Wishlist"><file name="Collection.php" hash="5a0c9faad27c135369581b4c329b3843"/></dir></dir><file name="Session.php" hash="49a0f51d836465a95c0d1879519ad6b1"/></dir><dir name="controllers"><file name="AccountController.php" hash="a040da959746ebea9bd0eaae566f9ce8"/><file name="AddressController.php" hash="7aad194cd62fe564653be015222e0081"/><file name="ReviewController.php" hash="508c3a4932ad2b216fc78ff8a701d6f5"/></dir><dir name="data"><dir name="customer_setup"><file name="data-upgrade-1.6.2.0.2-1.6.2.0.3.php" hash="2bc893a5f3d9baf672cf84e8c913567c"/><file name="data-upgrade-1.6.2.0.4-1.6.2.0.5.php" hash="d244bf5a02f26e562324a548a2fbcca5"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="50849c1982934971d289b35dc3ecd0a4"/><file name="api.xml" hash="3ea62419ec25f6ad40d443166c628740"/><file name="api2.xml" hash="47711ce85c8d796ed91d265c6d460469"/><file name="config.xml" hash="134f43d37be148cada304bcb116b84e5"/><file name="system.xml" hash="1e1e4f8aea51ef3c6e6b6171ce76db40"/><file name="wsdl.xml" hash="b31ebf1de4a58469781b383f455991f5"/><file name="wsi.xml" hash="4c81aee30c525677be5c38e078b98408"/></dir><dir name="sql"><dir name="customer_setup"><file name="install-1.6.0.0.php" hash="c6722d28dacef27ab29b643f758ef193"/><file name="mysql4-data-upgrade-1.4.0.0.11-1.4.0.0.12.php" hash="ef5abe9941b9b1a0c895f5fa2b1f0aea"/><file name="mysql4-data-upgrade-1.4.0.0.13-1.4.0.0.14.php" hash="d44a1e3efa2cd3fc388c207917821570"/><file name="mysql4-data-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="2c91627628c1339f5cebf10890a38f2d"/><file name="mysql4-data-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="e49b632aca5e28a67293c325126a0409"/><file name="mysql4-install-0.7.0.php" hash="d8dcd4d5094da2f12e692ece42d88127"/><file name="mysql4-install-0.8.0.php" hash="0d3fbb7ed5c62178e222485988d9e7b5"/><file name="mysql4-install-1.4.0.0.0.php" hash="138bdb5365d60a33117ac3478aa9f85f"/><file name="mysql4-upgrade-0.6.1-0.7.0.php" hash="7c1fd0262a63c8ff50b79e001083f7a1"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="363e9b57cd3696b36f431f085752b5d8"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="021c527478a0ff9af0baf7ec3df02f4e"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="2c8c202d1ec6e3c1ae311b7f8e9f3463"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="6f0b05e3e4874f5eaca3a05a8d60b896"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="4628af77d20620d7560e13a6bd669472"/><file name="mysql4-upgrade-0.8.12-1.4.0.0.0.php" hash="36c583e090c0a00072dc6f0bbc63f5ca"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="0e6780ab9ffb88582b6380835eae0995"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="54566539dc7db512ee378323de4bf19b"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="a88dc9d5df61e4f1c35ca05aac6ae861"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="65ba249ca2d34310acecaf58a90c730a"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="faf1b1cc527fded99a6daf08abeb7eb0"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="f4c7bda051fd88c4ddc9dfd2bd561e21"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="2c281af9f5d3c7d765e0e811c737ae95"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="034ba91d9726928771e871b07577b8fb"/><file name="mysql4-upgrade-1.4.0.0.10-1.4.0.0.11.php" hash="8d674f068cc86cb857728b8b6fb08622"/><file name="mysql4-upgrade-1.4.0.0.12-1.4.0.0.13.php" hash="61c185677d57da12a970d22ddb05f05a"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="04f55ef4393d258f5a55e0028a9931f3"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="e637abb3ec729c7d5a823cd7a4aff962"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="c42b6bd2019102e3131ea7f540c50b6d"/><file name="mysql4-upgrade-1.4.0.0.6-1.4.0.0.7.php" hash="2b9caa7eda59e0d4450dedbb36b87cd8"/><file name="mysql4-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="001e91ba0859756ba7048bae6b38cc1c"/><file name="mysql4-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="b8786ebb55d6c1e0fc128d0e4da6ab2a"/><file name="mysql4-upgrade-1.4.0.0.9-1.4.0.0.10.php" hash="0b1efc85ae90a8caaefa357e4255ea82"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="e8b9f39275e935992bb92394b8d88a6d"/><file name="mysql4-upgrade-1.6.0.0-1.6.1.0.php" hash="239edb6475a8d43322ee37e6c93430f2"/><file name="upgrade-1.6.1.0-1.6.2.0.php" hash="ff896a7214ac40c54417217d57f8ed0a"/><file name="upgrade-1.6.2.0-1.6.2.0.1.php" hash="b297335d55acecbde135d6df95779463"/><file name="upgrade-1.6.2.0.1-1.6.2.0.2.php" hash="480c316c173021f5b6a3969c732aedf9"/><file name="upgrade-1.6.2.0.3-1.6.2.0.4.php" hash="7c8a6b2ad86df5b8af8fc57bc67d0fe2"/><file name="upgrade-1.6.2.0.4-1.6.2.0.5.php" hash="b9c2b754feef606a2e64651c44820ace"/></dir></dir></dir><dir name="Dataflow"><dir name="Helper"><file name="Data.php" hash="6465cd672c3f3b789f0ce68fe56ca210"/></dir><dir name="Model"><dir name="Batch"><file name="Abstract.php" hash="a72b30a0f7f2dbd2355cc9ab7a065fc0"/><file name="Export.php" hash="2a347c5b937768e63d94a291f4c6ee8c"/><file name="Import.php" hash="8609cf6fe2ec5e47113bfd892475f99c"/><file name="Io.php" hash="3b4e1278ab16b6cfa9abff8507f46063"/></dir><file name="Batch.php" hash="4c44c87c6a834e0f58efd26fed42a2c8"/><dir name="Convert"><dir name="Action"><file name="Abstract.php" hash="2438ed004179ffa108a63d5e2f222236"/><file name="Interface.php" hash="733da76667237922d6d449a3b69ae435"/></dir><file name="Action.php" hash="6cfe1a8b8d52145278b58895236b52be"/><dir name="Adapter"><file name="Abstract.php" hash="58e1fdd534d4f3f76d8fe1d865b60f86"/><dir name="Db"><file name="Table.php" hash="53e10c1ac23116f8c6a6ddbde64a1f9e"/></dir><dir name="Http"><file name="Curl.php" hash="744b8a2b86864abfea92b71725fc8820"/></dir><file name="Http.php" hash="d1ea66edc722b8accd19b0adfbd7d11c"/><file name="Interface.php" hash="11052c6a192dd467f389fe7ac6b84e85"/><file name="Io.php" hash="8c0296ddbbee95bf24aae0bcb78eea80"/><file name="Soap.php" hash="ca3e6862b566aeb5581f4344f3d621f6"/><file name="Std.php" hash="2d58df33c9796d6b046bb20c966054f7"/><dir name="Zend"><file name="Cache.php" hash="fcd406583fd02b7c8be74cc7843e6b95"/><file name="Db.php" hash="a85645a65ced26200c5525f15b8119e0"/></dir></dir><dir name="Container"><file name="Abstract.php" hash="f1802b2e4c92ec8877317fb50111f2c3"/><file name="Collection.php" hash="38380862831c2305259d46abbf41aa43"/><file name="Generic.php" hash="739a1e2be58f1870eda3f31b834a1823"/><file name="Interface.php" hash="fef9bc1ba0f04e432cdff336660ffc20"/></dir><file name="Exception.php" hash="d2d901bbcbf10a28df208dcd1a1980a8"/><dir name="Iterator"><dir name="File"><file name="Csv.php" hash="043ee74f2fceaef1af9170ec825d70b5"/></dir><file name="Http.php" hash="4727281da701bcae4d2f46982db9c980"/><file name="Interface.php" hash="2e6f3b56123eb3cffbc19c548dcfdafe"/></dir><file name="Iterator.php" hash="3a915c5742dcf64bc1f2d91626b9b0ee"/><dir name="Mapper"><file name="Abstract.php" hash="a786dee51483da6557501bf1673fd5d4"/><file name="Column.php" hash="0d247eb378c928e90f80a496b0388730"/><file name="Interface.php" hash="4bbf145346856b2c9f282fa2825f424b"/></dir><dir name="Parser"><file name="Abstract.php" hash="ef292d2447ef56d86ed9534aae6b3fff"/><file name="Csv.php" hash="7ecf34f0a9cf2bf9438e84a49e68c890"/><file name="Interface.php" hash="dadb9f463b43f28640e4708a4d866a50"/><file name="Serialize.php" hash="60e5ce469511bca43d4a89254424e823"/><dir name="Xml"><file name="Excel.php" hash="8ff8502bbf1565b2b25dcc2ff090197c"/></dir></dir><dir name="Profile"><file name="Abstract.php" hash="20b74ec5332d569fc3afc25fd4376f12"/><file name="Collection.php" hash="588af8f423060628544b544013ce1b47"/><file name="Interface.php" hash="ec1304f19b742cbf5229890d2a8fc226"/></dir><file name="Profile.php" hash="8812c4fc43739ace2116ab49c5d47806"/><dir name="Validator"><file name="Abstract.php" hash="c6f104eff1b82659a4d36d4de5eb3891"/><file name="Column.php" hash="76ce0db2dfa4136b77398245390d13f0"/><file name="Dryrun.php" hash="2fa547ec5aecf1a736f9877b00f75848"/><file name="Interface.php" hash="ed4f54c6508ce31a19f449cf527132ae"/></dir></dir><file name="Convert.php" hash="1a118785cfee26e0249652922fb3fa6f"/><file name="Import.php" hash="c4125b22472e8edb07aaf55a499201ee"/><dir name="Mysql4"><dir name="Batch"><file name="Abstract.php" hash="3aa5d4c54262bfbf463b7b2e90e6a0ca"/><file name="Collection.php" hash="9ea3700a10c5e6e85006c9d63a45b4e8"/><file name="Export.php" hash="5df742225ff7f0cb3c2530248a345b28"/><file name="Import.php" hash="fe2b0f2f6fc0bddc67825793ad13afba"/></dir><file name="Batch.php" hash="3803aa35bc8f1772737d21f0d65f6e07"/><file name="Catalogold.php" hash="0e023972193f136cebfde36252fa2c4c"/><dir name="Import"><file name="Collection.php" hash="7722967ae22783fe92f27e55e90de1ff"/></dir><file name="Import.php" hash="eb5d31c548d4eddbf751b208da673050"/><dir name="Profile"><file name="Collection.php" hash="ab4e4ad47794284cba12a444d7f3f495"/><dir name="History"><file name="Collection.php" hash="ee4193e87158ffceee49a1449c7bca99"/></dir><file name="History.php" hash="964aa735b3fd1ba3a06632ca19d28eee"/></dir><file name="Profile.php" hash="94be3bfa9c5f1a175fc6ee5d60e5ee65"/><file name="Session.php" hash="f8795a0c5817f0809c11f19ea5df5cf4"/></dir><dir name="Profile"><file name="History.php" hash="755a5ed8dd4c1b25f237fb1598b82c7d"/></dir><file name="Profile.php" hash="0f50de57e9866953aed96146620ac59f"/><dir name="Resource"><dir name="Batch"><file name="Abstract.php" hash="11746a73dbf367baddc49c98ee4bcd04"/><file name="Collection.php" hash="82529698919888159989a4595e4bdba4"/><file name="Export.php" hash="f41c179fc4ee246cb750f7c8d43df57f"/><file name="Import.php" hash="a0fcb8df641d15a8dd39009544e19447"/></dir><file name="Batch.php" hash="fcc5b78df2ea986e82415fe9e8e246ec"/><dir name="Import"><file name="Collection.php" hash="65eafb61a50696e1f399cd3a2f01030f"/></dir><file name="Import.php" hash="35a2c1acb655ff0c76c330114462fd25"/><dir name="Profile"><file name="Collection.php" hash="baca3a6c70f7ae2717341a6742db7782"/><dir name="History"><file name="Collection.php" hash="f689357486f341ee846696b278221fe3"/></dir><file name="History.php" hash="655b62bbe1d2eb9bbc4fbf34b1a272b2"/></dir><file name="Profile.php" hash="063582cabd6ad164def62f04205cb245"/><file name="Session.php" hash="773fef3cc64d0d4a9d2438125d2f6e6a"/></dir><dir name="Session"><dir name="Adapter"><file name="Http.php" hash="6f3b7442403f2d17c462d0f6ebc6486f"/></dir><dir name="Parser"><file name="Csv.php" hash="222ce10f61da341c9ca849bc2f8145d7"/></dir></dir><file name="Session.php" hash="dd3e356428c1f99f97906eb168dd5f33"/></dir><dir name="data"><dir name="dataflow_setup"><file name="data-install-1.6.0.0.php" hash="e071429f47116a98b169da9819c35640"/></dir></dir><dir name="etc"><file name="config.xml" hash="2e118dec7181a8e54eecd6476d20b1cd"/></dir><dir name="sql"><dir name="dataflow_setup"><file name="install-1.6.0.0.php" hash="16396d55ee8be825295fe63d5d89df7b"/><file name="mysql4-install-0.7.0.php" hash="1a3e64911829e084e4523ed8e02ed41f"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="6b7fb755e32fbdb7b0a8b8e2d07a8ea2"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="c38208cf5ed155921e0294d9149afa27"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="b51f71e9fd234db0af7ff97c442af60e"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="e3d3aaa974b011cb94c2ad7a5e026cdc"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="6d8690664c883cd6be731ebc8bce9894"/></dir></dir></dir><dir name="Directory"><dir name="Block"><dir name="Adminhtml"><dir name="Frontend"><dir name="Currency"><file name="Base.php" hash="3df3b6aaceeac2d31ceb35688be211cb"/></dir><dir name="Region"><file name="Updater.php" hash="fa6d4e9f133a8477fb646dae7aa7e4c8"/></dir></dir></dir><file name="Currency.php" hash="1410e677f27c3583f211be2d85a2149b"/><file name="Data.php" hash="c909b4874ea35549661d47ee2c1d921f"/></dir><file name="Exception.php" hash="453781dee8161d7b895ba3b1b0899ed3"/><dir name="Helper"><file name="Data.php" hash="aa37d979e53ded8d6ed9d432e6def025"/><file name="Url.php" hash="9e2d3271ce5db109658ee9f773db2fe0"/></dir><dir name="Model"><dir name="Country"><dir name="Api"><file name="V2.php" hash="afc6233ae08cfd5f08f8af38dfadad2a"/></dir><file name="Api.php" hash="c9307a174e99bb73fd7721d0cc15d628"/><file name="Format.php" hash="549856f02db55e157ce7cc937dd5795c"/></dir><file name="Country.php" hash="f47612b251ae4076df80ba085b1a00be"/><dir name="Currency"><file name="Filter.php" hash="3e3723b4af1bb35a6742a5ef2c019cd1"/><dir name="Import"><file name="Abstract.php" hash="3a1c5f29cca4389e86d6cebbe4f7be52"/><file name="Webservicex.php" hash="dea261da8bc1c2ddb0f00813a7d62754"/></dir></dir><file name="Currency.php" hash="f24df11a73ec1ac000d4ee91fe4cccf4"/><dir name="Mysql4"><dir name="Country"><file name="Collection.php" hash="490fcff8cc039c4a882d3e3b39ac0b3e"/><dir name="Format"><file name="Collection.php" hash="0f58e5a9fa3243c66db014d768a98da0"/></dir><file name="Format.php" hash="1b5b0f7deb5ec7a20a428d3c9a51cec5"/></dir><file name="Country.php" hash="23ff3d527006e79be8d941145374b004"/><dir name="Currency"><file name="Collection.php" hash="7418fb72c4b329862657fea893873e32"/></dir><file name="Currency.php" hash="8e9d26aad2bafd54bfab262341b89840"/><dir name="Region"><file name="Collection.php" hash="003d2e43eab9416cc832faaae38d445e"/></dir><file name="Region.php" hash="ac20fa937cd177b663e7acab340b7f4a"/></dir><file name="Observer.php" hash="66dfc096ba692f66d368654743204f2f"/><dir name="Region"><dir name="Api"><file name="V2.php" hash="da3f09a99c24d056d3461b600884f039"/></dir><file name="Api.php" hash="13196b7ad957235c9d4d80744baacc3d"/></dir><file name="Region.php" hash="5f11b838130796d0c106ef14e9a101ba"/><dir name="Resource"><dir name="Country"><file name="Collection.php" hash="ced5dce56f137888a778c307244eadf4"/><dir name="Format"><file name="Collection.php" hash="69cb0e29571bd557c535465669d45e66"/></dir><file name="Format.php" hash="801e9aeb9fcac19129e86aaf6c742bd2"/></dir><file name="Country.php" hash="d6826020474e1e50a9f7d616110c1eed"/><dir name="Currency"><file name="Collection.php" hash="4d6afb22b96acf37ac4f67a6326166b5"/></dir><file name="Currency.php" hash="24f10a37fe14475176ee98163b700344"/><dir name="Region"><file name="Collection.php" hash="57023acea67abf21b68492953657446c"/></dir><file name="Region.php" hash="bc8800af3d7e35e91fa90f2b553d9a91"/></dir></dir><dir name="controllers"><file name="CurrencyController.php" hash="35bb0925782ebd04e4943ab84951b0a3"/></dir><dir name="data"><dir name="directory_setup"><file name="data-install-1.6.0.0.php" hash="449178d272d3d195a1cbb6fc539a19d7"/><file name="data-upgrade-1.6.0.0-1.6.0.1.php" hash="8e186141736e15ee67ac6666545fed8d"/><file name="data-upgrade-1.6.0.2-1.6.0.3.php" hash="e0f4e5efad915f8bd637815adb08569a"/></dir></dir><dir name="etc"><file name="api.xml" hash="a8c3af31971871f3375af3bed83efb86"/><file name="config.xml" hash="74e76d5a9efb3fee78fc4c625c294ab6"/><file name="system.xml" hash="184976587366b082639fb50d529be1ee"/><file name="wsdl.xml" hash="cc488b81c0eae648a0ee360d6e2d9960"/><file name="wsi.xml" hash="66de37cc17e24c0c66f74c52e2df616e"/></dir><dir name="sql"><dir name="directory_setup"><file name="install-1.6.0.0.php" hash="96c305524970800bd33dbe4fde4fc024"/><file name="mysql4-install-0.7.0.php" hash="42cf2e07bdba83c4a27ef841f02cf584"/><file name="mysql4-install-0.8.0.php" hash="44a9bc17d349599c2f6ff1a4b2007846"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="0959ae732181c61075a30c10e25ef9d0"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="32c7d7431d0eb0edeae4ee12ee8e4330"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="4a159005aafdf056c758c1f2dab6b6e5"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="112a839147f190e708ac455635a889ea"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="4506726831a1d03b8207430506e602cd"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="f88e75dc363e65884f3c048e7ffc0923"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="20244a13eae58dcc96177cee74fccfbd"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="8bd7e20943ffcf758a319bc15e9c3d05"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="bfbf0cf011d06e1e92bd31462ebcce0a"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="e86faf4aaa60d3c6594e6a86f00dcb7d"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="5d20a16495474937945473bac9216f5b"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="c2e580ccc38df1b269b211a97b6631f8"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="449b434a82d218c5247b29abc82af315"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ab1088a57c79f78a47f80873415e5804"/><file name="mysql4-upgrade-1.6.0.1-1.6.0.2.php" hash="990a1d52cb2fe443704da47a700b5237"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="8882e2847161262a97651fe455d3cb09"/></dir></dir></dir><dir name="Downloadable"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Composite"><dir name="Fieldset"><file name="Downloadable.php" hash="7358eefbe70ee183fff6b1a2704b89df"/></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Downloadable"><file name="Links.php" hash="a9ce2e6282195240d0a02688817f4e9c"/><file name="Samples.php" hash="1c7b91bec2db896a3f314db755b58a24"/></dir><file name="Downloadable.php" hash="f8b9ba9f21da82fdc42aca57b2342440"/></dir></dir></dir></dir><dir name="Sales"><dir name="Items"><dir name="Column"><dir name="Downloadable"><file name="Name.php" hash="ac478179897d1c38ed89186f2b96c6d1"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><file name="Links.php" hash="6f12867079f0056e33188a1781b26ce2"/><file name="Samples.php" hash="584482a2e01386e3e5adcdfebe777bab"/><dir name="View"><file name="Type.php" hash="3f08ab2df3b23f5cd17db5552eba2c3d"/></dir></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="5ccfcdb46c34c9b9156755ac704c5a08"/></dir></dir><file name="Success.php" hash="99e840479f116e644a35d9d216159b4b"/></dir><dir name="Customer"><dir name="Products"><file name="List.php" hash="be90199170ef5e92035c539a27929df4"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Email"><dir name="Items"><file name="Downloadable.php" hash="4c877a4a2d8b36d09606d16d9aff6c4f"/><dir name="Order"><file name="Downloadable.php" hash="6d1f06f133472f790e0b00c1e9bdf37f"/></dir></dir></dir><dir name="Item"><dir name="Renderer"><file name="Downloadable.php" hash="f52357f0c231d6ff9741fdc6ff165ea6"/></dir></dir></dir></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="d7d2ffc5fcd3d53a4273289cdf6921b3"/></dir></dir><file name="Data.php" hash="07eb756ae74dfa62fd3bf51609d4d4a6"/><file name="Download.php" hash="3c298ba201ccc8d74bc52c2e49390af8"/><file name="File.php" hash="d38bd38baf4d6ac7028f9916c109027a"/></dir><dir name="Model"><dir name="CatalogIndex"><dir name="Data"><file name="Downloadable.php" hash="125f7269d544ba02f6655baa197f4473"/></dir></dir><dir name="Link"><dir name="Api"><file name="Uploader.php" hash="9746c685682eb407d254a2465886b4a3"/><file name="V2.php" hash="991ca71de9dda0bea63cc0cd33ef9daa"/><file name="Validator.php" hash="062a30a7333c11b09b71ee717a328731"/></dir><file name="Api.php" hash="9b300c79df89089057c7bdf443919b1e"/><dir name="Purchased"><file name="Item.php" hash="594d6579858a2b03be09fcae48e919c2"/></dir><file name="Purchased.php" hash="a4f94fc05023dca72a2a604892446c16"/></dir><file name="Link.php" hash="694fe1ab9a01117859c6d5eb125ad60e"/><dir name="Mysql4"><dir name="Indexer"><file name="Price.php" hash="8b811e5db6b18e60eff2b867aa535f2e"/></dir><dir name="Link"><file name="Collection.php" hash="60724c4412e2745d17770867f6136310"/><dir name="Purchased"><file name="Collection.php" hash="15568a7cf224010ec291774a3aa455d7"/><dir name="Item"><file name="Collection.php" hash="19e24646e835c28b1b48edea775b85fc"/></dir><file name="Item.php" hash="b2988c475c696f3d23346dd4ee4135f2"/></dir><file name="Purchased.php" hash="f4005b7a02cd00de35ae48f249373fca"/></dir><file name="Link.php" hash="ca2faf7ecebc50591c1bf629d75206a7"/><dir name="Sample"><file name="Collection.php" hash="2941b96e46a0d3371c4af2e3466c779f"/></dir><file name="Sample.php" hash="793b63049588a8f428f288fbfee5d383"/></dir><file name="Observer.php" hash="c2de9729f8c6eda48909ebed3700d321"/><dir name="Product"><file name="Price.php" hash="037cc3a2002e5a88fb7a058ce69d5b22"/><file name="Type.php" hash="62299715d7e4dc49cceb8e0fab2a3ef3"/></dir><dir name="Resource"><dir name="Indexer"><file name="Price.php" hash="7bcb28ca3896a121f3fb2822c097ad76"/></dir><dir name="Link"><file name="Collection.php" hash="1ac5104d02a0f70f31164c1daef776d3"/><dir name="Purchased"><file name="Collection.php" hash="75c749171a918e324c290fe466540cb1"/><dir name="Item"><file name="Collection.php" hash="439f6d97c98306cd8d5eb1ba41e73f3a"/></dir><file name="Item.php" hash="006ec93b3aed51e5f19c9919cb4ef97d"/></dir><file name="Purchased.php" hash="0441d43b422ec40025ef75acabdacb86"/></dir><file name="Link.php" hash="d05c0bd3eda5e6f29879afa45ac75c30"/><dir name="Sample"><file name="Collection.php" hash="a5bb7f15c1bde679a53a0ee8ed712b42"/></dir><file name="Sample.php" hash="91bf983e907eecbb76965a7c392b9020"/></dir><dir name="Sales"><dir name="Order"><dir name="Pdf"><dir name="Items"><file name="Abstract.php" hash="272c182a0a9898fceddebc88df8c1b05"/><file name="Creditmemo.php" hash="6490db251da913698d88f4197d6a09d5"/><file name="Invoice.php" hash="7ad07c0b6573103c7cea924be44579d5"/></dir></dir></dir></dir><file name="Sample.php" hash="a1edf7159521eb4b34a1b4031ba1c091"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Contentdisposition.php" hash="e722e6c4fee62f44ed6eeecaa501e38b"/><file name="Orderitemstatus.php" hash="b3d1a82bbb57611c7adda7e58783385c"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Downloadable"><file name="FileController.php" hash="e9308d58b8f4264a784b19151a76babb"/><dir name="Product"><file name="EditController.php" hash="0969a4037610b06894afa3b4cbbd7f56"/></dir></dir></dir><file name="CustomerController.php" hash="1ddd6baf02a69a69975de56e17a01940"/><file name="DownloadController.php" hash="83756594be03b31dbf6d23f569fe70ec"/><file name="FileController.php" hash="c8e35419fe8ba798b09e1e9cebdedc0a"/><dir name="Product"><file name="EditController.php" hash="70913c9ac3ada8a871d54c0a4f681746"/></dir></dir><dir name="data"><dir name="downloadable_setup"><file name="data-install-1.6.0.0.php" hash="b14b0b3975296dab7f22c9eb3a9a0b05"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ae491bc8ec858cca1e75cb3e8c5f2b17"/><file name="api.xml" hash="bbe19285b70034f9d5e27f0fda6cb3ae"/><file name="config.xml" hash="b1854a9ecf6b790247072bf98573fbe0"/><file name="system.xml" hash="c4960eb43b0313ec2f48cc2f3565d3c2"/><file name="wsdl.xml" hash="b3935ff3bf7e2ca40ddd304b4c78577f"/><file name="wsi.xml" hash="7eef36b29c2abf88596e63b6a042626d"/></dir><dir name="sql"><dir name="downloadable_setup"><file name="install-1.6.0.0.php" hash="beb734081bb4155a9cb7f553e69b594c"/><file name="mysql4-install-0.1.0.php" hash="7ce2cf98b69fbfba519760dc52e80459"/><file name="mysql4-install-1.4.0.0.php" hash="23dc8c45995c1e29783cd4cb2a9b45d7"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="935c425258ea38e53750b2c29d4f8963"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="fe155b21566d67a442234b6e79eb5adb"/><file name="mysql4-upgrade-0.1.10-0.1.11.php" hash="49d09f81d946f2adb1c85d9df82ef2b0"/><file name="mysql4-upgrade-0.1.11-0.1.12.php" hash="ea206eb1a90b9f69d218f67061f333d6"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="1ff853acaa6a28fd9b4bdaf29514ca0f"/><file name="mysql4-upgrade-0.1.13-0.1.14.php" hash="04bcdb5db567384f5f5730e515860f52"/><file name="mysql4-upgrade-0.1.14-0.1.15.php" hash="f0881b027d876ba04ee199cc78cf526c"/><file name="mysql4-upgrade-0.1.15-0.1.16.php" hash="57216ec34addd7ee5c7eaec22ec2c27f"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="7661dc81d863d694545619cc29bb5eae"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="590fa44959f6f7eee97b3ed60f457f79"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="c48d705fd46c240333b9714d285608ff"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="954022ed0f417fc88563f7714b837002"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="47f79b65ee08a98d9a2384ee272b6115"/><file name="mysql4-upgrade-0.1.7-0.1.8.php" hash="08329ddb5b63676cb1ec21c54d656b9c"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="c6f922e771296d9825ed6ac46baf201e"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="4959673a9ecfd8101537611c2196389f"/><file name="mysql4-upgrade-1.3.9-1.4.0.0.php" hash="9a05f94ff39ae21bf150a5de0c989000"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="9ffbb8d7bb6bab9522c8d973cc1c3a7b"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="9c21c4304bb549da8bf45ef68d2eb955"/><file name="mysql4-upgrade-1.4.0.2-1.4.0.3.php" hash="959e73c2831f1beba3b34283dd9080ae"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="22ff9aa1fa9bed6cd198f6c363bdebd0"/><file name="mysql4-upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="721d09be119a9721f79cd7b1616937ce"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="d98e8b797596118339ad1f7d1d11a56a"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="3334037f3df011313b4cc5567d6cfa1a"/></dir></dir></dir><dir name="Eav"><dir name="Block"><dir name="Adminhtml"><dir name="Attribute"><dir name="Edit"><file name="Js.php" hash="e0bba2d57c4540d7195297cdf88d2bd6"/><dir name="Main"><file name="Abstract.php" hash="457a084c10be074a8c774f997d9ac8e4"/></dir><dir name="Options"><file name="Abstract.php" hash="b4f11e7d20dbfe0c6869e8eea80dfb1f"/></dir></dir><dir name="Grid"><file name="Abstract.php" hash="a2657b40ee26194898ae39afc02947cc"/></dir></dir></dir></dir><file name="Exception.php" hash="ba78eaacf2dc82c3cffe9548d50747f3"/><dir name="Helper"><file name="Data.php" hash="6d1932a60c28de1ecd04570ca364eaa3"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Inputtype"><file name="Validator.php" hash="a2675fe89ef6f342922029238f2ea5c0"/></dir><file name="Inputtype.php" hash="4afc8da40c91a9f47b55c03ceac7990f"/></dir></dir></dir></dir><dir name="Attribute"><dir name="Data"><file name="Abstract.php" hash="306fcd0c0607ac616612120f9c77d287"/><file name="Boolean.php" hash="18858a47815608071999b0b5ca1165c3"/><file name="Date.php" hash="6769356dbf884bf768ee06a318aa44e2"/><file name="Datetime.php" hash="df486c8eb6af383ad7804695e91efff1"/><file name="File.php" hash="7cead2c01b8e44a125d763e865fbdeb3"/><file name="Hidden.php" hash="24980022dd521fb150ae8c538786fbbf"/><file name="Image.php" hash="c4d430baccc315f46a45b99c3a4bf9be"/><file name="Multiline.php" hash="faf0756527157bbb78ac40d08f0e6ea6"/><file name="Multiselect.php" hash="2732b3248b01aee3f10fb501cd01e6c4"/><file name="Select.php" hash="f1bcb979195337a74e5cfdb282551cd3"/><file name="Text.php" hash="c9d2dc2235eb7170bfa1cf0b5d9a203c"/><file name="Textarea.php" hash="80ec9bc40d0b8cc4f0c4fb597d2819f1"/></dir><file name="Data.php" hash="305a8daf73fe035215210e588ae6c8ad"/></dir><file name="Attribute.php" hash="4ace96e951c06dd07f00c390e870a60d"/><file name="Config.php" hash="c42f7c5fd927b3a5c64d7a7c34c4a6a5"/><dir name="Convert"><dir name="Adapter"><file name="Entity.php" hash="0ade841607bab74e7a483d455b9f52f9"/><file name="Grid.php" hash="7fc479f09d622aaaf52890c7d58cfc8f"/></dir><dir name="Parser"><file name="Abstract.php" hash="8db62cb6da63d23daf851de36e320be3"/></dir></dir><dir name="Entity"><file name="Abstract.php" hash="1b3e6381322b675e379867450e961b14"/><dir name="Attribute"><file name="Abstract.php" hash="4453af18683a4f976e0482f8b22c5e49"/><dir name="Backend"><file name="Abstract.php" hash="aab703cc6b8cce7d9a8a8f118e5e7531"/><file name="Array.php" hash="99875b63f65864791260146ba38d3206"/><file name="Datetime.php" hash="e9d9857bff9668b2c652a9d6b9a16e4e"/><file name="Default.php" hash="8fbbfcbd555ebdd43d03bb958ff33390"/><file name="Increment.php" hash="4a0efac8a50f88f2b1d97fc86fb91fd9"/><file name="Interface.php" hash="6e0ed88de1bfdcf5bb4de9d64a945dac"/><file name="Serialized.php" hash="0c6e0dcc914fffe7ddc3d6d7090e0c21"/><file name="Store.php" hash="97409a22dc17d154d20ca68eb1f3864b"/><dir name="Time"><file name="Created.php" hash="42b416adf0c6918aeba35d9c27b249b8"/><file name="Updated.php" hash="240414877034fe485c7270a923935c58"/></dir></dir><file name="Exception.php" hash="1b3b6f8d415510f60ca92f8fae59876e"/><dir name="Frontend"><file name="Abstract.php" hash="24237f13ba4d0cc05b45103aa15052d6"/><file name="Datetime.php" hash="aae764ac16d26251acb7c4a948782102"/><file name="Default.php" hash="5c45d132eaa76426fb30c662fa161e0d"/><file name="Interface.php" hash="cfdc936f738438f302061440b520b68d"/></dir><file name="Group.php" hash="0aa9726a108e94b20a07365b28105996"/><file name="Interface.php" hash="3ceddd274b6274c99a51aa1f36a406dc"/><file name="Option.php" hash="9ee6bc3d4f689086b37b2ffc18b785cd"/><file name="Set.php" hash="e647755dae1f6158ef4c05ff9ca4c5a8"/><dir name="Source"><file name="Abstract.php" hash="85bb954a30e6e5789456b2041872fbc5"/><file name="Boolean.php" hash="7acdb80b01292956b92db947973b0cdc"/><file name="Config.php" hash="e9dec75fb6c8eb8726fd5039c3e2fde8"/><file name="Interface.php" hash="789df7c41a366fe4fc689c655d492a8d"/><file name="Store.php" hash="83cfdbed4e59a35f70996934da9c053d"/><file name="Table.php" hash="b641a1cbeedacfd68baca2ba7f05ecc9"/></dir></dir><file name="Attribute.php" hash="32b1110f5ac0bff0bf83fa1a9fc3c72e"/><dir name="Collection"><file name="Abstract.php" hash="1d7bc470b4508cb09a6fc7db7d651f15"/></dir><file name="Collection.php" hash="f33ad123504fcded784d6390769539cc"/><dir name="Increment"><file name="Abstract.php" hash="f967bb4fc23c850be7c268d50a7cea0b"/><file name="Alphanum.php" hash="f7a3e9c80bcefde59d531d46a6433fce"/><file name="Interface.php" hash="bb5b075e6e0f93b5294d8394e0f4c8cb"/><file name="Numeric.php" hash="a6df9348d7d018da95bbf66a2c8a3503"/></dir><file name="Interface.php" hash="4a2c904265bdf814ea5b3cdad22c615b"/><file name="Setup.php" hash="60425807abfee75f5949f0bdb758f407"/><file name="Store.php" hash="af4c09a4e20e7fbacb7deeac0e470bcb"/><file name="Type.php" hash="c94283878472673af91cc9c1d06332e4"/></dir><file name="Entity.php" hash="a354f3b0d015f164ac3af7292b617019"/><dir name="Form"><file name="Element.php" hash="f7e425204d55ac6395c0695b7a550bd4"/><file name="Fieldset.php" hash="6f911a1dd046a6c2d9429a0e42a7bdc3"/><file name="Type.php" hash="389f76edf7ae69afaa26be81d817e63a"/></dir><file name="Form.php" hash="1ad7a7957defd42a9fd071ad02b138a2"/><dir name="Mysql4"><file name="Config.php" hash="007e3a0c288d5a921a1d7ffbccd15c9c"/><dir name="Entity"><dir name="Attribute"><file name="Collection.php" hash="af2a8e18dec1095aeb8cd167f4084f08"/><dir name="Group"><file name="Collection.php" hash="63819ab574b2252fb3e36f4722c3bfe1"/></dir><file name="Group.php" hash="7f4daa758c746bcf7a35ba2fcca56aa8"/><dir name="Option"><file name="Collection.php" hash="d981884b8300d5f1cdc295badad4d397"/></dir><file name="Option.php" hash="5123a55ce2e310234ed2eea4ba2103d2"/><dir name="Set"><file name="Collection.php" hash="59191804e6864586038796ace8ed39e9"/></dir><file name="Set.php" hash="6ac37acb880ef52967c53c20f4a18292"/></dir><file name="Attribute.php" hash="36f7157a08817d00f8408a80ad307726"/><file name="Store.php" hash="ac8bdd504017b69c029d014f1acb883e"/><dir name="Type"><file name="Collection.php" hash="df4a0594aa35f346c052a9188a5c4471"/></dir><file name="Type.php" hash="ad6ac3edee4ec97ce9332b165eef1736"/></dir><dir name="Form"><dir name="Element"><file name="Collection.php" hash="45b9183328ee19850345752b1a8e23fd"/></dir><file name="Element.php" hash="4166c03b2847882e3368be57d1cb7f6b"/><dir name="Fieldset"><file name="Collection.php" hash="5146d0c568cddd8ec261ffb7c0a7bac0"/></dir><file name="Fieldset.php" hash="988d72a77b0182cabebdff61fc9a2531"/><dir name="Type"><file name="Collection.php" hash="5cda9032e5d07855388b412abe4c8d71"/></dir><file name="Type.php" hash="85d66f2053a03b1a495ed6ffd7cba6c8"/></dir></dir><dir name="Resource"><dir name="Attribute"><file name="Collection.php" hash="745a9bffdca7a1641891bcd4b0b3ec32"/></dir><file name="Attribute.php" hash="9b08b8a0b41eeed8a9ebf3acfb1b89ec"/><file name="Config.php" hash="30786ab3c85c165506c3db425cf9cfa5"/><dir name="Entity"><dir name="Attribute"><file name="Collection.php" hash="5aa1077e62b09344de49240534ac1c1f"/><dir name="Group"><file name="Collection.php" hash="f6d61cf7b743537537a27648b7b1605a"/></dir><file name="Group.php" hash="017cba9a5945e4f851460e5080aed89d"/><dir name="Option"><file name="Collection.php" hash="021d33b2d1d89308eb74f3597a3796cd"/></dir><file name="Option.php" hash="1515ac3c5a915d814a63b7fe1d5e63bb"/><dir name="Set"><file name="Collection.php" hash="4064d63b518886a4e1a8b0539868297b"/></dir><file name="Set.php" hash="5caa0c72cd0a8bb9a73f6c537ab7c19a"/></dir><file name="Attribute.php" hash="0d90287692b6f7b8aa961e82992e6b80"/><file name="Store.php" hash="7ccda84a385ab0b3bcfbe2d0f9214a8e"/><dir name="Type"><file name="Collection.php" hash="f2271900b7cc9bcc317c3b15561b460f"/></dir><file name="Type.php" hash="258dc3600151215743abb3f826df4572"/></dir><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="b3e6bffd6179cf09b589f1d0f7a57a4c"/></dir><file name="Attribute.php" hash="1bae3456f8a814790ea27c6f87fe640e"/><dir name="Element"><file name="Collection.php" hash="fcbc5b35885479067ec6fcd8ddb212e5"/></dir><file name="Element.php" hash="25036926d29af351dbddea9896c118d1"/><dir name="Fieldset"><file name="Collection.php" hash="86c6b6a9ed62afd852f3ffd3aa82e88a"/></dir><file name="Fieldset.php" hash="76933617fe53fd9d5cccf6c4c3e6ae65"/><dir name="Type"><file name="Collection.php" hash="94d8400f8b81c0b5d46c3716a46197a1"/></dir><file name="Type.php" hash="bfcfa79bf5911c3cf38699903edcbde3"/></dir><dir name="Helper"><file name="Mysql4.php" hash="e569889cc3ec54dc85de288aaf895e09"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="dbab2258c8d26c903915254fe61ef3b3"/></dir><dir name="sql"><dir name="eav_setup"><file name="install-1.6.0.0.php" hash="8bd8cda1628ad65acced30d89f9e79f2"/><file name="mysql4-install-0.7.0.php" hash="b5c7cab312704e2f4b0837c7713ed7e5"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="4dc93d791f8319279f500b0b4ed8b72b"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="3304a0f850d10d0083eacfb2614043af"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="0a66058a0c21cb0746195f2cf09a8987"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="45a1db26109e930762aa3e6d27e7315e"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="eac8e6dbd6a556a0c97ec397a4b2bb6d"/><file name="mysql4-upgrade-0.7.13-0.7.14.php" hash="f9ef9728e9111ce19b3d4b0ced28c5dd"/><file name="mysql4-upgrade-0.7.14-0.7.15.php" hash="ead9b25a17f8bcfc1b874e568008e688"/><file name="mysql4-upgrade-0.7.15-0.7.16.php" hash="74a8a82cc1660b3be1ccec4131387b5b"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="821ca88eb77698b1e1363314d78c61b4"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="507ed2e28ff2f31e35df016bcb3aa6ce"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="962eed9c04187bec9872955c3cbcdd24"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="1794620b2d297dd60179fcf6f5932c74"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="41bc6f807ca7e82b1a49860647de4d22"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="b47e4d4570ed78ec510b818e705c60e5"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="3cc86e7527496b42cc349baf22061625"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="31a77042c51dda6249cf7b26175d41cf"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="5d300439dcdb43b988cdc3eb6a723a69"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="c254084e38d31391d4a9dcf6f5efb1b5"/></dir></dir></dir><dir name="GiftMessage"><dir name="Block"><dir name="Adminhtml"><dir name="Product"><dir name="Helper"><dir name="Form"><file name="Config.php" hash="2b97d65b248912e6056105eb7b22647a"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Create"><file name="Form.php" hash="102f55b5670ecc4624d2779a5d9dae47"/><file name="Giftoptions.php" hash="5af2eaa83c347cf87f944cecc240f72f"/><file name="Items.php" hash="b4833f6731249bb524d0ac5c8b61b823"/></dir><dir name="View"><file name="Form.php" hash="d96b129bc6aa7fb968b6b3bca40d6641"/><file name="Giftoptions.php" hash="8e5db4e604059e74dfa6a6cbf48eab22"/><file name="Items.php" hash="8c4cfb13907db5b6caab2a99ee039918"/></dir></dir></dir></dir><dir name="Message"><file name="Form.php" hash="e0b6247f6e0dac8a096335409c8bbf58"/><file name="Helper.php" hash="3a4cbf8851f4b489b433bb23fb62a50b"/><file name="Inline.php" hash="07b38ebaac00b45a1929387903ff3862"/></dir></dir><dir name="Helper"><file name="Data.php" hash="5b88dfacb8f95f979585366200b80f72"/><file name="Message.php" hash="92f73fd54b2a59340bfdbf05615fb68f"/><file name="Url.php" hash="9f8d36e13391f023deaaf0b912cc37fc"/></dir><dir name="Model"><dir name="Api"><file name="V2.php" hash="f04aee0ff3e2490540050c4b319ccedf"/></dir><file name="Api.php" hash="ae703cf87197282f7efde1dae67864af"/><dir name="Entity"><dir name="Attribute"><dir name="Backend"><dir name="Boolean"><file name="Config.php" hash="912ab6934476d64533586fd38351183d"/></dir></dir><dir name="Source"><dir name="Boolean"><file name="Config.php" hash="529f82da62485f46d085625efc092714"/></dir></dir></dir></dir><file name="Message.php" hash="6e3d9660ffca1ed6f992e15d2143e486"/><dir name="Mysql4"><dir name="Message"><file name="Collection.php" hash="8610d5937a758e916c2d81dbd41d36ac"/></dir><file name="Message.php" hash="6d0ccc5368848a220e397da25dfaf737"/><file name="Setup.php" hash="2407a2d026ed41cb38ceff1ebccb8c88"/></dir><file name="Observer.php" hash="9e8f1570cc6efdf82b5fc5b4b2e12b58"/><dir name="Resource"><dir name="Message"><file name="Collection.php" hash="6949121421c02e75fb923b0170b73d99"/></dir><file name="Message.php" hash="6b09b60ccc7b993dd17c5240cd2aa7ac"/><file name="Setup.php" hash="30c57e5147e83cce71f3976820ce24c6"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="7897754c8f0647dd688d6c57f4b74070"/></dir><dir name="etc"><file name="api.xml" hash="14039afdb9315721b5b515c9f34f41cb"/><file name="config.xml" hash="3cb2d88b80c9f48c64a36d62e9abcd3f"/><file name="system.xml" hash="510b3986f40a221b5d18f9dda07194c9"/><file name="wsdl.xml" hash="b99aaaac0126c6e09a7ba59fa4dbcf30"/><file name="wsi.xml" hash="ab77c7cfecb0f5d6cb7b07c0b5abc1d1"/></dir><dir name="sql"><dir name="giftmessage_setup"><file name="install-1.6.0.0.php" hash="0fb2290857ea3b17b7ed76e851d27c62"/><file name="mysql4-install-0.7.0.php" hash="654f2dbfc67cf93ffdd6d78a461e896a"/><file name="mysql4-upgrade-0.1.3-0.7.0.php" hash="e4ca5e477b610b00e61a8f7509ee1f5f"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="7775c0535994eefcc81be63041a681a1"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="2d547e8260cc8efdad80bb7898d536f5"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="80c9fd152bb817c49659463cc955b7a2"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="e11619037b1758b3ee2cd847af91315d"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="01dc822919ac4feb64b4d321078d3f8a"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="fd7bb80cc8682a3991609c5b1eed3977"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ab382785e333359bb9793011aac0f586"/></dir></dir></dir><dir name="GoogleAnalytics"><dir name="Block"><file name="Ga.php" hash="21d9fd37c1e92ae684566de0eb42791f"/></dir><dir name="Helper"><file name="Data.php" hash="100f3a40bea481c98c1393f43b6bc603"/></dir><dir name="Model"><file name="Observer.php" hash="ad6ac25124a3322a714e20a977064be0"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Type.php" hash="4805f9d896da417036af79e15613eac3"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="5fea2673308abebb7cd8c15359737309"/><file name="config.xml" hash="4284f96f4068849482549a713d11c4f8"/><file name="system.xml" hash="c91c97c91ae42121ff31cd23d5a5682b"/></dir><dir name="sql"><dir name="googleanalytics_setup"><file name="install-1.6.0.0.php" hash="a7ae51e268e4b23f43b1f6b1477691f9"/></dir></dir></dir><dir name="GoogleBase"><dir name="Block"><dir name="Adminhtml"><file name="Captcha.php" hash="62f522f22cb64d19850b09ccee65adb6"/><dir name="Items"><file name="Item.php" hash="f8c9007a1ad978bb47b6c9d5d2c11d93"/><file name="Product.php" hash="e51f257f3918fcd5e72ce12f5f527b87"/><dir name="Renderer"><file name="Id.php" hash="a163a4d6a3edc89a19bb0efa0675ac7d"/></dir></dir><file name="Items.php" hash="f78483b50fc3e072d0dccb10fdc6e45a"/><dir name="Store"><file name="Switcher.php" hash="7dd1e22cb003eecdfa9a7d4df6628e1e"/></dir><dir name="Types"><dir name="Edit"><file name="Attributes.php" hash="de7ce9a9907ae7d7d94adb123ba364c4"/><file name="Form.php" hash="76cb4afbadef58a6cb517007fd258a1a"/></dir><file name="Edit.php" hash="7a8c72d4f8d506f69561735fe175d759"/><file name="Grid.php" hash="1794a6560af01397f30022cbf248de3f"/><dir name="Renderer"><file name="Country.php" hash="60106faee902375cc177fa463e27ec2a"/></dir></dir><file name="Types.php" hash="cc6a7f78d0e2edf4dfe7a40b46282138"/></dir></dir><dir name="Helper"><file name="Data.php" hash="a9d67fdd71f358434564df80fc163a06"/></dir><dir name="Model"><file name="Attribute.php" hash="c9e51b38341831512db3e739233707d4"/><file name="Config.php" hash="a3afa7ff5098f38dfe1d5c979f7389d1"/><file name="Item.php" hash="a200fd6fc7e97b66695133fa4650f35e"/><dir name="Mysql4"><dir name="Attribute"><file name="Collection.php" hash="4bf3b43f87dac062e4cba4ee6b155b02"/></dir><file name="Attribute.php" hash="8a74acdccc2d5e802c2f1ddf6b9f2a2d"/><dir name="Item"><file name="Collection.php" hash="26993881e30a5bc17876ae4024400823"/></dir><file name="Item.php" hash="73f6da324cb2de0d5975130fc7db4077"/><dir name="Type"><file name="Collection.php" hash="0294f3588c2dce8cd416e4ed5349d832"/></dir><file name="Type.php" hash="062cb6dd81aed45a04e69ef7acd5ab3d"/></dir><file name="Observer.php" hash="7a728d960e8d7291dad86f4391091696"/><dir name="Resource"><dir name="Attribute"><file name="Collection.php" hash="ea5ac4726d4656f50002c16f0b95cd58"/></dir><file name="Attribute.php" hash="8ff14327de62fcf5a8a0b01677202a41"/><dir name="Item"><file name="Collection.php" hash="b00cf45f527f967c76c8ce2d4b74fda4"/></dir><file name="Item.php" hash="ec0a24d01ec1e532d7d1c68ba0bf8eca"/><dir name="Type"><file name="Collection.php" hash="f72ce44ab1aec0e8c9e8dab0353b388c"/></dir><file name="Type.php" hash="4364b45b8eba2cf13aa0aa945ee9c03d"/></dir><dir name="Service"><file name="Feed.php" hash="199e735393a20e97b65cdee9f1c23fcd"/><file name="Item.php" hash="f02a6db44af965fc155d93048077ac08"/></dir><file name="Service.php" hash="278413ad9e0e76f20e58736aaf8aa5b9"/><dir name="Source"><file name="Accounttype.php" hash="f52c54635bd844df6474a5b890d468b2"/><file name="Authtype.php" hash="31fc1f9aa9000ff058ab8765cafd4e04"/><file name="Country.php" hash="886467f45e88a020c30ae01c9e5578e9"/><file name="Statuses.php" hash="ebcdec3951e1ed9ee101d149dd1bb24a"/></dir><file name="Type.php" hash="328e54fa39d0fbb1dffbe800b38d4100"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Googlebase"><file name="ItemsController.php" hash="b643377439ef3280554774f5d422766f"/><file name="SelectionController.php" hash="7238751980394f57e9f8cca86819114f"/><file name="TypesController.php" hash="72e6982dad771b164f21aa77b7507bbf"/></dir></dir><file name="ItemsController.php" hash="3e1165defd70e63523405e6a8debcab7"/><file name="SelectionController.php" hash="63901f0e85cb0769358a745c4628e58d"/><file name="TypesController.php" hash="9e01961f36dee9a443ac5c875f5ba939"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a72bbb994243c60b20bd507b5ad4bd5e"/><file name="config.xml" hash="8b080f10dc19b429bfa57197e0fed070"/><file name="system.xml" hash="abdd0ddd6a9936e18c2e12181ccd0cf4"/></dir><dir name="sql"><dir name="googlebase_setup"><file name="install-1.6.0.0.php" hash="ac81f7ef2a424e846595f7aaeca9eb57"/><file name="mysql4-install-0.1.0.php" hash="5ef567e8fd3f272288334985d8319ed7"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="0bbd83ea551e93f64fa1ee618659d1bd"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="e94099eedd81ce5f48dbeb10adbcc391"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="f5618d5a47a34bdfc1a20c869f60b2ee"/></dir></dir></dir><dir name="GoogleCheckout"><dir name="Model"><file name="Payment.php" hash="1f39c37b4560a4016f479f8e97d4ef08"/></dir><dir name="etc"><file name="config.xml" hash="46071ba0ff385dc63194959aa98e5b89"/></dir></dir><dir name="ImportExport"><dir name="Block"><dir name="Adminhtml"><dir name="Export"><dir name="Edit"><file name="Form.php" hash="191ccf47abab7c84547280304805073a"/></dir><file name="Edit.php" hash="360e63e850d8f71eb7e75cf3cc21578c"/><file name="Filter.php" hash="c02bfef81c8010bc55d03bd26d4d72a8"/></dir><dir name="Import"><dir name="Edit"><file name="Form.php" hash="792fe3b32111587f3cb6da0e20b2dd7d"/></dir><file name="Edit.php" hash="89d3340a3cf9ca522457b72f882681f9"/><dir name="Frame"><file name="Result.php" hash="d325e4179d827ca9af9098f0d875f888"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="ca76d4112ae9ddbdcac3405c84cc0fd6"/></dir><dir name="Model"><file name="Abstract.php" hash="40838be4ecbacd9411cce97a8e33fd59"/><file name="Config.php" hash="157790b05e5a9c2e0b7d204b88917318"/><dir name="Export"><dir name="Adapter"><file name="Abstract.php" hash="067bc84c008b653830cfec4b1c85a563"/><file name="Csv.php" hash="adfef1439deb7997cc6d2daa177461af"/></dir><dir name="Entity"><file name="Abstract.php" hash="ecd9e50ef2e64fdf47d99f55187a375d"/><file name="Customer.php" hash="6fbab142f39b8face3992add03aa5e28"/><dir name="Product"><dir name="Type"><file name="Abstract.php" hash="1de48655376671c162493cb3d95a0be9"/><file name="Configurable.php" hash="4686346b2b166ff1f92146293cc7e327"/><file name="Grouped.php" hash="38f7b2c87a9455afdd0c135758740796"/><file name="Simple.php" hash="9ef13bb631878a0af571539965571172"/></dir></dir><file name="Product.php" hash="35e6194ad1be721d030dc574851b549a"/></dir></dir><file name="Export.php" hash="3315b1eb387128ff2d2fcf4ed9a90be7"/><dir name="Import"><dir name="Adapter"><file name="Abstract.php" hash="2ad7d03cced97eaaa1651ddd2b7f7083"/><file name="Csv.php" hash="75a2655c6e3540b2ca24619293902dd1"/></dir><file name="Adapter.php" hash="f236483dac22b562e1d06a5355a7f8f5"/><dir name="Entity"><file name="Abstract.php" hash="ae4bdb8377bd890291cf075cd2effefa"/><dir name="Customer"><file name="Address.php" hash="2dff3ecd1ea7e56b7eb5d1df71592688"/></dir><file name="Customer.php" hash="797346fdbfe9af363bd6dae40547a87a"/><dir name="Product"><dir name="Type"><file name="Abstract.php" hash="93a0b9def9a8f96499b060c3e12caadf"/><file name="Configurable.php" hash="855d66a8f65b42bc32724de18dbffcaf"/><file name="Grouped.php" hash="7fb797515dc6bf4fb6b695dd7a50209c"/><file name="Simple.php" hash="1fbbbbf117e24efa9ab1fa9fce3736f9"/></dir></dir><file name="Product.php" hash="6a7097746a67925f2a7d464b476e385d"/></dir><dir name="Proxy"><dir name="Product"><file name="Resource.php" hash="fd09d311d1aa8f092f7bafd3057a74ba"/></dir><file name="Product.php" hash="ef5715669f2930b67adf56d347ed4335"/></dir><file name="Uploader.php" hash="dcfeeb3f8ada78be25beca1dccef0708"/></dir><file name="Import.php" hash="31c1fb6a58202618c63bedc68330edfe"/><dir name="Mysql4"><dir name="Import"><file name="Data.php" hash="4b9f1050be63d5e883107af1296175f2"/></dir><file name="Setup.php" hash="ae69a84651baea4a3980558f63bef95a"/></dir><dir name="Product"><dir name="Attribute"><dir name="Backend"><file name="Urlkey.php" hash="c48051028fca4186c5c6d9b86de4b26b"/></dir></dir></dir><dir name="Resource"><dir name="Helper"><file name="Mysql4.php" hash="bf9c7c30ee1dc6fa8dfc921f8ae7dfc4"/></dir><dir name="Import"><file name="Data.php" hash="c4db1e915b5b7f72a0ff25cf4f2f1541"/></dir><file name="Setup.php" hash="2d595c2da3a7deb58f70949f10a2dd3e"/></dir><dir name="Source"><dir name="Export"><file name="Entity.php" hash="b1e3a8910a8855867da94132482feb51"/><file name="Format.php" hash="d6d5b4658fc212ba88e5ee9200b65080"/></dir><dir name="Import"><file name="Behavior.php" hash="887159c45f3ab8ccd55f07ae44855d40"/><file name="Entity.php" hash="482bac24d63807f8a1e7dce11b15ca63"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ExportController.php" hash="8f99a0a7b22cf679f906787d83d7e2ca"/><file name="ImportController.php" hash="60eaa6d4654ea83fcc6f35912b3493c3"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8b27d8fa6369ee77b35c48e50dd63eb0"/><file name="config.xml" hash="a371b4c0e0e2475f7ad26c0c0a0e02e4"/><file name="system.xml" hash="143e367568323924092b21685a72c211"/></dir><dir name="sql"><dir name="importexport_setup"><file name="install-1.6.0.0.php" hash="e9c28a9b24e977248e6cf669002a4ebe"/><file name="mysql4-install-0.1.0.php" hash="477525d2570e7ec6f7b26cde9ba38f4a"/><file name="mysql4-upgrade-1.6.0.1-1.6.0.2.php" hash="31078007e13b489ee06a2d98c5f68f0e"/></dir></dir></dir><dir name="Index"><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="64e42d1d0916743a3c267a9d3986a018"/><dir name="Process"><dir name="Edit"><file name="Form.php" hash="afec06dbd7f7e4703655d23518471df5"/><dir name="Tab"><file name="Main.php" hash="eab42bfbcdb027c24bdf85780380b453"/></dir><file name="Tabs.php" hash="f0027c1dec504f914afc09a5107d98cc"/></dir><file name="Edit.php" hash="a8607cfd423515bbab8652621b57ba97"/><dir name="Grid"><file name="Massaction.php" hash="81e99da4acec59e14a5328d88d1eef59"/></dir><file name="Grid.php" hash="2d48734f2ffba326c7e48f1c79fec71b"/></dir><file name="Process.php" hash="a5905ac7c9d456b64ab5efcbb01bfce8"/></dir></dir><file name="Exception.php" hash="3f9709e30bf75621f0b2b009fac764a3"/><dir name="Helper"><file name="Data.php" hash="526c8c51d7557bb7e2bebdc796d83dee"/></dir><dir name="Model"><file name="Event.php" hash="4ddf63e7fa648061409e0225cd44e404"/><dir name="Indexer"><file name="Abstract.php" hash="3456ff7dde44167200fa592863a01abb"/></dir><file name="Indexer.php" hash="7e249ec7766c897fcc067337af52f972"/><dir name="Lock"><dir name="Storage"><file name="Db.php" hash="7b6395c88009ce3b639153553dbfbe90"/><file name="Interface.php" hash="228a5b390d2eb1461f8284f0b0a0e436"/></dir></dir><file name="Lock.php" hash="18ae0b5da223a0e92aed6b366118633f"/><dir name="Mysql4"><file name="Abstract.php" hash="da2155dd41c4e0bc6d59024cfb8ecb6c"/><dir name="Event"><file name="Collection.php" hash="309b479d4c1fd12a8bb3ef51ab199245"/></dir><file name="Event.php" hash="b25a7b1d24b6260998c37c63c333d8b2"/><dir name="Process"><file name="Collection.php" hash="254e38062f1c44ddeb34b6e28bf1cd70"/></dir><file name="Process.php" hash="50c2548f9175cc128f8cb28251d82ab0"/><file name="Setup.php" hash="e173a9a5363dc1795e537e33aa2fd2e0"/></dir><file name="Observer.php" hash="f651484dc38526885bcb6b52a330a92c"/><file name="Process.php" hash="1beada279d1055354e1567b610ecf06b"/><dir name="Resource"><file name="Abstract.php" hash="e3f04920b0ccdcf81cad334aa4c98d92"/><dir name="Event"><file name="Collection.php" hash="7e1da3865c397d4f8f8f39deacdaf477"/></dir><file name="Event.php" hash="b38237c2f5e6479523e2e5dca54abfb7"/><dir name="Helper"><dir name="Lock"><file name="Interface.php" hash="68edac6eef4180e63de6c52596f2b6b7"/></dir><file name="Mysql4.php" hash="02072c9858b4d309efadf7b07f58538d"/></dir><dir name="Lock"><file name="Resource.php" hash="b1ade0fb2bf60074421c007373cd8f87"/></dir><dir name="Process"><file name="Collection.php" hash="23640077491875846f0bd74705a3fb3d"/></dir><file name="Process.php" hash="6cc0a505a68ac88ea9a9fd8bfed8ace4"/><file name="Setup.php" hash="9d334f0343ac10a2224fab7adb308709"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ProcessController.php" hash="828bd6d468d2ac1b795a96963e61effa"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="881d9be8b3c918a1cf77f9e930efdf42"/><file name="config.xml" hash="0f27f7d206075ae8f14bff9293b2189c"/></dir><dir name="sql"><dir name="index_setup"><file name="install-1.6.0.0.php" hash="15418fe240598d12bf4d35dfd4d30a24"/><file name="mysql4-install-1.4.0.0.php" hash="3d1236edd44f29b962421065da8f0296"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="1c13dc777f4d4ed5ecd9ba41006fa6d3"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="4469700c7a18ff4a769e76be0c90266e"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="614694540111f3a5a21295109475a53e"/></dir></dir></dir><dir name="Install"><dir name="Block"><file name="Abstract.php" hash="555000323855b771524db1059d3c7325"/><file name="Admin.php" hash="acc664e804f36a76f83951fa9e006179"/><file name="Begin.php" hash="3c352bab206779b7424b8353cda33106"/><file name="Config.php" hash="5aaa7143564a85f0514f302e750756e2"/><dir name="Db"><file name="Main.php" hash="b47e431840dcbd7f3ad112a5bab094ff"/><dir name="Type"><file name="Mysql4.php" hash="0758a30a32781d178ceebf407b8ec7ed"/></dir><file name="Type.php" hash="29ba04bc5cfacd3edd3af12454ecf420"/></dir><file name="Download.php" hash="015e92ffaafb93fbc7734a019747cefc"/><file name="End.php" hash="6869d3d567eca578c8ac18375c235764"/><file name="Locale.php" hash="c237683a54c18d9e9c1e592cf3abfa32"/><file name="State.php" hash="d2b2eb2154ba0696c2e8f51c360fb38c"/></dir><dir name="Controller"><file name="Action.php" hash="936a0d4a816a2f20af2e82075fc09faf"/><dir name="Router"><file name="Install.php" hash="daad88210875f371d0308ad9232527ff"/></dir></dir><dir name="Helper"><file name="Data.php" hash="19d3c8e41fbdb23f2d36c7136daf4ca3"/></dir><dir name="Model"><file name="Config.php" hash="97fe63982485036efc55aa51f5a56664"/><dir name="Installer"><file name="Abstract.php" hash="3cfd0c23eec851411c164e572f2a9d77"/><file name="Config.php" hash="6d712ce39c557e7170d3450401a66bad"/><file name="Console.php" hash="a1a9e4fa9c3a75a3a3672d80ec6f7445"/><file name="Data.php" hash="3187a8648f8bd73efc4037e7491a29c6"/><dir name="Db"><file name="Abstract.php" hash="ee952066e04729eb05b4aad84e1266aa"/><file name="Mysql4.php" hash="58e387d6ca053687e4dc3c16664105d9"/></dir><file name="Db.php" hash="1c677f1de56b0cfed06c89d43fd2e6a4"/><file name="Env.php" hash="ab54af3da141dcffd4550230932fc31b"/><file name="Filesystem.php" hash="dd2164debedfc223c151543d6604754b"/><file name="Pear.php" hash="ea295ba14228f45bac4fd7c0efe3b655"/></dir><file name="Installer.php" hash="8aab26a891e8786b3fd82d1a6ddd2d86"/><file name="Observer.php" hash="7121ca74bcbf584b617f1beedb6b8a22"/><file name="Session.php" hash="cc550bb13df895f0ea855727598c60c2"/><file name="Wizard.php" hash="5d0aee29acb9303f1769d3a254335a1a"/></dir><dir name="controllers"><file name="IndexController.php" hash="256c45076b06fa9e37bda5b226d085b0"/><file name="WizardController.php" hash="20a361bc4c1b891c0406740e24dde5ab"/></dir><dir name="etc"><file name="config.xml" hash="d6b69e99d14fba4296f9ddf90ae4ec25"/><file name="install.xml" hash="31da31823570f91544558cd61c7fc226"/></dir></dir><dir name="Log"><dir name="Helper"><file name="Data.php" hash="30ae369a1aa4759d45a453609b5dad3c"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Loglevel.php" hash="9cad9bf72c99c36940a09de844584716"/></dir></dir></dir></dir><file name="Aggregation.php" hash="5f78ce71ac5613af4644991bf532ff0b"/><file name="Cron.php" hash="d8ad0584b0f7ac24aff2ff0d6cc4cd91"/><file name="Customer.php" hash="b5f937ab16fa39630d9109616fbcbf59"/><file name="Log.php" hash="3aeefc6a2d29ec116b3099bd92164549"/><dir name="Mysql4"><file name="Aggregation.php" hash="b97140f67f21e77ede87b020e9517f5e"/><file name="Customer.php" hash="0d514c735d2ac96ab53aef336ec152c6"/><file name="Log.php" hash="f8e29884e1fe0ea14f53216ea119b753"/><dir name="Visitor"><file name="Collection.php" hash="a310d6e6b71610a4282e467a1b4aa41c"/><dir name="Online"><file name="Collection.php" hash="eb1e5990f2e12de88f7b0aa2b1b62dc1"/></dir><file name="Online.php" hash="e9b8b8a9bd0f56a674ef13f26e76173e"/></dir><file name="Visitor.php" hash="4102a469fbf239d68fb7b2ffb9905a22"/></dir><dir name="Resource"><file name="Aggregation.php" hash="4ce2a95673f3e0d6a96b9416adc1435c"/><file name="Customer.php" hash="e6d3b8a6a126f61a432b4a24967bcdfa"/><file name="Log.php" hash="cd9efd22a95cebc176759b75f3479a6b"/><dir name="Visitor"><file name="Collection.php" hash="a71743a48c7c2074c1af4611b8d8e905"/><dir name="Online"><file name="Collection.php" hash="50f686d723180437039b42ea42553113"/></dir><file name="Online.php" hash="b04b67e7d53aaa3cc4e96f12179bc905"/></dir><file name="Visitor.php" hash="55fb2c737e70985f71d03e9b2d5f3f20"/></dir><dir name="Visitor"><file name="Online.php" hash="c8744cb16a9038474c624a4bc0939166"/></dir><file name="Visitor.php" hash="928d3f4c1949c88f8ef947e47affb03d"/></dir><dir name="data"><dir name="log_setup"><file name="data-install-1.6.0.0.php" hash="83ebb5d68ec9c7a74ea170c7ad4d523d"/></dir></dir><dir name="etc"><file name="config.xml" hash="752c4b618caa3b66cba80355f680f61f"/><file name="system.xml" hash="1d8c7a56952b37a70adba7d4005d69e5"/></dir><dir name="sql"><dir name="log_setup"><file name="install-1.6.0.0.php" hash="e4885569c21f047e584cf37ba17af655"/><file name="mysql4-install-0.7.0.php" hash="d3b05b14033df61f11df7029aab003a0"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="b822f8f0e83f17b4853b78b816205ef9"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="44c6c31099f5e75706ef83c6c0d3e0d8"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="942917aad3bd435d793185fb16dfa1f6"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="273e630ff2847772bc2f0680947defa2"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="7dcc3a767526ab0fa4b626538011fd4a"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="9f31ffe2d94a4610da2b65219f42cb2c"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="81747aadb709ceef438bd9005f838da3"/><file name="mysql4-upgrade-1.6.0.0-1.6.1.0.php" hash="88ba8d186737c788be142f3b1f99c732"/><file name="mysql4-upgrade-1.6.1.0-1.6.1.1.php" hash="3ae3748b58bb788c9b1aed2198689aa6"/></dir></dir></dir><dir name="Media"><dir name="Helper"><file name="Data.php" hash="26771745a6464a7198d3e593254ca53d"/></dir><dir name="Model"><dir name="File"><file name="Image.php" hash="963140ba20341c36389eb43c64d54d9b"/></dir><dir name="Image"><dir name="Config"><file name="Interface.php" hash="57b1124aa9c503223ef3f88a5a967e33"/></dir></dir><file name="Image.php" hash="ed0066b2bf423c2cefed47ddb1af4236"/></dir><dir name="etc"><file name="config.xml" hash="1f67f3dc20255bd6e3cd3280969a23a9"/></dir></dir><dir name="Newsletter"><dir name="Block"><file name="Subscribe.php" hash="449ab55028a54ca25d0839b9cfc5b0b8"/></dir><dir name="Helper"><file name="Data.php" hash="14eceb7d1f476c6d32a0bc989e25f655"/></dir><dir name="Model"><file name="Message.php" hash="3cf3c04a138a75d3d21b60aebf14e8bf"/><dir name="Mysql4"><dir name="Problem"><file name="Collection.php" hash="3d949f32e546368ff16e02e088233531"/></dir><file name="Problem.php" hash="85f0b29f8d01c7869a6b436b38b62233"/><dir name="Queue"><file name="Collection.php" hash="361b217b7fd75fe633ac97e1d665da54"/></dir><file name="Queue.php" hash="4ee1b747ca7dbffcaf84a933341b7642"/><dir name="Subscriber"><file name="Collection.php" hash="e7141e4d1f981040b525a268cfbbe0b6"/></dir><file name="Subscriber.php" hash="4d67750c55b9944f29c7c127a1630e8a"/><dir name="Template"><file name="Collection.php" hash="761c9841afb177482318503120ecf6c2"/></dir><file name="Template.php" hash="0b3568e98b4a06b9eacdd19c40e2c35b"/></dir><file name="Observer.php" hash="f01f66d03b935a633b2a47e5177e6753"/><file name="Problem.php" hash="609d83b319fccdfdd963caef0dd98b7a"/><file name="Queue.php" hash="03683875ef4fb937ac4fd7ff32cb3db7"/><dir name="Resource"><dir name="Problem"><file name="Collection.php" hash="b38f7bc74ebaa7bc00b1cc6fc7522d45"/></dir><file name="Problem.php" hash="9759f8034517091ffeff187d0f1cc143"/><dir name="Queue"><file name="Collection.php" hash="3e77b2973b1d1e9ee11b3fffa4a019e3"/></dir><file name="Queue.php" hash="d48763a0ddf55e5acce61a64c5a0e342"/><dir name="Subscriber"><file name="Collection.php" hash="fe744d0af0f83889863470f07021cc2f"/></dir><file name="Subscriber.php" hash="381627f97da58822b99c853fceea89ed"/><dir name="Template"><file name="Collection.php" hash="1d5164328ce7a03fc4425c72e2929f84"/></dir><file name="Template.php" hash="274acf2f5d0e27a4c5190061ac53f19c"/></dir><file name="Session.php" hash="9ba9110e39fe7c83ea5d3d8083a83f40"/><file name="Subscriber.php" hash="b356c4fb473c18c566204ea520ece6ab"/><dir name="Template"><file name="Filter.php" hash="bbed59b047d5680c0980dd5c2d124f36"/></dir><file name="Template.php" hash="3706ee69d89cbf54d6b84622451215e0"/></dir><dir name="controllers"><file name="ManageController.php" hash="f7829644363c4307be49d59b3a480f79"/><file name="SubscriberController.php" hash="6e44a9acf8256e118ee24fbad6f88dab"/></dir><dir name="data"><dir name="newsletter_setup"><file name="data-upgrade-1.6.0.0-1.6.0.1.php" hash="4cf6778e36701416f8c01cf7b109f145"/><file name="data-upgrade-1.6.0.1-1.6.0.2.php" hash="888b0e1cbdd1d55dee197b4d91370314"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="503ba54d7c27fa034797c32c9bd0b7dc"/><file name="config.xml" hash="3c69e269d11922d08bdeaadb6aaadb4e"/><file name="system.xml" hash="7ef3fb951e816306912826b8697a27d4"/></dir><dir name="sql"><dir name="newsletter_setup"><file name="install-1.6.0.0.php" hash="58883f3e4e4c19304b7029df9d5d5e66"/><file name="mysql4-install-0.7.0.php" hash="0c1559a857127c060b1505c3c696b8b4"/><file name="mysql4-install-0.8.0.php" hash="a1544eb72c9a919917611239ef5f1988"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="8efdcb593f2e1007738ef1c18f3d7de1"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="58d80ff20a72380bdff5ea6959131765"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="faa728001981a1495b3fdee678e16249"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="3593430c5b8682e42147ff755846efb2"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="47e0fb7b1c861432c1b2b3162ab8f9a6"/></dir></dir></dir><dir name="Oauth"><dir name="Block"><dir name="Adminhtml"><dir name="Oauth"><dir name="Admin"><dir name="Token"><file name="Grid.php" hash="42036a33467da4f42d9058ddd47ab959"/></dir><file name="Token.php" hash="e4ce330fec980d7a70e2f88403c0c66e"/></dir><dir name="Authorize"><file name="Button.php" hash="71991ce5a051162fba9687620c5290ba"/></dir><file name="Authorize.php" hash="c6bf2c6799b7198418fe9a7e9d01c683"/><dir name="AuthorizedTokens"><file name="Grid.php" hash="76a530eda3c116a423400284c20f5c9c"/></dir><file name="AuthorizedTokens.php" hash="c9d45c65803f066fa8438be651c285d8"/><dir name="Consumer"><dir name="Edit"><file name="Form.php" hash="2226a3bcda3e8c3d2388135c5472b9db"/></dir><file name="Edit.php" hash="199e0dcb4a0a490de70b964b7b5cdb9b"/><file name="Grid.php" hash="26eb0ea15a6d1d5489f314cec6f661e4"/></dir><file name="Consumer.php" hash="0312def158a954066ad38a714819ba72"/></dir></dir><dir name="Authorize"><file name="Abstract.php" hash="f353f1ba5541b14e93b2b435aca1b545"/><file name="Button.php" hash="346967facd6467c8b10af56bc79eb306"/><file name="ButtonBaseAbstract.php" hash="16c30c4c11dcca0bb6f881c5caaed97c"/></dir><file name="Authorize.php" hash="f97e5456556525395dee90320c4436ad"/><file name="AuthorizeBaseAbstract.php" hash="a465b5fb6fb39b657966057c6ccff3b9"/><dir name="Customer"><dir name="Token"><file name="List.php" hash="3ffbb0ed0553620eb7f3fbe6e9016599"/></dir></dir></dir><file name="Exception.php" hash="f4e95c4ab7bad97ff9577d33ec4ab39a"/><dir name="Helper"><file name="Data.php" hash="9ad92655975ce86bb2df598306c7ea4b"/></dir><dir name="Model"><dir name="Consumer"><dir name="Validator"><file name="KeyLength.php" hash="b4b6e8060e7d3e294f7901dc35725f49"/></dir></dir><file name="Consumer.php" hash="e25d96d06e6d8da85bf5682c52fe9c5c"/><file name="Nonce.php" hash="9769e90a4ed04e55aa61e6d4d2dc36a2"/><file name="Observer.php" hash="c74d4927d19fbddac91433efd6922bd7"/><dir name="Resource"><dir name="Consumer"><file name="Collection.php" hash="71ba2fcde335893d300a9eabcd00c837"/></dir><file name="Consumer.php" hash="fef2c17117346cdbda4a13ad1d76b398"/><dir name="Nonce"><file name="Collection.php" hash="cf540be396de9075c3faad12a0f185a7"/></dir><file name="Nonce.php" hash="1aa04099dd8af352a53941355cb637e6"/><file name="Setup.php" hash="f4e3e2147d0f2a707ba7626f64174fcb"/><dir name="Token"><file name="Collection.php" hash="9b7d966bb3eb546bca3e02e6ad926ec6"/></dir><file name="Token.php" hash="d68c2670ee4466f74bef021fd8d1d2fe"/></dir><file name="Server.php" hash="242f6708ffec74be6f3fb5a1b3344bb8"/><file name="Token.php" hash="a514038f9060a508704578c4fc7687de"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Oauth"><dir name="Admin"><file name="TokenController.php" hash="8e468113385b7a74e3839dad6c498876"/></dir><file name="AuthorizeController.php" hash="7f7733f394041f5a87571c5a8299d740"/><file name="AuthorizedTokensController.php" hash="bcbce949721b421810bde10f13a8908d"/><file name="ConsumerController.php" hash="d65a605940f42aa8ff904d0e1a15017e"/></dir></dir><file name="AuthorizeController.php" hash="911adff8b475a3da8a22adc711522c45"/><dir name="Customer"><file name="TokenController.php" hash="927ebd85e7a1c2f4d131169e4d07ab5e"/></dir><file name="InitiateController.php" hash="a1313c0315c9cf39f182b096013c3600"/><file name="TokenController.php" hash="d823cd1d366e521328961389696e6d76"/></dir><dir name="etc"><file name="adminhtml.xml" hash="14e19f6615abc0e1fa1ad599784fbd1f"/><file name="config.xml" hash="6e8262e104995201cdf1364b6f8ade1d"/><file name="system.xml" hash="6e56da8ad6bcd25048783b50946a8ee2"/></dir><dir name="sql"><dir name="oauth_setup"><file name="install-1.0.0.0.php" hash="1a04a4872f35972c93888c4ac6a3877f"/></dir></dir></dir><dir name="Page"><dir name="Block"><dir name="Html"><file name="Breadcrumbs.php" hash="76af1c2d62a351333dcf0d5b08fec99f"/><file name="CookieNotice.php" hash="d99d2a80b967fbe83f55f23ad52becb2"/><file name="Footer.php" hash="ff6f73f6b42e113499ae3b3064bb430f"/><file name="Head.php" hash="f1ec3c20a89e408bfda4d199b608800f"/><file name="Header.php" hash="b5796cf01cabb982036e16b31c3d802a"/><file name="Notices.php" hash="d73e9b23a0554aa17d65dc9fe9a41f8b"/><file name="Pager.php" hash="cb7e6e7f110b4aae632f042992f13dea"/><file name="Toplinks.php" hash="0ca598406370b7c20b701e1503de60c2"/><dir name="Topmenu"><file name="Renderer.php" hash="c7820b31bfc7f45f214e0443889ef1f9"/></dir><file name="Topmenu.php" hash="d6038fa18c19d3a1790783f1a1cdfc34"/><file name="Welcome.php" hash="e29f11ee527cf91312c1df7a1169a3ec"/><file name="Wrapper.php" hash="728d2084b2ca0112b9d19d3621f376f3"/></dir><file name="Html.php" hash="fb9c260b36a23840c073ee9a8767e994"/><dir name="Js"><file name="Cookie.php" hash="9c3b30a237707c39b54125be0c6c8b95"/><file name="Translate.php" hash="7b301f7fdc537ae8845db32933577ba7"/></dir><file name="Redirect.php" hash="9743b0e148b44690057ce8aef91c32f1"/><file name="Switch.php" hash="2813eb1fcc51fbd521f62ca8841b2503"/><dir name="Template"><file name="Container.php" hash="a47ca180b7c5fe949b77ab548a148a7a"/><dir name="Links"><file name="Block.php" hash="7a36747c24374c252232ae00d1e07e4b"/></dir><file name="Links.php" hash="209d295ad695628faf975c1366e3f70d"/></dir></dir><dir name="Helper"><file name="Data.php" hash="b3237bb0b644e30e9de83668c2c57f75"/><file name="Html.php" hash="d50c1710bf6ac9bd53637016c514736b"/><file name="Layout.php" hash="b2ab663e18bb1617a8c520b0ff87e03c"/></dir><dir name="Model"><file name="Config.php" hash="ce257767900549bccb75fbac14b14b0b"/><dir name="Source"><file name="Layout.php" hash="498643f03bf27d411a95c1885970b4cb"/></dir></dir><dir name="etc"><file name="config.xml" hash="1e437f497da55c56e92332739548ffd6"/><file name="system.xml" hash="35f4c6faed23af9b665de3933c674820"/></dir></dir><dir name="PageCache"><dir name="Block"><dir name="Adminhtml"><dir name="Cache"><file name="Additional.php" hash="3dba80fb53e5a4e05ab038242a5062a6"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="82b38eb4d6f3326dced9558236f05b84"/></dir><dir name="Model"><dir name="Control"><file name="Interface.php" hash="32465287fd5ad49a5373b2f49c6d7787"/><file name="Zend.php" hash="ae15c24b95b8a22abb718c2615d1501a"/></dir><file name="Observer.php" hash="1cc8787360b74db204bc992a9961a810"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Controls.php" hash="da7eb2b87b1c384efa2acab229a831e0"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="PageCacheController.php" hash="8253cb13731f25fdc7054db569def5de"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="cf82072d1f673dd4f2cb8298d944b06a"/><file name="config.xml" hash="c4fc5364d36f687cf8ae0c9ebfcd5d07"/><file name="system.xml" hash="d8f45c4bac9d0d1f705c6bcd46c2ca57"/></dir></dir><dir name="Paygate"><dir name="Block"><dir name="Authorizenet"><dir name="Form"><file name="Cc.php" hash="3a748028fe3f5b5d5f066c448f419fba"/></dir><dir name="Info"><file name="Cc.php" hash="a78355ba5a73bc8f26fccf2373cc2ae9"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="e9561c30aa2df8e942f466c827656736"/></dir><dir name="Model"><dir name="Authorizenet"><file name="Cards.php" hash="668c87965a89ec7ad2aa5fd30cdc4ca3"/><file name="Debug.php" hash="8618355606cd3814e802dc10c700b41c"/><file name="Request.php" hash="c1f4b4089359478b40a1b6a9e23351c2"/><file name="Result.php" hash="bf8a7bbce2821c12d49cbf7984d23b99"/><dir name="Source"><file name="Cctype.php" hash="71c90de1db4b2238bc322349f070730c"/><file name="PaymentAction.php" hash="83e8c00869bf0234049555f0f22c8ebe"/></dir></dir><file name="Authorizenet.php" hash="3b79d254814dcb1a5ff8815ea38594a1"/><dir name="Mysql4"><dir name="Authorizenet"><dir name="Debug"><file name="Collection.php" hash="213ce4998f43bc900c8df45cfd5100a3"/></dir><file name="Debug.php" hash="b25abe86de7da9d31b0e6e2fbebca46e"/></dir></dir><dir name="Resource"><dir name="Authorizenet"><dir name="Debug"><file name="Collection.php" hash="96579efd296c9747bc69ddb93563c7c7"/></dir><file name="Debug.php" hash="8b16f0e8c62f27c974a630174b445e9e"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Paygate"><dir name="Authorizenet"><file name="PaymentController.php" hash="0786c25427d18f4c42d7e0dbeeecce44"/></dir></dir></dir><dir name="Authorizenet"><file name="PaymentController.php" hash="cba52139f51e9c6036da7a9d43000559"/></dir></dir><dir name="etc"><file name="config.xml" hash="7d9c108a4f7461e38e453595ae99e166"/><file name="system.xml" hash="4c7ad997873f413974b8d7acda17fe00"/></dir><dir name="sql"><dir name="paygate_setup"><file name="install-1.6.0.0.php" hash="b42125deb1bb3e94a0b964bce550a2db"/><file name="mysql4-data-upgrade-0.7.0-0.7.1.php" hash="4f22fe3689b223adc5818e70691f671c"/><file name="mysql4-install-0.7.0.php" hash="3e2e04f85dfdf7b9fa7697904035e86e"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="48c76ca9ce36054b194288542f4bbd25"/></dir></dir></dir><dir name="Payment"><dir name="Block"><dir name="Catalog"><dir name="Product"><dir name="View"><file name="Profile.php" hash="4cbf4eb8350c8a40f01970c7960122de"/></dir></dir></dir><dir name="Form"><file name="Banktransfer.php" hash="ca8b755ddb73aeb8b2f35b9f75338a0f"/><file name="Cashondelivery.php" hash="ff169ed043cc386faf01e8fe15bf3022"/><file name="Cc.php" hash="2389f3a83069e0643b4e750ba4e8e44f"/><file name="Ccsave.php" hash="5ff8d24e9e6a4297b8e4f687368da407"/><file name="Checkmo.php" hash="bdc8bb2c6ba10b7e9957e8e521e90c12"/><file name="Container.php" hash="cec07bf2ca7b4b2bb3a0baa0ffb9f2c1"/><file name="Purchaseorder.php" hash="137da51f5fde7f115c2a85a5b36990a4"/></dir><file name="Form.php" hash="dd368566c7eb6919ad947e78cbe1859e"/><dir name="Info"><file name="Banktransfer.php" hash="ecf02d9d5721675e2975d7dfec284403"/><file name="Cc.php" hash="99dc5f4df2287ab2c22bdc58542f074b"/><file name="Ccsave.php" hash="082a31b849bbb55a59190e02893a75d5"/><file name="Checkmo.php" hash="64b822848cc97dcd27bd0bd3f01e1656"/><file name="Container.php" hash="2ee3f38b5cd1f6fa43b95a858d921708"/><file name="Purchaseorder.php" hash="0fe351afef830b891f9bfb105c44d030"/></dir><file name="Info.php" hash="f71e6f15698f402e9189ca9e5bc670b4"/></dir><file name="Exception.php" hash="beb2d8551ade49853e5437659b614c6c"/><dir name="Helper"><file name="Data.php" hash="7b268b8060a3e70aa39971ef7258a253"/></dir><dir name="Model"><dir name="Billing"><dir name="Agreement"><file name="MethodInterface.php" hash="424553e9cc4fe2fa6befb6401bcf1006"/></dir><file name="AgreementAbstract.php" hash="4043c168c28cfb9a86f15bdde1aa4f33"/></dir><file name="Config.php" hash="195db58e611647682704767e965799e9"/><dir name="Info"><file name="Exception.php" hash="fc52e6ca869415f8a26d7f36a5752f60"/></dir><file name="Info.php" hash="38f6883ca27e92501ca87f8c5310c983"/><dir name="Method"><file name="Abstract.php" hash="7fcbd59cc63e90c83a8ac304b21fb959"/><file name="Banktransfer.php" hash="fb540e43ac0f7fd3bd1635e4762fdbd4"/><file name="Cashondelivery.php" hash="b09ee08f6805fbef82daed86b26548d4"/><file name="Cc.php" hash="84f1de4c65ee35656911a740549912a1"/><file name="Ccsave.php" hash="6df7df82d30724aacb47c6447cb1fcac"/><file name="Checkmo.php" hash="20737ca73dc12889ac107605ec7d27ca"/><file name="Free.php" hash="0b771056ddecea00184fe0c141550e47"/><file name="Purchaseorder.php" hash="a7b2b57eb818f50e3508c7838ad211be"/></dir><file name="Observer.php" hash="d6337e367754f1da2328f9907c9a17e6"/><dir name="Paygate"><file name="Request.php" hash="86a6803dfe434c5d7afc2fd7b27cc3db"/><file name="Result.php" hash="4f715aa54c36a891099828332fc68aee"/></dir><dir name="Recurring"><dir name="Profile"><file name="MethodInterface.php" hash="d434add969bedb69762a5be4866f54d3"/></dir><file name="Profile.php" hash="f07c2863b3b89472e76678fca27cdf0c"/></dir><dir name="Source"><file name="Cctype.php" hash="8941383914fc870894a525c394311e10"/><file name="Invoice.php" hash="bbb8f9293ea7928c47007f7c05066b63"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="7a5adf8c1263e48cf2f9071c5195ee2a"/><file name="config.xml" hash="74b9d5cb7149617310b34c1f59542126"/><file name="system.xml" hash="adcf3b2b91219f1f5526b0f70849f65c"/></dir></dir><dir name="Paypal"><dir name="Block"><dir name="Adminhtml"><dir name="Settlement"><dir name="Details"><file name="Form.php" hash="7a5470652fc38ab2c5918a16becdf54f"/></dir><file name="Details.php" hash="49132e87516ed2cd05aa80f7a4afbcb2"/><dir name="Report"><file name="Grid.php" hash="3e6dda1e1a4aadbd6007772f17cd35dc"/></dir><file name="Report.php" hash="c3104724d674c1317dc23146436dc33e"/></dir><dir name="System"><dir name="Config"><file name="ApiWizard.php" hash="237edd4428f23a4d0824161159031907"/><file name="BmlApiWizard.php" hash="0d02c63e9dcd5d8f92abbf6a7435e9d2"/><dir name="Field"><file name="Country.php" hash="194bfb6c4fd11f9eedaa2df850a243ba"/><file name="Hidden.php" hash="fc1085a05c3570cc1345d82bc6f46153"/><file name="SolutionType.php" hash="c199b755054bed63b98bcfe870ee24c3"/></dir><dir name="Fieldset"><file name="Deprecated.php" hash="75ccac6c4a42d1d89bd4453afc5d7936"/><file name="Expanded.php" hash="f6979eb0dec53d903b255cb81fa64e7d"/><file name="Global.php" hash="b243db32fddae60eda87b9cf8615983d"/><file name="Group.php" hash="8fc7543ec871e4bc58965ec050f19f9d"/><file name="Hint.php" hash="849288a88f8ecff4c66bd9b7f39f5f73"/><file name="Location.php" hash="6bed7b43656d2201e15fed7c4ee91372"/><file name="PathDependent.php" hash="e4a8685376fa5318336d2285b727cb6d"/><file name="Payment.php" hash="202f147418cb85a3d895f96b76eeb412"/><file name="Store.php" hash="8cf7dfe2261b400034ab9e8d45b31e49"/></dir><dir name="Payflowlink"><file name="Advanced.php" hash="dbb8abc9fc791cd9e4f9d8b0db1a5799"/><file name="Info.php" hash="0b570584ebe08a45704445fb84b7e64d"/></dir></dir></dir></dir><dir name="Bml"><file name="Banners.php" hash="9ce71c3a54451fd06f8a58d6dfa94774"/><file name="Form.php" hash="8861e608e012ad0d129cbaacce543fa4"/></dir><dir name="Express"><file name="Form.php" hash="2dfe96f6ec89fa9cc6efba0d71efcb27"/><dir name="Review"><file name="Billing.php" hash="f87c07fbe423ba3cfbae38b0359f8e9d"/><file name="Details.php" hash="41e9c8426c47365611cfdd8c2cba6537"/><file name="Shipping.php" hash="87ab76371ff5d8cf3cff2adf2d864347"/></dir><file name="Review.php" hash="1b9840c465a17813701faf8c4307315f"/><file name="Shortcut.php" hash="fd29062b729328ca291f45c5ad541773"/></dir><dir name="Hosted"><dir name="Pro"><file name="Form.php" hash="fb0a5f67251cc199cd8ce40b4e543003"/><file name="Iframe.php" hash="6ad033d68b559ae0eeb0f4ce580368aa"/><file name="Info.php" hash="88de1e67a4cf09a19b18db35594e2f83"/></dir></dir><file name="Iframe.php" hash="130b950fb3db789617577e253f44d0d4"/><file name="Logo.php" hash="01ad9e06cf747d11e56fb1232191fa97"/><dir name="Payflow"><dir name="Advanced"><file name="Form.php" hash="e27e11120227c4317975d53d6ec87a07"/><file name="Iframe.php" hash="dbdcf942fcca65ce33275ec2546c4cfc"/><file name="Info.php" hash="c653c07418e1b95851a35dfa6167c703"/><file name="Review.php" hash="fc88e4f21988be8c6df7d6061c305c40"/></dir><dir name="Link"><file name="Form.php" hash="3aa3d74747d840e18d4573e68c7a7986"/><file name="Iframe.php" hash="da1e91b2b849623f4b12bd7f64bcbd04"/><file name="Info.php" hash="a0870dd47d4228d2d425e4a3f5f27f2e"/><file name="Review.php" hash="13c8891d5e0cefda15c57b6e402bf6ff"/></dir></dir><dir name="Payment"><file name="Info.php" hash="7f2d80e99718b0c94a08347d73a64da4"/></dir><dir name="Standard"><file name="Form.php" hash="d4bd08c533fe4c4db3daab3bf9360860"/><file name="Redirect.php" hash="36d3646e7d3e4013847ff219e3f9e3db"/></dir></dir><dir name="Controller"><dir name="Express"><file name="Abstract.php" hash="4695d1fac56793866c282316b3d33917"/></dir></dir><file name="Exception.php" hash="7dee8f2f62ac73a1c4e25b12fb85a3fb"/><dir name="Helper"><file name="Checkout.php" hash="f71e0d44157c5c7c710f768317a418b0"/><file name="Data.php" hash="0e4a617f7985832bca600b52de577278"/><file name="Hss.php" hash="1643e958dd97f7b024e5412d82e0de3c"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="5c289e9731993409f86cee3b2919f4a8"/><file name="Nvp.php" hash="d62ad239a8f1ceb38f1dad77986f40d6"/><file name="ProcessableException.php" hash="4313e637008571be2bd2d86f6a560112"/><file name="Standard.php" hash="986fd1dec22bc55cb84ecf75c7bc3729"/></dir><file name="Bml.php" hash="ac3c55752b8eb272c9481fc11521bb0b"/><file name="Cart.php" hash="d6979cb0fe3174d7d70bbf26474b3a16"/><file name="Cert.php" hash="8b23417ca6e231a0ec8f89a6e769f01e"/><file name="Config.php" hash="d356e412f4eca6207004674303791ad6"/><file name="Direct.php" hash="04692b3598ead300783c59dc664e5ad5"/><dir name="Express"><file name="Checkout.php" hash="ad1ee11ffcf63815cea1c988f8679697"/></dir><file name="Express.php" hash="553e93873ac88d39e98b5a01ef0e26f2"/><dir name="Hostedpro"><file name="Request.php" hash="4aaa99812f8ba31c0e2aee9c18d68671"/></dir><file name="Hostedpro.php" hash="14ae27c0f8a9d9c2ec1525ec9b06be7c"/><file name="Info.php" hash="31e9a1d2d63b0d826079a4c74a4779d2"/><file name="Ipn.php" hash="5a216c988a5b749bcda0bf0acba621c7"/><dir name="Method"><file name="Agreement.php" hash="c24473819dda2b2d6d6ff3dcc8f66b46"/></dir><dir name="Mysql4"><file name="Cert.php" hash="e873d71130a68719913fd5d2cc5cde98"/><dir name="Report"><dir name="Settlement"><dir name="Row"><file name="Collection.php" hash="e91f7ac5962615e0bd88ad266397f351"/></dir><file name="Row.php" hash="546eca3d90673785045eed293e0eacb3"/></dir><file name="Settlement.php" hash="1fb1b95e74a309c82098aa33267dddf2"/></dir><file name="Setup.php" hash="25c05eab1013655aa210df9db8b24e5a"/></dir><file name="Observer.php" hash="425f8814bb8c74fec03ae794960341ae"/><dir name="Payflow"><file name="Request.php" hash="4e6e0e5b184f618e00f58a193f9947c8"/></dir><file name="Payflowadvanced.php" hash="2d03cd17c394c87dd24eaedb15099df0"/><file name="Payflowlink.php" hash="7a4d9c3add43af18a085145abb7f947f"/><file name="Payflowpro.php" hash="ea5729b6eecc3703ffa5870a490a4b26"/><dir name="Payment"><file name="Transaction.php" hash="6b591f640c751a19076203c300387493"/></dir><file name="Pro.php" hash="50866ddf07601f6f95600cbe36fbf789"/><dir name="Report"><dir name="Settlement"><file name="Row.php" hash="e8ce793bd31bfdbb335e5b7c88ee6481"/></dir><file name="Settlement.php" hash="bf873501e3ec1dc391091857c29f129b"/></dir><dir name="Resource"><file name="Cert.php" hash="47acda02c8bb5253aec7806152a21256"/><dir name="Payment"><dir name="Transaction"><file name="Collection.php" hash="46c4cbe70814d8248cbcd55914aa4760"/></dir><file name="Transaction.php" hash="a424659b343ac94261106baa4ab76c48"/></dir><dir name="Report"><dir name="Settlement"><dir name="Row"><file name="Collection.php" hash="5e2ad46cf5c7c0f5351ba9657f633f17"/></dir><file name="Row.php" hash="3dfbb758901b47830b60f114073004c0"/></dir><file name="Settlement.php" hash="1acdff09f13b0d35b656aec95d6d1c73"/></dir><file name="Setup.php" hash="37c6198a0a0e5daa1deb681b98d81bf5"/></dir><file name="Session.php" hash="afe645f7f8170a396398c7b19ccb6081"/><file name="Standard.php" hash="7765aa2b21914c56a89ee5e620c3e19c"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Cert.php" hash="e2e25660cbd04ebca8ecece49b2fd048"/><file name="Cron.php" hash="ef3cc65eee0ceac037efa06c9f183ca1"/><file name="MerchantCountry.php" hash="da78abe736c024ecf6f1ddecaaa63526"/></dir><dir name="Source"><file name="AuthorizationAmounts.php" hash="571d007a29c74c59c744f50d29842543"/><file name="BmlPosition.php" hash="60bbdfda6cd86dda0fe90c9700cf2636"/><file name="BmlSize.php" hash="607c977a8aaafcc229143b82cf430c25"/><file name="BuyerCountry.php" hash="799dde6860e145d7b2433d23728a82f5"/><file name="FetchingSchedule.php" hash="f0e755d7731dfb5a2347bf10301704cb"/><file name="Logo.php" hash="27e65c01c0772b1c0d80dcdef6cc4f5b"/><file name="MerchantCountry.php" hash="6ba3235a1ee581aaf4d6713f36588fb5"/><dir name="PaymentActions"><file name="Express.php" hash="801ace31eab8ee2c6d7c8a7e16d9e6db"/></dir><file name="PaymentActions.php" hash="b5b002fac765911a65902f60f0653be7"/><file name="RequireBillingAddress.php" hash="411ab6c7e05926bcf468abf930537ce7"/><file name="UrlMethod.php" hash="f63d754747653c20805e462c19ea5c7e"/><file name="YesnoShortcut.php" hash="90d03993b09bedefc96ffd9805ed1431"/></dir></dir></dir></dir><file name="UnavailableException.php" hash="6aea3ef7d5c6faa61e7db9f7a0642730"/><dir name="controllers"><dir name="Adminhtml"><dir name="Paypal"><file name="ReportsController.php" hash="8a89aa9cddb18427419f685703580e3a"/></dir></dir><file name="BmlController.php" hash="78af6f6e5e867ca3db8c884c06192719"/><file name="ExpressController.php" hash="7ddeae6fed13f82b047a913bb26db088"/><file name="HostedproController.php" hash="19064da0129b279576087d06be8cf6cc"/><file name="IpnController.php" hash="47cb003f48e69d3e287b734356ddd034"/><file name="PayflowController.php" hash="62adc0e1b8c39a493c9dd6878da1b56b"/><file name="PayflowadvancedController.php" hash="461bd3aa8ea93322a72b54bca8284d29"/><file name="StandardController.php" hash="362883e8f15d465d51ab2968a94e9479"/></dir><dir name="data"><dir name="paypal_setup"><file name="data-install-1.6.0.5.php" hash="059b1d115ed5c3bb2a36a9812d35efcf"/><file name="data-upgrade-1.6.0.2-1.6.0.3.php" hash="46c7aff595df6d6bb6271f9f59517dd6"/><file name="data-upgrade-1.6.0.4-1.6.0.5.php" hash="37291b0a8e2303c570801b2969a82525"/><file name="data-upgrade-1.6.0.5-1.6.0.6.php" hash="fa6c77f9043beff5657041a8ee147306"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="fab4507688b1a9c58c66c03a8d896db3"/><file name="config.xml" hash="34dd5390aea2da6b8879d8d829252eef"/><file name="system.xml" hash="b229ac8bc2bef28008308a1a7e64cd61"/></dir><dir name="sql"><dir name="paypal_setup"><file name="install-1.6.0.0.php" hash="e2a0c2a2016d509249a35bf9a2bc8db7"/><file name="mysql4-install-0.7.0.php" hash="f244a03c132a74f31c9f31f1d94a7546"/><file name="mysql4-install-1.4.0.0.php" hash="5b7b095062586fad639f38e6093510ab"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="42c40b94a3dedfc1626294b4f2ef8c82"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="14ae3790f7806b0a42a5d41cad31c86b"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="e35cb5cd3389959767a64db45574d84d"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="29ecb0e7970cb79297902da47cf467ae"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="8e744cbcd04e839ddc7fddaaaa32796c"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="5c36c70f4c75b61a1f259022d30b7a4b"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="06f5655d0fb454ef38e3789d601222fa"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="6b9ddbbf5508514480fa87bbd76ee985"/></dir></dir></dir><dir name="PaypalUk"><dir name="Block"><dir name="Bml"><file name="Form.php" hash="cf1b947ad1c91ba44acedf5decb9a532"/></dir><dir name="Express"><file name="Form.php" hash="f5373e3c537b94289836075f9afb0b51"/><file name="Shortcut.php" hash="b2cdf2c320cd92884fd4abf89faef178"/></dir></dir><dir name="Helper"><file name="Data.php" hash="8e0d1ad6e9324789591fc6239fc3c6ac"/></dir><dir name="Model"><dir name="Api"><dir name="Express"><file name="Nvp.php" hash="64ef2065db009f8abd4648012d824e0c"/></dir><file name="Nvp.php" hash="6af3185466eb67691c2ef46c0a80286b"/></dir><file name="Bml.php" hash="8e3a5e9fe353ea100b3cfe59d230356b"/><file name="Direct.php" hash="be8ed9705207543d515177edabbfb41a"/><dir name="Express"><file name="Checkout.php" hash="953e880327e7656ce8b6beecfe8d8253"/><file name="Pro.php" hash="1e637be10b977f8076cf50afda5d13a3"/></dir><file name="Express.php" hash="5d7be27ca6afc8c62cccccd8c8ce736a"/><file name="Pro.php" hash="5c585f87407ae54513c53d09976832e3"/><file name="Session.php" hash="1b6cb3ba3f1d5c25f5cc39adafb2209b"/></dir><dir name="controllers"><file name="BmlController.php" hash="a0fc8df60f523651cdaecebc60098ece"/><file name="ExpressController.php" hash="784cc6db9289eef6341d1f06690bf54d"/></dir><dir name="etc"><file name="config.xml" hash="04422987a1fa80e48b0139077b8a246a"/></dir><dir name="sql"><dir name="paypaluk_setup"><file name="install-1.6.0.0.php" hash="2cb3e7e5d9b500a7635404f507d868d3"/><file name="mysql4-install-0.7.0.php" hash="740e1532e31f969125a4b91219b9a0c7"/></dir></dir></dir><dir name="Persistent"><dir name="Block"><dir name="Form"><file name="Remember.php" hash="5794677bd73e8be3cfd7fa8f18fdcdd2"/></dir><dir name="Header"><file name="Additional.php" hash="92edbc33bdefc70527d179dd23ef979c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="17656b16d662546d0828b8e4d34faa33"/><file name="Session.php" hash="adcb0096928cea4a896ce70b14087900"/></dir><dir name="Model"><dir name="Observer"><file name="Session.php" hash="5ae73e511745a43fcc752d33931a34a2"/></dir><file name="Observer.php" hash="fe086526a2b481c67c67c5c73ba5da3b"/><dir name="Persistent"><file name="Config.php" hash="483d2a275e39f96af90205a376e9fb22"/></dir><dir name="Resource"><file name="Session.php" hash="681b6641939e4a7b9625dfc11c2bf2d6"/></dir><file name="Session.php" hash="6e09f7fc7fac22537b251053b9d32ff8"/></dir><dir name="controllers"><file name="IndexController.php" hash="33f033033719d3964c41def44f85663e"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3771392801e23c17826e75a9b25372b4"/><file name="config.xml" hash="eec576f615c067affcadf38c40a715ef"/><file name="persistent.xml" hash="018e1087987582ea2136a1c6431278fe"/><file name="system.xml" hash="f7964f686bd76e24c6a8ee84ecaca430"/></dir><dir name="sql"><dir name="persistent_setup"><file name="install-1.0.0.0.php" hash="89227fe784a684f21323cbb1721fb0d1"/></dir></dir></dir><dir name="Poll"><dir name="Block"><file name="ActivePoll.php" hash="2428695a559f9c0c25a26dc1c6e7cbab"/><file name="Poll.php" hash="fc9c9fdf65cb9dd9ec74cf6c183a0adc"/></dir><dir name="Helper"><file name="Data.php" hash="def7c69cc26cf99246cc730f73e1e3ea"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Poll"><dir name="Answer"><file name="Collection.php" hash="b556c72503481d769f6892645ddf1810"/></dir><file name="Answer.php" hash="1d2520e6b3a8e4950a44df50cb942a27"/><file name="Collection.php" hash="66f3595487040e11e6ea00ee45a99b2f"/><file name="Vote.php" hash="a55849069d7fcccd99c2eac27c138591"/></dir><file name="Poll.php" hash="46b968aa2732df14f122b2f1f166fd02"/></dir><dir name="Poll"><file name="Answer.php" hash="2182f29b3b65a58dfd3562a1383dec50"/><file name="Vote.php" hash="1220c89848a6472a8d42b4c6be4fe6ca"/></dir><file name="Poll.php" hash="37200d119b6de58337a6a818ccdca25a"/><dir name="Resource"><dir name="Poll"><dir name="Answer"><file name="Collection.php" hash="7bc645da37afa74785cefa000c4b5497"/></dir><file name="Answer.php" hash="05e9e5d2f19cbce8b84bca05a0b63134"/><file name="Collection.php" hash="cc923a4031b6cd1b568c42d2e8f6f0b4"/><file name="Vote.php" hash="c80497ea204f0e14e54b731f3bdf45e7"/></dir><file name="Poll.php" hash="df6d9f88b6fa3074fbaaf897c610e458"/></dir></dir><dir name="controllers"><file name="VoteController.php" hash="54d64a155fe9582cce3dee023a63f5fc"/></dir><dir name="data"><dir name="poll_setup"><file name="data-install-1.6.0.0.php" hash="e4f42b9770bdb857a581a15e3adf5d8e"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="0228e6dc8be6b89bc8327d82a72a1cdc"/><file name="config.xml" hash="33db549c84b624056296d3d8d3cff78d"/><file name="system.xml" hash="5d03f833d9d4d358136c279264e7d108"/></dir><dir name="sql"><dir name="poll_setup"><file name="install-1.6.0.0.php" hash="3a73db3ca9bb2c9b0ab4b303fd7efc42"/><file name="mysql4-install-0.7.0.php" hash="190909c1080304cba03e361eadfbaae8"/><file name="mysql4-upgrade-0.6.0-0.6.1.php" hash="d1284367365dc74d3b59e6500ef1ab94"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="41a8c5bb804dda85121b359d0775e4ae"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="20f73e58e91b163f8a0080ceabfc5464"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="eac1c3f580e97390201b577d83e1a381"/></dir></dir></dir><dir name="ProductAlert"><dir name="Block"><dir name="Email"><file name="Abstract.php" hash="cfa24038551836778d5dac621a40833b"/><file name="Price.php" hash="5da89d1e652e08598a2bac62e63d9b7e"/><file name="Stock.php" hash="28c2abc40aa9fafaddd734f1abc85532"/></dir><file name="Price.php" hash="18c453fb5964d7c50b5209273d38a0f6"/><dir name="Product"><file name="View.php" hash="62b24a700f162f896ae86fa3acc827ea"/></dir><file name="Stock.php" hash="7c004818f1af75d884a62b3016d997fe"/></dir><dir name="Helper"><file name="Data.php" hash="db8a716551468ff9c77f8fc6c9db7310"/></dir><dir name="Model"><file name="Email.php" hash="4790a3c20b28cba3edd90cae78b278e7"/><dir name="Mysql4"><dir name="Price"><file name="Collection.php" hash="85751f5b1a72f6bcd11b3805e63a5005"/><dir name="Customer"><file name="Collection.php" hash="369d078510d7947c732b5b86ddc95f85"/></dir></dir><file name="Price.php" hash="b384a5f9340ad848799a3fdb88701de8"/><dir name="Stock"><file name="Collection.php" hash="dfcbbe2f7b29139801339b994332249f"/><dir name="Customer"><file name="Collection.php" hash="fc817bc79bc6ec62806321a9031babc8"/></dir></dir><file name="Stock.php" hash="2d0c857d0505931e417d13a425832d6f"/></dir><file name="Observer.php" hash="c0ce37fc22caf339bfe7368f1a75f5d0"/><file name="Price.php" hash="a8adb5a314d448f412f3be2851dbe2de"/><dir name="Resource"><file name="Abstract.php" hash="5e7b69574dc2ebb59b40ab7d2c9c0765"/><dir name="Price"><file name="Collection.php" hash="75de0797acab577891d55918d8226759"/><dir name="Customer"><file name="Collection.php" hash="90a486c8338befca41ba91bfe2bac212"/></dir></dir><file name="Price.php" hash="8eae6baeeb33c29fd4d20072f7f4b03d"/><dir name="Stock"><file name="Collection.php" hash="d370c2841d6c2db3265daad7df79d778"/><dir name="Customer"><file name="Collection.php" hash="586ebf48b4e6ea50b0dab75098d16d22"/></dir></dir><file name="Stock.php" hash="179ee6e99b0d9e0fc99ee65b21e2aa3b"/></dir><file name="Stock.php" hash="86899d6412c3c20d203dcbb8a9231793"/></dir><dir name="controllers"><file name="AddController.php" hash="b6c15fa6c403080d42dec29983d01cf1"/><file name="UnsubscribeController.php" hash="0aa60cf7437c64b7c5dc61832a2efe81"/></dir><dir name="etc"><file name="config.xml" hash="2b33af987fffc0ae9e01d72165ba9afc"/><file name="system.xml" hash="bae0a5263513a3a35c1a22562c13352e"/></dir><dir name="sql"><dir name="productalert_setup"><file name="install-1.6.0.0.php" hash="9aa79e33fcec15e95743593fe59f2390"/><file name="mysql4-install-0.7.0.php" hash="f7a08cbc249da6a74f3d0c481e0d6efc"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="15c96f77d2d484c064e62a386f724e8d"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="746880502eae6875f53f55caf018d77b"/></dir></dir></dir><dir name="Rating"><dir name="Block"><dir name="Entity"><file name="Detailed.php" hash="2df366bd9bd76c58c562d5fb2da5adda"/></dir></dir><dir name="Helper"><file name="Data.php" hash="1497a9c555ed61310cd363e73452fe75"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Rating"><file name="Collection.php" hash="2be82e08c380c2d374621537c6aedb6a"/><file name="Entity.php" hash="e88daac6bdd143fae6da93dd9f8a2225"/><dir name="Option"><file name="Collection.php" hash="6835bedd300a506b5a76d690bfbfce9e"/><dir name="Vote"><file name="Collection.php" hash="a74f8e93bda26728e724e950fed66cc8"/></dir><file name="Vote.php" hash="70276c04262057ed0eb51f525059748c"/></dir><file name="Option.php" hash="9abfbec461869fce3347fff5ef85099a"/></dir><file name="Rating.php" hash="be6495cad8183742287e84fc56330d00"/></dir><file name="Observer.php" hash="333fa3beea2acdf12fe82bc58db879ee"/><dir name="Rating"><file name="Entity.php" hash="0eaa3be9aae9e66598cab8864411d45a"/><dir name="Option"><file name="Vote.php" hash="e27da11404c974828d3528345136801c"/></dir><file name="Option.php" hash="f02069ffffe0e1329c01f8e6f077b138"/></dir><file name="Rating.php" hash="13ce1479793c6ac4f91da72a7194eb33"/><dir name="Resource"><dir name="Rating"><file name="Collection.php" hash="c534ff40ef290d3c56f0af910c449e92"/><file name="Entity.php" hash="f5afaed9e816eec3166f691359325ddb"/><dir name="Option"><file name="Collection.php" hash="eccb091c85da3a34940054e6f073269b"/><dir name="Vote"><file name="Collection.php" hash="2014d6044a2a65690955b76af44f897d"/></dir><file name="Vote.php" hash="a7571a7766ef8122df604b33c4fa6ec7"/></dir><file name="Option.php" hash="dafba3671508ceb3638a1a43c8608416"/></dir><file name="Rating.php" hash="ed7239eaea66379e5591f23b066572d9"/></dir></dir><dir name="data"><dir name="rating_setup"><file name="data-install-1.6.0.0.php" hash="d4498d6f3949264bdeb41786e9b819f7"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="951372191ab682aa0294141c8f909b2a"/><file name="config.xml" hash="5e9779ebe932f8568cbf2a0cd694894f"/></dir><dir name="sql"><dir name="rating_setup"><file name="install-1.6.0.0.php" hash="dff36c635b4f390d57bef9960ab61450"/><file name="mysql4-install-0.7.0.php" hash="43da7f53e940b3228d61b3b7e4ea8d86"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="878afa7015bc930899fcd00dd55c2e78"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="b8adde02281d654b07f01569fc6cef40"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="85860ce2789eb87b9d121ef77aadadc6"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="e289d6dc315380df36bb514f3fafb664"/></dir></dir></dir><dir name="Reports"><dir name="Block"><dir name="Product"><file name="Abstract.php" hash="578257203342bebb0d973e20bf424237"/><file name="Compared.php" hash="8c76e6f2101f15f09c72ad0dc7ce70e6"/><file name="Viewed.php" hash="b20d015e5507cb98a8cf924c782d865c"/><dir name="Widget"><file name="Compared.php" hash="e8d9c4dd37391851667bf377fdaf403b"/><file name="Viewed.php" hash="553c388ee11f7e5181ed22936af26e7e"/></dir></dir></dir><file name="Exception.php" hash="617108bc39f17464f0884bc9269a5256"/><dir name="Helper"><file name="Data.php" hash="57200f54d3da931422d6a8c586532022"/></dir><dir name="Model"><file name="Config.php" hash="f96b39428330ca93965b3209071e4ed9"/><dir name="Event"><file name="Observer.php" hash="c12b50f301025d0fa06d7de61941393a"/><file name="Type.php" hash="cf0f1c1d1f3b510644798c27a17c9b97"/></dir><file name="Event.php" hash="34aceecd3f214f6aba29668554411b04"/><file name="Flag.php" hash="2e4623f20e42f90f25f7f6cc60ad7f1f"/><dir name="Grouped"><file name="Collection.php" hash="5efbafd7b095ab116892abcd060c847d"/></dir><dir name="Mysql4"><dir name="Accounts"><file name="Collection.php" hash="0cd8c4e2b3f59fd776d56243e5d62ced"/></dir><dir name="Coupons"><file name="Collection.php" hash="612aaff421905d73df9243358ca05438"/></dir><dir name="Customer"><file name="Collection.php" hash="033c927182b930e159a21282f1ed7f47"/><dir name="Orders"><file name="Collection.php" hash="84fa52e616801dddd7a27b80504a06dd"/></dir><dir name="Totals"><file name="Collection.php" hash="675557cf33c7a70a8be723be30ba4b9a"/></dir></dir><dir name="Entity"><dir name="Summary"><dir name="Collection"><file name="Abstract.php" hash="bdd85eef6cac58409adc3964ae6cf6c2"/></dir></dir></dir><dir name="Event"><file name="Collection.php" hash="d9e615045a5a035931d317905d76f724"/><dir name="Type"><file name="Collection.php" hash="d53a6f31cdaaa4d32b52deeaafcff1f9"/></dir><file name="Type.php" hash="c345412280dfb442121e3602d8b16764"/></dir><file name="Event.php" hash="e72c63316342488accdeb68d11ab70cb"/><dir name="Invoiced"><file name="Collection.php" hash="4d06a58ba94a9c755f93eaefdb6a3a08"/></dir><dir name="Order"><file name="Collection.php" hash="8d2cba8be937acd70e3aca7db9306abb"/></dir><dir name="Product"><file name="Collection.php" hash="ace029a821d771876e671d46f27e60f4"/><dir name="Downloads"><file name="Collection.php" hash="83f9551343cb00586e03a255c32f1b0a"/></dir><dir name="Index"><file name="Abstract.php" hash="25a6163346a75c1e40cc35ef5c506d24"/><dir name="Collection"><file name="Abstract.php" hash="80a7c9a2fbb2dea4d3139971fc508775"/></dir><dir name="Compared"><file name="Collection.php" hash="de0ce45c836245949ea314f638f21632"/></dir><file name="Compared.php" hash="5d89a2b48b220c7c918f78619160f357"/><dir name="Viewed"><file name="Collection.php" hash="a7c3fd32783500207532d248397ea6d6"/></dir><file name="Viewed.php" hash="e7e3bd541dc11358384591075276dfad"/></dir><dir name="Lowstock"><file name="Collection.php" hash="c311fead7cef2a26b87aecc38aadcc3a"/></dir><dir name="Ordered"><file name="Collection.php" hash="ef8ebad26866118a380433333ce47380"/></dir><dir name="Sold"><file name="Collection.php" hash="94ad564ef224cfa524a51d726a33a978"/></dir><dir name="Viewed"><file name="Collection.php" hash="e278a7c870b0a6ee0d0f5671814d8f94"/></dir></dir><dir name="Quote"><file name="Collection.php" hash="fd4b4c28b862298c3b4b04f573241d17"/></dir><dir name="Refunded"><file name="Collection.php" hash="64990addecffaa1d86bc02d3b2981d9f"/></dir><dir name="Report"><file name="Abstract.php" hash="663e9bb9143398dac8d11132390756d4"/><file name="Collection.php" hash="e64ec700bfb2a1f7d728ebd94fc93b71"/></dir><dir name="Review"><file name="Collection.php" hash="6efb24b1edfaf5800256b3080a3ebf7b"/><dir name="Customer"><file name="Collection.php" hash="7100d4c24e90087a0c86956d557392d3"/></dir><dir name="Product"><file name="Collection.php" hash="fd7249e0d7f7926c7bdf6ea2816f10cc"/></dir></dir><dir name="Shipping"><file name="Collection.php" hash="b03601cb3818a005278584a09333481e"/></dir><dir name="Shopcart"><dir name="Product"><file name="Collection.php" hash="19308938fe4f69eb9da330687a4d2cd2"/></dir></dir><dir name="Tag"><file name="Collection.php" hash="8cc1e1483ce042ba13eceb2809f4653f"/><dir name="Customer"><file name="Collection.php" hash="27db3ccb1682c57477a953bc31ddcd0e"/></dir><dir name="Product"><file name="Collection.php" hash="c955864f76538d1cf5aaed5dd0a76aef"/></dir></dir><dir name="Tax"><file name="Collection.php" hash="42c124a9f1536dfd0f5025b5e078aa63"/></dir><dir name="Wishlist"><file name="Collection.php" hash="2e72a148c7257bcadc36a0397633cfb2"/><dir name="Product"><file name="Collection.php" hash="aa120dc6a1d5fa2a9ac4f09fe5724e65"/></dir></dir></dir><dir name="Product"><dir name="Index"><file name="Abstract.php" hash="a6ac5c911507e58943ce921591bb2489"/><file name="Compared.php" hash="f82383db41fd5055301154a2d0d700bd"/><file name="Viewed.php" hash="4fac7d613ac53411b39c4d003b04e4ae"/></dir></dir><file name="Report.php" hash="68fc1cd405bb41b8e1b04750b1bc7360"/><dir name="Resource"><dir name="Accounts"><file name="Collection.php" hash="fee03c893f5e04633b0b2082fe9e2ef0"/></dir><dir name="Coupons"><file name="Collection.php" hash="574b5b8dd40aa8b21bc7c10eb1381a72"/></dir><dir name="Customer"><file name="Collection.php" hash="3a8028e41a4a57ba87ef84e571cfe3f1"/><dir name="Orders"><file name="Collection.php" hash="fe5f4e7053223edbd5e0fc165b589b63"/></dir><dir name="Totals"><file name="Collection.php" hash="e4bb6c1e9d11ed44a25b500eab9f3522"/></dir></dir><dir name="Entity"><dir name="Summary"><dir name="Collection"><file name="Abstract.php" hash="659c86a44c2fc759f57445735549462d"/></dir></dir></dir><dir name="Event"><file name="Collection.php" hash="e580c833e0f97a3e184f22eec5b37126"/><dir name="Type"><file name="Collection.php" hash="ec8bc58faba0544ea3850b0903a8aa48"/></dir><file name="Type.php" hash="85714e6c137da8bd4549665a0cbe4e2f"/></dir><file name="Event.php" hash="4317ab0d3b4535f48da744f344275648"/><dir name="Helper"><file name="Interface.php" hash="81dc8c30550774a7adac91a70dd54bf6"/><file name="Mysql4.php" hash="0a1a06c444e7c75d0cac6a8f280cfb03"/></dir><dir name="Invoiced"><file name="Collection.php" hash="d0f04c9ed71b3aca95d9565a580cec0b"/></dir><dir name="Order"><file name="Collection.php" hash="a1bd2a47354577ad6b721cf64839ddbd"/></dir><dir name="Product"><file name="Collection.php" hash="ac4f87d98924f8894a58e37f0f8df435"/><dir name="Downloads"><file name="Collection.php" hash="1cf51bea3e7c8ea4eb767c75d4694676"/></dir><dir name="Index"><file name="Abstract.php" hash="90d75ed2b95b7bf9cf2139a5d396bfb6"/><dir name="Collection"><file name="Abstract.php" hash="717d1cd42e5335c877a17be8730ea870"/></dir><dir name="Compared"><file name="Collection.php" hash="1eb2cb2f7bac8b19c640daa25b617234"/></dir><file name="Compared.php" hash="939443ab1103343f51bea61016b4d27b"/><dir name="Viewed"><file name="Collection.php" hash="826efd82bfccd82219fa9b438961b334"/></dir><file name="Viewed.php" hash="d124f494245b2560c6ae0f18983188fd"/></dir><dir name="Lowstock"><file name="Collection.php" hash="22943a8e88ab28cec838fed6c3d80ef4"/></dir><dir name="Ordered"><file name="Collection.php" hash="b7aff86efc7690ae6cc6344ff43f51d1"/></dir><dir name="Sold"><file name="Collection.php" hash="d8593a120fa2a8371c5c4aa0c8a25a0e"/></dir><dir name="Viewed"><file name="Collection.php" hash="5777a50f19b37ee1aae6df0eb082120c"/></dir></dir><dir name="Quote"><file name="Collection.php" hash="1518826f907902ead06c4ba3a9158c0e"/></dir><dir name="Refunded"><file name="Collection.php" hash="edddbd898f30863b840110329631d264"/></dir><dir name="Report"><file name="Abstract.php" hash="e8b84cda293b5925a7d822b2618306b4"/><dir name="Collection"><file name="Abstract.php" hash="be10b98d8158c4e52019091792e8c618"/></dir><file name="Collection.php" hash="cd4deae110bccaaec9ec2f3a3fec14b8"/><dir name="Product"><dir name="Viewed"><file name="Collection.php" hash="7f7ba5b8925ab4f3d54af661861e8819"/></dir><file name="Viewed.php" hash="cc5f49fac0b0b3550e923f7b8eb60d2c"/></dir></dir><dir name="Review"><file name="Collection.php" hash="1e5a8704988f2bc5c0046097032c7dfc"/><dir name="Customer"><file name="Collection.php" hash="f18eb356beb157be4eb37c8af6d8ec8e"/></dir><dir name="Product"><file name="Collection.php" hash="9379e71ecaf6c6bf23faab0bed211058"/></dir></dir><dir name="Shipping"><file name="Collection.php" hash="33d173b19fca8f7c78108c3e9062f5d6"/></dir><dir name="Shopcart"><dir name="Product"><file name="Collection.php" hash="ae0e5190ef686b2d7e8639b474e6a6fd"/></dir></dir><dir name="Tag"><file name="Collection.php" hash="b7359de3cfa026bd219d76f963991a35"/><dir name="Customer"><file name="Collection.php" hash="9b57e619f7aa720f190cbd266c47f1b2"/></dir><dir name="Product"><file name="Collection.php" hash="5a55614f682cb61db52337b2e4898c5f"/></dir></dir><dir name="Tax"><file name="Collection.php" hash="46253868811290d102283fffc76b60c0"/></dir><dir name="Wishlist"><file name="Collection.php" hash="46df78b3756ffda1baff9802f39ca18a"/><dir name="Product"><file name="Collection.php" hash="31aaf993411e2957520b89e9654b0ace"/></dir></dir></dir><file name="Session.php" hash="c913987e12bc3c14a1493078fa0cc7f9"/><file name="Test.php" hash="0393ad68e17f904a7a750901aac16668"/><file name="Totals.php" hash="0c7521b26433f20d43f7cd14c0d44fb5"/></dir><dir name="data"><dir name="reports_setup"><file name="data-install-1.6.0.0.php" hash="e3ff9bb6870eb75e131047d5c3803bf6"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="26e74f9cb9bff0fd18b52184700b8c2b"/><file name="config.xml" hash="6f255f3c6eddc8afb7e9c41ff37f74a0"/><file name="system.xml" hash="5661e56b5032074a0ce9972580c52606"/><file name="widget.xml" hash="205050df167238d66730ee69eaf6f6a7"/></dir><dir name="sql"><dir name="reports_setup"><file name="install-1.6.0.0.php" hash="ed84a64f623472cb570d062f83f0af44"/><file name="mysql4-install-0.7.1.php" hash="726b040c54515d68f09d123770d9028b"/><file name="mysql4-install-1.5.0.0.php" hash="65582d059b8fdf311793143b119f2536"/><file name="mysql4-install-1.6.0.0.php" hash="a87f4f510630a48695e4a18eece61064"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="a19dcddecfbf548fa2e591dbc2ca9810"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="87a2ea5896fed2cdb80dafdfd153ebc5"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="2acc3102db4ca570f17e6c1b863d0866"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="11377f7648ab6f02858afe240a9b43a0"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="c410cb005fc894c9ac889548d7331c23"/><file name="mysql4-upgrade-0.7.5-0.7.7.php" hash="7bf77af57e370205ad5e825388a01f11"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="9e0a0522db37067818ab59c2ad1819e7"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="e7373ad67f1f1da45d98f10e38d6cc90"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="ae5c36c5d517af8cdb9d2162da7a2517"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="d18b4b1e51cce1f465349a0e7e972b31"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="a64567d3c7c0b712373a85fe8165b616"/></dir></dir></dir><dir name="Review"><dir name="Block"><dir name="Customer"><file name="List.php" hash="688c97060d2bd41c8b34a23e67cd0946"/><file name="Recent.php" hash="80a4cb7d0d03e44540245141ce9087bb"/><file name="View.php" hash="e999f76f350ceac3141c8c5fbe081f14"/></dir><file name="Form.php" hash="f9aa8849530864916d62ef0950d306f6"/><file name="Helper.php" hash="c58352105799c1f6fd74faa2bbf1e469"/><dir name="Product"><dir name="View"><file name="List.php" hash="9d0dd075156974df0efab6b6d24dfbe4"/></dir><file name="View.php" hash="ba6fbf6d0d0810aeb6a4fe8ef511c543"/></dir><file name="View.php" hash="d1f8334e56c287db50ed36c8ba210b32"/></dir><dir name="Helper"><file name="Data.php" hash="336eafffbcd2ad9ecd0c1a2e28fc066c"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Review"><file name="Collection.php" hash="aa368d8d499b9bcc8673817caf374596"/><dir name="Product"><file name="Collection.php" hash="797dc7211eb9b41025ed50dfb579061b"/></dir><dir name="Status"><file name="Collection.php" hash="1a16ff1e417289416ab7edf8e1b5df7c"/></dir><dir name="Summary"><file name="Collection.php" hash="d76d4011d5235c49d5813fab3088d68d"/></dir><file name="Summary.php" hash="e7f2d56ff21ee5dee3d5071eb448e8d1"/></dir><file name="Review.php" hash="852d52d9969952379b14cb98157d6c34"/></dir><file name="Observer.php" hash="babd7c7b8163adc0394e4bab6f2df8cb"/><dir name="Resource"><dir name="Review"><file name="Collection.php" hash="1207b5cfaa2e6718164fa1bb61585fa2"/><dir name="Product"><file name="Collection.php" hash="cfa52fb26168c53b854011483c8af3f4"/></dir><dir name="Status"><file name="Collection.php" hash="64e105f2a37553dc9a0e30615e4a3cdb"/></dir><file name="Status.php" hash="8eb6f8acbeeb80965bd998002ae4c234"/><dir name="Summary"><file name="Collection.php" hash="6ae6e402541869c0654f466485e1a224"/></dir><file name="Summary.php" hash="5b6379cd3d82e3b36f8278fa212583df"/></dir><file name="Review.php" hash="f59efd2e287bb7bb421a0749702234e6"/></dir><dir name="Review"><file name="Status.php" hash="34ce4efbfdbc4a43815168f3cd8707f1"/><file name="Summary.php" hash="5b5dd53aa74e975654f07bce1d3ef6f7"/></dir><file name="Review.php" hash="2244401a8a7dc904ba266f02e8254966"/><file name="Session.php" hash="4be3894bef741a016c2e54818f14c686"/></dir><dir name="controllers"><file name="CustomerController.php" hash="23a25aab3f28015ba72084057b56783a"/><file name="ProductController.php" hash="e1573472537d3148fcff527df5161f98"/></dir><dir name="data"><dir name="review_setup"><file name="data-install-1.6.0.0.php" hash="91b9ef227d8c39b83922c6bd6cd3dda8"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="be1c195ad059fdcbc14c339bff52498a"/><file name="config.xml" hash="86234db3b0bdf986e4339678994adef7"/><file name="system.xml" hash="13a6cc0a5c42f2858800582f12c1b49a"/></dir><dir name="sql"><dir name="review_setup"><file name="install-1.6.0.0.php" hash="a2f341c93efbffca7b896e7ecd02cfd3"/><file name="mysql4-install-0.7.0.php" hash="53fd7fcfda5f226273e5a27a83db6e19"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="fe61f3cbcb86c0564a4e10bc96ca2edf"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="1a0b13fe3b58a9603e966e3cf72a24bd"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="5fd41a667f5c19e76a48eff2f4b95744"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="772490f892fe928a156cbc5f8f26a735"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="8f1d7567b707feccdb5594765a2eb810"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="3c27dc97c75195008250fa6e7fc366b2"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="3e3998abe2c3be13a06fecabcadd8c70"/></dir></dir></dir><dir name="Rss"><dir name="Block"><file name="Abstract.php" hash="228f9f7f2d8ef4293e7a6964ffdbadda"/><dir name="Catalog"><file name="Abstract.php" hash="2b8416813980dfc482d3f864a9765abe"/><file name="Category.php" hash="9e3e8e3ae403c6dff2f189b691fab602"/><file name="New.php" hash="77b6e6d2f74d6f0e0ac2d81cdb9935dd"/><file name="NotifyStock.php" hash="69973b399bc7b66099f5f62a03dfb9e3"/><file name="Review.php" hash="25ff0148e4c74326e7f9f2007edd6f9a"/><file name="Salesrule.php" hash="b61dbfbbd59ce2cebec03a7a8327c3be"/><file name="Special.php" hash="4db5552d06528898bce0722326b5efa7"/><file name="Tag.php" hash="13d733ba64269d580ce1ef7e5f0be6a7"/></dir><file name="List.php" hash="3bb032c882687dc98520a32596c191f6"/><dir name="Order"><file name="Details.php" hash="b95b6ede9c431ea8d79098c8c8238eea"/><file name="New.php" hash="791e6f6319ff6c6d4da772def4a11c98"/><file name="Status.php" hash="cde91abfbe67ab81a35535a8c2f214a0"/></dir><file name="Wishlist.php" hash="a20670c9d52c4247c71e137dd7336c87"/></dir><dir name="Controller"><file name="Abstract.php" hash="634e6eb479e50f2a67a43cc89c158c3e"/></dir><dir name="Helper"><file name="Catalog.php" hash="f4cb16624431109213432bb608a08605"/><file name="Data.php" hash="5b1ccf2ac6afcbd4245704e6b5cd2677"/><file name="Order.php" hash="7d61ac8b1e6715ece1cdf5dae892bdd0"/></dir><dir name="Model"><dir name="Mysql4"><file name="Order.php" hash="123e72ffb9e3350b9cea4c71e9097c39"/></dir><file name="Observer.php" hash="d841dfe9cbf1902a55dae2fac695ed1d"/><dir name="Resource"><file name="Order.php" hash="4e58a6427568518788372023ddacca81"/></dir><file name="Rss.php" hash="53efc26d427153f25e2335ed38d5448e"/><file name="Session.php" hash="c38ba113406171cd3a343f88161f0a4f"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Links.php" hash="b81829f3b076d18d0d302cd46aef4a6d"/></dir></dir></dir></dir><dir name="controllers"><file name="CatalogController.php" hash="dbb00e3fd18a4e10d3d092e839b50e85"/><file name="IndexController.php" hash="aefcc726c3b61bc9532f4a961ff39ef0"/><file name="OrderController.php" hash="ca42d687ab4548e1dde4cb454e8138df"/></dir><dir name="data"><dir name="rss_setup"><file name="data-install-1.6.0.0.php" hash="983dc7327edd051187c6b9448425cec0"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d34139ee3d3f9e03595bdd15ff8f4521"/><file name="config.xml" hash="22c6a8e0731675be23efff9391c602be"/><file name="system.xml" hash="622587c3aecac834465f700fb316b024"/></dir></dir><dir name="Rule"><dir name="Block"><file name="Actions.php" hash="d750c05b56556998b59731e160540c59"/><file name="Conditions.php" hash="eaea483b3bd5f3a146fb6581978af90d"/><file name="Editable.php" hash="2b26ef990188a91564b7290c9b0659de"/><file name="Newchild.php" hash="05a8c5a2cb761288766b4d3989ee29e5"/><file name="Rule.php" hash="c4d713f909abe86239d20a60d0607d6c"/></dir><dir name="Helper"><file name="Data.php" hash="81760cf3af0ab5289345e49b0e3ba54a"/></dir><dir name="Model"><file name="Abstract.php" hash="4c5e20c95468d96b4833f31798799ad7"/><dir name="Action"><file name="Abstract.php" hash="c52c1e09ca72326dc05769caacce9e39"/><file name="Collection.php" hash="9035c5268da66f28206235a29ebc872d"/><file name="Interface.php" hash="9b17800993d0ec330e538c7710eada17"/></dir><dir name="Condition"><file name="Abstract.php" hash="cc88075d09f80e6971b50a629d68af58"/><file name="Combine.php" hash="67103b5576ada6147fbef7728050f4f1"/><file name="Interface.php" hash="9a325c6097fb3bc4bac88b4cc0ca094d"/><dir name="Product"><file name="Abstract.php" hash="a4c44d2039940a117e67ccb86ab25e74"/></dir></dir><file name="Environment.php" hash="74c9ff6908d88aa5cb94c403479c1fe9"/><dir name="Mysql4"><dir name="Rule"><file name="Collection.php" hash="76fe147ad14cb1847220367e1795acb7"/></dir><file name="Rule.php" hash="e62050e81ffae0f4fb5e5524c6bd60f2"/></dir><dir name="Renderer"><file name="Actions.php" hash="79c006e7231845575db4bdab65b37223"/><file name="Conditions.php" hash="1554a57063852a8b5eea22d1ff4286f5"/></dir><dir name="Resource"><file name="Abstract.php" hash="c9dc026ee7dc7d02692eca3640a899d6"/><dir name="Rule"><dir name="Collection"><file name="Abstract.php" hash="411bfd2f48bd17d1c6b3b0264ce15386"/></dir><file name="Collection.php" hash="4d359f928bf960fb63dbb42ebb2ca638"/><dir name="Condition"><file name="SqlBuilder.php" hash="d66a02bbe17332598bee9d2c6d5d69c7"/></dir></dir><file name="Rule.php" hash="7d164a7312e3a569773afcbb2d1d74bf"/></dir><file name="Rule.php" hash="0ce190a68223bb0f31080a09bca990be"/></dir><dir name="etc"><file name="config.xml" hash="89d887580ba266a59da015ccc5096e12"/></dir></dir><dir name="Sales"><dir name="Block"><dir name="Adminhtml"><dir name="Billing"><dir name="Agreement"><file name="Grid.php" hash="ab64005141ad56a40f4eee672ff5fa22"/><dir name="View"><file name="Form.php" hash="d49013bf67623802402ffa98759518cd"/><dir name="Tab"><file name="Info.php" hash="7d64e1159b7f19f0f6b624a5d1700465"/><file name="Orders.php" hash="0c97d875772bd26011a5842222008d06"/></dir><file name="Tabs.php" hash="5ec087539d0febcb14149f4a49bf98cf"/></dir><file name="View.php" hash="d1840489619f20ef684154f36eadde60"/></dir><file name="Agreement.php" hash="0530bd38d000dd4154870b53b237d5d1"/></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Agreement.php" hash="bef0c8b5fa7d69a6058bab8bb87c4dd0"/><dir name="Recurring"><file name="Profile.php" hash="280991eff7ab7ec0ce26c22bcf1883a6"/></dir></dir></dir></dir><dir name="Recurring"><dir name="Profile"><dir name="Edit"><file name="Form.php" hash="1a07be5b691b3a27714b6fe1891e03cd"/></dir><file name="Grid.php" hash="b155716b78ece29889088293f46e632e"/><dir name="View"><file name="Getawayinfo.php" hash="2efce2246e8700e2f2c5561bfa0914c3"/><file name="Info.php" hash="b5c6da6e5da9d1b14a306e751a6d7a26"/><file name="Items.php" hash="3486f9f9543a9f23e3e37155ef88dc27"/><dir name="Tab"><file name="Info.php" hash="92e2297f8270e5ac97365dc2b5876001"/><file name="Orders.php" hash="31ac421f7dc37f5ccf1b65f51d06c88d"/></dir></dir><file name="View.php" hash="ae9f3fa2090354b740adf94470f829ef"/></dir><file name="Profile.php" hash="31fb87ec9882159f493c112eda85f150"/></dir><dir name="Report"><dir name="Filter"><dir name="Form"><file name="Coupon.php" hash="99780c30522e0f4c7fea9ba83cc09943"/><file name="Order.php" hash="3b1144c18800419d41122bc3de4edd4b"/></dir><file name="Form.php" hash="a931ab2b844c2a828c3137d3a8325b94"/></dir></dir></dir><dir name="Billing"><dir name="Agreement"><file name="View.php" hash="0070759005c1077ff90acb913adf1653"/></dir><file name="Agreements.php" hash="084159eb2b2a5a41725840b6a2374519"/></dir><dir name="Guest"><file name="Links.php" hash="461fb53f348e9afda6ad83763716f110"/></dir><dir name="Items"><file name="Abstract.php" hash="5b35f656fe36550385e9bc6bacca12a1"/></dir><dir name="Order"><file name="Comments.php" hash="fe24035bad289c5404047d5853d44893"/><dir name="Creditmemo"><file name="Items.php" hash="4b71e1d59ae3a570aa06155bc9f4fac0"/><file name="Totals.php" hash="cb049975bce99b312fbbccbb591b6202"/></dir><file name="Creditmemo.php" hash="4a96dd3d8ab48e9b2e0b1bbdf023657a"/><file name="Details.php" hash="868f07f4ffda8b77aeed47e2f480a120"/><dir name="Email"><dir name="Creditmemo"><file name="Items.php" hash="eb6a404122177859964ef0cab67b462a"/></dir><dir name="Invoice"><file name="Items.php" hash="542b53e8867c1673364a625f70424e57"/></dir><dir name="Items"><file name="Default.php" hash="2416ee589546421e172ff7a6da5c96f0"/><dir name="Order"><file name="Default.php" hash="20929c643eb043962a1e8b61cd318a4b"/><file name="Grouped.php" hash="b55c283f71a4e0c90ac8446120dfa487"/></dir></dir><file name="Items.php" hash="aacd10efd5610acd6b93d7a5047b66b6"/><dir name="Shipment"><file name="Items.php" hash="cf84ae54b263c40e91f3825064ecd25b"/></dir></dir><file name="History.php" hash="12fca99cf4abf4a5b4f1ff27306ee011"/><dir name="Info"><file name="Buttons.php" hash="8f5b0a322f7b0cff84a97bbb6e085a10"/></dir><file name="Info.php" hash="5a7131b56be83ed705424edfb6d57cd8"/><dir name="Invoice"><file name="Items.php" hash="a4774f3c36f1e497f878f048924bbda2"/><file name="Totals.php" hash="209ccde765e502711d7b6a71a7c88a37"/></dir><file name="Invoice.php" hash="ec0ea4d0dc4c7748e6eb382e0e6b6eb6"/><dir name="Item"><dir name="Renderer"><file name="Default.php" hash="0828a3ae6d0600712b46ecf6288b8004"/><file name="Grouped.php" hash="eccd98d4534a5b93158eba13da301ca7"/></dir></dir><file name="Items.php" hash="dd081a2f191bdc29cd62643bb0f2ba1d"/><dir name="Print"><file name="Creditmemo.php" hash="c5b2dc24ed818e9615b09fb89a9aea5b"/><file name="Invoice.php" hash="5617eb6a99851c0de132bfb8fb31acde"/><file name="Shipment.php" hash="ca653701f844f634e399a02796e2ba76"/></dir><file name="Print.php" hash="240aca4a9b880066f017a6850136121f"/><file name="Recent.php" hash="48899d8b9370effc1646de10eef97992"/><dir name="Shipment"><file name="Items.php" hash="c7117ede5f1b9c5c2cfea84fe6c6fe10"/></dir><file name="Shipment.php" hash="65da31ae21d849560ceb48bcd3493051"/><file name="Tax.php" hash="c4c2e0283060f10275e0638176fa727b"/><file name="Totals.php" hash="ccc3c11f7fb91a28a2f8c1ff0b787b1b"/><file name="View.php" hash="38b6e4791fefe828223a6f46624855cf"/></dir><dir name="Payment"><dir name="Form"><dir name="Billing"><file name="Agreement.php" hash="a66f12c3b7a2936f95204d3a15b93319"/></dir></dir><dir name="Info"><dir name="Billing"><file name="Agreement.php" hash="3805e9c6a86ce12ad9cc5e02c6db46e0"/></dir></dir></dir><dir name="Recurring"><dir name="Profile"><file name="View.php" hash="f2874f3d643330b2bc04ada847a96241"/></dir><file name="Profiles.php" hash="5bbdce07e4ac6ba4e7f65cf023663e44"/></dir><dir name="Reorder"><file name="Sidebar.php" hash="bf5ac172d7919d6ac5f96f9b166b9ee9"/></dir><dir name="Widget"><dir name="Guest"><file name="Form.php" hash="e81410c8d0e2ec04b7cd2a0e52434090"/></dir></dir></dir><dir name="Controller"><file name="Abstract.php" hash="04e04503f2c5d2b7dda3a02aa7d2e2d5"/></dir><file name="Exception.php" hash="09ac18ff9070aab670e1782c87ac0d26"/><dir name="Helper"><file name="Data.php" hash="51977c71532b66040d318a015bd34cbf"/><file name="Guest.php" hash="d4c55c715b56e5968f6c2f1756428dce"/><file name="Reorder.php" hash="05674626dbe02172f86e2d5f0e33268b"/></dir><dir name="Model"><file name="Abstract.php" hash="2be530c5215dab5c3da6f089383f43d4"/><dir name="Api"><file name="Resource.php" hash="b434db280dff034d053c75a372191ac1"/></dir><dir name="Api2"><dir name="Order"><dir name="Address"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="ed09d4b2cf008a4643fae22c9436473e"/></dir><dir name="Customer"><file name="V1.php" hash="52506df5c4293b38113ecd2d1acbd207"/></dir></dir><file name="Rest.php" hash="e3f5913b7fcb0faabf011c303420acb3"/></dir><file name="Address.php" hash="98f80e478d7f1f9860dab3ef4c5769e7"/><dir name="Comment"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="85f20bae6d7ce22e3b64051a9dda1b48"/></dir><dir name="Customer"><file name="V1.php" hash="929a2f896b27a14ca3b89ecd528a1dee"/></dir></dir><file name="Rest.php" hash="c3d28889e2a3a504b7e32598ee10320c"/></dir><file name="Comment.php" hash="5157ddaa57e0ec0c5d5584b9d53c2b5e"/><dir name="Item"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="fa4a9b9deb37d2200cb68fb9704133cb"/></dir><dir name="Customer"><file name="V1.php" hash="c351f86d832ead8a89c6a00e4aa91011"/></dir></dir><file name="Rest.php" hash="4976919b54a42fd3687d03c49173bbd8"/></dir><file name="Item.php" hash="9573e3a435623d0d2a03d26700db1cbd"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="ba19da984378e2b6496377feda439ce9"/></dir><dir name="Customer"><file name="V1.php" hash="5db410d1522d7af533033b24882b0295"/></dir></dir><file name="Rest.php" hash="bfd35b17693c615db96527d377fbd74d"/></dir><file name="Order.php" hash="22dd50272ce66f1e8b06f980d430b8df"/></dir><dir name="Billing"><file name="Agreement.php" hash="7b761c9564d128722b5dcbec3adabc9c"/></dir><dir name="Config"><file name="Ordered.php" hash="4b3a09d5c1ac7ef65033250aea6c810b"/></dir><file name="Config.php" hash="fda273a9bb6d925e3e94f0f09010744a"/><dir name="Convert"><file name="Order.php" hash="673924b5f6a1fd53b765b44eaeb240b8"/><file name="Quote.php" hash="8afd52f68c48b9ae046b62365a6dd8d9"/></dir><dir name="Email"><file name="Template.php" hash="5710b586efe7556968e95adbb26012d1"/></dir><dir name="Entity"><dir name="Order"><dir name="Address"><file name="Collection.php" hash="d26edfda28bc64caf64d109ce8896bb0"/></dir><file name="Address.php" hash="2ef4cd5fe9412ddc88d7240af3ba12f5"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="22d5fa3a28c101d2e027f0ab0ca3ac31"/><file name="Child.php" hash="39c26fdab597f65f087424211ca51432"/><file name="Parent.php" hash="e41ba3c47ddbadd0cf8fcd85055fa5ce"/><file name="Shipping.php" hash="3a825d75685945ecdd5f6f294395f9fb"/></dir></dir><file name="Collection.php" hash="e2378e7479f995faf015c5e3d3f974e8"/><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="12910c9b1b2f5890eebe15922f984ac5"/><file name="Parent.php" hash="46fe7422c5cf98de193eb8f1be7d4b08"/></dir></dir><file name="Collection.php" hash="9c144ecbfa18a242b8ef9b288b89af10"/><dir name="Comment"><file name="Collection.php" hash="27a48a53840facd443cdb39382bccbbe"/></dir><file name="Comment.php" hash="c2e06ebb9052fc9918072554200c849d"/><dir name="Item"><file name="Collection.php" hash="5756bdea8e9804efba31d920627a5173"/></dir><file name="Item.php" hash="1c8e1f1f96a30390427a9e822610b9d1"/></dir><file name="Creditmemo.php" hash="dc543fd0ab03dc7d7fd5196fe8bb1ff1"/><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="2b0383261cec8e5c7212d5f2eb8cf454"/><file name="Item.php" hash="e956eb1171c842859d9ab91f3ef410c8"/><file name="Order.php" hash="6a33e064b57d6cd81563f3dabc98aedf"/><file name="Parent.php" hash="34e287508489fff67e4823c468bf8661"/></dir></dir><file name="Collection.php" hash="7627ccd2307a63a81fdea8c530fd38a3"/><dir name="Comment"><file name="Collection.php" hash="473775d8c46e318aa3c438991e81e4b8"/></dir><file name="Comment.php" hash="e1f351ed0ec213589b29cf5dfc0851b5"/><dir name="Item"><file name="Collection.php" hash="5731b554cc01bf289b3aae069ab7bd6b"/></dir><file name="Item.php" hash="1dbdadf8d58651b08b37f0a75093bcce"/></dir><file name="Invoice.php" hash="0985a22ea865b224062b19cc3acdb7a2"/><dir name="Item"><file name="Collection.php" hash="f9c328e3332bae8d7d6a56305a85afdb"/></dir><file name="Item.php" hash="b9a7c019cda58cb0b1a4157907ffac3e"/><dir name="Payment"><file name="Collection.php" hash="c2e7432b532ac381b869c5e46d8a759a"/></dir><file name="Payment.php" hash="6c0a5ac8f6b8986dcc842f8c4c4d53eb"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="d4793ddad0fee71b951fa45287ecafa1"/><file name="Parent.php" hash="519ab3ea8c74957f2cbdddd21f871f50"/></dir></dir><file name="Collection.php" hash="db788f0e3da76dc1944e72262c9132b9"/><dir name="Comment"><file name="Collection.php" hash="98693746ced501c8b6900774bb9cd093"/></dir><file name="Comment.php" hash="49d67daf14d3082c54d5c6617c9ec19c"/><dir name="Item"><file name="Collection.php" hash="5a8de713464b059130cc6cf3df164f30"/></dir><file name="Item.php" hash="0bab382cb9828171c66f68ce71301a05"/><dir name="Track"><file name="Collection.php" hash="c11625e9135139bb4c8e35f780801ad9"/></dir><file name="Track.php" hash="e555ac5938b8407dc15e9af46367f272"/></dir><file name="Shipment.php" hash="90442acab2fced52569c58061f99b314"/><dir name="Status"><dir name="History"><file name="Collection.php" hash="db8dd0423ed6dd3090e86a2b6d54b38e"/></dir><file name="History.php" hash="010afa69ee1bc6d75cb8d9f7e71251e1"/></dir></dir><file name="Order.php" hash="ee249d376904a567403cb18c11bff88e"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="3dc2c9d89f14da2af5dd3567eefcd33f"/><file name="Parent.php" hash="ae02daaf996116cd5baaddf169a94b97"/><file name="Region.php" hash="aa6929d155e099c82cddf33c78d4c25b"/></dir><file name="Backend.php" hash="ada6b632ee949fefc70e7cd47602ecdf"/><dir name="Frontend"><file name="Custbalance.php" hash="9b97a3e95fe207f13389c3db9eda4672"/><file name="Discount.php" hash="bcdbd4ffb5ee8ddbdbe47421e2d629a1"/><file name="Grand.php" hash="1a4dde3c4512ace0bb16f69dfae76d63"/><file name="Shipping.php" hash="fca436d1af0ec3a58065dddc47814317"/><file name="Subtotal.php" hash="c770e113b79ef05501eb826350de6537"/><file name="Tax.php" hash="f201a5b79c3d86bc787a1d94c26f9795"/></dir><file name="Frontend.php" hash="6663deed8b7770ae28cfce76740decae"/></dir><file name="Collection.php" hash="968a22e1d2ff514245bb0ccf9bc285eb"/><dir name="Item"><file name="Collection.php" hash="d15136c7db392ca14222cfba4b6889c1"/></dir><file name="Item.php" hash="b7616e552aeab785797b3e1fa0a8726b"/><dir name="Rate"><file name="Collection.php" hash="764fac7cb350d2a54b09f63a63924a12"/></dir><file name="Rate.php" hash="cd88976ded80724bab442e50d904e929"/></dir><file name="Address.php" hash="7c7ca80d4fdc6c79f5fecdc455e8ecaa"/><file name="Collection.php" hash="75f34757a52eb79cb886d36790ab6271"/><dir name="Item"><file name="Collection.php" hash="6d3d952bf2f6b882b72b5325c62f4c5a"/></dir><file name="Item.php" hash="9517a2117470f932873f3d8b16cee1ac"/><dir name="Payment"><file name="Collection.php" hash="4fd05e00454cda210a7f927fba328301"/></dir><file name="Payment.php" hash="5a71a13f039b1c7f2f50468d33c7dd24"/></dir><file name="Quote.php" hash="9989cb2478e4fdd611c36fef6acc508b"/><dir name="Sale"><file name="Collection.php" hash="bea4c27ce23e409479adf1f79bd8709a"/></dir><file name="Setup.php" hash="d6f3c5e6c70ffae9c1404fa6d4292827"/></dir><dir name="Mysql4"><file name="Abstract.php" hash="d12f89a16a66a9068353cba5f05a223e"/><dir name="Billing"><dir name="Agreement"><file name="Collection.php" hash="710965f0fd934005da8d4c83dece7550"/></dir><file name="Agreement.php" hash="923babe9c55ce2164bdcd0a94ef4e8bc"/></dir><dir name="Collection"><file name="Abstract.php" hash="87274fda5a701210f87b77d9604251de"/></dir><dir name="Order"><file name="Abstract.php" hash="eaced4a24e027f10d94d6f53fbe21d92"/><dir name="Address"><file name="Collection.php" hash="7c038b6f181c8a3966fc1c5cf5e34640"/></dir><file name="Address.php" hash="ff29e3311002ce43be12e5a91d6b1da5"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="e74b054bc739ad33a356049a3509c3d8"/><file name="Child.php" hash="558490d4f64a480c5eeb23f48e7c30f0"/><file name="Parent.php" hash="4ef6e19383c74b35e65ea2fccdfa7350"/><file name="Shipping.php" hash="f5cbc5b01c156b621b6d9676b70515a2"/></dir></dir><dir name="Collection"><file name="Abstract.php" hash="d2ef36b96e484eb05f9a144f7a0e1ac5"/></dir><file name="Collection.php" hash="1072d2318446752fffe984f485d78a24"/><dir name="Comment"><dir name="Collection"><file name="Abstract.php" hash="d9df028b7b86dfcdc2dd0ed0cf072c11"/></dir></dir><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="e94545b89ecd79340b3d4b49916b6094"/><file name="Parent.php" hash="adf80a157584b4eff97f47978fb2100a"/></dir></dir><file name="Collection.php" hash="a281567b4afa1366d03dbc966fa460d5"/><dir name="Comment"><file name="Collection.php" hash="755191133b2d9f5c23cd395e35a9940a"/></dir><file name="Comment.php" hash="4905bed204ee14da43471f196836ef16"/><dir name="Grid"><file name="Collection.php" hash="af14079eb6603944ed56a472b59d93b6"/></dir><dir name="Item"><file name="Collection.php" hash="3754dda4b1b9b269aee3cc1a604411b8"/></dir><file name="Item.php" hash="01edfe8eeeff847b787540ecb1e2e16a"/></dir><file name="Creditmemo.php" hash="18c88ec4de175eebc00f8b009d17364a"/><dir name="Grid"><file name="Collection.php" hash="af59bede1d5f988ac464802aedee2588"/></dir><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="6c7957523f57d1a853109c34b0425d3a"/><file name="Item.php" hash="ffa9a7ded8bb32eb40091f5ce85cdda2"/><file name="Order.php" hash="e21c183035c5aaafded5e255bb37724f"/><file name="Parent.php" hash="3ef3263c67a15d2fe95ba466f0815c95"/></dir></dir><file name="Collection.php" hash="5e4c4f4e5cd38c2c54a11b18652fb32a"/><dir name="Comment"><file name="Collection.php" hash="b830e77b09c207e95af2a90dff8d72f2"/></dir><file name="Comment.php" hash="f211d7ee656e04eec95e535047f6dc92"/><dir name="Grid"><file name="Collection.php" hash="f808f6269031a5a9d60cbb54893a784d"/></dir><dir name="Item"><file name="Collection.php" hash="404b3d848237e9d603c6f68f7fe2817a"/></dir><file name="Item.php" hash="c1a8fe93361614428ca3c32d06c08713"/></dir><file name="Invoice.php" hash="9bb6a39a36c9d56b181397f0f8bded55"/><dir name="Item"><file name="Collection.php" hash="94c72ab7fb747ce61a132e0928ee19e5"/></dir><file name="Item.php" hash="13d9b87db264f7adf6f22cdde3c63e20"/><dir name="Payment"><file name="Collection.php" hash="2ec3645904237690b347af9acb4baf09"/><dir name="Transaction"><file name="Collection.php" hash="c8362358510365e093c98de78608600d"/></dir><file name="Transaction.php" hash="7f334ddf120f5c7f6b113abb06d2a1ec"/></dir><file name="Payment.php" hash="660718b664b599b51fa353bb3cb5afd9"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="a406b89a624d48aa29ae600c007c0c12"/><file name="Parent.php" hash="bc5d2742024c55ff439523592a310b82"/></dir></dir><file name="Collection.php" hash="6ac549687fc7151c65c40b20fd882808"/><dir name="Comment"><file name="Collection.php" hash="df9a925d885420bda460c230afaca220"/></dir><file name="Comment.php" hash="6e30f7a9192f9811cf5289092f9bbb46"/><dir name="Grid"><file name="Collection.php" hash="57354bff0ac77569b0a32e8569d8be4c"/></dir><dir name="Item"><file name="Collection.php" hash="473c210b4b7bdad1af3b310fc0a8f922"/></dir><file name="Item.php" hash="8e71388582b4d0891dc60b65195ba5af"/><dir name="Track"><file name="Collection.php" hash="549b0cfa09627da8de41d0681ab3c07b"/></dir><file name="Track.php" hash="9906630d788208f383a9059383973f78"/></dir><file name="Shipment.php" hash="b06730da07d51443e7ba9020244cece5"/><dir name="Status"><file name="Collection.php" hash="5ce12f2894eb2e71b04056f74a56db3d"/><dir name="History"><file name="Collection.php" hash="db335452e2ca68c798bb0c05c4ced6d4"/></dir><file name="History.php" hash="f58b802fa285f32f96aa21be59df9ded"/></dir><file name="Status.php" hash="f64acff11b319559d5a682ae2f2eb09c"/><dir name="Tax"><file name="Collection.php" hash="bfd0323dd565de0bd7bbb9804f63e991"/></dir><file name="Tax.php" hash="524f62286c3565a8d006badbef121fa8"/></dir><file name="Order.php" hash="66627134e6c20286c8c7acb9c33b582a"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="f90b9d087c7154c32b0ba915dc6a3a0c"/><file name="Parent.php" hash="3fa6cab874b6b7a5617a150f8b2c1ca0"/><file name="Region.php" hash="ea81bb9a64bda4203dc2f1067ca39a54"/></dir><file name="Backend.php" hash="87f2c8635b883ce589e944499131d465"/><dir name="Frontend"><file name="Custbalance.php" hash="52d52833c5f46decdf9bd4a856f80093"/><file name="Discount.php" hash="648af5482186d234a31505e1bc6ae500"/><file name="Grand.php" hash="cb9b6c627d5b8966aee72db58e4460a2"/><file name="Shipping.php" hash="b7462a6658bb61f49233b8218a73322f"/><file name="Subtotal.php" hash="761b9c8e389b4bde68396f69b5407bab"/><file name="Tax.php" hash="629321380f74bc26cef7264ac5c2dde3"/></dir><file name="Frontend.php" hash="fa01a05e99d7f3e602575c340f4c607b"/></dir><file name="Collection.php" hash="a86add0a2fd554af53fd940ca7b5758e"/><dir name="Item"><file name="Collection.php" hash="c75c7cb0ba7d071d42923e642a898009"/></dir><file name="Item.php" hash="076f3fad0e42176998ad492d286369fc"/><dir name="Rate"><file name="Collection.php" hash="5d948c6fa35b627fda071895000f40cb"/></dir><file name="Rate.php" hash="9826e55d12d254250ff2eb5e60bd1c23"/></dir><file name="Address.php" hash="fe4ff7530d9772854641a76ae2052a8e"/><file name="Collection.php" hash="998e958aa6d8c085a96ba19789657964"/><dir name="Item"><file name="Collection.php" hash="422290fb391c6e242436ff5def1b1deb"/><dir name="Option"><file name="Collection.php" hash="89d56a8521f26b4162bea949a786c6fc"/></dir><file name="Option.php" hash="9f1e28275ad2c5b4816c438296727129"/></dir><file name="Item.php" hash="0c26721d7af53a1d389be27183f630a4"/><dir name="Payment"><file name="Collection.php" hash="48c6b856e3e6b7c8e23e0fb1da6932b1"/></dir><file name="Payment.php" hash="e592e97eaf9d243042cc366d5846fe81"/></dir><file name="Quote.php" hash="7fc8dbbdcb80abc93eca614aa8bd06fc"/><dir name="Recurring"><dir name="Profile"><file name="Collection.php" hash="08722279a3a0a4f474aad055e732aaa2"/></dir><file name="Profile.php" hash="f56cfd3293d3cbeac339edefe5977fe8"/></dir><dir name="Report"><file name="Abstract.php" hash="efc244667a406052af6f89fd35d94fdc"/><dir name="Bestsellers"><file name="Collection.php" hash="c2af090807cc79cdaac55d1059c377f0"/></dir><file name="Bestsellers.php" hash="ca75e70a1765aa211b7bd09608fdcf8a"/><dir name="Collection"><file name="Abstract.php" hash="6ccbc672629fcdc8b6272bbcfafff7e8"/></dir><dir name="Invoiced"><dir name="Collection"><file name="Invoiced.php" hash="51f1eac170f2465080d104114093e0e1"/><file name="Order.php" hash="db5eae7f77229c4598aae657b8c936da"/></dir></dir><file name="Invoiced.php" hash="bf10ed9ca5323d4b31c4f5c8f98ce378"/><dir name="Order"><file name="Collection.php" hash="3c1434cd5c02a3375913079adeebe2ee"/><dir name="Updatedat"><file name="Collection.php" hash="0264dd6d390e6625eb398d5ef66ec29d"/></dir></dir><file name="Order.php" hash="fa060bf8a358181af5ea4c5a0cb71008"/><dir name="Refunded"><dir name="Collection"><file name="Order.php" hash="76f32743c0658c289d1ea66c24bc91d3"/><file name="Refunded.php" hash="301c9cd4e574585f67f6409064547297"/></dir></dir><file name="Refunded.php" hash="cc07f06b3b2193ee644ca1d384b66171"/><dir name="Shipping"><dir name="Collection"><file name="Order.php" hash="75275bc7cf3b6ec53eb3fb3e9536a15d"/><file name="Shipment.php" hash="73d8f9fc683a8cd3d8b389d3325f4629"/></dir></dir><file name="Shipping.php" hash="20b9e95f7a75936ddac39b3e1493a812"/></dir><file name="Report.php" hash="7828f88e9d9974abc4efdd8312672999"/><dir name="Sale"><file name="Collection.php" hash="602312e983120d7c5107de9cafb274b4"/></dir><file name="Setup.php" hash="eff4b297bf369baf2878dcee94c3c725"/></dir><file name="Observer.php" hash="af8249b4041fc99dc39402b44b9070a6"/><dir name="Order"><file name="Address.php" hash="b5aaf6b398fea44f576767a36da61b3f"/><dir name="Api"><file name="V2.php" hash="61a763b0b1cc10e7a1f810e7014debdf"/></dir><file name="Api.php" hash="60720076b3e2d6fa19f198ee6b3fea34"/><file name="Config.php" hash="9de4f1dec458aea9d9b5f9a7341e6280"/><dir name="Creditmemo"><dir name="Api"><file name="V2.php" hash="9a98607475d99105414a0ae82afaf4d0"/></dir><file name="Api.php" hash="f8679da662ef327e76843a9cc1f3793d"/><file name="Comment.php" hash="38afb28018280129c420cb149337b00f"/><file name="Config.php" hash="2b1841ce51d9a41a60b23630edbdd12e"/><file name="Item.php" hash="82f431c3cd11ee553cd071f314ac60b5"/><dir name="Total"><file name="Abstract.php" hash="734d7caeedbc5d4947e207e949289561"/><file name="Cost.php" hash="6a74bbae062751be9c4fd797f75ead47"/><file name="Discount.php" hash="184c13257733df0c2c6ff03a753e7faf"/><file name="Grand.php" hash="853363438c6fa900f20f5a69999e85dc"/><file name="Shipping.php" hash="360dde779af523188fcb845e203796ae"/><file name="Subtotal.php" hash="b215261de63a33f4e3a1d2092b73e838"/><file name="Tax.php" hash="72e683482df722523fe89da62b8157d3"/></dir></dir><file name="Creditmemo.php" hash="f2e811cff4ca81f4632df4b98c63b88f"/><dir name="Invoice"><dir name="Api"><file name="V2.php" hash="e04827c97bc64a9b4a47f01ec07efb35"/></dir><file name="Api.php" hash="9d8d2f62139c7fb8c3e5403a3569b2da"/><file name="Comment.php" hash="71efb48707ef5e985335830845a47198"/><file name="Config.php" hash="aa47690e5b82454c5c0af87131307b1e"/><file name="Item.php" hash="96425a3ff3e8b7e161572f6810632840"/><dir name="Total"><file name="Abstract.php" hash="0cfd189857a55d3ac0681810a731b58c"/><file name="Cost.php" hash="fee6afa197d455c74716d76734a1180b"/><file name="Discount.php" hash="083078f98215a8d2d66138fa7096ed8f"/><file name="Grand.php" hash="32612eb9c44d2ec6cc8e11daab5586f6"/><file name="Shipping.php" hash="d3513d00b2308f6907b73b5193714fd1"/><file name="Subtotal.php" hash="6cf4a05ec9051d00d97f36828fa5f041"/><file name="Tax.php" hash="432e2791339a3bc66c106977509e334c"/></dir></dir><file name="Invoice.php" hash="14e3a7d612dbe05d3967da27842c2444"/><file name="Item.php" hash="b4be5fc454af9ce0aea4af15bb9c0007"/><dir name="Payment"><file name="Transaction.php" hash="5415a0f3baaae203f4e6889204d5fbef"/></dir><file name="Payment.php" hash="2b93e3dca7135820fe90c291384746c0"/><dir name="Pdf"><file name="Abstract.php" hash="99500e8639a6ae441d03487ccd224b1f"/><file name="Creditmemo.php" hash="f285b8eed25541d884ed4b05e8cd9995"/><file name="Invoice.php" hash="42b3b2072b65e431c1255779846ceb53"/><dir name="Items"><file name="Abstract.php" hash="ea2808f1fbd4cdcca4fe94acd8afa003"/><dir name="Creditmemo"><file name="Default.php" hash="f79904131e7df30bbe7959ce7b85083e"/><file name="Grouped.php" hash="3c18661d38676d9a8d01e4bfc5913d3d"/></dir><dir name="Invoice"><file name="Default.php" hash="e2d04550d67ed65fe47648917bb72522"/><file name="Grouped.php" hash="a1597c343881ab54665f2f98a8da215d"/></dir><dir name="Shipment"><file name="Default.php" hash="f358a2c8971ee532161f6dc004e3a81d"/></dir></dir><dir name="Shipment"><file name="Packaging.php" hash="e1b05ca73d859e0b70e13c74b98238e3"/></dir><file name="Shipment.php" hash="8a3ac8ab741a72ff505785b5dd6546ca"/><dir name="Total"><file name="Default.php" hash="8f7266cff28f558dfce099a332cb7693"/></dir></dir><dir name="Shipment"><dir name="Api"><file name="V2.php" hash="4b37ad12413b8f00972b3d3f4315fcad"/></dir><file name="Api.php" hash="591c40d195e796254c8264645bdeeca6"/><file name="Comment.php" hash="832f87c9d3c6f98457f89494a3007fa1"/><file name="Item.php" hash="57e626460ed5d16d6fd8d1b684fe1c55"/><file name="Track.php" hash="ef300b5958bf00f73e7fd41aacc49594"/></dir><file name="Shipment.php" hash="d3dc3eb9bf6d50ddd606dd14212dea75"/><dir name="Status"><file name="History.php" hash="9fa47f2e20b7e333d714d296ba3b99e9"/></dir><file name="Status.php" hash="2c5ae7c06fd502603361fc3063e4a793"/><file name="Tax.php" hash="0e3c13ad8faa32eb24960e3d254180e1"/><dir name="Total"><file name="Abstract.php" hash="fcea40c1cb0c35f58a5a720cb409ad1c"/><dir name="Config"><file name="Base.php" hash="2f32b6816b83ddf645211a284a18ca25"/></dir></dir><file name="Total.php" hash="5cd140158579497b17bd6e79162011bd"/></dir><file name="Order.php" hash="af5078bbfd6c711ddb974aa6f088166e"/><dir name="Payment"><dir name="Method"><dir name="Billing"><file name="AgreementAbstract.php" hash="fcf2161aa71002dc50725409ed6de596"/></dir></dir></dir><dir name="Quote"><dir name="Address"><file name="Item.php" hash="ea12e72ec8424db3aa2bc593241c9699"/><file name="Rate.php" hash="61ed371c7a1a57fbc388d7f6bfdfc1cf"/><dir name="Total"><file name="Abstract.php" hash="6bbbbce102c225d2b2bc5625b0b12ff6"/><file name="Collector.php" hash="d7a41cc4fa813af40b13c1cbc039cf5f"/><file name="Custbalance.php" hash="d141306f03fc099f0584e982b1c80559"/><file name="Discount.php" hash="603730b9fcff49d2a304e8467472a7eb"/><file name="Grand.php" hash="e5525fd20218935749c16ae5fbd98176"/><file name="Msrp.php" hash="de22dfc41e2640f2b9a6f76e2a0f8474"/><dir name="Nominal"><file name="Collector.php" hash="bedeac0b799a55eef8af99dc6d398fda"/><dir name="Recurring"><file name="Initial.php" hash="7ca5ffb59d71e46b429c40e1229077dc"/><file name="Trial.php" hash="ac1f6b68f4659acd0609df9c9d94f3ed"/></dir><file name="RecurringAbstract.php" hash="201fc90c8ea7f9403dd6e29ce681cf67"/><file name="Shipping.php" hash="852de22dfb4f3ef9b303e8f6ab3b3b9a"/><file name="Subtotal.php" hash="ae07f40723e388d6461f2f8ecb4fc493"/></dir><file name="Nominal.php" hash="5a9d8bb830fde9dc147854f6acc127d2"/><file name="Shipping.php" hash="a7de312528e726122cd380038067c4de"/><file name="Subtotal.php" hash="cda4be38250971f7a665db518093f092"/><file name="Tax.php" hash="7e494a87976e318906077abb778fa2d3"/></dir><file name="Total.php" hash="376cf52b2a0324714b3b264407970b4f"/></dir><file name="Address.php" hash="77204f9535b973a39dd2e8fa14b400d5"/><file name="Config.php" hash="4c65b9bbda8a9f2cf6e19a2013680f67"/><dir name="Item"><file name="Abstract.php" hash="2eb89299ed4861565f887da0a27c952c"/><file name="Option.php" hash="4284d9ca3a81cdc0cedc2581d3baacd5"/></dir><file name="Item.php" hash="ebdce1384b5f5a3afb39a3d24dad5373"/><file name="Payment.php" hash="c68884655d0fc6bfbe86597e5e4e54a5"/></dir><file name="Quote.php" hash="d4a6d48b9f10eabfeabe2ab22a37aba6"/><dir name="Recurring"><file name="Profile.php" hash="2b09538dc730a146093dfd2a8e4f3a0e"/></dir><dir name="Resource"><file name="Abstract.php" hash="a56c65b3e68ac908a1c40adae76c2f23"/><dir name="Billing"><dir name="Agreement"><file name="Collection.php" hash="ac427d72b5e018173ddb6550d62da685"/></dir><file name="Agreement.php" hash="cc469f2f01bdcc8c4c72681a39847e21"/></dir><dir name="Collection"><file name="Abstract.php" hash="19484c8d144e8243405ab083a5e91d2b"/></dir><dir name="Helper"><file name="Interface.php" hash="8ce1b682deae4814812cb98a8162e8e6"/><file name="Mysql4.php" hash="bc687fc66fb4d2678873d2e7c04a1e01"/></dir><dir name="Order"><file name="Abstract.php" hash="89f4e7c6cd503c1390a0c127fb0a7381"/><dir name="Address"><file name="Collection.php" hash="fa8eadfeaa028a016b40ac04734b9e68"/></dir><file name="Address.php" hash="47fbb096ec189bac3fe97f215a79697d"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="506ea2c822a89532f120ea13ac6099cd"/><file name="Child.php" hash="4d81b1cf9fe25d8df19d44aa516be6be"/><file name="Parent.php" hash="f14239349ff28e561bc8534743b22aaa"/><file name="Shipping.php" hash="c79a59a848d3c1692dfe3a82ef761ef6"/></dir></dir><dir name="Collection"><file name="Abstract.php" hash="c64eb8965d55c5eeacb7856bff91f36a"/></dir><file name="Collection.php" hash="d3dab5f90d3a84ba0548b217a12c9b72"/><dir name="Comment"><dir name="Collection"><file name="Abstract.php" hash="34add69ec5c79f8726b971c1620181f1"/></dir></dir><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="a040e9da7bb848a6a61b330e5fd4edfa"/><file name="Parent.php" hash="dadde192982cb95d32ce82adac882e4a"/></dir></dir><file name="Collection.php" hash="fa47186a90e42584a49e001c5532b32c"/><dir name="Comment"><file name="Collection.php" hash="103422d9049c3ac381ab7e665daccb9f"/></dir><file name="Comment.php" hash="a61c32f0e00415c7a3ff911d05cd39cc"/><dir name="Grid"><file name="Collection.php" hash="5ced80afeb94905b80eee5925f45ef17"/></dir><dir name="Item"><file name="Collection.php" hash="9dff81ac8137cb216a13a774badda549"/></dir><file name="Item.php" hash="31a8c3a138c9565d0e79bbd07a023eb8"/></dir><file name="Creditmemo.php" hash="e7a8a584f07a00a9e10ef1592bac5bce"/><dir name="Grid"><file name="Collection.php" hash="e7972c610e58d9c746349f7c0d573894"/></dir><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="3b6d7bc632b74727578ad0b77bf2daba"/><file name="Item.php" hash="e962dbfe36cfe0cb23faf16eb8f582c8"/><file name="Order.php" hash="bdebc5b6093057017c31d5b1877d9014"/><file name="Parent.php" hash="5686ccf311802d7134c969942788832a"/></dir></dir><file name="Collection.php" hash="3bf9ddee39489f83d98be8f1f84eba5e"/><dir name="Comment"><file name="Collection.php" hash="15195ba2555e4fb35e493830e8c5266e"/></dir><file name="Comment.php" hash="41dcb8ab21d15d4a1d315f891d429136"/><dir name="Grid"><file name="Collection.php" hash="a82f47818143ded93703b22c0cbb62d8"/></dir><dir name="Item"><file name="Collection.php" hash="9618891171bb13d7821c773cdd346fdd"/></dir><file name="Item.php" hash="9cedbe54187f8926cedef976e27759d3"/></dir><file name="Invoice.php" hash="02058b23cf63cd0c8ab8c9697d74c9c5"/><dir name="Item"><file name="Collection.php" hash="51d426ee2191db7f4e9b0ed3afbd6698"/></dir><file name="Item.php" hash="b690d152ea3dfb9dd3380d741cc09ba7"/><dir name="Payment"><file name="Collection.php" hash="fc6382cef0d1fbdbb0a42c227251d36a"/><dir name="Transaction"><file name="Collection.php" hash="cb2c63339719d9d99d00cdf26c0214de"/></dir><file name="Transaction.php" hash="c6821e69bd18c4a00ba6e7fd3ebbf361"/></dir><file name="Payment.php" hash="6ca4b4fdb55b84d336e121e6ae6b95d6"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="4ba5eedeaf8309b199eb2fcfdcb07d60"/><file name="Parent.php" hash="2bfe8559afcc459971bd6dcd3bc7656c"/></dir></dir><file name="Collection.php" hash="3d5cae59fea64fc1ae428f076c3e4daf"/><dir name="Comment"><file name="Collection.php" hash="99475e1992a15bdaec93ba5cc949ea5c"/></dir><file name="Comment.php" hash="7880148dcadae0a97c34e8cd7516f116"/><dir name="Grid"><file name="Collection.php" hash="12f7a15a174921f190e4ff3664d58148"/></dir><dir name="Item"><file name="Collection.php" hash="453322c8099ce1ce02ad2d4acfdacbc7"/></dir><file name="Item.php" hash="59afa9fd390ec49e3d4ce6d8ef01d025"/><dir name="Track"><file name="Collection.php" hash="33d07bf647e12110363a7962b5bd5469"/></dir><file name="Track.php" hash="4915b855be0f53287306a287a229c9b2"/></dir><file name="Shipment.php" hash="46c000412d0a5f1c441cbde032f8f0de"/><dir name="Status"><file name="Collection.php" hash="dba6909246ba69c305b49859864a7039"/><dir name="History"><file name="Collection.php" hash="15c83d6eace7253cec6a2e4810e4e82a"/></dir><file name="History.php" hash="0e7fbeb03289e64df359b229f8571378"/></dir><file name="Status.php" hash="792bc432c727ce1d8dec519f47a30abf"/><dir name="Tax"><file name="Collection.php" hash="95e805cec38b5d5c7c584a65210ce913"/></dir><file name="Tax.php" hash="d7821ceb2f3ddcb29dc66b88a646058f"/></dir><file name="Order.php" hash="8b25ec73560f8644ab0376de07e81ecd"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="ca8ac35d3e13d27a950a051d2e0adfc9"/><file name="Parent.php" hash="0f4511956cfbc4713fb7278ed958df2f"/><file name="Region.php" hash="0735a5a338c6f035ddf95689281e080a"/></dir><file name="Backend.php" hash="f7eece248dceb7811c5d48ad018f7bc2"/><dir name="Frontend"><file name="Custbalance.php" hash="f027ff02b8bb782388b9b7e69700a690"/><file name="Discount.php" hash="82b08a77b8b244f432b4d601e0f20fa9"/><file name="Grand.php" hash="036b8d97f3c6f4355d00ca84d3f9432b"/><file name="Shipping.php" hash="5354411cc83b29a7df63cf50030c0fda"/><file name="Subtotal.php" hash="0b86d5e81f0576df09de5ed8a773a8f2"/><file name="Tax.php" hash="ebfa77cf9dd43485695ebbbd3bef21e9"/></dir><file name="Frontend.php" hash="a8151b164769e3f2763e0869b51ec6d1"/></dir><file name="Collection.php" hash="44c7a8720c2c1aacb9cda1ed4c49563b"/><dir name="Item"><file name="Collection.php" hash="8c1099b9ea900b683103ab1af47adda3"/></dir><file name="Item.php" hash="a21914009409a143fccd2772de4a0575"/><dir name="Rate"><file name="Collection.php" hash="718cc26d336586466d1fbbefa6cae9c6"/></dir><file name="Rate.php" hash="12455eda9d701a890068c0bfb94056c2"/></dir><file name="Address.php" hash="460c102f3194bbf255619853e4b79053"/><file name="Collection.php" hash="8e4a53611328a7d9f14608bb280e650c"/><dir name="Item"><file name="Collection.php" hash="0e66744af4b82925604fdb0e3b31eb2a"/><dir name="Option"><file name="Collection.php" hash="5c14f50b6104952d4e76c6c412488577"/></dir><file name="Option.php" hash="a40a4bc013ed117bd5b21e2dab161a66"/></dir><file name="Item.php" hash="0c3531593e88f210eae490a4a96588fa"/><dir name="Payment"><file name="Collection.php" hash="0e5317d6d76d0137b44b03b659a385e2"/></dir><file name="Payment.php" hash="b78507a4dc1da255466486c8818f78bf"/></dir><file name="Quote.php" hash="225b016e2cafc6e77fa9112bc8bff968"/><dir name="Recurring"><dir name="Profile"><file name="Collection.php" hash="3b97e1fd792ea29e03362f39b3adaa08"/></dir><file name="Profile.php" hash="617d2b03a9b01f6d3411fb48a720478e"/></dir><dir name="Report"><file name="Abstract.php" hash="cb7d4c7c801edcd8cfdcf17956921f97"/><dir name="Bestsellers"><file name="Collection.php" hash="c8dc0bc69b02b71d22472fe759aa4d00"/></dir><file name="Bestsellers.php" hash="8aca9e7ac793e3af64eaf382431329bc"/><dir name="Collection"><file name="Abstract.php" hash="f78d7f267b278f63629372fc621709f2"/></dir><dir name="Invoiced"><dir name="Collection"><file name="Invoiced.php" hash="19c19915f20e148c27c7d1c09b3ec37b"/><file name="Order.php" hash="a82edad51925a47b467307235c8dd780"/></dir></dir><file name="Invoiced.php" hash="707173594e3d21fc44332f162749d7a9"/><dir name="Order"><file name="Collection.php" hash="f021d66db855f2fc030a8d503046f073"/><file name="Createdat.php" hash="40ee1bd59b007a9dd45d4e1ead89d5be"/><dir name="Updatedat"><file name="Collection.php" hash="229247f6c1ffc4cb832b89e55e5c643b"/></dir><file name="Updatedat.php" hash="182c1ec4c6e22f0ec4642094a5baa75e"/></dir><file name="Order.php" hash="1b5124776b6983193c0f836e09629a73"/><dir name="Refunded"><dir name="Collection"><file name="Order.php" hash="c86a880bbbc3e3c939740a21ee705b65"/><file name="Refunded.php" hash="5b2ee7377fc029b459021211662410c3"/></dir></dir><file name="Refunded.php" hash="60f6c42c8d259a7e018bfc59deae97c8"/><dir name="Shipping"><dir name="Collection"><file name="Order.php" hash="4d3e40e091390b09db1456ff99317652"/><file name="Shipment.php" hash="7868a4e901eb49f1f023030a21152e76"/></dir></dir><file name="Shipping.php" hash="23198ac1648eacd30e457900c03c1fbd"/></dir><file name="Report.php" hash="c06b39cf180fe07e3a95e79292e9331e"/><dir name="Sale"><file name="Collection.php" hash="f55060aae60f709e8db01519cf221578"/></dir><file name="Setup.php" hash="b5d75c487de0d1c2d4dbcd5f9df1cd56"/></dir><dir name="Service"><file name="Order.php" hash="d35c0087381364015dfd6a6f76b9fa72"/><file name="Quote.php" hash="8895124dcc1b104750132a3fdb4bb10d"/></dir><dir name="Status"><file name="List.php" hash="48a7c3fe6e8ad5fe60fbc724354a3635"/></dir></dir><dir name="controllers"><dir name="Billing"><file name="AgreementController.php" hash="16105acc9d6fab8bbf0cde7207efea03"/></dir><file name="DownloadController.php" hash="093b8f38ab59b12168416b0c0cc52a32"/><file name="GuestController.php" hash="be829deb8f9c3e37e92e1fce8c094b40"/><file name="OrderController.php" hash="959facfa8eb16ae41a10d4e46969500d"/><dir name="Recurring"><file name="ProfileController.php" hash="44154e960c47f91846a914c02eaee80f"/></dir></dir><dir name="data"><dir name="sales_setup"><file name="data-install-1.6.0.0.php" hash="4a6712e20d22ae761842ee7be870d496"/><file name="data-upgrade-1.6.0.4-1.6.0.5.php" hash="dad2f163ecbfd7c224947292c5899d5d"/></dir></dir><dir name="doc"><file name="invoice.txt" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="order.txt" hash="5dce876530c94ebbedbba7a234c23846"/><file name="order_actions.HTM" hash="b955e61bff753ea0534f907ef6ba9bb6"/><file name="quote.txt" hash="55ecfbdd576958ff1b1fbf16957ba9df"/><file name="test.php" hash="4d7ea87f963d0256869405e6a1d19b0b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="ba7c07cb628f2b05ae380dfd81679fe3"/><file name="api.xml" hash="91a657769f66f5e04cf4e73b016dcb05"/><file name="api2.xml" hash="3b99b83b783e2c95f1792d6ee7af063a"/><file name="config.xml" hash="7f3fae120105cd63b9bd77f2ea148b89"/><file name="system.xml" hash="a1296df14bec6424736e61b565885ff3"/><file name="widget.xml" hash="573f3a91b06b4a29d119f30067f47e0a"/><file name="wsdl.xml" hash="ed13de1dde6408ab508892374ef57b81"/><file name="wsi.xml" hash="6aba2f44765955ec8bcd1afcebfb0800"/></dir><dir name="sql"><dir name="sales_setup"><file name="install-1.6.0.0.php" hash="ad9131b711aeddde2bd8e77a764a119c"/><file name="mysql4-install-0.7.0.php" hash="45a8b3690a68b98bc6c666163f5cb93e"/><file name="mysql4-install-0.8.11.php" hash="8bcd40d0c68f907e544fc6d25d4ed814"/><file name="mysql4-install-0.9.0.php" hash="d98e55a800406643b1feccc8b844336b"/><file name="mysql4-install-1.4.0.0.php" hash="c37c1fde345f093f3c621cade0113bde"/><file name="mysql4-upgrade-0.6.2-0.7.0.php" hash="7a301e36f307f42a4c885e858a71ee44"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="d8f8a077777d2046b9770e3ed0b950e8"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="ce1c736098a85a220629cfc4ea41780b"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="809d679d0c3100564a7092a7c57dd959"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="e4118cf7756d6b1006cac5a2026d70a3"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="56b2f5fd8ea04c1f64bc7ece1ada04ab"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="d2cc0692775cec0c0a98942ea9e53a91"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="7ce9f421f2354f9d74e7c57e138f2344"/><file name="mysql4-upgrade-0.8.12-0.8.13.php" hash="d97fd3692fc674a1d16775195edd7d04"/><file name="mysql4-upgrade-0.8.13-0.8.14.php" hash="896cd390d0263ecd2d55dd2c060debfa"/><file name="mysql4-upgrade-0.8.14-0.8.15.php" hash="bf0bc110da8ed3f7b56315a6ff5c7103"/><file name="mysql4-upgrade-0.8.15-0.8.16.php" hash="119f891e77b37b2bfa1902a6100e8703"/><file name="mysql4-upgrade-0.8.16-0.8.17.php" hash="6cc567d7432ffe1fd816752ce3968e9b"/><file name="mysql4-upgrade-0.8.17-0.8.18.php" hash="99e19181f870c0be92934fcf94c11ca5"/><file name="mysql4-upgrade-0.8.18-0.8.19.php" hash="63705ff013020bf9ea9fa32a5cd1c7d2"/><file name="mysql4-upgrade-0.8.19-0.8.20.php" hash="8b20d23b8762d3559179c1787b256670"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="6c4685d51fcbc235025d136d21e5cafc"/><file name="mysql4-upgrade-0.8.20-0.8.21.php" hash="9bfd3bb05a815a828e7a1172a94b083b"/><file name="mysql4-upgrade-0.8.21-0.8.22.php" hash="e0d3f4ddf5dd5247c988e895aa3d6de3"/><file name="mysql4-upgrade-0.8.22-0.8.23.php" hash="2ab58a83c8f9a058ccfb0d1b4679c542"/><file name="mysql4-upgrade-0.8.23-0.8.24.php" hash="c155ed1c4bfa5341c496cc07138029cb"/><file name="mysql4-upgrade-0.8.24-0.8.25.php" hash="8e6bb2382269dbb243d9f4c72149a75e"/><file name="mysql4-upgrade-0.8.25-0.8.26.php" hash="43baf31a4445aeed7627e5ded2131cd2"/><file name="mysql4-upgrade-0.8.26-0.8.27.php" hash="fb6ab16d8d951dce412eaf5dbb68a07d"/><file name="mysql4-upgrade-0.8.27-0.8.28.php" hash="a77c3985614fecd5594210988d0e7469"/><file name="mysql4-upgrade-0.8.28-0.8.29.php" hash="6d28baeb420cc75fbca6b57c8a9b61d0"/><file name="mysql4-upgrade-0.8.29-0.9.0.php" hash="0a4087c60fd53c78937f37e400eeeb99"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="49c9703203c22880d6bbaae0b0077550"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="6c4685d51fcbc235025d136d21e5cafc"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="908bfd3db7f9604320d4da1af4623fe1"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="5067ca1cf42fc83e02535dc576396362"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="94c98afbb3dab321fe18a2f411a43608"/><file name="mysql4-upgrade-0.9.1-0.9.2.php" hash="46a9bee30d60aafc06ef8062c850ccb4"/><file name="mysql4-upgrade-0.9.10-0.9.11.php" hash="85c6b75f00dcb9b55d43f74934297785"/><file name="mysql4-upgrade-0.9.11-0.9.12.php" hash="ba81e70efd8d25ad2b70aea0cc34ebeb"/><file name="mysql4-upgrade-0.9.12-0.9.13.php" hash="d65c5e3a285022f148afccac45620391"/><file name="mysql4-upgrade-0.9.13-0.9.14.php" hash="e5c09c14a0bed9d5839c5889f90ec66f"/><file name="mysql4-upgrade-0.9.14-0.9.15.php" hash="4b13fee2809c60d36c6844d8066f3740"/><file name="mysql4-upgrade-0.9.15-0.9.16.php" hash="becb6607d0134c46960991259ad7688d"/><file name="mysql4-upgrade-0.9.16-0.9.17.php" hash="e3def15b7cac3e7922f62d1ddba74121"/><file name="mysql4-upgrade-0.9.17-0.9.18.php" hash="cc8eed29e8f88b95889bb8936f8e1c27"/><file name="mysql4-upgrade-0.9.18-0.9.19.php" hash="60b35d580283517075fd5aeb267dce43"/><file name="mysql4-upgrade-0.9.19-0.9.20.php" hash="dc771038130ae3fe56043b5da05e6625"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="fcc73a33a728a715265acb1dde471a63"/><file name="mysql4-upgrade-0.9.20-0.9.21.php" hash="cb0c3364e1c89b160bf4e552fcc17e68"/><file name="mysql4-upgrade-0.9.21-0.9.22.php" hash="2ffbf9d7615b6200c82df4184257c6de"/><file name="mysql4-upgrade-0.9.22-0.9.23.php" hash="84b7e53b5eb48467c582e5a3fb5a0ac3"/><file name="mysql4-upgrade-0.9.23-0.9.24.php" hash="61deeb2a8e4cec9d2a477321c2167782"/><file name="mysql4-upgrade-0.9.24-0.9.25.php" hash="266c119a6facd3915b43efe9aa60e6d7"/><file name="mysql4-upgrade-0.9.25-0.9.26.php" hash="30f73941ce05f5fb0064376d6ec1fb27"/><file name="mysql4-upgrade-0.9.26-0.9.27.php" hash="9d607f87c05367acc5108bc35267dbb2"/><file name="mysql4-upgrade-0.9.27-0.9.28.php" hash="e12b21bd4364a9c90037907c5e5faa39"/><file name="mysql4-upgrade-0.9.28-0.9.29.php" hash="d76c8dbd3ebbb686be493f70cd9afe82"/><file name="mysql4-upgrade-0.9.29-0.9.30.php" hash="e7635a8301589e9be0079af1ad7b01d7"/><file name="mysql4-upgrade-0.9.3-0.9.4.php" hash="1e56964c6ca31627ee5bc04dafe390bf"/><file name="mysql4-upgrade-0.9.30-0.9.31.php" hash="5351da3d29337b463cd12b9c6765ba02"/><file name="mysql4-upgrade-0.9.31-0.9.32.php" hash="4dfcaa3fee69eca37b5f25df6c43399d"/><file name="mysql4-upgrade-0.9.32-0.9.33.php" hash="6248da914bead9ed0fd5ef3ab9e412eb"/><file name="mysql4-upgrade-0.9.33-0.9.34.php" hash="2768ce258e815cb67a520837fe3a47a5"/><file name="mysql4-upgrade-0.9.34-0.9.35.php" hash="df2e4f1dc28d8353b7aa2421946dce1b"/><file name="mysql4-upgrade-0.9.35-0.9.36.php" hash="4a0d859ef0b4c69870b3eaeed4d445af"/><file name="mysql4-upgrade-0.9.36-0.9.37.php" hash="c62bdd2cf00b0952a7244a65db44bcd9"/><file name="mysql4-upgrade-0.9.37-0.9.38.php" hash="ec05f8b858c37c0dea93eb77380f6041"/><file name="mysql4-upgrade-0.9.38-0.9.39.php" hash="91ed75e00e054bf67caf681bb8f5e70f"/><file name="mysql4-upgrade-0.9.39-0.9.40.php" hash="9e5a3b0e1128f75e9147ab1317816e99"/><file name="mysql4-upgrade-0.9.4-0.9.5.php" hash="3714b986a17d6eb1e23b601c34dab1bc"/><file name="mysql4-upgrade-0.9.40-0.9.41.php" hash="220e2d412c77116c1e66ffb3a21781b8"/><file name="mysql4-upgrade-0.9.41-0.9.42.php" hash="266785c96f2c8749a5ddba6d4366c33b"/><file name="mysql4-upgrade-0.9.42-0.9.43.php" hash="cfd3b55f8b67762d24b9164f0d4722c4"/><file name="mysql4-upgrade-0.9.43-0.9.44.php" hash="b8fad415444e87770e31626f46738038"/><file name="mysql4-upgrade-0.9.44-0.9.45.php" hash="46215a5f44641500fc5758a49020be10"/><file name="mysql4-upgrade-0.9.45-0.9.46.php" hash="e62f6bb08a26192bfaf032eb0a6cf545"/><file name="mysql4-upgrade-0.9.46-0.9.47.php" hash="7c1674670c11bee0f2d4107a1261bdcd"/><file name="mysql4-upgrade-0.9.47-0.9.48.php" hash="3f738c494b2b70dfc622e9f6be041681"/><file name="mysql4-upgrade-0.9.48-0.9.49.php" hash="be3a23a307dd56909d2bc650ccc41664"/><file name="mysql4-upgrade-0.9.49-0.9.50.php" hash="21c27ed39e31746fba42aa894f7436c3"/><file name="mysql4-upgrade-0.9.5-0.9.6.php" hash="ec660fbb133e1e6bd51453255ebf4c9b"/><file name="mysql4-upgrade-0.9.50-0.9.51.php" hash="6a0363c0019604c3bea7cb0e3e24c217"/><file name="mysql4-upgrade-0.9.51-0.9.52.php" hash="9085d690dc27f1317fcf528e413acc40"/><file name="mysql4-upgrade-0.9.52-0.9.53.php" hash="3567bd3103389dd61fde91a6ca48ca79"/><file name="mysql4-upgrade-0.9.53-0.9.54.php" hash="3b96ee5e33b97a42023da26997b16197"/><file name="mysql4-upgrade-0.9.54-0.9.55.php" hash="03ff417b6fb863ece368dbb5f81d5d70"/><file name="mysql4-upgrade-0.9.55-0.9.56.php" hash="e7ca15be03ac7cfac0fcea4b0fa2985b"/><file name="mysql4-upgrade-0.9.6-0.9.7.php" hash="635341008791d12bd8e4bd215d534443"/><file name="mysql4-upgrade-0.9.7-0.9.8.php" hash="890cab701c586792fe8a12ce39ac1f19"/><file name="mysql4-upgrade-0.9.8-0.9.9.php" hash="4b41356735f8ff28b1742c57f5ed1a4a"/><file name="mysql4-upgrade-0.9.9-0.9.10.php" hash="dda8e2af0238f263a5c5f92a14ace840"/><file name="mysql4-upgrade-1.3.99-1.4.0.0.php" hash="77ac2194c56f7bb14383a34de91dbd80"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="06fe1dc0108327de8543edb5ffc593b7"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="a1847daa20b04fd39ff6dd0c9953c8af"/><file name="mysql4-upgrade-1.4.0.15-1.4.0.16.php" hash="54ba869b091e90c02c5d201e6f7c0212"/><file name="mysql4-upgrade-1.4.0.16-1.4.0.17.php" hash="9ad817104bcae36c8b1c00d238ae693d"/><file name="mysql4-upgrade-1.4.0.17-1.4.0.18.php" hash="36ffc177e07c0dd213cfdae9d15c8976"/><file name="mysql4-upgrade-1.4.0.18-1.4.0.19.php" hash="7b745587ba63b0be9aced262780b62b5"/><file name="mysql4-upgrade-1.4.0.19-1.4.0.20.php" hash="4d06c0487cfc63f4f9f9d74e34f19001"/><file name="mysql4-upgrade-1.4.0.2-1.4.0.3.php" hash="6e1948d6d323b3ced1bfc7f895f9dc50"/><file name="mysql4-upgrade-1.4.0.20-1.4.0.21.php" hash="72b34c101241c573b18259e380f9f305"/><file name="mysql4-upgrade-1.4.0.21-1.4.0.22.php" hash="adee3c1e3f99eea5ed69aeea869ae720"/><file name="mysql4-upgrade-1.4.0.22-1.4.0.23.php" hash="65065d54f7d632ca505d75125450bad2"/><file name="mysql4-upgrade-1.4.0.23-1.4.0.24.php" hash="029e72643fda31c50c91f59812600862"/><file name="mysql4-upgrade-1.4.0.24-1.4.0.25.php" hash="c48ea044fd5fb5e17d8641260f9aea4d"/><file name="mysql4-upgrade-1.4.0.3-1.4.0.4.php" hash="aadd6c47508e97c907100a9ee4efbb7e"/><file name="mysql4-upgrade-1.4.0.4-1.4.0.5.php" hash="aadc3e1578524b4397df7e1427d69d95"/><file name="mysql4-upgrade-1.4.0.5-1.4.0.6.php" hash="dfbb02e3ae02c8c7a274aa76d9a90d51"/><file name="mysql4-upgrade-1.4.0.6-1.4.0.7.php" hash="0376ceeb6feb2569159eaf4d47461fbc"/><file name="mysql4-upgrade-1.4.0.7-1.4.0.8.php" hash="be028c13c7e7e3cbeb386aa0fdc8c557"/><file name="mysql4-upgrade-1.4.0.8-1.4.0.15.php" hash="961b468624d47a60ea3689926548070b"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="064b60eff0c7933b32977f792f9a29af"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="a18bd47beb2638bc79b7b8742cbfd23d"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="b9a6a2cdcac55be8f0e03d93aacbf17b"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="857f785ecad5f12ad1207c3b492a59b2"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="d28e8838f5b0d7323a1d6a984be025b0"/><file name="upgrade-1.6.0.4-1.6.0.5.php" hash="58c7bc285503fcbb93f72247a68bfc87"/><file name="upgrade-1.6.0.5-1.6.0.6.php" hash="eef078b8e6e72a530c633bf79d7af9f5"/><file name="upgrade-1.6.0.6-1.6.0.7.php" hash="9d0d9dbedd6e9f0cc163d61fab6d1b69"/><file name="upgrade-1.6.0.7-1.6.0.8.php" hash="be511c47bb454fda5527d02abb3d355e"/><file name="upgrade-1.6.0.8-1.6.0.9.php" hash="8f1122686f0991af060492948e75229e"/><file name="upgrade-1.6.0.9-1.6.0.10.php" hash="e238fed7b78e3ffc5a9a6428697cd491"/></dir></dir></dir><dir name="SalesRule"><file name="Exception.php" hash="4e9ce8126c516cc05e2ff0cedbe0f20a"/><dir name="Helper"><file name="Coupon.php" hash="076fd16e4bb8955e9b7f939dd70d39cf"/><file name="Data.php" hash="2bdf9d077f4d81ab3e7c900fb5d26d12"/></dir><dir name="Model"><dir name="Coupon"><file name="Codegenerator.php" hash="c8224a37bd1f67dfd70b10327774c0e4"/><file name="CodegeneratorInterface.php" hash="7b15ebeac15c4e87750f68b6e7f21f73"/><file name="Massgenerator.php" hash="85d9dfa52bdfc367c8f9619411487a3d"/></dir><file name="Coupon.php" hash="4cebd26778be971cf1c1514659fa3fba"/><dir name="Mysql4"><dir name="Coupon"><file name="Collection.php" hash="b8b546f6cfc40d1bcc62ae3b98ba56ff"/><file name="Usage.php" hash="28c48eca68e75f5304af95789072c05f"/></dir><file name="Coupon.php" hash="4b078ee80e4e18dfe13b2170b48d9b5a"/><dir name="Report"><file name="Collection.php" hash="b82503dc59eab59ee9a90fd385ba8ad3"/><file name="Rule.php" hash="a07dccccde92de56744b19349c006923"/><dir name="Updatedat"><file name="Collection.php" hash="0673a299aaa19f9fdaa30b51105cf0ce"/></dir></dir><dir name="Rule"><file name="Collection.php" hash="e6a07bfacec4e6739e9a4c20c6685b97"/><dir name="Customer"><file name="Collection.php" hash="2cce404c75e97feea76ed62d400019b1"/></dir><file name="Customer.php" hash="7e2ac0895dad37b0252f2d282062dda4"/><dir name="Product"><file name="Collection.php" hash="fc60274d7949beb2a7d3d172566b3b34"/></dir><file name="Product.php" hash="cc80fd799f39597d876bffed7f9c63e6"/></dir><file name="Rule.php" hash="ec4535389b43e09c3681a372772a9bab"/></dir><file name="Observer.php" hash="6d67a640167d60ad8ade63bf9d61d61f"/><dir name="Quote"><file name="Discount.php" hash="889c7ca97fb7c91e0ff15faa64f817aa"/><file name="Freeshipping.php" hash="9d115f6bf202de539762894215a2c2ea"/><dir name="Nominal"><file name="Discount.php" hash="5ca26a7724b52f3f350ab22043f37ecb"/></dir></dir><dir name="Resource"><dir name="Coupon"><file name="Collection.php" hash="3f3d8eca7a1a0d7a369f8bdd7092f61f"/><file name="Usage.php" hash="c38c2afe3545ed5dff57122735a63565"/></dir><file name="Coupon.php" hash="76121843b67c6ea7ff0ae840683e6add"/><dir name="Report"><file name="Collection.php" hash="6a44c4b951efe14465ff9e1ed87a535d"/><dir name="Rule"><file name="Createdat.php" hash="ae5346dd9a6a2561cb6a4db0c4354ba4"/><file name="Updatedat.php" hash="80d77f02d1c28458c186c13f018f5a8f"/></dir><file name="Rule.php" hash="0205b014096925390bf07e8e0e1514b8"/><dir name="Updatedat"><file name="Collection.php" hash="938a4bd3820ccb3c0bfb2c20f835c53a"/></dir></dir><dir name="Rule"><file name="Collection.php" hash="cbc66e87a2aedb554b49fb99acd46c9d"/><dir name="Customer"><file name="Collection.php" hash="3cd2678e7b2c22765aa867dbcf8678dd"/></dir><file name="Customer.php" hash="aca20264aa59b767a382046391602fac"/><dir name="Product"><file name="Collection.php" hash="a966e01313b05dda88baaee3f32d5a37"/></dir><file name="Product.php" hash="70eb01ef2ff1153711848776dee5222c"/></dir><file name="Rule.php" hash="0c50c2960d17713b0bff7e2c7f5791c2"/></dir><dir name="Rule"><dir name="Action"><file name="Collection.php" hash="14dd3f26a1bee5f17ca0a75ac148427d"/><file name="Product.php" hash="615fca8aecf34bcb0b4a7c4aaab9c16d"/></dir><dir name="Condition"><file name="Address.php" hash="7d57dd2ce9f7d75d654f8ad28946a7ce"/><file name="Combine.php" hash="9ce394da38c750a3d120c493f02227f4"/><dir name="Product"><dir name="Attribute"><file name="Assigned.php" hash="9fd909dfa0a5713b84719b7d9c6ea2ae"/></dir><file name="Combine.php" hash="b1cbb837518d64e4d9c37175e17cb976"/><file name="Found.php" hash="dcebfcc174f8a08a87ade98b6100eada"/><file name="Subselect.php" hash="8cc2f695a23a15d167e02635204e5805"/></dir><file name="Product.php" hash="801d0f155d23474d5f55b5f2abc4af60"/></dir><file name="Customer.php" hash="02503e0189f06db45b1e0ad9623f7680"/><file name="Product.php" hash="7496c3d4f1e0f65659232162c03c4d06"/></dir><file name="Rule.php" hash="45be966f6cb8c52ab162c1243d4b8123"/><dir name="System"><dir name="Config"><dir name="Source"><dir name="Coupon"><file name="Format.php" hash="aab8bc179b0f879e9018bb4ea6c001d5"/></dir></dir></dir></dir><file name="Validator.php" hash="c4fda371798c406760f4cbbada58f8d4"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3d731d199aa29013967a4c94df199800"/><file name="config.xml" hash="e76812df7bcfd375fef4cfc2e4c985e3"/><file name="system.xml" hash="64919875d3da8f8293043eca7b2ce4ee"/></dir><dir name="sql"><dir name="salesrule_setup"><file name="install-1.6.0.0.php" hash="ef3da9f4e8acb17930893c977d34d6fd"/><file name="mysql4-install-0.7.0.php" hash="921d2d467926e0c13eb16dd7334e1714"/><file name="mysql4-install-1.4.0.0.0.php" hash="fcce54959c45dc58d17fe29dd42bf746"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="602b1c05470ccc732de48775df2aca1f"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="1aec3621f741a3415352319c44ee9391"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="172c35aa21c558d5520920d30aca7f24"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="57c383376a15ee04a6f21001e3c1ad90"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="39a55db2190f2535372cad2fad462402"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="0ca2bfede8d72e5c0a5a8b7e47f4b85f"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="01d99c8f79297bf54852166aa401f1e6"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="c45aeb3a84820efddcd1de502493a9ea"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="26a9138f7d291e945c59e3e1bc48c1ef"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="48352dc01f70b8c184e6677a5e776a80"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="e67d8f6a232817d4fab99b30471195c0"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="537402ce4301806c8be55a7bf376ff87"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="03840fca31a1928a99b08adfd7ad0976"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="a781ab1205e762153abbb5c60fb77ccb"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="ba7ea46031b11752fba84f6244f8aed3"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="7424333756913c7c02c1feafc0738c59"/><file name="mysql4-upgrade-1.4.0.0.4-1.4.0.0.5.php" hash="83ec6ae7e67f25b8073d5a356c730032"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="69290121e8067ac32bf79d16617273c3"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="50ca737624508b3318fade4851d1f99d"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="9697fc94895bdd8b83bbc87661251963"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="c9eb0dea1d0f89eee0f9c8386ba59e70"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="8078a6356fca81229d3c09564a31dfa6"/></dir></dir></dir><dir name="Sendfriend"><dir name="Block"><file name="Send.php" hash="c434b505c781fda4ab54a44bfef0f363"/></dir><dir name="Helper"><file name="Data.php" hash="aa58040f89e873a52494cc84163f7b0a"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Sendfriend"><file name="Collection.php" hash="bcec0fd092d5bb47d97118030b574c1b"/></dir><file name="Sendfriend.php" hash="9b077a178f5cb29936332e449b206a90"/><file name="Setup.php" hash="265fa95c0e1934505dc0eaa021bad797"/></dir><file name="Observer.php" hash="0b3d5d71bf38a919b0ab7fefe67de9bd"/><dir name="Resource"><dir name="Sendfriend"><file name="Collection.php" hash="24f71b975d71cdc73e24417a8683b7ee"/></dir><file name="Sendfriend.php" hash="ee8e444138548e24f3650add38e20847"/><file name="Setup.php" hash="174c0cdd833448fe0737b73fd70f55b5"/></dir><file name="Sendfriend.php" hash="5de6284f9cdc19648296209a2f5d7190"/></dir><dir name="controllers"><file name="ProductController.php" hash="58d8e8660033fe5fa3a7e61c9984a9b2"/></dir><dir name="etc"><file name="config.xml" hash="ef5c6e640f4e7ab18df16a53bd0629c3"/><file name="system.xml" hash="57041fc5b58220a0cd050bc55c70631d"/></dir><dir name="sql"><dir name="sendfriend_setup"><file name="install-1.6.0.0.php" hash="43d65881ae4702ba24cc60b266144865"/><file name="mysql4-install-0.7.0.php" hash="6350ae8dc9c3f285eaeaf45e406c6b1c"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="c0814a6cbc54356121ec60bbab931889"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="c38e9d633fc193e475c355afabfa6b34"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="88af0150e5a4515e87947f1ddacfd927"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="e441c905520470f0b38ec23a2276416a"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="b744deb766c95fae2c6ccf1356a7f6fc"/></dir></dir></dir><dir name="Shipping"><dir name="Block"><dir name="Tracking"><file name="Ajax.php" hash="c5a1e6b590e05d731e8eef9624501c07"/><file name="Popup.php" hash="ea5e6055e4516698522332e096edde09"/></dir></dir><file name="Exception.php" hash="35143e238e766f5c7227ea766991de32"/><dir name="Helper"><file name="Data.php" hash="296032d034f6215955a082415204d33e"/></dir><dir name="Model"><dir name="Carrier"><file name="Abstract.php" hash="22c814e5584e75f59252df24c660a679"/><file name="Flatrate.php" hash="32af10507ddcd512656d0cab1dabbe8f"/><file name="Freeshipping.php" hash="9ae21e34b64d99c06cbea33af1636c58"/><file name="Interface.php" hash="8834c6a20c305611bfa9f54449b61ac7"/><file name="Pickup.php" hash="c2b55a625a3111ef8148d971c4037099"/><file name="Tablerate.php" hash="315766cec4a075d5060ea2bd8467a6eb"/></dir><file name="Config.php" hash="b2d41b1048749a80177b4c0f35a902a7"/><file name="Info.php" hash="5ef452697059312e316d011205d220de"/><dir name="Mysql4"><dir name="Carrier"><dir name="Tablerate"><file name="Collection.php" hash="b2947c163acd20e4186cf6de1327db3c"/></dir><file name="Tablerate.php" hash="0a9027c484b45aa2b2039e9102c207bf"/></dir></dir><dir name="Rate"><file name="Abstract.php" hash="a846366861445de8064ad961a063f455"/><file name="Request.php" hash="da53b2509c54cc9446e6944e441853a7"/><dir name="Result"><file name="Abstract.php" hash="c285a4e19c7d7deaf76648a8503ef357"/><file name="Error.php" hash="837d9bc34da0c3721f40fef8698613f6"/><file name="Method.php" hash="cc8a4e4f3ac3b51002c8ff72b195ceca"/></dir><file name="Result.php" hash="0ece73d8d4d0da4e5cdf6a7ecaf51de0"/></dir><dir name="Resource"><dir name="Carrier"><dir name="Tablerate"><file name="Collection.php" hash="8ab50521bd064d60a29ebd755490e522"/></dir><file name="Tablerate.php" hash="698b13767acab216353a8aaad8b3a27b"/></dir></dir><dir name="Shipment"><file name="Request.php" hash="c9fb828ca234d36b1161402fc449f70b"/><file name="Return.php" hash="67d08700e7215f5f39ed7c2d13717527"/></dir><file name="Shipping.php" hash="d7409cdf2e31beba185c7969e511543a"/><dir name="Source"><file name="HandlingAction.php" hash="dd48d76f60399c612e8162834293157e"/><file name="HandlingType.php" hash="7601bea631571182aec8e2eac9635bc6"/></dir><dir name="Tracking"><dir name="Result"><file name="Abstract.php" hash="d10fe8e3929b5f4d37fa7815bbd6cb33"/><file name="Error.php" hash="7e429bbf73f960c86ea98c39ac97bcb2"/><file name="Status.php" hash="097b6ccdcfef61790f074621a98d9df7"/></dir><file name="Result.php" hash="6ab087d47eb717cad17fda03bc712c3e"/></dir></dir><dir name="controllers"><file name="ShippingController.php" hash="cc5ab865a08b42a5d843ccbd4b0e5d70"/><file name="TrackingController.php" hash="db1a9965e8475e038fe8ef4b7b90f2c7"/></dir><dir name="etc"><file name="adminhtml.xml" hash="563e17ed4b244f4b005594e4e2e6b1db"/><file name="config.xml" hash="cf72271df9c7d3d4c3b5fd312ad13a5b"/><file name="system.xml" hash="9c9d5cbb5633744f3c7c6664ff05babe"/></dir><dir name="sql"><dir name="shipping_setup"><file name="install-1.6.0.0.php" hash="a338147f6f1aaf4a493898c5ebdb48d1"/><file name="mysql4-install-0.7.0.php" hash="3b35de934df04b9d397198109ce75771"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ddbe84100c05437c3d7adcf6c3c4538b"/></dir></dir></dir><dir name="Sitemap"><dir name="Helper"><file name="Data.php" hash="6bf2e0bffe2507a5ab90a99f94de549b"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Catalog"><file name="Category.php" hash="3b3c1da8c0d2fd3dc22129593b360754"/><file name="Product.php" hash="67a0941366203e4657a2e25224067729"/></dir><dir name="Cms"><file name="Page.php" hash="c494cb8fab1bfec8fd17133511a184ae"/></dir><dir name="Sitemap"><file name="Collection.php" hash="51d5ca69a0bf7c7a3350f29025479b05"/></dir><file name="Sitemap.php" hash="b197605bff45bf1ae94cefc9d182c0e9"/></dir><file name="Observer.php" hash="19e6519062d6d06ad66831b30b7eaf86"/><dir name="Resource"><dir name="Catalog"><file name="Abstract.php" hash="0a50ee109df005dae5b37606fa7289aa"/><file name="Category.php" hash="7b6420762899f1a0cdaa8fc7fab0fa1a"/><file name="Product.php" hash="5e3eb5ba9ef747cf8dbd8355e91f7fad"/></dir><dir name="Cms"><file name="Page.php" hash="5b8ecd1bb5badfd408d1a65302ff68bb"/></dir><dir name="Sitemap"><file name="Collection.php" hash="5a92728a6851d4d54876becc785e7825"/></dir><file name="Sitemap.php" hash="5079efecbd47bcef141d0654f5169c1c"/></dir><file name="Sitemap.php" hash="1aafafbf803240a7cdc59136a1b02ece"/></dir><dir name="etc"><file name="adminhtml.xml" hash="29e3669211e4ae919b59651711f278ca"/><file name="config.xml" hash="c92b7da47c8637b25149acaf873dec65"/><file name="system.xml" hash="2dfd284d2aa8ba4930a87e56f570287b"/></dir><dir name="sql"><dir name="sitemap_setup"><file name="install-1.6.0.0.php" hash="e3968f0b4ce2e8be3235b0584a063bc3"/><file name="mysql4-install-0.7.0.php" hash="81da61d8119b5bd005d0ebd0d8bbddf4"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="4f37efc4880b12ae9728a9e7d656d394"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="a140e5675116c2a5c19decc82945c959"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="7e3ed5e46f2cedad36ccdedf71f55e5e"/></dir></dir></dir><dir name="Tag"><dir name="Block"><file name="All.php" hash="5868297a4e88127a4bb9ca1ebed5f051"/><dir name="Customer"><file name="Edit.php" hash="258912c59d4ef9b2ff70ceeed0c04784"/><file name="Recent.php" hash="246c4f4a146e74da1b71729c7790f650"/><file name="Tags.php" hash="c6e67247b85824e129cf3ab9be98bacb"/><file name="View.php" hash="faa3f0ef1bfffd7ee1146d1687150364"/></dir><file name="Popular.php" hash="ed2e1e13560d1e5a46aa42c7857ad989"/><dir name="Product"><file name="List.php" hash="f6b954ac9d96b8b7c013517b0ecf3aa6"/><file name="Result.php" hash="2b8a66d8d9764abd707a94e25b10901a"/></dir></dir><dir name="Helper"><file name="Data.php" hash="6d824384b0a0df4ff33d2924f4d71e4d"/></dir><dir name="Model"><dir name="Api"><file name="V2.php" hash="cba9328c2322e37faeabcdeebd250079"/></dir><file name="Api.php" hash="1c6601f744d27c86454fbe6e1a958d92"/><dir name="Entity"><dir name="Customer"><file name="Collection.php" hash="3920e0f353d3a60ec2d24bc5d8571432"/></dir></dir><dir name="Indexer"><file name="Summary.php" hash="d473f8924e47bffff6b7e9869929b23d"/></dir><dir name="Mysql4"><dir name="Customer"><file name="Collection.php" hash="9c19636f6295507833217724043fe081"/></dir><dir name="Indexer"><file name="Summary.php" hash="47d61d186011e402e542a6a3419bb2b2"/></dir><dir name="Popular"><file name="Collection.php" hash="ea10d8f4f6061681d38990bdba934d64"/></dir><dir name="Product"><file name="Collection.php" hash="b6b622f9be67ea9d8859264f1ea9294a"/></dir><dir name="Tag"><file name="Collection.php" hash="2b207742defcf9cf5c4b3292ed8df272"/><file name="Relation.php" hash="47a7cd136e3d7d027ab53796da9ff7b9"/></dir><file name="Tag.php" hash="c9ba40a21577912877ab199a000f304f"/></dir><dir name="Resource"><dir name="Customer"><file name="Collection.php" hash="5010a57b9a4e8bf17f7b5923e0a9093a"/></dir><dir name="Indexer"><file name="Summary.php" hash="d0db0c94263cfff4b6ec4fcd93adaec2"/></dir><dir name="Popular"><file name="Collection.php" hash="0364f1f31a80002d86f35fb14a6cdec7"/></dir><dir name="Product"><file name="Collection.php" hash="9edba493f4930ab9609b4691be8034c1"/></dir><dir name="Tag"><file name="Collection.php" hash="934a0e6bd72d71428e0f194d9378454a"/><file name="Relation.php" hash="a90fe31d40b3868fe645875a1678eb6e"/></dir><file name="Tag.php" hash="a90b12859d75f1df33cb272416fcb4f2"/></dir><file name="Session.php" hash="887fe96718898876b4a578ada3d6383f"/><dir name="Tag"><file name="Relation.php" hash="4b89602602795ef3c676f8224ca1f67b"/></dir><file name="Tag.php" hash="16a05f65e9436a81c94e86e7b139d320"/></dir><dir name="controllers"><file name="CustomerController.php" hash="907597af877a272d98b41b98ee5734fb"/><file name="IndexController.php" hash="e0c8d1c26b7c31575b89b64cdb359493"/><file name="ListController.php" hash="0226fbf3b3859928a743750b76032438"/><file name="ProductController.php" hash="b358d421a65aaa04fd765e5eb9a6c329"/></dir><dir name="etc"><file name="adminhtml.xml" hash="c156d6c981708ce6343c545676a566ba"/><file name="api.xml" hash="cadb3e216a39b6c3a602edf4417876f7"/><file name="config.xml" hash="034241040fff18a71676cae97d9d4115"/><file name="wsdl.xml" hash="e87343a710e0068dcc555ffc4b302a9b"/><file name="wsi.xml" hash="1d31787826a686590acf89ec2703b76e"/></dir><dir name="sql"><dir name="tag_setup"><file name="install-1.6.0.0.php" hash="c2808c718e9bdc908d28261c9ee76f9d"/><file name="mysql4-install-0.7.0.php" hash="fd4ebd48a951f70fd32f851bdbdeb1e5"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="4fbdf351be48eea3acb1ad470fa65a99"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="4a0f89a08120b9e700c71b7199ec741c"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="005cffca4b5b4053e130daa6eefe8a21"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="e84392accba5a720747d9fd03a37f7e2"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="3384bc150777de038c48cd21fc372a29"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="dd94e312998fbf44bafb7880bacd0d49"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="1927c716b1a865eb6234cec1ed65ea94"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="1893d8e7ec128b9fa59a46faafd09729"/></dir></dir></dir><dir name="Tax"><dir name="Block"><dir name="Adminhtml"><dir name="Frontend"><dir name="Region"><file name="Updater.php" hash="eae742c088fd0e5b8b6ec655e942e67a"/></dir></dir><file name="Notifications.php" hash="f5d2958cccdf0e1ca75eed8022438632"/></dir><dir name="Checkout"><file name="Discount.php" hash="ab6c338885260bdc52b8cd2513786ed4"/><file name="Grandtotal.php" hash="305ad755a3ea293f2b7f4fe217d03ca6"/><file name="Shipping.php" hash="868f6ebc4627984359f1d243b3398c6b"/><file name="Subtotal.php" hash="ca0c91a818c57b317a948a6d2ea2236e"/><file name="Tax.php" hash="349db923d8eb0e6eb3693f64030324c7"/></dir><dir name="Sales"><dir name="Order"><file name="Tax.php" hash="0b517168e0b884108d824dd19c3b2f58"/></dir></dir></dir><file name="Exception.php" hash="134817f848225bfc88be851553dafba6"/><dir name="Helper"><file name="Data.php" hash="9a04b7305f7b9dfbc3362a70f022b317"/></dir><dir name="Model"><dir name="Calculation"><dir name="Rate"><file name="Title.php" hash="cbe6e35f9febbca8ffb9629827a68b73"/></dir><file name="Rate.php" hash="0fbab9716f22a83de77c0ca0c94aeb40"/><file name="Rule.php" hash="7eb4f5f529562d80e5fd99b4c47d5cb3"/></dir><file name="Calculation.php" hash="c765c9e1fe7ea167e1e53349a9e18a33"/><dir name="Class"><dir name="Source"><file name="Customer.php" hash="f6d06efe47e7c5685959e956a2a6dea5"/><file name="Product.php" hash="c0e88ffb2aeb60a496ba466c1cedfd8e"/></dir></dir><file name="Class.php" hash="f14fae96db3b13b77d2ed485f73cfa9d"/><dir name="Config"><file name="Notification.php" hash="4f21ea9d9c67ca63f39c72771b088e40"/><dir name="Price"><file name="Include.php" hash="bad0b10bf559e7bbb3e715b3c5eb0d11"/></dir></dir><file name="Config.php" hash="b731a3ff3197d4faeb79286a4d5f52a7"/><dir name="Mysql4"><dir name="Calculation"><file name="Collection.php" hash="a9b28eff948b411a9a70e5f1e9245f20"/><dir name="Rate"><file name="Collection.php" hash="57ce00827e2914026ff258fda5f3c731"/><dir name="Title"><file name="Collection.php" hash="6be6eabadf9ad24b4e47769158d13ede"/></dir><file name="Title.php" hash="921e2513afbfc66b2fbc10498f5fe397"/></dir><file name="Rate.php" hash="2bdb808f9eca4c199b3ee26bf200015b"/><dir name="Rule"><file name="Collection.php" hash="67300fb90e8f5773666d6cb6a432ef1f"/></dir><file name="Rule.php" hash="830b09ef81c38eccd2b5ac6bacac4ade"/></dir><file name="Calculation.php" hash="f275709492086311b846aaf2ee442b54"/><dir name="Class"><file name="Collection.php" hash="09e5e413d73f207202239eac8915005b"/></dir><file name="Class.php" hash="ec615ab1523b103ffcb2f621467cfb12"/><dir name="Report"><file name="Collection.php" hash="f22a869db862de20e3e8c485b647c933"/><file name="Tax.php" hash="a4ac98f09c37a2ae4330db5d1f3ce7ef"/><dir name="Updatedat"><file name="Collection.php" hash="71b0d744219c130601545e6cc2448f25"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Collection.php" hash="4297ca6f020cc2e3edc4fabbb6b5bd1d"/></dir><file name="Tax.php" hash="a6c454efc6cf663ca14785ed339ff465"/></dir></dir><file name="Setup.php" hash="1538915edef549c61d74f1306d8dd232"/></dir><file name="Observer.php" hash="571696862a48d431b8d4e4adb7501714"/><dir name="Resource"><dir name="Calculation"><file name="Collection.php" hash="8fd71d2be5abbc50bfc23b043bf27100"/><dir name="Rate"><file name="Collection.php" hash="232d6cbb5b9ea727c9f2c22b89bdd4c0"/><dir name="Title"><file name="Collection.php" hash="81d4993f07b85ffcbca0331974aeeee3"/></dir><file name="Title.php" hash="350855d6219dc7c02753ca9be5fb9b59"/></dir><file name="Rate.php" hash="1c9a4255898b508393364396dbdce096"/><dir name="Rule"><file name="Collection.php" hash="b6fd0f7c8c36cc10c605a8b2726b33b1"/></dir><file name="Rule.php" hash="4c81eb1f8bc2c0251e4876f32ea1e6ba"/></dir><file name="Calculation.php" hash="4a73463dcf5237633e361800eacdd09e"/><dir name="Class"><file name="Collection.php" hash="13073a929e7c02c87753acc6d0bd38fc"/></dir><file name="Class.php" hash="4502445de0970861f4b87042cd30aeb6"/><dir name="Report"><file name="Collection.php" hash="fd18217a781af914988f81eec1660662"/><dir name="Tax"><file name="Createdat.php" hash="ef65059e92035ebf976b937c1fec0b91"/><file name="Updatedat.php" hash="3b9dabbd4d9ef21bd2d2a520549b6964"/></dir><file name="Tax.php" hash="7b158c0744d9f0badaa63b10271811c1"/><dir name="Updatedat"><file name="Collection.php" hash="8632c08217b29740d214ad1e37c7064a"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Collection.php" hash="55c5363e2074c9af59f044765553c51a"/><dir name="Item"><file name="Collection.php" hash="f41bbd5588c871de548716219798dd73"/></dir><file name="Item.php" hash="e1d727a298e4295e605a6a9486d04d9b"/></dir><file name="Tax.php" hash="6250a0bfb54b43010137d7725bcd1088"/></dir></dir><file name="Setup.php" hash="2c29db94902284cd174e19a2ce14f9b2"/></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Item.php" hash="f336fd2059e5761bc6f2a5bfeca11978"/></dir><file name="Tax.php" hash="4717bd548a8a5e2fdc7121a470f8b4d8"/></dir><dir name="Pdf"><file name="Grandtotal.php" hash="78a9facf89b73f40d677721a7a5fffdf"/><file name="Shipping.php" hash="2de97a1a33ec131e74df18b328017e64"/><file name="Subtotal.php" hash="29c6e113f41814271d69673ecc8dd649"/><file name="Tax.php" hash="d6fa76691b87d52a36723b15f976acf9"/></dir><dir name="Total"><dir name="Quote"><file name="Discount.php" hash="3a4297a2c36d17e5e8e7db701e53144e"/><dir name="Nominal"><file name="Subtotal.php" hash="3a9f825f68d8445d2b632cae70b83dbc"/><file name="Tax.php" hash="2301b2eafae1780330deff59cf3032fd"/></dir><file name="Shipping.php" hash="2ee60af500b52acc5bae799593c26841"/><file name="Subtotal.php" hash="2eea1fa38f7b253f4431aa424daefe25"/><file name="Tax.php" hash="d658f47c72675e6908b9f8c9d25a791a"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Algorithm.php" hash="e8d0092465380aeaa9a89e8c3804e21f"/><file name="Apply.php" hash="8d06d8938dfd4960d10f4278b842b294"/><file name="PriceType.php" hash="a4a573c741e05bec3b04de7c5cae0e0c"/><dir name="Tax"><file name="Country.php" hash="850f8683eef4258523323d565bb8b43a"/><dir name="Display"><file name="Type.php" hash="fab5dca34c90f0c7a0bba273bd2cd319"/></dir><file name="Region.php" hash="2443ba70dc76ecf71af26c94c33d1b04"/></dir></dir></dir></dir></dir><dir name="data"><dir name="tax_setup"><file name="data-install-1.6.0.0.php" hash="73cd3a6c8f182f686f2fb61824b6ffd7"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="3d99f2ea678fdd83f0f9f5c115a971a0"/><file name="config.xml" hash="cb8589c5207907b8ce2fb8c20cdedbf6"/><file name="system.xml" hash="7220c5958c58856ece69bb3d6458c0e6"/></dir><dir name="sql"><dir name="tax_setup"><file name="install-1.6.0.0.php" hash="4c14e324b02ceb79258ccbd98e474389"/><file name="mysql4-install-0.7.0.php" hash="5571445e2b9e43bb63658b3c8801e5a9"/><file name="mysql4-install-1.4.0.0.php" hash="f3c2df0be2d8e7d9dc9815a4ddf2318d"/><file name="mysql4-upgrade-0.6.1-0.7.0.php" hash="7068af799ffa77608f336152e1b66187"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="be1ca656fff19428909b3335c7673580"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="c7b8f3aa6abc242c671fa7e3a7052f3b"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="2ef9e7c6f005ef5f9153423d16a88f96"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="f470a41fbd7b5af3747f381db54aac40"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="2e63c1b0b9226c21a4c313ada8ddb06d"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="b57330d4ee03ad16d075ca7e84185682"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="9aad92fcfba9178f923eb977b2b7d8bf"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="8ba0f98f056b1b527ea48ec7fc95ed7a"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="672255066405d197b12896d83c8d9b78"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="b3a91bda34376d031f1f70825256674e"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="c06869f49954a9fdf9a4e058b2955019"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="184f1afe963a5a49c6af3b69df2e39bc"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="5a8c1f51dbe5b4fd4789dc36a74bf1e4"/><file name="mysql4-upgrade-1.3.9-1.4.0.php" hash="30c7713f0e1e098c44f3d20fcd2dc0d9"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="4665a694d158f1c9f1b0a9b8ada53c6f"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="e047de6af7a34d3e486f4b5ccd752f2c"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="210748a7fde45c907a388cc38fcfd429"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="f8f34e33effab8b964e9f27d5f8fab92"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="8bb7f207b0d724b20598bfa053051439"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="08d57d78afe883166f29c87441eca701"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="6f5d36e28af9da0fcc659c33fb1a4c40"/></dir></dir></dir><dir name="Uploader"><dir name="Block"><file name="Abstract.php" hash="68ed313c61bc1b6074ecaaff62273bfe"/><file name="Multiple.php" hash="1f72d21aac4581eda22f9da7ed298b52"/><file name="Single.php" hash="b4a8b6ce00596199bbf78471431c571a"/></dir><dir name="Helper"><file name="Data.php" hash="138484d302192cd965eae261d4a0c981"/><file name="File.php" hash="be67fbe0667e383d514afae52301446c"/></dir><dir name="Model"><dir name="Config"><file name="Abstract.php" hash="768338c35ed771d91657b9e3467f59cf"/><file name="Browsebutton.php" hash="8fc2c9799da0e42daf13379b3b75acf9"/><file name="Misc.php" hash="247701eb6592993685e7fd6c617ccb15"/><file name="Uploader.php" hash="b55568f7b9fb32b91fbf30009dff7e45"/></dir></dir><dir name="etc"><file name="config.xml" hash="3fb54201c9ab58d8d587e9ce5ae569d8"/><file name="jstranslator.xml" hash="ad8023790ea292f1be4a50e84ded31ec"/></dir></dir><dir name="Usa"><dir name="Block"><dir name="Adminhtml"><dir name="Dhl"><file name="Unitofmeasure.php" hash="aa6d70fd5c2fb7fdb83aa476ab3a334d"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="ce1c2a972ce6ea88f6016c6921aa2668"/></dir><dir name="Model"><dir name="Shipping"><dir name="Carrier"><dir name="Abstract"><dir name="Source"><file name="Mode.php" hash="c4b7333d787083278d14dd5a6b57598a"/><file name="Requesttype.php" hash="2231301ef94bc0c85d79831e47f38362"/></dir></dir><file name="Abstract.php" hash="475e8dcdfb6bc5c050b14682884de1a0"/><dir name="Dhl"><file name="Abstract.php" hash="a33e2e899d52d1f37cf6a731a58889c8"/><dir name="International"><dir name="Source"><file name="Contenttype.php" hash="b4db2fda105ce4200c6021c7bcbc3d1f"/><dir name="Method"><file name="Abstract.php" hash="dec66cd92cdc58bb28a3f4e8417449da"/><file name="Doc.php" hash="a9b7aad608a6c3c963d170937da2d39d"/><file name="Freedoc.php" hash="2e46f7c2cbff611fbf89a0a6068bfb64"/><file name="Freenondoc.php" hash="36e5c8cc9940c627cc9fec162ca36d37"/><file name="Nondoc.php" hash="76b0b629ed4a8cb9dcea909c99ffe305"/><file name="Size.php" hash="194cdfe6d8e4aa40804a05887c0ba461"/><file name="Unitofmeasure.php" hash="6e171bf090ff7423207099c4df65782f"/></dir></dir></dir><file name="International.php" hash="a9bf7a915a368164672cc7981029c739"/><dir name="Label"><dir name="Pdf"><file name="Page.php" hash="99c2322ff56b8891c8e18bbece736677"/><file name="PageBuilder.php" hash="8407592238dc66f9f74547602ebdbfb0"/></dir><file name="Pdf.php" hash="046eba823e0bd8ed3ad8ee0bbdc0cdd7"/></dir><dir name="Source"><file name="Dutypaymenttype.php" hash="65b9a133d8b23d521903c1ca38cbba6d"/><file name="Freemethod.php" hash="60f5169fc5a3d60bbccd10fa7d674463"/><file name="Method.php" hash="91249bbb0a60708a7b6c1e2e919643ad"/><dir name="Protection"><file name="Rounding.php" hash="494a0ef4bd57ae523578df64dd60720f"/><file name="Value.php" hash="d1298eb253fd835f3f854a353db2f25f"/></dir><file name="Shipmenttype.php" hash="41a9dc1755d603b1fe2ac420eaac67e1"/></dir></dir><file name="Dhl.php" hash="e78fbc1a06f29edb020726e02dac94d7"/><dir name="Fedex"><dir name="Source"><file name="Dropoff.php" hash="1ad1f1d123bef11d3eba5e4227ee6337"/><file name="Freemethod.php" hash="a3553e0f71095f8e04cabe0c67b97172"/><file name="Method.php" hash="0fe8a73c64ae7eaf99826998c712c844"/><file name="Packaging.php" hash="f38f31e935180278934d4ed6010a3475"/><file name="Unitofmeasure.php" hash="5f96db4caf4086665c91b450c51e9783"/></dir></dir><file name="Fedex.php" hash="341d8093ba039ff0439eeeec5db4a72c"/><dir name="Ups"><dir name="Source"><file name="Container.php" hash="2f0b789d516fc028c3c1a2474e238bc8"/><file name="DestType.php" hash="8464331937887875496d14cb570ce9f2"/><file name="Freemethod.php" hash="144eab21d02ddc5aaa560edeb0e519fa"/><file name="Method.php" hash="65ca936d439cc03198d0523cbf3be5a8"/><file name="Mode.php" hash="1805aee8fbdff130f3bdfb3c46feaa21"/><file name="OriginShipment.php" hash="7adfc5192d9f5205a0554990510744e9"/><file name="Pickup.php" hash="6ba1bcb3fde3ddb56b1e1842ed3f54da"/><file name="Type.php" hash="0bd501f64815ed42deba122a48e30a8d"/><file name="Unitofmeasure.php" hash="451ad9bda2daa0b7cc0291e6f49c5ee6"/></dir></dir><file name="Ups.php" hash="da516a195d29acc8ec8584db92ef51c9"/><dir name="Usps"><dir name="Source"><file name="Container.php" hash="cc193d35a2c48ebdfc607f2a6aa22fea"/><file name="Freemethod.php" hash="8d55016301502a5e90a20ed0be3bcd0a"/><file name="Machinable.php" hash="ea50b2832ff3d7557eeaf1d5558900aa"/><file name="Method.php" hash="c798b9f38f95eb82476fbf3a7e2c4161"/><file name="Size.php" hash="adf168c941988427f20eff4d614b6500"/></dir></dir><file name="Usps.php" hash="1983c0f13d22ba0c4b7a939482c763bd"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="de765210e895542c74752d5c72547cea"/><dir name="dhl"><dir name="international"><file name="countries.xml" hash="6dcdf8dfc8d3e0e87655f602bd485e92"/></dir></dir><file name="system.xml" hash="607b156b3a1a4dad5553e84acb459edd"/><dir name="wsdl"><dir name="FedEx"><file name="RateService_v10.wsdl" hash="352ed0cd739b31d42d206aba31bf4c31"/><file name="RateService_v9.wsdl" hash="5e698519a3b3ae3dcea2105545053763"/><file name="ShipService_v10.wsdl" hash="4e661e70491a1af695c27878610054e2"/><file name="ShipService_v9.wsdl" hash="9c3779aa87540dcae41b43b16b724df6"/><file name="TrackService_v5.wsdl" hash="89cc7077a8fc439446e70bac0ca0f0c1"/></dir></dir></dir><dir name="sql"><dir name="usa_setup"><file name="install-1.6.0.0.php" hash="68ec9644080ba8163104e983fdbcb9bb"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="83250a3964db7956e84f62eddb3be1ac"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="ebee347b03130506141a635c34847aa9"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="45b2c1803f13a7c18b4a812b797c4603"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="1553fcefb1914c86a831894128126a35"/></dir></dir></dir><dir name="Weee"><dir name="Block"><dir name="Element"><dir name="Weee"><file name="Tax.php" hash="23f63c80fff28f6a432086a899da263e"/></dir></dir><dir name="Renderer"><dir name="Weee"><file name="Tax.php" hash="057294cd195b3fb4ca5c1737cc7b0eaf"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="9cb6e70dbddb395a5c8ef5a58401b9bf"/></dir><dir name="Model"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="3c3579878bb1df64f30e91934d54e7eb"/></dir></dir></dir><dir name="Config"><dir name="Source"><file name="Display.php" hash="57693773a99739bb0d20bfe03c77de23"/><dir name="Fpt"><file name="Tax.php" hash="1e8024ae0da70cbc9a9872c2a6a0ac83"/></dir></dir></dir><dir name="Mysql4"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="328e308a784c9cebc94f31035db8e250"/></dir></dir></dir><file name="Setup.php" hash="2cf0f2771b2f1867ef03f421e5340f82"/><file name="Tax.php" hash="18ee47054f3ec738b8c28aec79dfdb7e"/></dir><file name="Observer.php" hash="b8f8f5d92815ac5d9a0cf6886f63ac31"/><dir name="Resource"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="8e7788f1ae65b900a08796ce191494da"/></dir></dir></dir><file name="Setup.php" hash="9271d672996dcb9d13e712d7dbe4f2c9"/><file name="Tax.php" hash="27762b8450a0d9804ceaa4c9082712e1"/></dir><file name="Tax.php" hash="c48fa3fc37b885bad8d9404f9a3c769c"/><dir name="Total"><dir name="Creditmemo"><file name="Weee.php" hash="019940c068e8893f5790e20cbd329998"/></dir><dir name="Invoice"><file name="Weee.php" hash="4c13fc79c012c2d94cb1bb602c7362c3"/></dir><dir name="Quote"><dir name="Nominal"><file name="Weee.php" hash="94f2ae2dd989fc2717b998c71861e3d1"/></dir><file name="Weee.php" hash="1eedda120ad286228975e2857184b362"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="fd17dbd55bb0f290feb984e82482ecb1"/><file name="system.xml" hash="ef40deebb9016cde8ee08a7cdbda1711"/></dir><dir name="sql"><dir name="weee_setup"><file name="install-1.6.0.0.php" hash="bfc75c8a7df559a92ffcd186bf53c0f3"/><file name="mysql4-install-0.1.php" hash="f7423f7460bbfab30e71b47e344fa159"/><file name="mysql4-upgrade-0.1-0.2.php" hash="6d72ffda83cad4435f67ec8284a6fdfd"/><file name="mysql4-upgrade-0.10-0.11.php" hash="d8db1bff60b64f0b876a7d9319760e19"/><file name="mysql4-upgrade-0.11-0.12.php" hash="6da6743057f0a4e32ed3e0ee97839327"/><file name="mysql4-upgrade-0.12-0.13.php" hash="153d446b9255e40f77023eb9088380a2"/><file name="mysql4-upgrade-0.2-0.3.php" hash="7af0c55abea7af5834c9935ead8200e6"/><file name="mysql4-upgrade-0.3-0.4.php" hash="e80aa5b416399a3f03cccc3427d972b0"/><file name="mysql4-upgrade-0.4-0.5.php" hash="eec167a7d45e7c2a1e04f833ad866f77"/><file name="mysql4-upgrade-0.5-0.6.php" hash="02e67f9269d46661d65f232dd0a70e1c"/><file name="mysql4-upgrade-0.6-0.7.php" hash="1c86934423bdcd22d3cbcb1f3b85e8c3"/><file name="mysql4-upgrade-0.7-0.8.php" hash="0a5439668ecc660e34d8e7dd1401ab1d"/><file name="mysql4-upgrade-0.8-0.9.php" hash="235184f61ff872e6e71cd0a2d5bc1458"/><file name="mysql4-upgrade-0.9-0.10.php" hash="2a30b3e6471ddbf3ea70e1c95c319ed3"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="a60aeb96c1364daec6eb6b9ba1ff6e5d"/></dir></dir></dir><dir name="Widget"><dir name="Block"><dir name="Adminhtml"><dir name="Widget"><file name="Chooser.php" hash="0a0aac34f5fbe815255b1ee03ee6c76f"/><file name="Form.php" hash="46164d4a81302a95c797e5edcc4c63ac"/><dir name="Instance"><dir name="Edit"><dir name="Chooser"><file name="Block.php" hash="7058735394083dc96501013f1a8a387f"/><file name="Layout.php" hash="69b066a40ef32cc5ece935a4e7a19c16"/><file name="Template.php" hash="da707b616f69140402370331988d15a3"/></dir><file name="Form.php" hash="255ede0a28ae87b550ba4bb8e52b059b"/><dir name="Tab"><dir name="Main"><file name="Layout.php" hash="8593998ae0f15b42846bc68118f92baf"/></dir><file name="Main.php" hash="1dc0071fb877469c507bc72ca3c86b1c"/><file name="Properties.php" hash="48f89f3721a40bf109b938b84c99a5ef"/><file name="Settings.php" hash="308cd2ebd3fd985326fb10d75b674ace"/></dir><file name="Tabs.php" hash="cdb09602bebd1f90f5adb6b7f15c7cf9"/></dir><file name="Edit.php" hash="8b5136b252c2dc7e3c1115c052c87690"/><file name="Grid.php" hash="8a97ecbf9e4628936b4c6a4618a9a79a"/></dir><file name="Instance.php" hash="f28ea283c912e71d31500417d3f8f342"/><file name="Options.php" hash="ef5736010cb81ea203357df31983c0ee"/></dir><file name="Widget.php" hash="95042144450d0c43e3b0708e4429ebc3"/></dir><file name="Interface.php" hash="c21020fb6a0314bfe39dfa29c4ffd825"/></dir><dir name="Helper"><file name="Data.php" hash="9c2486b93790b9ba648ed489620809a9"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Widget"><dir name="Instance"><file name="Collection.php" hash="8b053745adbecece87ccc95979e3eb9c"/></dir><file name="Instance.php" hash="c70faec36fec06928b04bc744eb0f2ee"/></dir><file name="Widget.php" hash="14998c148be50a45f837d0f680368f48"/></dir><file name="Observer.php" hash="bb16c366d45cb6c2cb3bee081ef1296e"/><dir name="Resource"><dir name="Widget"><dir name="Instance"><file name="Collection.php" hash="3a9a90430907aafb90aba1016653d23e"/></dir><file name="Instance.php" hash="4cc2fe32326424f0dfef1ba12edc2308"/></dir><file name="Widget.php" hash="c20c80932a5fbaa85bb838fbe5041a51"/></dir><dir name="Template"><file name="Filter.php" hash="9ca63f12391cd1c82ce6d125b31879c2"/></dir><dir name="Widget"><file name="Config.php" hash="5413241c93b7b626327fdc53c99ad525"/><file name="Instance.php" hash="8ab973cbe1aa067b14d212060c7d5cc0"/></dir><file name="Widget.php" hash="5fd6abc24e19e948d39ac13c52725d1a"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Widget"><file name="InstanceController.php" hash="819bb4f59821d89cbffdefb00e4432b1"/></dir><file name="WidgetController.php" hash="fa6ddf084f22912a786f000791ee3332"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="e635ea0bd54262e557e4e9eb994cda1f"/><file name="config.xml" hash="9d0b798ca36be2ef2cecf68b0b9e9a9b"/><file name="jstranslator.xml" hash="46eca3103cb2e0d6504dbdd0d4b6337f"/></dir><dir name="sql"><dir name="widget_setup"><file name="install-1.6.0.0.php" hash="fe05bdd574a78eaba1106c4c6d103166"/><file name="mysql4-install-1.4.0.0.0.php" hash="131a7eeb07cc4031c3b36fe7bfa06176"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="e6c5010f5267ac8b0c8088ba1bce060e"/></dir></dir></dir><dir name="Wishlist"><dir name="Block"><file name="Abstract.php" hash="7352820e2c6073e09636692a438f95a1"/><dir name="Customer"><file name="Sharing.php" hash="1649e1df9947f7a3b6720a7422eaae52"/><file name="Sidebar.php" hash="4e44d260e041cf0f91505455791107a4"/><dir name="Wishlist"><file name="Button.php" hash="872261e1192ccb98663bafd0afda0d5c"/><dir name="Item"><dir name="Column"><file name="Cart.php" hash="3a9314f56505c0db28bcf6247076d925"/><file name="Comment.php" hash="aa485bc5ef3c26763a8691b089693cc8"/><file name="Image.php" hash="363930a4118e81f62b55c616ec81b01c"/><file name="Remove.php" hash="3d1b02be1da916315ae4bee80b8cce2a"/></dir><file name="Column.php" hash="523f1545fdaa40746266fbc314b9694d"/><file name="Options.php" hash="6d59d32d2b450494a1e5183290f070e2"/></dir><file name="Items.php" hash="d8ad764345d6993370ce69e9d5c1fa24"/></dir><file name="Wishlist.php" hash="8ef6eeee9f331eae1b37290159b00704"/></dir><dir name="Item"><file name="Configure.php" hash="df540c6d631dad1df585477a6094efa2"/></dir><file name="Links.php" hash="7388c5aa2f11b17f7e1acbf1e3154fee"/><dir name="Render"><dir name="Item"><file name="Price.php" hash="c7897ddc67cdeb3270e6bc120034e601"/></dir></dir><dir name="Share"><dir name="Email"><file name="Items.php" hash="2c5e179ebbb18e061eb574a21a9729e1"/><file name="Rss.php" hash="69dcb685b4ebdc1c409832c31a70d5c1"/></dir><file name="Wishlist.php" hash="36ddc5b0d9d66e24c1557a4f953ae412"/></dir></dir><dir name="Controller"><file name="Abstract.php" hash="03947a26493474f68a78ac21f32b9342"/></dir><dir name="Helper"><file name="Data.php" hash="6cc5ff612bca8eaa04db9f8b84d28262"/></dir><dir name="Model"><dir name="Config"><dir name="Source"><file name="Summary.php" hash="fddf0fcbe285076f626f06ab9b8b43de"/></dir></dir><file name="Config.php" hash="646e0e9adf588f9d0bc3f9ed1aa38fb4"/><dir name="Item"><file name="Option.php" hash="56539786a0ba47bcee01f67fe260366f"/></dir><file name="Item.php" hash="bc30a733ecd2e3ed20602488c1844df0"/><dir name="Mysql4"><dir name="Item"><file name="Collection.php" hash="7b728a313029fd327839e20e14d87f67"/><dir name="Option"><file name="Collection.php" hash="25f4702f7f8b2043683ad8a6f7fe6c1f"/></dir><file name="Option.php" hash="c8d065def3aebbd48c246c96152fdcc1"/></dir><file name="Item.php" hash="e579117f62f2539ad727b3c4f113d464"/><dir name="Product"><file name="Collection.php" hash="bf8e2aee1ad775f658cd23e722f87718"/></dir><dir name="Wishlist"><file name="Collection.php" hash="fe599f4061cec35c9708adafef85eedb"/></dir><file name="Wishlist.php" hash="d448e775459bb534032fd49baa11b17f"/></dir><file name="Observer.php" hash="ae44ab5404204f8d624b5ec25eccca0f"/><dir name="Resource"><dir name="Item"><file name="Collection.php" hash="6aa52daba54440df4f74bc4048ab6f35"/><dir name="Option"><file name="Collection.php" hash="87a9f18e10260fccba022110bda6cdfd"/></dir><file name="Option.php" hash="ea1490b6cef10a18b315663be8b4358b"/></dir><file name="Item.php" hash="b33c9ae9c772cc2962d6e9c3e2b65809"/><dir name="Product"><file name="Collection.php" hash="613df0bcf1fb3689c4c93ce216a169c0"/></dir><dir name="Wishlist"><file name="Collection.php" hash="ad5efb5bd2fc89b646b5215f7b1e5d30"/></dir><file name="Wishlist.php" hash="a0820a5c980ed3b30e1f1b40acf82144"/></dir><file name="Session.php" hash="83cca8e59015346c16cf6c7ca33ce16a"/><file name="Wishlist.php" hash="aca197421b94af4baedcd1e55e72da83"/></dir><dir name="controllers"><file name="IndexController.php" hash="a095aa912813a72fb75a02a5da61d797"/><file name="SharedController.php" hash="f271d1a01b6db8122c2e806222986248"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1d60d7a6f4a0860ac7c97d372c3fe033"/><file name="config.xml" hash="807e8eeb1b8e43a55aa7fbb6897204e1"/><file name="system.xml" hash="ea3dd210a0775e6c238f73e296731694"/></dir><dir name="sql"><dir name="wishlist_setup"><file name="install-1.6.0.0.php" hash="33a95e58bf36403e3332c8179fd223a5"/><file name="mysql4-install-0.7.0.php" hash="0ad4dd35e9bfcacd896a473389bb5d02"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="11ac69d9c9e48b276f3cc7ffbe5f4ff9"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="7a2e6d2f78ecde8da32b54bd62f59fec"/><file name="mysql4-upgrade-0.7.2-0.7.4.php" hash="1542cb7321c5550eb704b8fc33bed06f"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="445f775cedb1ef509ad6eab4e5562859"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="9b802c81524d358727eaa9e707b1a173"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="6677145122de6fbbaba4d94af4951c8e"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="1eb422ca0f5a852efc04b3f26b7aee16"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="463c8a2f3460283b79d8bac7cc12028b"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="f47f0f666365f61b750ca9ad540114f9"/></dir></dir></dir></dir><dir name="Zend"><file name="Date.php" hash="95bf218944785f606f22c2ea0c077f5d"/><dir name="Db"><file name="Select.php" hash="28f3efa5f9797af22f899fb525dbb44f"/><file name="Statement.php" hash="4b5b39a1e1c651ab9d6db332c882fdf7"/></dir><file name="Mime.php" hash="f216d84221e3d7601822b4c95948aeaf"/><dir name="Validate"><file name="Hostname.php" hash="08c032ea8831e62e79c792e274220aa9"/></dir><dir name="Xml"><file name="Security.php" hash="7366a7b9e2dab5551b557f49d900d6a1"/></dir></dir></target><target name="mage"><dir name="app"><file name="Mage.php" hash="de2e5a980d13b114adcbf1ec5e56aa77"/><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/><file name="bootstrap.php" hash="a617c37f2a73cc3edbd6a545f2e2e00b"/></dir><dir name="."><file name="cron.php" hash="4635e5b99bfca47a0182a96a3f6dc77e"/><file name="LICENSE.txt" hash="59563e7be45096d0833dade102989042"/><file name="index.php.sample" hash="45893b3f7f642cd085b7922b51c673a0"/><file name=".htaccess.sample" hash="971c336db60ac86ae96b5c5871be1e8c"/><file name="LICENSE_AFL.txt" hash="45a399f2095030865fb962263ccd7506"/><file name="LICENSE.html" hash="caf0a79ffb5e4719f9f4de286f253a61"/><file name="cron.sh" hash="80579b07c2ef11b488014de167f3afc0"/><file name="install.php" hash="908eccc23a47e0c455cc859b2ff4db0c"/><file name="php.ini.sample" hash="d7412c2f78440a96fc2d9378ccf460cb"/><file name="get.php" hash="2a16b51e2ccb46e237e00072e0490ffe"/><file name="RELEASE_NOTES.txt" hash="3f3c10672f9a0fb01272564588c6e062"/><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><file name="api.php" hash="a35ec5dbd62ae1f6683e7edca8018bc1"/></dir><dir name="errors"><file name="404.php" hash="589e28548254946751733ac8bac7a160"/><file name="503.php" hash="49d4f4a126202215605c51c5cdacfba3"/><dir name="default"><file name="404.phtml" hash="af7b554e2b6596a66251134c107d6db2"/><file name="503.phtml" hash="d456bc683ed74a37b3853b385ea3daa0"/><dir name="css"><file name="styles.css" hash="0d34138c8c22e5e7fe0474f88be13be2"/></dir><dir name="images"><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_header.jpg" hash="0211c47be1493bd0ec72949c47932b81"/><file name="bkg_main1.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="bkg_main2.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="logo.gif" hash="48b7eb03807fdf80bdfb19b872cf84b8"/></dir><file name="page.phtml" hash="bd758ecf041c888ae775c7affbbfd961"/><file name="report.phtml" hash="7eef7b64f5ce167d5d7d8cf894fea4e6"/></dir><file name="design.xml" hash="824a6db1d11d0c33fa2ecc32cdace275"/><file name="local.xml.sample" hash="9e95ec195ec69786856468eb498d3bff"/><file name="processor.php" hash="c9941fbfeb9a33f08a84ccf2aa9132ee"/><file name="report.php" hash="05f4e9510d6556a5f167c4333425cb8a"/><file name=".htaccess" hash="8382e66b40fe15d7a1edfc780f9be92f"/><file name=".htaccess" hash="8382e66b40fe15d7a1edfc780f9be92f"/></dir><dir name="var"><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir><dir name="shell"><file name="abstract.php" hash="b9671e36ce77be402f6c1feaab612771"/><file name="compiler.php" hash="5ae0b5c4151c73af8ca567d25c4b8f5e"/><file name="indexer.php" hash="0b1e58df83d5f41b739aa0095a9d96d0"/><file name="log.php" hash="2715cec50ab8441e6a6f55b0b8578f37"/><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir><dir name="lib"><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir><dir name="media"><file name=".htaccess" hash="08de5b2f5ea1ce6f51f40a19bacbf42e"/><dir name="dhl"><file name="logo.jpg" hash="68500df59e568e01333ba078a262ca27"/></dir><dir name="downloadable"><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir><dir name="customer"><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir></dir></target><target name="mageetc"><dir name="."><file name="config.xml" hash="be7c02ff5f7e2904978cecba4862a4af"/><file name="local.xml.template" hash="8c3bf448008dc74fdba97dd751816bb3"/><file name="local.xml.additional" hash="3bd377a8f06ada51c7dd280262c1f276"/></dir><dir name="modules"><file name="Mage_All.xml" hash="5256972a841c1604832a51f9513340d8"/><file name="Mage_Bundle.xml" hash="deb91101ce207e55cd783752a68a2f12"/><file name="Mage_Api.xml" hash="e10951bddfcd370b6f4c67a492b00358"/><file name="Mage_Downloadable.xml" hash="fd74033d6239aa3150469503664c25ad"/><file name="Mage_Weee.xml" hash="8cda7afdfef0a98434c8fec627c256cc"/><file name="Mage_Widget.xml" hash="97744c0f37d72188da7013d3ab9d7076"/><file name="Mage_Connect.xml" hash="daaec0c7dc6a3dea31860000eef4c534"/><file name="Mage_ImportExport.xml" hash="c337858c314568e42eff27f6b91d936d"/><file name="Mage_PageCache.xml" hash="a49bf857449628caf03e29623b9fa943"/><file name="Mage_Persistent.xml" hash="14b5506f30659b9d3aa4b12ed5808f74"/><file name="Mage_Authorizenet.xml" hash="8c131bf1a09ad61042eaf4b2514dd049"/><file name="Mage_Captcha.xml" hash="9139860029aaf80f9900c951fb762136"/><file name="Mage_CurrencySymbol.xml" hash="56081b1aaf92a89ac2f7d7fbdeeff627"/><file name="Mage_Api2.xml" hash="3d4bb7cca4a1ddb93ae48dc3eadb11c7"/><file name="Mage_Oauth.xml" hash="593e89ff7905abded6e966f9e110b027"/><file name="Mage_ConfigurableSwatches.xml" hash="cedf68a891a12cf573d06cfcdbd104d6"/></dir></target></contents>
16
  <compatible/>
17
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_Varien</name><channel>community</channel><min>1.9.3.0</min><max>1.9.3.0</max></package><package><name>Lib_Google_Checkout</name><channel>community</channel><min>1.9.3.0</min><max>1.9.3.0</max></package><package><name>Lib_Js_Calendar</name><channel>community</channel><min>1.51.1.6</min><max>1.51.1.6</max></package><package><name>Lib_Js_Mage</name><channel>community</channel><min>1.9.3.0</min><max>1.9.3.0</max></package><package><name>Lib_Js_Prototype</name><channel>community</channel><min>1.9.3.0</min><max>1.9.3.0</max></package><package><name>Lib_Phpseclib</name><channel>community</channel><min>1.9.3.0</min><max>1.9.3.0</max></package><package><name>Mage_Locale_en_US</name><channel>community</channel><min>1.9.3.0</min><max>1.9.3.0</max></package><package><name>Lib_Mage</name><channel>community</channel><min>1.9.3.0</min><max>1.9.3.0</max></package><package><name>Lib_Magento</name><channel>community</channel><min>1.9.3.0</min><max>1.9.3.0</max></package><package><name>Lib_Credis</name><channel>community</channel><min>1.9.3.0</min><max>1.9.3.0</max></package><package><name>Lib_Pelago</name><channel>community</channel><min>1.9.3.0</min><max>1.9.3.0</max></package><package><name>Lib_Unserialize</name><channel>community</channel><min>1.9.3.0</min><max>1.9.3.0</max></package><package><name>Lib_IDNA2</name><channel>community</channel><min>1.9.3.0</min><max>1.9.3.0</max></package></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Core_Modules</name>
4
+ <version>1.9.3.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Collection of Magento Core Modules</summary>
10
  <description>Collection of Magento Core Modules</description>
11
+ <notes>1.9.3.1</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
+ <date>2016-11-11</date>
14
+ <time>15:21:10</time>
15
+ <contents><target name="magecore"><dir name="Mage"><dir name="Admin"><dir name="Helper"><file name="Block.php" hash="9a1ba075a3e26fe7b3355e3518ecd9f3"/><file name="Data.php" hash="9349200d6f92c46180199ac23f98f7f6"/><dir name="Rules"><file name="Fallback.php" hash="383a4d353d762e1c925071be90cef644"/></dir><file name="Variable.php" hash="05034a643f757264fa384d34c8a38a45"/></dir><dir name="Model"><dir name="Acl"><dir name="Assert"><file name="Ip.php" hash="08ca27c4cb5d661cf244ebb2e6651758"/><file name="Time.php" hash="286d3eb95e0bd7c35303bd1645c6136d"/></dir><file name="Resource.php" hash="0c2dc0fc7553ec1f3edc827f8b315381"/><dir name="Role"><file name="Generic.php" hash="4f1f977403ed910a5753afab02c62b89"/><file name="Group.php" hash="a3eb3645929348237344ab9be05b78b1"/><file name="Registry.php" hash="1a061baac87efc3b82c267d9b496b161"/><file name="User.php" hash="584e727edf544f15e9d9c9f05b12bfdf"/></dir><file name="Role.php" hash="81b9facdda473ecd5d4c0a9831f12f23"/></dir><file name="Acl.php" hash="7d626befb3db46f07bdb75399b4536db"/><file name="Block.php" hash="cba4ab4189cf2a3b1e6a8366c7864ee4"/><file name="Config.php" hash="505e6f9bccb6b1781f006dfa0f277254"/><dir name="Mysql4"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="335baf1a546832d4430b359d2a14aac3"/></dir><file name="Role.php" hash="57e55b6117759af057407b2b52dca8e5"/></dir><file name="Acl.php" hash="535836809a79d0870f491abe690069d1"/><dir name="Permissions"><file name="Collection.php" hash="5c6808e128191b50f3f0a24d19a874e8"/></dir><dir name="Role"><file name="Collection.php" hash="0b5c5dcf8609974c82a2eb70c44db3a7"/></dir><file name="Role.php" hash="591f9370829d00af7990de49fa5246e5"/><dir name="Roles"><file name="Collection.php" hash="1f7f9e665cedc00597698d7bce6ffcd9"/><dir name="User"><file name="Collection.php" hash="8c744c176b234379a39cc05af2b6df02"/></dir></dir><file name="Roles.php" hash="1924f8555f51b66e3801bfa76690dfd0"/><dir name="Rules"><file name="Collection.php" hash="6eccb4ad5e45096587bec068f34342f0"/></dir><file name="Rules.php" hash="341d66cdfd28daf435517a49600495b3"/><dir name="User"><file name="Collection.php" hash="35a014dcc16e27dc66577c05b0747d46"/></dir><file name="User.php" hash="355610dbcb43e9d5f5fd7f3f78110048"/></dir><file name="Observer.php" hash="8bcd083d383968c893cf98d18eecba8e"/><file name="Redirectpolicy.php" hash="fbeea836834e629f96ddd6949a93e97b"/><dir name="Resource"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="bd5981e4c77d6c4bb819ac8c6c338c76"/></dir><file name="Role.php" hash="6d50597150e83a920d8e76cb74b4cfcf"/></dir><file name="Acl.php" hash="69d8caefb12003e449573d6ba87864f8"/><dir name="Block"><file name="Collection.php" hash="717351c260e79fa30fbda27111957a99"/></dir><file name="Block.php" hash="ff5550ea7047ffb019c2525c13fc17a9"/><dir name="Permissions"><file name="Collection.php" hash="439684f2b3259ca9e3959ced4aafa335"/></dir><dir name="Role"><file name="Collection.php" hash="15454b8025ed78cea0ce5d84d1e84c42"/></dir><file name="Role.php" hash="c4238cef7a9a25b72f7a9f4cb9b23f1e"/><dir name="Roles"><file name="Collection.php" hash="c1197e710a230d3ec001ae4abc3d9ec5"/><dir name="User"><file name="Collection.php" hash="7e551072e4cc23fcbef082b54b7fa798"/></dir></dir><file name="Roles.php" hash="86589cb054903023aeb3fd2a6015c83c"/><dir name="Rules"><file name="Collection.php" hash="cd0c1e7732bcbc6f9a73b84cecf5fa45"/></dir><file name="Rules.php" hash="b3d01cbc96c2f46f396c0698fc645b4a"/><dir name="User"><file name="Collection.php" hash="0177d1cee326c39536c29fa1879510fd"/></dir><file name="User.php" hash="3e216369763be663ca216f171d6454bc"/><dir name="Variable"><file name="Collection.php" hash="fd9c09d2184f32af4e48a982d0547a58"/></dir><file name="Variable.php" hash="f25a17650d60d5b1911e985fbd6904ea"/></dir><file name="Role.php" hash="2df749650c83f8203857ab6ba9a0bbe0"/><file name="Roles.php" hash="caa2c8b5b1a279297e3bf34cde27a94e"/><file name="Rules.php" hash="a37312eba4a2600a14f5bc81e6ef9a39"/><file name="Session.php" hash="619d5efe81e9ffaf11600b4df2a06352"/><file name="User.php" hash="dcec560e1ba661610d748efb726c250e"/><file name="Variable.php" hash="6e8f0d0da61445ab9e0042177694881c"/></dir><dir name="data"><dir name="admin_setup"><file name="data-install-1.6.0.0.php" hash="0274ac08aadb4bad103095a11bdaff14"/></dir></dir><dir name="etc"><file name="config.xml" hash="ddf36fe419691b25611a94b45b30f082"/></dir><dir name="sql"><dir name="admin_setup"><file name="install-1.6.0.0.php" hash="dbede184c784f531b99227dafaac6c3f"/><file name="mysql4-install-0.7.0.php" hash="ce195263d9a1483e0226725ecba4d280"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="1cc838be0dbfa4a57b367ff3ee852930"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="5f6112ff200e1156f793a88caa7fac7e"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="f4f648587b954ebf087dfcfad2e6e809"/><file name="upgrade-1.6.0.0-1.6.1.0.php" hash="6948bb0b0bf03c1a7a9f6d4992b95c32"/><file name="upgrade-1.6.1.0-1.6.1.1.php" hash="8a227654e1b908e80763a75d47b3219b"/><file name="upgrade-1.6.1.1-1.6.1.2.php" hash="d3e3dc656cb0f7b34c87c3cb57f6aae1"/></dir></dir></dir><dir name="AdminNotification"><dir name="Helper"><file name="Data.php" hash="16e00642e0d71e8f640513fbdce1fc72"/></dir><dir name="Model"><file name="Feed.php" hash="a50e6360e6f862da15017f92112f7089"/><file name="Inbox.php" hash="aa4212b432eb6c0b18d5d10f6d352f43"/><dir name="Mysql4"><dir name="Inbox"><file name="Collection.php" hash="ae2dc8ab53c50a4f2e1076f633050264"/></dir><file name="Inbox.php" hash="9476e2f1f83b120770cbef0fd7d5fbc6"/></dir><file name="Observer.php" hash="ed5d2f6241bc21d23e883afc4dec9c65"/><dir name="Resource"><dir name="Inbox"><file name="Collection.php" hash="45b86c1cc068f343096b176b7e597ac1"/></dir><file name="Inbox.php" hash="3f2ddbba6593c11626e577aee5adc866"/></dir><file name="Survey.php" hash="e8966921b8d2eb22e6b12ecb18244139"/></dir><dir name="etc"><file name="adminhtml.xml" hash="9127e273a03f08d4347096e6191ff1c4"/><file name="config.xml" hash="5e46b7a8603bb7d51093818533d98eef"/><file name="system.xml" hash="f2d8e0d8574e2680f80174341954d01d"/></dir><dir name="sql"><dir name="adminnotification_setup"><file name="install-1.6.0.0.php" hash="f1cfd5293e6997e6ea31d445caf9ff17"/><file name="mysql4-install-1.0.0.php" hash="bc08fe5d5c681ee7bcab1408c6c9dc7d"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="02520528d95f238c32456dc1f0504809"/></dir></dir></dir><dir name="Api"><dir name="Controller"><file name="Action.php" hash="774b4762b850592ab7659fdadb42ed84"/></dir><file name="Exception.php" hash="04fe0ad10ccb52bc9d66117e1ea8daf9"/><dir name="Helper"><file name="Data.php" hash="44c338b1e68841c25890cc25032bc92a"/></dir><dir name="Model"><dir name="Acl"><dir name="Assert"><file name="Ip.php" hash="c76874e041338f1a3a18da71bdd1124d"/><file name="Time.php" hash="5603cda1204e4270d92f67290f8b3882"/></dir><file name="Resource.php" hash="5536d4853e1e6ac50083dd48d12bb380"/><dir name="Role"><file name="Generic.php" hash="2f84ba87bd7d3a9ea0ae873bac95b970"/><file name="Group.php" hash="c8b844aaa124f8afa38e943f5fb7333a"/><file name="Registry.php" hash="0cf99ee44b46f1fd5abb01332d9176e3"/><file name="User.php" hash="c714175423aabf8a234c658966238574"/></dir><file name="Role.php" hash="89767b0b806ae6f6402b9dc357783d3e"/></dir><file name="Acl.php" hash="d3caadef3aaab9e8dada1f584184b6da"/><file name="Config.php" hash="e6108699ce87d3ca39462e70356fc0f7"/><dir name="Mysql4"><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="29ee5de0d8a07033e66fe43f9046f3f7"/></dir><file name="Role.php" hash="606f2c8ccb598d3e3c8f3ed5bcf289f4"/></dir><file name="Acl.php" hash="e933dfe905bbdafed8e42b76b08a80f6"/><dir name="Permissions"><file name="Collection.php" hash="8f0cafdaf2c39d0b7b25addff48e3060"/></dir><dir name="Role"><file name="Collection.php" hash="65b742dffa3ce6881c55a27657bcd24e"/></dir><file name="Role.php" hash="5f635063dedb356c61da9062444228ea"/><dir name="Roles"><file name="Collection.php" hash="f3a0e95e05b018836a959d22fed1b3a7"/><dir name="User"><file name="Collection.php" hash="27c1248a4b9a201a3fde0bc1aa0b3006"/></dir></dir><file name="Roles.php" hash="78ca14d1032e095ee37c1ed027bbe8a3"/><dir name="Rules"><file name="Collection.php" hash="2bf02138aaf50a5786e8a9f9b944bb1e"/></dir><file name="Rules.php" hash="d6945e76e07b77f993f277162f75ca4e"/><dir name="User"><file name="Collection.php" hash="482d52e463eda673177bfa5b28d62171"/></dir><file name="User.php" hash="e56215febfa2bff9b644c1c422b05d20"/></dir><dir name="Resource"><file name="Abstract.php" hash="8afd58116d69d4f8cb00045e809fa065"/><dir name="Acl"><dir name="Role"><file name="Collection.php" hash="e2a0a2811e5b14b041114ab1b54b0caf"/></dir><file name="Role.php" hash="3d48c43b4d9f76f1eb1e4d3d354146f0"/></dir><file name="Acl.php" hash="0f8f6aa57d0c9d21db67c6c694f54b99"/><dir name="Permissions"><file name="Collection.php" hash="48faac14df91a789288ef14863f23415"/></dir><dir name="Role"><file name="Collection.php" hash="358cfbd02523e45ac3a13230019a9855"/></dir><file name="Role.php" hash="f12e74794a4897e7df96f05507a95679"/><dir name="Roles"><file name="Collection.php" hash="d245ece070acf720da2e4e88cd1e6157"/><dir name="User"><file name="Collection.php" hash="45839c5e6c4eb16d669d0cb61791b51c"/></dir></dir><file name="Roles.php" hash="2378dd2f701d20222a9089c48f13d32d"/><dir name="Rules"><file name="Collection.php" hash="92ab48e1ec2d99c432e25e9c3e8b4bca"/></dir><file name="Rules.php" hash="cfaef65cfd5ac344fca073aa803bf070"/><dir name="User"><file name="Collection.php" hash="d7dfaa41c6f8c576ecc78124926da9ab"/></dir><file name="User.php" hash="68f0455fadd667de2c49b361c0c63b48"/></dir><file name="Role.php" hash="65d1434ddb3bd361a08126b6a8ed2739"/><file name="Roles.php" hash="399af59b973909e92fd63620ca0ac949"/><file name="Rules.php" hash="4ca5eaf6cef0ab6ec8db507620d7fb89"/><dir name="Server"><dir name="Adapter"><file name="Interface.php" hash="64124b37d8a9686866695c823d80713c"/><file name="Soap.php" hash="89d4a8211e292c4fe2567fa52cb5292a"/><file name="Xmlrpc.php" hash="a3bea0dc8c3045630f9ba479cfe89b1f"/></dir><dir name="Handler"><file name="Abstract.php" hash="70c608d5c89803cf0c149bafc727f82b"/></dir><file name="Handler.php" hash="f4be1b5c2758e3a921387b3933f7dcdc"/><dir name="V2"><dir name="Adapter"><file name="Soap.php" hash="2626e0417ea86b2f80a8f3832b3e18df"/></dir><file name="Handler.php" hash="bdc40c4c23dc5ab6889ea72baa64684c"/></dir><dir name="Wsi"><dir name="Adapter"><file name="Soap.php" hash="f58b7e580026a274b9afd4a4ad56c95b"/></dir><file name="Handler.php" hash="6c260b6ef745ee4acb5a585c110baa71"/></dir></dir><file name="Server.php" hash="3757b660bf81e78572ee4a16df10f61d"/><file name="Session.php" hash="08135d3e54cf10a7fc44f628c0ce51b8"/><file name="User.php" hash="873676067466da34a16ca124830bb4ac"/><dir name="Wsdl"><dir name="Config"><file name="Base.php" hash="02fea248877a1a4a36bc97f2ab5971ce"/><file name="Element.php" hash="11e2d31cd86e888f4cf90613e3e9af9f"/></dir><file name="Config.php" hash="e64dbce8fd9d9bb1e8fdc4651d85959a"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="2c0689b165c97288b2e8c7f1ea7fccb2"/><file name="SoapController.php" hash="7bcebcfc203e99777804ee9fc0bb46f4"/><dir name="V2"><file name="SoapController.php" hash="78d4a08f6a1369366ae349868965ab98"/></dir><file name="XmlrpcController.php" hash="ba4e2f4fd37b0375a77140340ff99b37"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1fa3c950da0464651007e8cd33f294b0"/><file name="api.xml" hash="16477872502aa7fee7b6e4ee85eb6d53"/><file name="config.xml" hash="d994cc2976bc842b796bc216af4ecabf"/><file name="system.xml" hash="d8d0ef91b865535c4f407f2eed075d7b"/><file name="wsdl.xml" hash="f0db676b04733b38f310355bb44bc3cb"/><file name="wsdl2.xml" hash="7d527421ba4b63a8a812ab6b1095891d"/><file name="wsi.xml" hash="9fb1700cf935a26e7fada90a07fae7fe"/></dir><dir name="sql"><dir name="api_setup"><file name="install-1.6.0.0.php" hash="9224f4bc3e4624a4b39829cd360f0469"/><file name="mysql4-install-0.7.0.php" hash="78a15f73deb0367b6902c80696ef0e62"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="59162c64de079f98682f67314851c92c"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="a76c976e331986d6249c15b79ec71cfe"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="c4b533ec0c78967c59942b8143936b97"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="ef060441ba7f33213e0a3aaf59a0266c"/></dir></dir></dir><dir name="Api2"><dir name="Block"><dir name="Adminhtml"><dir name="Attribute"><file name="Buttons.php" hash="30e7a5d3a1c83ef1df1b675173baa6dd"/><dir name="Edit"><file name="Form.php" hash="9da5d9bc5715ae0ae289a7646e27be85"/></dir><file name="Edit.php" hash="7ce77055d120c65648c1107fb2e5fc6a"/><file name="Grid.php" hash="770f37ab1ab5f7296cdd10e986a67e88"/><dir name="Tab"><file name="Resource.php" hash="69c35aa360066c71e6364d96fac6435c"/></dir><file name="Tabs.php" hash="6aea7548a023162ddc82e75e84cf8674"/></dir><file name="Attribute.php" hash="98679bff19e5a631eaa9e0c6cabc99ca"/><dir name="Permissions"><dir name="User"><dir name="Edit"><dir name="Tab"><file name="Roles.php" hash="b2acfc86b799efd51c7e76e10a2f7b5b"/></dir></dir></dir></dir><dir name="Roles"><file name="Buttons.php" hash="92a73c35cae3662229878c90d2e24fe8"/><file name="Grid.php" hash="215301b76a9a363c1253ec0377859241"/><dir name="Tab"><file name="Info.php" hash="3a4dacbc8eae6f0f35019df6912e89ad"/><file name="Resources.php" hash="2fd39485229e2d8f85b91d2ae7c4a862"/><file name="Users.php" hash="52ab2220a81f0e269f176e0d5615e8f7"/></dir><file name="Tabs.php" hash="5c4a34538372055306c8e7da3a8a5bde"/></dir><file name="Roles.php" hash="76bbcde1a4cbbfaa68890b7b6514b561"/></dir></dir><file name="Exception.php" hash="8e66157a187c75b217f4fc7ec56f3826"/><dir name="Helper"><file name="Data.php" hash="87e59f1ae52509cb875ab25365d6e351"/></dir><dir name="Model"><dir name="Acl"><dir name="Filter"><dir name="Attribute"><file name="Operation.php" hash="02a577838191e96fc389578891359dee"/><file name="ResourcePermission.php" hash="c0f28749c7ac8039df60f8e8ce3a4b45"/></dir><file name="Attribute.php" hash="9bd5d7c9a4818b3cd1616ae1391ddd19"/></dir><file name="Filter.php" hash="929e44dd71dcd3f25405933f14089b02"/><dir name="Global"><file name="Role.php" hash="c46376eceb36ca5d32e9582a1f5b4af4"/><dir name="Rule"><file name="Permission.php" hash="687b8715aa27e61ed516c53162775b57"/><file name="Privilege.php" hash="3d2975048cefa0226e59cd084fbcfdd7"/><file name="ResourcePermission.php" hash="a44cdbbafaf12ee628fec8ac8ba8a0ba"/><file name="Tree.php" hash="2358b8723c6e9bee54b3ea9fd7d0d953"/></dir><file name="Rule.php" hash="95040ad8b86317eb060569c28b16410b"/></dir><file name="Global.php" hash="0d95e4be423febd261812ceb03847411"/><file name="PermissionInterface.php" hash="11d294d4927d5070933d34ef2711eac9"/></dir><file name="Acl.php" hash="2ffa26f03192a669d9c86dbe724f46cd"/><dir name="Auth"><dir name="Adapter"><file name="Abstract.php" hash="e76e604f005c4dc398292c2acc00a4fc"/><file name="Oauth.php" hash="894fbacf6e21a7efeab9a0a9db946650"/></dir><file name="Adapter.php" hash="f3cbea7d5ab8b09386dc67fd107aa7d2"/><dir name="User"><file name="Abstract.php" hash="ad4d2f0c4d03eadbb81dcfbfbe4273ad"/><file name="Admin.php" hash="25e7646a77954a5784120335d13ef388"/><file name="Customer.php" hash="179a03eaa77810a013563fca02a56623"/><file name="Guest.php" hash="e572d1c2acf5facef9187d1cfe6aece6"/></dir><file name="User.php" hash="4f28b0c1bc6e6f71a0bf6a09a7a27773"/></dir><file name="Auth.php" hash="5e8ff5e0a305081a8319b2bf24496b1d"/><file name="Config.php" hash="0955d6231212120e16a5c2e7f21463a0"/><file name="Dispatcher.php" hash="1f61a75165aa48c8c97c16e72f1338d4"/><file name="Multicall.php" hash="c4741cbd2ebed177654a699ce15312e9"/><file name="Observer.php" hash="ab5efc3be71db1b54fb9f4858cd3beca"/><dir name="Renderer"><file name="Interface.php" hash="17d1ea9e291a600dd7f98a941a8945ba"/><file name="Json.php" hash="5fd32d14bd18d550ba78e9a9e901722e"/><file name="Query.php" hash="d7ea3556aaefe6c400510466a7f15077"/><dir name="Xml"><file name="Writer.php" hash="c2b3024abe24d48eac4d6bcc0f4e85e7"/></dir><file name="Xml.php" hash="fcd74870b09eb236ce768bb81b2466b9"/></dir><file name="Renderer.php" hash="7f9de64648eca506571a5156e51672c9"/><dir name="Request"><file name="Internal.php" hash="5b2981aacf6234be279b29c7eaa7bc39"/><dir name="Interpreter"><file name="Interface.php" hash="adf1d99caf07e26de34373618d1eeb7e"/><file name="Json.php" hash="759806f32a2f717d90e57657fdc2e703"/><file name="Query.php" hash="130b11ea74e1d91d9637abc5d877b218"/><file name="Xml.php" hash="3bbd3aae616947cfab67af3417e8bc73"/></dir><file name="Interpreter.php" hash="108d88f20c84667266bdeeae0f566ad0"/></dir><file name="Request.php" hash="6152f16393d2f6600131ce075be99627"/><dir name="Resource"><dir name="Acl"><dir name="Filter"><dir name="Attribute"><file name="Collection.php" hash="665ff0a1ef0b44ce90c6827fa7aee98f"/></dir><file name="Attribute.php" hash="0b1dd9c5e804f2d74f035280808e3096"/></dir><dir name="Global"><dir name="Role"><file name="Collection.php" hash="8d49bb4b7350e5143a66ac6ede38a451"/></dir><file name="Role.php" hash="208b98f459bc1efa86679e889ad1c5c1"/><dir name="Rule"><file name="Collection.php" hash="cfa58d513a38612949c71087500a9a72"/></dir><file name="Rule.php" hash="1f72374898d0ee315fe11ca122ea4bc5"/></dir></dir><file name="Setup.php" hash="d3f2fe1dd0355d83243d16dcae070bab"/><dir name="Validator"><file name="Eav.php" hash="85530468f643d51545bfb026ea31c60b"/><file name="Fields.php" hash="669ab0efb47133f83250847f032f1c37"/></dir><file name="Validator.php" hash="b4728be46e9e8b46f46af0478dcd8449"/></dir><file name="Resource.php" hash="0c8dcd44c2d03e288b985f976650c3ec"/><file name="Response.php" hash="0fbabaec58d372103b7863f6a27ec143"/><dir name="Route"><file name="Abstract.php" hash="1a27c8f502aee85f52c0b9a994ea204f"/><file name="ApiType.php" hash="6a0ec483520e9983f2cb40b5dd17fd8d"/><file name="Interface.php" hash="374d8c631c5e8adae4f11a5f11b4537b"/><file name="Rest.php" hash="cd9a94ad7d40766cb62a50a60c3dba32"/></dir><file name="Router.php" hash="fd7c3235d8dae9bf2fc8dff91472fb5c"/><file name="Server.php" hash="9ac47ece0cdc38b210dcb7df6d8c1ced"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Api2"><file name="AttributeController.php" hash="347953872ae6d5e90b16561388e6848f"/><file name="RoleController.php" hash="d27833725254f6fc12a799efd2510973"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ad36dd3cd7d6e5d120bb9e7c15e11ff1"/><file name="config.xml" hash="4821abb0ebec976548c9e30d30a2b213"/></dir><dir name="sql"><dir name="api2_setup"><file name="install-1.0.0.0.php" hash="592bbea52850ec9fc91066bff5508914"/></dir></dir></dir><dir name="Authorizenet"><dir name="Block"><dir name="Directpost"><file name="Form.php" hash="9dc667687a53dd0017fa7cded230b4f1"/><file name="Iframe.php" hash="5ae85348c16639f2006542866f798d66"/></dir></dir><dir name="Helper"><file name="Admin.php" hash="ead9dd582ab6f747f2466c996b50aa31"/><file name="Data.php" hash="5440d68161cc5379507c6a0771bc7f42"/></dir><dir name="Model"><dir name="Directpost"><file name="Observer.php" hash="0fd3c47026cdba1c36b4aa5e8f43500e"/><file name="Request.php" hash="7a968e895e936e86b4e0488537e45587"/><file name="Response.php" hash="a136dcb41d52650f99036483b81d27fc"/><file name="Session.php" hash="b96a36a37ede54e2af70ed3f28c90413"/></dir><file name="Directpost.php" hash="b6869c83e477ab7f5d0590c1aeb0d856"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Authorizenet"><dir name="Directpost"><file name="PaymentController.php" hash="c49edc9dba097d0757eeefd8a00d2086"/></dir></dir></dir><dir name="Directpost"><file name="PaymentController.php" hash="e7e5bb728fda361ef16911f123e50e0c"/></dir></dir><dir name="etc"><file name="config.xml" hash="316742cf75cd9a1d8e31621757eafdb2"/><file name="system.xml" hash="772679033f6a49116ba41a49da828f3c"/></dir></dir><dir name="Backup"><file name="Exception.php" hash="1d9584b08582ee0931ae942ddc597056"/><dir name="Helper"><file name="Data.php" hash="9c4b278a8188970834ea3264dca74197"/></dir><dir name="Model"><file name="Backup.php" hash="163966b51cb4df0584200c39375b21ae"/><dir name="Config"><dir name="Backend"><file name="Cron.php" hash="ed07667ca13aa89805ebb7136d0dcd71"/></dir><dir name="Source"><file name="Type.php" hash="ed9703bce1523c0c634e862c7ad70f5e"/></dir></dir><file name="Db.php" hash="d35147f61a16f6e4d58969ae58205907"/><dir name="Fs"><file name="Collection.php" hash="d2e6b760f5050792712b1d79c35dfc68"/></dir><dir name="Mysql4"><file name="Db.php" hash="11fec4cd1cde22cf681bf8b4780c0a09"/></dir><file name="Observer.php" hash="03078671713743c8c8e97a717c2e80c2"/><dir name="Resource"><file name="Db.php" hash="35961c796f60164427dcd9ce6a1c87b9"/><dir name="Helper"><file name="Mysql4.php" hash="4d24628fa1b2890c91d8048cd65fd7da"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="e48cb7bbc9b47dc55c11205716a727ad"/><file name="config.xml" hash="bbef782377f0d496a05daa4ab71473d7"/><file name="system.xml" hash="e461e31f4a3d7a05ebe6398bea5ec004"/></dir></dir><dir name="Bundle"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Composite"><dir name="Fieldset"><file name="Bundle.php" hash="d1a01550cc44852c92276e95e161f44a"/><dir name="Options"><dir name="Type"><file name="Checkbox.php" hash="72b0fdbe208a568907ca6e03b6cc4970"/><file name="Multi.php" hash="b50b7d8093326d9c5ba76c907b3707b6"/><file name="Radio.php" hash="c3510dc759996779d7e70bec6c05a1bc"/><file name="Select.php" hash="b6719e8406961f0c5cbae9d6bbdaa973"/></dir></dir></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Attributes"><file name="Extend.php" hash="c7177a24ec87ff4c63620754314fbf61"/><file name="Special.php" hash="edc5952b3071bb875c24e1a81d05d2fb"/></dir><file name="Attributes.php" hash="20404aae31a0d039019f640c85f05ea5"/><dir name="Bundle"><dir name="Option"><dir name="Search"><file name="Grid.php" hash="1119c21a96470f11950d7d84f65a221a"/></dir><file name="Search.php" hash="665485b2d6f20f2b715f7243c3f5d9b6"/><file name="Selection.php" hash="b2b8cf4675d04f1264a3c4a04ed2dca7"/></dir><file name="Option.php" hash="1dd71760cbe26ee1fabc3e3299bbb9fb"/></dir><file name="Bundle.php" hash="55373aaaa8f72c91051e678f03ba5029"/></dir><file name="Tabs.php" hash="9296e80b1084b9a8dc6bd1c4ce2062e1"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Items"><file name="Renderer.php" hash="34710f3c5f673268d1d13a74d50c1caf"/></dir><dir name="View"><dir name="Items"><file name="Renderer.php" hash="73a0c1e6afe739b78ca2237ef2cece89"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="List"><file name="Partof.php" hash="62d55ff286597964b23ebb4bbb73f8d5"/></dir><file name="Price.php" hash="13955390c1c20f705be3b7f6a7224368"/><dir name="View"><dir name="Type"><dir name="Bundle"><dir name="Option"><file name="Checkbox.php" hash="7703ad9fc12df82467b1269c25bcf50c"/><file name="Multi.php" hash="cd5638f49dd792c79fa448650021d40c"/><file name="Radio.php" hash="46f0caaedeb69fbb3f7307a250c6176e"/><file name="Select.php" hash="07bbb86c3bd29f4856bbbfcb47607e0e"/></dir><file name="Option.php" hash="f9aa8a487a359dff377e4e48cc7edf31"/></dir><file name="Bundle.php" hash="85dc00e3c6624bd8f946577289d8d120"/></dir></dir><file name="View.php" hash="dbd39805a66f8efa5923826033520c1c"/></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="92eecf3508f521f28c4332b143139d2b"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Items"><file name="Renderer.php" hash="1cbdc643a998d58bc27d33977ab6247e"/></dir></dir></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="3043d1b7f4599a49b37bc5f6a935a7aa"/></dir></dir><file name="Data.php" hash="9b51be0fea4acbedc363240046c243af"/></dir><dir name="Model"><dir name="CatalogIndex"><dir name="Data"><file name="Bundle.php" hash="08fcad235cc860bebf0e43dd9336d329"/></dir></dir><dir name="Mysql4"><file name="Bundle.php" hash="a105d7dd3f8efeddf367ce54c3bf27dc"/><dir name="Indexer"><file name="Price.php" hash="a49e39a23e70132f0ae71080b944bcdb"/><file name="Stock.php" hash="871b4097d83cbee3008e89ac6f440406"/></dir><dir name="Option"><file name="Collection.php" hash="30d6be1fbbe1ade58485f739f8ad453d"/></dir><file name="Option.php" hash="1795c05a00627e4ae2780198ed21cc3b"/><dir name="Price"><file name="Index.php" hash="14edc32b873efbaf576ff7afe5bddb17"/></dir><dir name="Selection"><file name="Collection.php" hash="a8fcdb51475db3cca91c117aadb4b32a"/></dir><file name="Selection.php" hash="b67d2542e335ac673b98208e8583bcf7"/></dir><file name="Observer.php" hash="e71e6581febdffc6db50b198c051b628"/><file name="Option.php" hash="2aafa265c1a09ca14873789c24081152"/><dir name="Price"><file name="Index.php" hash="8295fe309a878eb9b2b2cacc81177cbc"/></dir><dir name="Product"><dir name="Attribute"><dir name="Source"><dir name="Price"><file name="View.php" hash="40936c9f32040f4fbe9757f3038f2e6e"/></dir></dir></dir><file name="Price.php" hash="8300e53a3d8ba6480a674bb5a7f7a09d"/><file name="Type.php" hash="f795e704b950d1062789735506e07965"/></dir><dir name="Resource"><file name="Bundle.php" hash="dac365d9b9dc19ae98504b7a354fdfaa"/><dir name="Indexer"><file name="Price.php" hash="09346af9318133cdcd4bfe07ef2409b4"/><file name="Stock.php" hash="1d2a9f422efd1a85d4edf75ee67ef790"/></dir><dir name="Option"><file name="Collection.php" hash="85c0a9674eee8735fb0b674f2b69cd97"/></dir><file name="Option.php" hash="04f9d973469beb08582b72c285815fe0"/><dir name="Price"><file name="Index.php" hash="0d623baf6d9f22212eff19075e38030a"/></dir><dir name="Selection"><file name="Collection.php" hash="86fd88e9420793830e08ae09da4ad6bd"/></dir><file name="Selection.php" hash="4b11349866beaf419718e435ba6f7800"/></dir><dir name="Sales"><dir name="Order"><dir name="Pdf"><dir name="Items"><file name="Abstract.php" hash="6e94008eaed3489d1ce78686f9160a65"/><file name="Creditmemo.php" hash="7a009148c167f32c8d64c52e8a1467d1"/><file name="Invoice.php" hash="a37bebede91906ec96d949d0555b3a3f"/><file name="Shipment.php" hash="2d76cd2a857c85297b76519c919e91f1"/></dir></dir></dir></dir><file name="Selection.php" hash="df581745d68a5f9c1b2512b83e1ef5c5"/><dir name="Source"><dir name="Option"><dir name="Selection"><dir name="Price"><file name="Type.php" hash="4d1dba02f19be6162f4c041088b53861"/></dir></dir><file name="Type.php" hash="de0061e8100adf8c073f82f35344cd2c"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Bundle"><dir name="Product"><file name="EditController.php" hash="7b354c43663ae7359b5357674883d16f"/></dir><file name="SelectionController.php" hash="b420a1ca332482c3bc55b5d2fcdfaa8f"/></dir></dir><dir name="Product"><file name="EditController.php" hash="d2bf3045167b891f534a3c490901bf94"/></dir><file name="SelectionController.php" hash="9348a022b8d2a28b7bc9e2aaac2e8ac6"/></dir><dir name="data"><dir name="bundle_setup"><file name="data-install-1.6.0.0.php" hash="6edda03943c56b8077f77340b67694e0"/></dir></dir><dir name="etc"><file name="config.xml" hash="2f8a1d2fbf06b32f1a32fc893b47ca3b"/></dir><dir name="sql"><dir name="bundle_setup"><file name="install-1.6.0.0.php" hash="9fc392edbf05d6c30ba9f265892014ef"/><file name="mysql4-data-upgrade-0.1.13-0.1.14.php" hash="4dab0c1d90a659ff1e1f94c1e9acb132"/><file name="mysql4-install-0.1.0.php" hash="82c9663f990f4e9ae9a75c26e3979b23"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="20e77245c14eb8059b187264e8152e29"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="85b79bb079050cbd190bde83a280783f"/><file name="mysql4-upgrade-0.1.10-0.1.11.php" hash="2151261f762c2562d561569e14c6d9a8"/><file name="mysql4-upgrade-0.1.11-0.1.12.php" hash="212828a3289510319fd7479e9251b270"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="b92eb535f69cc85034592088f696eaf4"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="9b83041cd925624e8a80a965c16e9380"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="ae04d9a83330f2706b2e62b172efea3f"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="f0ac187df40e0f6d202faedcc17d9292"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="13940f417ccbdff869375925e41972e9"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="32377c2202aae4b003943383315634d4"/><file name="mysql4-upgrade-0.1.7-0.1.8.php" hash="75110184a452c033ae19cdecc77a3e17"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="81d93640a1700e63de5046e1a774de77"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="6a9b12e735a6a3fc0be490019487295a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="bfdb71af0a3fa27111431c4e66ad5f00"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.0.1.php" hash="1a4e94847369b5ccf118cd1e96797fc7"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="63e676fd5c7cae10ac232c732807ca6d"/></dir></dir></dir><dir name="Captcha"><dir name="Block"><dir name="Captcha"><file name="Zend.php" hash="e3140ff48b0ebf607d5ff1702b823eb1"/></dir><file name="Captcha.php" hash="197d8bf48a7a236f840c9b9052a519a0"/></dir><dir name="Helper"><file name="Data.php" hash="cb661b87e454aefb55ad1b48f872af86"/></dir><dir name="Model"><dir name="Config"><file name="Font.php" hash="564160d4501a0983d247e94142f49bc1"/><dir name="Form"><file name="Abstract.php" hash="690bff323d84194efd1c300d2fb2c57b"/><file name="Backend.php" hash="da613c3fed8fb74fd5bc976646cc9d56"/><file name="Frontend.php" hash="b3088a0b9df26a2e1ba3f3c97139ca38"/></dir><file name="Mode.php" hash="e429bbf441d140df0f77ff123dcdac8d"/></dir><file name="Interface.php" hash="3d00e72f1a02fc1f7b63ea4ef747ba18"/><file name="Observer.php" hash="659576bf1859959b5b890eaf0e3ed887"/><dir name="Resource"><file name="Log.php" hash="24b083056fcb18954a72c87eb67421a9"/></dir><file name="Zend.php" hash="62867a57ba8e68a150055b5a4db9ee6a"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="RefreshController.php" hash="54b78c3619e28c26585e6111bd90450f"/></dir><file name="RefreshController.php" hash="6702b9e4aaac22baad8a29030b956742"/></dir><dir name="etc"><file name="config.xml" hash="587c37a06b7bd60161c9c3d793d070f2"/><file name="system.xml" hash="edeedb1737798eda557aa9c5faf09b8f"/></dir><dir name="sql"><dir name="captcha_setup"><file name="install-1.7.0.0.0.php" hash="6e8d794f94dadd6f266c7fe329e9eef7"/></dir></dir></dir><dir name="Catalog"><dir name="Block"><file name="Breadcrumbs.php" hash="dab2381718549050f05cbb86706b7e5e"/><dir name="Category"><file name="View.php" hash="f14a047e957430565a3292784ec3c9b8"/><dir name="Widget"><file name="Link.php" hash="bad2d201324e439074ec22972d1e3972"/></dir></dir><dir name="Layer"><dir name="Filter"><file name="Abstract.php" hash="eefcbcb98818b2ae12e3506aada0c913"/><file name="Attribute.php" hash="d5bd80637bf7dd879ade11e6259f05d6"/><file name="Category.php" hash="06f66db270055c1153068ec990c54df5"/><file name="Decimal.php" hash="29865012d50a70ab2d144e4c0cb8ac9d"/><file name="Price.php" hash="5636ca99c6588924845c484594f1e873"/></dir><file name="State.php" hash="a9c13d850f4607a04d1c428e98a2c4c9"/><file name="View.php" hash="11e3c1f24d801f6431e3be49aca41583"/></dir><file name="Navigation.php" hash="89f15c96eb17886c364ddf87d4e456a4"/><dir name="Product"><file name="Abstract.php" hash="7328523670e73e435c44af3a5808b240"/><dir name="Compare"><file name="Abstract.php" hash="c48b7dab6bee655b6eadd762fd242606"/><file name="List.php" hash="f3cb7750c7227edd3b87e33ebe46cab3"/><file name="Sidebar.php" hash="aac8306a9e8613dfc7f2a0dc36b04398"/></dir><file name="Gallery.php" hash="357c7d68ef3eff66f551627a5d5d0467"/><dir name="List"><file name="Crosssell.php" hash="876a23484f926c2e29d2ec07a571dfc8"/><file name="Promotion.php" hash="f4bb4b4626b8a15443a4ae04bef9ae0e"/><file name="Random.php" hash="3541c59092f62a31889e5aebb00456d4"/><file name="Related.php" hash="f20a66f4de9ae05a91ca2091633ef51d"/><file name="Toolbar.php" hash="860922416d2d9ab6cb606e349ce4cc86"/><file name="Upsell.php" hash="955a21e298fd8d6ab05b4a71bdde936a"/></dir><file name="List.php" hash="e8e75d2e527d89da82eaee62608af684"/><file name="New.php" hash="1660afbb4e83ff8f7218c91c5c6aafcf"/><dir name="Price"><file name="Template.php" hash="174757929a4637d3d4569b7804409562"/></dir><file name="Price.php" hash="eeed225d412451fec2f937bce058dbb0"/><file name="Send.php" hash="563e1e0b47de6cded50958fc8ba7c943"/><dir name="View"><file name="Abstract.php" hash="b22e9d718bf41c5382c4dc58cc003f8b"/><file name="Additional.php" hash="64048a426caafbf36d41dab9e077dc84"/><file name="Attributes.php" hash="b9eb935b62dc4693f15604a3737b76e8"/><file name="Description.php" hash="62bcfd7556f13279339e0f8953b22e7f"/><file name="Media.php" hash="4e576e71f469f2210808ef5df5827246"/><dir name="Options"><file name="Abstract.php" hash="ee57d5767122bb1fc496aee7bdeec76a"/><dir name="Type"><file name="Date.php" hash="21eca2c2db2061b75cf944f1d8fd4a94"/><file name="Default.php" hash="d643f7ddf73ab70e504fd70a5c1460a7"/><file name="File.php" hash="407e9c7d21b1f8c8a7ba830487ce9e94"/><file name="Select.php" hash="cbe99df038ac71aca106800fc39f22b7"/><file name="Text.php" hash="8a74862cba8bf5aa680c5f9104bea6f6"/></dir></dir><file name="Options.php" hash="ff35316d33688661240c14d9dc567c05"/><file name="Price.php" hash="1f6e98dfdae3f71d86a84eef7ea98e90"/><file name="Tabs.php" hash="11630345e930dbcf6e9729a16b09a589"/><dir name="Type"><file name="Configurable.php" hash="e61c2916fa2b3de94ecc7c7683247b3f"/><file name="Grouped.php" hash="b131a8ec490670de0b7a0043f23d6707"/><file name="Simple.php" hash="4e2214d776eca1f2baae3b6774f7f2af"/><file name="Virtual.php" hash="df4a51eec042f9024c6dd9086456d93e"/></dir></dir><file name="View.php" hash="a0e4ad0acaaf8834ddaac74f2a2e0301"/><dir name="Widget"><dir name="Html"><file name="Pager.php" hash="e59c96a77fa455d8a2aeb09b15f0a234"/></dir><file name="Link.php" hash="2502953b5e8b48182daa221517ea76f9"/><file name="New.php" hash="4a9a8981957dc0511cece8c9a6f498e3"/></dir></dir><file name="Product.php" hash="4444c47b16af1ee34a1c77aff29dd3f5"/><dir name="Seo"><dir name="Sitemap"><file name="Abstract.php" hash="5c0e40f42669d48af47b389a28501475"/><file name="Category.php" hash="b5ac1974fe6256597bd24f4b15484ef5"/><file name="Product.php" hash="df73746b3b434bf7d893afb16146ef27"/><dir name="Tree"><file name="Category.php" hash="b5512d7fe864e588c070ff10dbe8ce3a"/><file name="Pager.php" hash="fb5588cd7322c23026f27638a45c8d65"/></dir></dir></dir><dir name="Widget"><file name="Link.php" hash="d2c57e7e866c3bba797b9ae3780afb47"/></dir></dir><file name="Exception.php" hash="32ae17c72416f6c75b88e74776a42a17"/><dir name="Helper"><dir name="Category"><file name="Flat.php" hash="2a2cf087a8b262591b88d789c7ff508a"/><dir name="Url"><dir name="Rewrite"><file name="Interface.php" hash="0c6a04a205885d1dfa6ba43aa60a78ab"/></dir><file name="Rewrite.php" hash="c9144f35444311c1de4b69adcba1011c"/></dir></dir><file name="Category.php" hash="d2c4aaf8f55f2301d2c0c3aadaff5f94"/><file name="Data.php" hash="7fd21ab1980277fe851d3dcdee2ee9f7"/><dir name="Flat"><file name="Abstract.php" hash="4a669e8b86c77ac0375a39ec9ebd1c22"/></dir><file name="Image.php" hash="206d09e955869c6c7afd049b17630631"/><file name="Map.php" hash="991aae7948ba842c94fefc0c878194c5"/><file name="Output.php" hash="e66c7741f02e3f4fce1c0e8550f80bfc"/><dir name="Product"><file name="Compare.php" hash="052778e69e62955d8ba74a3ae0047c9d"/><dir name="Configuration"><file name="Interface.php" hash="7d6901165ea30966851e82735c64daa1"/></dir><file name="Configuration.php" hash="c5ec178e865833147bc26ebd9cdfcfb9"/><file name="Flat.php" hash="2d8f5df2a838567dcf003376361401df"/><file name="Options.php" hash="98afa1990b749d872ce9aad28c8b3061"/><dir name="Type"><file name="Composite.php" hash="b7818351ef1bfa67001a48734b32729d"/></dir><dir name="Url"><dir name="Rewrite"><file name="Interface.php" hash="9b4996a5e9d4daa89c036dbfbd771543"/></dir><file name="Rewrite.php" hash="acda3fe8908422645c410bc8bd624b24"/></dir><file name="Url.php" hash="b674d6731e3cb8c63e179bdcb76588ff"/><file name="View.php" hash="61797e538e15b10861c88a021841dfd3"/></dir><file name="Product.php" hash="04b2822dc8cc3fed9127c00a680e7b17"/></dir><dir name="Model"><file name="Abstract.php" hash="3103620674496397bb4d21b9ec28f34f"/><dir name="Api"><file name="Resource.php" hash="a9fcca8b2c3419a9bcbfe65e4041f939"/></dir><dir name="Api2"><dir name="Product"><dir name="Category"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="8e42c2fa4ea79661f52c74bc8e43be3d"/></dir><dir name="Customer"><file name="V1.php" hash="d59ddd14679c8f9aa2ae7db86933d883"/></dir><dir name="Guest"><file name="V1.php" hash="e8021ef740e59a287d260d05db4323dd"/></dir></dir><file name="Rest.php" hash="93da01fc7573f0cb21f5ce8491e6e964"/></dir><file name="Category.php" hash="fd88a7c38acc3a4557fd97b8b528ecb5"/><dir name="Image"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="dc9a608bdba7831626b0bb3359edffb7"/></dir><dir name="Customer"><file name="V1.php" hash="7a8ec1c18d4879fb8847b4d70dc5a9d4"/></dir><dir name="Guest"><file name="V1.php" hash="53575456ac195abf8394e62f5cd574fd"/></dir></dir><file name="Rest.php" hash="5fc432d50069268bf87de3dd29f2b976"/><dir name="Validator"><file name="Image.php" hash="01d68ef27814d7262873018bec12a16d"/></dir></dir><file name="Image.php" hash="458a3a2d0af701ce6d92a1920faf4c13"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="83ef1afb58c8c5e3467fadfcc3dc72d4"/></dir><dir name="Customer"><file name="V1.php" hash="a341b1f231dec3c5b9742bfebcce7ec1"/></dir><dir name="Guest"><file name="V1.php" hash="53e0fdddf85dce5e474c706e528807b9"/></dir></dir><file name="Rest.php" hash="108eb659fd7de8d1d8dabf9d90abbbbf"/><dir name="Validator"><file name="Product.php" hash="69f20a23d0c413691ce8f3dcf01eedb3"/></dir><dir name="Website"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="23dc33bf46785827175930e1a15dc98e"/></dir></dir><file name="Rest.php" hash="a1a997aed079d3b7b27c0c395168a6bd"/><dir name="Validator"><dir name="Admin"><file name="Website.php" hash="e5b41e2f3cd67239b3226f5b580bcf1f"/></dir></dir></dir><file name="Website.php" hash="b490f8b56d66fe8c07429a7acfb23d1f"/></dir><file name="Product.php" hash="153b39154268727a39abbb70f206f293"/></dir><dir name="Attribute"><dir name="Backend"><file name="Customlayoutupdate.php" hash="8f3647c7ae0e9c71207091565a1d39d1"/><dir name="Urlkey"><file name="Abstract.php" hash="c0577637ef3b436a7218e9b6878adf19"/></dir></dir></dir><dir name="Category"><dir name="Api"><file name="V2.php" hash="e14aa15dd60b7968dc8a891791543b22"/></dir><file name="Api.php" hash="c2ec820764496fee4761a3652a45fe33"/><dir name="Attribute"><dir name="Api"><file name="V2.php" hash="fd7327a2eafc0a8a610f3a6fa39d22b1"/></dir><file name="Api.php" hash="8ab727a2af4401214c65d6a012b53b84"/><dir name="Backend"><file name="Image.php" hash="b8f275fc5befeeef8db39f4b42ed072d"/><file name="Sortby.php" hash="b4c6f5653a4b31079e40966511967c56"/><file name="Urlkey.php" hash="06f279de5fe222551e97b52ac1b59f31"/></dir><dir name="Source"><file name="Layout.php" hash="eba97851f2d59acec18db86202cbac4a"/><file name="Mode.php" hash="7aec1c98ef4706fbd84ee611d7529f8b"/><file name="Page.php" hash="9921b94d1305a74d8014c7eb3729cbf5"/><file name="Sortby.php" hash="1680da2e35d1232a59bb5e8139411f18"/></dir></dir><dir name="Indexer"><file name="Flat.php" hash="9d836804fb252ced0f1bae5e135a5e5a"/><file name="Product.php" hash="6bb2b173560b41800c67f1521ff2065c"/></dir><file name="Url.php" hash="d007be46a04160a3dab1c9ca48bf9b22"/></dir><file name="Category.php" hash="77f096d5a872a4af01317e2e7a9be122"/><file name="Config.php" hash="d2b67ebef5018fbe4806da55480fdf58"/><dir name="Convert"><dir name="Adapter"><file name="Catalog.php" hash="ec918565e45f17766817ea0a9aac9b5a"/><file name="Product.php" hash="5d8e58bdf5ba6aea18b51e7e53436351"/></dir><dir name="Parser"><file name="Product.php" hash="03dad5f92788f30c56329f84df76eb02"/></dir></dir><file name="Convert.php" hash="f4cb35d34b7e7b56c4ed16b28dde40c6"/><file name="Design.php" hash="3b424406387f0a395fb9bfee18eda2e7"/><dir name="Entity"><file name="Attribute.php" hash="65db780e088fefa284113d2a4d0d40bb"/><dir name="Product"><dir name="Attribute"><dir name="Design"><dir name="Options"><file name="Container.php" hash="cf987ae7b06b896650c8bbe35ebabed9"/></dir></dir><dir name="Frontend"><file name="Image.php" hash="2981031837295463e1d57f91b1b99512"/></dir></dir></dir></dir><file name="Factory.php" hash="5c940ab0d0ceae28c8a43a60f27e2d14"/><file name="Index.php" hash="3e6e38408882ce699a05cbccd5ed3c06"/><dir name="Indexer"><file name="Url.php" hash="a83fb403cb6ca1e6cb06aa98065705ba"/></dir><dir name="Layer"><dir name="Filter"><file name="Abstract.php" hash="8b543a2ea812d0100ed90183f8d54e9a"/><file name="Attribute.php" hash="6cf9b952b4a412dc1c5e662081ed7b76"/><file name="Category.php" hash="7fdfcc712efa16a0decc3786f5f28d83"/><file name="Decimal.php" hash="ebdf5a89c4a88f826101c27b98641f3d"/><file name="Item.php" hash="39b10c69714aaeab6b3980223d5f1544"/><dir name="Price"><file name="Algorithm.php" hash="2628a11cb85cd42fe49e89d56b14b4d1"/></dir><file name="Price.php" hash="9c536ad60547a4241e5e351a593b9bb0"/></dir><file name="State.php" hash="635bc64507b1d11312854ad582a08c38"/></dir><file name="Layer.php" hash="33f0735a45d5192876749545e960c80b"/><file name="Observer.php" hash="53b5ff795856c5a53ef73c2cac1875ea"/><dir name="Product"><file name="Action.php" hash="d9613b0275dde94f06e92b1454e95265"/><dir name="Api"><file name="V2.php" hash="f9fb5e59206b221a1af51af4d67720a6"/></dir><file name="Api.php" hash="8e921b1b5d0d9abaf414ea515ca9d833"/><dir name="Attribute"><dir name="Api"><file name="V2.php" hash="676fd9d10ea5a48f2a622da80ccb47f7"/></dir><file name="Api.php" hash="facd4342fe4a4500a5aad27974806b2f"/><dir name="Backend"><file name="Boolean.php" hash="8ef39bdda67176eafea7e35380862e7a"/><dir name="Groupprice"><file name="Abstract.php" hash="a032aa77fb64e0c5c6880e9683a13d9e"/></dir><file name="Groupprice.php" hash="4b9119c5a3f1a0a64b9e5e2f10349970"/><file name="Media.php" hash="9791d033e1b38e60530c7e187588c75d"/><file name="Msrp.php" hash="d2b4d99ed552f9cacf31634eef4eb78b"/><file name="Price.php" hash="b537265d74c73a8e0b1a59ca29ab59ca"/><file name="Recurring.php" hash="c5517fd0cb006a2ad38a7de84d57a3ce"/><file name="Sku.php" hash="40334dcdae3fca0ab8eb0cd9421933b7"/><dir name="Startdate"><file name="Specialprice.php" hash="aa33b14f5f1de6708efa6ef7a905b516"/></dir><file name="Startdate.php" hash="3f3819c60c86b91ae45b4ac279edb0fc"/><file name="Tierprice.php" hash="f978087f28711f7aec541e68e0f0f376"/><file name="Urlkey.php" hash="4c539dd4d1d3007a9d8fc09f967375d8"/></dir><dir name="Frontend"><file name="Image.php" hash="cae0a80831e2b3ca348577bf9dadd860"/></dir><file name="Group.php" hash="c233ddf9563a5b22d72232104384651b"/><dir name="Media"><dir name="Api"><file name="V2.php" hash="7f8b2e79e74698e557df3143e47f20ea"/></dir><file name="Api.php" hash="555d8539a15f3b5aa88c2f6244c49115"/></dir><dir name="Set"><dir name="Api"><file name="V2.php" hash="946b1c83955e059047f6ec3eb9985184"/></dir><file name="Api.php" hash="1580b4dfd2e989d83b0c3f451af58eed"/></dir><dir name="Source"><file name="Boolean.php" hash="e3acf66166cfb90ed611af2930a2e09a"/><file name="Countryofmanufacture.php" hash="f85b0a53f73e1ac0d8447132839ce577"/><file name="Inputtype.php" hash="e467064e239e36589353a6e6652c9138"/><file name="Layout.php" hash="e93a209f3093c5f5993d936ba6c2a6d2"/><dir name="Msrp"><dir name="Type"><file name="Enabled.php" hash="2ff76f69352ac583fd6ab9a85928733d"/><file name="Price.php" hash="f2dd34500faff206fa2d3e11bdf989ee"/></dir><file name="Type.php" hash="50a3f2d6ffac9dc2e08617811597733a"/></dir></dir><dir name="Tierprice"><dir name="Api"><file name="V2.php" hash="24d1eec7a3258cdbf86de7d99e714b9c"/></dir><file name="Api.php" hash="8385c627c4b3a36a97a6ce0e1ab8b855"/></dir></dir><dir name="Compare"><file name="Item.php" hash="63e7762670f57ac31acd8afa7367786f"/><file name="List.php" hash="27165978b12b654090aca4c348ffb6c8"/></dir><dir name="Condition"><file name="Interface.php" hash="4bac667bc046c13017377423fdde69f0"/></dir><file name="Condition.php" hash="c10a6a33977bd8a021bf83b0021b9abb"/><dir name="Configuration"><dir name="Item"><file name="Interface.php" hash="c07904168054df17507307f9c285b975"/><dir name="Option"><file name="Interface.php" hash="94125408528b68bc52b3b6cf1b2900fc"/></dir><file name="Option.php" hash="3c4c1ed602ccdd72b4ec151a18553d5a"/></dir></dir><dir name="Flat"><file name="Flag.php" hash="405820b0f95dab6fd33a749c21f7a5be"/><file name="Indexer.php" hash="3a7e8d73cae80a15a60c1c555a50a81c"/><file name="Observer.php" hash="769223829dc4d75b7593fa631b00dfb6"/></dir><file name="Image.php" hash="f40a8b18d965f4eab6dcc6891755ee13"/><dir name="Indexer"><file name="Eav.php" hash="7d74bc107ddc43da8498d77c97404ae8"/><file name="Flat.php" hash="1e6d861ae255d6b381f93e7eaf9e937b"/><file name="Price.php" hash="2624163fa13495ae28ee92ec587bf495"/></dir><dir name="Link"><dir name="Api"><file name="V2.php" hash="1485d465f1f47f879b7ce08dc58d0301"/></dir><file name="Api.php" hash="dfbb72a54bcb6c333f19b6b04553cda3"/></dir><file name="Link.php" hash="9fb1eeb979fb2e5a0854217feb11b798"/><dir name="Media"><file name="Config.php" hash="f0ac7b414a245deee9028917ade49cb9"/></dir><dir name="Option"><dir name="Api"><file name="V2.php" hash="295b9141f8b71108506896baaa0663e7"/></dir><file name="Api.php" hash="453d5d3d0a67ce2fefd9c449b744184a"/><file name="Observer.php" hash="11fc3d20f2880b159cc67ee863f5d403"/><dir name="Type"><file name="Date.php" hash="c4a7c48703337c027ad3d346224de33a"/><file name="Default.php" hash="36a093fe5b2aeb6a4c9992fbc70ca09c"/><file name="File.php" hash="5046c92d54f755462859a629d7bf12ae"/><file name="Select.php" hash="a1c5a0bfaafb1988ae9743646ec93c71"/><file name="Text.php" hash="d5d534ac247bde4bde6c4c502cfd5504"/></dir><dir name="Value"><dir name="Api"><file name="V2.php" hash="a68a7921a51f26bb3310478757b9e91a"/></dir><file name="Api.php" hash="a9230fb72895529e3212529fa035747b"/></dir><file name="Value.php" hash="2bcd5835204eec255f43fc763cabb19b"/></dir><file name="Option.php" hash="814db51ec4f4773266c176eb634c258c"/><file name="Status.php" hash="5dcbbe7769ef951715e659c2018cbd59"/><dir name="Type"><file name="Abstract.php" hash="4f466aae98f72edd97167c4b07180f5e"/><dir name="Api"><file name="V2.php" hash="81db9eb28dfa1cd4d927080d3a7ea612"/></dir><file name="Api.php" hash="3a6ebc6d8673b4f7af4ab2c5a3b12e16"/><dir name="Configurable"><file name="Attribute.php" hash="eb6e2a83ca8424339ac3cc0a5a4749c9"/><file name="Price.php" hash="1bea7b9f3d0de0946afa858a064fa379"/></dir><file name="Configurable.php" hash="3edd0599bf23f1995aa4963de3a55044"/><dir name="Grouped"><file name="Price.php" hash="0253182ccb911eabe8e19e669c8c7638"/></dir><file name="Grouped.php" hash="76016646cb2ea0a90160641e42d1a241"/><file name="Price.php" hash="6d2c627c4111efe5e4591697cdb22731"/><file name="Simple.php" hash="7f607549b4d12517f66a88987df9bb20"/><file name="Virtual.php" hash="829085212233f496782c9e9b031b6b3b"/></dir><file name="Type.php" hash="92b34b54f22e84f8ca82d0d9a746a562"/><file name="Url.php" hash="7f2ac3f907c3e6b6d9ea08c03723d2d5"/><file name="Visibility.php" hash="668ecfc9a1e2a53c0907088bc330c35e"/><file name="Website.php" hash="aa009a7f09e86588e7fb998b72a6ff5b"/></dir><file name="Product.php" hash="9dab6209a5352682012568a3bc3b8f25"/><dir name="Resource"><file name="Abstract.php" hash="f20d54eac39563874e060a0b181c42e1"/><file name="Attribute.php" hash="b6532d842732783f7ef1ebc3c38fd5b7"/><dir name="Category"><dir name="Attribute"><file name="Collection.php" hash="0e61f25ea822f1d50cbe0a97346ffbc0"/><dir name="Frontend"><file name="Image.php" hash="ec8d42c78ff0950dbc56e847e00afcf9"/></dir><dir name="Source"><file name="Layout.php" hash="b00432ca67ec3fc9e9322d4fb73f0cf6"/><file name="Mode.php" hash="391399eb421fc1d9b040c17020f6b741"/><file name="Page.php" hash="65d5115df4e8a006ae4b41e7be6b6b4e"/></dir></dir><file name="Collection.php" hash="7bfdbb5958be323e71dc4ea7b98af331"/><dir name="Flat"><file name="Collection.php" hash="072eb6260f847b9ce71bf38531ff5792"/></dir><file name="Flat.php" hash="d343d9a62fdbe22eb8634e178ebca640"/><dir name="Indexer"><file name="Product.php" hash="64e41b3a3d96c22b140adc45efef8006"/></dir><file name="Tree.php" hash="f0d2efe1b5319894776cb782df59edd2"/></dir><file name="Category.php" hash="e40e22f7750cd26686f3fa9272749898"/><dir name="Collection"><file name="Abstract.php" hash="409f7b6f1ad5cf20b04d2a37bc7620fb"/></dir><file name="Config.php" hash="2db6fae019ec79c5a7e6cb1daa8566bc"/><dir name="Eav"><file name="Attribute.php" hash="dd6e35d1579df9760022dd65f133bf66"/><dir name="Mysql4"><file name="Abstract.php" hash="ff5dbeb55fd6724afd42c09ed24cdc3c"/><file name="Attribute.php" hash="ede0ac3bfd412f86e2c36ed0a6f74b60"/><dir name="Category"><dir name="Attribute"><file name="Collection.php" hash="6d94bb5588fc4d1920e259037f93ffa4"/><dir name="Frontend"><file name="Image.php" hash="95a4d8e08d90d8da6b8340aa2b6f38f5"/></dir><dir name="Source"><file name="Layout.php" hash="929d6df5866c2fd332a2987b5d2fd953"/><file name="Mode.php" hash="6fed21b7c38e82b63b4edf38ad3be77c"/><file name="Page.php" hash="af44999736b5920e9a2ca662dff3cfaa"/></dir></dir><file name="Collection.php" hash="6c1e26b5f970df68c0858b7a6795fa78"/><dir name="Flat"><file name="Collection.php" hash="b56facaa8645f40ac01656900ae1f3cc"/></dir><file name="Flat.php" hash="3359d45de68809b455a8a9790633830c"/><dir name="Indexer"><file name="Product.php" hash="d294b0bd3c8aa36c8644b765377a9f26"/></dir><file name="Tree.php" hash="c0e160c2837e04122994443e26d5a8d8"/></dir><file name="Category.php" hash="859f32339e6411f3a4fd53e9ef484f55"/><dir name="Collection"><file name="Abstract.php" hash="672e5e04854b2c04acb50a2c22c6a5e0"/></dir><file name="Config.php" hash="6f86cfbbfabef5d5781a5c45bc2ac2cc"/><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="fcae67002e0a13614d5cfa11bb3f9044"/><file name="Decimal.php" hash="caa9eeee21a2dd5c806f3e83187a2e3b"/><file name="Price.php" hash="e49f552f44e6f59a97308bbed3d676ba"/></dir></dir><dir name="Product"><file name="Action.php" hash="e06b482cbb05de0f5c3a1b7f52c489bd"/><dir name="Attribute"><dir name="Backend"><file name="Image.php" hash="2438a13ffd8ba611955da135ba21c311"/><file name="Media.php" hash="d79857a5c10ac663691f55aa57b67957"/><file name="Tierprice.php" hash="ab380b633930301d131e0197f8747591"/><file name="Urlkey.php" hash="6c73b3436b040c859aadf9170c1bf9ea"/></dir><file name="Collection.php" hash="7b19cc84c1d35a09e775c70371c6a497"/><dir name="Frontend"><file name="Image.php" hash="16ec1ce2c602bcdb4764f04e97f8d1cc"/><file name="Tierprice.php" hash="bdaed65aa2d80a336a3966281893d7ae"/></dir></dir><file name="Collection.php" hash="97955be99c1f8f11f18b1af0763e9f5c"/><dir name="Compare"><dir name="Item"><file name="Collection.php" hash="80b9462ca1e9c0913d6d900d3da693f6"/></dir><file name="Item.php" hash="21919b8317303faa3b89d512ab268799"/></dir><dir name="Flat"><file name="Indexer.php" hash="de7818687372ab28543cd55c78bc4431"/></dir><file name="Flat.php" hash="4075045a5ccd98c92b5869873a4b29de"/><dir name="Indexer"><file name="Abstract.php" hash="734c4b1b6bad250cbd87c23cd03eb444"/><dir name="Eav"><file name="Abstract.php" hash="7b25ac3487d6e0549be448a453e6ea0f"/><file name="Decimal.php" hash="a56359dd2804d1b98e0bbdbb1f2023ac"/><file name="Source.php" hash="25353cd3162a000db1354bb031eba979"/></dir><file name="Eav.php" hash="eaaec7260717874a205b7c61e4c9a4b3"/><dir name="Price"><file name="Configurable.php" hash="31542ad203aef5d0185ce31471cb8773"/><file name="Default.php" hash="09efe3a441871a09940d183719369548"/><file name="Grouped.php" hash="1a09b97f2beaf2efcfdae52b1faf681d"/><file name="Interface.php" hash="b6e66a323e75e0c27584e232df6abb59"/></dir><file name="Price.php" hash="64837824ce41dd4e2a49e3c4e9355498"/></dir><dir name="Link"><file name="Collection.php" hash="2ae3996a8cac1413b9e3de5ea8b14385"/><dir name="Product"><file name="Collection.php" hash="a836990749fb372ebbd47608f5b2f04f"/></dir></dir><file name="Link.php" hash="f655704180895e85cc3245f5ea5134b8"/><dir name="Option"><file name="Collection.php" hash="27708fca4f45596a5e022eff29d19e66"/><dir name="Value"><file name="Collection.php" hash="c4746b8e0417aaafb693a0951f8c8676"/></dir><file name="Value.php" hash="041532a06fcd462d7dd481bb871cd070"/></dir><file name="Option.php" hash="184ae5c7ea858ea2029f57f59be809b9"/><file name="Relation.php" hash="07932cef0d70c5c2c42fa89bb0c1bfe5"/><file name="Status.php" hash="223c720090804a8ebed818cf36fe0193"/><dir name="Type"><dir name="Configurable"><dir name="Attribute"><file name="Collection.php" hash="c83735912b97dd31606ee4026745d8f0"/></dir><file name="Attribute.php" hash="ea01bce53397e1296418bd8ce58c9de4"/><dir name="Product"><file name="Collection.php" hash="5544baaa0fe365f68c82345f138f2cd3"/></dir></dir><file name="Configurable.php" hash="a3485101701ce27a1245face359bbacf"/></dir><file name="Website.php" hash="86d83b6ac6a33770f0d500af50249c7d"/></dir><file name="Product.php" hash="92cfd76f424656a754c5bc891e791cb7"/><dir name="Sendfriend"><file name="Collection.php" hash="c0a9d608296e3e14c54d6e1403fa0ce5"/></dir><file name="Sendfriend.php" hash="6d48bb31391b8f8b95e657cde0be7762"/><file name="Setup.php" hash="332bc2a49c8d89cc1da7ea3558b13752"/><file name="Url.php" hash="8ff30475c857c213a1524b92478cce47"/></dir></dir><dir name="Helper"><file name="Mysql4.php" hash="7c385341d8dfbe3e12417018501fe433"/></dir><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="f09cb0f19a7be42ab682ec67f3c2fbfb"/><file name="Decimal.php" hash="728037aecaabab3dea236d55ad466983"/><file name="Price.php" hash="81c8b318f93065a1313a5083985a6f5d"/></dir></dir><dir name="Product"><file name="Action.php" hash="3ecee6a9d5e528d1005c46feeffbd7fd"/><dir name="Attribute"><dir name="Backend"><dir name="Groupprice"><file name="Abstract.php" hash="3320e1ac24eed9782ac1eae7749a6f5c"/></dir><file name="Groupprice.php" hash="94ad553373be41f787f9f97ffa9004be"/><file name="Image.php" hash="98d7acc0ed12be48ff7c1ba82c3f4787"/><file name="Media.php" hash="7f7d8d066c4cf9b6b29b708e7b4b8c19"/><file name="Tierprice.php" hash="6abee5dcc3c234e50e8a2d7de254d0d9"/><file name="Urlkey.php" hash="2c13425706769e774a505009ffa87933"/></dir><file name="Collection.php" hash="f09a2706f0cc1c52d2106bb015b63256"/><dir name="Frontend"><file name="Image.php" hash="2031b292025aea8ad2c03698d8b88fdd"/><file name="Tierprice.php" hash="05a89f28521f362e39e959bba5f7c665"/></dir></dir><file name="Collection.php" hash="5e7c2d8882d8cff927d7993f8449ec4c"/><dir name="Compare"><dir name="Item"><file name="Collection.php" hash="4682910e74f1e83109a32b40f2d9f34f"/></dir><file name="Item.php" hash="a01172e17e3dad083a7a64f9cb6318f1"/></dir><dir name="Flat"><file name="Indexer.php" hash="cf608c32673e53c82b5218768c5a536c"/></dir><file name="Flat.php" hash="8193a7748b2a61d95cccbf050dc624ed"/><dir name="Indexer"><file name="Abstract.php" hash="4ce37f276d4aa581fc88ff92d61fe58c"/><dir name="Eav"><file name="Abstract.php" hash="0fe745af8f1b930ebd6dce5444672fdf"/><file name="Decimal.php" hash="0c4947e231e3722be366aff13f18b4bc"/><file name="Source.php" hash="e6eb02055fe59a3c33455ed6b8407481"/></dir><file name="Eav.php" hash="5687b6aef04079e2f27db54f60475ad1"/><dir name="Price"><file name="Configurable.php" hash="7e7e36cb2f769869b5b40f92f6edd89f"/><file name="Default.php" hash="a55d3119bdfeafafc098c77f7239a8a8"/><file name="Grouped.php" hash="e4629b734f76c5ef342407ace05e9c6c"/><file name="Interface.php" hash="b5cb0804860612471abeb6dafff7324c"/></dir><file name="Price.php" hash="2f1697c7c661b285d1afb6b42e1be83d"/></dir><dir name="Link"><file name="Collection.php" hash="4305b11e90fb5c1a795277e8d8b3c95d"/><dir name="Product"><file name="Collection.php" hash="924d095f564445185476e378e232123c"/></dir></dir><file name="Link.php" hash="bcd8db6c4d0e2d87a30bb65e243974f3"/><dir name="Option"><file name="Collection.php" hash="7624675ddb98f808be646109562ce272"/><dir name="Value"><file name="Collection.php" hash="69474973f904b263cbb9f1227d0c62db"/></dir><file name="Value.php" hash="8e9c636044ac2ec2c4c2342ed22011bd"/></dir><file name="Option.php" hash="a1118f95a3b411edd7767badf0e3838c"/><file name="Relation.php" hash="accc9f5e417192ca5ef4968564e9478e"/><file name="Status.php" hash="fed573760af2fddc873678ff57df5592"/><dir name="Type"><dir name="Configurable"><dir name="Attribute"><file name="Collection.php" hash="82a4ce119cfd7eae53fe790ffd309519"/></dir><file name="Attribute.php" hash="c768f597c9aec823e79a554d7cd4763a"/><dir name="Product"><file name="Collection.php" hash="b573e6295f5cc4a76eae1937559876be"/></dir></dir><file name="Configurable.php" hash="cd48973bc8b1b7484eea3be93713cb69"/></dir><file name="Website.php" hash="86b909ce4bb1bc5759df3381b9409e34"/></dir><file name="Product.php" hash="7acc4fb438509e65fd11e741403542e5"/><file name="Setup.php" hash="33355298a0b2d9e4012ba0712687e5a7"/><file name="Url.php" hash="b5a13b469f829617a8c0a73a1599a984"/></dir><file name="Session.php" hash="333421356b45a753ca190bd001cb2e68"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Catalog"><dir name="Category"><file name="Flat.php" hash="2c8fe43e4a233bf8934704c7fe0a8ec0"/></dir><dir name="Product"><file name="Flat.php" hash="754061a0376e7a804be51ba5ff644e66"/></dir><dir name="Url"><dir name="Rewrite"><file name="Suffix.php" hash="23ecaf925ea7ef9197cf7c9423352a98"/></dir></dir></dir></dir></dir></dir><dir name="Template"><file name="Filter.php" hash="96c6dfeae7b67990d60d77bc162a5b1a"/></dir><file name="Url.php" hash="2f3325358a78597164094dfdec07b2a6"/></dir><dir name="controllers"><file name="CategoryController.php" hash="c7c68016b46bd824b748959d090013ee"/><file name="IndexController.php" hash="ac301f4a5039061c8d4cf5e58b90fb26"/><dir name="Product"><file name="CompareController.php" hash="a97e663d47459bf714484cdde8c0591d"/></dir><file name="ProductController.php" hash="aba9a281433847277420e5da2e769c82"/><dir name="Seo"><file name="SitemapController.php" hash="0ad9c48e4a286100a0157896b89c14ff"/></dir></dir><dir name="data"><dir name="catalog_setup"><file name="data-install-1.6.0.0.php" hash="c4ca68125954765c850feaec77d77105"/><file name="data-upgrade-1.6.0.0.12-1.6.0.0.13.php" hash="030e24354ba8aca75a886da56736e76a"/><file name="data-upgrade-1.6.0.0.13-1.6.0.0.14.php" hash="a63c31ff7ec6d9de4f11db70af34d702"/><file name="data-upgrade-1.6.0.0.19.1.3-1.6.0.0.19.1.4.php" hash="33fe7adfb9d165b343279939d54710e5"/><file name="data-upgrade-1.6.0.0.4-1.6.0.0.5.php" hash="cec64dd7df5eef024a8496a3f72e4372"/><file name="data-upgrade-1.6.0.0.8-1.6.0.0.9.php" hash="a43bf0ff9fb72e57db9b883bd45aa382"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="b562b0c4140a43cdc7ed3fa21374a606"/><file name="api.xml" hash="eed902fc50af484f6484357fd6d5e013"/><file name="api2.xml" hash="10e038b1f127f74e8c0e3d1153cdffd3"/><file name="config.xml" hash="cb9e29a8540a06ceb0c7ba8098344499"/><file name="convert.xml" hash="59dccc5cc29cb3fbfc94eee26b529db2"/><file name="system.xml" hash="09a2876b271dd61e39cf89abee735ee8"/><file name="widget.xml" hash="0068b7b010d4985eb83b865ea838586d"/><file name="wsdl.xml" hash="fa198392d766134085b3c2ec1be4a0e9"/><file name="wsi.xml" hash="0acfd65c613ccb83404317500078a85d"/></dir><dir name="sql"><dir name="catalog_setup"><file name="install-1.6.0.0.php" hash="a57c3b2a53aa6384c2f0a693353fcba1"/><file name="mysql4-data-upgrade-0.7.57-0.7.58.php" hash="2120fdc78c6000ef2134b217f8c74f74"/><file name="mysql4-data-upgrade-0.7.63-0.7.64.php" hash="8f51c57d94bca45d11e27a0d8055147f"/><file name="mysql4-data-upgrade-1.4.0.0.28-1.4.0.0.29.php" hash="a194850e9a5388bf38b1ba5aa8739414"/><file name="mysql4-data-upgrade-1.4.0.0.42-1.4.0.0.43.php" hash="d0175f8e452128201765735009a5851e"/><file name="mysql4-install-0.7.0.php" hash="650ac4b7aff67f5e83639013d8f2b9fe"/><file name="mysql4-install-1.4.0.0.0.php" hash="243371a61b6c1e942b31abfaf4448d8f"/><file name="mysql4-upgrade-0.6.40-0.7.0.php" hash="2ea5fccbfdfd7dc682c57c1f0a4fe77e"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="dea20de1987cf262ec8ce66e6d05d785"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="8b171bb907cf9fac38b1ca561be15e9a"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="67cc3f88d62d577099591dba703591ab"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="5743235727dfa1b1745346d4a665dde0"/><file name="mysql4-upgrade-0.7.13-0.7.14.php" hash="c913f966bfbe54f9afc179916e346e3f"/><file name="mysql4-upgrade-0.7.14-0.7.15.php" hash="eda07a21268160d97d458708dccf3b5e"/><file name="mysql4-upgrade-0.7.15-0.7.16.php" hash="cbba89e54536d02170e5456e2b079ffd"/><file name="mysql4-upgrade-0.7.16-0.7.17.php" hash="5743235727dfa1b1745346d4a665dde0"/><file name="mysql4-upgrade-0.7.17-0.7.18.php" hash="7d1d1bead20fdf38cfab28cb21e78d6f"/><file name="mysql4-upgrade-0.7.18-0.7.19.php" hash="b6735d410395dfd34f21458427f99a13"/><file name="mysql4-upgrade-0.7.19-0.7.20.php" hash="67cc3f88d62d577099591dba703591ab"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="54a7a140bc602006a071acb6641673f7"/><file name="mysql4-upgrade-0.7.20-0.7.21.php" hash="4ba67e9710ca055f98a63d1df6c4f31f"/><file name="mysql4-upgrade-0.7.21-0.7.22.php" hash="ee461b2f49e962b362e1cfee547ecd9e"/><file name="mysql4-upgrade-0.7.22-0.7.23.php" hash="f61b8a86749dce0df458b02a835efe68"/><file name="mysql4-upgrade-0.7.23-0.7.24.php" hash="2050ea455761178daa9d220a34cd8254"/><file name="mysql4-upgrade-0.7.24-0.7.25.php" hash="261e90a21d40864974e60972cda1ae1c"/><file name="mysql4-upgrade-0.7.25-0.7.26.php" hash="261e90a21d40864974e60972cda1ae1c"/><file name="mysql4-upgrade-0.7.26-0.7.27.php" hash="2e2061fcffef07742e04f465c4545c64"/><file name="mysql4-upgrade-0.7.27-0.7.28.php" hash="047e843051f421435db7f9d45ad1bf3c"/><file name="mysql4-upgrade-0.7.28-0.7.29.php" hash="bad4802d0e999950f441f2adc841b8c7"/><file name="mysql4-upgrade-0.7.29-0.7.30.php" hash="448c3f0262d320927a67c3bdf2248b87"/><file name="mysql4-upgrade-0.7.30-0.7.31.php" hash="34ca255178a097f0bfd58d63024ff303"/><file name="mysql4-upgrade-0.7.31-0.7.32.php" hash="9c2270289ec1119ab13292825b7260e8"/><file name="mysql4-upgrade-0.7.32-0.7.33.php" hash="805cfe42d016780188eb0cb7bf5199fd"/><file name="mysql4-upgrade-0.7.33-0.7.34.php" hash="c115797b39ca05a11ba359bd2a997006"/><file name="mysql4-upgrade-0.7.34-0.7.35.php" hash="5e0c9878dca7097f391deb7f12041666"/><file name="mysql4-upgrade-0.7.35-0.7.36.php" hash="8c2ea970a1f8bfb1e4f8a44cbdb38fe6"/><file name="mysql4-upgrade-0.7.36-0.7.37.php" hash="07bf9ea01a058db11f3f53c2b262a547"/><file name="mysql4-upgrade-0.7.37-0.7.38.php" hash="30c07450806e0c47785c87ef33b93c30"/><file name="mysql4-upgrade-0.7.38-0.7.39.php" hash="b9272cd795d086256e30c392301dd694"/><file name="mysql4-upgrade-0.7.39-0.7.40.php" hash="48bddb7f32ca326c121521bea4aa123d"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="0e42c040a8ad7cdcd333513ad3242ea1"/><file name="mysql4-upgrade-0.7.40-0.7.41.php" hash="681a24fc90e818f247c9278e56fc22cf"/><file name="mysql4-upgrade-0.7.41-0.7.42.php" hash="9d42b6ee298ac25fb328fa5146492753"/><file name="mysql4-upgrade-0.7.43-0.7.44.php" hash="050e5d63ebfa04bdd57a6309679166f5"/><file name="mysql4-upgrade-0.7.44-0.7.45.php" hash="1a4cc1c7e259401c57aed4220483e633"/><file name="mysql4-upgrade-0.7.45-0.7.46.php" hash="5a4654a62a0811396925e2ca4adb2a46"/><file name="mysql4-upgrade-0.7.46-0.7.47.php" hash="c8b8e5055e15d33a8022ecc6adc77014"/><file name="mysql4-upgrade-0.7.47-0.7.48.php" hash="957376949159b9eb8753c9fa28a5a867"/><file name="mysql4-upgrade-0.7.48-0.7.49.php" hash="aaed0cde1206d55bf44cd3e6686af190"/><file name="mysql4-upgrade-0.7.49-0.7.50.php" hash="57b37f0719b078c4c625764d85ae5b03"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="7e0c59fa1f5d9f140fa31b3301efab6b"/><file name="mysql4-upgrade-0.7.50-0.7.51.php" hash="622a111a3f2b81c5d32b6d8025d1d048"/><file name="mysql4-upgrade-0.7.51-0.7.52.php" hash="b4c13ba1d8f8957f774abaf72ef35447"/><file name="mysql4-upgrade-0.7.52-0.7.53.php" hash="f62ec5e18aa80e66187cdf3b1de278de"/><file name="mysql4-upgrade-0.7.53-0.7.54.php" hash="757aa6098ea17b17d3116902dc7be3b3"/><file name="mysql4-upgrade-0.7.54-0.7.55.php" hash="96dc0d387fe6041c12a5cfa7014436f7"/><file name="mysql4-upgrade-0.7.55-0.7.56.php" hash="be67dce7c1e4b162e6f84d404ebf754d"/><file name="mysql4-upgrade-0.7.56-0.7.57.php" hash="3a269e09567cbc6bb616358059ab166d"/><file name="mysql4-upgrade-0.7.57-0.7.58.php" hash="3286e68856de2df6ad4727f4b06bb675"/><file name="mysql4-upgrade-0.7.58-0.7.59.php" hash="9d7e86bdc91bebcaa869322794fecf8b"/><file name="mysql4-upgrade-0.7.59-0.7.60.php" hash="38f210380cacc867ab17c56a6fefc71c"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="67cc3f88d62d577099591dba703591ab"/><file name="mysql4-upgrade-0.7.60-0.7.61.php" hash="0aa5d71181602994e81e57d12855dc41"/><file name="mysql4-upgrade-0.7.61-0.7.62.php" hash="115303e7a95de11ae88f7fc7d5bbad3d"/><file name="mysql4-upgrade-0.7.62-0.7.63.php" hash="05513ae185d2218c0cd7149a22d1ccd8"/><file name="mysql4-upgrade-0.7.63-0.7.64.php" hash="3361281520cea0d31c4ee630d7d727e4"/><file name="mysql4-upgrade-0.7.64-0.7.65.php" hash="92e376ef0bba20d8b619275fa76e139d"/><file name="mysql4-upgrade-0.7.65-0.7.66.php" hash="48d6fec6dde29cd75041f4d4ce5ee67e"/><file name="mysql4-upgrade-0.7.66-0.7.67.php" hash="d2976659ace49f2a265329db12b03129"/><file name="mysql4-upgrade-0.7.67-0.7.68.php" hash="89d1c98c285f09c343849cc930527b34"/><file name="mysql4-upgrade-0.7.68-0.7.69.php" hash="ea616d8ba8039db50d7d75460e2a1f46"/><file name="mysql4-upgrade-0.7.69-0.7.70.php" hash="52d5ad25a00242d9cea51db2b593021c"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="a68c2cd5a586e87a9351ee854cbd0d08"/><file name="mysql4-upgrade-0.7.70-0.7.71.php" hash="4247e7a1304a682043f2c028f8acface"/><file name="mysql4-upgrade-0.7.71-0.7.72.php" hash="b8d499e3820e95098b59241f1c1568f3"/><file name="mysql4-upgrade-0.7.72-0.7.73.php" hash="8387086581ab89ea580994e764abfdac"/><file name="mysql4-upgrade-0.7.73-1.4.0.0.0.php" hash="29b12a0fc191bed325fddadf54c24a08"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="180699aa8d5b88a650ee277ebbf77452"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="3b55a162a3af253b6506129c6df6360b"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="34a6f5923b96527a664a5598a8727a95"/><file name="mysql4-upgrade-1.4.0.0.10-1.4.0.0.11.php" hash="033f0c35991ba3a9c243f97e129c1269"/><file name="mysql4-upgrade-1.4.0.0.11-1.4.0.0.12.php" hash="a6faac10dad9ac7e8c7bba5ac816888e"/><file name="mysql4-upgrade-1.4.0.0.12-1.4.0.0.13.php" hash="ac727df9feaafbe4f71cf474ff734aaa"/><file name="mysql4-upgrade-1.4.0.0.13-1.4.0.0.14.php" hash="c28e9f8b3214308cb5a5d1da629b0245"/><file name="mysql4-upgrade-1.4.0.0.14-1.4.0.0.15.php" hash="2e39a7bfbd42ff9172a555d5610dd046"/><file name="mysql4-upgrade-1.4.0.0.15-1.4.0.0.16.php" hash="76eb00176e848426a7c2f2fa12a9c747"/><file name="mysql4-upgrade-1.4.0.0.16-1.4.0.0.17.php" hash="45f0e737d823702d981f3ee0ae700558"/><file name="mysql4-upgrade-1.4.0.0.17-1.4.0.0.18.php" hash="e90d278a0f5042539090da25152bfa90"/><file name="mysql4-upgrade-1.4.0.0.18-1.4.0.0.19.php" hash="72b100195e2885b4ef08c8d8c8f0a554"/><file name="mysql4-upgrade-1.4.0.0.19-1.4.0.0.20.php" hash="6b52232190f3c6bfbe6795c696477f61"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="2a830069f6b45abe68b6c752038c0ff1"/><file name="mysql4-upgrade-1.4.0.0.20-1.4.0.0.21.php" hash="b9b9101807c38728146574fb9ea943c9"/><file name="mysql4-upgrade-1.4.0.0.21-1.4.0.0.22.php" hash="bcf38c56ad3adb48a39de63d4d5a9743"/><file name="mysql4-upgrade-1.4.0.0.22-1.4.0.0.23.php" hash="235f71a24ea39c231e98db12a42b61b2"/><file name="mysql4-upgrade-1.4.0.0.23-1.4.0.0.24.php" hash="331fa853150d1ffa8c516d212aa2f8ad"/><file name="mysql4-upgrade-1.4.0.0.24-1.4.0.0.25.php" hash="82812309ff548852b02f1ed3e237fa88"/><file name="mysql4-upgrade-1.4.0.0.25-1.4.0.0.26.php" hash="b05811676a5dce07cef80ef120e8d81e"/><file name="mysql4-upgrade-1.4.0.0.26-1.4.0.0.27.php" hash="319cb1b721425218dfdbb8e6b35d2696"/><file name="mysql4-upgrade-1.4.0.0.27-1.4.0.0.28.php" hash="b05b195b2f019e9809ae5f632a290716"/><file name="mysql4-upgrade-1.4.0.0.28-1.4.0.0.29.php" hash="9dd311b7b21faa2ea4d51255ba418b4a"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="cbe028d3212877dd34d99d5dcebc6b5a"/><file name="mysql4-upgrade-1.4.0.0.30-1.4.0.0.31.php" hash="6467bf0816d5824368b73f14881a9594"/><file name="mysql4-upgrade-1.4.0.0.31-1.4.0.0.32.php" hash="63d31a684aae6f3685de3bdba5fa8382"/><file name="mysql4-upgrade-1.4.0.0.32-1.4.0.0.33.php" hash="e10a90a8b43ed815b753039927d987b6"/><file name="mysql4-upgrade-1.4.0.0.33-1.4.0.0.34.php" hash="6ff59cc05f2ba9cbaac47771bcf22ea3"/><file name="mysql4-upgrade-1.4.0.0.34-1.4.0.0.35.php" hash="2437bcdce44398b9ed73ed1e3decba40"/><file name="mysql4-upgrade-1.4.0.0.35-1.4.0.0.36.php" hash="68e92c8f846da8d06a49c7fa80d3262b"/><file name="mysql4-upgrade-1.4.0.0.36-1.4.0.0.37.php" hash="a52db42ba61e1621f7843566633367f3"/><file name="mysql4-upgrade-1.4.0.0.37-1.4.0.0.38.php" hash="c922e3c1000cf84cda132c340578b35b"/><file name="mysql4-upgrade-1.4.0.0.38-1.4.0.0.39.php" hash="346f6a122b15b7f1ac8e8a2f25a5f748"/><file name="mysql4-upgrade-1.4.0.0.39-1.4.0.0.40.php" hash="a1d2f7e1b745850087b5e23a19ced0c1"/><file name="mysql4-upgrade-1.4.0.0.4-1.4.0.0.5.php" hash="863fcd3a4d5f0d7f5a589d89e08291a5"/><file name="mysql4-upgrade-1.4.0.0.40-1.4.0.0.41.php" hash="e9b96de3dab54f6eb5b44ed1a6796dc5"/><file name="mysql4-upgrade-1.4.0.0.41-1.4.0.0.42.php" hash="75eefbda635369ec825856c3111419ac"/><file name="mysql4-upgrade-1.4.0.0.43-1.4.0.0.44.php" hash="44955c234a43e88720d98e69bed21d66"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="2b2d2223ab82953f2d561cecfc0565f4"/><file name="mysql4-upgrade-1.4.0.0.6-1.4.0.0.7.php" hash="e3a56b28711daac89ba7f7f0a0f1c236"/><file name="mysql4-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="20ec846642be63a3c0185211f45a4683"/><file name="mysql4-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="de70d7d3fb9ac7702845c5486f251a7e"/><file name="mysql4-upgrade-1.4.0.0.9-1.4.0.0.10.php" hash="d020d258926fad12d51577fb92238711"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="e9d8993129029d6ce440139fe76d2ae3"/><file name="mysql4-upgrade-1.6.0.0.8-1.6.0.0.9.php" hash="0e7307795fa7b2020f3e7d7068664395"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="018fc237065f4d0f3d467f40b6337eb3"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="ae66a75fdc23f3b148a98ff5f7189e75"/><file name="upgrade-1.6.0.0.10-1.6.0.0.11.php" hash="f4c233432fc57f2dad363dfa899eebe1"/><file name="upgrade-1.6.0.0.11-1.6.0.0.12.php" hash="38c8277fa9982c564b395248794a0fcf"/><file name="upgrade-1.6.0.0.14-1.6.0.0.15.php" hash="9d146cf31e038d66f1a6fbe754db7c8f"/><file name="upgrade-1.6.0.0.15-1.6.0.0.18.php" hash="57dc7ac4fdfb98a730fd06a8c52fb59e"/><file name="upgrade-1.6.0.0.18-1.6.0.0.19.php" hash="21c046f401d22b516e1a770e5b1e236f"/><file name="upgrade-1.6.0.0.19.1.1-1.6.0.0.19.1.2.php" hash="c7ac3babd810049a182c93b938467a2a"/><file name="upgrade-1.6.0.0.19.1.2-1.6.0.0.19.1.3.php" hash="fa45ba4962aaead2f228b24d7689b147"/><file name="upgrade-1.6.0.0.19.1.4-1.6.0.0.19.1.5.php" hash="00f9556e80b5c888cb8003cf895573b7"/><file name="upgrade-1.6.0.0.2-1.6.0.0.3.php" hash="756234b5c7485325e34e07d0ceb575b6"/><file name="upgrade-1.6.0.0.3-1.6.0.0.4.php" hash="d8db9fed9a6b4c3fb944f7fc2cde147e"/><file name="upgrade-1.6.0.0.4-1.6.0.0.5.php" hash="8beffe03092e948fad66fc023a34ab6e"/><file name="upgrade-1.6.0.0.5-1.6.0.0.6.php" hash="bc7b55027d59403cb325f1f79be7ec95"/><file name="upgrade-1.6.0.0.6-1.6.0.0.7.php" hash="74cdd027eb485ce7a38e5910f90c3833"/><file name="upgrade-1.6.0.0.7-1.6.0.0.8.php" hash="88c429ccc6589bc338a8f7459f0560d2"/><file name="upgrade-1.6.0.0.9-1.6.0.0.10.php" hash="3afc43cd784b7397da0318b7dd60c314"/></dir></dir></dir><dir name="CatalogIndex"><dir name="Model"><file name="Aggregation.php" hash="d8446e11e4e245b251f88cfd4da269b7"/><file name="Attribute.php" hash="e6216e285d12b7b51b0dff0d81747fca"/><dir name="Catalog"><dir name="Index"><file name="Flag.php" hash="e1eb655da746408366e7a977d28f6209"/><dir name="Kill"><file name="Flag.php" hash="1d37bd5c967979aa21bc99d6bc9f7154"/></dir></dir></dir><dir name="Data"><file name="Abstract.php" hash="d9f91599be307f824b17ba55a03777c3"/><file name="Configurable.php" hash="c98b4e4546bbf5af9cdec5bf4d32779c"/><file name="Grouped.php" hash="8964208ac3299ed7a0e918a1ad282c4d"/><file name="Simple.php" hash="966919e26852450fde971814d9267314"/><file name="Virtual.php" hash="34c4e295e18d47a3f0c84000c7cf37b7"/></dir><dir name="Indexer"><file name="Abstract.php" hash="163c7eb1f9d54cf54919c301a50d08bc"/><file name="Eav.php" hash="5f2d4772baae0ae42a3e963e9e6d1398"/><file name="Interface.php" hash="1701436dc2c161fc778c18135dad5579"/><file name="Minimalprice.php" hash="eb3b85b428e99ed84ff4226ce6430c00"/><file name="Price.php" hash="96f194a17250f6bf3c9737f5eb5b82f4"/><file name="Tierprice.php" hash="1765d4fed0a73ae74e756ac5f853aeaf"/></dir><file name="Indexer.php" hash="42484b0ee84d41b72aadad7334fda63b"/><dir name="Mysql4"><file name="Abstract.php" hash="8d7b96a754563d987b35f54ba1807457"/><file name="Aggregation.php" hash="82843ec810859f175730e7ca27225fca"/><file name="Attribute.php" hash="7e23d064ce0f6e24501c97cacd21adaa"/><dir name="Data"><file name="Abstract.php" hash="c869b2447587f487d821e953cde65236"/><file name="Configurable.php" hash="d841008e1a838053533d6a02ca3db950"/><file name="Grouped.php" hash="9765ee55da8451f5d76796eeb996f5d4"/></dir><dir name="Indexer"><file name="Abstract.php" hash="2e9a20aae085d294fbbccd65b34aee6f"/><file name="Eav.php" hash="a91a531718dd714f86f5819b8a4c3f22"/><file name="Minimalprice.php" hash="139a035f3cd6627a4b622471fa6bf6aa"/><file name="Price.php" hash="7d118cd7699496534a6318140f213256"/></dir><file name="Indexer.php" hash="aaa9010ef33d1e3b6e3babe05404a0e8"/><file name="Price.php" hash="5b01f7a082382b399f8cc02fc5f8637a"/><file name="Retreiver.php" hash="a8d0312325f1fcb397f1a816786cae9a"/><file name="Setup.php" hash="7c74778b63f245643a02b3133532fa0a"/></dir><file name="Observer.php" hash="4c4839c5c6289e4a68a4e68055d0fc39"/><file name="Price.php" hash="3cede2cadd925a804f5ab4533a0aedb6"/><dir name="Resource"><file name="Abstract.php" hash="6d28df0cb41449e78938675c2177ea5b"/><file name="Aggregation.php" hash="357e91b7049334de0d0e2242c40d6af5"/><file name="Attribute.php" hash="1c6e6fcd593b3982206ee870740b6632"/><dir name="Data"><file name="Abstract.php" hash="44d9ff50977584d81e3732a6bfca8c66"/><file name="Configurable.php" hash="33c11796275c59a0ccb21475d5fca796"/><file name="Grouped.php" hash="aee13957e362b6b29da1e130a0c9183e"/></dir><dir name="Indexer"><file name="Abstract.php" hash="77bd665e3220fba4e8874a2c9415f0f4"/><file name="Eav.php" hash="eeb4d41a3b496b7fa452aa7a88eb219f"/><file name="Minimalprice.php" hash="9e4e2c07140ee094c03dcf870fc7a8af"/><file name="Price.php" hash="b80a57584e61871ff1796c752f78110f"/></dir><file name="Indexer.php" hash="62590ce725754ad991a4b13b7631d100"/><file name="Price.php" hash="463262c0563bfbc9b4b12931edd38940"/><file name="Retreiver.php" hash="105b6e091067d5ad5ffbba34ec6de9e8"/><file name="Setup.php" hash="1e75b2e97a20aab6b916d800595a1423"/></dir><file name="Retreiver.php" hash="b0bad24bf9db93ad36c6a3f12cd6912e"/></dir><dir name="etc"><file name="config.xml" hash="a53aa3f175d09e5ec6364d19c0a41b05"/></dir><dir name="sql"><dir name="catalogindex_setup"><file name="install-1.6.0.0.php" hash="0301fb68116b2e5c6e57829c85770221"/><file name="mysql4-install-0.7.0.php" hash="ef60e25208b1c1c69f7760f788608866"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="edb518ac2880e64a3d1196fcca5c5408"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="5b08f13eecdbb190392bb1079ea992fa"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="79a5d99838ab289d59644b628479549d"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="86691781b4c72f2e3c009dbb219449d7"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="e0bbb2cf8699048f0dd4f11e26ee5b6f"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="ba2a3bf8d66332e75bda38855c520895"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="ce4b36e3b2e090fed799fcd96c1f3b4b"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="e9fb63a6f1712e39622423875a731f80"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="9cb3838b1c74e3ebb09bd1275d598d32"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="e49c1677360cdb321d1dc5fab9507457"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="c9a23a1358aa13ee28bfadf65ca8d70a"/></dir></dir></dir><dir name="CatalogInventory"><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Field"><file name="Customergroup.php" hash="163d3b06c6d929bcbb5aa7bcc37dd3b0"/><file name="Minsaleqty.php" hash="a1253bfe158b1c145657c13d7f530c52"/></dir></dir></dir><file name="Qtyincrements.php" hash="0b959b5a8399ff56452d30bf872c1af5"/><dir name="Stockqty"><file name="Abstract.php" hash="634f12287ffad43305214d5425338a79"/><file name="Composite.php" hash="39a929bff736748e49c8762cef926fae"/><file name="Default.php" hash="2b9c5f6a616b4d46ee15d5665b2c1012"/><dir name="Type"><file name="Configurable.php" hash="22930288268d14c881af4b0e228f5a77"/><file name="Grouped.php" hash="299fcfde251b737162a76c738b709af3"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="533b21d642ec4d0da92a493a52a9fcdf"/><file name="Minsaleqty.php" hash="252c7dc08342b1b576cd15adf6896cc3"/></dir><dir name="Model"><dir name="Api2"><dir name="Stock"><dir name="Item"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="c84e4ed181f22fa7b7af3c76ed05b18f"/></dir></dir><file name="Rest.php" hash="e270aadfdfe27e36ce10ce652df5cd5f"/><dir name="Validator"><file name="Item.php" hash="b9d1b5db0d174bf229f6481140eccf61"/></dir></dir><file name="Item.php" hash="b1e6789de22bc81cd8c9e5d418f6e417"/></dir></dir><dir name="Indexer"><file name="Stock.php" hash="86bb76e8c6e4eed87e48a7f1d5969118"/></dir><dir name="Mysql4"><dir name="Indexer"><dir name="Stock"><file name="Configurable.php" hash="c575d00d8ec9f9a02fd2fc91f093e862"/><file name="Default.php" hash="71fef27bb3953dab13046778d6cc85cb"/><file name="Grouped.php" hash="681655f42e1abf8a5e4c65bcd51b9632"/><file name="Interface.php" hash="6f8454915dcd8d4c0aa8098ac47d3149"/></dir><file name="Stock.php" hash="aa87f7c0f015fe5348afbf63d8b64307"/></dir><dir name="Stock"><dir name="Item"><file name="Collection.php" hash="d89055e9f449549be221f5e68157f53b"/></dir><file name="Item.php" hash="0095d1ccf8329fb63a3506ae6a2edb28"/><file name="Status.php" hash="dbfb58bd7d8ae6a805d15ea4520740fc"/></dir><file name="Stock.php" hash="b92334f297141b9295798bc2e4608675"/></dir><file name="Observer.php" hash="29a2f1d731037a75fa2e3ac539e9750b"/><dir name="Resource"><dir name="Indexer"><dir name="Stock"><file name="Configurable.php" hash="cc79a58c240df2dea5a7876596f4fa98"/><file name="Default.php" hash="dd5890df9d9d4dec9eaa9a22311cf636"/><file name="Grouped.php" hash="645cece573ebe2ae8c9a5b44a5d5875a"/><file name="Interface.php" hash="935fe279b249565fe7fc209bed740516"/></dir><file name="Stock.php" hash="47cac76c6e244d2f76686813fb8bc00a"/></dir><dir name="Stock"><dir name="Item"><file name="Collection.php" hash="9dd080a07edee641c784c898b5295238"/></dir><file name="Item.php" hash="a2064ba40b20174a12164cc36d3bd33d"/><file name="Status.php" hash="ad92e42f445a27ff103eb6f1b8fb63f3"/></dir><file name="Stock.php" hash="ad4cbd3e0236e529cd80a11de1b7a53a"/></dir><dir name="Source"><file name="Backorders.php" hash="7f08d25b4803c2b5b85e29e5af359c37"/><file name="Stock.php" hash="b9450ed75a0d1be3c4daeea22202a455"/></dir><dir name="Stock"><dir name="Item"><dir name="Api"><file name="V2.php" hash="783c76e4aed5a72e67a7de070185b741"/></dir><file name="Api.php" hash="e39eb5620e1f577cb51e9feae480c035"/></dir><file name="Item.php" hash="a7b33c47af793511fb67d3a00319654d"/><file name="Status.php" hash="20fbca52b8afa08194b67aa6b2c16c44"/></dir><file name="Stock.php" hash="d6185257041d13f6b566d6601b49edb2"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Minqty.php" hash="00aa4d4dba81277cb07a21de73133759"/><file name="Minsaleqty.php" hash="a29d77d011b419a9786b1d7f17ede6af"/><file name="Qtyincrements.php" hash="5663f823ca9993f8995a70d6a909d88e"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ec7bc5e2292512488a4248e8dbd1631e"/><file name="api.xml" hash="b037c38c8dfc663cbf6e1c1353e5d252"/><file name="api2.xml" hash="f983c350e9c44229e4fc4d41ce294d91"/><file name="config.xml" hash="79dd5f14b3d64fb65f20d5f3e3309a12"/><file name="system.xml" hash="d962c914c34134200d08f18d87d2fb00"/><file name="wsdl.xml" hash="cfad5924eb32b8fb7ccf79309e5966df"/><file name="wsi.xml" hash="ec7bdd8cb2bc5dd12c0a4d865fe3d313"/></dir><dir name="sql"><dir name="cataloginventory_setup"><file name="install-1.6.0.0.php" hash="186d243fdf3189b96caf9fbdc80aee6c"/><file name="mysql4-install-0.7.0.php" hash="75e2c895e6dfbad69c600f865db6cff4"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="6f0d39d6f4fe87c167fd43b5a39de2d9"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="7e6fcee3d6aeb8bed8be763687cdb8ba"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="04f921c7375bfb01a658b349c31537fd"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="e0e7a7ccefc05896c771fd99f780f708"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="5565cd4be6aead2b0932872f0eb55340"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="be17870a38cf723722f6f99b5bb68c18"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="17a69f148b233711d0c94537352837f1"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="243f5fc0eb15dec1d62992f4c7c7d56d"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="281755ca835ad1ee976f5118076bc94d"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.0.1.php" hash="bfd977798f6118c5368b614c9c5c7795"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="53308b12950c985fa05c7bbf9d49e12c"/></dir></dir></dir><dir name="CatalogRule"><dir name="Helper"><file name="Data.php" hash="560016778ef760247cb7d3b1caabb70f"/></dir><dir name="Model"><dir name="Action"><dir name="Index"><dir name="Refresh"><file name="Row.php" hash="b3d2f0876cfc7c3dc88cf084aa011f8c"/></dir><file name="Refresh.php" hash="73fc903920175f260c1400aa3924b902"/></dir></dir><file name="Flag.php" hash="7903d33b2f3b537f31def82ab02ea752"/><dir name="Mysql4"><dir name="Rule"><file name="Collection.php" hash="1c7ef5836a12d91c7b6cd1596a5c0c9d"/><dir name="Product"><dir name="Price"><file name="Collection.php" hash="4745a3b75d783c2ce549f8c66880f1b0"/></dir><file name="Price.php" hash="659daee66e70387f6ec6ad1c2782a9af"/></dir></dir><file name="Rule.php" hash="a2252e99ac1beaa96c558788d7541dca"/></dir><file name="Observer.php" hash="cc5c3ee1e4dfcff8e656b4c4f7df9713"/><dir name="Resource"><dir name="Rule"><file name="Collection.php" hash="b90b0ab93e58b0d99ba8a1d611a69b34"/><dir name="Product"><dir name="Price"><file name="Collection.php" hash="b05d4de6ec29c21af930a60b6b30b111"/></dir><file name="Price.php" hash="52dbe3cbb55103fcc8b1673ad0e29d5c"/></dir></dir><file name="Rule.php" hash="94ea7c0291cb88881db89e7d48895fc6"/></dir><dir name="Rule"><dir name="Action"><file name="Collection.php" hash="cbefca5d6a981c7aa1d79431da1a1006"/><file name="Product.php" hash="1ef05545bae581adff21dea5eef7436c"/></dir><dir name="Condition"><file name="Combine.php" hash="d476c6954ab95cb3ebd80aff66eabb83"/><file name="Product.php" hash="22634d4e9c59ea7d4da5ac793e79c2e8"/></dir><dir name="Product"><file name="Price.php" hash="866097a5efe4d81c1bca28d1fce9973b"/></dir></dir><file name="Rule.php" hash="e3cd573194b1bcefbcd8d41b1ed07fa2"/></dir><dir name="etc"><file name="adminhtml.xml" hash="093d6f0890d18e7d864a9635fa08e26d"/><file name="config.xml" hash="93a7c143800b9a7f3ae090a0a97ce8bb"/></dir><dir name="sql"><dir name="catalogrule_setup"><file name="install-1.6.0.0.php" hash="f267d851d396f216b2ed0a73a177c717"/><file name="mysql4-install-0.7.0.php" hash="a2de42b77075ec0b403630b1a93e95f7"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="0fb948870f4792fd810bf6982237a0f7"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="9a60dc6338554003d882475a411f24ba"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="900eebf1d56e35c1ec6fe8b169ff71ab"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="c935d33a43baf1b58075fcd2fa9c8667"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="94818b4c3f6694c3fea522fa7071129a"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="b97239fccace41b55ae0b01d0334f07e"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="cd83d4f6daea4ea53974f39fc2603bf0"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="72612964477cbfdeacaa95a8bc7ace43"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="09a0d5a3d5c97841401bad35a7b34d05"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="5ada9f5e099cbbd1f03393f46d2ca6b7"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="4e50dfe5c65040c848b49001884ff11f"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="6e81e9960d6c8d22bfbdd8642bc41da8"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="d87e4ab753b65806b9cd8b3231abf543"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="363f01664e7f1b960920a03a67be5037"/></dir></dir></dir><dir name="CatalogSearch"><dir name="Block"><dir name="Advanced"><file name="Form.php" hash="e73320b5f9aa1db5d6dd535cd5a51c77"/><file name="Result.php" hash="158d8c4234b2b24f5bce04f068878997"/></dir><file name="Autocomplete.php" hash="40a423ace61e14fb7e928aa1c18dbb74"/><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="686db1fc07ef2ff608bc1982b43359a3"/></dir></dir><file name="Layer.php" hash="8c4c35b064430d739f6d0d4a216f2b14"/><file name="Result.php" hash="e2767174a41982becba4446853a38d6c"/><file name="Term.php" hash="f02a1a1991d2837d54ee71c632e641a7"/></dir><dir name="Helper"><file name="Data.php" hash="16b83aedc3e508276e90b116a5ef0610"/></dir><dir name="Model"><file name="Advanced.php" hash="673206deb25181e532fa901a3cfdd5ea"/><dir name="Fulltext"><file name="Observer.php" hash="d98bcfbda298c86a256b0039c88463ca"/></dir><file name="Fulltext.php" hash="f45fac39b3af844c0ad489cc31fd36c5"/><dir name="Indexer"><file name="Fulltext.php" hash="fdb752b9e4a49a9a06022f7cd943846d"/></dir><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="70ca3a299e5a79880ae1e67593f207eb"/></dir></dir><file name="Layer.php" hash="9b58138cc29407e8df0bbeed10991657"/><dir name="Mysql4"><dir name="Advanced"><file name="Collection.php" hash="4e13897ad78aadf7dd362b68f57449e7"/></dir><file name="Advanced.php" hash="852588dba6d4f9e68b7ccd72ed22efd7"/><dir name="Fulltext"><file name="Collection.php" hash="cdf89df38a26752fb99ad76f1889266d"/><file name="Engine.php" hash="c4268d353f9345fa90659ada21e85120"/></dir><file name="Fulltext.php" hash="dc7b4be01985a3a6be2641549777ba7d"/><dir name="Indexer"><file name="Fulltext.php" hash="4bf43c11bd0a0691220b6f435927b394"/></dir><dir name="Query"><file name="Collection.php" hash="446ad51d56c11f26debb0b2452f3b412"/></dir><file name="Query.php" hash="13604101b9dee37fe489630cec0a8887"/><dir name="Search"><file name="Collection.php" hash="de4b4bb9646a0a2b8185d4ad7d8612d4"/></dir></dir><file name="Query.php" hash="da8170ea36c99b6fe69cadee58ff624c"/><dir name="Resource"><dir name="Advanced"><file name="Collection.php" hash="a31a945c32e467b20a94fcb4cbe0a902"/></dir><file name="Advanced.php" hash="2db00b3266767e591d4a3712a95b0d0a"/><dir name="Fulltext"><file name="Collection.php" hash="1fcc25c6bec69b5137f5805413e97b08"/><file name="Engine.php" hash="c82ac50d4a4c7dd5cca266611d5bb32b"/></dir><file name="Fulltext.php" hash="e61ddf943e392b298406c1fff1547f36"/><dir name="Helper"><file name="Mysql4.php" hash="936338862674186b816444f5c6797af0"/></dir><dir name="Indexer"><file name="Fulltext.php" hash="f2f34a970c04267593442eac45fabed1"/></dir><dir name="Query"><file name="Collection.php" hash="9e49419777202fb6732dd4e76d80ca83"/></dir><file name="Query.php" hash="a62f0dac4012d29dcd4a4aa0c107eebd"/><dir name="Search"><file name="Collection.php" hash="72a2af0b587772e944547732ec6c46ec"/></dir></dir><file name="Session.php" hash="74ee378fc7dd0cf7c17637b1a876e733"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Sitemap.php" hash="28eafe560f68a8bd2cf7ae5ed82abd35"/></dir></dir></dir></dir><dir name="controllers"><file name="AdvancedController.php" hash="f58f4832cf837a644aff27d3e9831d82"/><file name="AjaxController.php" hash="c512ebd4bd8ab2f0ad0a2d18f068de21"/><file name="ResultController.php" hash="6199d499b4d9040b3beda927f07248c8"/><file name="TermController.php" hash="3ff5982242c57a7f4ae02ce2cd28b7f0"/></dir><dir name="etc"><file name="adminhtml.xml" hash="666740063c81d96ab024d95108e0eb1b"/><file name="config.xml" hash="071d829deff261b3899f8506a20da0d7"/><file name="system.xml" hash="7e133c61e5dac5dfaf765f29e429bc78"/></dir><dir name="sql"><dir name="catalogsearch_setup"><file name="install-1.6.0.0.php" hash="685d4b125a8c0156af263540c0662aa6"/><file name="mysql4-install-0.7.0.php" hash="b692090952faab6b90b0013012a67a5a"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="fcfb5aa7d2be0d3619fb1273db0bc0fa"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="78f25300474601a56ccae20b2899228a"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="6375fb28c6357cf9d9fa92d92801cd4e"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="85b4b27b90be56dff302e49b9038d419"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="80d97a392fd15c328d6e929428bfe677"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="435822849781f094803c02ded421fe8a"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="20c3c617d661d1bf8a421594a6b3981a"/><file name="upgrade-1.6.0.0-1.8.2.0.php" hash="e9e7f420007c062e4c4536cf49205104"/></dir></dir></dir><dir name="Checkout"><dir name="Block"><file name="Agreements.php" hash="8d56692ecac1020f66f55d778263faff"/><dir name="Cart"><file name="Abstract.php" hash="f9ec040f942e590fdfc265813fd9fd1d"/><file name="Coupon.php" hash="511ace3d8e590ab1d3801d4da74e142c"/><file name="Crosssell.php" hash="862405f0b1554945cf9d249e33f0aaf6"/><dir name="Item"><file name="Configure.php" hash="278e92e905c3100630c48e875aa0466d"/><dir name="Renderer"><file name="Configurable.php" hash="87f290557da9375aa29539bbe00928d2"/><file name="Grouped.php" hash="0bf0e8c6a45b426435a63eb499029599"/></dir><file name="Renderer.php" hash="483f7b9973a1a2e5ec1cd4b380e1c773"/></dir><file name="Minicart.php" hash="2357ea9c0d495c8c608b36d67f8d864d"/><file name="Shipping.php" hash="1d480d34a3aa3829e7a17ec5d66a0100"/><file name="Sidebar.php" hash="479be1a791631077e4848911a2fe9816"/><file name="Totals.php" hash="643a06ca086b06a732004f073688eb35"/></dir><file name="Cart.php" hash="7ffacdd2422f769df682c83156aab966"/><file name="Links.php" hash="3ea4b4fd3a0c040d55c258e2b9c23102"/><dir name="Multishipping"><file name="Abstract.php" hash="b0a1ea630d0c18369dadc359446bb1e1"/><dir name="Address"><file name="Select.php" hash="0b7c8184050f87a58b1e2eb5a82f4dc9"/></dir><file name="Addresses.php" hash="f64e18dd22554cae891a9181e02abed0"/><dir name="Billing"><file name="Items.php" hash="75dbdfc33982acd44dc344b0b23626f5"/></dir><file name="Billing.php" hash="78b56757554c4e521e610376d975648d"/><file name="Link.php" hash="2a19d42e946334b65b12ce78a24ae31f"/><file name="Overview.php" hash="9bc38e98f85764d58ba8292aed5335c6"/><dir name="Payment"><file name="Info.php" hash="a670440634774b806310ea1a251ea034"/></dir><file name="Shipping.php" hash="3f1832bfc1c91d15d4491c4b8fed4ba4"/><file name="State.php" hash="0ec043c400c0ef3640c4946d85277a82"/><file name="Success.php" hash="d869c536a16ec9386b7dfca8eb94ab19"/></dir><dir name="Onepage"><file name="Abstract.php" hash="bcfa18c091ad1413c3398067b7919d66"/><file name="Billing.php" hash="edaae580ab1c058260cd2919bbbd86b5"/><file name="Failure.php" hash="56bf05b27fbf60186f6967e47726c78c"/><file name="Link.php" hash="3273d959fbb7923af96284a736d6fcca"/><file name="Login.php" hash="260a20603dd06f5f0be399db86464f3f"/><dir name="Payment"><file name="Info.php" hash="d165a359b5da76e98f30c8031a12d0a9"/><file name="Methods.php" hash="8f17730b97a36e5d20542afe940146e8"/></dir><file name="Payment.php" hash="0ad11208d8bcf7523aa4690846fa3b1f"/><file name="Progress.php" hash="fe224885dc3f53b82d7faa8c77b2a2dd"/><dir name="Review"><file name="Info.php" hash="6f9552265170840423bddf029c15def5"/></dir><file name="Review.php" hash="6f3b70cd1870a4349af5e78a29ca554b"/><dir name="Shipping"><dir name="Method"><file name="Additional.php" hash="9406f7ac92241d223906b3fa12531a82"/><file name="Available.php" hash="429a98e91babb72ae1eb1d5b03ce28e8"/></dir><file name="Method.php" hash="33542a802205b6e0aecfa7064dd396e5"/></dir><file name="Shipping.php" hash="1f9301b61fe67ab39e6e2d5462ab1b41"/><file name="Success.php" hash="44abaf732daf677bd272fda41c8e83b0"/></dir><file name="Onepage.php" hash="975f6c5d38ee23b49a336baaf90ec759"/><file name="Success.php" hash="e1bdcc4ff63a008a52416e7dcd9f20b7"/><dir name="Total"><file name="Default.php" hash="f72876020eb1e469d32a2439a9335608"/><file name="Nominal.php" hash="4675f9491a2608573a67371428db578d"/><file name="Tax.php" hash="5dc3bd46f6a148f409a7731ce1a5af84"/></dir></dir><dir name="Controller"><file name="Action.php" hash="43c24f20c6930bc9b9227eeb2dc057de"/></dir><file name="Exception.php" hash="4bffd7231c2d9380b18fc9f44ea62e07"/><dir name="Helper"><file name="Cart.php" hash="17e59a7184d8a7cb99b900984736e197"/><file name="Data.php" hash="51217ce0f916f303606743f5f3b8c98d"/><file name="Url.php" hash="9676658d942ddb56c34c76bb48705570"/></dir><dir name="Model"><file name="Agreement.php" hash="5ea689d86468a3e9bfe38d26274548a1"/><dir name="Api"><dir name="Resource"><file name="Customer.php" hash="fd4f5a72d3450a84bf635fea8d4bfa90"/><file name="Product.php" hash="0b62cd2b7405e808aadfc1b94d3a4f9a"/></dir><file name="Resource.php" hash="f70d9833d06848322aa3199ddf6aaff9"/></dir><dir name="Cart"><dir name="Api"><file name="V2.php" hash="8e565977022bad3538d555b4143600ce"/></dir><file name="Api.php" hash="4f3cd847a5e5ec831cf5a91875da1fe8"/><dir name="Coupon"><dir name="Api"><file name="V2.php" hash="300d9073ae574bf1a59c8a49405ccb54"/></dir><file name="Api.php" hash="3d79972a820b8e118eaaeb55fe71df84"/></dir><dir name="Customer"><dir name="Api"><file name="V2.php" hash="37e2cde05368b1825ae543663c98c64b"/></dir><file name="Api.php" hash="e148b69dbf2338fe2ca192de81af2615"/></dir><file name="Interface.php" hash="b12492224b276a8af17c00aa7dd22d3b"/><dir name="Payment"><dir name="Api"><file name="V2.php" hash="0a212d789a1bedf703f930b16873050c"/></dir><file name="Api.php" hash="400fbc37a9bbde155bbec0f92feeabd6"/></dir><dir name="Product"><dir name="Api"><file name="V2.php" hash="72dac519831f333fe8ad4f1cc6b68822"/></dir><file name="Api.php" hash="8462145424fadbc98ecb6ba3b6b03045"/></dir><dir name="Shipping"><dir name="Api"><file name="V2.php" hash="32bd4bbb1a051851da1c7b611f228f09"/></dir><file name="Api.php" hash="2d905e80b2233b6464722d4bcbfa9a22"/></dir></dir><file name="Cart.php" hash="86e4afc52506b761ca0226ed32f6f218"/><dir name="Config"><dir name="Source"><dir name="Cart"><file name="Summary.php" hash="08585e104eb4aed09d41c4491ff0d07b"/></dir></dir></dir><dir name="Mysql4"><dir name="Agreement"><file name="Collection.php" hash="0afca26f992a28eb4892066decbcb69b"/></dir><file name="Agreement.php" hash="792d897865a39eecbb919609a410619a"/><file name="Cart.php" hash="be6723269141b1451a4f7c86e7497300"/><file name="Setup.php" hash="c38f1ad47143d40d06a970a385a313bc"/></dir><file name="Observer.php" hash="2d31b6d1cb06767587b0a1c4cdfae1c9"/><dir name="Resource"><dir name="Agreement"><file name="Collection.php" hash="c913189410058ef96f312aa6a5d3527b"/></dir><file name="Agreement.php" hash="e0995392f16cfa42398e742a2c2abced"/><file name="Cart.php" hash="c78518be163aa4f0ab31e61c7f5e0e19"/><file name="Setup.php" hash="081ca5d71ba089d5d605f3186d423313"/></dir><file name="Session.php" hash="f8abf097841c62f56529f482a406296b"/><dir name="Type"><file name="Abstract.php" hash="fc48b701ceebbf0d057cc8d158827fac"/><dir name="Multishipping"><file name="State.php" hash="6d7e4f36bf9477d11f9a2a10cc39ccb1"/></dir><file name="Multishipping.php" hash="92f299c426eaaf207ff10f1a42ac0d31"/><file name="Onepage.php" hash="52bdd3ad2ea82a6adf54145ba10798bb"/></dir></dir><dir name="controllers"><file name="CartController.php" hash="0c443eccd41d6ef12a0ce8deb1f06a4a"/><file name="IndexController.php" hash="27765c343e0c3204259e5ac11bcad9b2"/><dir name="Multishipping"><file name="AddressController.php" hash="96de3280a8451974d109e44ffbedc311"/></dir><file name="MultishippingController.php" hash="d89dfbf2f130b832792907e62746e9c5"/><file name="OnepageController.php" hash="de8e00a003711936b831abb34c52e4d0"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3a89352000cfec6bdaebcfdba1fd01d9"/><file name="api.xml" hash="c898575a004eac996f514232ec42d894"/><file name="config.xml" hash="a033a72513ee637d6c86fae693430061"/><file name="jstranslator.xml" hash="09192c5171c833110988c9929eb8dff5"/><file name="system.xml" hash="047fb91fb6234a0f324ae8f88b75bf03"/><file name="wsdl.xml" hash="9a10e25803e84713f5031a168dd0c624"/><file name="wsi.xml" hash="2567bee4ef18e1b426c700ce66c3bcb1"/></dir><dir name="sql"><dir name="checkout_setup"><file name="install-1.6.0.0.php" hash="e9845a59bd24b9ed5ce891dcbc8929fe"/><file name="mysql4-install-0.9.1.php" hash="a583303cd013f23487f913cf7489a65c"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="0bb20a7e58b933371b288d310e528a3b"/><file name="mysql4-upgrade-0.9.1-0.9.2.php" hash="25503ad4ffcb56651642b2519194b852"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="fd21901e41bfea81736ac0ca1075a1ad"/><file name="mysql4-upgrade-0.9.3-0.9.4.php" hash="d79b9cb31eb2a39f4fd51ff16908f0ef"/><file name="mysql4-upgrade-0.9.4-0.9.5.php" hash="ff007a238948d561df296dbed692cb47"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="bc84512cc6d28fff2ee3c02bf1fb2ede"/></dir></dir></dir><dir name="Cms"><dir name="Block"><file name="Block.php" hash="808cc7b98e9d5d6b9bffa3fa2fb00620"/><file name="Page.php" hash="f7cdb58be0451f1a0effd93b759472e8"/><dir name="Widget"><file name="Block.php" hash="ebe7556437cd84216b0a3dbd25b69269"/><dir name="Page"><file name="Link.php" hash="7aedc331ff5e05d58314a0650235d45c"/></dir></dir></dir><dir name="Controller"><file name="Router.php" hash="153a05f03ef48b34b18276dc18faf339"/></dir><dir name="Helper"><file name="Data.php" hash="704b0bf92e17ea9d45ad7aead5825fb8"/><file name="Page.php" hash="ef27b6592747ccbbcd19a7a32e774ffd"/><dir name="Wysiwyg"><file name="Images.php" hash="1af03c026e2fefc7c47d96166c3bdc3a"/></dir></dir><dir name="Model"><dir name="Adminhtml"><dir name="Template"><file name="Filter.php" hash="5f12afe3c720ffb4cea6fed946135bb9"/></dir></dir><file name="Block.php" hash="d4d7b6f77300797ba3ca3d72bc58818c"/><dir name="Mysql4"><dir name="Block"><file name="Collection.php" hash="6fd2d7b274c65303976683c9255f5667"/></dir><file name="Block.php" hash="16bd676bde704194d0eb383b53d853b4"/><dir name="Page"><file name="Collection.php" hash="c34032769799df3970c4edc4ceacce8d"/><file name="Service.php" hash="1404261f5a2aedd536cc79d431348eb1"/></dir><file name="Page.php" hash="477f2eff400115e79e61ef848d129d8c"/></dir><file name="Observer.php" hash="cc521139189d28588d9434bb58e79693"/><file name="Page.php" hash="2967afd2aa4840338d22e2d0e090cc3f"/><dir name="Resource"><dir name="Block"><file name="Collection.php" hash="9a86e9526a30783ed5ded05d9f5e9f14"/></dir><file name="Block.php" hash="d641f3d6a76d9186f44dae801d8094fc"/><dir name="Page"><file name="Collection.php" hash="c6ad6050fb8c4163a438698e1bb2cd0a"/><file name="Service.php" hash="ee4af8837bfd0333f48aa9d1475eea28"/></dir><file name="Page.php" hash="af4b60e4531be743407d0f6c36f5b2dd"/></dir><dir name="Template"><file name="Filter.php" hash="ea84ea91afc7c16077e72ac41a17e7d3"/></dir><dir name="Wysiwyg"><file name="Config.php" hash="a5e8ed87851da04ef8e219cc2b4f6596"/><dir name="Images"><dir name="Storage"><file name="Collection.php" hash="3fbb9096f505cf63a7a54f7f67fa3095"/></dir><file name="Storage.php" hash="1ddce482989fd0b9244845f903f2270c"/></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="0e7e12bc4babef09e69e7467cb65a108"/><file name="PageController.php" hash="55524ed778a003db6067c75ded5c7516"/></dir><dir name="data"><dir name="cms_setup"><file name="data-install-1.6.0.0.php" hash="fa64f4284e2bdbda37b03a586787eadf"/><file name="data-upgrade-1.6.0.0.0-1.6.0.0.1.php" hash="b3b6fa8bef11edfc71f459e7873b6268"/><file name="data-upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="2de01ad853f4243be77e6a8b6953870d"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="fe1b8ff7eebe920ed8ab2adc1eb0c7ea"/><file name="config.xml" hash="57993187979be0c04798d298a31fafd7"/><file name="system.xml" hash="df2b1f760a8f78b9f43a1ec7d05eea13"/><file name="widget.xml" hash="6c29f20e2b3267e154cba1fb4cccfb82"/></dir><dir name="sql"><dir name="cms_setup"><file name="install-1.6.0.0.php" hash="5669050d7b7e3b78e466fcd832eb66ab"/><file name="mysql4-install-0.7.0.php" hash="e7c388928acdec38b1146c1ea6482ad6"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="8199f7126a7a23e3fcd3010c212b86cb"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="2809caa9a092d89fc11e22504bb149be"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="e26c67326979cee3f22ead8e4a330ac2"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="971bb950e4533dc2fbfdb3651062bae8"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="ecf73f12a15a4c76b4b0c184b2815e41"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="c27a9ac81e7664b8555f369eb73c00ba"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="1d526c35029e9ccd1358bfb79ba85219"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="f7c8cad8181dce1db0ff749bb2a1f1c3"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="1a877f21e0adb5d14696f155d744cf3e"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="772f6217e2477aa7c7f6096654c08fc3"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="3533979da1385e39faff4bbde8179e24"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="be1f73f82e59a420e0a74401a0fca80b"/></dir></dir></dir><dir name="ConfigurableSwatches"><dir name="Block"><dir name="Catalog"><dir name="Layer"><dir name="State"><file name="Swatch.php" hash="ba2d565918d86b78d018bf2252ce107f"/></dir></dir><dir name="Media"><dir name="Js"><file name="Abstract.php" hash="65d13549eff5aed01e7de5fbd1dae86a"/><file name="List.php" hash="5d1bf59d2c66986f88516c17e578843d"/><file name="Product.php" hash="0e01cd15f0d717b0ed2db9a5c63a5d8b"/></dir></dir><dir name="Product"><dir name="List"><file name="Price.php" hash="1274be29931b6896545f142fc32fa5dd"/></dir><dir name="View"><dir name="Type"><dir name="Configurable"><file name="Swatches.php" hash="ca8cde3ec6ecba0f802a4be0a95b2720"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="83667ceddcda8538e54503027669e31b"/><dir name="List"><file name="Price.php" hash="c6597c6257ea1be6bd0c33e79cbdb21e"/></dir><file name="Mediafallback.php" hash="a4c9b34b6c02f24f5f879dfdcf431ee8"/><file name="Productimg.php" hash="7c45bc60904625048daebe1ae6ee3426"/><file name="Productlist.php" hash="485ac59635fa6338bb6047899ce210b6"/><file name="Swatchdimensions.php" hash="5d9b2d9c5cb9db5eee4b3a43d11c940d"/></dir><dir name="Model"><file name="Observer.php" hash="21a8192931a3a8c5a58e64b86a1a16b0"/><dir name="Resource"><dir name="Catalog"><dir name="Product"><dir name="Attribute"><dir name="Super"><file name="Collection.php" hash="19e2652eebbc5781ec5a5200ff21cf88"/></dir></dir><dir name="Type"><dir name="Configurable"><dir name="Product"><file name="Collection.php" hash="7ee76f04040a166ff09c9f49057916cf"/></dir></dir><file name="Configurable.php" hash="e240a0d73107c1a05bcd2f2c717b6305"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Catalog"><dir name="Product"><dir name="Configattribute"><file name="Select.php" hash="c1307cb449fcfc2b28405c32ac1be385"/></dir><file name="Configattribute.php" hash="36770f92cc2f60edf324faa1f7c26f0b"/></dir></dir></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="520821e755cb0713359c9d5e41e9b793"/><file name="config.xml" hash="34c0ad0df08a9ccdbb358d7d46778cf8"/><file name="jstranslator.xml" hash="6c0bfe8d32613e25cd6e81bf40e2eb52"/><file name="system.xml" hash="e06ba414a420bfbc067f36f2724bc147"/></dir></dir><dir name="Connect"><dir name="Block"><dir name="Adminhtml"><dir name="Extension"><dir name="Custom"><dir name="Edit"><file name="Form.php" hash="d789b9e5f5b5be54256d54c2067a7495"/><dir name="Tab"><file name="Abstract.php" hash="faa6ebfa9a24b2726091a7079e32b2af"/><file name="Authors.php" hash="18e44b9c37050798bc44e7bebefe6b79"/><file name="Contents.php" hash="a69e88be8f99a4dfdc42d1d8a5cfe64c"/><file name="Depends.php" hash="2f4c09428ffbafc3c976394e94a013ee"/><file name="Grid.php" hash="ff77b7a1539670805534f87ae2ef4a93"/><file name="Load.php" hash="1e51f328e913bbcb0a08feed4d1fdfc1"/><file name="Local.php" hash="2d3289cfa670c6ed650344225ad9175a"/><file name="Package.php" hash="e9d0265bb0a008a6c36cc760ceec0386"/><file name="Release.php" hash="b7f347176161922003596b1819dc0027"/></dir><file name="Tabs.php" hash="b27a5ab996909088f5d914598ffd5e22"/></dir><file name="Edit.php" hash="c7861675784fbb52b833e3dbe0f480fa"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="08cf5672c1c0b67a213ba6ace2a58107"/></dir><dir name="Model"><dir name="Extension"><file name="Collection.php" hash="8a067c24e32d6ce8ea9d8a5968a728f7"/></dir><file name="Extension.php" hash="816868c3415ddd41f45e409501f6c7dc"/><file name="Session.php" hash="5440476ad3ef3f7c3c2230ae1ab28ea8"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Extension"><file name="CustomController.php" hash="f33eead77dce7b537894d8b16226c5f2"/><file name="LocalController.php" hash="d930aaed8a7b773573b59e8bb442ddf6"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="101c7900791af6e5ee9c95da47c483f1"/><file name="config.xml" hash="fe2f20c5ab7f316d5c8148ff72008105"/></dir></dir><dir name="Contacts"><dir name="Helper"><file name="Data.php" hash="1a738165172917c879f9ac141c11b9e1"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Backend"><file name="Links.php" hash="ba1b3017172093f46465a105ad2996a2"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="bf03d63562bb14bc90fed7f19e0b7f30"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2cedca70a58666ac2347bbe3f9bdafd0"/><file name="config.xml" hash="5c00f20bddf8f55411db826d7d613921"/><file name="system.xml" hash="4de5af82897ea61d65abc342179e27f0"/></dir><dir name="sql"><dir name="contacts_setup"><file name="install-1.6.0.0.php" hash="13f3139c5258cd52688763b6b9dd99b0"/><file name="mysql4-install-0.7.1.php" hash="94a59176972576cb435ea6505e08636f"/><file name="mysql4-install-0.8.0.php" hash="894c4d3fda75ee5ff0bad394ef03ae15"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="f21132d7a6189d17610d76954ba3e6f8"/></dir></dir></dir><dir name="Core"><dir name="Block"><file name="Abstract.php" hash="60ab25109ee03a2e80dcd9c223b7a4c0"/><file name="Flush.php" hash="689a5e3eb946bcb0d761dfbc1ef737d4"/><dir name="Html"><file name="Calendar.php" hash="6159aac3f3bcfbb50f6292f8426128b5"/><file name="Date.php" hash="44aa2b30529c837699f0302d3f5a129e"/><file name="Link.php" hash="c0586fbede4941f473fb0d9b4199eabb"/><file name="Select.php" hash="3a00a83d4fcc827a19050989db504111"/></dir><file name="Messages.php" hash="81e21fc3d8782d4ddb9f82847f79f78d"/><file name="Profiler.php" hash="768c063dfbf1fd40e5d1472fe3f77884"/><dir name="Store"><file name="Switcher.php" hash="81c614c6aaa95f2b016351aa60a6565c"/></dir><dir name="Template"><file name="Facade.php" hash="66b97c587f08c3312a3a7e902d012d25"/><file name="Smarty.php" hash="726d82c94a6e6aca2b2ecc3a4abb2ce2"/><file name="Zend.php" hash="62cca867dd890b50e95988c0f863861c"/></dir><file name="Template.php" hash="e9011e2cee5cee76db541491dfc871fa"/><dir name="Text"><dir name="List"><file name="Item.php" hash="be4927dd33ac2147f6bbee57c4d9ce63"/><file name="Link.php" hash="8935c490d0b2cfea4147236707135178"/></dir><file name="List.php" hash="0415c60e89ee20a9b164303625630320"/><dir name="Tag"><dir name="Css"><file name="Admin.php" hash="bd031a45ce2d6071fcaa9d6c68c16201"/></dir><file name="Css.php" hash="871935fa964adbf99609e014e60d4ddd"/><file name="Debug.php" hash="36f5331bdcb23703d33418c423abc5ae"/><file name="Js.php" hash="659e91e2758e5e5582a42188e8671f59"/><file name="Meta.php" hash="cee17b0e3efeb8cd34c4f7f34d191789"/></dir><file name="Tag.php" hash="09b53ed3fe7f8730140f85ef49d8ba6e"/></dir><file name="Text.php" hash="5dd0190a290ba9314143284a465f3783"/></dir><dir name="Controller"><dir name="Front"><file name="Action.php" hash="0bd3f2b0428b65fec0b20d3260624a4c"/><file name="Router.php" hash="f4a1e85ed9ceff4df31de9fc3925b749"/></dir><dir name="Request"><file name="Http.php" hash="af9331e309ad5a600e37f45f456b85ea"/></dir><dir name="Response"><file name="Http.php" hash="b4e08d0cf4f3958fea43e98d23e921a3"/></dir><dir name="Varien"><file name="Action.php" hash="89b97e5ebc240a83f5d37a95fb0e269b"/><file name="Exception.php" hash="a798a1e14cf080320fd8ff1c61b7c0ce"/><file name="Front.php" hash="fa826d6cb39da808d9f2abdb6c4a3619"/><dir name="Router"><file name="Abstract.php" hash="9b7dbb6f0025291498471f3df80a1775"/><file name="Admin.php" hash="e2bfb79df9e269912795b699a2cbc57c"/><file name="Default.php" hash="4af9b582bf8c1d58a787c1b0fd814296"/><file name="Standard.php" hash="e270230e4ab92d50e975c49774ef57b2"/></dir></dir></dir><file name="Exception.php" hash="e24ff5a61dfb253617d88752d7035dae"/><dir name="Helper"><file name="Abstract.php" hash="8e71f2a30d98a6a7e9bdfa3d473679ed"/><file name="Array.php" hash="484a0a74a7f9e3c08c3a4b73f7337ac5"/><file name="Cookie.php" hash="7c6e78a4bb52f8a2e8cd72c611c3a607"/><file name="Data.php" hash="ef93ca79009474e6b8d935fdd7f03c46"/><dir name="File"><dir name="Storage"><file name="Database.php" hash="ad54c841a0cb8f9a6c85923fd70899d7"/></dir><file name="Storage.php" hash="8f02a3f236314fceb25ab16c5d47f2f6"/></dir><file name="Hint.php" hash="694fd4bbddbaacdd56bd07683802a234"/><file name="Http.php" hash="a63b38419324891ec908414714758d00"/><file name="Js.php" hash="be84944e4f41c399d10b154b8a130a81"/><file name="String.php" hash="30c8bed45c799cf6fdee9d34f699f472"/><file name="Translate.php" hash="a6dd08880eb8f27ef543d93ea532fff2"/><file name="UnserializeArray.php" hash="d5506fe8abd8794aaa7e4ad23821bce7"/><dir name="Url"><file name="Rewrite.php" hash="97e46be2318d6a82d40e217f234663d6"/></dir><file name="Url.php" hash="9f8fc179fc4eb191c17041ddca1ce8a1"/></dir><dir name="Model"><file name="Abstract.php" hash="3ebc995256ad69f924819f96e401b60f"/><dir name="App"><file name="Area.php" hash="6c814d69b0066a826869f69841e0b287"/><file name="Emulation.php" hash="218411722dbc2925f6afd70c4c493cb7"/></dir><file name="App.php" hash="c7d73ebf537565a7293a88ece6ea7613"/><file name="Cache.php" hash="00e7b0a35d49e3774f39b4c9811017da"/><file name="Calculator.php" hash="7903aee2fa175e91615c702870866b9f"/><dir name="Config"><file name="Base.php" hash="95d6606f6dc37e645b9bf5d95f860dac"/><file name="Data.php" hash="b002587f1ecdf2ddced2371c44591eb0"/><file name="Element.php" hash="070129342aea34a54ba3cc99052d4075"/><file name="Options.php" hash="a2afec98dfdde676d372aab35fc1d0b3"/><file name="System.php" hash="e44dcb546c68d06df2e58d135030a140"/></dir><file name="Config.php" hash="c0aac670427c25d85f8667a47ea9eb63"/><file name="Convert.php" hash="96387227fa5be3cff23e39a345234b75"/><file name="Cookie.php" hash="cc5c60b0a34494b472adcb4197286026"/><file name="Date.php" hash="1f7628558283dc16fc637116fc3df677"/><dir name="Design"><file name="Config.php" hash="93276cf40f2f17108cb16e6feb0fb674"/><file name="Fallback.php" hash="5484111090937874c9989a2df61a13d8"/><file name="Package.php" hash="267df9446f26ba8a64cb2c04c9f7b20d"/><dir name="Source"><file name="Apply.php" hash="232aac8a7ca16ed044f1d88d8ece4775"/><file name="Design.php" hash="b594cf0c90f77d1eab9947667024a6b3"/></dir></dir><file name="Design.php" hash="edf9897c28bb0697addc9050785b1389"/><file name="Domainpolicy.php" hash="80272f0001a2360486342d53df6a7890"/><dir name="Email"><file name="Info.php" hash="b928f262cef6543836df610a9ddb81d5"/><file name="Queue.php" hash="faa403ad5e67f15b7e76a702a72c787f"/><dir name="Template"><file name="Abstract.php" hash="8f8c124b78d71d3757fb7439d06ed229"/><file name="Filter.php" hash="5b30e3fd74c056d97ba00b49f3a7691b"/><file name="Mailer.php" hash="14660ee8eeee2b300b46a01392c35712"/></dir><file name="Template.php" hash="5ee9291da1cb0bfcf71d14430777d5ae"/><file name="Transport.php" hash="46a8e4e2e504fc31a034f41bd05af5ca"/></dir><file name="Email.php" hash="e31ab1cef8d2dbaf9c9e02239774c039"/><file name="Encryption.php" hash="19930c4f9ce2b59dff7bf8e6ebcb9fc4"/><file name="Factory.php" hash="1def8ecf557dd80c27bd8b9ae0389aa0"/><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="0f4742c51ad478f62623ce0ff36c02b7"/><dir name="Database"><file name="Abstract.php" hash="9558ea6318d43c989527c5c6781427d9"/></dir><file name="Database.php" hash="c8cd146d38f94cb1a34aa7ba4807e9d5"/><dir name="Directory"><file name="Database.php" hash="59a04f3cc135f69cc177d7713ee44da5"/></dir><file name="File.php" hash="33253411661b819e14dd8ffcbf68b991"/><file name="Flag.php" hash="36cd58ed02c91be1d8d6e163a6a37eaf"/></dir><file name="Storage.php" hash="29f0f2b03940992772d6d575742eac8b"/><file name="Uploader.php" hash="ac91eabcb578a50962258f0a1f684472"/><dir name="Validator"><file name="AvailablePath.php" hash="ec8d101e319bf09e3514236868d9fe96"/><file name="Image.php" hash="fed721fed352dcf04bae8d86d64c5e38"/><file name="NotProtectedExtension.php" hash="2a5bc90d074468f322ec80c5f22ff994"/></dir></dir><file name="Flag.php" hash="7dfd86cc88faaecb61270b06a8949afe"/><dir name="Input"><dir name="Filter"><file name="MaliciousCode.php" hash="45d2eba5b5367dd11cb343c3d95b2a0f"/></dir><file name="Filter.php" hash="9a705f56a3b458781ed1d0e08eb6d9de"/></dir><file name="Language.php" hash="5553b1a3996e214ee04bb873d2e496a2"/><dir name="Layout"><file name="Data.php" hash="ad8e232f9bfbcb6a2597762a4794ef59"/><file name="Element.php" hash="f763346da15b317cee92c02f57a37292"/><file name="Update.php" hash="d6b3c449d3e49dabc4087c36d083fa55"/></dir><file name="Layout.php" hash="f0496b8ddcef27367d8c492ed398a506"/><dir name="Locale"><file name="Config.php" hash="f38c5dec6e40442e75cac2587838acba"/></dir><file name="Locale.php" hash="8501f332360a8052748e3b25d1db656a"/><dir name="Log"><file name="Adapter.php" hash="16e93511497b13a8e07e4d517225ed0c"/></dir><file name="Logger.php" hash="beb95c8bf5b8505b8104278d3b9958a5"/><dir name="Magento"><dir name="Api"><file name="V2.php" hash="990a2e9e5813e05c5d1add95e22148a6"/></dir><file name="Api.php" hash="6fc47bad41f25c86614e3339b6171c4b"/></dir><dir name="Message"><file name="Abstract.php" hash="0b916894d2dc70d6ce62d46921e33d37"/><file name="Collection.php" hash="344cf87be807bf3d3824af6aca2bb9e3"/><file name="Error.php" hash="403f98d2d9612549c6f6258fa10a8d17"/><file name="Notice.php" hash="5d9e6c832be4e1bef81ad8081f75bc43"/><file name="Success.php" hash="66438b0c9cff77eb73ff5ff315df52f4"/><file name="Warning.php" hash="aafb26c475337e687ff1dfeb005edcaa"/></dir><file name="Message.php" hash="85d7966c908e150ac1e8fc41244f245a"/><dir name="Mysql4"><file name="Abstract.php" hash="44d0b31e3085e15ca2b3b0f9d0be2c5c"/><file name="Cache.php" hash="535e51f36277a7df2d30b9d2d6601b3c"/><dir name="Collection"><file name="Abstract.php" hash="4a98bfc00bea6a5da2fc5bf3609e6433"/></dir><dir name="Config"><dir name="Data"><file name="Collection.php" hash="4ef79294f6f55c6c2722abfb7ed34706"/></dir><file name="Data.php" hash="f53c79280bc295051fa7b3860cfea9ae"/></dir><file name="Config.php" hash="a42970610f64863e0097a58b9e6cc23b"/><dir name="Design"><file name="Collection.php" hash="743cd2d296bb161ecc98616e57a05d12"/><dir name="Package"><file name="Collection.php" hash="b0e13eba451dcbc84e59b3c1ba879b23"/></dir><dir name="Theme"><file name="Collection.php" hash="d15267e5e6c26e9e59a9c4be4735986e"/></dir></dir><file name="Design.php" hash="eda39942885b6a2679aa1ef3f41ea025"/><dir name="Email"><dir name="Template"><file name="Collection.php" hash="4f591b6e7817ed5fe9a06d1bbf77acf6"/></dir><file name="Template.php" hash="3ff3b156f0cc0cb243a1b09b74673339"/></dir><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="3922d04eb1e885ba9ee02df7cc9a6408"/><file name="Database.php" hash="c60d8d1728e449fac71590330def8f94"/><dir name="Directory"><file name="Database.php" hash="4ce089a2e5594faf2a7cb6ea88944dd1"/></dir><file name="File.php" hash="2072a576162d3e7d4b2d17dfff5c647f"/></dir></dir><file name="Flag.php" hash="a0a11d34b0b0e100b96fc11c9c975a1f"/><dir name="Language"><file name="Collection.php" hash="58144f7d71289903e929638fc4fc5f1d"/></dir><file name="Language.php" hash="aced85d1d84667357d79ebb0fb8bc3b8"/><file name="Layout.php" hash="57bc0dbe1d31bb305e4660759025901b"/><file name="Resource.php" hash="c408f0d94d0cf7c85b60b281665c7444"/><file name="Session.php" hash="2a829f916eb8f50f7a63b670ca399bf2"/><dir name="Store"><file name="Collection.php" hash="ee4457bf62e4b2e3e7614558cf2f0cb7"/><dir name="Group"><file name="Collection.php" hash="e78c87707665daf3261d0e61aa003175"/></dir><file name="Group.php" hash="2f704ed0988128cc94aa579c23b40195"/></dir><file name="Store.php" hash="b9ec990140144ae2b4ff4b1b4357a276"/><dir name="Translate"><file name="String.php" hash="2550beff52f20647c9070a521b177d81"/></dir><file name="Translate.php" hash="2bae6bc9d6d6f9b54d1e74e3ef541620"/><dir name="Url"><dir name="Rewrite"><file name="Collection.php" hash="618b2b7ac1893631af1c96381be8d6e2"/></dir><file name="Rewrite.php" hash="f0847e55d9ab40a714791c1866102915"/></dir><dir name="Variable"><file name="Collection.php" hash="8c6cf80f822398f16ddcb1f700e5b97a"/></dir><file name="Variable.php" hash="e3412c25b10a5e79c59e90f7fe817ce3"/><dir name="Website"><file name="Collection.php" hash="34999e0a76945a915346632845961062"/></dir><file name="Website.php" hash="a6457ca65b822869a2c42abab954ba12"/></dir><file name="Observer.php" hash="7a1f30833ecd016885791a9df66ba83e"/><dir name="Resource"><file name="Abstract.php" hash="694793a99cc08f415b84aa6f87d3b080"/><file name="Cache.php" hash="d421e47284b76a6d0034a55954354601"/><dir name="Config"><dir name="Data"><file name="Collection.php" hash="aa72268f5dcd2cb27a2e9583bd9a7b97"/></dir><file name="Data.php" hash="6f5b1ffa861eb1a771b650e55393b8d2"/></dir><file name="Config.php" hash="b609a605366bda0d9b77fb0b4da8f680"/><dir name="Db"><file name="Abstract.php" hash="2aa23ed3e3cfbb4f1ee504b1b080dc93"/><dir name="Collection"><file name="Abstract.php" hash="856ffddfc4b7eef7e653fc9f4ed1cc12"/></dir></dir><dir name="Design"><file name="Collection.php" hash="9eda836bfcfc20bd10d992cff0f42dee"/><dir name="Package"><file name="Collection.php" hash="71080e12d259608667ca14694fc06786"/></dir></dir><file name="Design.php" hash="ab67c437c1fb6b21e174271b5eea4795"/><dir name="Email"><dir name="Queue"><file name="Collection.php" hash="dc99090438f9d3da4eafdd6289b0e593"/></dir><file name="Queue.php" hash="e6ff94522082f76abd83abeede4350c4"/><dir name="Template"><file name="Collection.php" hash="74ff7fee4831faeabb215e745ea2c5d5"/></dir><file name="Template.php" hash="e24b6c1aa4117729b9e1fef8ce470df1"/></dir><dir name="Entity"><file name="Abstract.php" hash="fbab338c7741fac0f55ee32753eabb31"/><file name="Table.php" hash="82ccdee4411353933aa056b40219c66a"/></dir><dir name="File"><dir name="Storage"><file name="Abstract.php" hash="63f9930772d7d6218a97eba4ef2e51e5"/><file name="Database.php" hash="9f8d3d2ae031cf910550022e48e04f24"/><dir name="Directory"><file name="Database.php" hash="7fd49ee18d156fc2cb5322497f066d8e"/></dir><file name="File.php" hash="db44e3c71d0a7ed03a1f98772fee81a1"/></dir></dir><file name="Flag.php" hash="fd7d58c0720668e089e1721675309e11"/><dir name="Helper"><file name="Abstract.php" hash="7f7d5923b0d30b78b5bb09101c6fa45d"/><file name="Mysql4.php" hash="9b7abcaf9407b0cfd54878aac2dc4a71"/></dir><file name="Iterator.php" hash="87812d0f3cc7c2aa3ad880845a9d81cb"/><dir name="Language"><file name="Collection.php" hash="a94b4d950521edf293306f2ce3d1f2e3"/></dir><file name="Language.php" hash="1a8abe38849f32cf206d94908d0bb157"/><file name="Layout.php" hash="eceec3e6ab5a55a7cdbcc9ed830cd9d8"/><file name="Resource.php" hash="5dd772aa7bd15d23902ec45c73a6e757"/><file name="Session.php" hash="f6113f0ded8c6c1ac47a3d3ea30a5d05"/><dir name="Setup"><dir name="Query"><file name="Modifier.php" hash="441f79117cff4d7d6bc7e1bf3af0534d"/></dir></dir><file name="Setup.php" hash="af2e8140844cf09135c7270cb6cc57b6"/><dir name="Store"><file name="Collection.php" hash="77e38160ee990c0ef701635da0727f27"/><dir name="Group"><file name="Collection.php" hash="69ef898295bf51476f85350909a30dbb"/></dir><file name="Group.php" hash="aadd4f4301afaa93d49cb98cd6a31a27"/></dir><file name="Store.php" hash="8deab7031d5538151a02b5a7b27b4de1"/><file name="Transaction.php" hash="304008e754044346662a2763add16495"/><dir name="Translate"><file name="String.php" hash="14389d4db4ba5795ccfbe923b876fd7d"/></dir><file name="Translate.php" hash="6717d307f1747093eaea31225aa18935"/><dir name="Type"><file name="Abstract.php" hash="688b26e10a67f4484131cdf9de51557b"/><dir name="Db"><dir name="Mysqli"><file name="Setup.php" hash="8a5f3235eb45f511db2b0e14ca7bac3d"/></dir><file name="Mysqli.php" hash="6459b80b973a0944cba2619a173aa895"/><dir name="Pdo"><file name="Mysql.php" hash="747a0822bd08cb3f0b2d1526c6dfeccf"/></dir></dir><file name="Db.php" hash="b8eb52fe758a85e093f2e7694d8663ca"/></dir><dir name="Url"><dir name="Rewrite"><file name="Collection.php" hash="683f36f30c844c054f01be8ff310230e"/></dir><file name="Rewrite.php" hash="fecead19766cf14766a558ea79f5a67d"/></dir><dir name="Variable"><file name="Collection.php" hash="5bc6509f458ccad5ff27fc03f35aa9d4"/></dir><file name="Variable.php" hash="75b3c3b20e1bfd1a0f4017b7e64ec1ce"/><dir name="Website"><file name="Collection.php" hash="1c353c8ed5e653bf799a81896da8a645"/></dir><file name="Website.php" hash="e385a6d19f6d87c1e8c0ac0e31dbf471"/></dir><file name="Resource.php" hash="a97d261d1638b03f3a19ba7947c0f03e"/><dir name="Session"><dir name="Abstract"><file name="Varien.php" hash="843fc4aca7d9b4aea7218584ab86b021"/><file name="Zend.php" hash="48602c6c721a1419a16291602bbc6e6b"/></dir><file name="Abstract.php" hash="0fd88d73bd06001281b3f4cd3185f855"/><file name="Exception.php" hash="1419325851e05e56085a80360993ec7a"/></dir><file name="Session.php" hash="e2c1d6077d37b1fd5a648b1f7835c3e7"/><dir name="Source"><dir name="Email"><file name="Variables.php" hash="2d6e88ba25d3321a5af0d7fde74569c3"/></dir></dir><dir name="Store"><dir name="Api"><file name="V2.php" hash="23fce9936bfde4eddf3bc042da49c704"/></dir><file name="Api.php" hash="e26d51518a7bcd09ed5da2fac58b1b4f"/><file name="Exception.php" hash="59d2bd50b218ccf5f217e8f4f87db294"/><file name="Group.php" hash="685ea0a277d23ec5e17d44728deef16a"/><file name="Observer.php" hash="beed858da489fece24868586ae67624b"/></dir><file name="Store.php" hash="f895e6a4d4fc82542c471c2c276ff215"/><file name="Template.php" hash="e78ec82cbb982ce5e06e6937e8616ae0"/><dir name="Translate"><file name="Expr.php" hash="5e7825d1ad5d680fae8d2cb2e3e56a3f"/><file name="Inline.php" hash="c46e75758767785fcbf90429f3b27f7c"/><file name="String.php" hash="ff5d4c7d438f42a96481bcf50dcfe726"/></dir><file name="Translate.php" hash="40815cb1b455d9b11ee7bc5b209f7883"/><dir name="Url"><dir name="Rewrite"><file name="Interface.php" hash="9c5c19dbddac570166efa99fe23636eb"/><file name="Request.php" hash="1d981ff6255931373ab21012ef728a43"/></dir><file name="Rewrite.php" hash="65284f3fd21eab368bb60e9fcef41980"/><file name="Validator.php" hash="c701ffe374838bcc86a02daeb531716c"/></dir><file name="Url.php" hash="8d74e01ecc551a7fb4170fce4aab07d2"/><dir name="Variable"><file name="Config.php" hash="2e89c7e08f594c235ee7c54d9d8ecd04"/><file name="Observer.php" hash="abeffe7406776babb339ff8530c97bcb"/></dir><file name="Variable.php" hash="6b550791573110761a25dd7a014bd0ea"/><file name="Website.php" hash="159a68fc3084c56aa44b77214f6d22be"/></dir><dir name="controllers"><file name="AjaxController.php" hash="0fdf2d77ca172a26f52a058d9f4a7744"/><file name="IndexController.php" hash="bf938059a97c970206756db4f00c9584"/></dir><dir name="etc"><file name="api.xml" hash="6bbb100de305337ddec14d20e0cfdf70"/><file name="config.xml" hash="21bdbe591bc2a77e460fdfecfc12ffca"/><file name="jstranslator.xml" hash="75e1f15bd4333b43b2b4ed1f8e8d5584"/><file name="system.xml" hash="dfb91fb13c9b137c2d2314b6416f26eb"/><file name="wsdl.xml" hash="79501d6ccf39846b5dd551e85880dcb8"/><file name="wsi.xml" hash="31fa195d527181c946019bcd44d819d6"/></dir><file name="functions.php" hash="e720e89444d851040333f1cd71fc72f5"/><dir name="sql"><dir name="core_setup"><file name="install-1.6.0.0.php" hash="c69f3177bd988dcf47af832d0f30d867"/><file name="mysql4-data-upgrade-1.6.0.2-1.6.0.3.php" hash="fb24c3e570816db655406d337f606568"/><file name="mysql4-install-0.7.0.php" hash="d7fd9846b6460fc316c7e16c6728dedc"/><file name="mysql4-install-0.8.0.php" hash="cdee3cc30f18e8867a1a2804cdd84d03"/><file name="mysql4-upgrade-0.6.26-0.7.0.php" hash="345976f0456345f682763fac7316cc55"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="32fefbbffd4cecd44bb883383cfd9371"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="66ebb46fb35c1af148779933ef65fca8"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="c5412377ad835880e87f4732a3b6714a"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="0c21a8b350aeef94116668aca96d4ded"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="9e245ebd96215aae487df642a4244006"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="67525f1672117b14999c40df9b4ffe44"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="8aa20d72ba29c2c4c036a74f5da81354"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="60cfbe9a16cea4084149fbb60aadfe33"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="4b5bfe8f064af5094380fd0c6f4230b8"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="5e889e1e36552f97c6b47ccacc037878"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="e7b405393ee923ce77b4fc73fe2c49e5"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="e5177617bf9ff7cad413ebadbaa36c2e"/><file name="mysql4-upgrade-0.8.12-0.8.13.php" hash="58d94dcd86435d9a9678110d7380e9e6"/><file name="mysql4-upgrade-0.8.13-0.8.14.php" hash="4ef7145c13ab85b257e149ee4ce42aae"/><file name="mysql4-upgrade-0.8.14-0.8.15.php" hash="11462279aad7a312d138871c1232bc4c"/><file name="mysql4-upgrade-0.8.15-0.8.16.php" hash="b68084f2461e13da31d10ffb69b6c427"/><file name="mysql4-upgrade-0.8.16-0.8.17.php" hash="cc5a96f1ec35576e5cc04d2f3c8fcdbe"/><file name="mysql4-upgrade-0.8.17-0.8.18.php" hash="a049195d8b49c8fac0b422b55444f072"/><file name="mysql4-upgrade-0.8.18-0.8.19.php" hash="5c1e0d78fe374bc179fac4e0a201024c"/><file name="mysql4-upgrade-0.8.19-0.8.20.php" hash="57188799f2c9aa98b2db3e9cc88f57ca"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="5c4c948191730c5aaa46a9c0a4d529af"/><file name="mysql4-upgrade-0.8.20-0.8.21.php" hash="26306dc6458b0403f1a05bc92447af40"/><file name="mysql4-upgrade-0.8.21-0.8.22.php" hash="1375cdd7860773ed2f80282af9986008"/><file name="mysql4-upgrade-0.8.22-0.8.23.php" hash="96d94946d3d1d8471ff619228407cb7a"/><file name="mysql4-upgrade-0.8.23-0.8.24.php" hash="219d2459c587c5e8a81290c56154e0d6"/><file name="mysql4-upgrade-0.8.24-0.8.25.php" hash="6f1f9c00a382d22bcc220e1b9f3c8905"/><file name="mysql4-upgrade-0.8.25-0.8.26.php" hash="4558c5a6d9be1ca611ac9ca058e4edfb"/><file name="mysql4-upgrade-0.8.26-0.8.27.php" hash="65e15fa502932b633a0c8c828a6334bf"/><file name="mysql4-upgrade-0.8.27-0.8.28.php" hash="19590c1ee41148edfc36fc72965e402b"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="3cc627e59b0ceb3b3016e328c88b829e"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="5a829783619299f2538700da0ae1e123"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="3e314226e8fbaa3bcaf1694faefd8809"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="c2344bc955f3fb823c2926310209c25e"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="9b86798fe5b7fe0cb5cc595874b07501"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="d2bbc20b4f415a188d706abd0f67bb0d"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="6255b0401694107d9c3c67d0a7cb4a6f"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="91433f5df703361ded3d282200923d2d"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="dba0fecbc83001d5c62b114522103050"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="e043db02bb9983863f06f46dac0b78c2"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="1be7d02e33df1abe18f3df4d76063329"/><file name="upgrade-1.6.0.5-1.6.0.6.php" hash="eb7b611019f69996f4963183636b6094"/></dir></dir></dir><dir name="Cron"><file name="Exception.php" hash="7ad70a581e997407204ecec98768cdd5"/><dir name="Helper"><file name="Data.php" hash="a977275822fc9e8de01235a624ba7cc4"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Schedule"><file name="Collection.php" hash="62f2dd629591cebffd75273bdea7c5b7"/></dir><file name="Schedule.php" hash="6ac83aed52b6ae3256a9906a4370a66c"/></dir><file name="Observer.php" hash="3a61f2a4165aadd074686fc4dd6bfeea"/><dir name="Resource"><dir name="Schedule"><file name="Collection.php" hash="a8f6dddabd1265fb4743245ced01230b"/></dir><file name="Schedule.php" hash="33fc20836d2171d9949b73cc50e2d105"/></dir><file name="Schedule.php" hash="97c2856ad13132d2abbb4ad4937dae60"/></dir><dir name="etc"><file name="config.xml" hash="8ea948903301aed5a1117e1ec2b52b7d"/><file name="system.xml" hash="bc4190c5898ffc674bf7ae552b14cc7e"/></dir><dir name="sql"><dir name="cron_setup"><file name="install-1.6.0.0.php" hash="4ac9e29af105f14c9ea6e0565eb21dce"/><file name="mysql4-install-0.7.0.php" hash="3ba830a77c1d985f7a83fe0e008475e9"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="4d5d452d004acae9c2ace046afe0ad92"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="9008bddeb8e836fbb26f0c20aab65fdf"/></dir></dir></dir><dir name="CurrencySymbol"><dir name="Block"><dir name="Adminhtml"><dir name="System"><file name="Currencysymbol.php" hash="f47a77be4420bffac85f7d872e89f102"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="147a5a7af07ed0831da300c3f100c20e"/></dir><dir name="Model"><file name="Observer.php" hash="c6a9f862b406983ac0c3b4667998338b"/><dir name="System"><file name="Currencysymbol.php" hash="f43af0d9441283cb3583dfb25c9c72c2"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="System"><file name="CurrencysymbolController.php" hash="81843fabc7a4edeffb3c66a96f245111"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d406b1181fcc035d9e66f0478c772053"/><file name="config.xml" hash="9b618f0e516ffa912d7d6ba9ec4f7e93"/></dir></dir><dir name="Customer"><dir name="Block"><dir name="Account"><file name="Changeforgotten.php" hash="fced334ff0b4c476c421e8eb61ab898c"/><dir name="Dashboard"><file name="Address.php" hash="08fc3da5ef87ce0f3d3b6a49c6d6b96d"/><file name="Block.php" hash="7ecc346998aa07b344b488a1f68bcf3a"/><file name="Hello.php" hash="1577a3b7e668fb5eba42d771cee2a4df"/><file name="Info.php" hash="a28109d8c9e53d8df9c112fc6456c618"/><file name="Newsletter.php" hash="81eaf17f4451110516d15c1e9060a6df"/><file name="Sidebar.php" hash="78f7c1ecea5c5d84ffc9265ec682112b"/></dir><file name="Dashboard.php" hash="4ea7dc3f67fb46c8de31ac6dde8702a2"/><file name="Forgotpassword.php" hash="0954e6e8365b6f1bed1c8b5cfdb711c0"/><file name="Navigation.php" hash="2bb91a3fca4c66259eab57b299240a30"/><file name="Resetpassword.php" hash="ed4565c138a3ddc81e64fe6dbc84bd0a"/></dir><file name="Account.php" hash="afe508a80c28e23a4ecb1c3c5544a6b0"/><dir name="Address"><file name="Book.php" hash="5729c1d41ac620d29fbd2b7720f64c51"/><file name="Edit.php" hash="3ffd80fd5dfe6540383e8072433c6965"/><dir name="Renderer"><file name="Default.php" hash="fc8079a31280cb3e17e4955f002e9732"/><file name="Interface.php" hash="d66b89c20dd7ea78138f1f959cc0b901"/></dir></dir><dir name="Form"><file name="Edit.php" hash="d53369b67258ffabea416ab39348ae00"/><file name="Login.php" hash="0198cb1a7280263217b6c028c679ce8f"/><file name="Register.php" hash="cc64439d56326d315840b6bf8d50e151"/></dir><file name="Newsletter.php" hash="a1c95a95a4498fc1544da8b9060e85be"/><dir name="Widget"><file name="Abstract.php" hash="9f8810def5e03f41ca7bfbc6d029538f"/><file name="Dob.php" hash="cccffffa3c36c6f37cf7db02dc5e7cc9"/><file name="Gender.php" hash="20a92e9abae465f22df00485388e7ec2"/><file name="Name.php" hash="44e46d85ffc1aadf9584aadefb9a623d"/><file name="Taxvat.php" hash="5b6a1aeb9ea9eabc7a2202464c56e0a5"/></dir></dir><file name="Exception.php" hash="334d5017aa3ad32335b631affbf8b194"/><dir name="Helper"><file name="Address.php" hash="2d3a7d87871f4c022b6f5f531cf1f8ea"/><file name="Data.php" hash="10513c8d44c1f203ac836573cff34b66"/></dir><dir name="Model"><dir name="Address"><file name="Abstract.php" hash="5d9dee72eb717beae28d1922c057a11b"/><dir name="Api"><file name="V2.php" hash="266ad678cd335ba60c1af1da19f22bf9"/></dir><file name="Api.php" hash="a03cc80ec147566fcff37dbf64faab06"/><file name="Config.php" hash="80d39631075023919039fd1c57ba6669"/></dir><file name="Address.php" hash="fdd7f0519a98d5b0254d3fec6f21665c"/><dir name="Api"><file name="Resource.php" hash="a3ca3939facf9676e07572b2e0e2b1b8"/></dir><dir name="Api2"><dir name="Customer"><dir name="Address"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="0c688ce090e3d27195058d7d498dbede"/></dir><dir name="Customer"><file name="V1.php" hash="5234f6e89921abb1805b252a2f191545"/></dir></dir><file name="Rest.php" hash="b8d40fa6226e0a1de076a2dea49e7d8b"/><file name="Validator.php" hash="57a2007eca992a01d27ee93844ef1c83"/></dir><file name="Address.php" hash="aaa3e23cf5369a422c7dc7f60fe988f0"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="5b2113835c16750e3496a5f5fb1f5ae3"/></dir><dir name="Customer"><file name="V1.php" hash="4405dc245188874865c837f9558b3082"/></dir></dir><file name="Rest.php" hash="5ed64554ea1364509e0cf89288c04208"/></dir><file name="Customer.php" hash="bb6e0e4c5c2d5bfc28516547e6e61b64"/></dir><dir name="Attribute"><dir name="Backend"><dir name="Data"><file name="Boolean.php" hash="4ac8df716d7f38367d6dbe49e72052e2"/></dir></dir><dir name="Data"><file name="Abstract.php" hash="1867ecd751e10de5d28f4acf3459b1eb"/><file name="Boolean.php" hash="58e453aa57b80ec5e9372436ebaca1d6"/><file name="Date.php" hash="8452492f198664592e3e7a86aae0d9ef"/><file name="File.php" hash="d28febe339b50dbddaab12ca9b8cca4e"/><file name="Hidden.php" hash="6d33bce9cf131d228af61789be63cef0"/><file name="Image.php" hash="fdc9ced5bcab3f489d4d23db1c145c81"/><file name="Multiline.php" hash="475699822544385ca3dcc69e76fa13ba"/><file name="Multiselect.php" hash="cdc75f0b1ab1ce27dadb82349be079b6"/><file name="Postcode.php" hash="6a5bf54cf10fc54829effc31a63a72a2"/><file name="Select.php" hash="4d3809b46c33a1db0853ff6094d0e834"/><file name="Text.php" hash="fc8c36ddfdf5332a5d992b17a816c318"/><file name="Textarea.php" hash="fcd0ca5818876ddb39402575783eeebf"/></dir><file name="Data.php" hash="be5db892203623727253be6c7b993b88"/></dir><file name="Attribute.php" hash="4c616f072194b568dfa6dbcf2c9a28cd"/><dir name="Config"><file name="Share.php" hash="48d6a459edd906fa4433a8c7eb18bb53"/></dir><dir name="Convert"><dir name="Adapter"><file name="Customer.php" hash="d2eae522d3ca91753fbc3e29ddc1299f"/></dir><dir name="Parser"><file name="Customer.php" hash="beae99d9a77e453b1190adfec0750a3d"/></dir></dir><dir name="Customer"><dir name="Api"><file name="V2.php" hash="aa2436ca33afdaae7bdf096fc511b942"/></dir><file name="Api.php" hash="19f6a519c966b04198379abe62639baf"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="faa9c2539bbf7b7a74b943d00caa708c"/><file name="Password.php" hash="d0393528b65c863a25de9175c9cf0784"/><file name="Shipping.php" hash="b68a9d6f1736be20b4ed6a21a6d0b49a"/><file name="Store.php" hash="2e69bab09b526a69a49a83b3c0cce498"/><file name="Website.php" hash="4334601d447e0fda794cec9dce34da7e"/></dir><dir name="Source"><file name="Group.php" hash="98360127300b5e9809144987e61a0264"/><file name="Store.php" hash="4abe85c31478e7fa194d4c2c98fc66a7"/><file name="Website.php" hash="2618b2a43a90336eec9ca4e84e20c2a5"/></dir></dir></dir><file name="Customer.php" hash="571f6bb2d19fbf673c8f0da5ceccde73"/><dir name="Entity"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Region.php" hash="1e8b5f5d46a5ad344f18f856dbc86a53"/><file name="Street.php" hash="f3eb2077afa392b82939a7d33058ad81"/></dir><file name="Collection.php" hash="d3ec4db3da89f9371c49196ff87d9cab"/><dir name="Source"><file name="Country.php" hash="ac1d2569e723fd3324242a1ab4c05849"/><file name="Region.php" hash="e4e8342efe2fd0b38294f3788e1bcbbc"/></dir></dir><file name="Collection.php" hash="05ddc8ad4046b66ef051b52d44fdd1e6"/></dir><file name="Address.php" hash="9ca25098a2ce67cc50d1f0c0bf492f32"/><dir name="Attribute"><file name="Collection.php" hash="b1bb2d740a7c345c0c46ecafa70167bd"/></dir><file name="Attribute.php" hash="e1b8d57fa9b3d802ac0ad6ff895b98b0"/><dir name="Customer"><file name="Collection.php" hash="c23343549f1e667660861a73fbe3dc19"/></dir><file name="Customer.php" hash="9cd6abf273d7d3699ee02f49569d327e"/><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="ef67e77017f7db0946f21874e3ebc711"/></dir><file name="Attribute.php" hash="618a8aff4746774c556906e2dbb56dc0"/></dir><dir name="Group"><file name="Collection.php" hash="e06ab66c1fc6b016a8cdc6e39fee5ab0"/></dir><file name="Group.php" hash="45fb0fbbe8e357fe6f26ae1cbf31b77f"/><file name="Setup.php" hash="33c38b117ba9aa195bb79504b56ae25c"/><dir name="Wishlist"><file name="Collection.php" hash="354fb025a63f5b3026f690cb4442ab9b"/></dir></dir><file name="Flowpassword.php" hash="aee79bea3f86395824b27d7d6ca93f50"/><file name="Form.php" hash="d5f1aa9224be4aa721771b8fb65e7abf"/><dir name="Group"><dir name="Api"><file name="V2.php" hash="5bdbdfeb06ce9a196eb712fefc9c402b"/></dir><file name="Api.php" hash="6d92e16c176002b84361ac07832bffb6"/></dir><file name="Group.php" hash="7cc8f0dd768aba328ee3564cbfecaf31"/><file name="Observer.php" hash="9758d692c88270f13c25e555ce4346c0"/><dir name="Resource"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Region.php" hash="0d9f0d30f70655765bed01b63d96d9b6"/><file name="Street.php" hash="04a83b26c53aa80ab01c1aafbb796ea1"/></dir><file name="Collection.php" hash="637774f2478002e6ee054df43bcc379b"/><dir name="Source"><file name="Country.php" hash="71a2b37a1748851c0035f809e0bdfe89"/><file name="Region.php" hash="844de0dca956ee491723b7902228fb04"/></dir></dir><file name="Collection.php" hash="36dce3f02858cf7a208cb5e1725aa97e"/></dir><file name="Address.php" hash="9903c920d224421684fb7bd93a7781a5"/><dir name="Attribute"><file name="Collection.php" hash="db7bbf94e78302488fde013cfacd9e98"/></dir><file name="Attribute.php" hash="eb31a55d0a28cffe6bc03e05df1ed514"/><dir name="Customer"><file name="Collection.php" hash="5c3207823fed1f27990d26cf0f8f3d2c"/></dir><file name="Customer.php" hash="78f73dd318200e4c5a07a766d63b7c68"/><dir name="Flowpassword"><file name="Collection.php" hash="ba8c62785415537ac758c04cf37289e7"/></dir><file name="Flowpassword.php" hash="337364917b9f7e2193d08b0518a7b4ad"/><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="d62fab14dc76f758829cef6a810df9d8"/></dir><file name="Attribute.php" hash="d7a7296e899066d4fc01b6f2a56f4db8"/></dir><dir name="Group"><file name="Collection.php" hash="5afd75ae771a976b601f81dafbbcec87"/></dir><file name="Group.php" hash="b7a915449ed7749c86b0ad1ce6ff0585"/><file name="Setup.php" hash="e9702ba3b32f695e2a2d99b31448ce85"/><dir name="Wishlist"><file name="Collection.php" hash="5a0c9faad27c135369581b4c329b3843"/></dir></dir><file name="Session.php" hash="8cda27ad18e3a4a2a6712b064d4684f7"/></dir><dir name="controllers"><file name="AccountController.php" hash="a040da959746ebea9bd0eaae566f9ce8"/><file name="AddressController.php" hash="7aad194cd62fe564653be015222e0081"/><file name="ReviewController.php" hash="508c3a4932ad2b216fc78ff8a701d6f5"/></dir><dir name="data"><dir name="customer_setup"><file name="data-upgrade-1.6.2.0.2-1.6.2.0.3.php" hash="2bc893a5f3d9baf672cf84e8c913567c"/><file name="data-upgrade-1.6.2.0.4-1.6.2.0.5.php" hash="d244bf5a02f26e562324a548a2fbcca5"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="50849c1982934971d289b35dc3ecd0a4"/><file name="api.xml" hash="3ea62419ec25f6ad40d443166c628740"/><file name="api2.xml" hash="47711ce85c8d796ed91d265c6d460469"/><file name="config.xml" hash="8d959638177739e254e8ba7260a80368"/><file name="system.xml" hash="1e1e4f8aea51ef3c6e6b6171ce76db40"/><file name="wsdl.xml" hash="b31ebf1de4a58469781b383f455991f5"/><file name="wsi.xml" hash="4c81aee30c525677be5c38e078b98408"/></dir><dir name="sql"><dir name="customer_setup"><file name="install-1.6.0.0.php" hash="c6722d28dacef27ab29b643f758ef193"/><file name="mysql4-data-upgrade-1.4.0.0.11-1.4.0.0.12.php" hash="ef5abe9941b9b1a0c895f5fa2b1f0aea"/><file name="mysql4-data-upgrade-1.4.0.0.13-1.4.0.0.14.php" hash="d44a1e3efa2cd3fc388c207917821570"/><file name="mysql4-data-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="2c91627628c1339f5cebf10890a38f2d"/><file name="mysql4-data-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="e49b632aca5e28a67293c325126a0409"/><file name="mysql4-install-0.7.0.php" hash="d8dcd4d5094da2f12e692ece42d88127"/><file name="mysql4-install-0.8.0.php" hash="0d3fbb7ed5c62178e222485988d9e7b5"/><file name="mysql4-install-1.4.0.0.0.php" hash="138bdb5365d60a33117ac3478aa9f85f"/><file name="mysql4-upgrade-0.6.1-0.7.0.php" hash="7c1fd0262a63c8ff50b79e001083f7a1"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="363e9b57cd3696b36f431f085752b5d8"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="021c527478a0ff9af0baf7ec3df02f4e"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="2c8c202d1ec6e3c1ae311b7f8e9f3463"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="6f0b05e3e4874f5eaca3a05a8d60b896"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="4628af77d20620d7560e13a6bd669472"/><file name="mysql4-upgrade-0.8.12-1.4.0.0.0.php" hash="36c583e090c0a00072dc6f0bbc63f5ca"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="0e6780ab9ffb88582b6380835eae0995"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="54566539dc7db512ee378323de4bf19b"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="a88dc9d5df61e4f1c35ca05aac6ae861"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="65ba249ca2d34310acecaf58a90c730a"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="faf1b1cc527fded99a6daf08abeb7eb0"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="f4c7bda051fd88c4ddc9dfd2bd561e21"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="2c281af9f5d3c7d765e0e811c737ae95"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="034ba91d9726928771e871b07577b8fb"/><file name="mysql4-upgrade-1.4.0.0.10-1.4.0.0.11.php" hash="8d674f068cc86cb857728b8b6fb08622"/><file name="mysql4-upgrade-1.4.0.0.12-1.4.0.0.13.php" hash="61c185677d57da12a970d22ddb05f05a"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="04f55ef4393d258f5a55e0028a9931f3"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="e637abb3ec729c7d5a823cd7a4aff962"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="c42b6bd2019102e3131ea7f540c50b6d"/><file name="mysql4-upgrade-1.4.0.0.6-1.4.0.0.7.php" hash="2b9caa7eda59e0d4450dedbb36b87cd8"/><file name="mysql4-upgrade-1.4.0.0.7-1.4.0.0.8.php" hash="001e91ba0859756ba7048bae6b38cc1c"/><file name="mysql4-upgrade-1.4.0.0.8-1.4.0.0.9.php" hash="b8786ebb55d6c1e0fc128d0e4da6ab2a"/><file name="mysql4-upgrade-1.4.0.0.9-1.4.0.0.10.php" hash="0b1efc85ae90a8caaefa357e4255ea82"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="e8b9f39275e935992bb92394b8d88a6d"/><file name="mysql4-upgrade-1.6.0.0-1.6.1.0.php" hash="239edb6475a8d43322ee37e6c93430f2"/><file name="upgrade-1.6.1.0-1.6.2.0.php" hash="ff896a7214ac40c54417217d57f8ed0a"/><file name="upgrade-1.6.2.0-1.6.2.0.1.php" hash="b297335d55acecbde135d6df95779463"/><file name="upgrade-1.6.2.0.1-1.6.2.0.2.php" hash="480c316c173021f5b6a3969c732aedf9"/><file name="upgrade-1.6.2.0.3-1.6.2.0.4.php" hash="7c8a6b2ad86df5b8af8fc57bc67d0fe2"/><file name="upgrade-1.6.2.0.4-1.6.2.0.5.php" hash="b9c2b754feef606a2e64651c44820ace"/></dir></dir></dir><dir name="Dataflow"><dir name="Helper"><file name="Data.php" hash="6465cd672c3f3b789f0ce68fe56ca210"/></dir><dir name="Model"><dir name="Batch"><file name="Abstract.php" hash="a72b30a0f7f2dbd2355cc9ab7a065fc0"/><file name="Export.php" hash="2a347c5b937768e63d94a291f4c6ee8c"/><file name="Import.php" hash="8609cf6fe2ec5e47113bfd892475f99c"/><file name="Io.php" hash="3b4e1278ab16b6cfa9abff8507f46063"/></dir><file name="Batch.php" hash="4c44c87c6a834e0f58efd26fed42a2c8"/><dir name="Convert"><dir name="Action"><file name="Abstract.php" hash="2438ed004179ffa108a63d5e2f222236"/><file name="Interface.php" hash="733da76667237922d6d449a3b69ae435"/></dir><file name="Action.php" hash="6cfe1a8b8d52145278b58895236b52be"/><dir name="Adapter"><file name="Abstract.php" hash="58e1fdd534d4f3f76d8fe1d865b60f86"/><dir name="Db"><file name="Table.php" hash="53e10c1ac23116f8c6a6ddbde64a1f9e"/></dir><dir name="Http"><file name="Curl.php" hash="744b8a2b86864abfea92b71725fc8820"/></dir><file name="Http.php" hash="d1ea66edc722b8accd19b0adfbd7d11c"/><file name="Interface.php" hash="11052c6a192dd467f389fe7ac6b84e85"/><file name="Io.php" hash="8c0296ddbbee95bf24aae0bcb78eea80"/><file name="Soap.php" hash="ca3e6862b566aeb5581f4344f3d621f6"/><file name="Std.php" hash="2d58df33c9796d6b046bb20c966054f7"/><dir name="Zend"><file name="Cache.php" hash="fcd406583fd02b7c8be74cc7843e6b95"/><file name="Db.php" hash="a85645a65ced26200c5525f15b8119e0"/></dir></dir><dir name="Container"><file name="Abstract.php" hash="f1802b2e4c92ec8877317fb50111f2c3"/><file name="Collection.php" hash="38380862831c2305259d46abbf41aa43"/><file name="Generic.php" hash="739a1e2be58f1870eda3f31b834a1823"/><file name="Interface.php" hash="fef9bc1ba0f04e432cdff336660ffc20"/></dir><file name="Exception.php" hash="d2d901bbcbf10a28df208dcd1a1980a8"/><dir name="Iterator"><dir name="File"><file name="Csv.php" hash="043ee74f2fceaef1af9170ec825d70b5"/></dir><file name="Http.php" hash="4727281da701bcae4d2f46982db9c980"/><file name="Interface.php" hash="2e6f3b56123eb3cffbc19c548dcfdafe"/></dir><file name="Iterator.php" hash="3a915c5742dcf64bc1f2d91626b9b0ee"/><dir name="Mapper"><file name="Abstract.php" hash="a786dee51483da6557501bf1673fd5d4"/><file name="Column.php" hash="0d247eb378c928e90f80a496b0388730"/><file name="Interface.php" hash="4bbf145346856b2c9f282fa2825f424b"/></dir><dir name="Parser"><file name="Abstract.php" hash="ef292d2447ef56d86ed9534aae6b3fff"/><file name="Csv.php" hash="7ecf34f0a9cf2bf9438e84a49e68c890"/><file name="Interface.php" hash="dadb9f463b43f28640e4708a4d866a50"/><file name="Serialize.php" hash="60e5ce469511bca43d4a89254424e823"/><dir name="Xml"><file name="Excel.php" hash="8ff8502bbf1565b2b25dcc2ff090197c"/></dir></dir><dir name="Profile"><file name="Abstract.php" hash="20b74ec5332d569fc3afc25fd4376f12"/><file name="Collection.php" hash="588af8f423060628544b544013ce1b47"/><file name="Interface.php" hash="ec1304f19b742cbf5229890d2a8fc226"/></dir><file name="Profile.php" hash="8812c4fc43739ace2116ab49c5d47806"/><dir name="Validator"><file name="Abstract.php" hash="c6f104eff1b82659a4d36d4de5eb3891"/><file name="Column.php" hash="76ce0db2dfa4136b77398245390d13f0"/><file name="Dryrun.php" hash="2fa547ec5aecf1a736f9877b00f75848"/><file name="Interface.php" hash="ed4f54c6508ce31a19f449cf527132ae"/></dir></dir><file name="Convert.php" hash="1a118785cfee26e0249652922fb3fa6f"/><file name="Import.php" hash="c4125b22472e8edb07aaf55a499201ee"/><dir name="Mysql4"><dir name="Batch"><file name="Abstract.php" hash="3aa5d4c54262bfbf463b7b2e90e6a0ca"/><file name="Collection.php" hash="9ea3700a10c5e6e85006c9d63a45b4e8"/><file name="Export.php" hash="5df742225ff7f0cb3c2530248a345b28"/><file name="Import.php" hash="fe2b0f2f6fc0bddc67825793ad13afba"/></dir><file name="Batch.php" hash="3803aa35bc8f1772737d21f0d65f6e07"/><file name="Catalogold.php" hash="0e023972193f136cebfde36252fa2c4c"/><dir name="Import"><file name="Collection.php" hash="7722967ae22783fe92f27e55e90de1ff"/></dir><file name="Import.php" hash="eb5d31c548d4eddbf751b208da673050"/><dir name="Profile"><file name="Collection.php" hash="ab4e4ad47794284cba12a444d7f3f495"/><dir name="History"><file name="Collection.php" hash="ee4193e87158ffceee49a1449c7bca99"/></dir><file name="History.php" hash="964aa735b3fd1ba3a06632ca19d28eee"/></dir><file name="Profile.php" hash="94be3bfa9c5f1a175fc6ee5d60e5ee65"/><file name="Session.php" hash="f8795a0c5817f0809c11f19ea5df5cf4"/></dir><dir name="Profile"><file name="History.php" hash="755a5ed8dd4c1b25f237fb1598b82c7d"/></dir><file name="Profile.php" hash="0f50de57e9866953aed96146620ac59f"/><dir name="Resource"><dir name="Batch"><file name="Abstract.php" hash="11746a73dbf367baddc49c98ee4bcd04"/><file name="Collection.php" hash="82529698919888159989a4595e4bdba4"/><file name="Export.php" hash="f41c179fc4ee246cb750f7c8d43df57f"/><file name="Import.php" hash="a0fcb8df641d15a8dd39009544e19447"/></dir><file name="Batch.php" hash="fcc5b78df2ea986e82415fe9e8e246ec"/><dir name="Import"><file name="Collection.php" hash="65eafb61a50696e1f399cd3a2f01030f"/></dir><file name="Import.php" hash="35a2c1acb655ff0c76c330114462fd25"/><dir name="Profile"><file name="Collection.php" hash="baca3a6c70f7ae2717341a6742db7782"/><dir name="History"><file name="Collection.php" hash="f689357486f341ee846696b278221fe3"/></dir><file name="History.php" hash="655b62bbe1d2eb9bbc4fbf34b1a272b2"/></dir><file name="Profile.php" hash="063582cabd6ad164def62f04205cb245"/><file name="Session.php" hash="773fef3cc64d0d4a9d2438125d2f6e6a"/></dir><dir name="Session"><dir name="Adapter"><file name="Http.php" hash="6f3b7442403f2d17c462d0f6ebc6486f"/></dir><dir name="Parser"><file name="Csv.php" hash="222ce10f61da341c9ca849bc2f8145d7"/></dir></dir><file name="Session.php" hash="dd3e356428c1f99f97906eb168dd5f33"/></dir><dir name="data"><dir name="dataflow_setup"><file name="data-install-1.6.0.0.php" hash="e071429f47116a98b169da9819c35640"/></dir></dir><dir name="etc"><file name="config.xml" hash="2e118dec7181a8e54eecd6476d20b1cd"/></dir><dir name="sql"><dir name="dataflow_setup"><file name="install-1.6.0.0.php" hash="16396d55ee8be825295fe63d5d89df7b"/><file name="mysql4-install-0.7.0.php" hash="1a3e64911829e084e4523ed8e02ed41f"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="6b7fb755e32fbdb7b0a8b8e2d07a8ea2"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="c38208cf5ed155921e0294d9149afa27"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="b51f71e9fd234db0af7ff97c442af60e"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="e3d3aaa974b011cb94c2ad7a5e026cdc"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="6d8690664c883cd6be731ebc8bce9894"/></dir></dir></dir><dir name="Directory"><dir name="Block"><dir name="Adminhtml"><dir name="Frontend"><dir name="Currency"><file name="Base.php" hash="3df3b6aaceeac2d31ceb35688be211cb"/></dir><dir name="Region"><file name="Updater.php" hash="fa6d4e9f133a8477fb646dae7aa7e4c8"/></dir></dir></dir><file name="Currency.php" hash="1410e677f27c3583f211be2d85a2149b"/><file name="Data.php" hash="c909b4874ea35549661d47ee2c1d921f"/></dir><file name="Exception.php" hash="453781dee8161d7b895ba3b1b0899ed3"/><dir name="Helper"><file name="Data.php" hash="aa37d979e53ded8d6ed9d432e6def025"/><file name="Url.php" hash="9e2d3271ce5db109658ee9f773db2fe0"/></dir><dir name="Model"><dir name="Country"><dir name="Api"><file name="V2.php" hash="afc6233ae08cfd5f08f8af38dfadad2a"/></dir><file name="Api.php" hash="c9307a174e99bb73fd7721d0cc15d628"/><file name="Format.php" hash="549856f02db55e157ce7cc937dd5795c"/></dir><file name="Country.php" hash="f47612b251ae4076df80ba085b1a00be"/><dir name="Currency"><file name="Filter.php" hash="3e3723b4af1bb35a6742a5ef2c019cd1"/><dir name="Import"><file name="Abstract.php" hash="3a1c5f29cca4389e86d6cebbe4f7be52"/><file name="Webservicex.php" hash="dea261da8bc1c2ddb0f00813a7d62754"/></dir></dir><file name="Currency.php" hash="f24df11a73ec1ac000d4ee91fe4cccf4"/><dir name="Mysql4"><dir name="Country"><file name="Collection.php" hash="490fcff8cc039c4a882d3e3b39ac0b3e"/><dir name="Format"><file name="Collection.php" hash="0f58e5a9fa3243c66db014d768a98da0"/></dir><file name="Format.php" hash="1b5b0f7deb5ec7a20a428d3c9a51cec5"/></dir><file name="Country.php" hash="23ff3d527006e79be8d941145374b004"/><dir name="Currency"><file name="Collection.php" hash="7418fb72c4b329862657fea893873e32"/></dir><file name="Currency.php" hash="8e9d26aad2bafd54bfab262341b89840"/><dir name="Region"><file name="Collection.php" hash="003d2e43eab9416cc832faaae38d445e"/></dir><file name="Region.php" hash="ac20fa937cd177b663e7acab340b7f4a"/></dir><file name="Observer.php" hash="66dfc096ba692f66d368654743204f2f"/><dir name="Region"><dir name="Api"><file name="V2.php" hash="da3f09a99c24d056d3461b600884f039"/></dir><file name="Api.php" hash="13196b7ad957235c9d4d80744baacc3d"/></dir><file name="Region.php" hash="5f11b838130796d0c106ef14e9a101ba"/><dir name="Resource"><dir name="Country"><file name="Collection.php" hash="ced5dce56f137888a778c307244eadf4"/><dir name="Format"><file name="Collection.php" hash="69cb0e29571bd557c535465669d45e66"/></dir><file name="Format.php" hash="801e9aeb9fcac19129e86aaf6c742bd2"/></dir><file name="Country.php" hash="d6826020474e1e50a9f7d616110c1eed"/><dir name="Currency"><file name="Collection.php" hash="4d6afb22b96acf37ac4f67a6326166b5"/></dir><file name="Currency.php" hash="24f10a37fe14475176ee98163b700344"/><dir name="Region"><file name="Collection.php" hash="57023acea67abf21b68492953657446c"/></dir><file name="Region.php" hash="bc8800af3d7e35e91fa90f2b553d9a91"/></dir></dir><dir name="controllers"><file name="CurrencyController.php" hash="35bb0925782ebd04e4943ab84951b0a3"/></dir><dir name="data"><dir name="directory_setup"><file name="data-install-1.6.0.0.php" hash="449178d272d3d195a1cbb6fc539a19d7"/><file name="data-upgrade-1.6.0.0-1.6.0.1.php" hash="8e186141736e15ee67ac6666545fed8d"/><file name="data-upgrade-1.6.0.2-1.6.0.3.php" hash="e0f4e5efad915f8bd637815adb08569a"/></dir></dir><dir name="etc"><file name="api.xml" hash="a8c3af31971871f3375af3bed83efb86"/><file name="config.xml" hash="74e76d5a9efb3fee78fc4c625c294ab6"/><file name="system.xml" hash="184976587366b082639fb50d529be1ee"/><file name="wsdl.xml" hash="cc488b81c0eae648a0ee360d6e2d9960"/><file name="wsi.xml" hash="66de37cc17e24c0c66f74c52e2df616e"/></dir><dir name="sql"><dir name="directory_setup"><file name="install-1.6.0.0.php" hash="96c305524970800bd33dbe4fde4fc024"/><file name="mysql4-install-0.7.0.php" hash="42cf2e07bdba83c4a27ef841f02cf584"/><file name="mysql4-install-0.8.0.php" hash="44a9bc17d349599c2f6ff1a4b2007846"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="0959ae732181c61075a30c10e25ef9d0"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="32c7d7431d0eb0edeae4ee12ee8e4330"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="4a159005aafdf056c758c1f2dab6b6e5"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="112a839147f190e708ac455635a889ea"/><file name="mysql4-upgrade-0.8.10-0.8.11.php" hash="4506726831a1d03b8207430506e602cd"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="f88e75dc363e65884f3c048e7ffc0923"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="20244a13eae58dcc96177cee74fccfbd"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="8bd7e20943ffcf758a319bc15e9c3d05"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="bfbf0cf011d06e1e92bd31462ebcce0a"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="e86faf4aaa60d3c6594e6a86f00dcb7d"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="5d20a16495474937945473bac9216f5b"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="c2e580ccc38df1b269b211a97b6631f8"/><file name="mysql4-upgrade-0.8.9-0.8.10.php" hash="449b434a82d218c5247b29abc82af315"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ab1088a57c79f78a47f80873415e5804"/><file name="mysql4-upgrade-1.6.0.1-1.6.0.2.php" hash="990a1d52cb2fe443704da47a700b5237"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="8882e2847161262a97651fe455d3cb09"/></dir></dir></dir><dir name="Downloadable"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Composite"><dir name="Fieldset"><file name="Downloadable.php" hash="7358eefbe70ee183fff6b1a2704b89df"/></dir></dir><dir name="Edit"><dir name="Tab"><dir name="Downloadable"><file name="Links.php" hash="a9ce2e6282195240d0a02688817f4e9c"/><file name="Samples.php" hash="1c7b91bec2db896a3f314db755b58a24"/></dir><file name="Downloadable.php" hash="f8b9ba9f21da82fdc42aca57b2342440"/></dir></dir></dir></dir><dir name="Sales"><dir name="Items"><dir name="Column"><dir name="Downloadable"><file name="Name.php" hash="ac478179897d1c38ed89186f2b96c6d1"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><file name="Links.php" hash="6f12867079f0056e33188a1781b26ce2"/><file name="Samples.php" hash="584482a2e01386e3e5adcdfebe777bab"/><dir name="View"><file name="Type.php" hash="3f08ab2df3b23f5cd17db5552eba2c3d"/></dir></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="5ccfcdb46c34c9b9156755ac704c5a08"/></dir></dir><file name="Success.php" hash="99e840479f116e644a35d9d216159b4b"/></dir><dir name="Customer"><dir name="Products"><file name="List.php" hash="be90199170ef5e92035c539a27929df4"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Email"><dir name="Items"><file name="Downloadable.php" hash="4c877a4a2d8b36d09606d16d9aff6c4f"/><dir name="Order"><file name="Downloadable.php" hash="6d1f06f133472f790e0b00c1e9bdf37f"/></dir></dir></dir><dir name="Item"><dir name="Renderer"><file name="Downloadable.php" hash="f52357f0c231d6ff9741fdc6ff165ea6"/></dir></dir></dir></dir></dir><dir name="Helper"><dir name="Catalog"><dir name="Product"><file name="Configuration.php" hash="d7d2ffc5fcd3d53a4273289cdf6921b3"/></dir></dir><file name="Data.php" hash="07eb756ae74dfa62fd3bf51609d4d4a6"/><file name="Download.php" hash="3c298ba201ccc8d74bc52c2e49390af8"/><file name="File.php" hash="d38bd38baf4d6ac7028f9916c109027a"/></dir><dir name="Model"><dir name="CatalogIndex"><dir name="Data"><file name="Downloadable.php" hash="125f7269d544ba02f6655baa197f4473"/></dir></dir><dir name="Link"><dir name="Api"><file name="Uploader.php" hash="9746c685682eb407d254a2465886b4a3"/><file name="V2.php" hash="991ca71de9dda0bea63cc0cd33ef9daa"/><file name="Validator.php" hash="062a30a7333c11b09b71ee717a328731"/></dir><file name="Api.php" hash="9b300c79df89089057c7bdf443919b1e"/><dir name="Purchased"><file name="Item.php" hash="594d6579858a2b03be09fcae48e919c2"/></dir><file name="Purchased.php" hash="a4f94fc05023dca72a2a604892446c16"/></dir><file name="Link.php" hash="694fe1ab9a01117859c6d5eb125ad60e"/><dir name="Mysql4"><dir name="Indexer"><file name="Price.php" hash="8b811e5db6b18e60eff2b867aa535f2e"/></dir><dir name="Link"><file name="Collection.php" hash="60724c4412e2745d17770867f6136310"/><dir name="Purchased"><file name="Collection.php" hash="15568a7cf224010ec291774a3aa455d7"/><dir name="Item"><file name="Collection.php" hash="19e24646e835c28b1b48edea775b85fc"/></dir><file name="Item.php" hash="b2988c475c696f3d23346dd4ee4135f2"/></dir><file name="Purchased.php" hash="f4005b7a02cd00de35ae48f249373fca"/></dir><file name="Link.php" hash="ca2faf7ecebc50591c1bf629d75206a7"/><dir name="Sample"><file name="Collection.php" hash="2941b96e46a0d3371c4af2e3466c779f"/></dir><file name="Sample.php" hash="793b63049588a8f428f288fbfee5d383"/></dir><file name="Observer.php" hash="c2de9729f8c6eda48909ebed3700d321"/><dir name="Product"><file name="Price.php" hash="037cc3a2002e5a88fb7a058ce69d5b22"/><file name="Type.php" hash="62299715d7e4dc49cceb8e0fab2a3ef3"/></dir><dir name="Resource"><dir name="Indexer"><file name="Price.php" hash="7bcb28ca3896a121f3fb2822c097ad76"/></dir><dir name="Link"><file name="Collection.php" hash="1ac5104d02a0f70f31164c1daef776d3"/><dir name="Purchased"><file name="Collection.php" hash="75c749171a918e324c290fe466540cb1"/><dir name="Item"><file name="Collection.php" hash="439f6d97c98306cd8d5eb1ba41e73f3a"/></dir><file name="Item.php" hash="006ec93b3aed51e5f19c9919cb4ef97d"/></dir><file name="Purchased.php" hash="0441d43b422ec40025ef75acabdacb86"/></dir><file name="Link.php" hash="d05c0bd3eda5e6f29879afa45ac75c30"/><dir name="Sample"><file name="Collection.php" hash="a5bb7f15c1bde679a53a0ee8ed712b42"/></dir><file name="Sample.php" hash="91bf983e907eecbb76965a7c392b9020"/></dir><dir name="Sales"><dir name="Order"><dir name="Pdf"><dir name="Items"><file name="Abstract.php" hash="272c182a0a9898fceddebc88df8c1b05"/><file name="Creditmemo.php" hash="6490db251da913698d88f4197d6a09d5"/><file name="Invoice.php" hash="7ad07c0b6573103c7cea924be44579d5"/></dir></dir></dir></dir><file name="Sample.php" hash="a1edf7159521eb4b34a1b4031ba1c091"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Contentdisposition.php" hash="e722e6c4fee62f44ed6eeecaa501e38b"/><file name="Orderitemstatus.php" hash="b3d1a82bbb57611c7adda7e58783385c"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Downloadable"><file name="FileController.php" hash="e9308d58b8f4264a784b19151a76babb"/><dir name="Product"><file name="EditController.php" hash="0969a4037610b06894afa3b4cbbd7f56"/></dir></dir></dir><file name="CustomerController.php" hash="1ddd6baf02a69a69975de56e17a01940"/><file name="DownloadController.php" hash="83756594be03b31dbf6d23f569fe70ec"/><file name="FileController.php" hash="c8e35419fe8ba798b09e1e9cebdedc0a"/><dir name="Product"><file name="EditController.php" hash="70913c9ac3ada8a871d54c0a4f681746"/></dir></dir><dir name="data"><dir name="downloadable_setup"><file name="data-install-1.6.0.0.php" hash="b14b0b3975296dab7f22c9eb3a9a0b05"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ae491bc8ec858cca1e75cb3e8c5f2b17"/><file name="api.xml" hash="bbe19285b70034f9d5e27f0fda6cb3ae"/><file name="config.xml" hash="b1854a9ecf6b790247072bf98573fbe0"/><file name="system.xml" hash="c4960eb43b0313ec2f48cc2f3565d3c2"/><file name="wsdl.xml" hash="b3935ff3bf7e2ca40ddd304b4c78577f"/><file name="wsi.xml" hash="7eef36b29c2abf88596e63b6a042626d"/></dir><dir name="sql"><dir name="downloadable_setup"><file name="install-1.6.0.0.php" hash="beb734081bb4155a9cb7f553e69b594c"/><file name="mysql4-install-0.1.0.php" hash="7ce2cf98b69fbfba519760dc52e80459"/><file name="mysql4-install-1.4.0.0.php" hash="23dc8c45995c1e29783cd4cb2a9b45d7"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="935c425258ea38e53750b2c29d4f8963"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="fe155b21566d67a442234b6e79eb5adb"/><file name="mysql4-upgrade-0.1.10-0.1.11.php" hash="49d09f81d946f2adb1c85d9df82ef2b0"/><file name="mysql4-upgrade-0.1.11-0.1.12.php" hash="ea206eb1a90b9f69d218f67061f333d6"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="1ff853acaa6a28fd9b4bdaf29514ca0f"/><file name="mysql4-upgrade-0.1.13-0.1.14.php" hash="04bcdb5db567384f5f5730e515860f52"/><file name="mysql4-upgrade-0.1.14-0.1.15.php" hash="f0881b027d876ba04ee199cc78cf526c"/><file name="mysql4-upgrade-0.1.15-0.1.16.php" hash="57216ec34addd7ee5c7eaec22ec2c27f"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="7661dc81d863d694545619cc29bb5eae"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="590fa44959f6f7eee97b3ed60f457f79"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="c48d705fd46c240333b9714d285608ff"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="954022ed0f417fc88563f7714b837002"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="47f79b65ee08a98d9a2384ee272b6115"/><file name="mysql4-upgrade-0.1.7-0.1.8.php" hash="08329ddb5b63676cb1ec21c54d656b9c"/><file name="mysql4-upgrade-0.1.8-0.1.9.php" hash="c6f922e771296d9825ed6ac46baf201e"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="4959673a9ecfd8101537611c2196389f"/><file name="mysql4-upgrade-1.3.9-1.4.0.0.php" hash="9a05f94ff39ae21bf150a5de0c989000"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="9ffbb8d7bb6bab9522c8d973cc1c3a7b"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="9c21c4304bb549da8bf45ef68d2eb955"/><file name="mysql4-upgrade-1.4.0.2-1.4.0.3.php" hash="959e73c2831f1beba3b34283dd9080ae"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="22ff9aa1fa9bed6cd198f6c363bdebd0"/><file name="mysql4-upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="721d09be119a9721f79cd7b1616937ce"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="d98e8b797596118339ad1f7d1d11a56a"/><file name="upgrade-1.6.0.0.1-1.6.0.0.2.php" hash="3334037f3df011313b4cc5567d6cfa1a"/></dir></dir></dir><dir name="Eav"><dir name="Block"><dir name="Adminhtml"><dir name="Attribute"><dir name="Edit"><file name="Js.php" hash="e0bba2d57c4540d7195297cdf88d2bd6"/><dir name="Main"><file name="Abstract.php" hash="457a084c10be074a8c774f997d9ac8e4"/></dir><dir name="Options"><file name="Abstract.php" hash="b4f11e7d20dbfe0c6869e8eea80dfb1f"/></dir></dir><dir name="Grid"><file name="Abstract.php" hash="a2657b40ee26194898ae39afc02947cc"/></dir></dir></dir></dir><file name="Exception.php" hash="ba78eaacf2dc82c3cffe9548d50747f3"/><dir name="Helper"><file name="Data.php" hash="6d1932a60c28de1ecd04570ca364eaa3"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Inputtype"><file name="Validator.php" hash="a2675fe89ef6f342922029238f2ea5c0"/></dir><file name="Inputtype.php" hash="4afc8da40c91a9f47b55c03ceac7990f"/></dir></dir></dir></dir><dir name="Attribute"><dir name="Data"><file name="Abstract.php" hash="306fcd0c0607ac616612120f9c77d287"/><file name="Boolean.php" hash="18858a47815608071999b0b5ca1165c3"/><file name="Date.php" hash="6769356dbf884bf768ee06a318aa44e2"/><file name="Datetime.php" hash="df486c8eb6af383ad7804695e91efff1"/><file name="File.php" hash="7cead2c01b8e44a125d763e865fbdeb3"/><file name="Hidden.php" hash="24980022dd521fb150ae8c538786fbbf"/><file name="Image.php" hash="c4d430baccc315f46a45b99c3a4bf9be"/><file name="Multiline.php" hash="faf0756527157bbb78ac40d08f0e6ea6"/><file name="Multiselect.php" hash="2732b3248b01aee3f10fb501cd01e6c4"/><file name="Select.php" hash="f1bcb979195337a74e5cfdb282551cd3"/><file name="Text.php" hash="c9d2dc2235eb7170bfa1cf0b5d9a203c"/><file name="Textarea.php" hash="80ec9bc40d0b8cc4f0c4fb597d2819f1"/></dir><file name="Data.php" hash="305a8daf73fe035215210e588ae6c8ad"/></dir><file name="Attribute.php" hash="4ace96e951c06dd07f00c390e870a60d"/><file name="Config.php" hash="c42f7c5fd927b3a5c64d7a7c34c4a6a5"/><dir name="Convert"><dir name="Adapter"><file name="Entity.php" hash="0ade841607bab74e7a483d455b9f52f9"/><file name="Grid.php" hash="7fc479f09d622aaaf52890c7d58cfc8f"/></dir><dir name="Parser"><file name="Abstract.php" hash="8db62cb6da63d23daf851de36e320be3"/></dir></dir><dir name="Entity"><file name="Abstract.php" hash="1b3e6381322b675e379867450e961b14"/><dir name="Attribute"><file name="Abstract.php" hash="4453af18683a4f976e0482f8b22c5e49"/><dir name="Backend"><file name="Abstract.php" hash="aab703cc6b8cce7d9a8a8f118e5e7531"/><file name="Array.php" hash="99875b63f65864791260146ba38d3206"/><file name="Datetime.php" hash="e9d9857bff9668b2c652a9d6b9a16e4e"/><file name="Default.php" hash="8fbbfcbd555ebdd43d03bb958ff33390"/><file name="Increment.php" hash="4a0efac8a50f88f2b1d97fc86fb91fd9"/><file name="Interface.php" hash="6e0ed88de1bfdcf5bb4de9d64a945dac"/><file name="Serialized.php" hash="0c6e0dcc914fffe7ddc3d6d7090e0c21"/><file name="Store.php" hash="97409a22dc17d154d20ca68eb1f3864b"/><dir name="Time"><file name="Created.php" hash="42b416adf0c6918aeba35d9c27b249b8"/><file name="Updated.php" hash="240414877034fe485c7270a923935c58"/></dir></dir><file name="Exception.php" hash="1b3b6f8d415510f60ca92f8fae59876e"/><dir name="Frontend"><file name="Abstract.php" hash="24237f13ba4d0cc05b45103aa15052d6"/><file name="Datetime.php" hash="aae764ac16d26251acb7c4a948782102"/><file name="Default.php" hash="5c45d132eaa76426fb30c662fa161e0d"/><file name="Interface.php" hash="cfdc936f738438f302061440b520b68d"/></dir><file name="Group.php" hash="0aa9726a108e94b20a07365b28105996"/><file name="Interface.php" hash="3ceddd274b6274c99a51aa1f36a406dc"/><file name="Option.php" hash="9ee6bc3d4f689086b37b2ffc18b785cd"/><file name="Set.php" hash="e647755dae1f6158ef4c05ff9ca4c5a8"/><dir name="Source"><file name="Abstract.php" hash="85bb954a30e6e5789456b2041872fbc5"/><file name="Boolean.php" hash="7acdb80b01292956b92db947973b0cdc"/><file name="Config.php" hash="e9dec75fb6c8eb8726fd5039c3e2fde8"/><file name="Interface.php" hash="789df7c41a366fe4fc689c655d492a8d"/><file name="Store.php" hash="83cfdbed4e59a35f70996934da9c053d"/><file name="Table.php" hash="b641a1cbeedacfd68baca2ba7f05ecc9"/></dir></dir><file name="Attribute.php" hash="32b1110f5ac0bff0bf83fa1a9fc3c72e"/><dir name="Collection"><file name="Abstract.php" hash="1d7bc470b4508cb09a6fc7db7d651f15"/></dir><file name="Collection.php" hash="f33ad123504fcded784d6390769539cc"/><dir name="Increment"><file name="Abstract.php" hash="f967bb4fc23c850be7c268d50a7cea0b"/><file name="Alphanum.php" hash="f7a3e9c80bcefde59d531d46a6433fce"/><file name="Interface.php" hash="bb5b075e6e0f93b5294d8394e0f4c8cb"/><file name="Numeric.php" hash="a6df9348d7d018da95bbf66a2c8a3503"/></dir><file name="Interface.php" hash="4a2c904265bdf814ea5b3cdad22c615b"/><file name="Setup.php" hash="60425807abfee75f5949f0bdb758f407"/><file name="Store.php" hash="af4c09a4e20e7fbacb7deeac0e470bcb"/><file name="Type.php" hash="c94283878472673af91cc9c1d06332e4"/></dir><file name="Entity.php" hash="a354f3b0d015f164ac3af7292b617019"/><dir name="Form"><file name="Element.php" hash="f7e425204d55ac6395c0695b7a550bd4"/><file name="Fieldset.php" hash="6f911a1dd046a6c2d9429a0e42a7bdc3"/><file name="Type.php" hash="389f76edf7ae69afaa26be81d817e63a"/></dir><file name="Form.php" hash="1ad7a7957defd42a9fd071ad02b138a2"/><dir name="Mysql4"><file name="Config.php" hash="007e3a0c288d5a921a1d7ffbccd15c9c"/><dir name="Entity"><dir name="Attribute"><file name="Collection.php" hash="af2a8e18dec1095aeb8cd167f4084f08"/><dir name="Group"><file name="Collection.php" hash="63819ab574b2252fb3e36f4722c3bfe1"/></dir><file name="Group.php" hash="7f4daa758c746bcf7a35ba2fcca56aa8"/><dir name="Option"><file name="Collection.php" hash="d981884b8300d5f1cdc295badad4d397"/></dir><file name="Option.php" hash="5123a55ce2e310234ed2eea4ba2103d2"/><dir name="Set"><file name="Collection.php" hash="59191804e6864586038796ace8ed39e9"/></dir><file name="Set.php" hash="6ac37acb880ef52967c53c20f4a18292"/></dir><file name="Attribute.php" hash="36f7157a08817d00f8408a80ad307726"/><file name="Store.php" hash="ac8bdd504017b69c029d014f1acb883e"/><dir name="Type"><file name="Collection.php" hash="df4a0594aa35f346c052a9188a5c4471"/></dir><file name="Type.php" hash="ad6ac3edee4ec97ce9332b165eef1736"/></dir><dir name="Form"><dir name="Element"><file name="Collection.php" hash="45b9183328ee19850345752b1a8e23fd"/></dir><file name="Element.php" hash="4166c03b2847882e3368be57d1cb7f6b"/><dir name="Fieldset"><file name="Collection.php" hash="5146d0c568cddd8ec261ffb7c0a7bac0"/></dir><file name="Fieldset.php" hash="988d72a77b0182cabebdff61fc9a2531"/><dir name="Type"><file name="Collection.php" hash="5cda9032e5d07855388b412abe4c8d71"/></dir><file name="Type.php" hash="85d66f2053a03b1a495ed6ffd7cba6c8"/></dir></dir><dir name="Resource"><dir name="Attribute"><file name="Collection.php" hash="745a9bffdca7a1641891bcd4b0b3ec32"/></dir><file name="Attribute.php" hash="9b08b8a0b41eeed8a9ebf3acfb1b89ec"/><file name="Config.php" hash="30786ab3c85c165506c3db425cf9cfa5"/><dir name="Entity"><dir name="Attribute"><file name="Collection.php" hash="5aa1077e62b09344de49240534ac1c1f"/><dir name="Group"><file name="Collection.php" hash="f6d61cf7b743537537a27648b7b1605a"/></dir><file name="Group.php" hash="017cba9a5945e4f851460e5080aed89d"/><dir name="Option"><file name="Collection.php" hash="021d33b2d1d89308eb74f3597a3796cd"/></dir><file name="Option.php" hash="1515ac3c5a915d814a63b7fe1d5e63bb"/><dir name="Set"><file name="Collection.php" hash="4064d63b518886a4e1a8b0539868297b"/></dir><file name="Set.php" hash="5caa0c72cd0a8bb9a73f6c537ab7c19a"/></dir><file name="Attribute.php" hash="0d90287692b6f7b8aa961e82992e6b80"/><file name="Store.php" hash="7ccda84a385ab0b3bcfbe2d0f9214a8e"/><dir name="Type"><file name="Collection.php" hash="f2271900b7cc9bcc317c3b15561b460f"/></dir><file name="Type.php" hash="258dc3600151215743abb3f826df4572"/></dir><dir name="Form"><dir name="Attribute"><file name="Collection.php" hash="b3e6bffd6179cf09b589f1d0f7a57a4c"/></dir><file name="Attribute.php" hash="1bae3456f8a814790ea27c6f87fe640e"/><dir name="Element"><file name="Collection.php" hash="fcbc5b35885479067ec6fcd8ddb212e5"/></dir><file name="Element.php" hash="25036926d29af351dbddea9896c118d1"/><dir name="Fieldset"><file name="Collection.php" hash="86c6b6a9ed62afd852f3ffd3aa82e88a"/></dir><file name="Fieldset.php" hash="76933617fe53fd9d5cccf6c4c3e6ae65"/><dir name="Type"><file name="Collection.php" hash="94d8400f8b81c0b5d46c3716a46197a1"/></dir><file name="Type.php" hash="bfcfa79bf5911c3cf38699903edcbde3"/></dir><dir name="Helper"><file name="Mysql4.php" hash="e569889cc3ec54dc85de288aaf895e09"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="dbab2258c8d26c903915254fe61ef3b3"/></dir><dir name="sql"><dir name="eav_setup"><file name="install-1.6.0.0.php" hash="8bd8cda1628ad65acced30d89f9e79f2"/><file name="mysql4-install-0.7.0.php" hash="b5c7cab312704e2f4b0837c7713ed7e5"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="4dc93d791f8319279f500b0b4ed8b72b"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="3304a0f850d10d0083eacfb2614043af"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="0a66058a0c21cb0746195f2cf09a8987"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="45a1db26109e930762aa3e6d27e7315e"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="eac8e6dbd6a556a0c97ec397a4b2bb6d"/><file name="mysql4-upgrade-0.7.13-0.7.14.php" hash="f9ef9728e9111ce19b3d4b0ced28c5dd"/><file name="mysql4-upgrade-0.7.14-0.7.15.php" hash="ead9b25a17f8bcfc1b874e568008e688"/><file name="mysql4-upgrade-0.7.15-0.7.16.php" hash="74a8a82cc1660b3be1ccec4131387b5b"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="821ca88eb77698b1e1363314d78c61b4"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="507ed2e28ff2f31e35df016bcb3aa6ce"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="962eed9c04187bec9872955c3cbcdd24"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="1794620b2d297dd60179fcf6f5932c74"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="41bc6f807ca7e82b1a49860647de4d22"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="b47e4d4570ed78ec510b818e705c60e5"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="3cc86e7527496b42cc349baf22061625"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="31a77042c51dda6249cf7b26175d41cf"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="5d300439dcdb43b988cdc3eb6a723a69"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="c254084e38d31391d4a9dcf6f5efb1b5"/></dir></dir></dir><dir name="GiftMessage"><dir name="Block"><dir name="Adminhtml"><dir name="Product"><dir name="Helper"><dir name="Form"><file name="Config.php" hash="2b97d65b248912e6056105eb7b22647a"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Create"><file name="Form.php" hash="102f55b5670ecc4624d2779a5d9dae47"/><file name="Giftoptions.php" hash="5af2eaa83c347cf87f944cecc240f72f"/><file name="Items.php" hash="b4833f6731249bb524d0ac5c8b61b823"/></dir><dir name="View"><file name="Form.php" hash="d96b129bc6aa7fb968b6b3bca40d6641"/><file name="Giftoptions.php" hash="8e5db4e604059e74dfa6a6cbf48eab22"/><file name="Items.php" hash="8c4cfb13907db5b6caab2a99ee039918"/></dir></dir></dir></dir><dir name="Message"><file name="Form.php" hash="e0b6247f6e0dac8a096335409c8bbf58"/><file name="Helper.php" hash="3a4cbf8851f4b489b433bb23fb62a50b"/><file name="Inline.php" hash="07b38ebaac00b45a1929387903ff3862"/></dir></dir><dir name="Helper"><file name="Data.php" hash="5b88dfacb8f95f979585366200b80f72"/><file name="Message.php" hash="92f73fd54b2a59340bfdbf05615fb68f"/><file name="Url.php" hash="9f8d36e13391f023deaaf0b912cc37fc"/></dir><dir name="Model"><dir name="Api"><file name="V2.php" hash="f04aee0ff3e2490540050c4b319ccedf"/></dir><file name="Api.php" hash="ae703cf87197282f7efde1dae67864af"/><dir name="Entity"><dir name="Attribute"><dir name="Backend"><dir name="Boolean"><file name="Config.php" hash="912ab6934476d64533586fd38351183d"/></dir></dir><dir name="Source"><dir name="Boolean"><file name="Config.php" hash="529f82da62485f46d085625efc092714"/></dir></dir></dir></dir><file name="Message.php" hash="6e3d9660ffca1ed6f992e15d2143e486"/><dir name="Mysql4"><dir name="Message"><file name="Collection.php" hash="8610d5937a758e916c2d81dbd41d36ac"/></dir><file name="Message.php" hash="6d0ccc5368848a220e397da25dfaf737"/><file name="Setup.php" hash="2407a2d026ed41cb38ceff1ebccb8c88"/></dir><file name="Observer.php" hash="9e8f1570cc6efdf82b5fc5b4b2e12b58"/><dir name="Resource"><dir name="Message"><file name="Collection.php" hash="6949121421c02e75fb923b0170b73d99"/></dir><file name="Message.php" hash="6b09b60ccc7b993dd17c5240cd2aa7ac"/><file name="Setup.php" hash="30c57e5147e83cce71f3976820ce24c6"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="7897754c8f0647dd688d6c57f4b74070"/></dir><dir name="etc"><file name="api.xml" hash="14039afdb9315721b5b515c9f34f41cb"/><file name="config.xml" hash="3cb2d88b80c9f48c64a36d62e9abcd3f"/><file name="system.xml" hash="510b3986f40a221b5d18f9dda07194c9"/><file name="wsdl.xml" hash="b99aaaac0126c6e09a7ba59fa4dbcf30"/><file name="wsi.xml" hash="ab77c7cfecb0f5d6cb7b07c0b5abc1d1"/></dir><dir name="sql"><dir name="giftmessage_setup"><file name="install-1.6.0.0.php" hash="0fb2290857ea3b17b7ed76e851d27c62"/><file name="mysql4-install-0.7.0.php" hash="654f2dbfc67cf93ffdd6d78a461e896a"/><file name="mysql4-upgrade-0.1.3-0.7.0.php" hash="e4ca5e477b610b00e61a8f7509ee1f5f"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="7775c0535994eefcc81be63041a681a1"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="2d547e8260cc8efdad80bb7898d536f5"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="80c9fd152bb817c49659463cc955b7a2"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="e11619037b1758b3ee2cd847af91315d"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="01dc822919ac4feb64b4d321078d3f8a"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="fd7bb80cc8682a3991609c5b1eed3977"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ab382785e333359bb9793011aac0f586"/></dir></dir></dir><dir name="GoogleAnalytics"><dir name="Block"><file name="Ga.php" hash="21d9fd37c1e92ae684566de0eb42791f"/></dir><dir name="Helper"><file name="Data.php" hash="100f3a40bea481c98c1393f43b6bc603"/></dir><dir name="Model"><file name="Observer.php" hash="ad6ac25124a3322a714e20a977064be0"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Type.php" hash="4805f9d896da417036af79e15613eac3"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="5fea2673308abebb7cd8c15359737309"/><file name="config.xml" hash="4284f96f4068849482549a713d11c4f8"/><file name="system.xml" hash="c91c97c91ae42121ff31cd23d5a5682b"/></dir><dir name="sql"><dir name="googleanalytics_setup"><file name="install-1.6.0.0.php" hash="a7ae51e268e4b23f43b1f6b1477691f9"/></dir></dir></dir><dir name="GoogleBase"><dir name="Block"><dir name="Adminhtml"><file name="Captcha.php" hash="62f522f22cb64d19850b09ccee65adb6"/><dir name="Items"><file name="Item.php" hash="f8c9007a1ad978bb47b6c9d5d2c11d93"/><file name="Product.php" hash="e51f257f3918fcd5e72ce12f5f527b87"/><dir name="Renderer"><file name="Id.php" hash="a163a4d6a3edc89a19bb0efa0675ac7d"/></dir></dir><file name="Items.php" hash="f78483b50fc3e072d0dccb10fdc6e45a"/><dir name="Store"><file name="Switcher.php" hash="7dd1e22cb003eecdfa9a7d4df6628e1e"/></dir><dir name="Types"><dir name="Edit"><file name="Attributes.php" hash="de7ce9a9907ae7d7d94adb123ba364c4"/><file name="Form.php" hash="76cb4afbadef58a6cb517007fd258a1a"/></dir><file name="Edit.php" hash="7a8c72d4f8d506f69561735fe175d759"/><file name="Grid.php" hash="1794a6560af01397f30022cbf248de3f"/><dir name="Renderer"><file name="Country.php" hash="60106faee902375cc177fa463e27ec2a"/></dir></dir><file name="Types.php" hash="cc6a7f78d0e2edf4dfe7a40b46282138"/></dir></dir><dir name="Helper"><file name="Data.php" hash="a9d67fdd71f358434564df80fc163a06"/></dir><dir name="Model"><file name="Attribute.php" hash="c9e51b38341831512db3e739233707d4"/><file name="Config.php" hash="a3afa7ff5098f38dfe1d5c979f7389d1"/><file name="Item.php" hash="a200fd6fc7e97b66695133fa4650f35e"/><dir name="Mysql4"><dir name="Attribute"><file name="Collection.php" hash="4bf3b43f87dac062e4cba4ee6b155b02"/></dir><file name="Attribute.php" hash="8a74acdccc2d5e802c2f1ddf6b9f2a2d"/><dir name="Item"><file name="Collection.php" hash="26993881e30a5bc17876ae4024400823"/></dir><file name="Item.php" hash="73f6da324cb2de0d5975130fc7db4077"/><dir name="Type"><file name="Collection.php" hash="0294f3588c2dce8cd416e4ed5349d832"/></dir><file name="Type.php" hash="062cb6dd81aed45a04e69ef7acd5ab3d"/></dir><file name="Observer.php" hash="7a728d960e8d7291dad86f4391091696"/><dir name="Resource"><dir name="Attribute"><file name="Collection.php" hash="ea5ac4726d4656f50002c16f0b95cd58"/></dir><file name="Attribute.php" hash="8ff14327de62fcf5a8a0b01677202a41"/><dir name="Item"><file name="Collection.php" hash="b00cf45f527f967c76c8ce2d4b74fda4"/></dir><file name="Item.php" hash="ec0a24d01ec1e532d7d1c68ba0bf8eca"/><dir name="Type"><file name="Collection.php" hash="f72ce44ab1aec0e8c9e8dab0353b388c"/></dir><file name="Type.php" hash="4364b45b8eba2cf13aa0aa945ee9c03d"/></dir><dir name="Service"><file name="Feed.php" hash="199e735393a20e97b65cdee9f1c23fcd"/><file name="Item.php" hash="f02a6db44af965fc155d93048077ac08"/></dir><file name="Service.php" hash="278413ad9e0e76f20e58736aaf8aa5b9"/><dir name="Source"><file name="Accounttype.php" hash="f52c54635bd844df6474a5b890d468b2"/><file name="Authtype.php" hash="31fc1f9aa9000ff058ab8765cafd4e04"/><file name="Country.php" hash="886467f45e88a020c30ae01c9e5578e9"/><file name="Statuses.php" hash="ebcdec3951e1ed9ee101d149dd1bb24a"/></dir><file name="Type.php" hash="328e54fa39d0fbb1dffbe800b38d4100"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Googlebase"><file name="ItemsController.php" hash="b643377439ef3280554774f5d422766f"/><file name="SelectionController.php" hash="7238751980394f57e9f8cca86819114f"/><file name="TypesController.php" hash="72e6982dad771b164f21aa77b7507bbf"/></dir></dir><file name="ItemsController.php" hash="3e1165defd70e63523405e6a8debcab7"/><file name="SelectionController.php" hash="63901f0e85cb0769358a745c4628e58d"/><file name="TypesController.php" hash="9e01961f36dee9a443ac5c875f5ba939"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a72bbb994243c60b20bd507b5ad4bd5e"/><file name="config.xml" hash="8b080f10dc19b429bfa57197e0fed070"/><file name="system.xml" hash="abdd0ddd6a9936e18c2e12181ccd0cf4"/></dir><dir name="sql"><dir name="googlebase_setup"><file name="install-1.6.0.0.php" hash="ac81f7ef2a424e846595f7aaeca9eb57"/><file name="mysql4-install-0.1.0.php" hash="5ef567e8fd3f272288334985d8319ed7"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="0bbd83ea551e93f64fa1ee618659d1bd"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="e94099eedd81ce5f48dbeb10adbcc391"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="f5618d5a47a34bdfc1a20c869f60b2ee"/></dir></dir></dir><dir name="GoogleCheckout"><dir name="Model"><file name="Payment.php" hash="1f39c37b4560a4016f479f8e97d4ef08"/></dir><dir name="etc"><file name="config.xml" hash="46071ba0ff385dc63194959aa98e5b89"/></dir></dir><dir name="ImportExport"><dir name="Block"><dir name="Adminhtml"><dir name="Export"><dir name="Edit"><file name="Form.php" hash="191ccf47abab7c84547280304805073a"/></dir><file name="Edit.php" hash="360e63e850d8f71eb7e75cf3cc21578c"/><file name="Filter.php" hash="c02bfef81c8010bc55d03bd26d4d72a8"/></dir><dir name="Import"><dir name="Edit"><file name="Form.php" hash="792fe3b32111587f3cb6da0e20b2dd7d"/></dir><file name="Edit.php" hash="89d3340a3cf9ca522457b72f882681f9"/><dir name="Frame"><file name="Result.php" hash="d325e4179d827ca9af9098f0d875f888"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="ca76d4112ae9ddbdcac3405c84cc0fd6"/></dir><dir name="Model"><file name="Abstract.php" hash="40838be4ecbacd9411cce97a8e33fd59"/><file name="Config.php" hash="157790b05e5a9c2e0b7d204b88917318"/><dir name="Export"><dir name="Adapter"><file name="Abstract.php" hash="067bc84c008b653830cfec4b1c85a563"/><file name="Csv.php" hash="adfef1439deb7997cc6d2daa177461af"/></dir><dir name="Entity"><file name="Abstract.php" hash="ecd9e50ef2e64fdf47d99f55187a375d"/><file name="Customer.php" hash="6fbab142f39b8face3992add03aa5e28"/><dir name="Product"><dir name="Type"><file name="Abstract.php" hash="1de48655376671c162493cb3d95a0be9"/><file name="Configurable.php" hash="4686346b2b166ff1f92146293cc7e327"/><file name="Grouped.php" hash="38f7b2c87a9455afdd0c135758740796"/><file name="Simple.php" hash="9ef13bb631878a0af571539965571172"/></dir></dir><file name="Product.php" hash="35e6194ad1be721d030dc574851b549a"/></dir></dir><file name="Export.php" hash="3315b1eb387128ff2d2fcf4ed9a90be7"/><dir name="Import"><dir name="Adapter"><file name="Abstract.php" hash="2ad7d03cced97eaaa1651ddd2b7f7083"/><file name="Csv.php" hash="75a2655c6e3540b2ca24619293902dd1"/></dir><file name="Adapter.php" hash="f236483dac22b562e1d06a5355a7f8f5"/><dir name="Entity"><file name="Abstract.php" hash="ae4bdb8377bd890291cf075cd2effefa"/><dir name="Customer"><file name="Address.php" hash="2dff3ecd1ea7e56b7eb5d1df71592688"/></dir><file name="Customer.php" hash="797346fdbfe9af363bd6dae40547a87a"/><dir name="Product"><dir name="Type"><file name="Abstract.php" hash="93a0b9def9a8f96499b060c3e12caadf"/><file name="Configurable.php" hash="855d66a8f65b42bc32724de18dbffcaf"/><file name="Grouped.php" hash="7fb797515dc6bf4fb6b695dd7a50209c"/><file name="Simple.php" hash="1fbbbbf117e24efa9ab1fa9fce3736f9"/></dir></dir><file name="Product.php" hash="9b9f1a9a6d75c143f7db8a47a6a35834"/></dir><dir name="Proxy"><dir name="Product"><file name="Resource.php" hash="fd09d311d1aa8f092f7bafd3057a74ba"/></dir><file name="Product.php" hash="ef5715669f2930b67adf56d347ed4335"/></dir><file name="Uploader.php" hash="dcfeeb3f8ada78be25beca1dccef0708"/></dir><file name="Import.php" hash="31c1fb6a58202618c63bedc68330edfe"/><dir name="Mysql4"><dir name="Import"><file name="Data.php" hash="4b9f1050be63d5e883107af1296175f2"/></dir><file name="Setup.php" hash="ae69a84651baea4a3980558f63bef95a"/></dir><dir name="Product"><dir name="Attribute"><dir name="Backend"><file name="Urlkey.php" hash="c48051028fca4186c5c6d9b86de4b26b"/></dir></dir></dir><dir name="Resource"><dir name="Helper"><file name="Mysql4.php" hash="bf9c7c30ee1dc6fa8dfc921f8ae7dfc4"/></dir><dir name="Import"><file name="Data.php" hash="c4db1e915b5b7f72a0ff25cf4f2f1541"/></dir><file name="Setup.php" hash="2d595c2da3a7deb58f70949f10a2dd3e"/></dir><dir name="Source"><dir name="Export"><file name="Entity.php" hash="b1e3a8910a8855867da94132482feb51"/><file name="Format.php" hash="d6d5b4658fc212ba88e5ee9200b65080"/></dir><dir name="Import"><file name="Behavior.php" hash="887159c45f3ab8ccd55f07ae44855d40"/><file name="Entity.php" hash="482bac24d63807f8a1e7dce11b15ca63"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ExportController.php" hash="8f99a0a7b22cf679f906787d83d7e2ca"/><file name="ImportController.php" hash="60eaa6d4654ea83fcc6f35912b3493c3"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8b27d8fa6369ee77b35c48e50dd63eb0"/><file name="config.xml" hash="a371b4c0e0e2475f7ad26c0c0a0e02e4"/><file name="system.xml" hash="143e367568323924092b21685a72c211"/></dir><dir name="sql"><dir name="importexport_setup"><file name="install-1.6.0.0.php" hash="e9c28a9b24e977248e6cf669002a4ebe"/><file name="mysql4-install-0.1.0.php" hash="477525d2570e7ec6f7b26cde9ba38f4a"/><file name="mysql4-upgrade-1.6.0.1-1.6.0.2.php" hash="31078007e13b489ee06a2d98c5f68f0e"/></dir></dir></dir><dir name="Index"><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="64e42d1d0916743a3c267a9d3986a018"/><dir name="Process"><dir name="Edit"><file name="Form.php" hash="afec06dbd7f7e4703655d23518471df5"/><dir name="Tab"><file name="Main.php" hash="eab42bfbcdb027c24bdf85780380b453"/></dir><file name="Tabs.php" hash="f0027c1dec504f914afc09a5107d98cc"/></dir><file name="Edit.php" hash="a8607cfd423515bbab8652621b57ba97"/><dir name="Grid"><file name="Massaction.php" hash="81e99da4acec59e14a5328d88d1eef59"/></dir><file name="Grid.php" hash="2d48734f2ffba326c7e48f1c79fec71b"/></dir><file name="Process.php" hash="a5905ac7c9d456b64ab5efcbb01bfce8"/></dir></dir><file name="Exception.php" hash="3f9709e30bf75621f0b2b009fac764a3"/><dir name="Helper"><file name="Data.php" hash="526c8c51d7557bb7e2bebdc796d83dee"/></dir><dir name="Model"><file name="Event.php" hash="4ddf63e7fa648061409e0225cd44e404"/><dir name="Indexer"><file name="Abstract.php" hash="3456ff7dde44167200fa592863a01abb"/></dir><file name="Indexer.php" hash="7e249ec7766c897fcc067337af52f972"/><dir name="Lock"><dir name="Storage"><file name="Db.php" hash="7b6395c88009ce3b639153553dbfbe90"/><file name="Interface.php" hash="228a5b390d2eb1461f8284f0b0a0e436"/></dir></dir><file name="Lock.php" hash="18ae0b5da223a0e92aed6b366118633f"/><dir name="Mysql4"><file name="Abstract.php" hash="da2155dd41c4e0bc6d59024cfb8ecb6c"/><dir name="Event"><file name="Collection.php" hash="309b479d4c1fd12a8bb3ef51ab199245"/></dir><file name="Event.php" hash="b25a7b1d24b6260998c37c63c333d8b2"/><dir name="Process"><file name="Collection.php" hash="254e38062f1c44ddeb34b6e28bf1cd70"/></dir><file name="Process.php" hash="50c2548f9175cc128f8cb28251d82ab0"/><file name="Setup.php" hash="e173a9a5363dc1795e537e33aa2fd2e0"/></dir><file name="Observer.php" hash="f651484dc38526885bcb6b52a330a92c"/><file name="Process.php" hash="1beada279d1055354e1567b610ecf06b"/><dir name="Resource"><file name="Abstract.php" hash="e3f04920b0ccdcf81cad334aa4c98d92"/><dir name="Event"><file name="Collection.php" hash="7e1da3865c397d4f8f8f39deacdaf477"/></dir><file name="Event.php" hash="b38237c2f5e6479523e2e5dca54abfb7"/><dir name="Helper"><dir name="Lock"><file name="Interface.php" hash="68edac6eef4180e63de6c52596f2b6b7"/></dir><file name="Mysql4.php" hash="02072c9858b4d309efadf7b07f58538d"/></dir><dir name="Lock"><file name="Resource.php" hash="b1ade0fb2bf60074421c007373cd8f87"/></dir><dir name="Process"><file name="Collection.php" hash="23640077491875846f0bd74705a3fb3d"/></dir><file name="Process.php" hash="6cc0a505a68ac88ea9a9fd8bfed8ace4"/><file name="Setup.php" hash="9d334f0343ac10a2224fab7adb308709"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ProcessController.php" hash="828bd6d468d2ac1b795a96963e61effa"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="881d9be8b3c918a1cf77f9e930efdf42"/><file name="config.xml" hash="0f27f7d206075ae8f14bff9293b2189c"/></dir><dir name="sql"><dir name="index_setup"><file name="install-1.6.0.0.php" hash="15418fe240598d12bf4d35dfd4d30a24"/><file name="mysql4-install-1.4.0.0.php" hash="3d1236edd44f29b962421065da8f0296"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="1c13dc777f4d4ed5ecd9ba41006fa6d3"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="4469700c7a18ff4a769e76be0c90266e"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="614694540111f3a5a21295109475a53e"/></dir></dir></dir><dir name="Install"><dir name="Block"><file name="Abstract.php" hash="555000323855b771524db1059d3c7325"/><file name="Admin.php" hash="acc664e804f36a76f83951fa9e006179"/><file name="Begin.php" hash="3c352bab206779b7424b8353cda33106"/><file name="Config.php" hash="5aaa7143564a85f0514f302e750756e2"/><dir name="Db"><file name="Main.php" hash="b47e431840dcbd7f3ad112a5bab094ff"/><dir name="Type"><file name="Mysql4.php" hash="0758a30a32781d178ceebf407b8ec7ed"/></dir><file name="Type.php" hash="29ba04bc5cfacd3edd3af12454ecf420"/></dir><file name="Download.php" hash="015e92ffaafb93fbc7734a019747cefc"/><file name="End.php" hash="6869d3d567eca578c8ac18375c235764"/><file name="Locale.php" hash="c237683a54c18d9e9c1e592cf3abfa32"/><file name="State.php" hash="d2b2eb2154ba0696c2e8f51c360fb38c"/></dir><dir name="Controller"><file name="Action.php" hash="936a0d4a816a2f20af2e82075fc09faf"/><dir name="Router"><file name="Install.php" hash="daad88210875f371d0308ad9232527ff"/></dir></dir><dir name="Helper"><file name="Data.php" hash="19d3c8e41fbdb23f2d36c7136daf4ca3"/></dir><dir name="Model"><file name="Config.php" hash="97fe63982485036efc55aa51f5a56664"/><dir name="Installer"><file name="Abstract.php" hash="3cfd0c23eec851411c164e572f2a9d77"/><file name="Config.php" hash="6d712ce39c557e7170d3450401a66bad"/><file name="Console.php" hash="a1a9e4fa9c3a75a3a3672d80ec6f7445"/><file name="Data.php" hash="3187a8648f8bd73efc4037e7491a29c6"/><dir name="Db"><file name="Abstract.php" hash="ee952066e04729eb05b4aad84e1266aa"/><file name="Mysql4.php" hash="58e387d6ca053687e4dc3c16664105d9"/></dir><file name="Db.php" hash="1c677f1de56b0cfed06c89d43fd2e6a4"/><file name="Env.php" hash="ab54af3da141dcffd4550230932fc31b"/><file name="Filesystem.php" hash="dd2164debedfc223c151543d6604754b"/><file name="Pear.php" hash="ea295ba14228f45bac4fd7c0efe3b655"/></dir><file name="Installer.php" hash="8aab26a891e8786b3fd82d1a6ddd2d86"/><file name="Observer.php" hash="7121ca74bcbf584b617f1beedb6b8a22"/><file name="Session.php" hash="cc550bb13df895f0ea855727598c60c2"/><file name="Wizard.php" hash="5d0aee29acb9303f1769d3a254335a1a"/></dir><dir name="controllers"><file name="IndexController.php" hash="256c45076b06fa9e37bda5b226d085b0"/><file name="WizardController.php" hash="20a361bc4c1b891c0406740e24dde5ab"/></dir><dir name="etc"><file name="config.xml" hash="d6b69e99d14fba4296f9ddf90ae4ec25"/><file name="install.xml" hash="31da31823570f91544558cd61c7fc226"/></dir></dir><dir name="Log"><dir name="Helper"><file name="Data.php" hash="30ae369a1aa4759d45a453609b5dad3c"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Loglevel.php" hash="9cad9bf72c99c36940a09de844584716"/></dir></dir></dir></dir><file name="Aggregation.php" hash="5f78ce71ac5613af4644991bf532ff0b"/><file name="Cron.php" hash="d8ad0584b0f7ac24aff2ff0d6cc4cd91"/><file name="Customer.php" hash="b5f937ab16fa39630d9109616fbcbf59"/><file name="Log.php" hash="3aeefc6a2d29ec116b3099bd92164549"/><dir name="Mysql4"><file name="Aggregation.php" hash="b97140f67f21e77ede87b020e9517f5e"/><file name="Customer.php" hash="0d514c735d2ac96ab53aef336ec152c6"/><file name="Log.php" hash="f8e29884e1fe0ea14f53216ea119b753"/><dir name="Visitor"><file name="Collection.php" hash="a310d6e6b71610a4282e467a1b4aa41c"/><dir name="Online"><file name="Collection.php" hash="eb1e5990f2e12de88f7b0aa2b1b62dc1"/></dir><file name="Online.php" hash="e9b8b8a9bd0f56a674ef13f26e76173e"/></dir><file name="Visitor.php" hash="4102a469fbf239d68fb7b2ffb9905a22"/></dir><dir name="Resource"><file name="Aggregation.php" hash="4ce2a95673f3e0d6a96b9416adc1435c"/><file name="Customer.php" hash="e6d3b8a6a126f61a432b4a24967bcdfa"/><file name="Log.php" hash="cd9efd22a95cebc176759b75f3479a6b"/><dir name="Visitor"><file name="Collection.php" hash="a71743a48c7c2074c1af4611b8d8e905"/><dir name="Online"><file name="Collection.php" hash="50f686d723180437039b42ea42553113"/></dir><file name="Online.php" hash="b04b67e7d53aaa3cc4e96f12179bc905"/></dir><file name="Visitor.php" hash="55fb2c737e70985f71d03e9b2d5f3f20"/></dir><dir name="Visitor"><file name="Online.php" hash="c8744cb16a9038474c624a4bc0939166"/></dir><file name="Visitor.php" hash="928d3f4c1949c88f8ef947e47affb03d"/></dir><dir name="data"><dir name="log_setup"><file name="data-install-1.6.0.0.php" hash="83ebb5d68ec9c7a74ea170c7ad4d523d"/></dir></dir><dir name="etc"><file name="config.xml" hash="752c4b618caa3b66cba80355f680f61f"/><file name="system.xml" hash="1d8c7a56952b37a70adba7d4005d69e5"/></dir><dir name="sql"><dir name="log_setup"><file name="install-1.6.0.0.php" hash="e4885569c21f047e584cf37ba17af655"/><file name="mysql4-install-0.7.0.php" hash="d3b05b14033df61f11df7029aab003a0"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="b822f8f0e83f17b4853b78b816205ef9"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="44c6c31099f5e75706ef83c6c0d3e0d8"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="942917aad3bd435d793185fb16dfa1f6"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="273e630ff2847772bc2f0680947defa2"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="7dcc3a767526ab0fa4b626538011fd4a"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="9f31ffe2d94a4610da2b65219f42cb2c"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="81747aadb709ceef438bd9005f838da3"/><file name="mysql4-upgrade-1.6.0.0-1.6.1.0.php" hash="88ba8d186737c788be142f3b1f99c732"/><file name="mysql4-upgrade-1.6.1.0-1.6.1.1.php" hash="3ae3748b58bb788c9b1aed2198689aa6"/></dir></dir></dir><dir name="Media"><dir name="Helper"><file name="Data.php" hash="26771745a6464a7198d3e593254ca53d"/></dir><dir name="Model"><dir name="File"><file name="Image.php" hash="963140ba20341c36389eb43c64d54d9b"/></dir><dir name="Image"><dir name="Config"><file name="Interface.php" hash="57b1124aa9c503223ef3f88a5a967e33"/></dir></dir><file name="Image.php" hash="ed0066b2bf423c2cefed47ddb1af4236"/></dir><dir name="etc"><file name="config.xml" hash="1f67f3dc20255bd6e3cd3280969a23a9"/></dir></dir><dir name="Newsletter"><dir name="Block"><file name="Subscribe.php" hash="449ab55028a54ca25d0839b9cfc5b0b8"/></dir><dir name="Helper"><file name="Data.php" hash="14eceb7d1f476c6d32a0bc989e25f655"/></dir><dir name="Model"><file name="Message.php" hash="3cf3c04a138a75d3d21b60aebf14e8bf"/><dir name="Mysql4"><dir name="Problem"><file name="Collection.php" hash="3d949f32e546368ff16e02e088233531"/></dir><file name="Problem.php" hash="85f0b29f8d01c7869a6b436b38b62233"/><dir name="Queue"><file name="Collection.php" hash="361b217b7fd75fe633ac97e1d665da54"/></dir><file name="Queue.php" hash="4ee1b747ca7dbffcaf84a933341b7642"/><dir name="Subscriber"><file name="Collection.php" hash="e7141e4d1f981040b525a268cfbbe0b6"/></dir><file name="Subscriber.php" hash="4d67750c55b9944f29c7c127a1630e8a"/><dir name="Template"><file name="Collection.php" hash="761c9841afb177482318503120ecf6c2"/></dir><file name="Template.php" hash="0b3568e98b4a06b9eacdd19c40e2c35b"/></dir><file name="Observer.php" hash="f01f66d03b935a633b2a47e5177e6753"/><file name="Problem.php" hash="609d83b319fccdfdd963caef0dd98b7a"/><file name="Queue.php" hash="03683875ef4fb937ac4fd7ff32cb3db7"/><dir name="Resource"><dir name="Problem"><file name="Collection.php" hash="b38f7bc74ebaa7bc00b1cc6fc7522d45"/></dir><file name="Problem.php" hash="9759f8034517091ffeff187d0f1cc143"/><dir name="Queue"><file name="Collection.php" hash="3e77b2973b1d1e9ee11b3fffa4a019e3"/></dir><file name="Queue.php" hash="d48763a0ddf55e5acce61a64c5a0e342"/><dir name="Subscriber"><file name="Collection.php" hash="fe744d0af0f83889863470f07021cc2f"/></dir><file name="Subscriber.php" hash="381627f97da58822b99c853fceea89ed"/><dir name="Template"><file name="Collection.php" hash="1d5164328ce7a03fc4425c72e2929f84"/></dir><file name="Template.php" hash="274acf2f5d0e27a4c5190061ac53f19c"/></dir><file name="Session.php" hash="9ba9110e39fe7c83ea5d3d8083a83f40"/><file name="Subscriber.php" hash="b356c4fb473c18c566204ea520ece6ab"/><dir name="Template"><file name="Filter.php" hash="bbed59b047d5680c0980dd5c2d124f36"/></dir><file name="Template.php" hash="3706ee69d89cbf54d6b84622451215e0"/></dir><dir name="controllers"><file name="ManageController.php" hash="f7829644363c4307be49d59b3a480f79"/><file name="SubscriberController.php" hash="6e44a9acf8256e118ee24fbad6f88dab"/></dir><dir name="data"><dir name="newsletter_setup"><file name="data-upgrade-1.6.0.0-1.6.0.1.php" hash="4cf6778e36701416f8c01cf7b109f145"/><file name="data-upgrade-1.6.0.1-1.6.0.2.php" hash="888b0e1cbdd1d55dee197b4d91370314"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="503ba54d7c27fa034797c32c9bd0b7dc"/><file name="config.xml" hash="3c69e269d11922d08bdeaadb6aaadb4e"/><file name="system.xml" hash="7ef3fb951e816306912826b8697a27d4"/></dir><dir name="sql"><dir name="newsletter_setup"><file name="install-1.6.0.0.php" hash="58883f3e4e4c19304b7029df9d5d5e66"/><file name="mysql4-install-0.7.0.php" hash="0c1559a857127c060b1505c3c696b8b4"/><file name="mysql4-install-0.8.0.php" hash="a1544eb72c9a919917611239ef5f1988"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="8efdcb593f2e1007738ef1c18f3d7de1"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="58d80ff20a72380bdff5ea6959131765"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="faa728001981a1495b3fdee678e16249"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="3593430c5b8682e42147ff755846efb2"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="47e0fb7b1c861432c1b2b3162ab8f9a6"/></dir></dir></dir><dir name="Oauth"><dir name="Block"><dir name="Adminhtml"><dir name="Oauth"><dir name="Admin"><dir name="Token"><file name="Grid.php" hash="42036a33467da4f42d9058ddd47ab959"/></dir><file name="Token.php" hash="e4ce330fec980d7a70e2f88403c0c66e"/></dir><dir name="Authorize"><file name="Button.php" hash="71991ce5a051162fba9687620c5290ba"/></dir><file name="Authorize.php" hash="c6bf2c6799b7198418fe9a7e9d01c683"/><dir name="AuthorizedTokens"><file name="Grid.php" hash="76a530eda3c116a423400284c20f5c9c"/></dir><file name="AuthorizedTokens.php" hash="c9d45c65803f066fa8438be651c285d8"/><dir name="Consumer"><dir name="Edit"><file name="Form.php" hash="2226a3bcda3e8c3d2388135c5472b9db"/></dir><file name="Edit.php" hash="199e0dcb4a0a490de70b964b7b5cdb9b"/><file name="Grid.php" hash="26eb0ea15a6d1d5489f314cec6f661e4"/></dir><file name="Consumer.php" hash="0312def158a954066ad38a714819ba72"/></dir></dir><dir name="Authorize"><file name="Abstract.php" hash="f353f1ba5541b14e93b2b435aca1b545"/><file name="Button.php" hash="346967facd6467c8b10af56bc79eb306"/><file name="ButtonBaseAbstract.php" hash="16c30c4c11dcca0bb6f881c5caaed97c"/></dir><file name="Authorize.php" hash="f97e5456556525395dee90320c4436ad"/><file name="AuthorizeBaseAbstract.php" hash="a465b5fb6fb39b657966057c6ccff3b9"/><dir name="Customer"><dir name="Token"><file name="List.php" hash="3ffbb0ed0553620eb7f3fbe6e9016599"/></dir></dir></dir><file name="Exception.php" hash="f4e95c4ab7bad97ff9577d33ec4ab39a"/><dir name="Helper"><file name="Data.php" hash="9ad92655975ce86bb2df598306c7ea4b"/></dir><dir name="Model"><dir name="Consumer"><dir name="Validator"><file name="KeyLength.php" hash="b4b6e8060e7d3e294f7901dc35725f49"/></dir></dir><file name="Consumer.php" hash="e25d96d06e6d8da85bf5682c52fe9c5c"/><file name="Nonce.php" hash="9769e90a4ed04e55aa61e6d4d2dc36a2"/><file name="Observer.php" hash="c74d4927d19fbddac91433efd6922bd7"/><dir name="Resource"><dir name="Consumer"><file name="Collection.php" hash="71ba2fcde335893d300a9eabcd00c837"/></dir><file name="Consumer.php" hash="fef2c17117346cdbda4a13ad1d76b398"/><dir name="Nonce"><file name="Collection.php" hash="cf540be396de9075c3faad12a0f185a7"/></dir><file name="Nonce.php" hash="1aa04099dd8af352a53941355cb637e6"/><file name="Setup.php" hash="f4e3e2147d0f2a707ba7626f64174fcb"/><dir name="Token"><file name="Collection.php" hash="9b7d966bb3eb546bca3e02e6ad926ec6"/></dir><file name="Token.php" hash="d68c2670ee4466f74bef021fd8d1d2fe"/></dir><file name="Server.php" hash="242f6708ffec74be6f3fb5a1b3344bb8"/><file name="Token.php" hash="a514038f9060a508704578c4fc7687de"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Oauth"><dir name="Admin"><file name="TokenController.php" hash="8e468113385b7a74e3839dad6c498876"/></dir><file name="AuthorizeController.php" hash="7f7733f394041f5a87571c5a8299d740"/><file name="AuthorizedTokensController.php" hash="bcbce949721b421810bde10f13a8908d"/><file name="ConsumerController.php" hash="d65a605940f42aa8ff904d0e1a15017e"/></dir></dir><file name="AuthorizeController.php" hash="911adff8b475a3da8a22adc711522c45"/><dir name="Customer"><file name="TokenController.php" hash="927ebd85e7a1c2f4d131169e4d07ab5e"/></dir><file name="InitiateController.php" hash="a1313c0315c9cf39f182b096013c3600"/><file name="TokenController.php" hash="d823cd1d366e521328961389696e6d76"/></dir><dir name="etc"><file name="adminhtml.xml" hash="14e19f6615abc0e1fa1ad599784fbd1f"/><file name="config.xml" hash="6e8262e104995201cdf1364b6f8ade1d"/><file name="system.xml" hash="6e56da8ad6bcd25048783b50946a8ee2"/></dir><dir name="sql"><dir name="oauth_setup"><file name="install-1.0.0.0.php" hash="1a04a4872f35972c93888c4ac6a3877f"/></dir></dir></dir><dir name="Page"><dir name="Block"><dir name="Html"><file name="Breadcrumbs.php" hash="76af1c2d62a351333dcf0d5b08fec99f"/><file name="CookieNotice.php" hash="d99d2a80b967fbe83f55f23ad52becb2"/><file name="Footer.php" hash="ff6f73f6b42e113499ae3b3064bb430f"/><file name="Head.php" hash="f1ec3c20a89e408bfda4d199b608800f"/><file name="Header.php" hash="b5796cf01cabb982036e16b31c3d802a"/><file name="Notices.php" hash="d73e9b23a0554aa17d65dc9fe9a41f8b"/><file name="Pager.php" hash="cb7e6e7f110b4aae632f042992f13dea"/><file name="Toplinks.php" hash="0ca598406370b7c20b701e1503de60c2"/><dir name="Topmenu"><file name="Renderer.php" hash="c7820b31bfc7f45f214e0443889ef1f9"/></dir><file name="Topmenu.php" hash="d6038fa18c19d3a1790783f1a1cdfc34"/><file name="Welcome.php" hash="e29f11ee527cf91312c1df7a1169a3ec"/><file name="Wrapper.php" hash="728d2084b2ca0112b9d19d3621f376f3"/></dir><file name="Html.php" hash="fb9c260b36a23840c073ee9a8767e994"/><dir name="Js"><file name="Cookie.php" hash="9c3b30a237707c39b54125be0c6c8b95"/><file name="Translate.php" hash="7b301f7fdc537ae8845db32933577ba7"/></dir><file name="Redirect.php" hash="9743b0e148b44690057ce8aef91c32f1"/><file name="Switch.php" hash="2813eb1fcc51fbd521f62ca8841b2503"/><dir name="Template"><file name="Container.php" hash="a47ca180b7c5fe949b77ab548a148a7a"/><dir name="Links"><file name="Block.php" hash="7a36747c24374c252232ae00d1e07e4b"/></dir><file name="Links.php" hash="209d295ad695628faf975c1366e3f70d"/></dir></dir><dir name="Helper"><file name="Data.php" hash="b3237bb0b644e30e9de83668c2c57f75"/><file name="Html.php" hash="d50c1710bf6ac9bd53637016c514736b"/><file name="Layout.php" hash="b2ab663e18bb1617a8c520b0ff87e03c"/></dir><dir name="Model"><file name="Config.php" hash="ce257767900549bccb75fbac14b14b0b"/><dir name="Source"><file name="Layout.php" hash="498643f03bf27d411a95c1885970b4cb"/></dir></dir><dir name="etc"><file name="config.xml" hash="1e437f497da55c56e92332739548ffd6"/><file name="system.xml" hash="35f4c6faed23af9b665de3933c674820"/></dir></dir><dir name="PageCache"><dir name="Block"><dir name="Adminhtml"><dir name="Cache"><file name="Additional.php" hash="3dba80fb53e5a4e05ab038242a5062a6"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="82b38eb4d6f3326dced9558236f05b84"/></dir><dir name="Model"><dir name="Control"><file name="Interface.php" hash="32465287fd5ad49a5373b2f49c6d7787"/><file name="Zend.php" hash="ae15c24b95b8a22abb718c2615d1501a"/></dir><file name="Observer.php" hash="1cc8787360b74db204bc992a9961a810"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Controls.php" hash="da7eb2b87b1c384efa2acab229a831e0"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="PageCacheController.php" hash="8253cb13731f25fdc7054db569def5de"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="cf82072d1f673dd4f2cb8298d944b06a"/><file name="config.xml" hash="c4fc5364d36f687cf8ae0c9ebfcd5d07"/><file name="system.xml" hash="d8f45c4bac9d0d1f705c6bcd46c2ca57"/></dir></dir><dir name="Paygate"><dir name="Block"><dir name="Authorizenet"><dir name="Form"><file name="Cc.php" hash="3a748028fe3f5b5d5f066c448f419fba"/></dir><dir name="Info"><file name="Cc.php" hash="a78355ba5a73bc8f26fccf2373cc2ae9"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="e9561c30aa2df8e942f466c827656736"/></dir><dir name="Model"><dir name="Authorizenet"><file name="Cards.php" hash="668c87965a89ec7ad2aa5fd30cdc4ca3"/><file name="Debug.php" hash="8618355606cd3814e802dc10c700b41c"/><file name="Request.php" hash="c1f4b4089359478b40a1b6a9e23351c2"/><file name="Result.php" hash="bf8a7bbce2821c12d49cbf7984d23b99"/><dir name="Source"><file name="Cctype.php" hash="71c90de1db4b2238bc322349f070730c"/><file name="PaymentAction.php" hash="83e8c00869bf0234049555f0f22c8ebe"/></dir></dir><file name="Authorizenet.php" hash="3b79d254814dcb1a5ff8815ea38594a1"/><dir name="Mysql4"><dir name="Authorizenet"><dir name="Debug"><file name="Collection.php" hash="213ce4998f43bc900c8df45cfd5100a3"/></dir><file name="Debug.php" hash="b25abe86de7da9d31b0e6e2fbebca46e"/></dir></dir><dir name="Resource"><dir name="Authorizenet"><dir name="Debug"><file name="Collection.php" hash="96579efd296c9747bc69ddb93563c7c7"/></dir><file name="Debug.php" hash="8b16f0e8c62f27c974a630174b445e9e"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Paygate"><dir name="Authorizenet"><file name="PaymentController.php" hash="0786c25427d18f4c42d7e0dbeeecce44"/></dir></dir></dir><dir name="Authorizenet"><file name="PaymentController.php" hash="cba52139f51e9c6036da7a9d43000559"/></dir></dir><dir name="etc"><file name="config.xml" hash="7d9c108a4f7461e38e453595ae99e166"/><file name="system.xml" hash="4c7ad997873f413974b8d7acda17fe00"/></dir><dir name="sql"><dir name="paygate_setup"><file name="install-1.6.0.0.php" hash="b42125deb1bb3e94a0b964bce550a2db"/><file name="mysql4-data-upgrade-0.7.0-0.7.1.php" hash="4f22fe3689b223adc5818e70691f671c"/><file name="mysql4-install-0.7.0.php" hash="3e2e04f85dfdf7b9fa7697904035e86e"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="48c76ca9ce36054b194288542f4bbd25"/></dir></dir></dir><dir name="Payment"><dir name="Block"><dir name="Catalog"><dir name="Product"><dir name="View"><file name="Profile.php" hash="4cbf4eb8350c8a40f01970c7960122de"/></dir></dir></dir><dir name="Form"><file name="Banktransfer.php" hash="ca8b755ddb73aeb8b2f35b9f75338a0f"/><file name="Cashondelivery.php" hash="ff169ed043cc386faf01e8fe15bf3022"/><file name="Cc.php" hash="2389f3a83069e0643b4e750ba4e8e44f"/><file name="Ccsave.php" hash="5ff8d24e9e6a4297b8e4f687368da407"/><file name="Checkmo.php" hash="bdc8bb2c6ba10b7e9957e8e521e90c12"/><file name="Container.php" hash="cec07bf2ca7b4b2bb3a0baa0ffb9f2c1"/><file name="Purchaseorder.php" hash="137da51f5fde7f115c2a85a5b36990a4"/></dir><file name="Form.php" hash="dd368566c7eb6919ad947e78cbe1859e"/><dir name="Info"><file name="Banktransfer.php" hash="ecf02d9d5721675e2975d7dfec284403"/><file name="Cc.php" hash="99dc5f4df2287ab2c22bdc58542f074b"/><file name="Ccsave.php" hash="082a31b849bbb55a59190e02893a75d5"/><file name="Checkmo.php" hash="64b822848cc97dcd27bd0bd3f01e1656"/><file name="Container.php" hash="2ee3f38b5cd1f6fa43b95a858d921708"/><file name="Purchaseorder.php" hash="0fe351afef830b891f9bfb105c44d030"/></dir><file name="Info.php" hash="f71e6f15698f402e9189ca9e5bc670b4"/></dir><file name="Exception.php" hash="beb2d8551ade49853e5437659b614c6c"/><dir name="Helper"><file name="Data.php" hash="7b268b8060a3e70aa39971ef7258a253"/></dir><dir name="Model"><dir name="Billing"><dir name="Agreement"><file name="MethodInterface.php" hash="424553e9cc4fe2fa6befb6401bcf1006"/></dir><file name="AgreementAbstract.php" hash="4043c168c28cfb9a86f15bdde1aa4f33"/></dir><file name="Config.php" hash="195db58e611647682704767e965799e9"/><dir name="Info"><file name="Exception.php" hash="fc52e6ca869415f8a26d7f36a5752f60"/></dir><file name="Info.php" hash="38f6883ca27e92501ca87f8c5310c983"/><dir name="Method"><file name="Abstract.php" hash="7fcbd59cc63e90c83a8ac304b21fb959"/><file name="Banktransfer.php" hash="fb540e43ac0f7fd3bd1635e4762fdbd4"/><file name="Cashondelivery.php" hash="b09ee08f6805fbef82daed86b26548d4"/><file name="Cc.php" hash="84f1de4c65ee35656911a740549912a1"/><file name="Ccsave.php" hash="6df7df82d30724aacb47c6447cb1fcac"/><file name="Checkmo.php" hash="20737ca73dc12889ac107605ec7d27ca"/><file name="Free.php" hash="0b771056ddecea00184fe0c141550e47"/><file name="Purchaseorder.php" hash="a7b2b57eb818f50e3508c7838ad211be"/></dir><file name="Observer.php" hash="d6337e367754f1da2328f9907c9a17e6"/><dir name="Paygate"><file name="Request.php" hash="86a6803dfe434c5d7afc2fd7b27cc3db"/><file name="Result.php" hash="4f715aa54c36a891099828332fc68aee"/></dir><dir name="Recurring"><dir name="Profile"><file name="MethodInterface.php" hash="d434add969bedb69762a5be4866f54d3"/></dir><file name="Profile.php" hash="f07c2863b3b89472e76678fca27cdf0c"/></dir><dir name="Source"><file name="Cctype.php" hash="8941383914fc870894a525c394311e10"/><file name="Invoice.php" hash="bbb8f9293ea7928c47007f7c05066b63"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="7a5adf8c1263e48cf2f9071c5195ee2a"/><file name="config.xml" hash="74b9d5cb7149617310b34c1f59542126"/><file name="system.xml" hash="adcf3b2b91219f1f5526b0f70849f65c"/></dir></dir><dir name="Paypal"><dir name="Block"><dir name="Adminhtml"><dir name="Settlement"><dir name="Details"><file name="Form.php" hash="7a5470652fc38ab2c5918a16becdf54f"/></dir><file name="Details.php" hash="49132e87516ed2cd05aa80f7a4afbcb2"/><dir name="Report"><file name="Grid.php" hash="3e6dda1e1a4aadbd6007772f17cd35dc"/></dir><file name="Report.php" hash="c3104724d674c1317dc23146436dc33e"/></dir><dir name="System"><dir name="Config"><file name="ApiWizard.php" hash="237edd4428f23a4d0824161159031907"/><file name="BmlApiWizard.php" hash="0d02c63e9dcd5d8f92abbf6a7435e9d2"/><dir name="Field"><file name="Country.php" hash="194bfb6c4fd11f9eedaa2df850a243ba"/><file name="Hidden.php" hash="fc1085a05c3570cc1345d82bc6f46153"/><file name="SolutionType.php" hash="c199b755054bed63b98bcfe870ee24c3"/></dir><dir name="Fieldset"><file name="Deprecated.php" hash="75ccac6c4a42d1d89bd4453afc5d7936"/><file name="Expanded.php" hash="f6979eb0dec53d903b255cb81fa64e7d"/><file name="Global.php" hash="b243db32fddae60eda87b9cf8615983d"/><file name="Group.php" hash="8fc7543ec871e4bc58965ec050f19f9d"/><file name="Hint.php" hash="849288a88f8ecff4c66bd9b7f39f5f73"/><file name="Location.php" hash="6bed7b43656d2201e15fed7c4ee91372"/><file name="PathDependent.php" hash="e4a8685376fa5318336d2285b727cb6d"/><file name="Payment.php" hash="202f147418cb85a3d895f96b76eeb412"/><file name="Store.php" hash="8cf7dfe2261b400034ab9e8d45b31e49"/></dir><dir name="Payflowlink"><file name="Advanced.php" hash="dbb8abc9fc791cd9e4f9d8b0db1a5799"/><file name="Info.php" hash="0b570584ebe08a45704445fb84b7e64d"/></dir></dir></dir></dir><dir name="Bml"><file name="Banners.php" hash="9ce71c3a54451fd06f8a58d6dfa94774"/><file name="Form.php" hash="8861e608e012ad0d129cbaacce543fa4"/></dir><dir name="Express"><file name="Form.php" hash="2dfe96f6ec89fa9cc6efba0d71efcb27"/><dir name="Review"><file name="Billing.php" hash="f87c07fbe423ba3cfbae38b0359f8e9d"/><file name="Details.php" hash="41e9c8426c47365611cfdd8c2cba6537"/><file name="Shipping.php" hash="87ab76371ff5d8cf3cff2adf2d864347"/></dir><file name="Review.php" hash="1b9840c465a17813701faf8c4307315f"/><file name="Shortcut.php" hash="fd29062b729328ca291f45c5ad541773"/></dir><dir name="Hosted"><dir name="Pro"><file name="Form.php" hash="fb0a5f67251cc199cd8ce40b4e543003"/><file name="Iframe.php" hash="6ad033d68b559ae0eeb0f4ce580368aa"/><file name="Info.php" hash="88de1e67a4cf09a19b18db35594e2f83"/></dir></dir><file name="Iframe.php" hash="130b950fb3db789617577e253f44d0d4"/><file name="Logo.php" hash="01ad9e06cf747d11e56fb1232191fa97"/><dir name="Payflow"><dir name="Advanced"><file name="Form.php" hash="e27e11120227c4317975d53d6ec87a07"/><file name="Iframe.php" hash="dbdcf942fcca65ce33275ec2546c4cfc"/><file name="Info.php" hash="c653c07418e1b95851a35dfa6167c703"/><file name="Review.php" hash="fc88e4f21988be8c6df7d6061c305c40"/></dir><dir name="Link"><file name="Form.php" hash="3aa3d74747d840e18d4573e68c7a7986"/><file name="Iframe.php" hash="da1e91b2b849623f4b12bd7f64bcbd04"/><file name="Info.php" hash="a0870dd47d4228d2d425e4a3f5f27f2e"/><file name="Review.php" hash="13c8891d5e0cefda15c57b6e402bf6ff"/></dir></dir><dir name="Payment"><file name="Info.php" hash="7f2d80e99718b0c94a08347d73a64da4"/></dir><dir name="Standard"><file name="Form.php" hash="d4bd08c533fe4c4db3daab3bf9360860"/><file name="Redirect.php" hash="36d3646e7d3e4013847ff219e3f9e3db"/></dir></dir><dir name="Controller"><dir name="Express"><file name="Abstract.php" hash="4695d1fac56793866c282316b3d33917"/></dir></dir><file name="Exception.php" hash="7dee8f2f62ac73a1c4e25b12fb85a3fb"/><dir name="Helper"><file name="Checkout.php" hash="f71e0d44157c5c7c710f768317a418b0"/><file name="Data.php" hash="0e4a617f7985832bca600b52de577278"/><file name="Hss.php" hash="1643e958dd97f7b024e5412d82e0de3c"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="5c289e9731993409f86cee3b2919f4a8"/><file name="Nvp.php" hash="d62ad239a8f1ceb38f1dad77986f40d6"/><file name="ProcessableException.php" hash="4313e637008571be2bd2d86f6a560112"/><file name="Standard.php" hash="986fd1dec22bc55cb84ecf75c7bc3729"/></dir><file name="Bml.php" hash="ac3c55752b8eb272c9481fc11521bb0b"/><file name="Cart.php" hash="d6979cb0fe3174d7d70bbf26474b3a16"/><file name="Cert.php" hash="8b23417ca6e231a0ec8f89a6e769f01e"/><file name="Config.php" hash="d356e412f4eca6207004674303791ad6"/><file name="Direct.php" hash="04692b3598ead300783c59dc664e5ad5"/><dir name="Express"><file name="Checkout.php" hash="ad1ee11ffcf63815cea1c988f8679697"/></dir><file name="Express.php" hash="553e93873ac88d39e98b5a01ef0e26f2"/><dir name="Hostedpro"><file name="Request.php" hash="4aaa99812f8ba31c0e2aee9c18d68671"/></dir><file name="Hostedpro.php" hash="14ae27c0f8a9d9c2ec1525ec9b06be7c"/><file name="Info.php" hash="31e9a1d2d63b0d826079a4c74a4779d2"/><file name="Ipn.php" hash="5a216c988a5b749bcda0bf0acba621c7"/><dir name="Method"><file name="Agreement.php" hash="c24473819dda2b2d6d6ff3dcc8f66b46"/></dir><dir name="Mysql4"><file name="Cert.php" hash="e873d71130a68719913fd5d2cc5cde98"/><dir name="Report"><dir name="Settlement"><dir name="Row"><file name="Collection.php" hash="e91f7ac5962615e0bd88ad266397f351"/></dir><file name="Row.php" hash="546eca3d90673785045eed293e0eacb3"/></dir><file name="Settlement.php" hash="1fb1b95e74a309c82098aa33267dddf2"/></dir><file name="Setup.php" hash="25c05eab1013655aa210df9db8b24e5a"/></dir><file name="Observer.php" hash="425f8814bb8c74fec03ae794960341ae"/><dir name="Payflow"><file name="Request.php" hash="4e6e0e5b184f618e00f58a193f9947c8"/></dir><file name="Payflowadvanced.php" hash="2d03cd17c394c87dd24eaedb15099df0"/><file name="Payflowlink.php" hash="7a4d9c3add43af18a085145abb7f947f"/><file name="Payflowpro.php" hash="ea5729b6eecc3703ffa5870a490a4b26"/><dir name="Payment"><file name="Transaction.php" hash="6b591f640c751a19076203c300387493"/></dir><file name="Pro.php" hash="50866ddf07601f6f95600cbe36fbf789"/><dir name="Report"><dir name="Settlement"><file name="Row.php" hash="e8ce793bd31bfdbb335e5b7c88ee6481"/></dir><file name="Settlement.php" hash="bf873501e3ec1dc391091857c29f129b"/></dir><dir name="Resource"><file name="Cert.php" hash="47acda02c8bb5253aec7806152a21256"/><dir name="Payment"><dir name="Transaction"><file name="Collection.php" hash="46c4cbe70814d8248cbcd55914aa4760"/></dir><file name="Transaction.php" hash="a424659b343ac94261106baa4ab76c48"/></dir><dir name="Report"><dir name="Settlement"><dir name="Row"><file name="Collection.php" hash="5e2ad46cf5c7c0f5351ba9657f633f17"/></dir><file name="Row.php" hash="3dfbb758901b47830b60f114073004c0"/></dir><file name="Settlement.php" hash="1acdff09f13b0d35b656aec95d6d1c73"/></dir><file name="Setup.php" hash="37c6198a0a0e5daa1deb681b98d81bf5"/></dir><file name="Session.php" hash="afe645f7f8170a396398c7b19ccb6081"/><file name="Standard.php" hash="7765aa2b21914c56a89ee5e620c3e19c"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Cert.php" hash="e2e25660cbd04ebca8ecece49b2fd048"/><file name="Cron.php" hash="ef3cc65eee0ceac037efa06c9f183ca1"/><file name="MerchantCountry.php" hash="da78abe736c024ecf6f1ddecaaa63526"/></dir><dir name="Source"><file name="AuthorizationAmounts.php" hash="571d007a29c74c59c744f50d29842543"/><file name="BmlPosition.php" hash="60bbdfda6cd86dda0fe90c9700cf2636"/><file name="BmlSize.php" hash="607c977a8aaafcc229143b82cf430c25"/><file name="BuyerCountry.php" hash="799dde6860e145d7b2433d23728a82f5"/><file name="FetchingSchedule.php" hash="f0e755d7731dfb5a2347bf10301704cb"/><file name="Logo.php" hash="27e65c01c0772b1c0d80dcdef6cc4f5b"/><file name="MerchantCountry.php" hash="6ba3235a1ee581aaf4d6713f36588fb5"/><dir name="PaymentActions"><file name="Express.php" hash="801ace31eab8ee2c6d7c8a7e16d9e6db"/></dir><file name="PaymentActions.php" hash="b5b002fac765911a65902f60f0653be7"/><file name="RequireBillingAddress.php" hash="411ab6c7e05926bcf468abf930537ce7"/><file name="UrlMethod.php" hash="f63d754747653c20805e462c19ea5c7e"/><file name="YesnoShortcut.php" hash="90d03993b09bedefc96ffd9805ed1431"/></dir></dir></dir></dir><file name="UnavailableException.php" hash="6aea3ef7d5c6faa61e7db9f7a0642730"/><dir name="controllers"><dir name="Adminhtml"><dir name="Paypal"><file name="ReportsController.php" hash="8a89aa9cddb18427419f685703580e3a"/></dir></dir><file name="BmlController.php" hash="78af6f6e5e867ca3db8c884c06192719"/><file name="ExpressController.php" hash="7ddeae6fed13f82b047a913bb26db088"/><file name="HostedproController.php" hash="19064da0129b279576087d06be8cf6cc"/><file name="IpnController.php" hash="47cb003f48e69d3e287b734356ddd034"/><file name="PayflowController.php" hash="62adc0e1b8c39a493c9dd6878da1b56b"/><file name="PayflowadvancedController.php" hash="461bd3aa8ea93322a72b54bca8284d29"/><file name="StandardController.php" hash="362883e8f15d465d51ab2968a94e9479"/></dir><dir name="data"><dir name="paypal_setup"><file name="data-install-1.6.0.5.php" hash="059b1d115ed5c3bb2a36a9812d35efcf"/><file name="data-upgrade-1.6.0.2-1.6.0.3.php" hash="46c7aff595df6d6bb6271f9f59517dd6"/><file name="data-upgrade-1.6.0.4-1.6.0.5.php" hash="37291b0a8e2303c570801b2969a82525"/><file name="data-upgrade-1.6.0.5-1.6.0.6.php" hash="fa6c77f9043beff5657041a8ee147306"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="fab4507688b1a9c58c66c03a8d896db3"/><file name="config.xml" hash="34dd5390aea2da6b8879d8d829252eef"/><file name="system.xml" hash="b229ac8bc2bef28008308a1a7e64cd61"/></dir><dir name="sql"><dir name="paypal_setup"><file name="install-1.6.0.0.php" hash="e2a0c2a2016d509249a35bf9a2bc8db7"/><file name="mysql4-install-0.7.0.php" hash="f244a03c132a74f31c9f31f1d94a7546"/><file name="mysql4-install-1.4.0.0.php" hash="5b7b095062586fad639f38e6093510ab"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="42c40b94a3dedfc1626294b4f2ef8c82"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="14ae3790f7806b0a42a5d41cad31c86b"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="e35cb5cd3389959767a64db45574d84d"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="29ecb0e7970cb79297902da47cf467ae"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="8e744cbcd04e839ddc7fddaaaa32796c"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="5c36c70f4c75b61a1f259022d30b7a4b"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="06f5655d0fb454ef38e3789d601222fa"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="6b9ddbbf5508514480fa87bbd76ee985"/></dir></dir></dir><dir name="PaypalUk"><dir name="Block"><dir name="Bml"><file name="Form.php" hash="cf1b947ad1c91ba44acedf5decb9a532"/></dir><dir name="Express"><file name="Form.php" hash="f5373e3c537b94289836075f9afb0b51"/><file name="Shortcut.php" hash="b2cdf2c320cd92884fd4abf89faef178"/></dir></dir><dir name="Helper"><file name="Data.php" hash="8e0d1ad6e9324789591fc6239fc3c6ac"/></dir><dir name="Model"><dir name="Api"><dir name="Express"><file name="Nvp.php" hash="64ef2065db009f8abd4648012d824e0c"/></dir><file name="Nvp.php" hash="6af3185466eb67691c2ef46c0a80286b"/></dir><file name="Bml.php" hash="8e3a5e9fe353ea100b3cfe59d230356b"/><file name="Direct.php" hash="be8ed9705207543d515177edabbfb41a"/><dir name="Express"><file name="Checkout.php" hash="953e880327e7656ce8b6beecfe8d8253"/><file name="Pro.php" hash="1e637be10b977f8076cf50afda5d13a3"/></dir><file name="Express.php" hash="5d7be27ca6afc8c62cccccd8c8ce736a"/><file name="Pro.php" hash="5c585f87407ae54513c53d09976832e3"/><file name="Session.php" hash="1b6cb3ba3f1d5c25f5cc39adafb2209b"/></dir><dir name="controllers"><file name="BmlController.php" hash="a0fc8df60f523651cdaecebc60098ece"/><file name="ExpressController.php" hash="784cc6db9289eef6341d1f06690bf54d"/></dir><dir name="etc"><file name="config.xml" hash="04422987a1fa80e48b0139077b8a246a"/></dir><dir name="sql"><dir name="paypaluk_setup"><file name="install-1.6.0.0.php" hash="2cb3e7e5d9b500a7635404f507d868d3"/><file name="mysql4-install-0.7.0.php" hash="740e1532e31f969125a4b91219b9a0c7"/></dir></dir></dir><dir name="Persistent"><dir name="Block"><dir name="Form"><file name="Remember.php" hash="5794677bd73e8be3cfd7fa8f18fdcdd2"/></dir><dir name="Header"><file name="Additional.php" hash="92edbc33bdefc70527d179dd23ef979c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="17656b16d662546d0828b8e4d34faa33"/><file name="Session.php" hash="adcb0096928cea4a896ce70b14087900"/></dir><dir name="Model"><dir name="Observer"><file name="Session.php" hash="5ae73e511745a43fcc752d33931a34a2"/></dir><file name="Observer.php" hash="fe086526a2b481c67c67c5c73ba5da3b"/><dir name="Persistent"><file name="Config.php" hash="483d2a275e39f96af90205a376e9fb22"/></dir><dir name="Resource"><file name="Session.php" hash="681b6641939e4a7b9625dfc11c2bf2d6"/></dir><file name="Session.php" hash="6e09f7fc7fac22537b251053b9d32ff8"/></dir><dir name="controllers"><file name="IndexController.php" hash="33f033033719d3964c41def44f85663e"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3771392801e23c17826e75a9b25372b4"/><file name="config.xml" hash="eec576f615c067affcadf38c40a715ef"/><file name="persistent.xml" hash="018e1087987582ea2136a1c6431278fe"/><file name="system.xml" hash="f7964f686bd76e24c6a8ee84ecaca430"/></dir><dir name="sql"><dir name="persistent_setup"><file name="install-1.0.0.0.php" hash="89227fe784a684f21323cbb1721fb0d1"/></dir></dir></dir><dir name="Poll"><dir name="Block"><file name="ActivePoll.php" hash="2428695a559f9c0c25a26dc1c6e7cbab"/><file name="Poll.php" hash="fc9c9fdf65cb9dd9ec74cf6c183a0adc"/></dir><dir name="Helper"><file name="Data.php" hash="def7c69cc26cf99246cc730f73e1e3ea"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Poll"><dir name="Answer"><file name="Collection.php" hash="b556c72503481d769f6892645ddf1810"/></dir><file name="Answer.php" hash="1d2520e6b3a8e4950a44df50cb942a27"/><file name="Collection.php" hash="66f3595487040e11e6ea00ee45a99b2f"/><file name="Vote.php" hash="a55849069d7fcccd99c2eac27c138591"/></dir><file name="Poll.php" hash="46b968aa2732df14f122b2f1f166fd02"/></dir><dir name="Poll"><file name="Answer.php" hash="2182f29b3b65a58dfd3562a1383dec50"/><file name="Vote.php" hash="1220c89848a6472a8d42b4c6be4fe6ca"/></dir><file name="Poll.php" hash="37200d119b6de58337a6a818ccdca25a"/><dir name="Resource"><dir name="Poll"><dir name="Answer"><file name="Collection.php" hash="7bc645da37afa74785cefa000c4b5497"/></dir><file name="Answer.php" hash="05e9e5d2f19cbce8b84bca05a0b63134"/><file name="Collection.php" hash="cc923a4031b6cd1b568c42d2e8f6f0b4"/><file name="Vote.php" hash="c80497ea204f0e14e54b731f3bdf45e7"/></dir><file name="Poll.php" hash="df6d9f88b6fa3074fbaaf897c610e458"/></dir></dir><dir name="controllers"><file name="VoteController.php" hash="54d64a155fe9582cce3dee023a63f5fc"/></dir><dir name="data"><dir name="poll_setup"><file name="data-install-1.6.0.0.php" hash="e4f42b9770bdb857a581a15e3adf5d8e"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="0228e6dc8be6b89bc8327d82a72a1cdc"/><file name="config.xml" hash="33db549c84b624056296d3d8d3cff78d"/><file name="system.xml" hash="5d03f833d9d4d358136c279264e7d108"/></dir><dir name="sql"><dir name="poll_setup"><file name="install-1.6.0.0.php" hash="3a73db3ca9bb2c9b0ab4b303fd7efc42"/><file name="mysql4-install-0.7.0.php" hash="190909c1080304cba03e361eadfbaae8"/><file name="mysql4-upgrade-0.6.0-0.6.1.php" hash="d1284367365dc74d3b59e6500ef1ab94"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="41a8c5bb804dda85121b359d0775e4ae"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="20f73e58e91b163f8a0080ceabfc5464"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="eac1c3f580e97390201b577d83e1a381"/></dir></dir></dir><dir name="ProductAlert"><dir name="Block"><dir name="Email"><file name="Abstract.php" hash="cfa24038551836778d5dac621a40833b"/><file name="Price.php" hash="5da89d1e652e08598a2bac62e63d9b7e"/><file name="Stock.php" hash="28c2abc40aa9fafaddd734f1abc85532"/></dir><file name="Price.php" hash="18c453fb5964d7c50b5209273d38a0f6"/><dir name="Product"><file name="View.php" hash="62b24a700f162f896ae86fa3acc827ea"/></dir><file name="Stock.php" hash="7c004818f1af75d884a62b3016d997fe"/></dir><dir name="Helper"><file name="Data.php" hash="db8a716551468ff9c77f8fc6c9db7310"/></dir><dir name="Model"><file name="Email.php" hash="4790a3c20b28cba3edd90cae78b278e7"/><dir name="Mysql4"><dir name="Price"><file name="Collection.php" hash="85751f5b1a72f6bcd11b3805e63a5005"/><dir name="Customer"><file name="Collection.php" hash="369d078510d7947c732b5b86ddc95f85"/></dir></dir><file name="Price.php" hash="b384a5f9340ad848799a3fdb88701de8"/><dir name="Stock"><file name="Collection.php" hash="dfcbbe2f7b29139801339b994332249f"/><dir name="Customer"><file name="Collection.php" hash="fc817bc79bc6ec62806321a9031babc8"/></dir></dir><file name="Stock.php" hash="2d0c857d0505931e417d13a425832d6f"/></dir><file name="Observer.php" hash="c0ce37fc22caf339bfe7368f1a75f5d0"/><file name="Price.php" hash="a8adb5a314d448f412f3be2851dbe2de"/><dir name="Resource"><file name="Abstract.php" hash="5e7b69574dc2ebb59b40ab7d2c9c0765"/><dir name="Price"><file name="Collection.php" hash="75de0797acab577891d55918d8226759"/><dir name="Customer"><file name="Collection.php" hash="90a486c8338befca41ba91bfe2bac212"/></dir></dir><file name="Price.php" hash="8eae6baeeb33c29fd4d20072f7f4b03d"/><dir name="Stock"><file name="Collection.php" hash="d370c2841d6c2db3265daad7df79d778"/><dir name="Customer"><file name="Collection.php" hash="586ebf48b4e6ea50b0dab75098d16d22"/></dir></dir><file name="Stock.php" hash="179ee6e99b0d9e0fc99ee65b21e2aa3b"/></dir><file name="Stock.php" hash="86899d6412c3c20d203dcbb8a9231793"/></dir><dir name="controllers"><file name="AddController.php" hash="b6c15fa6c403080d42dec29983d01cf1"/><file name="UnsubscribeController.php" hash="0aa60cf7437c64b7c5dc61832a2efe81"/></dir><dir name="etc"><file name="config.xml" hash="2b33af987fffc0ae9e01d72165ba9afc"/><file name="system.xml" hash="bae0a5263513a3a35c1a22562c13352e"/></dir><dir name="sql"><dir name="productalert_setup"><file name="install-1.6.0.0.php" hash="9aa79e33fcec15e95743593fe59f2390"/><file name="mysql4-install-0.7.0.php" hash="f7a08cbc249da6a74f3d0c481e0d6efc"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="15c96f77d2d484c064e62a386f724e8d"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="746880502eae6875f53f55caf018d77b"/></dir></dir></dir><dir name="Rating"><dir name="Block"><dir name="Entity"><file name="Detailed.php" hash="2df366bd9bd76c58c562d5fb2da5adda"/></dir></dir><dir name="Helper"><file name="Data.php" hash="1497a9c555ed61310cd363e73452fe75"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Rating"><file name="Collection.php" hash="2be82e08c380c2d374621537c6aedb6a"/><file name="Entity.php" hash="e88daac6bdd143fae6da93dd9f8a2225"/><dir name="Option"><file name="Collection.php" hash="6835bedd300a506b5a76d690bfbfce9e"/><dir name="Vote"><file name="Collection.php" hash="a74f8e93bda26728e724e950fed66cc8"/></dir><file name="Vote.php" hash="70276c04262057ed0eb51f525059748c"/></dir><file name="Option.php" hash="9abfbec461869fce3347fff5ef85099a"/></dir><file name="Rating.php" hash="be6495cad8183742287e84fc56330d00"/></dir><file name="Observer.php" hash="333fa3beea2acdf12fe82bc58db879ee"/><dir name="Rating"><file name="Entity.php" hash="0eaa3be9aae9e66598cab8864411d45a"/><dir name="Option"><file name="Vote.php" hash="e27da11404c974828d3528345136801c"/></dir><file name="Option.php" hash="f02069ffffe0e1329c01f8e6f077b138"/></dir><file name="Rating.php" hash="13ce1479793c6ac4f91da72a7194eb33"/><dir name="Resource"><dir name="Rating"><file name="Collection.php" hash="c534ff40ef290d3c56f0af910c449e92"/><file name="Entity.php" hash="f5afaed9e816eec3166f691359325ddb"/><dir name="Option"><file name="Collection.php" hash="eccb091c85da3a34940054e6f073269b"/><dir name="Vote"><file name="Collection.php" hash="2014d6044a2a65690955b76af44f897d"/></dir><file name="Vote.php" hash="a7571a7766ef8122df604b33c4fa6ec7"/></dir><file name="Option.php" hash="dafba3671508ceb3638a1a43c8608416"/></dir><file name="Rating.php" hash="ed7239eaea66379e5591f23b066572d9"/></dir></dir><dir name="data"><dir name="rating_setup"><file name="data-install-1.6.0.0.php" hash="d4498d6f3949264bdeb41786e9b819f7"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="951372191ab682aa0294141c8f909b2a"/><file name="config.xml" hash="5e9779ebe932f8568cbf2a0cd694894f"/></dir><dir name="sql"><dir name="rating_setup"><file name="install-1.6.0.0.php" hash="dff36c635b4f390d57bef9960ab61450"/><file name="mysql4-install-0.7.0.php" hash="43da7f53e940b3228d61b3b7e4ea8d86"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="878afa7015bc930899fcd00dd55c2e78"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="b8adde02281d654b07f01569fc6cef40"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="85860ce2789eb87b9d121ef77aadadc6"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="e289d6dc315380df36bb514f3fafb664"/></dir></dir></dir><dir name="Reports"><dir name="Block"><dir name="Product"><file name="Abstract.php" hash="578257203342bebb0d973e20bf424237"/><file name="Compared.php" hash="8c76e6f2101f15f09c72ad0dc7ce70e6"/><file name="Viewed.php" hash="b20d015e5507cb98a8cf924c782d865c"/><dir name="Widget"><file name="Compared.php" hash="e8d9c4dd37391851667bf377fdaf403b"/><file name="Viewed.php" hash="553c388ee11f7e5181ed22936af26e7e"/></dir></dir></dir><file name="Exception.php" hash="617108bc39f17464f0884bc9269a5256"/><dir name="Helper"><file name="Data.php" hash="57200f54d3da931422d6a8c586532022"/></dir><dir name="Model"><file name="Config.php" hash="f96b39428330ca93965b3209071e4ed9"/><dir name="Event"><file name="Observer.php" hash="c12b50f301025d0fa06d7de61941393a"/><file name="Type.php" hash="cf0f1c1d1f3b510644798c27a17c9b97"/></dir><file name="Event.php" hash="34aceecd3f214f6aba29668554411b04"/><file name="Flag.php" hash="2e4623f20e42f90f25f7f6cc60ad7f1f"/><dir name="Grouped"><file name="Collection.php" hash="5efbafd7b095ab116892abcd060c847d"/></dir><dir name="Mysql4"><dir name="Accounts"><file name="Collection.php" hash="0cd8c4e2b3f59fd776d56243e5d62ced"/></dir><dir name="Coupons"><file name="Collection.php" hash="612aaff421905d73df9243358ca05438"/></dir><dir name="Customer"><file name="Collection.php" hash="033c927182b930e159a21282f1ed7f47"/><dir name="Orders"><file name="Collection.php" hash="84fa52e616801dddd7a27b80504a06dd"/></dir><dir name="Totals"><file name="Collection.php" hash="675557cf33c7a70a8be723be30ba4b9a"/></dir></dir><dir name="Entity"><dir name="Summary"><dir name="Collection"><file name="Abstract.php" hash="bdd85eef6cac58409adc3964ae6cf6c2"/></dir></dir></dir><dir name="Event"><file name="Collection.php" hash="d9e615045a5a035931d317905d76f724"/><dir name="Type"><file name="Collection.php" hash="d53a6f31cdaaa4d32b52deeaafcff1f9"/></dir><file name="Type.php" hash="c345412280dfb442121e3602d8b16764"/></dir><file name="Event.php" hash="e72c63316342488accdeb68d11ab70cb"/><dir name="Invoiced"><file name="Collection.php" hash="4d06a58ba94a9c755f93eaefdb6a3a08"/></dir><dir name="Order"><file name="Collection.php" hash="8d2cba8be937acd70e3aca7db9306abb"/></dir><dir name="Product"><file name="Collection.php" hash="ace029a821d771876e671d46f27e60f4"/><dir name="Downloads"><file name="Collection.php" hash="83f9551343cb00586e03a255c32f1b0a"/></dir><dir name="Index"><file name="Abstract.php" hash="25a6163346a75c1e40cc35ef5c506d24"/><dir name="Collection"><file name="Abstract.php" hash="80a7c9a2fbb2dea4d3139971fc508775"/></dir><dir name="Compared"><file name="Collection.php" hash="de0ce45c836245949ea314f638f21632"/></dir><file name="Compared.php" hash="5d89a2b48b220c7c918f78619160f357"/><dir name="Viewed"><file name="Collection.php" hash="a7c3fd32783500207532d248397ea6d6"/></dir><file name="Viewed.php" hash="e7e3bd541dc11358384591075276dfad"/></dir><dir name="Lowstock"><file name="Collection.php" hash="c311fead7cef2a26b87aecc38aadcc3a"/></dir><dir name="Ordered"><file name="Collection.php" hash="ef8ebad26866118a380433333ce47380"/></dir><dir name="Sold"><file name="Collection.php" hash="94ad564ef224cfa524a51d726a33a978"/></dir><dir name="Viewed"><file name="Collection.php" hash="e278a7c870b0a6ee0d0f5671814d8f94"/></dir></dir><dir name="Quote"><file name="Collection.php" hash="fd4b4c28b862298c3b4b04f573241d17"/></dir><dir name="Refunded"><file name="Collection.php" hash="64990addecffaa1d86bc02d3b2981d9f"/></dir><dir name="Report"><file name="Abstract.php" hash="663e9bb9143398dac8d11132390756d4"/><file name="Collection.php" hash="e64ec700bfb2a1f7d728ebd94fc93b71"/></dir><dir name="Review"><file name="Collection.php" hash="6efb24b1edfaf5800256b3080a3ebf7b"/><dir name="Customer"><file name="Collection.php" hash="7100d4c24e90087a0c86956d557392d3"/></dir><dir name="Product"><file name="Collection.php" hash="fd7249e0d7f7926c7bdf6ea2816f10cc"/></dir></dir><dir name="Shipping"><file name="Collection.php" hash="b03601cb3818a005278584a09333481e"/></dir><dir name="Shopcart"><dir name="Product"><file name="Collection.php" hash="19308938fe4f69eb9da330687a4d2cd2"/></dir></dir><dir name="Tag"><file name="Collection.php" hash="8cc1e1483ce042ba13eceb2809f4653f"/><dir name="Customer"><file name="Collection.php" hash="27db3ccb1682c57477a953bc31ddcd0e"/></dir><dir name="Product"><file name="Collection.php" hash="c955864f76538d1cf5aaed5dd0a76aef"/></dir></dir><dir name="Tax"><file name="Collection.php" hash="42c124a9f1536dfd0f5025b5e078aa63"/></dir><dir name="Wishlist"><file name="Collection.php" hash="2e72a148c7257bcadc36a0397633cfb2"/><dir name="Product"><file name="Collection.php" hash="aa120dc6a1d5fa2a9ac4f09fe5724e65"/></dir></dir></dir><dir name="Product"><dir name="Index"><file name="Abstract.php" hash="a6ac5c911507e58943ce921591bb2489"/><file name="Compared.php" hash="f82383db41fd5055301154a2d0d700bd"/><file name="Viewed.php" hash="4fac7d613ac53411b39c4d003b04e4ae"/></dir></dir><file name="Report.php" hash="68fc1cd405bb41b8e1b04750b1bc7360"/><dir name="Resource"><dir name="Accounts"><file name="Collection.php" hash="fee03c893f5e04633b0b2082fe9e2ef0"/></dir><dir name="Coupons"><file name="Collection.php" hash="574b5b8dd40aa8b21bc7c10eb1381a72"/></dir><dir name="Customer"><file name="Collection.php" hash="3a8028e41a4a57ba87ef84e571cfe3f1"/><dir name="Orders"><file name="Collection.php" hash="fe5f4e7053223edbd5e0fc165b589b63"/></dir><dir name="Totals"><file name="Collection.php" hash="e4bb6c1e9d11ed44a25b500eab9f3522"/></dir></dir><dir name="Entity"><dir name="Summary"><dir name="Collection"><file name="Abstract.php" hash="659c86a44c2fc759f57445735549462d"/></dir></dir></dir><dir name="Event"><file name="Collection.php" hash="e580c833e0f97a3e184f22eec5b37126"/><dir name="Type"><file name="Collection.php" hash="ec8bc58faba0544ea3850b0903a8aa48"/></dir><file name="Type.php" hash="85714e6c137da8bd4549665a0cbe4e2f"/></dir><file name="Event.php" hash="4317ab0d3b4535f48da744f344275648"/><dir name="Helper"><file name="Interface.php" hash="81dc8c30550774a7adac91a70dd54bf6"/><file name="Mysql4.php" hash="0a1a06c444e7c75d0cac6a8f280cfb03"/></dir><dir name="Invoiced"><file name="Collection.php" hash="d0f04c9ed71b3aca95d9565a580cec0b"/></dir><dir name="Order"><file name="Collection.php" hash="a1bd2a47354577ad6b721cf64839ddbd"/></dir><dir name="Product"><file name="Collection.php" hash="ac4f87d98924f8894a58e37f0f8df435"/><dir name="Downloads"><file name="Collection.php" hash="1cf51bea3e7c8ea4eb767c75d4694676"/></dir><dir name="Index"><file name="Abstract.php" hash="90d75ed2b95b7bf9cf2139a5d396bfb6"/><dir name="Collection"><file name="Abstract.php" hash="717d1cd42e5335c877a17be8730ea870"/></dir><dir name="Compared"><file name="Collection.php" hash="1eb2cb2f7bac8b19c640daa25b617234"/></dir><file name="Compared.php" hash="939443ab1103343f51bea61016b4d27b"/><dir name="Viewed"><file name="Collection.php" hash="826efd82bfccd82219fa9b438961b334"/></dir><file name="Viewed.php" hash="d124f494245b2560c6ae0f18983188fd"/></dir><dir name="Lowstock"><file name="Collection.php" hash="22943a8e88ab28cec838fed6c3d80ef4"/></dir><dir name="Ordered"><file name="Collection.php" hash="b7aff86efc7690ae6cc6344ff43f51d1"/></dir><dir name="Sold"><file name="Collection.php" hash="d8593a120fa2a8371c5c4aa0c8a25a0e"/></dir><dir name="Viewed"><file name="Collection.php" hash="5777a50f19b37ee1aae6df0eb082120c"/></dir></dir><dir name="Quote"><file name="Collection.php" hash="1518826f907902ead06c4ba3a9158c0e"/></dir><dir name="Refunded"><file name="Collection.php" hash="edddbd898f30863b840110329631d264"/></dir><dir name="Report"><file name="Abstract.php" hash="e8b84cda293b5925a7d822b2618306b4"/><dir name="Collection"><file name="Abstract.php" hash="be10b98d8158c4e52019091792e8c618"/></dir><file name="Collection.php" hash="cd4deae110bccaaec9ec2f3a3fec14b8"/><dir name="Product"><dir name="Viewed"><file name="Collection.php" hash="7f7ba5b8925ab4f3d54af661861e8819"/></dir><file name="Viewed.php" hash="cc5f49fac0b0b3550e923f7b8eb60d2c"/></dir></dir><dir name="Review"><file name="Collection.php" hash="1e5a8704988f2bc5c0046097032c7dfc"/><dir name="Customer"><file name="Collection.php" hash="f18eb356beb157be4eb37c8af6d8ec8e"/></dir><dir name="Product"><file name="Collection.php" hash="9379e71ecaf6c6bf23faab0bed211058"/></dir></dir><dir name="Shipping"><file name="Collection.php" hash="33d173b19fca8f7c78108c3e9062f5d6"/></dir><dir name="Shopcart"><dir name="Product"><file name="Collection.php" hash="ae0e5190ef686b2d7e8639b474e6a6fd"/></dir></dir><dir name="Tag"><file name="Collection.php" hash="b7359de3cfa026bd219d76f963991a35"/><dir name="Customer"><file name="Collection.php" hash="9b57e619f7aa720f190cbd266c47f1b2"/></dir><dir name="Product"><file name="Collection.php" hash="5a55614f682cb61db52337b2e4898c5f"/></dir></dir><dir name="Tax"><file name="Collection.php" hash="46253868811290d102283fffc76b60c0"/></dir><dir name="Wishlist"><file name="Collection.php" hash="46df78b3756ffda1baff9802f39ca18a"/><dir name="Product"><file name="Collection.php" hash="31aaf993411e2957520b89e9654b0ace"/></dir></dir></dir><file name="Session.php" hash="c913987e12bc3c14a1493078fa0cc7f9"/><file name="Test.php" hash="0393ad68e17f904a7a750901aac16668"/><file name="Totals.php" hash="0c7521b26433f20d43f7cd14c0d44fb5"/></dir><dir name="data"><dir name="reports_setup"><file name="data-install-1.6.0.0.php" hash="e3ff9bb6870eb75e131047d5c3803bf6"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="26e74f9cb9bff0fd18b52184700b8c2b"/><file name="config.xml" hash="6f255f3c6eddc8afb7e9c41ff37f74a0"/><file name="system.xml" hash="5661e56b5032074a0ce9972580c52606"/><file name="widget.xml" hash="205050df167238d66730ee69eaf6f6a7"/></dir><dir name="sql"><dir name="reports_setup"><file name="install-1.6.0.0.php" hash="ed84a64f623472cb570d062f83f0af44"/><file name="mysql4-install-0.7.1.php" hash="726b040c54515d68f09d123770d9028b"/><file name="mysql4-install-1.5.0.0.php" hash="65582d059b8fdf311793143b119f2536"/><file name="mysql4-install-1.6.0.0.php" hash="a87f4f510630a48695e4a18eece61064"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="a19dcddecfbf548fa2e591dbc2ca9810"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="87a2ea5896fed2cdb80dafdfd153ebc5"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="2acc3102db4ca570f17e6c1b863d0866"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="11377f7648ab6f02858afe240a9b43a0"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="c410cb005fc894c9ac889548d7331c23"/><file name="mysql4-upgrade-0.7.5-0.7.7.php" hash="7bf77af57e370205ad5e825388a01f11"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="9e0a0522db37067818ab59c2ad1819e7"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="e7373ad67f1f1da45d98f10e38d6cc90"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="ae5c36c5d517af8cdb9d2162da7a2517"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="d18b4b1e51cce1f465349a0e7e972b31"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="a64567d3c7c0b712373a85fe8165b616"/></dir></dir></dir><dir name="Review"><dir name="Block"><dir name="Customer"><file name="List.php" hash="688c97060d2bd41c8b34a23e67cd0946"/><file name="Recent.php" hash="80a4cb7d0d03e44540245141ce9087bb"/><file name="View.php" hash="e999f76f350ceac3141c8c5fbe081f14"/></dir><file name="Form.php" hash="f9aa8849530864916d62ef0950d306f6"/><file name="Helper.php" hash="c58352105799c1f6fd74faa2bbf1e469"/><dir name="Product"><dir name="View"><file name="List.php" hash="9d0dd075156974df0efab6b6d24dfbe4"/></dir><file name="View.php" hash="ba6fbf6d0d0810aeb6a4fe8ef511c543"/></dir><file name="View.php" hash="d1f8334e56c287db50ed36c8ba210b32"/></dir><dir name="Helper"><file name="Data.php" hash="336eafffbcd2ad9ecd0c1a2e28fc066c"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Review"><file name="Collection.php" hash="aa368d8d499b9bcc8673817caf374596"/><dir name="Product"><file name="Collection.php" hash="797dc7211eb9b41025ed50dfb579061b"/></dir><dir name="Status"><file name="Collection.php" hash="1a16ff1e417289416ab7edf8e1b5df7c"/></dir><dir name="Summary"><file name="Collection.php" hash="d76d4011d5235c49d5813fab3088d68d"/></dir><file name="Summary.php" hash="e7f2d56ff21ee5dee3d5071eb448e8d1"/></dir><file name="Review.php" hash="852d52d9969952379b14cb98157d6c34"/></dir><file name="Observer.php" hash="babd7c7b8163adc0394e4bab6f2df8cb"/><dir name="Resource"><dir name="Review"><file name="Collection.php" hash="1207b5cfaa2e6718164fa1bb61585fa2"/><dir name="Product"><file name="Collection.php" hash="cfa52fb26168c53b854011483c8af3f4"/></dir><dir name="Status"><file name="Collection.php" hash="64e105f2a37553dc9a0e30615e4a3cdb"/></dir><file name="Status.php" hash="8eb6f8acbeeb80965bd998002ae4c234"/><dir name="Summary"><file name="Collection.php" hash="6ae6e402541869c0654f466485e1a224"/></dir><file name="Summary.php" hash="5b6379cd3d82e3b36f8278fa212583df"/></dir><file name="Review.php" hash="f59efd2e287bb7bb421a0749702234e6"/></dir><dir name="Review"><file name="Status.php" hash="34ce4efbfdbc4a43815168f3cd8707f1"/><file name="Summary.php" hash="5b5dd53aa74e975654f07bce1d3ef6f7"/></dir><file name="Review.php" hash="2244401a8a7dc904ba266f02e8254966"/><file name="Session.php" hash="4be3894bef741a016c2e54818f14c686"/></dir><dir name="controllers"><file name="CustomerController.php" hash="23a25aab3f28015ba72084057b56783a"/><file name="ProductController.php" hash="e1573472537d3148fcff527df5161f98"/></dir><dir name="data"><dir name="review_setup"><file name="data-install-1.6.0.0.php" hash="91b9ef227d8c39b83922c6bd6cd3dda8"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="be1c195ad059fdcbc14c339bff52498a"/><file name="config.xml" hash="86234db3b0bdf986e4339678994adef7"/><file name="system.xml" hash="13a6cc0a5c42f2858800582f12c1b49a"/></dir><dir name="sql"><dir name="review_setup"><file name="install-1.6.0.0.php" hash="a2f341c93efbffca7b896e7ecd02cfd3"/><file name="mysql4-install-0.7.0.php" hash="53fd7fcfda5f226273e5a27a83db6e19"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="fe61f3cbcb86c0564a4e10bc96ca2edf"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="1a0b13fe3b58a9603e966e3cf72a24bd"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="5fd41a667f5c19e76a48eff2f4b95744"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="772490f892fe928a156cbc5f8f26a735"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="8f1d7567b707feccdb5594765a2eb810"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="3c27dc97c75195008250fa6e7fc366b2"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="3e3998abe2c3be13a06fecabcadd8c70"/></dir></dir></dir><dir name="Rss"><dir name="Block"><file name="Abstract.php" hash="228f9f7f2d8ef4293e7a6964ffdbadda"/><dir name="Catalog"><file name="Abstract.php" hash="2b8416813980dfc482d3f864a9765abe"/><file name="Category.php" hash="9e3e8e3ae403c6dff2f189b691fab602"/><file name="New.php" hash="77b6e6d2f74d6f0e0ac2d81cdb9935dd"/><file name="NotifyStock.php" hash="69973b399bc7b66099f5f62a03dfb9e3"/><file name="Review.php" hash="25ff0148e4c74326e7f9f2007edd6f9a"/><file name="Salesrule.php" hash="b61dbfbbd59ce2cebec03a7a8327c3be"/><file name="Special.php" hash="4db5552d06528898bce0722326b5efa7"/><file name="Tag.php" hash="13d733ba64269d580ce1ef7e5f0be6a7"/></dir><file name="List.php" hash="3bb032c882687dc98520a32596c191f6"/><dir name="Order"><file name="Details.php" hash="b95b6ede9c431ea8d79098c8c8238eea"/><file name="New.php" hash="791e6f6319ff6c6d4da772def4a11c98"/><file name="Status.php" hash="cde91abfbe67ab81a35535a8c2f214a0"/></dir><file name="Wishlist.php" hash="a20670c9d52c4247c71e137dd7336c87"/></dir><dir name="Controller"><file name="Abstract.php" hash="634e6eb479e50f2a67a43cc89c158c3e"/></dir><dir name="Helper"><file name="Catalog.php" hash="f4cb16624431109213432bb608a08605"/><file name="Data.php" hash="5b1ccf2ac6afcbd4245704e6b5cd2677"/><file name="Order.php" hash="7d61ac8b1e6715ece1cdf5dae892bdd0"/></dir><dir name="Model"><dir name="Mysql4"><file name="Order.php" hash="123e72ffb9e3350b9cea4c71e9097c39"/></dir><file name="Observer.php" hash="d841dfe9cbf1902a55dae2fac695ed1d"/><dir name="Resource"><file name="Order.php" hash="4e58a6427568518788372023ddacca81"/></dir><file name="Rss.php" hash="53efc26d427153f25e2335ed38d5448e"/><file name="Session.php" hash="c38ba113406171cd3a343f88161f0a4f"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Links.php" hash="b81829f3b076d18d0d302cd46aef4a6d"/></dir></dir></dir></dir><dir name="controllers"><file name="CatalogController.php" hash="dbb00e3fd18a4e10d3d092e839b50e85"/><file name="IndexController.php" hash="aefcc726c3b61bc9532f4a961ff39ef0"/><file name="OrderController.php" hash="ca42d687ab4548e1dde4cb454e8138df"/></dir><dir name="data"><dir name="rss_setup"><file name="data-install-1.6.0.0.php" hash="983dc7327edd051187c6b9448425cec0"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="d34139ee3d3f9e03595bdd15ff8f4521"/><file name="config.xml" hash="22c6a8e0731675be23efff9391c602be"/><file name="system.xml" hash="622587c3aecac834465f700fb316b024"/></dir></dir><dir name="Rule"><dir name="Block"><file name="Actions.php" hash="d750c05b56556998b59731e160540c59"/><file name="Conditions.php" hash="eaea483b3bd5f3a146fb6581978af90d"/><file name="Editable.php" hash="2b26ef990188a91564b7290c9b0659de"/><file name="Newchild.php" hash="05a8c5a2cb761288766b4d3989ee29e5"/><file name="Rule.php" hash="c4d713f909abe86239d20a60d0607d6c"/></dir><dir name="Helper"><file name="Data.php" hash="81760cf3af0ab5289345e49b0e3ba54a"/></dir><dir name="Model"><file name="Abstract.php" hash="4c5e20c95468d96b4833f31798799ad7"/><dir name="Action"><file name="Abstract.php" hash="c52c1e09ca72326dc05769caacce9e39"/><file name="Collection.php" hash="9035c5268da66f28206235a29ebc872d"/><file name="Interface.php" hash="9b17800993d0ec330e538c7710eada17"/></dir><dir name="Condition"><file name="Abstract.php" hash="cc88075d09f80e6971b50a629d68af58"/><file name="Combine.php" hash="67103b5576ada6147fbef7728050f4f1"/><file name="Interface.php" hash="9a325c6097fb3bc4bac88b4cc0ca094d"/><dir name="Product"><file name="Abstract.php" hash="a4c44d2039940a117e67ccb86ab25e74"/></dir></dir><file name="Environment.php" hash="74c9ff6908d88aa5cb94c403479c1fe9"/><dir name="Mysql4"><dir name="Rule"><file name="Collection.php" hash="76fe147ad14cb1847220367e1795acb7"/></dir><file name="Rule.php" hash="e62050e81ffae0f4fb5e5524c6bd60f2"/></dir><dir name="Renderer"><file name="Actions.php" hash="79c006e7231845575db4bdab65b37223"/><file name="Conditions.php" hash="1554a57063852a8b5eea22d1ff4286f5"/></dir><dir name="Resource"><file name="Abstract.php" hash="c9dc026ee7dc7d02692eca3640a899d6"/><dir name="Rule"><dir name="Collection"><file name="Abstract.php" hash="411bfd2f48bd17d1c6b3b0264ce15386"/></dir><file name="Collection.php" hash="4d359f928bf960fb63dbb42ebb2ca638"/><dir name="Condition"><file name="SqlBuilder.php" hash="d66a02bbe17332598bee9d2c6d5d69c7"/></dir></dir><file name="Rule.php" hash="7d164a7312e3a569773afcbb2d1d74bf"/></dir><file name="Rule.php" hash="0ce190a68223bb0f31080a09bca990be"/></dir><dir name="etc"><file name="config.xml" hash="89d887580ba266a59da015ccc5096e12"/></dir></dir><dir name="Sales"><dir name="Block"><dir name="Adminhtml"><dir name="Billing"><dir name="Agreement"><file name="Grid.php" hash="ab64005141ad56a40f4eee672ff5fa22"/><dir name="View"><file name="Form.php" hash="d49013bf67623802402ffa98759518cd"/><dir name="Tab"><file name="Info.php" hash="7d64e1159b7f19f0f6b624a5d1700465"/><file name="Orders.php" hash="0c97d875772bd26011a5842222008d06"/></dir><file name="Tabs.php" hash="5ec087539d0febcb14149f4a49bf98cf"/></dir><file name="View.php" hash="d1840489619f20ef684154f36eadde60"/></dir><file name="Agreement.php" hash="0530bd38d000dd4154870b53b237d5d1"/></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Agreement.php" hash="bef0c8b5fa7d69a6058bab8bb87c4dd0"/><dir name="Recurring"><file name="Profile.php" hash="280991eff7ab7ec0ce26c22bcf1883a6"/></dir></dir></dir></dir><dir name="Recurring"><dir name="Profile"><dir name="Edit"><file name="Form.php" hash="1a07be5b691b3a27714b6fe1891e03cd"/></dir><file name="Grid.php" hash="b155716b78ece29889088293f46e632e"/><dir name="View"><file name="Getawayinfo.php" hash="2efce2246e8700e2f2c5561bfa0914c3"/><file name="Info.php" hash="b5c6da6e5da9d1b14a306e751a6d7a26"/><file name="Items.php" hash="3486f9f9543a9f23e3e37155ef88dc27"/><dir name="Tab"><file name="Info.php" hash="92e2297f8270e5ac97365dc2b5876001"/><file name="Orders.php" hash="31ac421f7dc37f5ccf1b65f51d06c88d"/></dir></dir><file name="View.php" hash="ae9f3fa2090354b740adf94470f829ef"/></dir><file name="Profile.php" hash="31fb87ec9882159f493c112eda85f150"/></dir><dir name="Report"><dir name="Filter"><dir name="Form"><file name="Coupon.php" hash="99780c30522e0f4c7fea9ba83cc09943"/><file name="Order.php" hash="3b1144c18800419d41122bc3de4edd4b"/></dir><file name="Form.php" hash="a931ab2b844c2a828c3137d3a8325b94"/></dir></dir></dir><dir name="Billing"><dir name="Agreement"><file name="View.php" hash="0070759005c1077ff90acb913adf1653"/></dir><file name="Agreements.php" hash="084159eb2b2a5a41725840b6a2374519"/></dir><dir name="Guest"><file name="Links.php" hash="461fb53f348e9afda6ad83763716f110"/></dir><dir name="Items"><file name="Abstract.php" hash="5b35f656fe36550385e9bc6bacca12a1"/></dir><dir name="Order"><file name="Comments.php" hash="fe24035bad289c5404047d5853d44893"/><dir name="Creditmemo"><file name="Items.php" hash="4b71e1d59ae3a570aa06155bc9f4fac0"/><file name="Totals.php" hash="cb049975bce99b312fbbccbb591b6202"/></dir><file name="Creditmemo.php" hash="4a96dd3d8ab48e9b2e0b1bbdf023657a"/><file name="Details.php" hash="868f07f4ffda8b77aeed47e2f480a120"/><dir name="Email"><dir name="Creditmemo"><file name="Items.php" hash="eb6a404122177859964ef0cab67b462a"/></dir><dir name="Invoice"><file name="Items.php" hash="542b53e8867c1673364a625f70424e57"/></dir><dir name="Items"><file name="Default.php" hash="2416ee589546421e172ff7a6da5c96f0"/><dir name="Order"><file name="Default.php" hash="20929c643eb043962a1e8b61cd318a4b"/><file name="Grouped.php" hash="b55c283f71a4e0c90ac8446120dfa487"/></dir></dir><file name="Items.php" hash="aacd10efd5610acd6b93d7a5047b66b6"/><dir name="Shipment"><file name="Items.php" hash="cf84ae54b263c40e91f3825064ecd25b"/></dir></dir><file name="History.php" hash="12fca99cf4abf4a5b4f1ff27306ee011"/><dir name="Info"><file name="Buttons.php" hash="8f5b0a322f7b0cff84a97bbb6e085a10"/></dir><file name="Info.php" hash="5a7131b56be83ed705424edfb6d57cd8"/><dir name="Invoice"><file name="Items.php" hash="a4774f3c36f1e497f878f048924bbda2"/><file name="Totals.php" hash="209ccde765e502711d7b6a71a7c88a37"/></dir><file name="Invoice.php" hash="ec0ea4d0dc4c7748e6eb382e0e6b6eb6"/><dir name="Item"><dir name="Renderer"><file name="Default.php" hash="0828a3ae6d0600712b46ecf6288b8004"/><file name="Grouped.php" hash="eccd98d4534a5b93158eba13da301ca7"/></dir></dir><file name="Items.php" hash="dd081a2f191bdc29cd62643bb0f2ba1d"/><dir name="Print"><file name="Creditmemo.php" hash="c5b2dc24ed818e9615b09fb89a9aea5b"/><file name="Invoice.php" hash="5617eb6a99851c0de132bfb8fb31acde"/><file name="Shipment.php" hash="ca653701f844f634e399a02796e2ba76"/></dir><file name="Print.php" hash="240aca4a9b880066f017a6850136121f"/><file name="Recent.php" hash="48899d8b9370effc1646de10eef97992"/><dir name="Shipment"><file name="Items.php" hash="c7117ede5f1b9c5c2cfea84fe6c6fe10"/></dir><file name="Shipment.php" hash="65da31ae21d849560ceb48bcd3493051"/><file name="Tax.php" hash="c4c2e0283060f10275e0638176fa727b"/><file name="Totals.php" hash="ccc3c11f7fb91a28a2f8c1ff0b787b1b"/><file name="View.php" hash="38b6e4791fefe828223a6f46624855cf"/></dir><dir name="Payment"><dir name="Form"><dir name="Billing"><file name="Agreement.php" hash="a66f12c3b7a2936f95204d3a15b93319"/></dir></dir><dir name="Info"><dir name="Billing"><file name="Agreement.php" hash="3805e9c6a86ce12ad9cc5e02c6db46e0"/></dir></dir></dir><dir name="Recurring"><dir name="Profile"><file name="View.php" hash="f2874f3d643330b2bc04ada847a96241"/></dir><file name="Profiles.php" hash="5bbdce07e4ac6ba4e7f65cf023663e44"/></dir><dir name="Reorder"><file name="Sidebar.php" hash="bf5ac172d7919d6ac5f96f9b166b9ee9"/></dir><dir name="Widget"><dir name="Guest"><file name="Form.php" hash="e81410c8d0e2ec04b7cd2a0e52434090"/></dir></dir></dir><dir name="Controller"><file name="Abstract.php" hash="04e04503f2c5d2b7dda3a02aa7d2e2d5"/></dir><file name="Exception.php" hash="09ac18ff9070aab670e1782c87ac0d26"/><dir name="Helper"><file name="Data.php" hash="51977c71532b66040d318a015bd34cbf"/><file name="Guest.php" hash="d4c55c715b56e5968f6c2f1756428dce"/><file name="Reorder.php" hash="05674626dbe02172f86e2d5f0e33268b"/></dir><dir name="Model"><file name="Abstract.php" hash="2be530c5215dab5c3da6f089383f43d4"/><dir name="Api"><file name="Resource.php" hash="b434db280dff034d053c75a372191ac1"/></dir><dir name="Api2"><dir name="Order"><dir name="Address"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="ed09d4b2cf008a4643fae22c9436473e"/></dir><dir name="Customer"><file name="V1.php" hash="52506df5c4293b38113ecd2d1acbd207"/></dir></dir><file name="Rest.php" hash="e3f5913b7fcb0faabf011c303420acb3"/></dir><file name="Address.php" hash="98f80e478d7f1f9860dab3ef4c5769e7"/><dir name="Comment"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="85f20bae6d7ce22e3b64051a9dda1b48"/></dir><dir name="Customer"><file name="V1.php" hash="929a2f896b27a14ca3b89ecd528a1dee"/></dir></dir><file name="Rest.php" hash="c3d28889e2a3a504b7e32598ee10320c"/></dir><file name="Comment.php" hash="5157ddaa57e0ec0c5d5584b9d53c2b5e"/><dir name="Item"><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="fa4a9b9deb37d2200cb68fb9704133cb"/></dir><dir name="Customer"><file name="V1.php" hash="c351f86d832ead8a89c6a00e4aa91011"/></dir></dir><file name="Rest.php" hash="4976919b54a42fd3687d03c49173bbd8"/></dir><file name="Item.php" hash="9573e3a435623d0d2a03d26700db1cbd"/><dir name="Rest"><dir name="Admin"><file name="V1.php" hash="ba19da984378e2b6496377feda439ce9"/></dir><dir name="Customer"><file name="V1.php" hash="5db410d1522d7af533033b24882b0295"/></dir></dir><file name="Rest.php" hash="bfd35b17693c615db96527d377fbd74d"/></dir><file name="Order.php" hash="22dd50272ce66f1e8b06f980d430b8df"/></dir><dir name="Billing"><file name="Agreement.php" hash="7b761c9564d128722b5dcbec3adabc9c"/></dir><dir name="Config"><file name="Ordered.php" hash="4b3a09d5c1ac7ef65033250aea6c810b"/></dir><file name="Config.php" hash="fda273a9bb6d925e3e94f0f09010744a"/><dir name="Convert"><file name="Order.php" hash="673924b5f6a1fd53b765b44eaeb240b8"/><file name="Quote.php" hash="8afd52f68c48b9ae046b62365a6dd8d9"/></dir><dir name="Email"><file name="Template.php" hash="5710b586efe7556968e95adbb26012d1"/></dir><dir name="Entity"><dir name="Order"><dir name="Address"><file name="Collection.php" hash="d26edfda28bc64caf64d109ce8896bb0"/></dir><file name="Address.php" hash="2ef4cd5fe9412ddc88d7240af3ba12f5"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="22d5fa3a28c101d2e027f0ab0ca3ac31"/><file name="Child.php" hash="39c26fdab597f65f087424211ca51432"/><file name="Parent.php" hash="e41ba3c47ddbadd0cf8fcd85055fa5ce"/><file name="Shipping.php" hash="3a825d75685945ecdd5f6f294395f9fb"/></dir></dir><file name="Collection.php" hash="e2378e7479f995faf015c5e3d3f974e8"/><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="12910c9b1b2f5890eebe15922f984ac5"/><file name="Parent.php" hash="46fe7422c5cf98de193eb8f1be7d4b08"/></dir></dir><file name="Collection.php" hash="9c144ecbfa18a242b8ef9b288b89af10"/><dir name="Comment"><file name="Collection.php" hash="27a48a53840facd443cdb39382bccbbe"/></dir><file name="Comment.php" hash="c2e06ebb9052fc9918072554200c849d"/><dir name="Item"><file name="Collection.php" hash="5756bdea8e9804efba31d920627a5173"/></dir><file name="Item.php" hash="1c8e1f1f96a30390427a9e822610b9d1"/></dir><file name="Creditmemo.php" hash="dc543fd0ab03dc7d7fd5196fe8bb1ff1"/><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="2b0383261cec8e5c7212d5f2eb8cf454"/><file name="Item.php" hash="e956eb1171c842859d9ab91f3ef410c8"/><file name="Order.php" hash="6a33e064b57d6cd81563f3dabc98aedf"/><file name="Parent.php" hash="34e287508489fff67e4823c468bf8661"/></dir></dir><file name="Collection.php" hash="7627ccd2307a63a81fdea8c530fd38a3"/><dir name="Comment"><file name="Collection.php" hash="473775d8c46e318aa3c438991e81e4b8"/></dir><file name="Comment.php" hash="e1f351ed0ec213589b29cf5dfc0851b5"/><dir name="Item"><file name="Collection.php" hash="5731b554cc01bf289b3aae069ab7bd6b"/></dir><file name="Item.php" hash="1dbdadf8d58651b08b37f0a75093bcce"/></dir><file name="Invoice.php" hash="0985a22ea865b224062b19cc3acdb7a2"/><dir name="Item"><file name="Collection.php" hash="f9c328e3332bae8d7d6a56305a85afdb"/></dir><file name="Item.php" hash="b9a7c019cda58cb0b1a4157907ffac3e"/><dir name="Payment"><file name="Collection.php" hash="c2e7432b532ac381b869c5e46d8a759a"/></dir><file name="Payment.php" hash="6c0a5ac8f6b8986dcc842f8c4c4d53eb"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="d4793ddad0fee71b951fa45287ecafa1"/><file name="Parent.php" hash="519ab3ea8c74957f2cbdddd21f871f50"/></dir></dir><file name="Collection.php" hash="db788f0e3da76dc1944e72262c9132b9"/><dir name="Comment"><file name="Collection.php" hash="98693746ced501c8b6900774bb9cd093"/></dir><file name="Comment.php" hash="49d67daf14d3082c54d5c6617c9ec19c"/><dir name="Item"><file name="Collection.php" hash="5a8de713464b059130cc6cf3df164f30"/></dir><file name="Item.php" hash="0bab382cb9828171c66f68ce71301a05"/><dir name="Track"><file name="Collection.php" hash="c11625e9135139bb4c8e35f780801ad9"/></dir><file name="Track.php" hash="e555ac5938b8407dc15e9af46367f272"/></dir><file name="Shipment.php" hash="90442acab2fced52569c58061f99b314"/><dir name="Status"><dir name="History"><file name="Collection.php" hash="db8dd0423ed6dd3090e86a2b6d54b38e"/></dir><file name="History.php" hash="010afa69ee1bc6d75cb8d9f7e71251e1"/></dir></dir><file name="Order.php" hash="ee249d376904a567403cb18c11bff88e"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="3dc2c9d89f14da2af5dd3567eefcd33f"/><file name="Parent.php" hash="ae02daaf996116cd5baaddf169a94b97"/><file name="Region.php" hash="aa6929d155e099c82cddf33c78d4c25b"/></dir><file name="Backend.php" hash="ada6b632ee949fefc70e7cd47602ecdf"/><dir name="Frontend"><file name="Custbalance.php" hash="9b97a3e95fe207f13389c3db9eda4672"/><file name="Discount.php" hash="bcdbd4ffb5ee8ddbdbe47421e2d629a1"/><file name="Grand.php" hash="1a4dde3c4512ace0bb16f69dfae76d63"/><file name="Shipping.php" hash="fca436d1af0ec3a58065dddc47814317"/><file name="Subtotal.php" hash="c770e113b79ef05501eb826350de6537"/><file name="Tax.php" hash="f201a5b79c3d86bc787a1d94c26f9795"/></dir><file name="Frontend.php" hash="6663deed8b7770ae28cfce76740decae"/></dir><file name="Collection.php" hash="968a22e1d2ff514245bb0ccf9bc285eb"/><dir name="Item"><file name="Collection.php" hash="d15136c7db392ca14222cfba4b6889c1"/></dir><file name="Item.php" hash="b7616e552aeab785797b3e1fa0a8726b"/><dir name="Rate"><file name="Collection.php" hash="764fac7cb350d2a54b09f63a63924a12"/></dir><file name="Rate.php" hash="cd88976ded80724bab442e50d904e929"/></dir><file name="Address.php" hash="7c7ca80d4fdc6c79f5fecdc455e8ecaa"/><file name="Collection.php" hash="75f34757a52eb79cb886d36790ab6271"/><dir name="Item"><file name="Collection.php" hash="6d3d952bf2f6b882b72b5325c62f4c5a"/></dir><file name="Item.php" hash="9517a2117470f932873f3d8b16cee1ac"/><dir name="Payment"><file name="Collection.php" hash="4fd05e00454cda210a7f927fba328301"/></dir><file name="Payment.php" hash="5a71a13f039b1c7f2f50468d33c7dd24"/></dir><file name="Quote.php" hash="9989cb2478e4fdd611c36fef6acc508b"/><dir name="Sale"><file name="Collection.php" hash="bea4c27ce23e409479adf1f79bd8709a"/></dir><file name="Setup.php" hash="d6f3c5e6c70ffae9c1404fa6d4292827"/></dir><dir name="Mysql4"><file name="Abstract.php" hash="d12f89a16a66a9068353cba5f05a223e"/><dir name="Billing"><dir name="Agreement"><file name="Collection.php" hash="710965f0fd934005da8d4c83dece7550"/></dir><file name="Agreement.php" hash="923babe9c55ce2164bdcd0a94ef4e8bc"/></dir><dir name="Collection"><file name="Abstract.php" hash="87274fda5a701210f87b77d9604251de"/></dir><dir name="Order"><file name="Abstract.php" hash="eaced4a24e027f10d94d6f53fbe21d92"/><dir name="Address"><file name="Collection.php" hash="7c038b6f181c8a3966fc1c5cf5e34640"/></dir><file name="Address.php" hash="ff29e3311002ce43be12e5a91d6b1da5"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="e74b054bc739ad33a356049a3509c3d8"/><file name="Child.php" hash="558490d4f64a480c5eeb23f48e7c30f0"/><file name="Parent.php" hash="4ef6e19383c74b35e65ea2fccdfa7350"/><file name="Shipping.php" hash="f5cbc5b01c156b621b6d9676b70515a2"/></dir></dir><dir name="Collection"><file name="Abstract.php" hash="d2ef36b96e484eb05f9a144f7a0e1ac5"/></dir><file name="Collection.php" hash="1072d2318446752fffe984f485d78a24"/><dir name="Comment"><dir name="Collection"><file name="Abstract.php" hash="d9df028b7b86dfcdc2dd0ed0cf072c11"/></dir></dir><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="e94545b89ecd79340b3d4b49916b6094"/><file name="Parent.php" hash="adf80a157584b4eff97f47978fb2100a"/></dir></dir><file name="Collection.php" hash="a281567b4afa1366d03dbc966fa460d5"/><dir name="Comment"><file name="Collection.php" hash="755191133b2d9f5c23cd395e35a9940a"/></dir><file name="Comment.php" hash="4905bed204ee14da43471f196836ef16"/><dir name="Grid"><file name="Collection.php" hash="af14079eb6603944ed56a472b59d93b6"/></dir><dir name="Item"><file name="Collection.php" hash="3754dda4b1b9b269aee3cc1a604411b8"/></dir><file name="Item.php" hash="01edfe8eeeff847b787540ecb1e2e16a"/></dir><file name="Creditmemo.php" hash="18c88ec4de175eebc00f8b009d17364a"/><dir name="Grid"><file name="Collection.php" hash="af59bede1d5f988ac464802aedee2588"/></dir><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="6c7957523f57d1a853109c34b0425d3a"/><file name="Item.php" hash="ffa9a7ded8bb32eb40091f5ce85cdda2"/><file name="Order.php" hash="e21c183035c5aaafded5e255bb37724f"/><file name="Parent.php" hash="3ef3263c67a15d2fe95ba466f0815c95"/></dir></dir><file name="Collection.php" hash="5e4c4f4e5cd38c2c54a11b18652fb32a"/><dir name="Comment"><file name="Collection.php" hash="b830e77b09c207e95af2a90dff8d72f2"/></dir><file name="Comment.php" hash="f211d7ee656e04eec95e535047f6dc92"/><dir name="Grid"><file name="Collection.php" hash="f808f6269031a5a9d60cbb54893a784d"/></dir><dir name="Item"><file name="Collection.php" hash="404b3d848237e9d603c6f68f7fe2817a"/></dir><file name="Item.php" hash="c1a8fe93361614428ca3c32d06c08713"/></dir><file name="Invoice.php" hash="9bb6a39a36c9d56b181397f0f8bded55"/><dir name="Item"><file name="Collection.php" hash="94c72ab7fb747ce61a132e0928ee19e5"/></dir><file name="Item.php" hash="13d9b87db264f7adf6f22cdde3c63e20"/><dir name="Payment"><file name="Collection.php" hash="2ec3645904237690b347af9acb4baf09"/><dir name="Transaction"><file name="Collection.php" hash="c8362358510365e093c98de78608600d"/></dir><file name="Transaction.php" hash="7f334ddf120f5c7f6b113abb06d2a1ec"/></dir><file name="Payment.php" hash="660718b664b599b51fa353bb3cb5afd9"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="a406b89a624d48aa29ae600c007c0c12"/><file name="Parent.php" hash="bc5d2742024c55ff439523592a310b82"/></dir></dir><file name="Collection.php" hash="6ac549687fc7151c65c40b20fd882808"/><dir name="Comment"><file name="Collection.php" hash="df9a925d885420bda460c230afaca220"/></dir><file name="Comment.php" hash="6e30f7a9192f9811cf5289092f9bbb46"/><dir name="Grid"><file name="Collection.php" hash="57354bff0ac77569b0a32e8569d8be4c"/></dir><dir name="Item"><file name="Collection.php" hash="473c210b4b7bdad1af3b310fc0a8f922"/></dir><file name="Item.php" hash="8e71388582b4d0891dc60b65195ba5af"/><dir name="Track"><file name="Collection.php" hash="549b0cfa09627da8de41d0681ab3c07b"/></dir><file name="Track.php" hash="9906630d788208f383a9059383973f78"/></dir><file name="Shipment.php" hash="b06730da07d51443e7ba9020244cece5"/><dir name="Status"><file name="Collection.php" hash="5ce12f2894eb2e71b04056f74a56db3d"/><dir name="History"><file name="Collection.php" hash="db335452e2ca68c798bb0c05c4ced6d4"/></dir><file name="History.php" hash="f58b802fa285f32f96aa21be59df9ded"/></dir><file name="Status.php" hash="f64acff11b319559d5a682ae2f2eb09c"/><dir name="Tax"><file name="Collection.php" hash="bfd0323dd565de0bd7bbb9804f63e991"/></dir><file name="Tax.php" hash="524f62286c3565a8d006badbef121fa8"/></dir><file name="Order.php" hash="66627134e6c20286c8c7acb9c33b582a"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="f90b9d087c7154c32b0ba915dc6a3a0c"/><file name="Parent.php" hash="3fa6cab874b6b7a5617a150f8b2c1ca0"/><file name="Region.php" hash="ea81bb9a64bda4203dc2f1067ca39a54"/></dir><file name="Backend.php" hash="87f2c8635b883ce589e944499131d465"/><dir name="Frontend"><file name="Custbalance.php" hash="52d52833c5f46decdf9bd4a856f80093"/><file name="Discount.php" hash="648af5482186d234a31505e1bc6ae500"/><file name="Grand.php" hash="cb9b6c627d5b8966aee72db58e4460a2"/><file name="Shipping.php" hash="b7462a6658bb61f49233b8218a73322f"/><file name="Subtotal.php" hash="761b9c8e389b4bde68396f69b5407bab"/><file name="Tax.php" hash="629321380f74bc26cef7264ac5c2dde3"/></dir><file name="Frontend.php" hash="fa01a05e99d7f3e602575c340f4c607b"/></dir><file name="Collection.php" hash="a86add0a2fd554af53fd940ca7b5758e"/><dir name="Item"><file name="Collection.php" hash="c75c7cb0ba7d071d42923e642a898009"/></dir><file name="Item.php" hash="076f3fad0e42176998ad492d286369fc"/><dir name="Rate"><file name="Collection.php" hash="5d948c6fa35b627fda071895000f40cb"/></dir><file name="Rate.php" hash="9826e55d12d254250ff2eb5e60bd1c23"/></dir><file name="Address.php" hash="fe4ff7530d9772854641a76ae2052a8e"/><file name="Collection.php" hash="998e958aa6d8c085a96ba19789657964"/><dir name="Item"><file name="Collection.php" hash="422290fb391c6e242436ff5def1b1deb"/><dir name="Option"><file name="Collection.php" hash="89d56a8521f26b4162bea949a786c6fc"/></dir><file name="Option.php" hash="9f1e28275ad2c5b4816c438296727129"/></dir><file name="Item.php" hash="0c26721d7af53a1d389be27183f630a4"/><dir name="Payment"><file name="Collection.php" hash="48c6b856e3e6b7c8e23e0fb1da6932b1"/></dir><file name="Payment.php" hash="e592e97eaf9d243042cc366d5846fe81"/></dir><file name="Quote.php" hash="7fc8dbbdcb80abc93eca614aa8bd06fc"/><dir name="Recurring"><dir name="Profile"><file name="Collection.php" hash="08722279a3a0a4f474aad055e732aaa2"/></dir><file name="Profile.php" hash="f56cfd3293d3cbeac339edefe5977fe8"/></dir><dir name="Report"><file name="Abstract.php" hash="efc244667a406052af6f89fd35d94fdc"/><dir name="Bestsellers"><file name="Collection.php" hash="c2af090807cc79cdaac55d1059c377f0"/></dir><file name="Bestsellers.php" hash="ca75e70a1765aa211b7bd09608fdcf8a"/><dir name="Collection"><file name="Abstract.php" hash="6ccbc672629fcdc8b6272bbcfafff7e8"/></dir><dir name="Invoiced"><dir name="Collection"><file name="Invoiced.php" hash="51f1eac170f2465080d104114093e0e1"/><file name="Order.php" hash="db5eae7f77229c4598aae657b8c936da"/></dir></dir><file name="Invoiced.php" hash="bf10ed9ca5323d4b31c4f5c8f98ce378"/><dir name="Order"><file name="Collection.php" hash="3c1434cd5c02a3375913079adeebe2ee"/><dir name="Updatedat"><file name="Collection.php" hash="0264dd6d390e6625eb398d5ef66ec29d"/></dir></dir><file name="Order.php" hash="fa060bf8a358181af5ea4c5a0cb71008"/><dir name="Refunded"><dir name="Collection"><file name="Order.php" hash="76f32743c0658c289d1ea66c24bc91d3"/><file name="Refunded.php" hash="301c9cd4e574585f67f6409064547297"/></dir></dir><file name="Refunded.php" hash="cc07f06b3b2193ee644ca1d384b66171"/><dir name="Shipping"><dir name="Collection"><file name="Order.php" hash="75275bc7cf3b6ec53eb3fb3e9536a15d"/><file name="Shipment.php" hash="73d8f9fc683a8cd3d8b389d3325f4629"/></dir></dir><file name="Shipping.php" hash="20b9e95f7a75936ddac39b3e1493a812"/></dir><file name="Report.php" hash="7828f88e9d9974abc4efdd8312672999"/><dir name="Sale"><file name="Collection.php" hash="602312e983120d7c5107de9cafb274b4"/></dir><file name="Setup.php" hash="eff4b297bf369baf2878dcee94c3c725"/></dir><file name="Observer.php" hash="af8249b4041fc99dc39402b44b9070a6"/><dir name="Order"><file name="Address.php" hash="b5aaf6b398fea44f576767a36da61b3f"/><dir name="Api"><file name="V2.php" hash="61a763b0b1cc10e7a1f810e7014debdf"/></dir><file name="Api.php" hash="60720076b3e2d6fa19f198ee6b3fea34"/><file name="Config.php" hash="9de4f1dec458aea9d9b5f9a7341e6280"/><dir name="Creditmemo"><dir name="Api"><file name="V2.php" hash="9a98607475d99105414a0ae82afaf4d0"/></dir><file name="Api.php" hash="f8679da662ef327e76843a9cc1f3793d"/><file name="Comment.php" hash="38afb28018280129c420cb149337b00f"/><file name="Config.php" hash="2b1841ce51d9a41a60b23630edbdd12e"/><file name="Item.php" hash="82f431c3cd11ee553cd071f314ac60b5"/><dir name="Total"><file name="Abstract.php" hash="734d7caeedbc5d4947e207e949289561"/><file name="Cost.php" hash="6a74bbae062751be9c4fd797f75ead47"/><file name="Discount.php" hash="184c13257733df0c2c6ff03a753e7faf"/><file name="Grand.php" hash="853363438c6fa900f20f5a69999e85dc"/><file name="Shipping.php" hash="360dde779af523188fcb845e203796ae"/><file name="Subtotal.php" hash="b215261de63a33f4e3a1d2092b73e838"/><file name="Tax.php" hash="72e683482df722523fe89da62b8157d3"/></dir></dir><file name="Creditmemo.php" hash="f2e811cff4ca81f4632df4b98c63b88f"/><dir name="Invoice"><dir name="Api"><file name="V2.php" hash="e04827c97bc64a9b4a47f01ec07efb35"/></dir><file name="Api.php" hash="9d8d2f62139c7fb8c3e5403a3569b2da"/><file name="Comment.php" hash="71efb48707ef5e985335830845a47198"/><file name="Config.php" hash="aa47690e5b82454c5c0af87131307b1e"/><file name="Item.php" hash="96425a3ff3e8b7e161572f6810632840"/><dir name="Total"><file name="Abstract.php" hash="0cfd189857a55d3ac0681810a731b58c"/><file name="Cost.php" hash="fee6afa197d455c74716d76734a1180b"/><file name="Discount.php" hash="083078f98215a8d2d66138fa7096ed8f"/><file name="Grand.php" hash="32612eb9c44d2ec6cc8e11daab5586f6"/><file name="Shipping.php" hash="d3513d00b2308f6907b73b5193714fd1"/><file name="Subtotal.php" hash="6cf4a05ec9051d00d97f36828fa5f041"/><file name="Tax.php" hash="432e2791339a3bc66c106977509e334c"/></dir></dir><file name="Invoice.php" hash="14e3a7d612dbe05d3967da27842c2444"/><file name="Item.php" hash="b4be5fc454af9ce0aea4af15bb9c0007"/><dir name="Payment"><file name="Transaction.php" hash="5415a0f3baaae203f4e6889204d5fbef"/></dir><file name="Payment.php" hash="2b93e3dca7135820fe90c291384746c0"/><dir name="Pdf"><file name="Abstract.php" hash="99500e8639a6ae441d03487ccd224b1f"/><file name="Creditmemo.php" hash="f285b8eed25541d884ed4b05e8cd9995"/><file name="Invoice.php" hash="42b3b2072b65e431c1255779846ceb53"/><dir name="Items"><file name="Abstract.php" hash="ea2808f1fbd4cdcca4fe94acd8afa003"/><dir name="Creditmemo"><file name="Default.php" hash="f79904131e7df30bbe7959ce7b85083e"/><file name="Grouped.php" hash="3c18661d38676d9a8d01e4bfc5913d3d"/></dir><dir name="Invoice"><file name="Default.php" hash="e2d04550d67ed65fe47648917bb72522"/><file name="Grouped.php" hash="a1597c343881ab54665f2f98a8da215d"/></dir><dir name="Shipment"><file name="Default.php" hash="f358a2c8971ee532161f6dc004e3a81d"/></dir></dir><dir name="Shipment"><file name="Packaging.php" hash="e1b05ca73d859e0b70e13c74b98238e3"/></dir><file name="Shipment.php" hash="8a3ac8ab741a72ff505785b5dd6546ca"/><dir name="Total"><file name="Default.php" hash="8f7266cff28f558dfce099a332cb7693"/></dir></dir><dir name="Shipment"><dir name="Api"><file name="V2.php" hash="4b37ad12413b8f00972b3d3f4315fcad"/></dir><file name="Api.php" hash="591c40d195e796254c8264645bdeeca6"/><file name="Comment.php" hash="832f87c9d3c6f98457f89494a3007fa1"/><file name="Item.php" hash="57e626460ed5d16d6fd8d1b684fe1c55"/><file name="Track.php" hash="ef300b5958bf00f73e7fd41aacc49594"/></dir><file name="Shipment.php" hash="d3dc3eb9bf6d50ddd606dd14212dea75"/><dir name="Status"><file name="History.php" hash="9fa47f2e20b7e333d714d296ba3b99e9"/></dir><file name="Status.php" hash="2c5ae7c06fd502603361fc3063e4a793"/><file name="Tax.php" hash="0e3c13ad8faa32eb24960e3d254180e1"/><dir name="Total"><file name="Abstract.php" hash="fcea40c1cb0c35f58a5a720cb409ad1c"/><dir name="Config"><file name="Base.php" hash="2f32b6816b83ddf645211a284a18ca25"/></dir></dir><file name="Total.php" hash="5cd140158579497b17bd6e79162011bd"/></dir><file name="Order.php" hash="af5078bbfd6c711ddb974aa6f088166e"/><dir name="Payment"><dir name="Method"><dir name="Billing"><file name="AgreementAbstract.php" hash="fcf2161aa71002dc50725409ed6de596"/></dir></dir></dir><dir name="Quote"><dir name="Address"><file name="Item.php" hash="ea12e72ec8424db3aa2bc593241c9699"/><file name="Rate.php" hash="61ed371c7a1a57fbc388d7f6bfdfc1cf"/><dir name="Total"><file name="Abstract.php" hash="6bbbbce102c225d2b2bc5625b0b12ff6"/><file name="Collector.php" hash="d7a41cc4fa813af40b13c1cbc039cf5f"/><file name="Custbalance.php" hash="d141306f03fc099f0584e982b1c80559"/><file name="Discount.php" hash="603730b9fcff49d2a304e8467472a7eb"/><file name="Grand.php" hash="e5525fd20218935749c16ae5fbd98176"/><file name="Msrp.php" hash="de22dfc41e2640f2b9a6f76e2a0f8474"/><dir name="Nominal"><file name="Collector.php" hash="bedeac0b799a55eef8af99dc6d398fda"/><dir name="Recurring"><file name="Initial.php" hash="7ca5ffb59d71e46b429c40e1229077dc"/><file name="Trial.php" hash="ac1f6b68f4659acd0609df9c9d94f3ed"/></dir><file name="RecurringAbstract.php" hash="201fc90c8ea7f9403dd6e29ce681cf67"/><file name="Shipping.php" hash="852de22dfb4f3ef9b303e8f6ab3b3b9a"/><file name="Subtotal.php" hash="ae07f40723e388d6461f2f8ecb4fc493"/></dir><file name="Nominal.php" hash="5a9d8bb830fde9dc147854f6acc127d2"/><file name="Shipping.php" hash="a7de312528e726122cd380038067c4de"/><file name="Subtotal.php" hash="cda4be38250971f7a665db518093f092"/><file name="Tax.php" hash="7e494a87976e318906077abb778fa2d3"/></dir><file name="Total.php" hash="376cf52b2a0324714b3b264407970b4f"/></dir><file name="Address.php" hash="77204f9535b973a39dd2e8fa14b400d5"/><file name="Config.php" hash="4c65b9bbda8a9f2cf6e19a2013680f67"/><dir name="Item"><file name="Abstract.php" hash="2eb89299ed4861565f887da0a27c952c"/><file name="Option.php" hash="4284d9ca3a81cdc0cedc2581d3baacd5"/></dir><file name="Item.php" hash="ebdce1384b5f5a3afb39a3d24dad5373"/><file name="Payment.php" hash="c68884655d0fc6bfbe86597e5e4e54a5"/></dir><file name="Quote.php" hash="d4a6d48b9f10eabfeabe2ab22a37aba6"/><dir name="Recurring"><file name="Profile.php" hash="2b09538dc730a146093dfd2a8e4f3a0e"/></dir><dir name="Resource"><file name="Abstract.php" hash="a56c65b3e68ac908a1c40adae76c2f23"/><dir name="Billing"><dir name="Agreement"><file name="Collection.php" hash="ac427d72b5e018173ddb6550d62da685"/></dir><file name="Agreement.php" hash="cc469f2f01bdcc8c4c72681a39847e21"/></dir><dir name="Collection"><file name="Abstract.php" hash="19484c8d144e8243405ab083a5e91d2b"/></dir><dir name="Helper"><file name="Interface.php" hash="8ce1b682deae4814812cb98a8162e8e6"/><file name="Mysql4.php" hash="bc687fc66fb4d2678873d2e7c04a1e01"/></dir><dir name="Order"><file name="Abstract.php" hash="89f4e7c6cd503c1390a0c127fb0a7381"/><dir name="Address"><file name="Collection.php" hash="fa8eadfeaa028a016b40ac04734b9e68"/></dir><file name="Address.php" hash="47fbb096ec189bac3fe97f215a79697d"/><dir name="Attribute"><dir name="Backend"><file name="Billing.php" hash="506ea2c822a89532f120ea13ac6099cd"/><file name="Child.php" hash="4d81b1cf9fe25d8df19d44aa516be6be"/><file name="Parent.php" hash="f14239349ff28e561bc8534743b22aaa"/><file name="Shipping.php" hash="c79a59a848d3c1692dfe3a82ef761ef6"/></dir></dir><dir name="Collection"><file name="Abstract.php" hash="c64eb8965d55c5eeacb7856bff91f36a"/></dir><file name="Collection.php" hash="d3dab5f90d3a84ba0548b217a12c9b72"/><dir name="Comment"><dir name="Collection"><file name="Abstract.php" hash="34add69ec5c79f8726b971c1620181f1"/></dir></dir><dir name="Creditmemo"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="a040e9da7bb848a6a61b330e5fd4edfa"/><file name="Parent.php" hash="dadde192982cb95d32ce82adac882e4a"/></dir></dir><file name="Collection.php" hash="fa47186a90e42584a49e001c5532b32c"/><dir name="Comment"><file name="Collection.php" hash="103422d9049c3ac381ab7e665daccb9f"/></dir><file name="Comment.php" hash="a61c32f0e00415c7a3ff911d05cd39cc"/><dir name="Grid"><file name="Collection.php" hash="5ced80afeb94905b80eee5925f45ef17"/></dir><dir name="Item"><file name="Collection.php" hash="9dff81ac8137cb216a13a774badda549"/></dir><file name="Item.php" hash="31a8c3a138c9565d0e79bbd07a023eb8"/></dir><file name="Creditmemo.php" hash="e7a8a584f07a00a9e10ef1592bac5bce"/><dir name="Grid"><file name="Collection.php" hash="e7972c610e58d9c746349f7c0d573894"/></dir><dir name="Invoice"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="3b6d7bc632b74727578ad0b77bf2daba"/><file name="Item.php" hash="e962dbfe36cfe0cb23faf16eb8f582c8"/><file name="Order.php" hash="bdebc5b6093057017c31d5b1877d9014"/><file name="Parent.php" hash="5686ccf311802d7134c969942788832a"/></dir></dir><file name="Collection.php" hash="3bf9ddee39489f83d98be8f1f84eba5e"/><dir name="Comment"><file name="Collection.php" hash="15195ba2555e4fb35e493830e8c5266e"/></dir><file name="Comment.php" hash="41dcb8ab21d15d4a1d315f891d429136"/><dir name="Grid"><file name="Collection.php" hash="a82f47818143ded93703b22c0cbb62d8"/></dir><dir name="Item"><file name="Collection.php" hash="9618891171bb13d7821c773cdd346fdd"/></dir><file name="Item.php" hash="9cedbe54187f8926cedef976e27759d3"/></dir><file name="Invoice.php" hash="02058b23cf63cd0c8ab8c9697d74c9c5"/><dir name="Item"><file name="Collection.php" hash="51d426ee2191db7f4e9b0ed3afbd6698"/></dir><file name="Item.php" hash="b690d152ea3dfb9dd3380d741cc09ba7"/><dir name="Payment"><file name="Collection.php" hash="fc6382cef0d1fbdbb0a42c227251d36a"/><dir name="Transaction"><file name="Collection.php" hash="cb2c63339719d9d99d00cdf26c0214de"/></dir><file name="Transaction.php" hash="c6821e69bd18c4a00ba6e7fd3ebbf361"/></dir><file name="Payment.php" hash="6ca4b4fdb55b84d336e121e6ae6b95d6"/><dir name="Shipment"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="4ba5eedeaf8309b199eb2fcfdcb07d60"/><file name="Parent.php" hash="2bfe8559afcc459971bd6dcd3bc7656c"/></dir></dir><file name="Collection.php" hash="3d5cae59fea64fc1ae428f076c3e4daf"/><dir name="Comment"><file name="Collection.php" hash="99475e1992a15bdaec93ba5cc949ea5c"/></dir><file name="Comment.php" hash="7880148dcadae0a97c34e8cd7516f116"/><dir name="Grid"><file name="Collection.php" hash="12f7a15a174921f190e4ff3664d58148"/></dir><dir name="Item"><file name="Collection.php" hash="453322c8099ce1ce02ad2d4acfdacbc7"/></dir><file name="Item.php" hash="59afa9fd390ec49e3d4ce6d8ef01d025"/><dir name="Track"><file name="Collection.php" hash="33d07bf647e12110363a7962b5bd5469"/></dir><file name="Track.php" hash="4915b855be0f53287306a287a229c9b2"/></dir><file name="Shipment.php" hash="46c000412d0a5f1c441cbde032f8f0de"/><dir name="Status"><file name="Collection.php" hash="dba6909246ba69c305b49859864a7039"/><dir name="History"><file name="Collection.php" hash="15c83d6eace7253cec6a2e4810e4e82a"/></dir><file name="History.php" hash="0e7fbeb03289e64df359b229f8571378"/></dir><file name="Status.php" hash="792bc432c727ce1d8dec519f47a30abf"/><dir name="Tax"><file name="Collection.php" hash="95e805cec38b5d5c7c584a65210ce913"/></dir><file name="Tax.php" hash="d7821ceb2f3ddcb29dc66b88a646058f"/></dir><file name="Order.php" hash="8b25ec73560f8644ab0376de07e81ecd"/><dir name="Quote"><dir name="Address"><dir name="Attribute"><dir name="Backend"><file name="Child.php" hash="ca8ac35d3e13d27a950a051d2e0adfc9"/><file name="Parent.php" hash="0f4511956cfbc4713fb7278ed958df2f"/><file name="Region.php" hash="0735a5a338c6f035ddf95689281e080a"/></dir><file name="Backend.php" hash="f7eece248dceb7811c5d48ad018f7bc2"/><dir name="Frontend"><file name="Custbalance.php" hash="f027ff02b8bb782388b9b7e69700a690"/><file name="Discount.php" hash="82b08a77b8b244f432b4d601e0f20fa9"/><file name="Grand.php" hash="036b8d97f3c6f4355d00ca84d3f9432b"/><file name="Shipping.php" hash="5354411cc83b29a7df63cf50030c0fda"/><file name="Subtotal.php" hash="0b86d5e81f0576df09de5ed8a773a8f2"/><file name="Tax.php" hash="ebfa77cf9dd43485695ebbbd3bef21e9"/></dir><file name="Frontend.php" hash="a8151b164769e3f2763e0869b51ec6d1"/></dir><file name="Collection.php" hash="44c7a8720c2c1aacb9cda1ed4c49563b"/><dir name="Item"><file name="Collection.php" hash="8c1099b9ea900b683103ab1af47adda3"/></dir><file name="Item.php" hash="a21914009409a143fccd2772de4a0575"/><dir name="Rate"><file name="Collection.php" hash="718cc26d336586466d1fbbefa6cae9c6"/></dir><file name="Rate.php" hash="12455eda9d701a890068c0bfb94056c2"/></dir><file name="Address.php" hash="460c102f3194bbf255619853e4b79053"/><file name="Collection.php" hash="8e4a53611328a7d9f14608bb280e650c"/><dir name="Item"><file name="Collection.php" hash="0e66744af4b82925604fdb0e3b31eb2a"/><dir name="Option"><file name="Collection.php" hash="5c14f50b6104952d4e76c6c412488577"/></dir><file name="Option.php" hash="a40a4bc013ed117bd5b21e2dab161a66"/></dir><file name="Item.php" hash="0c3531593e88f210eae490a4a96588fa"/><dir name="Payment"><file name="Collection.php" hash="0e5317d6d76d0137b44b03b659a385e2"/></dir><file name="Payment.php" hash="b78507a4dc1da255466486c8818f78bf"/></dir><file name="Quote.php" hash="225b016e2cafc6e77fa9112bc8bff968"/><dir name="Recurring"><dir name="Profile"><file name="Collection.php" hash="3b97e1fd792ea29e03362f39b3adaa08"/></dir><file name="Profile.php" hash="617d2b03a9b01f6d3411fb48a720478e"/></dir><dir name="Report"><file name="Abstract.php" hash="cb7d4c7c801edcd8cfdcf17956921f97"/><dir name="Bestsellers"><file name="Collection.php" hash="c8dc0bc69b02b71d22472fe759aa4d00"/></dir><file name="Bestsellers.php" hash="8aca9e7ac793e3af64eaf382431329bc"/><dir name="Collection"><file name="Abstract.php" hash="f78d7f267b278f63629372fc621709f2"/></dir><dir name="Invoiced"><dir name="Collection"><file name="Invoiced.php" hash="19c19915f20e148c27c7d1c09b3ec37b"/><file name="Order.php" hash="a82edad51925a47b467307235c8dd780"/></dir></dir><file name="Invoiced.php" hash="707173594e3d21fc44332f162749d7a9"/><dir name="Order"><file name="Collection.php" hash="f021d66db855f2fc030a8d503046f073"/><file name="Createdat.php" hash="40ee1bd59b007a9dd45d4e1ead89d5be"/><dir name="Updatedat"><file name="Collection.php" hash="229247f6c1ffc4cb832b89e55e5c643b"/></dir><file name="Updatedat.php" hash="182c1ec4c6e22f0ec4642094a5baa75e"/></dir><file name="Order.php" hash="1b5124776b6983193c0f836e09629a73"/><dir name="Refunded"><dir name="Collection"><file name="Order.php" hash="c86a880bbbc3e3c939740a21ee705b65"/><file name="Refunded.php" hash="5b2ee7377fc029b459021211662410c3"/></dir></dir><file name="Refunded.php" hash="60f6c42c8d259a7e018bfc59deae97c8"/><dir name="Shipping"><dir name="Collection"><file name="Order.php" hash="4d3e40e091390b09db1456ff99317652"/><file name="Shipment.php" hash="7868a4e901eb49f1f023030a21152e76"/></dir></dir><file name="Shipping.php" hash="23198ac1648eacd30e457900c03c1fbd"/></dir><file name="Report.php" hash="c06b39cf180fe07e3a95e79292e9331e"/><dir name="Sale"><file name="Collection.php" hash="f55060aae60f709e8db01519cf221578"/></dir><file name="Setup.php" hash="b5d75c487de0d1c2d4dbcd5f9df1cd56"/></dir><dir name="Service"><file name="Order.php" hash="d35c0087381364015dfd6a6f76b9fa72"/><file name="Quote.php" hash="8895124dcc1b104750132a3fdb4bb10d"/></dir><dir name="Status"><file name="List.php" hash="48a7c3fe6e8ad5fe60fbc724354a3635"/></dir></dir><dir name="controllers"><dir name="Billing"><file name="AgreementController.php" hash="16105acc9d6fab8bbf0cde7207efea03"/></dir><file name="DownloadController.php" hash="093b8f38ab59b12168416b0c0cc52a32"/><file name="GuestController.php" hash="be829deb8f9c3e37e92e1fce8c094b40"/><file name="OrderController.php" hash="959facfa8eb16ae41a10d4e46969500d"/><dir name="Recurring"><file name="ProfileController.php" hash="44154e960c47f91846a914c02eaee80f"/></dir></dir><dir name="data"><dir name="sales_setup"><file name="data-install-1.6.0.0.php" hash="4a6712e20d22ae761842ee7be870d496"/><file name="data-upgrade-1.6.0.4-1.6.0.5.php" hash="dad2f163ecbfd7c224947292c5899d5d"/></dir></dir><dir name="doc"><file name="invoice.txt" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="order.txt" hash="5dce876530c94ebbedbba7a234c23846"/><file name="order_actions.HTM" hash="b955e61bff753ea0534f907ef6ba9bb6"/><file name="quote.txt" hash="55ecfbdd576958ff1b1fbf16957ba9df"/><file name="test.php" hash="4d7ea87f963d0256869405e6a1d19b0b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="ba7c07cb628f2b05ae380dfd81679fe3"/><file name="api.xml" hash="91a657769f66f5e04cf4e73b016dcb05"/><file name="api2.xml" hash="3b99b83b783e2c95f1792d6ee7af063a"/><file name="config.xml" hash="3a4ded953dbb8b1926efd5b17e56c999"/><file name="system.xml" hash="a1296df14bec6424736e61b565885ff3"/><file name="widget.xml" hash="573f3a91b06b4a29d119f30067f47e0a"/><file name="wsdl.xml" hash="ed13de1dde6408ab508892374ef57b81"/><file name="wsi.xml" hash="6aba2f44765955ec8bcd1afcebfb0800"/></dir><dir name="sql"><dir name="sales_setup"><file name="install-1.6.0.0.php" hash="ad9131b711aeddde2bd8e77a764a119c"/><file name="mysql4-install-0.7.0.php" hash="45a8b3690a68b98bc6c666163f5cb93e"/><file name="mysql4-install-0.8.11.php" hash="8bcd40d0c68f907e544fc6d25d4ed814"/><file name="mysql4-install-0.9.0.php" hash="d98e55a800406643b1feccc8b844336b"/><file name="mysql4-install-1.4.0.0.php" hash="c37c1fde345f093f3c621cade0113bde"/><file name="mysql4-upgrade-0.6.2-0.7.0.php" hash="7a301e36f307f42a4c885e858a71ee44"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="d8f8a077777d2046b9770e3ed0b950e8"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="ce1c736098a85a220629cfc4ea41780b"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="809d679d0c3100564a7092a7c57dd959"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="e4118cf7756d6b1006cac5a2026d70a3"/><file name="mysql4-upgrade-0.8.0-0.8.1.php" hash="56b2f5fd8ea04c1f64bc7ece1ada04ab"/><file name="mysql4-upgrade-0.8.1-0.8.2.php" hash="d2cc0692775cec0c0a98942ea9e53a91"/><file name="mysql4-upgrade-0.8.11-0.8.12.php" hash="7ce9f421f2354f9d74e7c57e138f2344"/><file name="mysql4-upgrade-0.8.12-0.8.13.php" hash="d97fd3692fc674a1d16775195edd7d04"/><file name="mysql4-upgrade-0.8.13-0.8.14.php" hash="896cd390d0263ecd2d55dd2c060debfa"/><file name="mysql4-upgrade-0.8.14-0.8.15.php" hash="bf0bc110da8ed3f7b56315a6ff5c7103"/><file name="mysql4-upgrade-0.8.15-0.8.16.php" hash="119f891e77b37b2bfa1902a6100e8703"/><file name="mysql4-upgrade-0.8.16-0.8.17.php" hash="6cc567d7432ffe1fd816752ce3968e9b"/><file name="mysql4-upgrade-0.8.17-0.8.18.php" hash="99e19181f870c0be92934fcf94c11ca5"/><file name="mysql4-upgrade-0.8.18-0.8.19.php" hash="63705ff013020bf9ea9fa32a5cd1c7d2"/><file name="mysql4-upgrade-0.8.19-0.8.20.php" hash="8b20d23b8762d3559179c1787b256670"/><file name="mysql4-upgrade-0.8.2-0.8.3.php" hash="6c4685d51fcbc235025d136d21e5cafc"/><file name="mysql4-upgrade-0.8.20-0.8.21.php" hash="9bfd3bb05a815a828e7a1172a94b083b"/><file name="mysql4-upgrade-0.8.21-0.8.22.php" hash="e0d3f4ddf5dd5247c988e895aa3d6de3"/><file name="mysql4-upgrade-0.8.22-0.8.23.php" hash="2ab58a83c8f9a058ccfb0d1b4679c542"/><file name="mysql4-upgrade-0.8.23-0.8.24.php" hash="c155ed1c4bfa5341c496cc07138029cb"/><file name="mysql4-upgrade-0.8.24-0.8.25.php" hash="8e6bb2382269dbb243d9f4c72149a75e"/><file name="mysql4-upgrade-0.8.25-0.8.26.php" hash="43baf31a4445aeed7627e5ded2131cd2"/><file name="mysql4-upgrade-0.8.26-0.8.27.php" hash="fb6ab16d8d951dce412eaf5dbb68a07d"/><file name="mysql4-upgrade-0.8.27-0.8.28.php" hash="a77c3985614fecd5594210988d0e7469"/><file name="mysql4-upgrade-0.8.28-0.8.29.php" hash="6d28baeb420cc75fbca6b57c8a9b61d0"/><file name="mysql4-upgrade-0.8.29-0.9.0.php" hash="0a4087c60fd53c78937f37e400eeeb99"/><file name="mysql4-upgrade-0.8.3-0.8.4.php" hash="49c9703203c22880d6bbaae0b0077550"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="6c4685d51fcbc235025d136d21e5cafc"/><file name="mysql4-upgrade-0.8.7-0.8.8.php" hash="908bfd3db7f9604320d4da1af4623fe1"/><file name="mysql4-upgrade-0.8.8-0.8.9.php" hash="5067ca1cf42fc83e02535dc576396362"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="94c98afbb3dab321fe18a2f411a43608"/><file name="mysql4-upgrade-0.9.1-0.9.2.php" hash="46a9bee30d60aafc06ef8062c850ccb4"/><file name="mysql4-upgrade-0.9.10-0.9.11.php" hash="85c6b75f00dcb9b55d43f74934297785"/><file name="mysql4-upgrade-0.9.11-0.9.12.php" hash="ba81e70efd8d25ad2b70aea0cc34ebeb"/><file name="mysql4-upgrade-0.9.12-0.9.13.php" hash="d65c5e3a285022f148afccac45620391"/><file name="mysql4-upgrade-0.9.13-0.9.14.php" hash="e5c09c14a0bed9d5839c5889f90ec66f"/><file name="mysql4-upgrade-0.9.14-0.9.15.php" hash="4b13fee2809c60d36c6844d8066f3740"/><file name="mysql4-upgrade-0.9.15-0.9.16.php" hash="becb6607d0134c46960991259ad7688d"/><file name="mysql4-upgrade-0.9.16-0.9.17.php" hash="e3def15b7cac3e7922f62d1ddba74121"/><file name="mysql4-upgrade-0.9.17-0.9.18.php" hash="cc8eed29e8f88b95889bb8936f8e1c27"/><file name="mysql4-upgrade-0.9.18-0.9.19.php" hash="60b35d580283517075fd5aeb267dce43"/><file name="mysql4-upgrade-0.9.19-0.9.20.php" hash="dc771038130ae3fe56043b5da05e6625"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="fcc73a33a728a715265acb1dde471a63"/><file name="mysql4-upgrade-0.9.20-0.9.21.php" hash="cb0c3364e1c89b160bf4e552fcc17e68"/><file name="mysql4-upgrade-0.9.21-0.9.22.php" hash="2ffbf9d7615b6200c82df4184257c6de"/><file name="mysql4-upgrade-0.9.22-0.9.23.php" hash="84b7e53b5eb48467c582e5a3fb5a0ac3"/><file name="mysql4-upgrade-0.9.23-0.9.24.php" hash="61deeb2a8e4cec9d2a477321c2167782"/><file name="mysql4-upgrade-0.9.24-0.9.25.php" hash="266c119a6facd3915b43efe9aa60e6d7"/><file name="mysql4-upgrade-0.9.25-0.9.26.php" hash="30f73941ce05f5fb0064376d6ec1fb27"/><file name="mysql4-upgrade-0.9.26-0.9.27.php" hash="9d607f87c05367acc5108bc35267dbb2"/><file name="mysql4-upgrade-0.9.27-0.9.28.php" hash="e12b21bd4364a9c90037907c5e5faa39"/><file name="mysql4-upgrade-0.9.28-0.9.29.php" hash="d76c8dbd3ebbb686be493f70cd9afe82"/><file name="mysql4-upgrade-0.9.29-0.9.30.php" hash="e7635a8301589e9be0079af1ad7b01d7"/><file name="mysql4-upgrade-0.9.3-0.9.4.php" hash="1e56964c6ca31627ee5bc04dafe390bf"/><file name="mysql4-upgrade-0.9.30-0.9.31.php" hash="5351da3d29337b463cd12b9c6765ba02"/><file name="mysql4-upgrade-0.9.31-0.9.32.php" hash="4dfcaa3fee69eca37b5f25df6c43399d"/><file name="mysql4-upgrade-0.9.32-0.9.33.php" hash="6248da914bead9ed0fd5ef3ab9e412eb"/><file name="mysql4-upgrade-0.9.33-0.9.34.php" hash="2768ce258e815cb67a520837fe3a47a5"/><file name="mysql4-upgrade-0.9.34-0.9.35.php" hash="df2e4f1dc28d8353b7aa2421946dce1b"/><file name="mysql4-upgrade-0.9.35-0.9.36.php" hash="4a0d859ef0b4c69870b3eaeed4d445af"/><file name="mysql4-upgrade-0.9.36-0.9.37.php" hash="c62bdd2cf00b0952a7244a65db44bcd9"/><file name="mysql4-upgrade-0.9.37-0.9.38.php" hash="ec05f8b858c37c0dea93eb77380f6041"/><file name="mysql4-upgrade-0.9.38-0.9.39.php" hash="91ed75e00e054bf67caf681bb8f5e70f"/><file name="mysql4-upgrade-0.9.39-0.9.40.php" hash="9e5a3b0e1128f75e9147ab1317816e99"/><file name="mysql4-upgrade-0.9.4-0.9.5.php" hash="3714b986a17d6eb1e23b601c34dab1bc"/><file name="mysql4-upgrade-0.9.40-0.9.41.php" hash="220e2d412c77116c1e66ffb3a21781b8"/><file name="mysql4-upgrade-0.9.41-0.9.42.php" hash="266785c96f2c8749a5ddba6d4366c33b"/><file name="mysql4-upgrade-0.9.42-0.9.43.php" hash="cfd3b55f8b67762d24b9164f0d4722c4"/><file name="mysql4-upgrade-0.9.43-0.9.44.php" hash="b8fad415444e87770e31626f46738038"/><file name="mysql4-upgrade-0.9.44-0.9.45.php" hash="46215a5f44641500fc5758a49020be10"/><file name="mysql4-upgrade-0.9.45-0.9.46.php" hash="e62f6bb08a26192bfaf032eb0a6cf545"/><file name="mysql4-upgrade-0.9.46-0.9.47.php" hash="7c1674670c11bee0f2d4107a1261bdcd"/><file name="mysql4-upgrade-0.9.47-0.9.48.php" hash="3f738c494b2b70dfc622e9f6be041681"/><file name="mysql4-upgrade-0.9.48-0.9.49.php" hash="be3a23a307dd56909d2bc650ccc41664"/><file name="mysql4-upgrade-0.9.49-0.9.50.php" hash="21c27ed39e31746fba42aa894f7436c3"/><file name="mysql4-upgrade-0.9.5-0.9.6.php" hash="ec660fbb133e1e6bd51453255ebf4c9b"/><file name="mysql4-upgrade-0.9.50-0.9.51.php" hash="6a0363c0019604c3bea7cb0e3e24c217"/><file name="mysql4-upgrade-0.9.51-0.9.52.php" hash="9085d690dc27f1317fcf528e413acc40"/><file name="mysql4-upgrade-0.9.52-0.9.53.php" hash="3567bd3103389dd61fde91a6ca48ca79"/><file name="mysql4-upgrade-0.9.53-0.9.54.php" hash="3b96ee5e33b97a42023da26997b16197"/><file name="mysql4-upgrade-0.9.54-0.9.55.php" hash="03ff417b6fb863ece368dbb5f81d5d70"/><file name="mysql4-upgrade-0.9.55-0.9.56.php" hash="e7ca15be03ac7cfac0fcea4b0fa2985b"/><file name="mysql4-upgrade-0.9.6-0.9.7.php" hash="635341008791d12bd8e4bd215d534443"/><file name="mysql4-upgrade-0.9.7-0.9.8.php" hash="890cab701c586792fe8a12ce39ac1f19"/><file name="mysql4-upgrade-0.9.8-0.9.9.php" hash="4b41356735f8ff28b1742c57f5ed1a4a"/><file name="mysql4-upgrade-0.9.9-0.9.10.php" hash="dda8e2af0238f263a5c5f92a14ace840"/><file name="mysql4-upgrade-1.3.99-1.4.0.0.php" hash="77ac2194c56f7bb14383a34de91dbd80"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="06fe1dc0108327de8543edb5ffc593b7"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="a1847daa20b04fd39ff6dd0c9953c8af"/><file name="mysql4-upgrade-1.4.0.15-1.4.0.16.php" hash="54ba869b091e90c02c5d201e6f7c0212"/><file name="mysql4-upgrade-1.4.0.16-1.4.0.17.php" hash="9ad817104bcae36c8b1c00d238ae693d"/><file name="mysql4-upgrade-1.4.0.17-1.4.0.18.php" hash="36ffc177e07c0dd213cfdae9d15c8976"/><file name="mysql4-upgrade-1.4.0.18-1.4.0.19.php" hash="7b745587ba63b0be9aced262780b62b5"/><file name="mysql4-upgrade-1.4.0.19-1.4.0.20.php" hash="4d06c0487cfc63f4f9f9d74e34f19001"/><file name="mysql4-upgrade-1.4.0.2-1.4.0.3.php" hash="6e1948d6d323b3ced1bfc7f895f9dc50"/><file name="mysql4-upgrade-1.4.0.20-1.4.0.21.php" hash="72b34c101241c573b18259e380f9f305"/><file name="mysql4-upgrade-1.4.0.21-1.4.0.22.php" hash="adee3c1e3f99eea5ed69aeea869ae720"/><file name="mysql4-upgrade-1.4.0.22-1.4.0.23.php" hash="65065d54f7d632ca505d75125450bad2"/><file name="mysql4-upgrade-1.4.0.23-1.4.0.24.php" hash="029e72643fda31c50c91f59812600862"/><file name="mysql4-upgrade-1.4.0.24-1.4.0.25.php" hash="c48ea044fd5fb5e17d8641260f9aea4d"/><file name="mysql4-upgrade-1.4.0.3-1.4.0.4.php" hash="aadd6c47508e97c907100a9ee4efbb7e"/><file name="mysql4-upgrade-1.4.0.4-1.4.0.5.php" hash="aadc3e1578524b4397df7e1427d69d95"/><file name="mysql4-upgrade-1.4.0.5-1.4.0.6.php" hash="dfbb02e3ae02c8c7a274aa76d9a90d51"/><file name="mysql4-upgrade-1.4.0.6-1.4.0.7.php" hash="0376ceeb6feb2569159eaf4d47461fbc"/><file name="mysql4-upgrade-1.4.0.7-1.4.0.8.php" hash="be028c13c7e7e3cbeb386aa0fdc8c557"/><file name="mysql4-upgrade-1.4.0.8-1.4.0.15.php" hash="961b468624d47a60ea3689926548070b"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="064b60eff0c7933b32977f792f9a29af"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="a18bd47beb2638bc79b7b8742cbfd23d"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="b9a6a2cdcac55be8f0e03d93aacbf17b"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="857f785ecad5f12ad1207c3b492a59b2"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="d28e8838f5b0d7323a1d6a984be025b0"/><file name="upgrade-1.6.0.4-1.6.0.5.php" hash="58c7bc285503fcbb93f72247a68bfc87"/><file name="upgrade-1.6.0.5-1.6.0.6.php" hash="eef078b8e6e72a530c633bf79d7af9f5"/><file name="upgrade-1.6.0.6-1.6.0.7.php" hash="9d0d9dbedd6e9f0cc163d61fab6d1b69"/><file name="upgrade-1.6.0.7-1.6.0.8.php" hash="be511c47bb454fda5527d02abb3d355e"/><file name="upgrade-1.6.0.8-1.6.0.9.php" hash="8f1122686f0991af060492948e75229e"/><file name="upgrade-1.6.0.9-1.6.0.10.php" hash="e238fed7b78e3ffc5a9a6428697cd491"/></dir></dir></dir><dir name="SalesRule"><file name="Exception.php" hash="4e9ce8126c516cc05e2ff0cedbe0f20a"/><dir name="Helper"><file name="Coupon.php" hash="076fd16e4bb8955e9b7f939dd70d39cf"/><file name="Data.php" hash="2bdf9d077f4d81ab3e7c900fb5d26d12"/></dir><dir name="Model"><dir name="Coupon"><file name="Codegenerator.php" hash="c8224a37bd1f67dfd70b10327774c0e4"/><file name="CodegeneratorInterface.php" hash="7b15ebeac15c4e87750f68b6e7f21f73"/><file name="Massgenerator.php" hash="85d9dfa52bdfc367c8f9619411487a3d"/></dir><file name="Coupon.php" hash="4cebd26778be971cf1c1514659fa3fba"/><dir name="Mysql4"><dir name="Coupon"><file name="Collection.php" hash="b8b546f6cfc40d1bcc62ae3b98ba56ff"/><file name="Usage.php" hash="28c48eca68e75f5304af95789072c05f"/></dir><file name="Coupon.php" hash="4b078ee80e4e18dfe13b2170b48d9b5a"/><dir name="Report"><file name="Collection.php" hash="b82503dc59eab59ee9a90fd385ba8ad3"/><file name="Rule.php" hash="a07dccccde92de56744b19349c006923"/><dir name="Updatedat"><file name="Collection.php" hash="0673a299aaa19f9fdaa30b51105cf0ce"/></dir></dir><dir name="Rule"><file name="Collection.php" hash="e6a07bfacec4e6739e9a4c20c6685b97"/><dir name="Customer"><file name="Collection.php" hash="2cce404c75e97feea76ed62d400019b1"/></dir><file name="Customer.php" hash="7e2ac0895dad37b0252f2d282062dda4"/><dir name="Product"><file name="Collection.php" hash="fc60274d7949beb2a7d3d172566b3b34"/></dir><file name="Product.php" hash="cc80fd799f39597d876bffed7f9c63e6"/></dir><file name="Rule.php" hash="ec4535389b43e09c3681a372772a9bab"/></dir><file name="Observer.php" hash="6d67a640167d60ad8ade63bf9d61d61f"/><dir name="Quote"><file name="Discount.php" hash="889c7ca97fb7c91e0ff15faa64f817aa"/><file name="Freeshipping.php" hash="9d115f6bf202de539762894215a2c2ea"/><dir name="Nominal"><file name="Discount.php" hash="5ca26a7724b52f3f350ab22043f37ecb"/></dir></dir><dir name="Resource"><dir name="Coupon"><file name="Collection.php" hash="3f3d8eca7a1a0d7a369f8bdd7092f61f"/><file name="Usage.php" hash="c38c2afe3545ed5dff57122735a63565"/></dir><file name="Coupon.php" hash="76121843b67c6ea7ff0ae840683e6add"/><dir name="Report"><file name="Collection.php" hash="6a44c4b951efe14465ff9e1ed87a535d"/><dir name="Rule"><file name="Createdat.php" hash="ae5346dd9a6a2561cb6a4db0c4354ba4"/><file name="Updatedat.php" hash="80d77f02d1c28458c186c13f018f5a8f"/></dir><file name="Rule.php" hash="0205b014096925390bf07e8e0e1514b8"/><dir name="Updatedat"><file name="Collection.php" hash="938a4bd3820ccb3c0bfb2c20f835c53a"/></dir></dir><dir name="Rule"><file name="Collection.php" hash="cbc66e87a2aedb554b49fb99acd46c9d"/><dir name="Customer"><file name="Collection.php" hash="3cd2678e7b2c22765aa867dbcf8678dd"/></dir><file name="Customer.php" hash="aca20264aa59b767a382046391602fac"/><dir name="Product"><file name="Collection.php" hash="a966e01313b05dda88baaee3f32d5a37"/></dir><file name="Product.php" hash="70eb01ef2ff1153711848776dee5222c"/></dir><file name="Rule.php" hash="0c50c2960d17713b0bff7e2c7f5791c2"/></dir><dir name="Rule"><dir name="Action"><file name="Collection.php" hash="14dd3f26a1bee5f17ca0a75ac148427d"/><file name="Product.php" hash="615fca8aecf34bcb0b4a7c4aaab9c16d"/></dir><dir name="Condition"><file name="Address.php" hash="7d57dd2ce9f7d75d654f8ad28946a7ce"/><file name="Combine.php" hash="9ce394da38c750a3d120c493f02227f4"/><dir name="Product"><dir name="Attribute"><file name="Assigned.php" hash="9fd909dfa0a5713b84719b7d9c6ea2ae"/></dir><file name="Combine.php" hash="b1cbb837518d64e4d9c37175e17cb976"/><file name="Found.php" hash="dcebfcc174f8a08a87ade98b6100eada"/><file name="Subselect.php" hash="8cc2f695a23a15d167e02635204e5805"/></dir><file name="Product.php" hash="801d0f155d23474d5f55b5f2abc4af60"/></dir><file name="Customer.php" hash="02503e0189f06db45b1e0ad9623f7680"/><file name="Product.php" hash="7496c3d4f1e0f65659232162c03c4d06"/></dir><file name="Rule.php" hash="45be966f6cb8c52ab162c1243d4b8123"/><dir name="System"><dir name="Config"><dir name="Source"><dir name="Coupon"><file name="Format.php" hash="aab8bc179b0f879e9018bb4ea6c001d5"/></dir></dir></dir></dir><file name="Validator.php" hash="16645e0f50764faf9d4a801984cbe08d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3d731d199aa29013967a4c94df199800"/><file name="config.xml" hash="ee1d5d33d50227d739c96a706da2889a"/><file name="system.xml" hash="64919875d3da8f8293043eca7b2ce4ee"/></dir><dir name="sql"><dir name="salesrule_setup"><file name="install-1.6.0.0.php" hash="ef3da9f4e8acb17930893c977d34d6fd"/><file name="mysql4-install-0.7.0.php" hash="921d2d467926e0c13eb16dd7334e1714"/><file name="mysql4-install-1.4.0.0.0.php" hash="fcce54959c45dc58d17fe29dd42bf746"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="602b1c05470ccc732de48775df2aca1f"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="1aec3621f741a3415352319c44ee9391"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="172c35aa21c558d5520920d30aca7f24"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="57c383376a15ee04a6f21001e3c1ad90"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="39a55db2190f2535372cad2fad462402"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="0ca2bfede8d72e5c0a5a8b7e47f4b85f"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="01d99c8f79297bf54852166aa401f1e6"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="c45aeb3a84820efddcd1de502493a9ea"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="26a9138f7d291e945c59e3e1bc48c1ef"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="48352dc01f70b8c184e6677a5e776a80"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="e67d8f6a232817d4fab99b30471195c0"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="537402ce4301806c8be55a7bf376ff87"/><file name="mysql4-upgrade-1.4.0.0.0-1.4.0.0.1.php" hash="03840fca31a1928a99b08adfd7ad0976"/><file name="mysql4-upgrade-1.4.0.0.1-1.4.0.0.2.php" hash="a781ab1205e762153abbb5c60fb77ccb"/><file name="mysql4-upgrade-1.4.0.0.2-1.4.0.0.3.php" hash="ba7ea46031b11752fba84f6244f8aed3"/><file name="mysql4-upgrade-1.4.0.0.3-1.4.0.0.4.php" hash="7424333756913c7c02c1feafc0738c59"/><file name="mysql4-upgrade-1.4.0.0.4-1.4.0.0.5.php" hash="83ec6ae7e67f25b8073d5a356c730032"/><file name="mysql4-upgrade-1.4.0.0.5-1.4.0.0.6.php" hash="69290121e8067ac32bf79d16617273c3"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="50ca737624508b3318fade4851d1f99d"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="9697fc94895bdd8b83bbc87661251963"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="c9eb0dea1d0f89eee0f9c8386ba59e70"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="8078a6356fca81229d3c09564a31dfa6"/></dir></dir></dir><dir name="Sendfriend"><dir name="Block"><file name="Send.php" hash="c434b505c781fda4ab54a44bfef0f363"/></dir><dir name="Helper"><file name="Data.php" hash="aa58040f89e873a52494cc84163f7b0a"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Sendfriend"><file name="Collection.php" hash="bcec0fd092d5bb47d97118030b574c1b"/></dir><file name="Sendfriend.php" hash="9b077a178f5cb29936332e449b206a90"/><file name="Setup.php" hash="265fa95c0e1934505dc0eaa021bad797"/></dir><file name="Observer.php" hash="0b3d5d71bf38a919b0ab7fefe67de9bd"/><dir name="Resource"><dir name="Sendfriend"><file name="Collection.php" hash="24f71b975d71cdc73e24417a8683b7ee"/></dir><file name="Sendfriend.php" hash="ee8e444138548e24f3650add38e20847"/><file name="Setup.php" hash="174c0cdd833448fe0737b73fd70f55b5"/></dir><file name="Sendfriend.php" hash="5de6284f9cdc19648296209a2f5d7190"/></dir><dir name="controllers"><file name="ProductController.php" hash="58d8e8660033fe5fa3a7e61c9984a9b2"/></dir><dir name="etc"><file name="config.xml" hash="ef5c6e640f4e7ab18df16a53bd0629c3"/><file name="system.xml" hash="57041fc5b58220a0cd050bc55c70631d"/></dir><dir name="sql"><dir name="sendfriend_setup"><file name="install-1.6.0.0.php" hash="43d65881ae4702ba24cc60b266144865"/><file name="mysql4-install-0.7.0.php" hash="6350ae8dc9c3f285eaeaf45e406c6b1c"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="c0814a6cbc54356121ec60bbab931889"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="c38e9d633fc193e475c355afabfa6b34"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="88af0150e5a4515e87947f1ddacfd927"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="e441c905520470f0b38ec23a2276416a"/><file name="mysql4-upgrade-1.6.0.0-1.6.0.1.php" hash="b744deb766c95fae2c6ccf1356a7f6fc"/></dir></dir></dir><dir name="Shipping"><dir name="Block"><dir name="Tracking"><file name="Ajax.php" hash="c5a1e6b590e05d731e8eef9624501c07"/><file name="Popup.php" hash="ea5e6055e4516698522332e096edde09"/></dir></dir><file name="Exception.php" hash="35143e238e766f5c7227ea766991de32"/><dir name="Helper"><file name="Data.php" hash="296032d034f6215955a082415204d33e"/></dir><dir name="Model"><dir name="Carrier"><file name="Abstract.php" hash="22c814e5584e75f59252df24c660a679"/><file name="Flatrate.php" hash="32af10507ddcd512656d0cab1dabbe8f"/><file name="Freeshipping.php" hash="9ae21e34b64d99c06cbea33af1636c58"/><file name="Interface.php" hash="8834c6a20c305611bfa9f54449b61ac7"/><file name="Pickup.php" hash="c2b55a625a3111ef8148d971c4037099"/><file name="Tablerate.php" hash="315766cec4a075d5060ea2bd8467a6eb"/></dir><file name="Config.php" hash="b2d41b1048749a80177b4c0f35a902a7"/><file name="Info.php" hash="5ef452697059312e316d011205d220de"/><dir name="Mysql4"><dir name="Carrier"><dir name="Tablerate"><file name="Collection.php" hash="b2947c163acd20e4186cf6de1327db3c"/></dir><file name="Tablerate.php" hash="0a9027c484b45aa2b2039e9102c207bf"/></dir></dir><dir name="Rate"><file name="Abstract.php" hash="a846366861445de8064ad961a063f455"/><file name="Request.php" hash="da53b2509c54cc9446e6944e441853a7"/><dir name="Result"><file name="Abstract.php" hash="c285a4e19c7d7deaf76648a8503ef357"/><file name="Error.php" hash="837d9bc34da0c3721f40fef8698613f6"/><file name="Method.php" hash="cc8a4e4f3ac3b51002c8ff72b195ceca"/></dir><file name="Result.php" hash="0ece73d8d4d0da4e5cdf6a7ecaf51de0"/></dir><dir name="Resource"><dir name="Carrier"><dir name="Tablerate"><file name="Collection.php" hash="8ab50521bd064d60a29ebd755490e522"/></dir><file name="Tablerate.php" hash="698b13767acab216353a8aaad8b3a27b"/></dir></dir><dir name="Shipment"><file name="Request.php" hash="c9fb828ca234d36b1161402fc449f70b"/><file name="Return.php" hash="67d08700e7215f5f39ed7c2d13717527"/></dir><file name="Shipping.php" hash="d7409cdf2e31beba185c7969e511543a"/><dir name="Source"><file name="HandlingAction.php" hash="dd48d76f60399c612e8162834293157e"/><file name="HandlingType.php" hash="7601bea631571182aec8e2eac9635bc6"/></dir><dir name="Tracking"><dir name="Result"><file name="Abstract.php" hash="d10fe8e3929b5f4d37fa7815bbd6cb33"/><file name="Error.php" hash="7e429bbf73f960c86ea98c39ac97bcb2"/><file name="Status.php" hash="097b6ccdcfef61790f074621a98d9df7"/></dir><file name="Result.php" hash="6ab087d47eb717cad17fda03bc712c3e"/></dir></dir><dir name="controllers"><file name="ShippingController.php" hash="cc5ab865a08b42a5d843ccbd4b0e5d70"/><file name="TrackingController.php" hash="db1a9965e8475e038fe8ef4b7b90f2c7"/></dir><dir name="etc"><file name="adminhtml.xml" hash="563e17ed4b244f4b005594e4e2e6b1db"/><file name="config.xml" hash="cf72271df9c7d3d4c3b5fd312ad13a5b"/><file name="system.xml" hash="9c9d5cbb5633744f3c7c6664ff05babe"/></dir><dir name="sql"><dir name="shipping_setup"><file name="install-1.6.0.0.php" hash="a338147f6f1aaf4a493898c5ebdb48d1"/><file name="mysql4-install-0.7.0.php" hash="3b35de934df04b9d397198109ce75771"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="ddbe84100c05437c3d7adcf6c3c4538b"/></dir></dir></dir><dir name="Sitemap"><dir name="Helper"><file name="Data.php" hash="6bf2e0bffe2507a5ab90a99f94de549b"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Catalog"><file name="Category.php" hash="3b3c1da8c0d2fd3dc22129593b360754"/><file name="Product.php" hash="67a0941366203e4657a2e25224067729"/></dir><dir name="Cms"><file name="Page.php" hash="c494cb8fab1bfec8fd17133511a184ae"/></dir><dir name="Sitemap"><file name="Collection.php" hash="51d5ca69a0bf7c7a3350f29025479b05"/></dir><file name="Sitemap.php" hash="b197605bff45bf1ae94cefc9d182c0e9"/></dir><file name="Observer.php" hash="19e6519062d6d06ad66831b30b7eaf86"/><dir name="Resource"><dir name="Catalog"><file name="Abstract.php" hash="0a50ee109df005dae5b37606fa7289aa"/><file name="Category.php" hash="7b6420762899f1a0cdaa8fc7fab0fa1a"/><file name="Product.php" hash="5e3eb5ba9ef747cf8dbd8355e91f7fad"/></dir><dir name="Cms"><file name="Page.php" hash="5b8ecd1bb5badfd408d1a65302ff68bb"/></dir><dir name="Sitemap"><file name="Collection.php" hash="5a92728a6851d4d54876becc785e7825"/></dir><file name="Sitemap.php" hash="5079efecbd47bcef141d0654f5169c1c"/></dir><file name="Sitemap.php" hash="1aafafbf803240a7cdc59136a1b02ece"/></dir><dir name="etc"><file name="adminhtml.xml" hash="29e3669211e4ae919b59651711f278ca"/><file name="config.xml" hash="c92b7da47c8637b25149acaf873dec65"/><file name="system.xml" hash="2dfd284d2aa8ba4930a87e56f570287b"/></dir><dir name="sql"><dir name="sitemap_setup"><file name="install-1.6.0.0.php" hash="e3968f0b4ce2e8be3235b0584a063bc3"/><file name="mysql4-install-0.7.0.php" hash="81da61d8119b5bd005d0ebd0d8bbddf4"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="4f37efc4880b12ae9728a9e7d656d394"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="a140e5675116c2a5c19decc82945c959"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="7e3ed5e46f2cedad36ccdedf71f55e5e"/></dir></dir></dir><dir name="Tag"><dir name="Block"><file name="All.php" hash="5868297a4e88127a4bb9ca1ebed5f051"/><dir name="Customer"><file name="Edit.php" hash="258912c59d4ef9b2ff70ceeed0c04784"/><file name="Recent.php" hash="246c4f4a146e74da1b71729c7790f650"/><file name="Tags.php" hash="c6e67247b85824e129cf3ab9be98bacb"/><file name="View.php" hash="faa3f0ef1bfffd7ee1146d1687150364"/></dir><file name="Popular.php" hash="ed2e1e13560d1e5a46aa42c7857ad989"/><dir name="Product"><file name="List.php" hash="f6b954ac9d96b8b7c013517b0ecf3aa6"/><file name="Result.php" hash="2b8a66d8d9764abd707a94e25b10901a"/></dir></dir><dir name="Helper"><file name="Data.php" hash="6d824384b0a0df4ff33d2924f4d71e4d"/></dir><dir name="Model"><dir name="Api"><file name="V2.php" hash="cba9328c2322e37faeabcdeebd250079"/></dir><file name="Api.php" hash="1c6601f744d27c86454fbe6e1a958d92"/><dir name="Entity"><dir name="Customer"><file name="Collection.php" hash="3920e0f353d3a60ec2d24bc5d8571432"/></dir></dir><dir name="Indexer"><file name="Summary.php" hash="d473f8924e47bffff6b7e9869929b23d"/></dir><dir name="Mysql4"><dir name="Customer"><file name="Collection.php" hash="9c19636f6295507833217724043fe081"/></dir><dir name="Indexer"><file name="Summary.php" hash="47d61d186011e402e542a6a3419bb2b2"/></dir><dir name="Popular"><file name="Collection.php" hash="ea10d8f4f6061681d38990bdba934d64"/></dir><dir name="Product"><file name="Collection.php" hash="b6b622f9be67ea9d8859264f1ea9294a"/></dir><dir name="Tag"><file name="Collection.php" hash="2b207742defcf9cf5c4b3292ed8df272"/><file name="Relation.php" hash="47a7cd136e3d7d027ab53796da9ff7b9"/></dir><file name="Tag.php" hash="c9ba40a21577912877ab199a000f304f"/></dir><dir name="Resource"><dir name="Customer"><file name="Collection.php" hash="5010a57b9a4e8bf17f7b5923e0a9093a"/></dir><dir name="Indexer"><file name="Summary.php" hash="d0db0c94263cfff4b6ec4fcd93adaec2"/></dir><dir name="Popular"><file name="Collection.php" hash="0364f1f31a80002d86f35fb14a6cdec7"/></dir><dir name="Product"><file name="Collection.php" hash="9edba493f4930ab9609b4691be8034c1"/></dir><dir name="Tag"><file name="Collection.php" hash="934a0e6bd72d71428e0f194d9378454a"/><file name="Relation.php" hash="a90fe31d40b3868fe645875a1678eb6e"/></dir><file name="Tag.php" hash="a90b12859d75f1df33cb272416fcb4f2"/></dir><file name="Session.php" hash="887fe96718898876b4a578ada3d6383f"/><dir name="Tag"><file name="Relation.php" hash="4b89602602795ef3c676f8224ca1f67b"/></dir><file name="Tag.php" hash="16a05f65e9436a81c94e86e7b139d320"/></dir><dir name="controllers"><file name="CustomerController.php" hash="907597af877a272d98b41b98ee5734fb"/><file name="IndexController.php" hash="e0c8d1c26b7c31575b89b64cdb359493"/><file name="ListController.php" hash="0226fbf3b3859928a743750b76032438"/><file name="ProductController.php" hash="b358d421a65aaa04fd765e5eb9a6c329"/></dir><dir name="etc"><file name="adminhtml.xml" hash="c156d6c981708ce6343c545676a566ba"/><file name="api.xml" hash="cadb3e216a39b6c3a602edf4417876f7"/><file name="config.xml" hash="034241040fff18a71676cae97d9d4115"/><file name="wsdl.xml" hash="e87343a710e0068dcc555ffc4b302a9b"/><file name="wsi.xml" hash="1d31787826a686590acf89ec2703b76e"/></dir><dir name="sql"><dir name="tag_setup"><file name="install-1.6.0.0.php" hash="c2808c718e9bdc908d28261c9ee76f9d"/><file name="mysql4-install-0.7.0.php" hash="fd4ebd48a951f70fd32f851bdbdeb1e5"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="4fbdf351be48eea3acb1ad470fa65a99"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="4a0f89a08120b9e700c71b7199ec741c"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="005cffca4b5b4053e130daa6eefe8a21"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="e84392accba5a720747d9fd03a37f7e2"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="3384bc150777de038c48cd21fc372a29"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="dd94e312998fbf44bafb7880bacd0d49"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="1927c716b1a865eb6234cec1ed65ea94"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="1893d8e7ec128b9fa59a46faafd09729"/></dir></dir></dir><dir name="Tax"><dir name="Block"><dir name="Adminhtml"><dir name="Frontend"><dir name="Region"><file name="Updater.php" hash="eae742c088fd0e5b8b6ec655e942e67a"/></dir></dir><file name="Notifications.php" hash="f5d2958cccdf0e1ca75eed8022438632"/></dir><dir name="Checkout"><file name="Discount.php" hash="ab6c338885260bdc52b8cd2513786ed4"/><file name="Grandtotal.php" hash="305ad755a3ea293f2b7f4fe217d03ca6"/><file name="Shipping.php" hash="868f6ebc4627984359f1d243b3398c6b"/><file name="Subtotal.php" hash="ca0c91a818c57b317a948a6d2ea2236e"/><file name="Tax.php" hash="349db923d8eb0e6eb3693f64030324c7"/></dir><dir name="Sales"><dir name="Order"><file name="Tax.php" hash="0b517168e0b884108d824dd19c3b2f58"/></dir></dir></dir><file name="Exception.php" hash="134817f848225bfc88be851553dafba6"/><dir name="Helper"><file name="Data.php" hash="9a04b7305f7b9dfbc3362a70f022b317"/></dir><dir name="Model"><dir name="Calculation"><dir name="Rate"><file name="Title.php" hash="cbe6e35f9febbca8ffb9629827a68b73"/></dir><file name="Rate.php" hash="0fbab9716f22a83de77c0ca0c94aeb40"/><file name="Rule.php" hash="7eb4f5f529562d80e5fd99b4c47d5cb3"/></dir><file name="Calculation.php" hash="c765c9e1fe7ea167e1e53349a9e18a33"/><dir name="Class"><dir name="Source"><file name="Customer.php" hash="f6d06efe47e7c5685959e956a2a6dea5"/><file name="Product.php" hash="c0e88ffb2aeb60a496ba466c1cedfd8e"/></dir></dir><file name="Class.php" hash="f14fae96db3b13b77d2ed485f73cfa9d"/><dir name="Config"><file name="Notification.php" hash="4f21ea9d9c67ca63f39c72771b088e40"/><dir name="Price"><file name="Include.php" hash="bad0b10bf559e7bbb3e715b3c5eb0d11"/></dir></dir><file name="Config.php" hash="b731a3ff3197d4faeb79286a4d5f52a7"/><dir name="Mysql4"><dir name="Calculation"><file name="Collection.php" hash="a9b28eff948b411a9a70e5f1e9245f20"/><dir name="Rate"><file name="Collection.php" hash="57ce00827e2914026ff258fda5f3c731"/><dir name="Title"><file name="Collection.php" hash="6be6eabadf9ad24b4e47769158d13ede"/></dir><file name="Title.php" hash="921e2513afbfc66b2fbc10498f5fe397"/></dir><file name="Rate.php" hash="2bdb808f9eca4c199b3ee26bf200015b"/><dir name="Rule"><file name="Collection.php" hash="67300fb90e8f5773666d6cb6a432ef1f"/></dir><file name="Rule.php" hash="830b09ef81c38eccd2b5ac6bacac4ade"/></dir><file name="Calculation.php" hash="f275709492086311b846aaf2ee442b54"/><dir name="Class"><file name="Collection.php" hash="09e5e413d73f207202239eac8915005b"/></dir><file name="Class.php" hash="ec615ab1523b103ffcb2f621467cfb12"/><dir name="Report"><file name="Collection.php" hash="f22a869db862de20e3e8c485b647c933"/><file name="Tax.php" hash="a4ac98f09c37a2ae4330db5d1f3ce7ef"/><dir name="Updatedat"><file name="Collection.php" hash="71b0d744219c130601545e6cc2448f25"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Collection.php" hash="4297ca6f020cc2e3edc4fabbb6b5bd1d"/></dir><file name="Tax.php" hash="a6c454efc6cf663ca14785ed339ff465"/></dir></dir><file name="Setup.php" hash="1538915edef549c61d74f1306d8dd232"/></dir><file name="Observer.php" hash="571696862a48d431b8d4e4adb7501714"/><dir name="Resource"><dir name="Calculation"><file name="Collection.php" hash="8fd71d2be5abbc50bfc23b043bf27100"/><dir name="Rate"><file name="Collection.php" hash="232d6cbb5b9ea727c9f2c22b89bdd4c0"/><dir name="Title"><file name="Collection.php" hash="81d4993f07b85ffcbca0331974aeeee3"/></dir><file name="Title.php" hash="350855d6219dc7c02753ca9be5fb9b59"/></dir><file name="Rate.php" hash="1c9a4255898b508393364396dbdce096"/><dir name="Rule"><file name="Collection.php" hash="b6fd0f7c8c36cc10c605a8b2726b33b1"/></dir><file name="Rule.php" hash="4c81eb1f8bc2c0251e4876f32ea1e6ba"/></dir><file name="Calculation.php" hash="4a73463dcf5237633e361800eacdd09e"/><dir name="Class"><file name="Collection.php" hash="13073a929e7c02c87753acc6d0bd38fc"/></dir><file name="Class.php" hash="4502445de0970861f4b87042cd30aeb6"/><dir name="Report"><file name="Collection.php" hash="fd18217a781af914988f81eec1660662"/><dir name="Tax"><file name="Createdat.php" hash="ef65059e92035ebf976b937c1fec0b91"/><file name="Updatedat.php" hash="3b9dabbd4d9ef21bd2d2a520549b6964"/></dir><file name="Tax.php" hash="7b158c0744d9f0badaa63b10271811c1"/><dir name="Updatedat"><file name="Collection.php" hash="8632c08217b29740d214ad1e37c7064a"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Collection.php" hash="55c5363e2074c9af59f044765553c51a"/><dir name="Item"><file name="Collection.php" hash="f41bbd5588c871de548716219798dd73"/></dir><file name="Item.php" hash="e1d727a298e4295e605a6a9486d04d9b"/></dir><file name="Tax.php" hash="6250a0bfb54b43010137d7725bcd1088"/></dir></dir><file name="Setup.php" hash="2c29db94902284cd174e19a2ce14f9b2"/></dir><dir name="Sales"><dir name="Order"><dir name="Tax"><file name="Item.php" hash="f336fd2059e5761bc6f2a5bfeca11978"/></dir><file name="Tax.php" hash="4717bd548a8a5e2fdc7121a470f8b4d8"/></dir><dir name="Pdf"><file name="Grandtotal.php" hash="78a9facf89b73f40d677721a7a5fffdf"/><file name="Shipping.php" hash="2de97a1a33ec131e74df18b328017e64"/><file name="Subtotal.php" hash="29c6e113f41814271d69673ecc8dd649"/><file name="Tax.php" hash="d6fa76691b87d52a36723b15f976acf9"/></dir><dir name="Total"><dir name="Quote"><file name="Discount.php" hash="3a4297a2c36d17e5e8e7db701e53144e"/><dir name="Nominal"><file name="Subtotal.php" hash="3a9f825f68d8445d2b632cae70b83dbc"/><file name="Tax.php" hash="2301b2eafae1780330deff59cf3032fd"/></dir><file name="Shipping.php" hash="2ee60af500b52acc5bae799593c26841"/><file name="Subtotal.php" hash="2eea1fa38f7b253f4431aa424daefe25"/><file name="Tax.php" hash="d658f47c72675e6908b9f8c9d25a791a"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Algorithm.php" hash="e8d0092465380aeaa9a89e8c3804e21f"/><file name="Apply.php" hash="8d06d8938dfd4960d10f4278b842b294"/><file name="PriceType.php" hash="a4a573c741e05bec3b04de7c5cae0e0c"/><dir name="Tax"><file name="Country.php" hash="850f8683eef4258523323d565bb8b43a"/><dir name="Display"><file name="Type.php" hash="fab5dca34c90f0c7a0bba273bd2cd319"/></dir><file name="Region.php" hash="2443ba70dc76ecf71af26c94c33d1b04"/></dir></dir></dir></dir></dir><dir name="data"><dir name="tax_setup"><file name="data-install-1.6.0.0.php" hash="73cd3a6c8f182f686f2fb61824b6ffd7"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="3d99f2ea678fdd83f0f9f5c115a971a0"/><file name="config.xml" hash="83bef9b0e62f56240968ef1970425ff3"/><file name="system.xml" hash="7220c5958c58856ece69bb3d6458c0e6"/></dir><dir name="sql"><dir name="tax_setup"><file name="install-1.6.0.0.php" hash="4c14e324b02ceb79258ccbd98e474389"/><file name="mysql4-install-0.7.0.php" hash="5571445e2b9e43bb63658b3c8801e5a9"/><file name="mysql4-install-1.4.0.0.php" hash="f3c2df0be2d8e7d9dc9815a4ddf2318d"/><file name="mysql4-upgrade-0.6.1-0.7.0.php" hash="7068af799ffa77608f336152e1b66187"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="be1ca656fff19428909b3335c7673580"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="c7b8f3aa6abc242c671fa7e3a7052f3b"/><file name="mysql4-upgrade-0.7.10-0.7.11.php" hash="2ef9e7c6f005ef5f9153423d16a88f96"/><file name="mysql4-upgrade-0.7.11-0.7.12.php" hash="f470a41fbd7b5af3747f381db54aac40"/><file name="mysql4-upgrade-0.7.12-0.7.13.php" hash="2e63c1b0b9226c21a4c313ada8ddb06d"/><file name="mysql4-upgrade-0.7.2-0.7.3.php" hash="b57330d4ee03ad16d075ca7e84185682"/><file name="mysql4-upgrade-0.7.3-0.7.4.php" hash="9aad92fcfba9178f923eb977b2b7d8bf"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="8ba0f98f056b1b527ea48ec7fc95ed7a"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="672255066405d197b12896d83c8d9b78"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="b3a91bda34376d031f1f70825256674e"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="c06869f49954a9fdf9a4e058b2955019"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="184f1afe963a5a49c6af3b69df2e39bc"/><file name="mysql4-upgrade-0.7.9-0.7.10.php" hash="5a8c1f51dbe5b4fd4789dc36a74bf1e4"/><file name="mysql4-upgrade-1.3.9-1.4.0.php" hash="30c7713f0e1e098c44f3d20fcd2dc0d9"/><file name="mysql4-upgrade-1.4.0.0-1.4.0.1.php" hash="4665a694d158f1c9f1b0a9b8ada53c6f"/><file name="mysql4-upgrade-1.4.0.1-1.4.0.2.php" hash="e047de6af7a34d3e486f4b5ccd752f2c"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="210748a7fde45c907a388cc38fcfd429"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="f8f34e33effab8b964e9f27d5f8fab92"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="8bb7f207b0d724b20598bfa053051439"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="08d57d78afe883166f29c87441eca701"/><file name="upgrade-1.6.0.3-1.6.0.4.php" hash="6f5d36e28af9da0fcc659c33fb1a4c40"/></dir></dir></dir><dir name="Uploader"><dir name="Block"><file name="Abstract.php" hash="68ed313c61bc1b6074ecaaff62273bfe"/><file name="Multiple.php" hash="1f72d21aac4581eda22f9da7ed298b52"/><file name="Single.php" hash="b4a8b6ce00596199bbf78471431c571a"/></dir><dir name="Helper"><file name="Data.php" hash="138484d302192cd965eae261d4a0c981"/><file name="File.php" hash="be67fbe0667e383d514afae52301446c"/></dir><dir name="Model"><dir name="Config"><file name="Abstract.php" hash="768338c35ed771d91657b9e3467f59cf"/><file name="Browsebutton.php" hash="8fc2c9799da0e42daf13379b3b75acf9"/><file name="Misc.php" hash="247701eb6592993685e7fd6c617ccb15"/><file name="Uploader.php" hash="b55568f7b9fb32b91fbf30009dff7e45"/></dir></dir><dir name="etc"><file name="config.xml" hash="3fb54201c9ab58d8d587e9ce5ae569d8"/><file name="jstranslator.xml" hash="ad8023790ea292f1be4a50e84ded31ec"/></dir></dir><dir name="Usa"><dir name="Block"><dir name="Adminhtml"><dir name="Dhl"><file name="Unitofmeasure.php" hash="aa6d70fd5c2fb7fdb83aa476ab3a334d"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="ce1c2a972ce6ea88f6016c6921aa2668"/></dir><dir name="Model"><dir name="Shipping"><dir name="Carrier"><dir name="Abstract"><dir name="Source"><file name="Mode.php" hash="c4b7333d787083278d14dd5a6b57598a"/><file name="Requesttype.php" hash="2231301ef94bc0c85d79831e47f38362"/></dir></dir><file name="Abstract.php" hash="475e8dcdfb6bc5c050b14682884de1a0"/><dir name="Dhl"><file name="Abstract.php" hash="a33e2e899d52d1f37cf6a731a58889c8"/><dir name="International"><dir name="Source"><file name="Contenttype.php" hash="b4db2fda105ce4200c6021c7bcbc3d1f"/><dir name="Method"><file name="Abstract.php" hash="dec66cd92cdc58bb28a3f4e8417449da"/><file name="Doc.php" hash="a9b7aad608a6c3c963d170937da2d39d"/><file name="Freedoc.php" hash="2e46f7c2cbff611fbf89a0a6068bfb64"/><file name="Freenondoc.php" hash="36e5c8cc9940c627cc9fec162ca36d37"/><file name="Nondoc.php" hash="76b0b629ed4a8cb9dcea909c99ffe305"/><file name="Size.php" hash="194cdfe6d8e4aa40804a05887c0ba461"/><file name="Unitofmeasure.php" hash="6e171bf090ff7423207099c4df65782f"/></dir></dir></dir><file name="International.php" hash="a9bf7a915a368164672cc7981029c739"/><dir name="Label"><dir name="Pdf"><file name="Page.php" hash="99c2322ff56b8891c8e18bbece736677"/><file name="PageBuilder.php" hash="8407592238dc66f9f74547602ebdbfb0"/></dir><file name="Pdf.php" hash="046eba823e0bd8ed3ad8ee0bbdc0cdd7"/></dir><dir name="Source"><file name="Dutypaymenttype.php" hash="65b9a133d8b23d521903c1ca38cbba6d"/><file name="Freemethod.php" hash="60f5169fc5a3d60bbccd10fa7d674463"/><file name="Method.php" hash="91249bbb0a60708a7b6c1e2e919643ad"/><dir name="Protection"><file name="Rounding.php" hash="494a0ef4bd57ae523578df64dd60720f"/><file name="Value.php" hash="d1298eb253fd835f3f854a353db2f25f"/></dir><file name="Shipmenttype.php" hash="41a9dc1755d603b1fe2ac420eaac67e1"/></dir></dir><file name="Dhl.php" hash="e78fbc1a06f29edb020726e02dac94d7"/><dir name="Fedex"><dir name="Source"><file name="Dropoff.php" hash="1ad1f1d123bef11d3eba5e4227ee6337"/><file name="Freemethod.php" hash="a3553e0f71095f8e04cabe0c67b97172"/><file name="Method.php" hash="0fe8a73c64ae7eaf99826998c712c844"/><file name="Packaging.php" hash="f38f31e935180278934d4ed6010a3475"/><file name="Unitofmeasure.php" hash="5f96db4caf4086665c91b450c51e9783"/></dir></dir><file name="Fedex.php" hash="341d8093ba039ff0439eeeec5db4a72c"/><dir name="Ups"><dir name="Source"><file name="Container.php" hash="2f0b789d516fc028c3c1a2474e238bc8"/><file name="DestType.php" hash="8464331937887875496d14cb570ce9f2"/><file name="Freemethod.php" hash="144eab21d02ddc5aaa560edeb0e519fa"/><file name="Method.php" hash="65ca936d439cc03198d0523cbf3be5a8"/><file name="Mode.php" hash="1805aee8fbdff130f3bdfb3c46feaa21"/><file name="OriginShipment.php" hash="7adfc5192d9f5205a0554990510744e9"/><file name="Pickup.php" hash="6ba1bcb3fde3ddb56b1e1842ed3f54da"/><file name="Type.php" hash="0bd501f64815ed42deba122a48e30a8d"/><file name="Unitofmeasure.php" hash="451ad9bda2daa0b7cc0291e6f49c5ee6"/></dir></dir><file name="Ups.php" hash="da516a195d29acc8ec8584db92ef51c9"/><dir name="Usps"><dir name="Source"><file name="Container.php" hash="cc193d35a2c48ebdfc607f2a6aa22fea"/><file name="Freemethod.php" hash="8d55016301502a5e90a20ed0be3bcd0a"/><file name="Machinable.php" hash="ea50b2832ff3d7557eeaf1d5558900aa"/><file name="Method.php" hash="c798b9f38f95eb82476fbf3a7e2c4161"/><file name="Size.php" hash="adf168c941988427f20eff4d614b6500"/></dir></dir><file name="Usps.php" hash="1983c0f13d22ba0c4b7a939482c763bd"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="de765210e895542c74752d5c72547cea"/><dir name="dhl"><dir name="international"><file name="countries.xml" hash="6dcdf8dfc8d3e0e87655f602bd485e92"/></dir></dir><file name="system.xml" hash="607b156b3a1a4dad5553e84acb459edd"/><dir name="wsdl"><dir name="FedEx"><file name="RateService_v10.wsdl" hash="352ed0cd739b31d42d206aba31bf4c31"/><file name="RateService_v9.wsdl" hash="5e698519a3b3ae3dcea2105545053763"/><file name="ShipService_v10.wsdl" hash="4e661e70491a1af695c27878610054e2"/><file name="ShipService_v9.wsdl" hash="9c3779aa87540dcae41b43b16b724df6"/><file name="TrackService_v5.wsdl" hash="89cc7077a8fc439446e70bac0ca0f0c1"/></dir></dir></dir><dir name="sql"><dir name="usa_setup"><file name="install-1.6.0.0.php" hash="68ec9644080ba8163104e983fdbcb9bb"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="83250a3964db7956e84f62eddb3be1ac"/><file name="upgrade-1.6.0.0-1.6.0.1.php" hash="ebee347b03130506141a635c34847aa9"/><file name="upgrade-1.6.0.1-1.6.0.2.php" hash="45b2c1803f13a7c18b4a812b797c4603"/><file name="upgrade-1.6.0.2-1.6.0.3.php" hash="1553fcefb1914c86a831894128126a35"/></dir></dir></dir><dir name="Weee"><dir name="Block"><dir name="Element"><dir name="Weee"><file name="Tax.php" hash="23f63c80fff28f6a432086a899da263e"/></dir></dir><dir name="Renderer"><dir name="Weee"><file name="Tax.php" hash="057294cd195b3fb4ca5c1737cc7b0eaf"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="9cb6e70dbddb395a5c8ef5a58401b9bf"/></dir><dir name="Model"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="3c3579878bb1df64f30e91934d54e7eb"/></dir></dir></dir><dir name="Config"><dir name="Source"><file name="Display.php" hash="57693773a99739bb0d20bfe03c77de23"/><dir name="Fpt"><file name="Tax.php" hash="1e8024ae0da70cbc9a9872c2a6a0ac83"/></dir></dir></dir><dir name="Mysql4"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="328e308a784c9cebc94f31035db8e250"/></dir></dir></dir><file name="Setup.php" hash="2cf0f2771b2f1867ef03f421e5340f82"/><file name="Tax.php" hash="18ee47054f3ec738b8c28aec79dfdb7e"/></dir><file name="Observer.php" hash="b8f8f5d92815ac5d9a0cf6886f63ac31"/><dir name="Resource"><dir name="Attribute"><dir name="Backend"><dir name="Weee"><file name="Tax.php" hash="8e7788f1ae65b900a08796ce191494da"/></dir></dir></dir><file name="Setup.php" hash="9271d672996dcb9d13e712d7dbe4f2c9"/><file name="Tax.php" hash="27762b8450a0d9804ceaa4c9082712e1"/></dir><file name="Tax.php" hash="c48fa3fc37b885bad8d9404f9a3c769c"/><dir name="Total"><dir name="Creditmemo"><file name="Weee.php" hash="019940c068e8893f5790e20cbd329998"/></dir><dir name="Invoice"><file name="Weee.php" hash="4c13fc79c012c2d94cb1bb602c7362c3"/></dir><dir name="Quote"><dir name="Nominal"><file name="Weee.php" hash="94f2ae2dd989fc2717b998c71861e3d1"/></dir><file name="Weee.php" hash="1eedda120ad286228975e2857184b362"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="fd17dbd55bb0f290feb984e82482ecb1"/><file name="system.xml" hash="ef40deebb9016cde8ee08a7cdbda1711"/></dir><dir name="sql"><dir name="weee_setup"><file name="install-1.6.0.0.php" hash="bfc75c8a7df559a92ffcd186bf53c0f3"/><file name="mysql4-install-0.1.php" hash="f7423f7460bbfab30e71b47e344fa159"/><file name="mysql4-upgrade-0.1-0.2.php" hash="6d72ffda83cad4435f67ec8284a6fdfd"/><file name="mysql4-upgrade-0.10-0.11.php" hash="d8db1bff60b64f0b876a7d9319760e19"/><file name="mysql4-upgrade-0.11-0.12.php" hash="6da6743057f0a4e32ed3e0ee97839327"/><file name="mysql4-upgrade-0.12-0.13.php" hash="153d446b9255e40f77023eb9088380a2"/><file name="mysql4-upgrade-0.2-0.3.php" hash="7af0c55abea7af5834c9935ead8200e6"/><file name="mysql4-upgrade-0.3-0.4.php" hash="e80aa5b416399a3f03cccc3427d972b0"/><file name="mysql4-upgrade-0.4-0.5.php" hash="eec167a7d45e7c2a1e04f833ad866f77"/><file name="mysql4-upgrade-0.5-0.6.php" hash="02e67f9269d46661d65f232dd0a70e1c"/><file name="mysql4-upgrade-0.6-0.7.php" hash="1c86934423bdcd22d3cbcb1f3b85e8c3"/><file name="mysql4-upgrade-0.7-0.8.php" hash="0a5439668ecc660e34d8e7dd1401ab1d"/><file name="mysql4-upgrade-0.8-0.9.php" hash="235184f61ff872e6e71cd0a2d5bc1458"/><file name="mysql4-upgrade-0.9-0.10.php" hash="2a30b3e6471ddbf3ea70e1c95c319ed3"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="a60aeb96c1364daec6eb6b9ba1ff6e5d"/></dir></dir></dir><dir name="Widget"><dir name="Block"><dir name="Adminhtml"><dir name="Widget"><file name="Chooser.php" hash="0a0aac34f5fbe815255b1ee03ee6c76f"/><file name="Form.php" hash="46164d4a81302a95c797e5edcc4c63ac"/><dir name="Instance"><dir name="Edit"><dir name="Chooser"><file name="Block.php" hash="7058735394083dc96501013f1a8a387f"/><file name="Layout.php" hash="69b066a40ef32cc5ece935a4e7a19c16"/><file name="Template.php" hash="da707b616f69140402370331988d15a3"/></dir><file name="Form.php" hash="255ede0a28ae87b550ba4bb8e52b059b"/><dir name="Tab"><dir name="Main"><file name="Layout.php" hash="8593998ae0f15b42846bc68118f92baf"/></dir><file name="Main.php" hash="1dc0071fb877469c507bc72ca3c86b1c"/><file name="Properties.php" hash="48f89f3721a40bf109b938b84c99a5ef"/><file name="Settings.php" hash="308cd2ebd3fd985326fb10d75b674ace"/></dir><file name="Tabs.php" hash="cdb09602bebd1f90f5adb6b7f15c7cf9"/></dir><file name="Edit.php" hash="8b5136b252c2dc7e3c1115c052c87690"/><file name="Grid.php" hash="8a97ecbf9e4628936b4c6a4618a9a79a"/></dir><file name="Instance.php" hash="f28ea283c912e71d31500417d3f8f342"/><file name="Options.php" hash="ef5736010cb81ea203357df31983c0ee"/></dir><file name="Widget.php" hash="95042144450d0c43e3b0708e4429ebc3"/></dir><file name="Interface.php" hash="c21020fb6a0314bfe39dfa29c4ffd825"/></dir><dir name="Helper"><file name="Data.php" hash="9c2486b93790b9ba648ed489620809a9"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Widget"><dir name="Instance"><file name="Collection.php" hash="8b053745adbecece87ccc95979e3eb9c"/></dir><file name="Instance.php" hash="c70faec36fec06928b04bc744eb0f2ee"/></dir><file name="Widget.php" hash="14998c148be50a45f837d0f680368f48"/></dir><file name="Observer.php" hash="bb16c366d45cb6c2cb3bee081ef1296e"/><dir name="Resource"><dir name="Widget"><dir name="Instance"><file name="Collection.php" hash="3a9a90430907aafb90aba1016653d23e"/></dir><file name="Instance.php" hash="4cc2fe32326424f0dfef1ba12edc2308"/></dir><file name="Widget.php" hash="c20c80932a5fbaa85bb838fbe5041a51"/></dir><dir name="Template"><file name="Filter.php" hash="9ca63f12391cd1c82ce6d125b31879c2"/></dir><dir name="Widget"><file name="Config.php" hash="5413241c93b7b626327fdc53c99ad525"/><file name="Instance.php" hash="8ab973cbe1aa067b14d212060c7d5cc0"/></dir><file name="Widget.php" hash="5fd6abc24e19e948d39ac13c52725d1a"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Widget"><file name="InstanceController.php" hash="819bb4f59821d89cbffdefb00e4432b1"/></dir><file name="WidgetController.php" hash="fa6ddf084f22912a786f000791ee3332"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="e635ea0bd54262e557e4e9eb994cda1f"/><file name="config.xml" hash="9d0b798ca36be2ef2cecf68b0b9e9a9b"/><file name="jstranslator.xml" hash="46eca3103cb2e0d6504dbdd0d4b6337f"/></dir><dir name="sql"><dir name="widget_setup"><file name="install-1.6.0.0.php" hash="fe05bdd574a78eaba1106c4c6d103166"/><file name="mysql4-install-1.4.0.0.0.php" hash="131a7eeb07cc4031c3b36fe7bfa06176"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="e6c5010f5267ac8b0c8088ba1bce060e"/></dir></dir></dir><dir name="Wishlist"><dir name="Block"><file name="Abstract.php" hash="7352820e2c6073e09636692a438f95a1"/><dir name="Customer"><file name="Sharing.php" hash="1649e1df9947f7a3b6720a7422eaae52"/><file name="Sidebar.php" hash="4e44d260e041cf0f91505455791107a4"/><dir name="Wishlist"><file name="Button.php" hash="872261e1192ccb98663bafd0afda0d5c"/><dir name="Item"><dir name="Column"><file name="Cart.php" hash="3a9314f56505c0db28bcf6247076d925"/><file name="Comment.php" hash="aa485bc5ef3c26763a8691b089693cc8"/><file name="Image.php" hash="363930a4118e81f62b55c616ec81b01c"/><file name="Remove.php" hash="3d1b02be1da916315ae4bee80b8cce2a"/></dir><file name="Column.php" hash="523f1545fdaa40746266fbc314b9694d"/><file name="Options.php" hash="6d59d32d2b450494a1e5183290f070e2"/></dir><file name="Items.php" hash="d8ad764345d6993370ce69e9d5c1fa24"/></dir><file name="Wishlist.php" hash="8ef6eeee9f331eae1b37290159b00704"/></dir><dir name="Item"><file name="Configure.php" hash="df540c6d631dad1df585477a6094efa2"/></dir><file name="Links.php" hash="7388c5aa2f11b17f7e1acbf1e3154fee"/><dir name="Render"><dir name="Item"><file name="Price.php" hash="c7897ddc67cdeb3270e6bc120034e601"/></dir></dir><dir name="Share"><dir name="Email"><file name="Items.php" hash="2c5e179ebbb18e061eb574a21a9729e1"/><file name="Rss.php" hash="69dcb685b4ebdc1c409832c31a70d5c1"/></dir><file name="Wishlist.php" hash="36ddc5b0d9d66e24c1557a4f953ae412"/></dir></dir><dir name="Controller"><file name="Abstract.php" hash="03947a26493474f68a78ac21f32b9342"/></dir><dir name="Helper"><file name="Data.php" hash="6cc5ff612bca8eaa04db9f8b84d28262"/></dir><dir name="Model"><dir name="Config"><dir name="Source"><file name="Summary.php" hash="fddf0fcbe285076f626f06ab9b8b43de"/></dir></dir><file name="Config.php" hash="646e0e9adf588f9d0bc3f9ed1aa38fb4"/><dir name="Item"><file name="Option.php" hash="56539786a0ba47bcee01f67fe260366f"/></dir><file name="Item.php" hash="bc30a733ecd2e3ed20602488c1844df0"/><dir name="Mysql4"><dir name="Item"><file name="Collection.php" hash="7b728a313029fd327839e20e14d87f67"/><dir name="Option"><file name="Collection.php" hash="25f4702f7f8b2043683ad8a6f7fe6c1f"/></dir><file name="Option.php" hash="c8d065def3aebbd48c246c96152fdcc1"/></dir><file name="Item.php" hash="e579117f62f2539ad727b3c4f113d464"/><dir name="Product"><file name="Collection.php" hash="bf8e2aee1ad775f658cd23e722f87718"/></dir><dir name="Wishlist"><file name="Collection.php" hash="fe599f4061cec35c9708adafef85eedb"/></dir><file name="Wishlist.php" hash="d448e775459bb534032fd49baa11b17f"/></dir><file name="Observer.php" hash="ae44ab5404204f8d624b5ec25eccca0f"/><dir name="Resource"><dir name="Item"><file name="Collection.php" hash="6aa52daba54440df4f74bc4048ab6f35"/><dir name="Option"><file name="Collection.php" hash="87a9f18e10260fccba022110bda6cdfd"/></dir><file name="Option.php" hash="ea1490b6cef10a18b315663be8b4358b"/></dir><file name="Item.php" hash="b33c9ae9c772cc2962d6e9c3e2b65809"/><dir name="Product"><file name="Collection.php" hash="613df0bcf1fb3689c4c93ce216a169c0"/></dir><dir name="Wishlist"><file name="Collection.php" hash="ad5efb5bd2fc89b646b5215f7b1e5d30"/></dir><file name="Wishlist.php" hash="a0820a5c980ed3b30e1f1b40acf82144"/></dir><file name="Session.php" hash="83cca8e59015346c16cf6c7ca33ce16a"/><file name="Wishlist.php" hash="aca197421b94af4baedcd1e55e72da83"/></dir><dir name="controllers"><file name="IndexController.php" hash="a095aa912813a72fb75a02a5da61d797"/><file name="SharedController.php" hash="f271d1a01b6db8122c2e806222986248"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1d60d7a6f4a0860ac7c97d372c3fe033"/><file name="config.xml" hash="807e8eeb1b8e43a55aa7fbb6897204e1"/><file name="system.xml" hash="ea3dd210a0775e6c238f73e296731694"/></dir><dir name="sql"><dir name="wishlist_setup"><file name="install-1.6.0.0.php" hash="33a95e58bf36403e3332c8179fd223a5"/><file name="mysql4-install-0.7.0.php" hash="0ad4dd35e9bfcacd896a473389bb5d02"/><file name="mysql4-upgrade-0.7.0-0.7.1.php" hash="11ac69d9c9e48b276f3cc7ffbe5f4ff9"/><file name="mysql4-upgrade-0.7.1-0.7.2.php" hash="7a2e6d2f78ecde8da32b54bd62f59fec"/><file name="mysql4-upgrade-0.7.2-0.7.4.php" hash="1542cb7321c5550eb704b8fc33bed06f"/><file name="mysql4-upgrade-0.7.4-0.7.5.php" hash="445f775cedb1ef509ad6eab4e5562859"/><file name="mysql4-upgrade-0.7.5-0.7.6.php" hash="9b802c81524d358727eaa9e707b1a173"/><file name="mysql4-upgrade-0.7.6-0.7.7.php" hash="6677145122de6fbbaba4d94af4951c8e"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="1eb422ca0f5a852efc04b3f26b7aee16"/><file name="mysql4-upgrade-0.7.8-0.7.9.php" hash="463c8a2f3460283b79d8bac7cc12028b"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="f47f0f666365f61b750ca9ad540114f9"/></dir></dir></dir></dir><dir name="Zend"><file name="Date.php" hash="95bf218944785f606f22c2ea0c077f5d"/><dir name="Db"><file name="Select.php" hash="28f3efa5f9797af22f899fb525dbb44f"/><file name="Statement.php" hash="4b5b39a1e1c651ab9d6db332c882fdf7"/></dir><file name="Mime.php" hash="f216d84221e3d7601822b4c95948aeaf"/><dir name="Validate"><file name="Hostname.php" hash="08c032ea8831e62e79c792e274220aa9"/></dir><dir name="Xml"><file name="Security.php" hash="7366a7b9e2dab5551b557f49d900d6a1"/></dir></dir></target><target name="mage"><dir name="app"><file name="Mage.php" hash="4f2f6315771a76c31774c5da7968fe3a"/><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/><file name="bootstrap.php" hash="a617c37f2a73cc3edbd6a545f2e2e00b"/></dir><dir name="."><file name="cron.php" hash="4635e5b99bfca47a0182a96a3f6dc77e"/><file name="LICENSE.txt" hash="59563e7be45096d0833dade102989042"/><file name="index.php.sample" hash="45893b3f7f642cd085b7922b51c673a0"/><file name=".htaccess.sample" hash="971c336db60ac86ae96b5c5871be1e8c"/><file name="LICENSE_AFL.txt" hash="45a399f2095030865fb962263ccd7506"/><file name="LICENSE.html" hash="caf0a79ffb5e4719f9f4de286f253a61"/><file name="cron.sh" hash="80579b07c2ef11b488014de167f3afc0"/><file name="install.php" hash="908eccc23a47e0c455cc859b2ff4db0c"/><file name="php.ini.sample" hash="d7412c2f78440a96fc2d9378ccf460cb"/><file name="get.php" hash="2a16b51e2ccb46e237e00072e0490ffe"/><file name="RELEASE_NOTES.txt" hash="02bb4ffc552eb88f96f1fa6d2e74be7a"/><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><file name="api.php" hash="a35ec5dbd62ae1f6683e7edca8018bc1"/></dir><dir name="errors"><file name="404.php" hash="589e28548254946751733ac8bac7a160"/><file name="503.php" hash="49d4f4a126202215605c51c5cdacfba3"/><dir name="default"><file name="404.phtml" hash="af7b554e2b6596a66251134c107d6db2"/><file name="503.phtml" hash="d456bc683ed74a37b3853b385ea3daa0"/><dir name="css"><file name="styles.css" hash="0d34138c8c22e5e7fe0474f88be13be2"/></dir><dir name="images"><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_header.jpg" hash="0211c47be1493bd0ec72949c47932b81"/><file name="bkg_main1.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="bkg_main2.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="logo.gif" hash="48b7eb03807fdf80bdfb19b872cf84b8"/></dir><file name="page.phtml" hash="bd758ecf041c888ae775c7affbbfd961"/><file name="report.phtml" hash="7eef7b64f5ce167d5d7d8cf894fea4e6"/></dir><file name="design.xml" hash="824a6db1d11d0c33fa2ecc32cdace275"/><file name="local.xml.sample" hash="9e95ec195ec69786856468eb498d3bff"/><file name="processor.php" hash="c9941fbfeb9a33f08a84ccf2aa9132ee"/><file name="report.php" hash="05f4e9510d6556a5f167c4333425cb8a"/><file name=".htaccess" hash="8382e66b40fe15d7a1edfc780f9be92f"/><file name=".htaccess" hash="8382e66b40fe15d7a1edfc780f9be92f"/></dir><dir name="var"><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir><dir name="shell"><file name="abstract.php" hash="b9671e36ce77be402f6c1feaab612771"/><file name="compiler.php" hash="5ae0b5c4151c73af8ca567d25c4b8f5e"/><file name="indexer.php" hash="0b1e58df83d5f41b739aa0095a9d96d0"/><file name="log.php" hash="2715cec50ab8441e6a6f55b0b8578f37"/><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir><dir name="lib"><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir><dir name="media"><file name=".htaccess" hash="08de5b2f5ea1ce6f51f40a19bacbf42e"/><dir name="dhl"><file name="logo.jpg" hash="68500df59e568e01333ba078a262ca27"/></dir><dir name="downloadable"><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir><dir name="customer"><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir></dir></target><target name="mageetc"><dir name="."><file name="config.xml" hash="be7c02ff5f7e2904978cecba4862a4af"/><file name="local.xml.template" hash="8c3bf448008dc74fdba97dd751816bb3"/><file name="local.xml.additional" hash="3bd377a8f06ada51c7dd280262c1f276"/></dir><dir name="modules"><file name="Mage_All.xml" hash="5256972a841c1604832a51f9513340d8"/><file name="Mage_Bundle.xml" hash="deb91101ce207e55cd783752a68a2f12"/><file name="Mage_Api.xml" hash="e10951bddfcd370b6f4c67a492b00358"/><file name="Mage_Downloadable.xml" hash="fd74033d6239aa3150469503664c25ad"/><file name="Mage_Weee.xml" hash="8cda7afdfef0a98434c8fec627c256cc"/><file name="Mage_Widget.xml" hash="97744c0f37d72188da7013d3ab9d7076"/><file name="Mage_Connect.xml" hash="daaec0c7dc6a3dea31860000eef4c534"/><file name="Mage_ImportExport.xml" hash="c337858c314568e42eff27f6b91d936d"/><file name="Mage_PageCache.xml" hash="a49bf857449628caf03e29623b9fa943"/><file name="Mage_Persistent.xml" hash="14b5506f30659b9d3aa4b12ed5808f74"/><file name="Mage_Authorizenet.xml" hash="8c131bf1a09ad61042eaf4b2514dd049"/><file name="Mage_Captcha.xml" hash="9139860029aaf80f9900c951fb762136"/><file name="Mage_CurrencySymbol.xml" hash="56081b1aaf92a89ac2f7d7fbdeeff627"/><file name="Mage_Api2.xml" hash="3d4bb7cca4a1ddb93ae48dc3eadb11c7"/><file name="Mage_Oauth.xml" hash="593e89ff7905abded6e966f9e110b027"/><file name="Mage_ConfigurableSwatches.xml" hash="cedf68a891a12cf573d06cfcdbd104d6"/></dir></target></contents>
16
  <compatible/>
17
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_Varien</name><channel>community</channel><min>1.9.3.1</min><max>1.9.3.1</max></package><package><name>Lib_Google_Checkout</name><channel>community</channel><min>1.9.3.1</min><max>1.9.3.1</max></package><package><name>Lib_Js_Calendar</name><channel>community</channel><min>1.51.1.7</min><max>1.51.1.7</max></package><package><name>Lib_Js_Mage</name><channel>community</channel><min>1.9.3.1</min><max>1.9.3.1</max></package><package><name>Lib_Js_Prototype</name><channel>community</channel><min>1.9.3.1</min><max>1.9.3.1</max></package><package><name>Lib_Phpseclib</name><channel>community</channel><min>1.9.3.1</min><max>1.9.3.1</max></package><package><name>Mage_Locale_en_US</name><channel>community</channel><min>1.9.3.1</min><max>1.9.3.1</max></package><package><name>Lib_Mage</name><channel>community</channel><min>1.9.3.1</min><max>1.9.3.1</max></package><package><name>Lib_Magento</name><channel>community</channel><min>1.9.3.1</min><max>1.9.3.1</max></package><package><name>Lib_Credis</name><channel>community</channel><min>1.9.3.1</min><max>1.9.3.1</max></package><package><name>Lib_Pelago</name><channel>community</channel><min>1.9.3.1</min><max>1.9.3.1</max></package><package><name>Lib_Unserialize</name><channel>community</channel><min>1.9.3.1</min><max>1.9.3.1</max></package><package><name>Lib_IDNA2</name><channel>community</channel><min>1.9.3.1</min><max>1.9.3.1</max></package></required></dependencies>
18
  </package>