Interface_Adminhtml_Default - Version 1.6.2.0

Version Notes

1.6.2.0

Download this release

Release Info

Developer Magento Core Team
Extension Interface_Adminhtml_Default
Version 1.6.2.0
Comparing to
See all releases


Code changes from version 1.6.1.0 to 1.6.2.0

app/design/adminhtml/default/default/template/catalog/product/attribute/set/main.phtml CHANGED
@@ -229,12 +229,12 @@
229
  }
230
 
231
  if( editSet.SystemNodesExists(editSet.currentNode) ) {
232
- alert('<?php echo Mage::helper('catalog')->__('This group contains system attributes. Please move system attributes to another group and try again.') ?>');
233
  return;
234
  }
235
 
236
  if (editSet.ConfigurableNodeExists(editSet.currentNode)) {
237
- alert('<?php echo Mage::helper('catalog')->__('This group contains attributes, used in configurable products. Please move these attributes to another group and try again.') ?>');
238
  return;
239
  }
240
 
@@ -362,7 +362,7 @@
362
  },
363
 
364
  failure : function(o) {
365
- alert('<?php echo Mage::helper('catalog')->__('Unable to complete this request.') ?>');
366
  },
367
 
368
  groupBeforeMove : function(tree, nodeThis, oldParent, newParent) {
@@ -377,11 +377,11 @@
377
 
378
  rightBeforeAppend : function(tree, nodeThis, node, newParent) {
379
  if (node.attributes.is_user_defined == 0) {
380
- alert('<?php echo Mage::helper('catalog')->__('You cannot remove system attribute from this set.') ?>');
381
  return false;
382
  }
383
  else if (node.attributes.is_configurable == 1) {
384
- alert('<?php echo Mage::helper('catalog')->__('This attribute is used in configurable products. You cannot remove it from the attribute set.') ?>');
385
  return false;
386
  }
387
  else {
@@ -396,11 +396,11 @@
396
  }
397
 
398
  if (node.attributes.is_user_defined == 0) {
399
- alert('<?php echo Mage::helper('catalog')->__('You cannot remove system attribute from this set.') ?>');
400
  return false;
401
  }
402
  else if (node.attributes.is_configurable == 1) {
403
- alert('<?php echo Mage::helper('catalog')->__('This attribute is used in configurable products. You cannot remove it from the attribute set.') ?>');
404
  return false;
405
  }
406
  else {
229
  }
230
 
231
  if( editSet.SystemNodesExists(editSet.currentNode) ) {
232
+ alert('<?php echo Mage::helper('core')->jsQuoteEscape(Mage::helper('catalog')->__('This group contains system attributes. Please move system attributes to another group and try again.')) ?>');
233
  return;
234
  }
235
 
236
  if (editSet.ConfigurableNodeExists(editSet.currentNode)) {
237
+ alert('<?php echo Mage::helper('core')->jsQuoteEscape(Mage::helper('catalog')->__('This group contains attributes, used in configurable products. Please move these attributes to another group and try again.')) ?>');
238
  return;
239
  }
240
 
362
  },
363
 
364
  failure : function(o) {
365
+ alert('<?php echo Mage::helper('core')->jsQuoteEscape(Mage::helper('catalog')->__('Unable to complete this request.')) ?>');
366
  },
367
 
368
  groupBeforeMove : function(tree, nodeThis, oldParent, newParent) {
377
 
378
  rightBeforeAppend : function(tree, nodeThis, node, newParent) {
379
  if (node.attributes.is_user_defined == 0) {
380
+ alert('<?php echo Mage::helper('core')->jsQuoteEscape(Mage::helper('catalog')->__('You cannot remove system attribute from this set.')) ?>');
381
  return false;
382
  }
383
  else if (node.attributes.is_configurable == 1) {
384
+ alert('<?php echo Mage::helper('core')->jsQuoteEscape(Mage::helper('catalog')->__('This attribute is used in configurable products. You cannot remove it from the attribute set.')) ?>');
385
  return false;
386
  }
387
  else {
396
  }
397
 
398
  if (node.attributes.is_user_defined == 0) {
399
+ alert('<?php echo Mage::helper('core')->jsQuoteEscape(Mage::helper('catalog')->__('You cannot remove system attribute from this set.')) ?>');
400
  return false;
401
  }
402
  else if (node.attributes.is_configurable == 1) {
403
+ alert('<?php echo Mage::helper('core')->jsQuoteEscape(Mage::helper('catalog')->__('This attribute is used in configurable products. You cannot remove it from the attribute set.')) ?>');
404
  return false;
405
  }
406
  else {
app/design/adminhtml/default/default/template/customer/tab/cart.phtml CHANGED
@@ -65,10 +65,10 @@
65
 
66
  removeItem: function (itemId) {
67
  if (!itemId) {
68
- alert('<?php echo Mage::helper('customer')->__('No item specified.') ?>');
69
  return false;
70
  }
71
- if(!confirm('<?php echo Mage::helper('customer')->__('Are you sure that you want to remove this item?') ?>')) {
72
  return false;
73
  }
74
 
65
 
66
  removeItem: function (itemId) {
67
  if (!itemId) {
68
+ alert('<?php echo Mage::helper('core')->jsQuoteEscape(Mage::helper('customer')->__('No item specified.')) ?>');
69
  return false;
70
  }
71
+ if(!confirm('<?php echo Mage::helper('core')->jsQuoteEscape(Mage::helper('customer')->__('Are you sure that you want to remove this item?')) ?>')) {
72
  return false;
73
  }
74
 
app/design/adminhtml/default/default/template/downloadable/product/edit/downloadable.phtml CHANGED
@@ -230,7 +230,7 @@ Validation.addAllThese([
230
  newFileContainer = element.up(0).down('div.new-file');
231
  if (!alertAlreadyDisplayed && (newFileContainer.empty() || newFileContainer.style.display != 'none')) {
232
  alertAlreadyDisplayed = true;
233
- alert('There are files that were selected but not uploaded yet. Please upload or remove them first');
234
  }
235
  return false;
236
  }
230
  newFileContainer = element.up(0).down('div.new-file');
231
  if (!alertAlreadyDisplayed && (newFileContainer.empty() || newFileContainer.style.display != 'none')) {
232
  alertAlreadyDisplayed = true;
233
+ alert('<?php echo $this->jsQuoteEscape($this->__('There are files that were selected but not uploaded yet. Please upload or remove them first'));?>');
234
  }
235
  return false;
236
  }
app/design/adminhtml/default/default/template/forgotpassword.phtml CHANGED
@@ -28,38 +28,38 @@
28
  <html lang="en">
29
  <head>
30
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
31
- <title><?php echo Mage::helper('adminhtml')->__('Log into Magento Admin Page') ?></title>
32
- <link type="text/css" rel="stylesheet" href="<?php echo $this->getSkinUrl('reset.css') ?>" media="all" />
33
- <link type="text/css" rel="stylesheet" href="<?php echo $this->getSkinUrl('boxes.css') ?>" media="all" />
34
- <link rel="icon" href="<?php echo $this->getSkinUrl('favicon.ico') ?>" type="image/x-icon" />
35
- <link rel="shortcut icon" href="<?php echo $this->getSkinUrl('favicon.ico') ?>" type="image/x-icon" />
36
 
37
- <script type="text/javascript" src="<?php echo $this->getJsUrl() ?>index.php/x.js?f=prototype/prototype.js,prototype/validation.js,mage/adminhtml/events.js,mage/adminhtml/form.js,scriptaculous/effects.js"></script>
38
 
39
- <!--[if IE]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('iestyles.css') ?>" type="text/css" media="all" /> <![endif]-->
40
- <!--[if lt IE 7]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('below_ie7.css') ?>" type="text/css" media="all" /> <![endif]-->
41
- <!--[if IE 7]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('ie7.css') ?>" type="text/css" media="all" /> <![endif]-->
42
  </head>
43
  <body id="page-login">
44
  <div class="login-container">
45
  <div class="login-box">
46
  <form method="post" action="" id="loginForm">
47
  <fieldset class="login-form">
48
- <input name="form_key" type="hidden" value="<?php echo $this->getFormKey() ?>" />
49
- <h2><?php echo Mage::helper('adminhtml')->__('Forgot your user name or password?') ?></h2>
50
  <div id="messages">
51
- <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
52
  </div>
53
- <div class="input-box forgot-password"><label for="email"><?php echo Mage::helper('adminhtml')->__('Email Address:') ?></label><br />
54
- <input type="text" id="email" name="email" value="" class="required-entry input-text forgot-password" style="width:461px;" />
55
  </div>
56
  <div class="clear"></div>
57
  <div class="form-buttons">
58
- <a class="left" href="<?php echo $this->getUrl('adminhtml', array('_nosecret' => true)) ?>">&laquo; <?php echo Mage::helper('adminhtml')->__('Back to Login') ?></a>
59
- <button class="forgot-password" onclick="loginForm.submit()" type="button"><span><?php echo Mage::helper('adminhtml')->__('Retrieve Password') ?></span></button>
60
  </div>
61
  </fieldset>
62
- <p class="legal"><?php echo Mage::helper('adminhtml')->__('Magento is a trademark of Magento Inc. Copyright &copy; %s Magento Inc.', date('Y')) ?></p>
63
  </form>
64
  <div class="bottom"></div>
65
  <script type="text/javascript">
28
  <html lang="en">
29
  <head>
30
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
31
+ <title><?php echo Mage::helper('adminhtml')->__('Log into Magento Admin Page'); ?></title>
32
+ <link type="text/css" rel="stylesheet" href="<?php echo $this->getSkinUrl('reset.css'); ?>" media="all" />
33
+ <link type="text/css" rel="stylesheet" href="<?php echo $this->getSkinUrl('boxes.css'); ?>" media="all" />
34
+ <link rel="icon" href="<?php echo $this->getSkinUrl('favicon.ico'); ?>" type="image/x-icon" />
35
+ <link rel="shortcut icon" href="<?php echo $this->getSkinUrl('favicon.ico'); ?>" type="image/x-icon" />
36
 
37
+ <script type="text/javascript" src="<?php echo $this->getJsUrl(); ?>index.php/x.js?f=prototype/prototype.js,prototype/validation.js,mage/adminhtml/events.js,mage/adminhtml/form.js,scriptaculous/effects.js"></script>
38
 
39
+ <!--[if IE]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('iestyles.css'); ?>" type="text/css" media="all" /> <![endif]-->
40
+ <!--[if lt IE 7]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('below_ie7.css'); ?>" type="text/css" media="all" /> <![endif]-->
41
+ <!--[if IE 7]> <link rel="stylesheet" href="<?php echo $this->getSkinUrl('ie7.css'); ?>" type="text/css" media="all" /> <![endif]-->
42
  </head>
43
  <body id="page-login">
44
  <div class="login-container">
45
  <div class="login-box">
46
  <form method="post" action="" id="loginForm">
47
  <fieldset class="login-form">
48
+ <input name="form_key" type="hidden" value="<?php echo $this->getFormKey(); ?>" />
49
+ <h2><?php echo Mage::helper('adminhtml')->__('Forgot your user name or password?'); ?></h2>
50
  <div id="messages">
51
+ <?php echo $this->getMessagesBlock()->getGroupedHtml(); ?>
52
  </div>
53
+ <div class="input-box forgot-password"><label for="email"><?php echo Mage::helper('adminhtml')->__('Email Address:'); ?></label><br />
54
+ <input type="text" id="email" name="email" value="" class="required-entry input-text forgot-password validate-email" style="width:461px;" />
55
  </div>
56
  <div class="clear"></div>
57
  <div class="form-buttons">
58
+ <a class="left" href="<?php echo $this->getUrl('adminhtml', array('_nosecret' => true)); ?>">&laquo; <?php echo Mage::helper('adminhtml')->__('Back to Login'); ?></a>
59
+ <button class="forgot-password" onclick="loginForm.submit()" type="button"><span><?php echo Mage::helper('adminhtml')->__('Retrieve Password'); ?></span></button>
60
  </div>
61
  </fieldset>
62
+ <p class="legal"><?php echo Mage::helper('adminhtml')->__('Magento is a trademark of Magento Inc. Copyright &copy; %s Magento Inc.', date('Y')); ?></p>
63
  </form>
64
  <div class="bottom"></div>
65
  <script type="text/javascript">
app/design/adminhtml/default/default/template/paypal/system/config/fieldset/global.phtml CHANGED
@@ -57,10 +57,10 @@
57
  </td>
58
  <td class="paypal-selection-info">
59
  <?php if ($url = $this->getElementOriginalData($element, 'demo_url')):?>
60
- <a href="<?php echo $this->escapeHtml($url) ?>"><?php echo Mage::helper('paypal')->__('View Demo')?></a> |
61
  <?php endif;?>
62
  <?php if ($url = $this->getElementOriginalData($element, 'more_url')):?>
63
- <a href="<?php echo $this->escapeHtml($url) ?>"><?php echo Mage::helper('paypal')->__('Learn More')?></a>
64
  <?php endif;?>
65
  </td>
66
  <?php endif;?>
@@ -78,6 +78,7 @@ Event.observe(window, 'load', function() {
78
  Element.observe('paypal_global_wpp', 'click', pConfig.trackWpp.bind(pConfig));
79
  Element.observe('paypal_global_wpp_pe', 'click', pConfig.trackWppPe.bind(pConfig));
80
  Element.observe('paypal_global_payflow_link', 'click', pConfig.trackWppPl.bind(pConfig));
 
81
  Element.observe('paypal_global_hosted_pro', 'click', pConfig.trackHss.bind(pConfig));
82
  Element.observe('paypal_global_verisign', 'click', pConfig.trackPayflowpro.bind(pConfig));
83
  ['ec','wps','ecpe'].each(function(m) {
@@ -88,6 +89,7 @@ Event.observe(window, 'load', function() {
88
  pConfig.trackBusinessAccount();
89
  pConfig.trackWpp();
90
  pConfig.trackWppPl();
 
91
  pConfig.trackWppPe();
92
  pConfig.trackWps();
93
  pConfig.trackHss();
@@ -138,6 +140,13 @@ PaypalConfig.prototype = {
138
  $this->getElement('paypal_global_payflow_link'));
139
  ?>)
140
  }),
 
 
 
 
 
 
 
141
  ecpe: $H({
142
  switcher: 'express_pe',
143
  fieldset: 'express_pe',
@@ -216,6 +225,16 @@ PaypalConfig.prototype = {
216
  return $(switcherValueId);
217
  },
218
 
 
 
 
 
 
 
 
 
 
 
219
  getMethodSwitcherInherit: function(method)
220
  {
221
  var inheritId = 'paypal_global_' + this.getMethod(method).get('switcher') + '_inherit';
@@ -371,6 +390,41 @@ PaypalConfig.prototype = {
371
  switcherLabelElement.update(labelConfig['switcher']);
372
  fieldsetLabelElement.update(labelConfig['fieldset']);
373
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
374
  },
375
 
376
  trackBusinessAccount: function()
@@ -418,6 +472,11 @@ PaypalConfig.prototype = {
418
  this.trackMethod('wpppl');
419
  },
420
 
 
 
 
 
 
421
  trackHss: function()
422
  {
423
  this.trackMethod('hosted_pro');
57
  </td>
58
  <td class="paypal-selection-info">
59
  <?php if ($url = $this->getElementOriginalData($element, 'demo_url')):?>
60
+ <a id="<?php echo $element->getHtmlId()?>_demo_url" href="<?php echo $this->escapeHtml($url) ?>"><?php echo Mage::helper('paypal')->__('View Demo')?></a> |
61
  <?php endif;?>
62
  <?php if ($url = $this->getElementOriginalData($element, 'more_url')):?>
63
+ <a id="<?php echo $element->getHtmlId()?>_more_url" href="<?php echo $this->escapeHtml($url) ?>"><?php echo Mage::helper('paypal')->__('Learn More')?></a>
64
  <?php endif;?>
65
  </td>
66
  <?php endif;?>
78
  Element.observe('paypal_global_wpp', 'click', pConfig.trackWpp.bind(pConfig));
79
  Element.observe('paypal_global_wpp_pe', 'click', pConfig.trackWppPe.bind(pConfig));
80
  Element.observe('paypal_global_payflow_link', 'click', pConfig.trackWppPl.bind(pConfig));
81
+ Element.observe('paypal_global_payflow_advanced', 'click', pConfig.trackWppPa.bind(pConfig));
82
  Element.observe('paypal_global_hosted_pro', 'click', pConfig.trackHss.bind(pConfig));
83
  Element.observe('paypal_global_verisign', 'click', pConfig.trackPayflowpro.bind(pConfig));
84
  ['ec','wps','ecpe'].each(function(m) {
89
  pConfig.trackBusinessAccount();
90
  pConfig.trackWpp();
91
  pConfig.trackWppPl();
92
+ pConfig.trackWppPa();
93
  pConfig.trackWppPe();
94
  pConfig.trackWps();
95
  pConfig.trackHss();
140
  $this->getElement('paypal_global_payflow_link'));
141
  ?>)
142
  }),
143
+ wpppa: $H({
144
+ switcher: 'payflow_advanced',
145
+ fieldset: 'payflow_advanced',
146
+ backendConfig : $H(<?php echo $this->getElementBackendConfig(
147
+ $this->getElement('paypal_global_payflow_advanced'));
148
+ ?>)
149
+ }),
150
  ecpe: $H({
151
  switcher: 'express_pe',
152
  fieldset: 'express_pe',
225
  return $(switcherValueId);
226
  },
227
 
228
+ getMethodLinkDemoUrl: function(method)
229
+ {
230
+ return $('paypal_global_' + this.getMethod(method).get('switcher') + '_demo_url');
231
+ },
232
+
233
+ getMethodLinkMoreUrl: function(method)
234
+ {
235
+ return $('paypal_global_' + this.getMethod(method).get('switcher') + '_more_url');
236
+ },
237
+
238
  getMethodSwitcherInherit: function(method)
239
  {
240
  var inheritId = 'paypal_global_' + this.getMethod(method).get('switcher') + '_inherit';
390
  switcherLabelElement.update(labelConfig['switcher']);
391
  fieldsetLabelElement.update(labelConfig['fieldset']);
392
  }
393
+
394
+ var urls = config.get('urls');
395
+ if (urls) {
396
+ var linkMoreUrl = this.getMethodLinkMoreUrl(methodKey);
397
+ if (linkMoreUrl) {
398
+ if (!urls['more_url']) {
399
+ urls['more_url'] = linkMoreUrl.readAttribute('href');
400
+ }
401
+
402
+ var moreUrl = urls[country];
403
+ if (!moreUrl && urls['more_url']) {
404
+ var moreUrl = {
405
+ more_url: urls['more_url']
406
+ };
407
+ }
408
+
409
+ linkMoreUrl.writeAttribute('href', moreUrl['more_url']);
410
+ }
411
+
412
+ var linkDemoUrl = this.getMethodLinkDemoUrl(methodKey);
413
+ if (linkDemoUrl) {
414
+ if (!urls['demo_url']) {
415
+ urls['demo_url'] = linkDemoUrl.readAttribute('href');
416
+ }
417
+
418
+ var demoUrl = urls[country];
419
+ if (!demoUrl && urls['demo_url']) {
420
+ var demoUrl = {
421
+ demo_url: urls['demo_url']
422
+ };
423
+ }
424
+
425
+ linkDemoUrl.writeAttribute('href', demoUrl['demo_url']);
426
+ }
427
+ }
428
  },
429
 
430
  trackBusinessAccount: function()
472
  this.trackMethod('wpppl');
473
  },
474
 
475
+ trackWppPa: function()
476
+ {
477
+ this.trackMethod('wpppa');
478
+ },
479
+
480
  trackHss: function()
481
  {
482
  this.trackMethod('hosted_pro');
app/design/adminhtml/default/default/template/paypal/system/config/payflowlink/advanced.phtml ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package default_default
23
+ * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+
27
+ /*
28
+ * @var $this Mage_Paypal_Block_Adminhtml_System_Config_Payflowlink_Advanced
29
+ */
30
+ ?>
31
+ <div style="padding-bottom: 1em;max-width: 800px;">
32
+ <strong style="color:red"><?php echo $this->__('Important: ') ?></strong>
33
+ <?php echo $this->__('To use PayPal Payments Advanced you must configure some settings in your PayPal Payments Advanced account by logging into') ?> <a href="https://manager.paypal.com/"><?php echo $this->__('PayPal Manager'); ?></a>.
34
+ <?php echo $this->__(' You will need to navigate to your ') ?>
35
+ <span style="text-decoration: underline"><?php echo $this->__('Service Settings') ?></span>
36
+ <?php echo $this->__(' and go to the ') ?>
37
+ <span style="text-decoration: underline"><?php echo $this->__('Set up & Customize') ?></span>
38
+ <?php echo $this->__(' sections for your Hosted Checkout Pages.') ?>
39
+ <div style="border: 1px solid black;margin:2em;">
40
+ <ul style="list-style:none;padding:0 2em;">
41
+ <li>
42
+ <strong style="text-transform: capitalize"><?php echo $this->__('1. set up') ?></strong> Please copy and paste the following required values to your PayPal Payments Advanced Set Up section:
43
+ <ul style="list-style:lower-latin;padding:0 2em;">
44
+ <li>
45
+ Under Display <span style="text-decoration: underline">Options on Payment Page</span>, enter the following:
46
+ <ul style="list-style:lower-roman;padding:0 2em;">
47
+ <li>
48
+ <span style="text-decoration: underline">Cancel URL</span>:<br />
49
+ <a href="<?php echo $this->getFrontendUrl('paypal/payflowadvanced/cancelPayment') ?>" onclick="return false;">
50
+ <?php echo $this->getFrontendUrl('paypal/payflowadvanced/cancelPayment') ?>
51
+ </a>
52
+ </li>
53
+ <li>
54
+ <span style="text-decoration: underline">Error URL</span>:<br />
55
+ <a href="<?php echo $this->getFrontendUrl('paypal/payflowadvanced/returnUrl') ?>" onclick="return false;">
56
+ <?php echo $this->getFrontendUrl('paypal/payflowadvanced/returnUrl') ?>
57
+ </a>
58
+ </li>
59
+ </ul>
60
+ </li>
61
+ <li>
62
+ Under <span style="text-decoration: underline">Use Silent Post for Data Transfer</span>, please set as the following:
63
+ <ul style="list-style:lower-roman;padding:0 2em;">
64
+ <li><span style="text-decoration: underline">Use Silent Post</span>: select <strong>YES</strong></li>
65
+ <li>
66
+ Enter the following for <span style="text-decoration: underline">Silent Post URL</span>:<br />
67
+ <a href="<?php echo $this->getFrontendUrl('paypal/payflowadvanced/silentPost') ?>" onclick="return false;">
68
+ <?php echo $this->getFrontendUrl('paypal/payflowadvanced/silentPost') ?>
69
+ </a>
70
+ </li>
71
+ <li>
72
+ Enter the following for <span style="text-decoration: underline">Return URL when Silent Post fails</span>:<br />
73
+ <a href="<?php echo $this->getFrontendUrl('paypal/payflowadvanced/returnUrl') ?>" onclick="return false;">
74
+ <?php echo $this->getFrontendUrl('paypal/payflowadvanced/returnUrl') ?>
75
+ </a>
76
+ </li>
77
+ </ul>
78
+ </li>
79
+ <li>
80
+ Under <span style="text-decoration: underline">Security Options</span>, please set as the following:
81
+ <ul style="list-style:lower-roman;padding:0 2em;">
82
+ <li><span style="text-decoration: underline">AVS</span>: Select <strong>NO</strong></li>
83
+ <li><span style="text-decoration: underline">CSC</span>: Select <strong>NO</strong></li>
84
+ <li><span style="text-decoration: underline">Enable Secure Token</span>: select <strong>YES</strong></li>
85
+ </ul>
86
+ </li>
87
+ </ul>
88
+ </li>
89
+ </ul>
90
+ </div>
91
+ <div style="border: 1px solid black;margin:2em;">
92
+ <ul style="list-style:none;padding:0 2em;">
93
+ <li>
94
+ <strong style="text-transform: capitalize"><?php echo $this->__('2. customize') ?></strong> Please set the following required values in the Customize section of your Hosted Checkout Page settings:
95
+ <ul style="list-style:lower-latin;padding:0 2em;">
96
+ <li>
97
+ Select <span style="text-decoration: underline">Layout C</span>
98
+ </li>
99
+ </li>
100
+ </ul>
101
+ </div>
102
+ </div>
app/design/adminhtml/default/default/template/paypal/system/config/payflowlink/info.phtml CHANGED
@@ -29,84 +29,75 @@
29
  * @see Mage_Paypal_Block_Adminhtml_System_Config_Payflowlink_Info
30
  */
31
  ?>
32
- <div style="padding-bottom: 1em;">
33
  <strong style="color:red"><?php echo $this->__('Important: ') ?></strong>
34
- <?php echo $this->__('To use Payflow Link, you must configure your Payflow Link account on the Paypal website.') ?><br />
35
- <?php echo $this->__('Once you log into your Payflow Link account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below') ?>
36
- <div>
37
- <u><?php echo $this->__('Required settings') ?></u>
38
- <?php echo $this->__(' note that the URLs provided below are the correct values for your current website): ') ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  </div>
40
- <ul style="list-style:disc; padding-left:2em;">
41
- <li>
42
- <strong><?php echo $this->__('Error URL: ') ?></strong><br />
43
- <a href="<?php echo $this->getFrontendUrl('paypal/payflow/returnUrl') ?>" onclick="return false;">
44
- <?php echo $this->getFrontendUrl('paypal/payflow/returnUrl') ?>
45
- </a>
46
- </li>
47
- <li>
48
- <strong><?php echo $this->__('Show confirmation page: ') ?></strong>
49
- <?php echo $this->__('On my website') ?>
50
- </li>
51
- <li>
52
- <strong><?php echo $this->__('Return URL: ') ?></strong><br />
53
- <a href="<?php echo $this->getFrontendUrl('paypal/payflow/returnUrl') ?>" onclick="return false;">
54
- <?php echo $this->getFrontendUrl('paypal/payflow/returnUrl') ?>
55
- </a>
56
- </li>
57
- <li>
58
- <strong><?php echo $this->__('Use Silent Post:') ?></strong><br />
59
- <?php echo $this->__('Yes') ?>
60
- </li>
61
- <li>
62
- <strong><?php echo $this->__('Silent Post URL:') ?></strong><br />
63
- <a href="<?php echo $this->getFrontendUrl('paypal/payflow/silentPost') ?>" onclick="return false;">
64
- <?php echo $this->getFrontendUrl('paypal/payflow/silentPost') ?>
65
- </a>
66
- </li>
67
  <li>
68
- <strong><?php echo $this->__('Enable Secure Token:') ?></strong><br />
69
- <?php echo $this->__('Yes') ?>
70
- </li>
71
- </ul>
72
- <div><?php echo $this->__('Note:') ?></div>
73
- <ul style="list-style:disc; padding-left:2em;">
74
- <li>
75
- <?php echo $this->__('Do not set any fields in the Billing and Shipping Information block as editable in your Payflow account.'); ?>
76
- </li>
77
- <li>
78
- <?php echo $this->__('Do not enable AVS or CSC options. The do not work when using Payflow Link Silent Mode.') ?>
79
- </li>
80
- <li>
81
- <?php echo $this->__('If your Magento instance is used for multiple websites, you must configure a separate Payflow Link account for each website.') ?>
82
- </li>
83
- <li>
84
- <?php echo $this->__('Please navigate to <strong>Hosted Checkout Pages - Customize</strong> menu and select Layout C.') ?>
85
- </li>
86
- </ul>
87
- </div>
88
- <div id="PayFlowLinkLearnMoreText" style="display:none">
89
- <?php echo $this->__('When using Payflow Link in Magento, a payment authorization transaction must be performed after the shopper enters their credit card information on the Payment page of checkout. If a full authorization is performed for the entire dollar amount of the transaction, then in some cases, the transaction amount might be reserved on the shopper\'s credit card for up to 30 days, even if they abandon their cart. This is not an ideal customer experience. Using this advanced setting in Magento, you can configure key details of this authorization.') ?>
90
-
91
- <ul style="list-style:disc; padding-left:2em;">
92
- <li>
93
- <?php echo $this->__('Select $0 Auth if your credit card processor supports $0 Auth capability and Reference Transactions, or if you are unsure what to select. This setting provides the best experience for shoppers.') ?>
94
- </li>
95
- <li>
96
- <?php echo $this->__('Select $1 Auth if your credit card processor does not support $0 Auth, but does support Reference Transactions. This will provide a very good shopper experience, but might require you to pay a small additional authorization fee from your merchant account provider for any cart abandoned after payment details are entered. If you select $0 Auth, but your credit card processor does not support $0 Auth, your transaction will run as a $1 Auth instead.') ?>
97
- </li>
98
- <li>
99
- <?php echo $this->__('Select Full Auth if you want to minimize your credit card processing fees, or if your credit card processor does not permit reference transactions. Please note that in some cases, shoppers who abandon your cart late in the process may find that there is a payment authorization outstanding from your company, which will go away on its own in a few days/weeks. This authorization can be reversal by voiding it, however, there is no guarantee the card-issuing bank will accept this request.') ?>
100
- </li>
101
- </ul>
102
  </div>
103
- <script type="text/javascript">
104
- document.observe("dom:loaded", function() {
105
- $('row_paypal_payflow_link_authorization_amount').insert({after:'<tr id="PayFlowLinkLearnMoreRow"><td colspan="4"><tr>'});
106
- $('PayFlowLinkLearnMoreRow').down().insert({top:$('PayFlowLinkLearnMoreText')});
107
- $('PayFlowLinkLearnMore').observe('click', function(event){
108
- $('PayFlowLinkLearnMoreText').toggle();
109
- event.stop();
110
- });
111
- });
112
- </script>
29
  * @see Mage_Paypal_Block_Adminhtml_System_Config_Payflowlink_Info
30
  */
31
  ?>
32
+ <div style="padding-bottom: 1em;max-width: 800px;">
33
  <strong style="color:red"><?php echo $this->__('Important: ') ?></strong>
34
+ <?php echo $this->__('To use PayPal Payflow Link you must configure some settings in your Payflow account by logging into') ?> <a href="https://manager.paypal.com/"><?php echo $this->__('PayPal Manager'); ?></a>.
35
+ <?php echo $this->__(' You will need to navigate to your ') ?>
36
+ <span style="text-decoration: underline"><?php echo $this->__('Service Settings') ?></span>
37
+ <?php echo $this->__(' and go to the ') ?>
38
+ <span style="text-decoration: underline"><?php echo $this->__('Set up & Customize') ?></span>
39
+ <?php echo $this->__(' sections for your Hosted Checkout Pages.') ?>
40
+ <div style="border: 1px solid black;margin:2em;">
41
+ <ul style="list-style:none;padding:0 2em;">
42
+ <li>
43
+ <strong style="text-transform: capitalize"><?php echo $this->__('1. set up') ?></strong> Please copy and paste the following required values to your PayPal Payflow Link Set Up section:
44
+ <ul style="list-style:lower-latin;padding:0 2em;">
45
+ <li>
46
+ Under Display <span style="text-decoration: underline">Options on Payment Page</span>, enter the following:
47
+ <ul style="list-style:lower-roman;padding:0 2em;">
48
+ <li>
49
+ <span style="text-decoration: underline">Cancel URL</span>:<br />
50
+ <a href="<?php echo $this->getFrontendUrl('paypal/payflow/cancelPayment') ?>" onclick="return false;">
51
+ <?php echo $this->getFrontendUrl('paypal/payflow/cancelPayment') ?>
52
+ </a>
53
+ </li>
54
+ <li>
55
+ <span style="text-decoration: underline">Error URL</span>:<br />
56
+ <a href="<?php echo $this->getFrontendUrl('paypal/payflow/returnUrl') ?>" onclick="return false;">
57
+ <?php echo $this->getFrontendUrl('paypal/payflow/returnUrl') ?>
58
+ </a>
59
+ </li>
60
+ </ul>
61
+ </li>
62
+ <li>
63
+ Under <span style="text-decoration: underline">Use Silent Post for Data Transfer</span>, please set as the following:
64
+ <ul style="list-style:lower-roman;padding:0 2em;">
65
+ <li><span style="text-decoration: underline">Use Silent Post</span>: select <strong>YES</strong></li>
66
+ <li>
67
+ Enter the following for <span style="text-decoration: underline">Silent Post URL</span>:<br />
68
+ <a href="<?php echo $this->getFrontendUrl('paypal/payflow/silentPost') ?>" onclick="return false;">
69
+ <?php echo $this->getFrontendUrl('paypal/payflow/silentPost') ?>
70
+ </a>
71
+ </li>
72
+ <li>
73
+ Enter the following for <span style="text-decoration: underline">Return URL when Silent Post fails</span>:<br />
74
+ <a href="<?php echo $this->getFrontendUrl('paypal/payflow/returnUrl') ?>" onclick="return false;">
75
+ <?php echo $this->getFrontendUrl('paypal/payflow/returnUrl') ?>
76
+ </a>
77
+ </li>
78
+ </ul>
79
+ </li>
80
+ <li>
81
+ Under <span style="text-decoration: underline">Security Options</span>, please set as the following:
82
+ <ul style="list-style:lower-roman;padding:0 2em;">
83
+ <li><span style="text-decoration: underline">AVS</span>: Select <strong>NO</strong></li>
84
+ <li><span style="text-decoration: underline">CSC</span>: Select <strong>NO</strong></li>
85
+ <li><span style="text-decoration: underline">Enable Secure Token</span>: select <strong>YES</strong></li>
86
+ </ul>
87
+ </li>
88
+ </ul>
89
+ </li>
90
+ </ul>
91
  </div>
92
+ <div style="border: 1px solid black;margin:2em;">
93
+ <ul style="list-style:none;padding:0 2em;">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  <li>
95
+ <strong style="text-transform: capitalize"><?php echo $this->__('2. customize') ?></strong> Please set the following required values in the Customize section of your Hosted Checkout Page settings:
96
+ <ul style="list-style:lower-latin;padding:0 2em;">
97
+ <li>
98
+ Select <span style="text-decoration: underline">Layout C</span>
99
+ </li>
100
+ </li>
101
+ </ul>
102
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
  </div>
 
 
 
 
 
 
 
 
 
 
app/design/adminhtml/default/default/template/widget/instance/js.phtml CHANGED
@@ -32,7 +32,7 @@ function setSettings(urlTemplate, typeElement, packageThemeElement) {
32
  typeElement = $F(typeElement).replace(/\//g, "-");
33
  packageThemeElement = $F(packageThemeElement).split(/\//g);
34
  if(typeof packageThemeElement[0] == 'undefined' || typeof packageThemeElement[1] == 'undefined') {
35
- alert('<?php echo Mage::helper('widget')->__('Undefined Design Package or Theme.'); ?>');
36
  return false;
37
  }
38
  setLocation(template.evaluate({
32
  typeElement = $F(typeElement).replace(/\//g, "-");
33
  packageThemeElement = $F(packageThemeElement).split(/\//g);
34
  if(typeof packageThemeElement[0] == 'undefined' || typeof packageThemeElement[1] == 'undefined') {
35
+ alert('<?php echo Mage::helper('core')->jsQuoteEscape(Mage::helper('widget')->__('Undefined Design Package or Theme.')); ?>');
36
  return false;
37
  }
38
  setLocation(template.evaluate({
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Interface_Adminhtml_Default</name>
4
- <version>1.6.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Default interface for Adminhtml</summary>
10
  <description>Default interface for Adminhtml</description>
11
- <notes>1.6.1.0</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
- <date>2011-10-19</date>
14
- <time>12:11:18</time>
15
- <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="admin.xml" hash="44393050c34e9ad8b7bab1d66413e351"/><file name="adminnotification.xml" hash="ee78ff1d19d55877cb7b9827a6940a46"/><file name="authorizenet.xml" hash="3f360f98d8bff41b2fd2719dd8579d8f"/><file name="bundle.xml" hash="4b83ffa2299d7f9dd89420dddd5df6a1"/><file name="catalog.xml" hash="b39f26951cc765bd7abade64a72a0467"/><file name="cms.xml" hash="f2f334ac4f3534dd9132ba4e3545b217"/><file name="connect.xml" hash="1ea87ced1e80b37181a7217bb4bd2632"/><file name="customer.xml" hash="0a2c6be8b9e27cdd23970e2611fff010"/><file name="dataflow.xml" hash="bd8d1b9a588c9b1aaf69a55a51d030b4"/><file name="downloadable.xml" hash="b0a9d21104a142872af1979b3ad7cf8b"/><file name="giftmessage.xml" hash="cf2625b578167fc919890ed4ebc316b7"/><file name="importexport.xml" hash="90833e5f738675aec4d5e3912a243339"/><file name="index.xml" hash="3a1f79fcaf43a6cd38b48aac01b41cf5"/><file name="main.xml" hash="bc0e48d6bec35636aa5e54f75ef1e26c"/><file name="newsletter.xml" hash="eba82cbbbaf36f8139c27860701cba94"/><file name="pagecache.xml" hash="c825482e400ead41e31257577d83c82e"/><file name="promo.xml" hash="bdcc5ac857431f908c724a518b7f25da"/><file name="report.xml" hash="7ef988341935bb9bce80578c9605f1be"/><file name="rss.xml" hash="982700100011a75c27ffaac4449d989f"/><file name="sales.xml" hash="a2260719ac76011afe558fbcab40d363"/><file name="search.xml" hash="c11b6a1be8c756400dd827853dee6b4a"/><file name="tag.xml" hash="f51fd19ec6760da7ed3a924ecccbd930"/><file name="widget.xml" hash="41300e83b45056200ee2f189e4fd950a"/></dir><dir name="locale"><dir name="en_US"><file name="translate.csv" hash="735c9ec66d1309f1206294f075fdcdd1"/></dir></dir><dir name="template"><file name="access_denied.phtml" hash="f84932f9bcce08b48e23645c94020dc3"/><dir name="api"><file name="role_users_grid_js.phtml" hash="cf382e08080d38d04aa08a9dfa64b9ec"/><file name="roleinfo.phtml" hash="5cf4655eb686597cafcc57e4212bb7de"/><file name="roles.phtml" hash="580eae36eaee465ddaf20507ec87b16a"/><file name="rolesedit.phtml" hash="40192e90633e603806c444b58e82e473"/><file name="rolesusers.phtml" hash="9925e7839ad4754386e4a19a4eec48c9"/><file name="user_roles_grid_js.phtml" hash="57460585baf5a5b970649a63ccf1d182"/><file name="userinfo.phtml" hash="a9447181e813957d426aa1d8d491c8dc"/><file name="usernroles.phtml" hash="d5921bb6c4343fd29051442a0a69498f"/><file name="userroles.phtml" hash="cfe422707baf29ac225b07abb8a21bff"/><file name="users.phtml" hash="ea0b5773de76fe56a95cc3b82d9a149e"/></dir><dir name="authorizenet"><dir name="directpost"><file name="iframe.phtml" hash="1dfd172ad73fdf12032250f51055564c"/><file name="info.phtml" hash="2b61893031ee2e6426d42b2bde670da2"/></dir></dir><dir name="backup"><file name="left.phtml" hash="5b25b522887932a4496024ac812facbd"/><file name="list.phtml" hash="d9d73c79d0cb549fe258d0a1652f25d4"/></dir><dir name="bundle"><dir name="product"><dir name="composite"><dir name="fieldset"><dir name="options"><file name="bundle.phtml" hash="8c69e874129e66ed12abab5034aeaf5b"/><dir name="type"><file name="checkbox.phtml" hash="a12d5663a4e60ae2f63680f4ef78cd84"/><file name="multi.phtml" hash="47536a6aed3592a7ec5db3df6f5e6ace"/><file name="radio.phtml" hash="1257a59768c889b9703295d589593aab"/><file name="select.phtml" hash="5ed9bcb52ded0af26c54a4826cec3a85"/></dir></dir></dir></dir><dir name="edit"><dir name="bundle"><dir name="option"><file name="search.phtml" hash="f8a1fd551f266c5bd957b725dc3ef149"/><file name="selection.phtml" hash="8db64c00fc6f5db0b63925e998ae27ef"/></dir><file name="option.phtml" hash="5b6ca684099d527dc6c58153a53204f6"/></dir><file name="bundle.phtml" hash="15336f42e4df8ddd79cfabd4e29f86b0"/></dir></dir><dir name="sales"><dir name="creditmemo"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="e461cf4d769e011eb6a2dec1677dbfa0"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="590226d1735b63456b4869f58b3398f4"/></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="e0405df7154938f82d75e4ece3c13830"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="80b07e7f29790392a2a2987277ee8f16"/></dir></dir></dir><dir name="order"><dir name="view"><dir name="items"><file name="renderer.phtml" hash="5cdbedb6d1b470c549d368a4555c93d3"/></dir></dir></dir><dir name="shipment"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="18fab3c476214db2fa33a30dcca8e637"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="38443b4198b88bbe91fffdf3d844be96"/></dir></dir></dir></dir></dir><dir name="catalog"><dir name="category"><dir name="checkboxes"><file name="tree.phtml" hash="ccc073f9a9149cfb07054ea25de06c8c"/></dir><dir name="edit"><file name="form.phtml" hash="c528a23f7b4f8ebdda288d58d73356bc"/></dir><file name="edit.phtml" hash="614c2a987ec237808659f2d139adc027"/><file name="tree.phtml" hash="d13ba25ce1271e07f4b36dc32d822351"/><dir name="widget"><file name="tree.phtml" hash="229025c0e461b79c5578893c9f6fcd5d"/></dir></dir><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="68d5938477ca48241cf963aa541c6ec8"/></dir></dir></dir><dir name="product"><dir name="attribute"><file name="js.phtml" hash="18e0a360967ee4fda7ca5329e995b794"/><dir name="new"><file name="created.phtml" hash="09f1423d45cbf7e1a855f3fd3f93b638"/></dir><file name="options.phtml" hash="71e1c0ebfdcffb0aa1666c76bd33272b"/><dir name="set"><dir name="main"><dir name="tree"><file name="attribute.phtml" hash="dd6f95e01ec7553ad5febba612efc022"/><file name="group.phtml" hash="4a2e8c13117ca01c8bc10596640d3c2d"/></dir></dir><file name="main.phtml" hash="f35d19b3649d20baab592c3963becab8"/><dir name="toolbar"><file name="add.phtml" hash="a3426c834d542d10c0c12d6090d44984"/><file name="main.phtml" hash="de3713573b3c7b11ff30f28ea24a2368"/></dir></dir></dir><dir name="composite"><file name="configure.phtml" hash="4394c381d307acaef6239a2d9c4e9ebb"/><dir name="fieldset"><file name="configurable.phtml" hash="96712aaaf15ef0ad6d9b16df19a9d15c"/><file name="grouped.phtml" hash="6a4ac7e1391ac4b28c8c34001adaba50"/><dir name="options"><file name="js.phtml" hash="93e79dbaac822fc1ba208eb8fa708960"/><dir name="type"><file name="date.phtml" hash="ecae03bcd15f9341d13d104af29764b2"/><file name="default.phtml" hash="6ffdd3c543eff82fbaea3db2bdd7ac6e"/><file name="file.phtml" hash="bc7e78b6173a72270c7fd50d35dfb460"/><file name="select.phtml" hash="1d0ef51d63fd1c4071a30e6acc2359be"/><file name="text.phtml" hash="13b59a632f5402737c7384e12cc76b46"/></dir></dir><file name="options.phtml" hash="f5508099fea6784c4cda5bd9da282e9c"/><file name="qty.phtml" hash="c7c70cef1129a65a2b6bb55a758ee9c7"/></dir></dir><file name="created.phtml" hash="ad89b4ffa73fba7a6f2e0a67ec229f39"/><dir name="edit"><dir name="action"><file name="attribute.phtml" hash="d0cc2c4244b47943896e6b0fc768f5bb"/><file name="inventory.phtml" hash="66d0f79fc8d237ddc8d8ea3736cdcac9"/><file name="websites.phtml" hash="612c182600ab5ea537a426df5610fbd6"/></dir><file name="categories.phtml" hash="c522d7fb65dcbebe6e1125e3dc98ac94"/><dir name="options"><file name="option.phtml" hash="c2f07629795a5b624f468b255096ba6a"/><dir name="type"><file name="date.phtml" hash="6a549f3e609dc7ec785d10349e29ef6f"/><file name="file.phtml" hash="4ccd3ccec30eb3bfcf4c239d5474400e"/><file name="select.phtml" hash="7165f7c31682f78a779601de61570581"/><file name="text.phtml" hash="b5a9d3ca97bd25f3f1890f9495c94982"/></dir></dir><file name="options.phtml" hash="b39f61d9175a281c20eac188d8970e0f"/><dir name="price"><file name="tier.phtml" hash="f5c5e154144a77696a7db3e8f610a9bb"/></dir><file name="serializer.phtml" hash="1e58dedca6c141ff82d81c7fe792a472"/><dir name="super"><file name="config.phtml" hash="f9ce6ea67afabfa6e659dacc66651374"/></dir><file name="websites.phtml" hash="4f23ce0bfd9cbd6459bce1d08356af2a"/></dir><file name="edit.phtml" hash="1395d86c1a329ec9ca8e3391e89c3cb3"/><dir name="helper"><file name="gallery.phtml" hash="fcde1ebdb88ac4cee5ebc94ffafcb93b"/></dir><file name="js.phtml" hash="d79c35e82eb3b6c92a3206ef10e2819e"/><file name="price.phtml" hash="b9ad2733f9b9e9f1f366992568900f07"/><dir name="tab"><file name="alert.phtml" hash="1b52a7bfc26f7d93eaaf806322fe1b4a"/><file name="inventory.phtml" hash="9072a245f3ad6ca722bf34cceb8b1a8e"/></dir><dir name="widget"><dir name="chooser"><file name="container.phtml" hash="30b62d06274380a56f1bed0f52d3d764"/></dir></dir></dir><file name="product.phtml" hash="db8d042acd4e41c3b446bd69c688ca83"/><dir name="wysiwyg"><file name="js.phtml" hash="69596b033cb3f906d95923c223b8e6a3"/></dir></dir><dir name="cms"><dir name="browser"><dir name="content"><file name="files.phtml" hash="7167f0c75a3b64e9bcd572cc2ff5e7fe"/><file name="newfolder.phtml" hash="bfa6760e1cbb38cf7b9a74ab0ec76bff"/><file name="uploader.phtml" hash="1b50850b7444c11a8e6bd45cb87086f0"/></dir><file name="content.phtml" hash="1ca3b215da8c5512eb24599e375c495e"/><file name="js.phtml" hash="5d42cc3ec6ec34f4df663fc1144b19e1"/><file name="tree.phtml" hash="72a155f7c7732b98c92f51bedb046e56"/></dir><dir name="page"><dir name="edit"><dir name="form"><dir name="renderer"><file name="content.phtml" hash="f3a203b47deb0b7cccf02df89c8f8b19"/></dir></dir></dir></dir></dir><file name="coming.phtml" hash="a41515d8b09f96b82e577debf474e60a"/><dir name="connect"><dir name="extension"><dir name="custom"><file name="authors.phtml" hash="60a5c4e2148cd5461e18991b8a95ab98"/><file name="contents.phtml" hash="8e0540bff057d88332b7de58a5004430"/><file name="depends.phtml" hash="601f3d216b38c05cc352f52c6b81d547"/><file name="load.phtml" hash="188bdfd12f26419fe368ede482668893"/><file name="package.phtml" hash="94ef94a28022c213188bd55515096267"/><file name="release.phtml" hash="ef73019c61a8e1ddb930076eca7e9b4c"/></dir></dir></dir><dir name="customer"><dir name="edit"><file name="js.phtml" hash="73a8a53f50c8662b300db5565b44f9c5"/><dir name="tab"><dir name="view"><dir name="grid"><file name="item.phtml" hash="e24c76add63b62955aba14f3f42dfe1a"/></dir></dir></dir></dir><file name="online.phtml" hash="517c2e94caea59bc20c0affd884619a9"/><dir name="tab"><file name="addresses.phtml" hash="931d32553257d5b506b80d685e22ca97"/><file name="cart.phtml" hash="5756c0fe898b6d7e57bf1f4061b84ce7"/><file name="newsletter.phtml" hash="880441c95ff77dc6250d3f95dec782c4"/><dir name="view"><file name="sales.phtml" hash="de13c5e5e66f04967225f41566fef998"/></dir><file name="view.phtml" hash="4e2f72e8543dfca1b4bb08105e587428"/><file name="wishlist.phtml" hash="3ac024173b61b132c0d0be29b1efbe1f"/></dir></dir><dir name="dashboard"><dir name="graph"><file name="disabled.phtml" hash="cf079ab445ff89ddf8982e7d26457a62"/></dir><file name="graph.phtml" hash="a3165c01f9fde6d88493f74f38bbdd66"/><file name="grid.phtml" hash="fe2825827a2e56c5d98cc46c5e090723"/><file name="index.phtml" hash="500bced1a72364c4cc04aa78443bb946"/><file name="salebar.phtml" hash="09914d4e5edcafe16f7e9a4d90b73a6f"/><file name="searches.phtml" hash="6adfc69fd24cfb616e0d358bf527888c"/><dir name="store"><file name="switcher.phtml" hash="21f30f8c73eecc7e123c8c67f23c59d6"/></dir><file name="totalbar.phtml" hash="f7503e85a5f9b2a04fc4ed38bb84d170"/></dir><dir name="directory"><dir name="js"><file name="optional_zip_countries.phtml" hash="633ce587f8f0fffa821a7a0067edf158"/></dir></dir><dir name="downloadable"><dir name="product"><dir name="composite"><dir name="fieldset"><file name="downloadable.phtml" hash="0a84aa199dffe73013e420d732e577e9"/></dir></dir><dir name="edit"><dir name="downloadable"><file name="links.phtml" hash="4d0677b71d77f2b17d1d45d145103dc1"/><file name="samples.phtml" hash="03f428c80efd340d498a69af72677411"/></dir><file name="downloadable.phtml" hash="cde63330ead68468a2b3d42ae76e0d22"/></dir></dir><dir name="sales"><dir name="items"><dir name="column"><dir name="downloadable"><dir name="creditmemo"><file name="name.phtml" hash="323d7774d16ce00b13aa9f55ba907a7a"/></dir><dir name="invoice"><file name="name.phtml" hash="7b3788c59862eda4cda241fb15e1dad0"/></dir><file name="name.phtml" hash="a72cdf111f03a4454d15aa778fcb877b"/></dir></dir></dir><dir name="order"><dir name="creditmemo"><dir name="create"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="b58f6b394a0489c8979f7f32eb48304b"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="8938d4e8eee68316fed6b2b2cc519386"/></dir></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="59387875677a254f27078e6bceb0995a"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="cc1ad4b9f1f7a85f55fbf51a7a636d61"/></dir></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="eb8f0b158378b1d45be03342dd813fe8"/></dir></dir></dir></dir></dir></dir><dir name="eav"><dir name="attribute"><dir name="edit"><file name="js.phtml" hash="dd6f95e01ec7553ad5febba612efc022"/></dir></dir></dir><dir name="email"><dir name="order"><file name="items.phtml" hash="6f09628ad32a466051c21ddea8fcf92c"/></dir></dir><file name="example.phtml" hash="e352d84f75b869d60a8ac82f558a0f22"/><file name="forgotpassword.phtml" hash="6f0f2a587535e15c03472c0a0930a209"/><file name="formkey.phtml" hash="c3d0c73aff5dfa4742fba106e4c6143d"/><dir name="giftmessage"><file name="form.phtml" hash="9840908a5c826c7f0ef3e2f9806da221"/><file name="giftoptionsform.phtml" hash="a4c28c7894f99dec6d74124b800edb8c"/><file name="helper.phtml" hash="848bddf30c028b6fd3587bac2046eeec"/><file name="popup.phtml" hash="14049f6774c82c8443b72785998e896e"/><dir name="sales"><dir name="order"><dir name="create"><file name="giftoptions.phtml" hash="5507d829289c78d15e628f63489f7cd2"/><file name="items.phtml" hash="9429f73df55e733006ae5fffceb4d830"/></dir><dir name="view"><file name="giftoptions.phtml" hash="792cfe8d0a0f41f8e5ccc08c84e0981d"/><file name="items.phtml" hash="b65c37606ea1ee2f09c37c94afc85588"/></dir></dir></dir></dir><dir name="googlebase"><file name="captcha.phtml" hash="915d302e134056fd9ec3d814eba37d18"/><file name="items.phtml" hash="39f55e6bf90ee32f6fd9c33f9d217ca5"/><dir name="types"><dir name="edit"><file name="attributes.phtml" hash="099470741568583322fb75d22c40125a"/></dir></dir></dir><dir name="importexport"><file name="busy.phtml" hash="b7484dec96196a0a3e4140ae28356e02"/><dir name="export"><dir name="form"><file name="after.phtml" hash="7961e751003a41d00e6d35f5aecb5868"/><file name="before.phtml" hash="4bf822cc399d681c6c33cb88ede2fd7e"/></dir></dir><dir name="import"><dir name="form"><file name="after.phtml" hash="5acfcc3dacec743e0ef258cc6afad81b"/><file name="before.phtml" hash="8eac7c5e1637149bcbf6f5f6e1c4665b"/></dir><dir name="frame"><file name="result.phtml" hash="fe68a86c1d687c7f25ac4df3df401019"/></dir></dir></dir><dir name="index"><file name="notifications.phtml" hash="bbdc237e21b2eaa9f2e7e7cfffb35f0c"/></dir><file name="login.phtml" hash="c66c2670e610257a977ff8bf79b4c8c9"/><dir name="media"><file name="editor.phtml" hash="0a57ad5a1973e45c97116a21e2afde94"/><file name="uploader.phtml" hash="c32021c8dfc3270235c41eec2774a708"/></dir><dir name="newsletter"><dir name="preview"><file name="iframeswitcher.phtml" hash="bc3dc2d4001138352ed57c10406dd92a"/><file name="store.phtml" hash="cd801f685a24762281e58a41ab1fff46"/></dir><dir name="problem"><file name="list.phtml" hash="f191174e8f0ea2560ef37fc4c69a9e29"/></dir><dir name="queue"><file name="edit.phtml" hash="e027bb47e0e220ea97a1dfef511ee5fd"/><file name="list.phtml" hash="ba66ac141e1da5e7fdb1b001006efa00"/><file name="preview.phtml" hash="557bbe93210ba8bb719451c4837d2056"/></dir><dir name="subscriber"><file name="list.phtml" hash="b3709d8bd2c12bc930130d9595db2e97"/></dir><dir name="template"><file name="edit.phtml" hash="bec3577868ed1a38df728e8bcb7fe508"/><file name="list.phtml" hash="f5cd0619e8b49750d211aad103294689"/><file name="preview.phtml" hash="557bbe93210ba8bb719451c4837d2056"/></dir></dir><dir name="notification"><file name="baseurl.phtml" hash="75f09d6cb54819bd97c9aae2a89f0c9d"/><file name="security.phtml" hash="a3cc231af1f93330dfd02814bfab28f2"/><file name="survey.phtml" hash="490ace639149bca0079c34ec02aa5f5c"/><file name="toolbar.phtml" hash="f0b508fa13d96821db7ffa2d76ec80ac"/><file name="window.phtml" hash="6d88ca09b808c5530f79c9aedecdf3b3"/></dir><file name="overlay_popup.phtml" hash="da123b3e45e7dfd1605af0352765bea6"/><dir name="page"><file name="footer.phtml" hash="57b002b1a1010040bf7d8a94a749233f"/><file name="head.phtml" hash="80a75aab52155524d31826628cec8a35"/><file name="header.phtml" hash="9bfad0b661eb4c80eb28357660784186"/><dir name="js"><file name="calendar.phtml" hash="66e15fb9e75422cb743cce74fb392495"/><file name="translate.phtml" hash="dc48119d8ced01e90fdc649336550cbc"/></dir><file name="menu.phtml" hash="900256aa15f520f228bec9073e0fc7f9"/><file name="notices.phtml" hash="377f6e42d5aaa1e9fb8c6124150b1830"/></dir><file name="page.phtml" hash="acfc88fa5f2264f931c1c7c1c1ec636f"/><dir name="pagecache"><dir name="cache"><file name="additional.phtml" hash="df4094ea01318c03d897af6b8c0059f9"/></dir></dir><dir name="paygate"><dir name="form"><file name="cc.phtml" hash="a783b5df33c0c49f8d01eac496cf8112"/></dir><dir name="info"><file name="cc.phtml" hash="be479943265a31a40f3d6377511eb435"/><file name="pdf.phtml" hash="aa92b1a889a8964b4827a503faf34efb"/></dir></dir><dir name="payment"><dir name="form"><file name="cc.phtml" hash="12a9d00aa65027d2530a40dbf1dc4baa"/><file name="ccsave.phtml" hash="1880bddf0e991f0b6809036c71a21f0b"/><file name="checkmo.phtml" hash="b7519fe8c802d6c4da06f0edaf1085c1"/><file name="purchaseorder.phtml" hash="969c68d73446c9a9ed40f5059b688745"/></dir><dir name="info"><file name="checkmo.phtml" hash="89ff5f164123bad98d94beafd8138532"/><file name="default.phtml" hash="b1fbe9b758bb7221e78a587bf25d1588"/><dir name="pdf"><file name="checkmo.phtml" hash="b5e47713e2f818bd15ef36164b7aad19"/><file name="default.phtml" hash="95af5e8df75c80badf71de8b7cf7f72b"/><file name="purchaseorder.phtml" hash="648f08268d7cbdaa1ce63b2b1a343a7b"/></dir><file name="purchaseorder.phtml" hash="09206729a163ceb6c6b3502d455807ab"/></dir></dir><dir name="paypal"><dir name="system"><dir name="config"><file name="api_wizard.phtml" hash="1e42a8334a5f0209e1547774af2d7198"/><dir name="fieldset"><file name="global.phtml" hash="e2c07237bed06391c488717c0d4a70c7"/><file name="hint.phtml" hash="cebd5368e01c6f1c51b5a4de70e01d5e"/><file name="store.phtml" hash="6cdd38ecbfd46cde48e1c8fd1617062f"/></dir><dir name="payflowlink"><file name="info.phtml" hash="8dbc438da573c9d4e16e587d5b96282b"/></dir></dir></dir></dir><dir name="permissions"><file name="role_users_grid_js.phtml" hash="c8a117889d579429aee7252a4e742fef"/><file name="roleinfo.phtml" hash="adcd9a8543f1dff4ccdd4aad32305e31"/><file name="roles.phtml" hash="580eae36eaee465ddaf20507ec87b16a"/><file name="rolesedit.phtml" hash="baecc14884deda5180273c45d6b538c8"/><file name="rolesusers.phtml" hash="9925e7839ad4754386e4a19a4eec48c9"/><file name="user_roles_grid_js.phtml" hash="9267240bc35a6f42f6ade61b5575b137"/><file name="userinfo.phtml" hash="a9447181e813957d426aa1d8d491c8dc"/><file name="usernroles.phtml" hash="d5921bb6c4343fd29051442a0a69498f"/><file name="userroles.phtml" hash="cfe422707baf29ac225b07abb8a21bff"/><file name="users.phtml" hash="ea0b5773de76fe56a95cc3b82d9a149e"/></dir><dir name="poll"><dir name="answers"><file name="list.phtml" hash="75535156fd23082928697654993a8be2"/></dir></dir><file name="popup.phtml" hash="2036a235e6a42c9417721c42229bfd08"/><dir name="promo"><file name="fieldset.phtml" hash="fceba8c0b055d0ec3b120fbf16e3e7cc"/><file name="form.phtml" hash="48f289001b8f4665ac9fe12603945bb4"/><file name="js.phtml" hash="bd6c8035e94d86ef4b59bc97566f392c"/></dir><dir name="rating"><file name="detailed.phtml" hash="53fc83c79e68843d1b2c232f577ccc7e"/><file name="options.phtml" hash="bc5892eaa95463d7e0af17c833ce7064"/><dir name="stars"><file name="detailed.phtml" hash="cf301e0430532c5936d18a97dbba862e"/><file name="summary.phtml" hash="6b6249a2bc31a6c26b8330f2c12763bb"/></dir></dir><dir name="report"><dir name="grid"><file name="container.phtml" hash="8b4c4e009372d9a4eca2cab949d3689c"/></dir><file name="grid.phtml" hash="3cccf95def1a3fc611bdf2456269770a"/><dir name="refresh"><file name="statistics.phtml" hash="18c7db8c25ae3e0ebcdb48384b2069f1"/></dir><dir name="store"><dir name="switcher"><file name="enhanced.phtml" hash="6d4d53bad242f1e4731a4deef2dea957"/></dir><file name="switcher.phtml" hash="3fb9f5f70ebfefb12b8374b093765e01"/></dir><file name="wishlist.phtml" hash="9bda71b6a4f1fc05ecefd573c77979f2"/></dir><file name="resetforgottenpassword.phtml" hash="dc3b694d6c35906910359817eef22a97"/><dir name="review"><file name="add.phtml" hash="61e1e939f95ba629c6e0a595760438f7"/></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="form.phtml" hash="2f1980b952370e2faf7509acf00f520e"/><dir name="view"><file name="form.phtml" hash="694f082cb8ee5c6c3c6367ccdea60b25"/><dir name="tab"><file name="info.phtml" hash="1b31e1951b7840964a2ff7f62e2602ff"/></dir></dir></dir></dir><dir name="items"><dir name="column"><file name="name.phtml" hash="733538b760f1414105659e7842dc8a87"/><file name="qty.phtml" hash="e7bc271b11e82ab67cb1b245f71ec126"/></dir><dir name="renderer"><file name="default.phtml" hash="4822aee818adafcffe576f33c0dfe5cb"/></dir></dir><dir name="order"><dir name="address"><file name="form.phtml" hash="01d1352cb65c26d5d103eb07ebd2e770"/></dir><dir name="comments"><file name="view.phtml" hash="01330ec7b1a1335794885543ed0985d4"/></dir><dir name="create"><file name="abstract.phtml" hash="74707ef1b04e403dba9609912ae6c714"/><dir name="billing"><dir name="method"><file name="form.phtml" hash="e4b9fc0c00bb3fe94cff292f42c61ae2"/></dir></dir><file name="comment.phtml" hash="44ee507232b26df7784edda1831dcdf1"/><dir name="coupons"><file name="form.phtml" hash="71cde519542ffbe800f2e66236539f5d"/></dir><file name="data.phtml" hash="0e92c3744fac3335fb112dd2cd4c8d0e"/><dir name="form"><file name="account.phtml" hash="d85c18d7a895b9810f60e611e6ee0c17"/><file name="address.phtml" hash="76ddccb168f16579133532f55db3a331"/></dir><file name="form.phtml" hash="27eb920acc041db7f53e3143ed9983dd"/><file name="giftmessage.phtml" hash="0dafb24c19bb44ac44327d5a4f0a4a17"/><dir name="items"><file name="grid.phtml" hash="ad442e282b8a6ef07fb6f02f0a3db16f"/></dir><file name="items.phtml" hash="ac2d276a2281923eca8f29bfb65a459e"/><file name="js.phtml" hash="1b5a660ba82df692d0a1a33593d2be02"/><dir name="newsletter"><file name="form.phtml" hash="4c887a66644a9080d7449bfc9844dbb6"/></dir><dir name="shipping"><dir name="method"><file name="form.phtml" hash="312fc0557bb63773060cdbc023d57d5a"/></dir></dir><dir name="sidebar"><file name="items.phtml" hash="3734b52a54242d28004b1422abf44460"/></dir><file name="sidebar.phtml" hash="495bdf00adb0c7bcc951aed0975577cc"/><dir name="store"><file name="select.phtml" hash="c4a85e0d8cbee5211d3476f8a044fb2e"/></dir><dir name="totals"><file name="default.phtml" hash="c4bc9b5beb642020f1438e55f9448f77"/><file name="grandtotal.phtml" hash="803918087eb1156945a21c964a08575e"/><file name="shipping.phtml" hash="2f020dda0d79ca089415d2ad9475c827"/><file name="subtotal.phtml" hash="9918b4612f47e035b467ab07a631e06b"/><file name="tax.phtml" hash="b710fd9ee5847714f6f15291cb61faf5"/></dir><file name="totals.phtml" hash="a889ab04c606f3493877c8866d5f0209"/></dir><dir name="creditmemo"><dir name="create"><file name="form.phtml" hash="ef199283396f09cb778cf5cc0f1660eb"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="f97bfbca4fe3b04030e7c5dda1a5fbc4"/><file name="default.phtml" hash="004fe6084ceb9fbf049a44943294f039"/></dir></dir><file name="items.phtml" hash="7b66ec1ae61ec4a28533c2e3d0397fb9"/><dir name="totals"><file name="adjustments.phtml" hash="de1664e63a5a915be781c90c12144943"/></dir></dir><dir name="view"><file name="form.phtml" hash="c9172f2942eaffd843d49567f6584757"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="36f0891057b450981f7efa82b333968d"/><file name="default.phtml" hash="e5398bff677877b7b063dd2c61792d1b"/></dir></dir><file name="items.phtml" hash="f93aa068266a29260f56d8d7cf3c1a42"/></dir></dir><file name="giftoptions.phtml" hash="3b72be9025fe261017c0ea740a1b8ffb"/><dir name="invoice"><dir name="create"><file name="form.phtml" hash="f9db53e9cd35c6279e560254628bc9ec"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="c02ada42e8dae2923e2101ba21c045cf"/><file name="default.phtml" hash="5c2da533258494a8e8690ebee17f2708"/></dir></dir><file name="items.phtml" hash="b50001dc069530441dae95daf84d3a70"/><file name="tracking.phtml" hash="03f9edc3959eabf444d450ecc0162f47"/></dir><dir name="view"><file name="form.phtml" hash="3016a5651845b7fef4501124bc95e243"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="d3753500e683107343fd03c7ecb2038a"/><file name="default.phtml" hash="f62a0333aff983701c7ccb2c58c991c0"/></dir></dir><file name="items.phtml" hash="c0edb909b2048881a38d67d16eaad0c7"/></dir></dir><dir name="shipment"><dir name="create"><file name="form.phtml" hash="88814d4fcb8d3c01267dc10b7a6822ae"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="5cc001fdd9e2333115262323bfd19faf"/><file name="default.phtml" hash="b460f07e7e95cd64fe066a83ae81294c"/></dir></dir><file name="items.phtml" hash="fcbeb963f11d1534476ae165bbe41932"/><file name="tracking.phtml" hash="ff74c443c34d94aba7dcddcdb18cc46a"/></dir><dir name="packaging"><file name="grid.phtml" hash="370a10720b3ea132da19d71e4e2cd52c"/><file name="packed.phtml" hash="21664e9e9a4ef1fd0a6c94a3d689acd5"/><file name="popup.phtml" hash="f2827a4d2fa6e7c7db2434917a4cc260"/></dir><dir name="tracking"><file name="info.phtml" hash="1c532815b072488770a065822fda9422"/></dir><dir name="view"><file name="form.phtml" hash="5bd5dfe1a14d70543a1aac13c505b01a"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="0520b5738355658514187bf43f568d3f"/><file name="default.phtml" hash="e1105eb7f20c8ea04254c15b1b57538f"/></dir></dir><file name="items.phtml" hash="ccebcdf69b20c1bb312a752a8038b3fb"/><file name="tracking.phtml" hash="c522b6fdc72a558158802863c35dbb96"/></dir></dir><file name="totalbar.phtml" hash="a80bdf73fd4273f8ac0d51a27a22d143"/><dir name="totals"><file name="discount.phtml" hash="3b93a2f49448c0a541d3efc1f2e8617c"/><file name="due.phtml" hash="ca7bee40adf98113c433833922b6d6dd"/><file name="footer.phtml" hash="e1d0718b4351a0d20dfa5a6af4b1337b"/><file name="grand.phtml" hash="2b2c3d60f90758432b0f984aae035ea6"/><file name="item.phtml" hash="8923cbad49ccb0f5287be33f4d4eb16d"/><file name="main.phtml" hash="f688b8237218e5c35fb39d1a2d6f37f2"/><file name="paid.phtml" hash="5507d2a64a759f84ca399b92fad73af9"/><file name="refunded.phtml" hash="749beb69cd46b3d88dd1edcd6b40110c"/><file name="shipping.phtml" hash="0b049234e306c81d728bfc2edacf07ef"/><file name="subtotal.phtml" hash="3c3342d4032a7d32d295bc3cedb67d5a"/><file name="tax.phtml" hash="b5e5fb73262388965089b49e4b5e7475"/></dir><file name="totals.phtml" hash="b0f86f616208b11e1389dc7412832f54"/><dir name="view"><file name="form.phtml" hash="9323755bf939cfcc3edc322cec320438"/><file name="giftmessage.phtml" hash="0ca845c02eaa723b58de23c7b986b9f4"/><file name="history.phtml" hash="b5779e5d287d66b5bc5285986f96322d"/><file name="info.phtml" hash="101b84a3c5ac6a18bfa9b52f2cc5cfc6"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="cc3fedd0489a3f9d8b4c8a6e1b97f29e"/></dir></dir><file name="items.phtml" hash="d23adc55978d43fee672a146a4f956e6"/><dir name="tab"><file name="history.phtml" hash="c9f102bb42c95cc784795d0d9308d48a"/><file name="info.phtml" hash="c1f200a46d5b167a7717ed8f5416697a"/></dir><file name="tracking.phtml" hash="a034b329bf7a3c5a0db7967ce4bbc269"/></dir></dir><dir name="payment"><dir name="form"><dir name="billing"><file name="agreement.phtml" hash="127bcdf02155babd9eb75adf6817352e"/></dir></dir></dir><dir name="recurring"><dir name="profile"><dir name="view"><file name="info.phtml" hash="b83c4929f04f7b25e875073a6ade87e1"/></dir><file name="view.phtml" hash="5c8f883a1ac899b3962aff63dfaa88f2"/></dir></dir><dir name="transactions"><file name="detail.phtml" hash="790b50ef6cbbbc6e29d5bf2b55850157"/></dir></dir><dir name="store"><dir name="switcher"><file name="enhanced.phtml" hash="f934dc4dfb9df4935a24f143eb5065c3"/></dir><file name="switcher.phtml" hash="b870ae25d38ae4b3cc428ce1dcea81d2"/></dir><dir name="system"><file name="autocomplete.phtml" hash="074a430a0aac1f8d2ed27c57d18dca7c"/><dir name="cache"><file name="additional.phtml" hash="abac4992f67918d7e4112220304532c1"/><file name="edit.phtml" hash="b1902027b98e2ca7d00b87202c0e5e6e"/><file name="notifications.phtml" hash="3d9c258a8cb3d73d3938e0ae5de1cfe8"/></dir><dir name="config"><file name="edit.phtml" hash="298d533828a5a6996a90d1ec555e823c"/><dir name="form"><dir name="field"><file name="array.phtml" hash="ad33fd6fb01911b3b3306cebb99e1758"/></dir></dir><file name="js.phtml" hash="892e889d02d8bbd385ced6f3a6321553"/><file name="switcher.phtml" hash="f4455351e2027efc714e850bbe8cb210"/><dir name="system"><dir name="storage"><dir name="media"><file name="synchronize.phtml" hash="14ee555d5ad14db2a31905c182c86c7d"/></dir></dir></dir><file name="tabs.phtml" hash="a60b8c27198ece6fd2491b084a978619"/></dir><dir name="convert"><dir name="profile"><file name="process.phtml" hash="de67a80eba033323f002355b8174637b"/><file name="run.phtml" hash="8314278f7c72dd49f72bd1d23260f360"/><file name="upload.phtml" hash="0376f43508fe8248beade715e50b6380"/><file name="wizard.phtml" hash="c8447a56d913375a63ddf1a3bde909e9"/></dir></dir><dir name="currency"><dir name="rate"><file name="matrix.phtml" hash="2707ef5c5d1dd79d2814fc5bd92fbd82"/><file name="services.phtml" hash="6f2f854cf737e35dd30b21c40968f8d0"/></dir><file name="rates.phtml" hash="81ecafc08e627f0c697607051ae34f5a"/></dir><dir name="design"><file name="edit.phtml" hash="fce43082d75f3611b6b796e5e2f270a1"/><file name="index.phtml" hash="5579c7c493463079ebc115254cde5fc2"/></dir><dir name="email"><dir name="template"><file name="edit.phtml" hash="4f060631cb4bf6a393a0cdade3e59d32"/><file name="list.phtml" hash="4f9f9c8365cf23238a292bceb194a25d"/><file name="preview.phtml" hash="f20da9dd0e956cd534977ede18a0fe69"/></dir></dir><file name="info.phtml" hash="532bb2fd1c83545f5af94a893d553b48"/><dir name="shipping"><file name="applicable_country.phtml" hash="38c5275d777e14f84c2e0416f9c4d0e9"/><file name="ups.phtml" hash="84f542956ef59320a219e246b2fa4a08"/></dir><dir name="variable"><file name="js.phtml" hash="93a5de4aa2fb05d736273529b365919a"/></dir></dir><dir name="tag"><dir name="edit"><file name="container.phtml" hash="8a09e4ce6e4842bcec10e9eefbac24f8"/></dir><file name="index.phtml" hash="7624f30b01d1a331454092b1600890fb"/></dir><dir name="tax"><dir name="class"><dir name="page"><file name="edit.phtml" hash="09e65ebdacf278b9c39285a2cd9076d3"/></dir></dir><file name="importExport.phtml" hash="5bf476f1cb68d902f621f139fd0c18b3"/><dir name="rate"><file name="form.phtml" hash="c6eff4952efe8a9603797e7f368ab878"/><file name="title.phtml" hash="25b502570a78bb25c991656fe76a2752"/></dir><dir name="toolbar"><dir name="class"><file name="add.phtml" hash="8a5be799844e6ef01b1af94545c8cd53"/><file name="save.phtml" hash="9c7161620c66a932271fd6e3151b07b1"/></dir><dir name="rate"><file name="add.phtml" hash="7258d676f14fb0c6d430df627c88f399"/><file name="save.phtml" hash="f8ba6310d2ce384c2868f131a8f43285"/></dir><dir name="rule"><file name="add.phtml" hash="a5bf61b01ade5cacf1466e4ef2679029"/><file name="save.phtml" hash="c5fe290d3fa5910821250132dc48bd84"/></dir></dir></dir><dir name="urlrewrite"><file name="categories.phtml" hash="b517f33e9b00ee5bccd200c6842be86b"/><file name="edit.phtml" hash="b519cac483f85eed45143cd29ca97e1a"/><file name="selector.phtml" hash="6f139ebeafe43b031227a3328531811a"/></dir><dir name="weee"><dir name="renderer"><file name="tax.phtml" hash="83e8b753e1c756b6a4ef56edecc7b685"/></dir></dir><dir name="widget"><file name="accordion.phtml" hash="45cdaa43e24d1fb233f76ea697b25b1c"/><file name="breadcrumbs.phtml" hash="fc8beefb7eafb272540b94166ffc977a"/><dir name="form"><file name="container.phtml" hash="07482905548a8539c1c60e91e232e768"/><dir name="element"><file name="gallery.phtml" hash="a7d5ca3f97901a9ffd3fb969fe17c632"/></dir><file name="element.phtml" hash="efc0df6e3370d5d03562b8ab8d5394a1"/><dir name="renderer"><file name="element.phtml" hash="7bc6babc40e34bb4e180b2adea49083a"/><dir name="fieldset"><file name="element.phtml" hash="019127c717f067f5b877b787369ff410"/></dir><file name="fieldset.phtml" hash="9cec6163bf026ebd5fad165657de5bc2"/></dir></dir><file name="form.phtml" hash="332c8b6bd71628c067f1df8ac4e2596b"/><dir name="grid"><file name="container.phtml" hash="3eac12f7df27bdfeb2115467e8c03120"/><file name="massaction.phtml" hash="c1c2350057d49aa434939c79c3565567"/><file name="serializer.phtml" hash="2e63911f9b542509221285d85443e8ba"/></dir><file name="grid.phtml" hash="a390964f00c3d44f1178434586ac3e43"/><dir name="instance"><dir name="edit"><file name="layout.phtml" hash="185830ba937f88791c4d2724bdd516cc"/></dir><file name="js.phtml" hash="11e43c688281387986c27ae5117b9c76"/></dir><file name="tabs.phtml" hash="b462b8bade904f5dac2d6b86b35322d4"/><file name="tabshoriz.phtml" hash="06c61f0dc4ed54c4da1d2199da38e60f"/><file name="tabsleft.phtml" hash="613cdf8c451cf82fcc482e983c2a5ac3"/><dir name="view"><file name="container.phtml" hash="5a2f0defc17efe51b429624dc29c69cf"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="below_ie7.css" hash="b2bf3a91f389f2ea7912765a814ce10f"/><file name="boxes.css" hash="487698cbac89beffa9d2556cc681f571"/><file name="custom.css" hash="30ed634c4e5d7521cf9961c880c3cba4"/><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><file name="ie7.css" hash="15db0c436a5438265a91b2c1e4ac4626"/><file name="iestyles.css" hash="ea74f1466bd9faf4a83ee212d617845b"/><dir name="images"><file name="accordion_close.gif" hash="875409122fc82f5f6705e20dd801fd3d"/><file name="accordion_close.png" hash="6213698b5f69bb2907a5c7bb94b5fe8d"/><file name="accordion_open.gif" hash="d9d50e220b0b676094c6134a9708194e"/><file name="accordion_open.png" hash="9fbc3aba23ce5e0465e4d1cf3f6a7aee"/><file name="add_btn_icon-disabled.gif" hash="c8f6a5cfb455ef121efb56a747821f82"/><file name="add_btn_icon.gif" hash="7300097305b577ee564dc49102822d16"/><file name="address_list_li.gif" hash="79b917b514e35ce0a7833a5e268fd9f7"/><file name="address_list_on_arrow.gif" hash="3a2884ddcc87ebd48883662530b9de1b"/><file name="address_list_over_arrow.gif" hash="e826883c71b1184bd4f29433e39c18ad"/><file name="address_list_over_bg.gif" hash="56291480cc89de9d817205a5f23b66dd"/><file name="ajax-loader-tr.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="ajax-loader.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/><file name="application_view_tile.gif" hash="f595a133bf466cb91be23d9686fe6281"/><file name="arrow_sort_move.gif" hash="f5ac151a2b0cb1f07d6e771b8aee0ea7"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_create_order_totals.gif" hash="ff6ab75c050b959c539cc6a6fdff2934"/><file name="bg_notifications.gif" hash="a365594725a83585d989f722b3d8c458"/><file name="bg_window_mask.png" hash="93d6efad062d24c94c105802b138b6a5"/><file name="bkg_btn-close.gif" hash="df3f2332f0bad01e031deb22b81f630c"/><file name="bkg_btn-close2.gif" hash="822457d78fb3c21dc12e9777d83eb4f1"/><file name="blank.gif" hash="5722d7bd0f1e1379d0a2005a0a9ea401"/><file name="box_bg.gif" hash="4c501bd6db9d361c18780f106a809b03"/><file name="breadcrumb_bg.gif" hash="72c4adf6c75b4640ca8f7cadffa42266"/><file name="btn_add-image_icon.gif" hash="1d42210fd29fc534d9ed6b41e811d40f"/><file name="btn_add-variable_icon.gif" hash="a2db02e318d107d5b57b444c8d80b8f8"/><file name="btn_add-widget_icon.gif" hash="b4f66ca7f6097fbafd672e0b3f076ef4"/><file name="btn_add-widget_icon2.gif" hash="467acd3a14fb8be37191f5d2ec5a5b13"/><file name="btn_back_bg.gif" hash="8be512788b8044fe31aa8d00cc16ba7b"/><file name="btn_bare_bg.gif" hash="ddbbab8c0d201c3e502d50e7d4a3d64b"/><file name="btn_bg-disabled.gif" hash="079971a9d2c385fe353d35716ec9f26b"/><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="btn_bg.png" hash="6e3b7003381f919e8f6533444afaa978"/><file name="btn_cancel_bg.gif" hash="fcb3506858fcfa8d1778b0683dc89f54"/><file name="btn_delete_bg.gif" hash="ad740d0c16f2f6603c8ef023004d6539"/><file name="btn_go.gif" hash="1bd787868713767cc205e2ee25e41f62"/><file name="btn_login.gif" hash="79fa32d49d3f4e39d3fbf8327f9229e1"/><file name="btn_on_bg.gif" hash="709cf5b0be137db1ef8427688503bf37"/><file name="btn_over_bg.gif" hash="f91641168454c03d1fa72731ec97a2b3"/><file name="btn_show-hide_icon.gif" hash="0238c509b33ba56c25df9513bb48f804"/><file name="btn_task_bg.gif" hash="5e0594bd9cbfcc1e32ffa918d7f9c812"/><file name="button-close.png" hash="04d0907b2d7fc3240693497b199f64f5"/><file name="cancel_btn_active_bg.gif" hash="91ce403d286eef2b4e0c13733875882f"/><file name="cancel_btn_bg.gif" hash="26749cf4949ac27c30f597434d3bde65"/><file name="cancel_btn_icon.gif" hash="97e0cd94ed31d6f2a1181f627e60e9a3"/><file name="cancel_btn_over_bg.gif" hash="45eb4e883b17375961672f5390387c31"/><file name="cancel_icon.gif" hash="70a23b78353f0a7b9b118a937fcb7ea9"/><file name="config_tab_dt_bg.gif" hash="a33f71077ca4078caa794cae01d9fca7"/><file name="dashboard-close.gif" hash="5ae5afd61e937fcd2d5b84641255ee4d"/><file name="db-graph-bg.gif" hash="5d76efb7c3244f5684df2566782124ea"/><file name="db-graph-bottom-bg.gif" hash="b58ced87a38a10891106329ae882aa1c"/><file name="db-graph-line-bg.gif" hash="f16bb08e040c2c0a3e23b3f35c54b79b"/><file name="db-graph-line2-bg.gif" hash="744ebfdba20d050f4d252afc216394be"/><file name="db-graph-x-bg.png" hash="d5c26510718a78d22083916d80ef7a22"/><file name="db-header-bg.png" hash="3976cb6351e167686a501a85cf3a68e9"/><file name="db-menu-bg-hov.gif" hash="34ea76a6d105d90fcb63bf105aadb8f7"/><file name="db-menu-bg-up.gif" hash="b0f754872dff5f2f0dc57ba193fdfa4c"/><file name="db-menu-bg.gif" hash="ea534c3c09bb309e566b6ae876655e13"/><file name="db-menu-sep-last.gif" hash="a01fe34854e1187e466fd58d462c4106"/><file name="db-menu-sep.gif" hash="7c5ae1cd59a189261cc3244358d5c1ad"/><file name="db-menu-start.gif" hash="aa5cac2194d937cc7fa904ccfce70ecc"/><file name="db-scroll-bg.gif" hash="06d2411e3b5f350ab21b625439d2d69d"/><file name="db-scroll-but-bot-roll.png" hash="6bc5e482f3f6d8fb1fc5014ddea43706"/><file name="db-scroll-but-bot.png" hash="25c0181e76ff8ceb3c0ec59071b8c72c"/><file name="db-scroll-but-top-roll.png" hash="b7961f2a3b5b641694a9b0b30d58e46b"/><file name="db-scroll-but-top.png" hash="de7df96e961596be9ff556924259b98b"/><file name="db-scroll-roller.png" hash="e01dde7bd096c52179acf29a425a29e5"/><file name="db-tab-bottom-left-bg.gif" hash="124388d44ac58b029377c6311a4782d5"/><file name="db-tab-bottom-mid-bg.gif" hash="9c48f33aa8907cfcb227bc779c2e1dce"/><file name="db-tab-bottom-right-bg.gif" hash="1db45e6fd8abc67d59f96a676607b412"/><file name="db-tab-footer.gif" hash="cac8928acba75bc1edd73186ced78e5c"/><file name="db-tab-header-sep.gif" hash="580312af7441b6a62f7e32081c40fb0f"/><file name="db-tab-header.gif" hash="fdf493b9477fcff7e7be98405effc33d"/><file name="db-tab-left.gif" hash="3fe3c55267dbbdd1db2ff959ccc9e0be"/><file name="db-tab-right.gif" hash="b7a32c8b03efe2fbdb63215d0446e3be"/><file name="dotted_divider_dark.gif" hash="8bf1de196d9ea048bfb25155cedd2e9e"/><file name="dotted_divider_light.gif" hash="92e562bf2070110f6b0a15e29b845445"/><file name="edit_icon.gif" hash="dbda31751c78d964c04394e9d8533187"/><file name="entry_edit_head_arrow_down.gif" hash="985c3ce4439fbf8bb2216fc7e73a3f0b"/><file name="entry_edit_head_arrow_down2.gif" hash="d68dd0fbc2819858a26ea2835c05df77"/><file name="entry_edit_head_arrow_up.gif" hash="d2b90a1823fff9f3917f19b427410144"/><file name="entry_edit_head_bg.gif" hash="1086b7196e8b33c4f46e49fecef0f35f"/><file name="error-msg.png" hash="3cd27b642416dacdc28907c89d934886"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_account.gif" hash="c910fd1ff41b940d71b0835e02fc143e"/><file name="fam_application_form_delete.png" hash="972c2d998fc19572dd64af6b5e2e898e"/><file name="fam_application_view_tile.gif" hash="f595a133bf466cb91be23d9686fe6281"/><file name="fam_asterisk_orange.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="fam_bin.gif" hash="2fb388bc9f1d32d3802db8e91dc238bc"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_bullet_disk.gif" hash="9fe82691d960c18d3d315c3f9164af4f"/><file name="fam_bullet_error.gif" hash="008802f44288b732b59cfe9fdbfecefe"/><file name="fam_bullet_success.gif" hash="465a056a3ba3d94367f51c3c0b751391"/><file name="fam_calendar.gif" hash="0614207ce4e3e0a9bd631b39e7692e3c"/><file name="fam_cart.gif" hash="1f2fd2c8ac6574488ea78302b6856191"/><file name="fam_comment.gif" hash="5138f9a4b6019a5b14b8ff9a32a3cb89"/><file name="fam_creditcards.gif" hash="b75b8ce2f4fceb58f8082c48344560c7"/><file name="fam_folder_database.gif" hash="e86175ff0f389ade1fc7bf15e03346eb"/><file name="fam_folder_palette.gif" hash="c0941b9145e06d53cc0d17ac4c151764"/><file name="fam_folder_table.gif" hash="e2914ba75944acd2a9e2d338fa339e16"/><file name="fam_group.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="fam_help.gif" hash="2b5ed4c13a8e24456207b757826c7b2c"/><file name="fam_house.gif" hash="8eb2d580c5a40b7974f4263ca64fb94a"/><file name="fam_layout.gif" hash="5366a5f02260d3a860ef0c4787282ad6"/><file name="fam_leaf.png" hash="078d4f24683331b4557356a59e67b125"/><file name="fam_link.gif" hash="78590d5d8375d1baabe7b66d7b9ceb7d"/><file name="fam_lorry.gif" hash="174e86e45e76e7008fa3510cefa85047"/><file name="fam_money.gif" hash="6996bad465222fb6487cab94b4607846"/><file name="fam_money_add.gif" hash="70ceed401fe9913305f2362f7e26225d"/><file name="fam_monitor.gif" hash="f3bc806ff9d0907320b03018ba2d00ea"/><file name="fam_newspaper.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="fam_newspaper_delete.gif" hash="41acabfc19102be92d3ccbc66d1fede3"/><file name="fam_newspaper_error.gif" hash="009bfa425298e1d2e44e38e58cd97938"/><file name="fam_newspaper_go.gif" hash="eb43105f8e13e3a752d7ca33bb086831"/><file name="fam_package.gif" hash="bf9be09ef64d006455baa211b7c03983"/><file name="fam_package_go.gif" hash="e4f8d380c2f8e5a7345e360293433764"/><file name="fam_page_white.gif" hash="26940eb67826c5af72b6048c7c5a8335"/><file name="fam_page_white_edit.gif" hash="a4f88300b74ad592a5c47ed54ff07af9"/><file name="fam_rainbow.gif" hash="e8b04cc945b3582a181d4ddbc2d2325f"/><file name="fam_refresh.gif" hash="01bbef614023c0890812e76bc7ecf7e0"/><file name="fam_server_database.gif" hash="7901fa06ffd68ed730cf43bb560756fd"/><file name="fam_status_online.gif" hash="a80019ffa3a573f709772ed1099343fc"/><file name="fam_tag_orange.gif" hash="6ce735a0e590bda040b6e1614c42e58a"/><file name="fam_user.gif" hash="63bbdd6d9d7a27591907a7b87898e259"/><file name="fam_user_comment.gif" hash="014dfd31d9af40e3d5960b2b0d900da3"/><file name="fam_user_edit.gif" hash="f5b36e803060c6b82e639a4fad57b9f7"/><file name="filter_row_bg.gif" hash="013a0929a7b2ddc6823bdda17d08acc0"/><file name="footer_bg.gif" hash="7724711d3ca07a5e46a6030e86743a71"/><file name="gift-message-collapse.gif" hash="5b710f5faa9c7352a39c10e3ebbee6fc"/><file name="gift-message-expand.gif" hash="fd53a70cbb1ea048754657a63787e9cb"/><file name="gift-message-grid-column-bg.gif" hash="97a8a9b8cc4ab68e7404ccf1320f50a6"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="grid_sort_asc.gif" hash="b78c3a1a27ac9672a31b7d1bbac60322"/><file name="grid_sort_desc.gif" hash="d958b946eba3dba863d724530a0dba1a"/><file name="grid_th_bg.gif" hash="8f4349fac728858374e17edf03390977"/><file name="grid_th_onclick_bg.gif" hash="7bf331e2a41e5331c4210bdc6adc4383"/><file name="grouped_to_order_icon.png" hash="4bdae9a6199655027b8b8aeee8f80ce4"/><file name="header_bg.gif" hash="cbe510856afa5cb0c32642c1f9a8eceb"/><file name="header_top_bg.gif" hash="8440b04c5cb6b1451bb886bfbef260a5"/><file name="horiz_tabs_ul_bg.gif" hash="58dbd9c45f76993346c2bb788896248e"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="ico_success.gif" hash="0afb20898a704a106cb4c598868abf32"/><file name="icon_btn_add.gif" hash="7300097305b577ee564dc49102822d16"/><file name="icon_btn_back.gif" hash="89ed97cede3f68241446a62c96e3ce4c"/><file name="icon_btn_delete.gif" hash="dbde0b76d36cfd624bf0de166d0a265e"/><file name="icon_btn_save.gif" hash="f5da95ac65efff5f5cf9c8830202764d"/><file name="icon_edit_address.gif" hash="d1ca2bb3a5c86afd379f25d9fc4352e3"/><file name="icon_export.gif" hash="9a13f20c6a17b41b9c357545c2da5636"/><file name="icon_export.png" hash="fb299dd13df666516eabe16f59193383"/><file name="icon_feed.gif" hash="0366583ed6e285d028442fcdebb05072"/><file name="icon_feed.png" hash="8537f6f88fcff4aac793247143d14e42"/><file name="icon_note_list.gif" hash="8d25ba225ca09b687a78bff510df5d10"/><file name="icon_remove_address.gif" hash="2de2b3d02c19adfb93e9e43a392db178"/><file name="login_box_bg.gif" hash="e4654826eaa8d5ebc0ab18e9bee71e1d"/><file name="login_box_bg.jpg" hash="404e37f4ee9f4ff9bfcb638741c7581d"/><file name="login_box_bottom.jpg" hash="038f15261e74bc381484f2fcfa45a73b"/><file name="login_box_legal_bg.gif" hash="528ac4dd480c4fc00ac808bf17394c05"/><file name="login_logo.gif" hash="9cc90e7aa1210883000fe5319862ce14"/><file name="logo-large.gif" hash="5c77654c424b0a35cc24d28df5166dc4"/><file name="logo.gif" hash="c7e9f290d965f707e4c4a61bfdab58cb"/><file name="massaction_bg.gif" hash="8b5f4db3ab3ea09cd5bd0164d67c4f0d"/><file name="massaction_button_bg.gif" hash="4c8262817e48d007237124ce0e7f4d18"/><file name="massaction_links_delimiter.gif" hash="9a0337183b5b67c0eed75993d7f14d10"/><file name="middle_bg.gif" hash="ba4f176d2c553201ebab4aba5c6d3d20"/><file name="more_arrow.gif" hash="38bb4c0e9270250151486d0bb36c476f"/><file name="nav1_active.gif" hash="a7f9ec7689a65c6b796f0d9b97582d01"/><file name="nav1_bg.gif" hash="a1d4ef5b590ce0a425dc04e45ed06cbe"/><file name="nav1_off.gif" hash="5286cbd5ac9ec1b6c027d5b48a74bdab"/><file name="nav1_on.gif" hash="a7f9ec7689a65c6b796f0d9b97582d01"/><file name="nav1_over.gif" hash="2c70d6175f1c965c27dda0598a67e63c"/><file name="nav1_sep.gif" hash="5286cbd5ac9ec1b6c027d5b48a74bdab"/><file name="nav2_last_li_bg.png" hash="279935c9799679fc5894337eaabc7cf0"/><file name="nav2_last_li_over_bg.png" hash="39536f00824293d11242888a76f40a5f"/><file name="nav2_li_bg.gif" hash="0a4f34b0e4436c519d31203f19503b83"/><file name="nav2_li_bg.png" hash="2fad219d162324e9a19f2745d5b6d562"/><file name="nav2_li_over_bg.png" hash="dc37c4a4aab40ea2ae44dea5ea133a9d"/><file name="nav2_link_bg.gif" hash="dce00ddad351e72e83bc87274cbaa54a"/><file name="nav2_parent_arrow.gif" hash="60e012a14a077bd2257343facc369c0c"/><file name="nav3_bg.png" hash="2bc7af80ad8886013da38401b63ab6df"/><file name="nav_bg.gif" hash="1b857c7d35f35ef9f6cae9e03a4e3dff"/><file name="nav_list_bg.gif" hash="7a4e2bdb887c12d8a1152bbcc8c02a3c"/><file name="nav_nest_link_bg.gif" hash="1d0c6b374bf02ac4b5aa012955c431de"/><file name="nav_nest_link_over_bg.gif" hash="fae3c579a4d432503b1f4f929d070609"/><file name="nav_on_bg.gif" hash="ac624b580cae5a76f6c92abc5a44191d"/><file name="nav_parent_arrow.gif" hash="3a95559263e569dc1c8065cb2d9b3f2c"/><file name="note_bg.gif" hash="105967d7c15ab4610726eea52d862a97"/><file name="note_cell_bg.gif" hash="71e656d42f8ba8c2d477c6866c499b71"/><file name="note_msg_icon.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="notice-msg.png" hash="9cd1dfebccec8a2123d543fa49b17bd7"/><file name="pager_arrow_left.gif" hash="6e44f608dac8eb8be1d1ebee5a3285aa"/><file name="pager_arrow_left_off.gif" hash="30f5e56195ab3546b36f4016db5254be"/><file name="pager_arrow_right.gif" hash="cc79526156b7e0c8abce61fad3d53f77"/><file name="pager_arrow_right_off.gif" hash="f01b7dad9acf0180b5c62edbd7ea9939"/><file name="paypal_logo.gif" hash="871e205a64292121f4c893373acfb581"/><file name="paypal_section.png" hash="d032551b47e48dced277c4fa344ac7f6"/><file name="paypal_tick.gif" hash="e8685c1fb7c4c106ae4fd24e9bbf5a27"/><dir name="placeholder"><file name="thumbnail.jpg" hash="5c73b5aa515b1719f7b398f5131f91a8"/></dir><file name="process_spinner.gif" hash="345b30b4d0b6088d0151ecfbdf48c036"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="rule-ajax-loader.gif" hash="32dc1f5901143d36fbd7a6df3950819f"/><file name="rule_chooser_trigger.gif" hash="9c498e789c3ce734f5301c2475e2a04c"/><file name="rule_component_add.gif" hash="7914e57701ca26f5c8bf23c6bc3e1f25"/><file name="rule_component_apply.gif" hash="3f9b9025551da6963a9ecf8d184a204a"/><file name="rule_component_remove.gif" hash="4d785bcecfbe716fa4d749d20738a8f0"/><file name="save_btn_icon.gif" hash="f5da95ac65efff5f5cf9c8830202764d"/><file name="sec_nav_bg.gif" hash="99c6741591cdb2a2a128668a1d32d668"/><file name="section_menu_bg.gif" hash="f9edd44c92743a0c9ae9535a7992d6b1"/><file name="section_menu_bottom.gif" hash="167d2ef46ff80158c807b4b916501b28"/><file name="section_menu_link_bg.gif" hash="bcabd4fea0d67b181f21779564c2284b"/><file name="section_menu_link_over_bg.gif" hash="7da7e56567633aab279cf3aec6f49d8d"/><file name="section_menu_over_span_bg.gif" hash="f5ea5292f15ed62b99f0f51d9fff2c66"/><file name="section_menu_span_bg.gif" hash="dbf3916358e794ee809b4cf33903af2c"/><file name="section_menu_ul_bg.gif" hash="3aea6e5452f548438ca34e17954a9d6b"/><file name="side_col_bg.gif" hash="b3691fd62663457af39eaf71dd8cda5a"/><file name="simple_container_bg.gif" hash="56f1ac91169eb4896b8c91384fc8bf15"/><file name="sort-arrow-down.gif" hash="fc2cd9f756ce510c4470478d720f81cd"/><file name="sort-arrow-down.png" hash="dc65160d9d4d6cdd6bfe1b397a931975"/><file name="sort-arrow-up.gif" hash="39026b0ff1f0c18091caa60384491163"/><file name="sort-arrow-up.png" hash="da54e5306bdce67551aa415f5d7f7ea7"/><file name="sort_heading_bg.gif" hash="6066d09f237f556b0a4770e4788e7598"/><file name="sort_on_bg.gif" hash="0cb36788ed4fbf19e657acbc75a3f1b8"/><file name="sort_row_bg.gif" hash="f2e1c5cb26b9f5211419b99d30745244"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="sub_button_bg.gif" hash="e3f66dd60510f9f7e937e2e55442c30a"/><file name="success-msg.png" hash="c64cb2acc3d0eeba48fdea83620913ed"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="tabs_link_bg.gif" hash="34447929f5e6591ba9b5795b983fdfd4"/><file name="tabs_link_over_bg.gif" hash="2cf3f56884096055fb0bdf9474f280c9"/><file name="tabs_span_bg.gif" hash="bcabd4fea0d67b181f21779564c2284b"/><file name="tag_blue_edit.gif" hash="b2163ac3baf7d822b48593342846645a"/><file name="tn_cancel_bg.gif" hash="fcb3506858fcfa8d1778b0683dc89f54"/><file name="tooltip_bg.gif" hash="0aa4b866fc067a75f27ab749c1dabf74"/><file name="tooltip_corner.gif" hash="71146534671d5e0751505640b7c59859"/><file name="tooltip_top.gif" hash="032ff52a6ff5714cbdf6c1f62abaf7e5"/><dir name="tree_icons"><file name="join.gif" hash="4d5d614e0da056df815a4306d6368692"/><file name="joinbottom.gif" hash="4b3daa7f2cc584f1aac0d142275d7cba"/><file name="line.gif" hash="63ab38a6203262f15ca46c631232ea2c"/><file name="minus.gif" hash="d647fbbd0ec410b8f3bb3357b62eedcf"/><file name="minusbottom.gif" hash="b09d684cca7135ef728141aaf2464baa"/><file name="nolines_minus.gif" hash="eb2243a354ffcfac93ba0fe948f7167d"/><file name="nolines_plus.gif" hash="ec92b634b63608fb4b0dbf114e3b89e1"/></dir><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><file name="varien_logo.gif" hash="6f10d0fe572cb012947c164217e9e428"/><file name="warning_msg_icon.gif" hash="4cf6ec7f59ab09f9c18b3a4301714c6d"/><dir name="widget"><file name="catalog__category_widget_link.gif" hash="8435943009f1f774bbd6a4809c719eb8"/><file name="catalog__product_widget_link.gif" hash="62f2d7020143f98ba7514469eb612a7f"/><file name="catalog__product_widget_new.gif" hash="37a5af9f98ae73e180ad0cca05c95324"/><file name="cms__widget_block.gif" hash="b7b0b1517cc38b18b92841b33b312190"/><file name="cms__widget_page_link.gif" hash="b839dee210e61850a5858cc8634cbccd"/><file name="default.gif" hash="684143ae5531aa6ba22215f4fadeea6c"/><file name="reports__product_widget_compared.gif" hash="bd3e5a5015eb2c5c64f1d11835166dc4"/><file name="reports__product_widget_viewed.gif" hash="44d5cd71e4fb7235f9cff0c7e2b2f531"/></dir><file name="widget_placeholder.gif" hash="2bd8d72cf12f8d7d0a6a3268f97786ff"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/><file name="window_content.png" hash="08361df29783d46a2493cf0d8ad733a7"/><file name="window_top.png" hash="555a8db5efa3a252c2ead3d3dadd1075"/><dir name="wysiwyg"><file name="skin_image.png" hash="a521b0c60b001de4a3405e73c4a6cd4a"/></dir></dir><dir name="media"><file name="editor.swf" hash="259afd515d7b2edee76f67973fea95a6"/><file name="flex.swf" hash="60a8c242ca2ff0e70ed9a038749f4cc1"/><file name="uploader.swf" hash="1c300001dadd932ef6e33a2fadf941e1"/><file name="uploaderSingle.swf" hash="304dd960698c5786dcd64b0e138f80ca"/></dir><file name="menu.css" hash="6f39c760b70b8250c193c5311885193a"/><file name="print.css" hash="db77a54f0e6a7146cad6566eb200a0d5"/><file name="reset.css" hash="d45948716e2dd828a40715b9a43e2115"/></dir></dir></dir></target></contents>
16
  <compatible/>
17
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Adminhtml</name><channel>community</channel><min>1.6.1.0</min><max>1.7.0.0</max></package><package><name>Lib_Js_Ext</name><channel>community</channel><min>1.6.0.0</min><max>1.7.0.0</max></package></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Interface_Adminhtml_Default</name>
4
+ <version>1.6.2.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Default interface for Adminhtml</summary>
10
  <description>Default interface for Adminhtml</description>
11
+ <notes>1.6.2.0</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
+ <date>2012-01-11</date>
14
+ <time>11:50:28</time>
15
+ <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="admin.xml" hash="44393050c34e9ad8b7bab1d66413e351"/><file name="adminnotification.xml" hash="ee78ff1d19d55877cb7b9827a6940a46"/><file name="authorizenet.xml" hash="3f360f98d8bff41b2fd2719dd8579d8f"/><file name="bundle.xml" hash="4b83ffa2299d7f9dd89420dddd5df6a1"/><file name="catalog.xml" hash="b39f26951cc765bd7abade64a72a0467"/><file name="cms.xml" hash="f2f334ac4f3534dd9132ba4e3545b217"/><file name="connect.xml" hash="1ea87ced1e80b37181a7217bb4bd2632"/><file name="customer.xml" hash="0a2c6be8b9e27cdd23970e2611fff010"/><file name="dataflow.xml" hash="bd8d1b9a588c9b1aaf69a55a51d030b4"/><file name="downloadable.xml" hash="b0a9d21104a142872af1979b3ad7cf8b"/><file name="giftmessage.xml" hash="cf2625b578167fc919890ed4ebc316b7"/><file name="importexport.xml" hash="90833e5f738675aec4d5e3912a243339"/><file name="index.xml" hash="3a1f79fcaf43a6cd38b48aac01b41cf5"/><file name="main.xml" hash="bc0e48d6bec35636aa5e54f75ef1e26c"/><file name="newsletter.xml" hash="eba82cbbbaf36f8139c27860701cba94"/><file name="pagecache.xml" hash="c825482e400ead41e31257577d83c82e"/><file name="promo.xml" hash="bdcc5ac857431f908c724a518b7f25da"/><file name="report.xml" hash="7ef988341935bb9bce80578c9605f1be"/><file name="rss.xml" hash="982700100011a75c27ffaac4449d989f"/><file name="sales.xml" hash="a2260719ac76011afe558fbcab40d363"/><file name="search.xml" hash="c11b6a1be8c756400dd827853dee6b4a"/><file name="tag.xml" hash="f51fd19ec6760da7ed3a924ecccbd930"/><file name="widget.xml" hash="41300e83b45056200ee2f189e4fd950a"/></dir><dir name="locale"><dir name="en_US"><file name="translate.csv" hash="735c9ec66d1309f1206294f075fdcdd1"/></dir></dir><dir name="template"><file name="access_denied.phtml" hash="f84932f9bcce08b48e23645c94020dc3"/><dir name="api"><file name="role_users_grid_js.phtml" hash="cf382e08080d38d04aa08a9dfa64b9ec"/><file name="roleinfo.phtml" hash="5cf4655eb686597cafcc57e4212bb7de"/><file name="roles.phtml" hash="580eae36eaee465ddaf20507ec87b16a"/><file name="rolesedit.phtml" hash="40192e90633e603806c444b58e82e473"/><file name="rolesusers.phtml" hash="9925e7839ad4754386e4a19a4eec48c9"/><file name="user_roles_grid_js.phtml" hash="57460585baf5a5b970649a63ccf1d182"/><file name="userinfo.phtml" hash="a9447181e813957d426aa1d8d491c8dc"/><file name="usernroles.phtml" hash="d5921bb6c4343fd29051442a0a69498f"/><file name="userroles.phtml" hash="cfe422707baf29ac225b07abb8a21bff"/><file name="users.phtml" hash="ea0b5773de76fe56a95cc3b82d9a149e"/></dir><dir name="authorizenet"><dir name="directpost"><file name="iframe.phtml" hash="1dfd172ad73fdf12032250f51055564c"/><file name="info.phtml" hash="2b61893031ee2e6426d42b2bde670da2"/></dir></dir><dir name="backup"><file name="left.phtml" hash="5b25b522887932a4496024ac812facbd"/><file name="list.phtml" hash="d9d73c79d0cb549fe258d0a1652f25d4"/></dir><dir name="bundle"><dir name="product"><dir name="composite"><dir name="fieldset"><dir name="options"><file name="bundle.phtml" hash="8c69e874129e66ed12abab5034aeaf5b"/><dir name="type"><file name="checkbox.phtml" hash="a12d5663a4e60ae2f63680f4ef78cd84"/><file name="multi.phtml" hash="47536a6aed3592a7ec5db3df6f5e6ace"/><file name="radio.phtml" hash="1257a59768c889b9703295d589593aab"/><file name="select.phtml" hash="5ed9bcb52ded0af26c54a4826cec3a85"/></dir></dir></dir></dir><dir name="edit"><dir name="bundle"><dir name="option"><file name="search.phtml" hash="f8a1fd551f266c5bd957b725dc3ef149"/><file name="selection.phtml" hash="8db64c00fc6f5db0b63925e998ae27ef"/></dir><file name="option.phtml" hash="5b6ca684099d527dc6c58153a53204f6"/></dir><file name="bundle.phtml" hash="15336f42e4df8ddd79cfabd4e29f86b0"/></dir></dir><dir name="sales"><dir name="creditmemo"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="e461cf4d769e011eb6a2dec1677dbfa0"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="590226d1735b63456b4869f58b3398f4"/></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="e0405df7154938f82d75e4ece3c13830"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="80b07e7f29790392a2a2987277ee8f16"/></dir></dir></dir><dir name="order"><dir name="view"><dir name="items"><file name="renderer.phtml" hash="5cdbedb6d1b470c549d368a4555c93d3"/></dir></dir></dir><dir name="shipment"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="18fab3c476214db2fa33a30dcca8e637"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="38443b4198b88bbe91fffdf3d844be96"/></dir></dir></dir></dir></dir><dir name="catalog"><dir name="category"><dir name="checkboxes"><file name="tree.phtml" hash="ccc073f9a9149cfb07054ea25de06c8c"/></dir><dir name="edit"><file name="form.phtml" hash="c528a23f7b4f8ebdda288d58d73356bc"/></dir><file name="edit.phtml" hash="614c2a987ec237808659f2d139adc027"/><file name="tree.phtml" hash="d13ba25ce1271e07f4b36dc32d822351"/><dir name="widget"><file name="tree.phtml" hash="229025c0e461b79c5578893c9f6fcd5d"/></dir></dir><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="68d5938477ca48241cf963aa541c6ec8"/></dir></dir></dir><dir name="product"><dir name="attribute"><file name="js.phtml" hash="18e0a360967ee4fda7ca5329e995b794"/><dir name="new"><file name="created.phtml" hash="09f1423d45cbf7e1a855f3fd3f93b638"/></dir><file name="options.phtml" hash="71e1c0ebfdcffb0aa1666c76bd33272b"/><dir name="set"><dir name="main"><dir name="tree"><file name="attribute.phtml" hash="dd6f95e01ec7553ad5febba612efc022"/><file name="group.phtml" hash="4a2e8c13117ca01c8bc10596640d3c2d"/></dir></dir><file name="main.phtml" hash="7900c2e3769780332f90c4345785a2ad"/><dir name="toolbar"><file name="add.phtml" hash="a3426c834d542d10c0c12d6090d44984"/><file name="main.phtml" hash="de3713573b3c7b11ff30f28ea24a2368"/></dir></dir></dir><dir name="composite"><file name="configure.phtml" hash="4394c381d307acaef6239a2d9c4e9ebb"/><dir name="fieldset"><file name="configurable.phtml" hash="96712aaaf15ef0ad6d9b16df19a9d15c"/><file name="grouped.phtml" hash="6a4ac7e1391ac4b28c8c34001adaba50"/><dir name="options"><file name="js.phtml" hash="93e79dbaac822fc1ba208eb8fa708960"/><dir name="type"><file name="date.phtml" hash="ecae03bcd15f9341d13d104af29764b2"/><file name="default.phtml" hash="6ffdd3c543eff82fbaea3db2bdd7ac6e"/><file name="file.phtml" hash="bc7e78b6173a72270c7fd50d35dfb460"/><file name="select.phtml" hash="1d0ef51d63fd1c4071a30e6acc2359be"/><file name="text.phtml" hash="13b59a632f5402737c7384e12cc76b46"/></dir></dir><file name="options.phtml" hash="f5508099fea6784c4cda5bd9da282e9c"/><file name="qty.phtml" hash="c7c70cef1129a65a2b6bb55a758ee9c7"/></dir></dir><file name="created.phtml" hash="ad89b4ffa73fba7a6f2e0a67ec229f39"/><dir name="edit"><dir name="action"><file name="attribute.phtml" hash="d0cc2c4244b47943896e6b0fc768f5bb"/><file name="inventory.phtml" hash="66d0f79fc8d237ddc8d8ea3736cdcac9"/><file name="websites.phtml" hash="612c182600ab5ea537a426df5610fbd6"/></dir><file name="categories.phtml" hash="c522d7fb65dcbebe6e1125e3dc98ac94"/><dir name="options"><file name="option.phtml" hash="c2f07629795a5b624f468b255096ba6a"/><dir name="type"><file name="date.phtml" hash="6a549f3e609dc7ec785d10349e29ef6f"/><file name="file.phtml" hash="4ccd3ccec30eb3bfcf4c239d5474400e"/><file name="select.phtml" hash="7165f7c31682f78a779601de61570581"/><file name="text.phtml" hash="b5a9d3ca97bd25f3f1890f9495c94982"/></dir></dir><file name="options.phtml" hash="b39f61d9175a281c20eac188d8970e0f"/><dir name="price"><file name="tier.phtml" hash="f5c5e154144a77696a7db3e8f610a9bb"/></dir><file name="serializer.phtml" hash="1e58dedca6c141ff82d81c7fe792a472"/><dir name="super"><file name="config.phtml" hash="f9ce6ea67afabfa6e659dacc66651374"/></dir><file name="websites.phtml" hash="4f23ce0bfd9cbd6459bce1d08356af2a"/></dir><file name="edit.phtml" hash="1395d86c1a329ec9ca8e3391e89c3cb3"/><dir name="helper"><file name="gallery.phtml" hash="fcde1ebdb88ac4cee5ebc94ffafcb93b"/></dir><file name="js.phtml" hash="d79c35e82eb3b6c92a3206ef10e2819e"/><file name="price.phtml" hash="b9ad2733f9b9e9f1f366992568900f07"/><dir name="tab"><file name="alert.phtml" hash="1b52a7bfc26f7d93eaaf806322fe1b4a"/><file name="inventory.phtml" hash="9072a245f3ad6ca722bf34cceb8b1a8e"/></dir><dir name="widget"><dir name="chooser"><file name="container.phtml" hash="30b62d06274380a56f1bed0f52d3d764"/></dir></dir></dir><file name="product.phtml" hash="db8d042acd4e41c3b446bd69c688ca83"/><dir name="wysiwyg"><file name="js.phtml" hash="69596b033cb3f906d95923c223b8e6a3"/></dir></dir><dir name="cms"><dir name="browser"><dir name="content"><file name="files.phtml" hash="7167f0c75a3b64e9bcd572cc2ff5e7fe"/><file name="newfolder.phtml" hash="bfa6760e1cbb38cf7b9a74ab0ec76bff"/><file name="uploader.phtml" hash="1b50850b7444c11a8e6bd45cb87086f0"/></dir><file name="content.phtml" hash="1ca3b215da8c5512eb24599e375c495e"/><file name="js.phtml" hash="5d42cc3ec6ec34f4df663fc1144b19e1"/><file name="tree.phtml" hash="72a155f7c7732b98c92f51bedb046e56"/></dir><dir name="page"><dir name="edit"><dir name="form"><dir name="renderer"><file name="content.phtml" hash="f3a203b47deb0b7cccf02df89c8f8b19"/></dir></dir></dir></dir></dir><file name="coming.phtml" hash="a41515d8b09f96b82e577debf474e60a"/><dir name="connect"><dir name="extension"><dir name="custom"><file name="authors.phtml" hash="60a5c4e2148cd5461e18991b8a95ab98"/><file name="contents.phtml" hash="8e0540bff057d88332b7de58a5004430"/><file name="depends.phtml" hash="601f3d216b38c05cc352f52c6b81d547"/><file name="load.phtml" hash="188bdfd12f26419fe368ede482668893"/><file name="package.phtml" hash="94ef94a28022c213188bd55515096267"/><file name="release.phtml" hash="ef73019c61a8e1ddb930076eca7e9b4c"/></dir></dir></dir><dir name="customer"><dir name="edit"><file name="js.phtml" hash="73a8a53f50c8662b300db5565b44f9c5"/><dir name="tab"><dir name="view"><dir name="grid"><file name="item.phtml" hash="e24c76add63b62955aba14f3f42dfe1a"/></dir></dir></dir></dir><file name="online.phtml" hash="517c2e94caea59bc20c0affd884619a9"/><dir name="tab"><file name="addresses.phtml" hash="931d32553257d5b506b80d685e22ca97"/><file name="cart.phtml" hash="12efd24d2b4e9f052453e7229c85cedc"/><file name="newsletter.phtml" hash="880441c95ff77dc6250d3f95dec782c4"/><dir name="view"><file name="sales.phtml" hash="de13c5e5e66f04967225f41566fef998"/></dir><file name="view.phtml" hash="4e2f72e8543dfca1b4bb08105e587428"/><file name="wishlist.phtml" hash="3ac024173b61b132c0d0be29b1efbe1f"/></dir></dir><dir name="dashboard"><dir name="graph"><file name="disabled.phtml" hash="cf079ab445ff89ddf8982e7d26457a62"/></dir><file name="graph.phtml" hash="a3165c01f9fde6d88493f74f38bbdd66"/><file name="grid.phtml" hash="fe2825827a2e56c5d98cc46c5e090723"/><file name="index.phtml" hash="500bced1a72364c4cc04aa78443bb946"/><file name="salebar.phtml" hash="09914d4e5edcafe16f7e9a4d90b73a6f"/><file name="searches.phtml" hash="6adfc69fd24cfb616e0d358bf527888c"/><dir name="store"><file name="switcher.phtml" hash="21f30f8c73eecc7e123c8c67f23c59d6"/></dir><file name="totalbar.phtml" hash="f7503e85a5f9b2a04fc4ed38bb84d170"/></dir><dir name="directory"><dir name="js"><file name="optional_zip_countries.phtml" hash="633ce587f8f0fffa821a7a0067edf158"/></dir></dir><dir name="downloadable"><dir name="product"><dir name="composite"><dir name="fieldset"><file name="downloadable.phtml" hash="0a84aa199dffe73013e420d732e577e9"/></dir></dir><dir name="edit"><dir name="downloadable"><file name="links.phtml" hash="4d0677b71d77f2b17d1d45d145103dc1"/><file name="samples.phtml" hash="03f428c80efd340d498a69af72677411"/></dir><file name="downloadable.phtml" hash="427163f5bf5eaad4e009fc3f1c4d90a7"/></dir></dir><dir name="sales"><dir name="items"><dir name="column"><dir name="downloadable"><dir name="creditmemo"><file name="name.phtml" hash="323d7774d16ce00b13aa9f55ba907a7a"/></dir><dir name="invoice"><file name="name.phtml" hash="7b3788c59862eda4cda241fb15e1dad0"/></dir><file name="name.phtml" hash="a72cdf111f03a4454d15aa778fcb877b"/></dir></dir></dir><dir name="order"><dir name="creditmemo"><dir name="create"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="b58f6b394a0489c8979f7f32eb48304b"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="8938d4e8eee68316fed6b2b2cc519386"/></dir></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="59387875677a254f27078e6bceb0995a"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="cc1ad4b9f1f7a85f55fbf51a7a636d61"/></dir></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="eb8f0b158378b1d45be03342dd813fe8"/></dir></dir></dir></dir></dir></dir><dir name="eav"><dir name="attribute"><dir name="edit"><file name="js.phtml" hash="dd6f95e01ec7553ad5febba612efc022"/></dir></dir></dir><dir name="email"><dir name="order"><file name="items.phtml" hash="6f09628ad32a466051c21ddea8fcf92c"/></dir></dir><file name="example.phtml" hash="e352d84f75b869d60a8ac82f558a0f22"/><file name="forgotpassword.phtml" hash="4cdc674c25baf1cee5755a6c076891c7"/><file name="formkey.phtml" hash="c3d0c73aff5dfa4742fba106e4c6143d"/><dir name="giftmessage"><file name="form.phtml" hash="9840908a5c826c7f0ef3e2f9806da221"/><file name="giftoptionsform.phtml" hash="a4c28c7894f99dec6d74124b800edb8c"/><file name="helper.phtml" hash="848bddf30c028b6fd3587bac2046eeec"/><file name="popup.phtml" hash="14049f6774c82c8443b72785998e896e"/><dir name="sales"><dir name="order"><dir name="create"><file name="giftoptions.phtml" hash="5507d829289c78d15e628f63489f7cd2"/><file name="items.phtml" hash="9429f73df55e733006ae5fffceb4d830"/></dir><dir name="view"><file name="giftoptions.phtml" hash="792cfe8d0a0f41f8e5ccc08c84e0981d"/><file name="items.phtml" hash="b65c37606ea1ee2f09c37c94afc85588"/></dir></dir></dir></dir><dir name="googlebase"><file name="captcha.phtml" hash="915d302e134056fd9ec3d814eba37d18"/><file name="items.phtml" hash="39f55e6bf90ee32f6fd9c33f9d217ca5"/><dir name="types"><dir name="edit"><file name="attributes.phtml" hash="099470741568583322fb75d22c40125a"/></dir></dir></dir><dir name="importexport"><file name="busy.phtml" hash="b7484dec96196a0a3e4140ae28356e02"/><dir name="export"><dir name="form"><file name="after.phtml" hash="7961e751003a41d00e6d35f5aecb5868"/><file name="before.phtml" hash="4bf822cc399d681c6c33cb88ede2fd7e"/></dir></dir><dir name="import"><dir name="form"><file name="after.phtml" hash="5acfcc3dacec743e0ef258cc6afad81b"/><file name="before.phtml" hash="8eac7c5e1637149bcbf6f5f6e1c4665b"/></dir><dir name="frame"><file name="result.phtml" hash="fe68a86c1d687c7f25ac4df3df401019"/></dir></dir></dir><dir name="index"><file name="notifications.phtml" hash="bbdc237e21b2eaa9f2e7e7cfffb35f0c"/></dir><file name="login.phtml" hash="c66c2670e610257a977ff8bf79b4c8c9"/><dir name="media"><file name="editor.phtml" hash="0a57ad5a1973e45c97116a21e2afde94"/><file name="uploader.phtml" hash="c32021c8dfc3270235c41eec2774a708"/></dir><dir name="newsletter"><dir name="preview"><file name="iframeswitcher.phtml" hash="bc3dc2d4001138352ed57c10406dd92a"/><file name="store.phtml" hash="cd801f685a24762281e58a41ab1fff46"/></dir><dir name="problem"><file name="list.phtml" hash="f191174e8f0ea2560ef37fc4c69a9e29"/></dir><dir name="queue"><file name="edit.phtml" hash="e027bb47e0e220ea97a1dfef511ee5fd"/><file name="list.phtml" hash="ba66ac141e1da5e7fdb1b001006efa00"/><file name="preview.phtml" hash="557bbe93210ba8bb719451c4837d2056"/></dir><dir name="subscriber"><file name="list.phtml" hash="b3709d8bd2c12bc930130d9595db2e97"/></dir><dir name="template"><file name="edit.phtml" hash="bec3577868ed1a38df728e8bcb7fe508"/><file name="list.phtml" hash="f5cd0619e8b49750d211aad103294689"/><file name="preview.phtml" hash="557bbe93210ba8bb719451c4837d2056"/></dir></dir><dir name="notification"><file name="baseurl.phtml" hash="75f09d6cb54819bd97c9aae2a89f0c9d"/><file name="security.phtml" hash="a3cc231af1f93330dfd02814bfab28f2"/><file name="survey.phtml" hash="490ace639149bca0079c34ec02aa5f5c"/><file name="toolbar.phtml" hash="f0b508fa13d96821db7ffa2d76ec80ac"/><file name="window.phtml" hash="6d88ca09b808c5530f79c9aedecdf3b3"/></dir><file name="overlay_popup.phtml" hash="da123b3e45e7dfd1605af0352765bea6"/><dir name="page"><file name="footer.phtml" hash="57b002b1a1010040bf7d8a94a749233f"/><file name="head.phtml" hash="80a75aab52155524d31826628cec8a35"/><file name="header.phtml" hash="9bfad0b661eb4c80eb28357660784186"/><dir name="js"><file name="calendar.phtml" hash="66e15fb9e75422cb743cce74fb392495"/><file name="translate.phtml" hash="dc48119d8ced01e90fdc649336550cbc"/></dir><file name="menu.phtml" hash="900256aa15f520f228bec9073e0fc7f9"/><file name="notices.phtml" hash="377f6e42d5aaa1e9fb8c6124150b1830"/></dir><file name="page.phtml" hash="acfc88fa5f2264f931c1c7c1c1ec636f"/><dir name="pagecache"><dir name="cache"><file name="additional.phtml" hash="df4094ea01318c03d897af6b8c0059f9"/></dir></dir><dir name="paygate"><dir name="form"><file name="cc.phtml" hash="a783b5df33c0c49f8d01eac496cf8112"/></dir><dir name="info"><file name="cc.phtml" hash="be479943265a31a40f3d6377511eb435"/><file name="pdf.phtml" hash="aa92b1a889a8964b4827a503faf34efb"/></dir></dir><dir name="payment"><dir name="form"><file name="cc.phtml" hash="12a9d00aa65027d2530a40dbf1dc4baa"/><file name="ccsave.phtml" hash="1880bddf0e991f0b6809036c71a21f0b"/><file name="checkmo.phtml" hash="b7519fe8c802d6c4da06f0edaf1085c1"/><file name="purchaseorder.phtml" hash="969c68d73446c9a9ed40f5059b688745"/></dir><dir name="info"><file name="checkmo.phtml" hash="89ff5f164123bad98d94beafd8138532"/><file name="default.phtml" hash="b1fbe9b758bb7221e78a587bf25d1588"/><dir name="pdf"><file name="checkmo.phtml" hash="b5e47713e2f818bd15ef36164b7aad19"/><file name="default.phtml" hash="95af5e8df75c80badf71de8b7cf7f72b"/><file name="purchaseorder.phtml" hash="648f08268d7cbdaa1ce63b2b1a343a7b"/></dir><file name="purchaseorder.phtml" hash="09206729a163ceb6c6b3502d455807ab"/></dir></dir><dir name="paypal"><dir name="system"><dir name="config"><file name="api_wizard.phtml" hash="1e42a8334a5f0209e1547774af2d7198"/><dir name="fieldset"><file name="global.phtml" hash="1226178958b355551b3516e2055e6b71"/><file name="hint.phtml" hash="cebd5368e01c6f1c51b5a4de70e01d5e"/><file name="store.phtml" hash="6cdd38ecbfd46cde48e1c8fd1617062f"/></dir><dir name="payflowlink"><file name="advanced.phtml" hash="dbf8e355fc726216ed9c8bcdbbe72eee"/><file name="info.phtml" hash="ec19c502de775a99c404a5507278a23d"/></dir></dir></dir></dir><dir name="permissions"><file name="role_users_grid_js.phtml" hash="c8a117889d579429aee7252a4e742fef"/><file name="roleinfo.phtml" hash="adcd9a8543f1dff4ccdd4aad32305e31"/><file name="roles.phtml" hash="580eae36eaee465ddaf20507ec87b16a"/><file name="rolesedit.phtml" hash="baecc14884deda5180273c45d6b538c8"/><file name="rolesusers.phtml" hash="9925e7839ad4754386e4a19a4eec48c9"/><file name="user_roles_grid_js.phtml" hash="9267240bc35a6f42f6ade61b5575b137"/><file name="userinfo.phtml" hash="a9447181e813957d426aa1d8d491c8dc"/><file name="usernroles.phtml" hash="d5921bb6c4343fd29051442a0a69498f"/><file name="userroles.phtml" hash="cfe422707baf29ac225b07abb8a21bff"/><file name="users.phtml" hash="ea0b5773de76fe56a95cc3b82d9a149e"/></dir><dir name="poll"><dir name="answers"><file name="list.phtml" hash="75535156fd23082928697654993a8be2"/></dir></dir><file name="popup.phtml" hash="2036a235e6a42c9417721c42229bfd08"/><dir name="promo"><file name="fieldset.phtml" hash="fceba8c0b055d0ec3b120fbf16e3e7cc"/><file name="form.phtml" hash="48f289001b8f4665ac9fe12603945bb4"/><file name="js.phtml" hash="bd6c8035e94d86ef4b59bc97566f392c"/></dir><dir name="rating"><file name="detailed.phtml" hash="53fc83c79e68843d1b2c232f577ccc7e"/><file name="options.phtml" hash="bc5892eaa95463d7e0af17c833ce7064"/><dir name="stars"><file name="detailed.phtml" hash="cf301e0430532c5936d18a97dbba862e"/><file name="summary.phtml" hash="6b6249a2bc31a6c26b8330f2c12763bb"/></dir></dir><dir name="report"><dir name="grid"><file name="container.phtml" hash="8b4c4e009372d9a4eca2cab949d3689c"/></dir><file name="grid.phtml" hash="3cccf95def1a3fc611bdf2456269770a"/><dir name="refresh"><file name="statistics.phtml" hash="18c7db8c25ae3e0ebcdb48384b2069f1"/></dir><dir name="store"><dir name="switcher"><file name="enhanced.phtml" hash="6d4d53bad242f1e4731a4deef2dea957"/></dir><file name="switcher.phtml" hash="3fb9f5f70ebfefb12b8374b093765e01"/></dir><file name="wishlist.phtml" hash="9bda71b6a4f1fc05ecefd573c77979f2"/></dir><file name="resetforgottenpassword.phtml" hash="dc3b694d6c35906910359817eef22a97"/><dir name="review"><file name="add.phtml" hash="61e1e939f95ba629c6e0a595760438f7"/></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="form.phtml" hash="2f1980b952370e2faf7509acf00f520e"/><dir name="view"><file name="form.phtml" hash="694f082cb8ee5c6c3c6367ccdea60b25"/><dir name="tab"><file name="info.phtml" hash="1b31e1951b7840964a2ff7f62e2602ff"/></dir></dir></dir></dir><dir name="items"><dir name="column"><file name="name.phtml" hash="733538b760f1414105659e7842dc8a87"/><file name="qty.phtml" hash="e7bc271b11e82ab67cb1b245f71ec126"/></dir><dir name="renderer"><file name="default.phtml" hash="4822aee818adafcffe576f33c0dfe5cb"/></dir></dir><dir name="order"><dir name="address"><file name="form.phtml" hash="01d1352cb65c26d5d103eb07ebd2e770"/></dir><dir name="comments"><file name="view.phtml" hash="01330ec7b1a1335794885543ed0985d4"/></dir><dir name="create"><file name="abstract.phtml" hash="74707ef1b04e403dba9609912ae6c714"/><dir name="billing"><dir name="method"><file name="form.phtml" hash="e4b9fc0c00bb3fe94cff292f42c61ae2"/></dir></dir><file name="comment.phtml" hash="44ee507232b26df7784edda1831dcdf1"/><dir name="coupons"><file name="form.phtml" hash="71cde519542ffbe800f2e66236539f5d"/></dir><file name="data.phtml" hash="0e92c3744fac3335fb112dd2cd4c8d0e"/><dir name="form"><file name="account.phtml" hash="d85c18d7a895b9810f60e611e6ee0c17"/><file name="address.phtml" hash="76ddccb168f16579133532f55db3a331"/></dir><file name="form.phtml" hash="27eb920acc041db7f53e3143ed9983dd"/><file name="giftmessage.phtml" hash="0dafb24c19bb44ac44327d5a4f0a4a17"/><dir name="items"><file name="grid.phtml" hash="ad442e282b8a6ef07fb6f02f0a3db16f"/></dir><file name="items.phtml" hash="ac2d276a2281923eca8f29bfb65a459e"/><file name="js.phtml" hash="1b5a660ba82df692d0a1a33593d2be02"/><dir name="newsletter"><file name="form.phtml" hash="4c887a66644a9080d7449bfc9844dbb6"/></dir><dir name="shipping"><dir name="method"><file name="form.phtml" hash="312fc0557bb63773060cdbc023d57d5a"/></dir></dir><dir name="sidebar"><file name="items.phtml" hash="3734b52a54242d28004b1422abf44460"/></dir><file name="sidebar.phtml" hash="495bdf00adb0c7bcc951aed0975577cc"/><dir name="store"><file name="select.phtml" hash="c4a85e0d8cbee5211d3476f8a044fb2e"/></dir><dir name="totals"><file name="default.phtml" hash="c4bc9b5beb642020f1438e55f9448f77"/><file name="grandtotal.phtml" hash="803918087eb1156945a21c964a08575e"/><file name="shipping.phtml" hash="2f020dda0d79ca089415d2ad9475c827"/><file name="subtotal.phtml" hash="9918b4612f47e035b467ab07a631e06b"/><file name="tax.phtml" hash="b710fd9ee5847714f6f15291cb61faf5"/></dir><file name="totals.phtml" hash="a889ab04c606f3493877c8866d5f0209"/></dir><dir name="creditmemo"><dir name="create"><file name="form.phtml" hash="ef199283396f09cb778cf5cc0f1660eb"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="f97bfbca4fe3b04030e7c5dda1a5fbc4"/><file name="default.phtml" hash="004fe6084ceb9fbf049a44943294f039"/></dir></dir><file name="items.phtml" hash="7b66ec1ae61ec4a28533c2e3d0397fb9"/><dir name="totals"><file name="adjustments.phtml" hash="de1664e63a5a915be781c90c12144943"/></dir></dir><dir name="view"><file name="form.phtml" hash="c9172f2942eaffd843d49567f6584757"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="36f0891057b450981f7efa82b333968d"/><file name="default.phtml" hash="e5398bff677877b7b063dd2c61792d1b"/></dir></dir><file name="items.phtml" hash="f93aa068266a29260f56d8d7cf3c1a42"/></dir></dir><file name="giftoptions.phtml" hash="3b72be9025fe261017c0ea740a1b8ffb"/><dir name="invoice"><dir name="create"><file name="form.phtml" hash="f9db53e9cd35c6279e560254628bc9ec"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="c02ada42e8dae2923e2101ba21c045cf"/><file name="default.phtml" hash="5c2da533258494a8e8690ebee17f2708"/></dir></dir><file name="items.phtml" hash="b50001dc069530441dae95daf84d3a70"/><file name="tracking.phtml" hash="03f9edc3959eabf444d450ecc0162f47"/></dir><dir name="view"><file name="form.phtml" hash="3016a5651845b7fef4501124bc95e243"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="d3753500e683107343fd03c7ecb2038a"/><file name="default.phtml" hash="f62a0333aff983701c7ccb2c58c991c0"/></dir></dir><file name="items.phtml" hash="c0edb909b2048881a38d67d16eaad0c7"/></dir></dir><dir name="shipment"><dir name="create"><file name="form.phtml" hash="88814d4fcb8d3c01267dc10b7a6822ae"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="5cc001fdd9e2333115262323bfd19faf"/><file name="default.phtml" hash="b460f07e7e95cd64fe066a83ae81294c"/></dir></dir><file name="items.phtml" hash="fcbeb963f11d1534476ae165bbe41932"/><file name="tracking.phtml" hash="ff74c443c34d94aba7dcddcdb18cc46a"/></dir><dir name="packaging"><file name="grid.phtml" hash="370a10720b3ea132da19d71e4e2cd52c"/><file name="packed.phtml" hash="21664e9e9a4ef1fd0a6c94a3d689acd5"/><file name="popup.phtml" hash="f2827a4d2fa6e7c7db2434917a4cc260"/></dir><dir name="tracking"><file name="info.phtml" hash="1c532815b072488770a065822fda9422"/></dir><dir name="view"><file name="form.phtml" hash="5bd5dfe1a14d70543a1aac13c505b01a"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="0520b5738355658514187bf43f568d3f"/><file name="default.phtml" hash="e1105eb7f20c8ea04254c15b1b57538f"/></dir></dir><file name="items.phtml" hash="ccebcdf69b20c1bb312a752a8038b3fb"/><file name="tracking.phtml" hash="c522b6fdc72a558158802863c35dbb96"/></dir></dir><file name="totalbar.phtml" hash="a80bdf73fd4273f8ac0d51a27a22d143"/><dir name="totals"><file name="discount.phtml" hash="3b93a2f49448c0a541d3efc1f2e8617c"/><file name="due.phtml" hash="ca7bee40adf98113c433833922b6d6dd"/><file name="footer.phtml" hash="e1d0718b4351a0d20dfa5a6af4b1337b"/><file name="grand.phtml" hash="2b2c3d60f90758432b0f984aae035ea6"/><file name="item.phtml" hash="8923cbad49ccb0f5287be33f4d4eb16d"/><file name="main.phtml" hash="f688b8237218e5c35fb39d1a2d6f37f2"/><file name="paid.phtml" hash="5507d2a64a759f84ca399b92fad73af9"/><file name="refunded.phtml" hash="749beb69cd46b3d88dd1edcd6b40110c"/><file name="shipping.phtml" hash="0b049234e306c81d728bfc2edacf07ef"/><file name="subtotal.phtml" hash="3c3342d4032a7d32d295bc3cedb67d5a"/><file name="tax.phtml" hash="b5e5fb73262388965089b49e4b5e7475"/></dir><file name="totals.phtml" hash="b0f86f616208b11e1389dc7412832f54"/><dir name="view"><file name="form.phtml" hash="9323755bf939cfcc3edc322cec320438"/><file name="giftmessage.phtml" hash="0ca845c02eaa723b58de23c7b986b9f4"/><file name="history.phtml" hash="b5779e5d287d66b5bc5285986f96322d"/><file name="info.phtml" hash="101b84a3c5ac6a18bfa9b52f2cc5cfc6"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="cc3fedd0489a3f9d8b4c8a6e1b97f29e"/></dir></dir><file name="items.phtml" hash="d23adc55978d43fee672a146a4f956e6"/><dir name="tab"><file name="history.phtml" hash="c9f102bb42c95cc784795d0d9308d48a"/><file name="info.phtml" hash="c1f200a46d5b167a7717ed8f5416697a"/></dir><file name="tracking.phtml" hash="a034b329bf7a3c5a0db7967ce4bbc269"/></dir></dir><dir name="payment"><dir name="form"><dir name="billing"><file name="agreement.phtml" hash="127bcdf02155babd9eb75adf6817352e"/></dir></dir></dir><dir name="recurring"><dir name="profile"><dir name="view"><file name="info.phtml" hash="b83c4929f04f7b25e875073a6ade87e1"/></dir><file name="view.phtml" hash="5c8f883a1ac899b3962aff63dfaa88f2"/></dir></dir><dir name="transactions"><file name="detail.phtml" hash="790b50ef6cbbbc6e29d5bf2b55850157"/></dir></dir><dir name="store"><dir name="switcher"><file name="enhanced.phtml" hash="f934dc4dfb9df4935a24f143eb5065c3"/></dir><file name="switcher.phtml" hash="b870ae25d38ae4b3cc428ce1dcea81d2"/></dir><dir name="system"><file name="autocomplete.phtml" hash="074a430a0aac1f8d2ed27c57d18dca7c"/><dir name="cache"><file name="additional.phtml" hash="abac4992f67918d7e4112220304532c1"/><file name="edit.phtml" hash="b1902027b98e2ca7d00b87202c0e5e6e"/><file name="notifications.phtml" hash="3d9c258a8cb3d73d3938e0ae5de1cfe8"/></dir><dir name="config"><file name="edit.phtml" hash="298d533828a5a6996a90d1ec555e823c"/><dir name="form"><dir name="field"><file name="array.phtml" hash="ad33fd6fb01911b3b3306cebb99e1758"/></dir></dir><file name="js.phtml" hash="892e889d02d8bbd385ced6f3a6321553"/><file name="switcher.phtml" hash="f4455351e2027efc714e850bbe8cb210"/><dir name="system"><dir name="storage"><dir name="media"><file name="synchronize.phtml" hash="14ee555d5ad14db2a31905c182c86c7d"/></dir></dir></dir><file name="tabs.phtml" hash="a60b8c27198ece6fd2491b084a978619"/></dir><dir name="convert"><dir name="profile"><file name="process.phtml" hash="de67a80eba033323f002355b8174637b"/><file name="run.phtml" hash="8314278f7c72dd49f72bd1d23260f360"/><file name="upload.phtml" hash="0376f43508fe8248beade715e50b6380"/><file name="wizard.phtml" hash="c8447a56d913375a63ddf1a3bde909e9"/></dir></dir><dir name="currency"><dir name="rate"><file name="matrix.phtml" hash="2707ef5c5d1dd79d2814fc5bd92fbd82"/><file name="services.phtml" hash="6f2f854cf737e35dd30b21c40968f8d0"/></dir><file name="rates.phtml" hash="81ecafc08e627f0c697607051ae34f5a"/></dir><dir name="design"><file name="edit.phtml" hash="fce43082d75f3611b6b796e5e2f270a1"/><file name="index.phtml" hash="5579c7c493463079ebc115254cde5fc2"/></dir><dir name="email"><dir name="template"><file name="edit.phtml" hash="4f060631cb4bf6a393a0cdade3e59d32"/><file name="list.phtml" hash="4f9f9c8365cf23238a292bceb194a25d"/><file name="preview.phtml" hash="f20da9dd0e956cd534977ede18a0fe69"/></dir></dir><file name="info.phtml" hash="532bb2fd1c83545f5af94a893d553b48"/><dir name="shipping"><file name="applicable_country.phtml" hash="38c5275d777e14f84c2e0416f9c4d0e9"/><file name="ups.phtml" hash="84f542956ef59320a219e246b2fa4a08"/></dir><dir name="variable"><file name="js.phtml" hash="93a5de4aa2fb05d736273529b365919a"/></dir></dir><dir name="tag"><dir name="edit"><file name="container.phtml" hash="8a09e4ce6e4842bcec10e9eefbac24f8"/></dir><file name="index.phtml" hash="7624f30b01d1a331454092b1600890fb"/></dir><dir name="tax"><dir name="class"><dir name="page"><file name="edit.phtml" hash="09e65ebdacf278b9c39285a2cd9076d3"/></dir></dir><file name="importExport.phtml" hash="5bf476f1cb68d902f621f139fd0c18b3"/><dir name="rate"><file name="form.phtml" hash="c6eff4952efe8a9603797e7f368ab878"/><file name="title.phtml" hash="25b502570a78bb25c991656fe76a2752"/></dir><dir name="toolbar"><dir name="class"><file name="add.phtml" hash="8a5be799844e6ef01b1af94545c8cd53"/><file name="save.phtml" hash="9c7161620c66a932271fd6e3151b07b1"/></dir><dir name="rate"><file name="add.phtml" hash="7258d676f14fb0c6d430df627c88f399"/><file name="save.phtml" hash="f8ba6310d2ce384c2868f131a8f43285"/></dir><dir name="rule"><file name="add.phtml" hash="a5bf61b01ade5cacf1466e4ef2679029"/><file name="save.phtml" hash="c5fe290d3fa5910821250132dc48bd84"/></dir></dir></dir><dir name="urlrewrite"><file name="categories.phtml" hash="b517f33e9b00ee5bccd200c6842be86b"/><file name="edit.phtml" hash="b519cac483f85eed45143cd29ca97e1a"/><file name="selector.phtml" hash="6f139ebeafe43b031227a3328531811a"/></dir><dir name="weee"><dir name="renderer"><file name="tax.phtml" hash="83e8b753e1c756b6a4ef56edecc7b685"/></dir></dir><dir name="widget"><file name="accordion.phtml" hash="45cdaa43e24d1fb233f76ea697b25b1c"/><file name="breadcrumbs.phtml" hash="fc8beefb7eafb272540b94166ffc977a"/><dir name="form"><file name="container.phtml" hash="07482905548a8539c1c60e91e232e768"/><dir name="element"><file name="gallery.phtml" hash="a7d5ca3f97901a9ffd3fb969fe17c632"/></dir><file name="element.phtml" hash="efc0df6e3370d5d03562b8ab8d5394a1"/><dir name="renderer"><file name="element.phtml" hash="7bc6babc40e34bb4e180b2adea49083a"/><dir name="fieldset"><file name="element.phtml" hash="019127c717f067f5b877b787369ff410"/></dir><file name="fieldset.phtml" hash="9cec6163bf026ebd5fad165657de5bc2"/></dir></dir><file name="form.phtml" hash="332c8b6bd71628c067f1df8ac4e2596b"/><dir name="grid"><file name="container.phtml" hash="3eac12f7df27bdfeb2115467e8c03120"/><file name="massaction.phtml" hash="c1c2350057d49aa434939c79c3565567"/><file name="serializer.phtml" hash="2e63911f9b542509221285d85443e8ba"/></dir><file name="grid.phtml" hash="a390964f00c3d44f1178434586ac3e43"/><dir name="instance"><dir name="edit"><file name="layout.phtml" hash="185830ba937f88791c4d2724bdd516cc"/></dir><file name="js.phtml" hash="dc14439d24e4e9fe2607fb666d119101"/></dir><file name="tabs.phtml" hash="b462b8bade904f5dac2d6b86b35322d4"/><file name="tabshoriz.phtml" hash="06c61f0dc4ed54c4da1d2199da38e60f"/><file name="tabsleft.phtml" hash="613cdf8c451cf82fcc482e983c2a5ac3"/><dir name="view"><file name="container.phtml" hash="5a2f0defc17efe51b429624dc29c69cf"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="below_ie7.css" hash="b2bf3a91f389f2ea7912765a814ce10f"/><file name="boxes.css" hash="487698cbac89beffa9d2556cc681f571"/><file name="custom.css" hash="30ed634c4e5d7521cf9961c880c3cba4"/><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><file name="ie7.css" hash="15db0c436a5438265a91b2c1e4ac4626"/><file name="iestyles.css" hash="ea74f1466bd9faf4a83ee212d617845b"/><dir name="images"><file name="accordion_close.gif" hash="875409122fc82f5f6705e20dd801fd3d"/><file name="accordion_close.png" hash="6213698b5f69bb2907a5c7bb94b5fe8d"/><file name="accordion_open.gif" hash="d9d50e220b0b676094c6134a9708194e"/><file name="accordion_open.png" hash="9fbc3aba23ce5e0465e4d1cf3f6a7aee"/><file name="add_btn_icon-disabled.gif" hash="c8f6a5cfb455ef121efb56a747821f82"/><file name="add_btn_icon.gif" hash="7300097305b577ee564dc49102822d16"/><file name="address_list_li.gif" hash="79b917b514e35ce0a7833a5e268fd9f7"/><file name="address_list_on_arrow.gif" hash="3a2884ddcc87ebd48883662530b9de1b"/><file name="address_list_over_arrow.gif" hash="e826883c71b1184bd4f29433e39c18ad"/><file name="address_list_over_bg.gif" hash="56291480cc89de9d817205a5f23b66dd"/><file name="ajax-loader-tr.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="ajax-loader.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/><file name="application_view_tile.gif" hash="f595a133bf466cb91be23d9686fe6281"/><file name="arrow_sort_move.gif" hash="f5ac151a2b0cb1f07d6e771b8aee0ea7"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_create_order_totals.gif" hash="ff6ab75c050b959c539cc6a6fdff2934"/><file name="bg_notifications.gif" hash="a365594725a83585d989f722b3d8c458"/><file name="bg_window_mask.png" hash="93d6efad062d24c94c105802b138b6a5"/><file name="bkg_btn-close.gif" hash="df3f2332f0bad01e031deb22b81f630c"/><file name="bkg_btn-close2.gif" hash="822457d78fb3c21dc12e9777d83eb4f1"/><file name="blank.gif" hash="5722d7bd0f1e1379d0a2005a0a9ea401"/><file name="box_bg.gif" hash="4c501bd6db9d361c18780f106a809b03"/><file name="breadcrumb_bg.gif" hash="72c4adf6c75b4640ca8f7cadffa42266"/><file name="btn_add-image_icon.gif" hash="1d42210fd29fc534d9ed6b41e811d40f"/><file name="btn_add-variable_icon.gif" hash="a2db02e318d107d5b57b444c8d80b8f8"/><file name="btn_add-widget_icon.gif" hash="b4f66ca7f6097fbafd672e0b3f076ef4"/><file name="btn_add-widget_icon2.gif" hash="467acd3a14fb8be37191f5d2ec5a5b13"/><file name="btn_back_bg.gif" hash="8be512788b8044fe31aa8d00cc16ba7b"/><file name="btn_bare_bg.gif" hash="ddbbab8c0d201c3e502d50e7d4a3d64b"/><file name="btn_bg-disabled.gif" hash="079971a9d2c385fe353d35716ec9f26b"/><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="btn_bg.png" hash="6e3b7003381f919e8f6533444afaa978"/><file name="btn_cancel_bg.gif" hash="fcb3506858fcfa8d1778b0683dc89f54"/><file name="btn_delete_bg.gif" hash="ad740d0c16f2f6603c8ef023004d6539"/><file name="btn_go.gif" hash="1bd787868713767cc205e2ee25e41f62"/><file name="btn_login.gif" hash="79fa32d49d3f4e39d3fbf8327f9229e1"/><file name="btn_on_bg.gif" hash="709cf5b0be137db1ef8427688503bf37"/><file name="btn_over_bg.gif" hash="f91641168454c03d1fa72731ec97a2b3"/><file name="btn_show-hide_icon.gif" hash="0238c509b33ba56c25df9513bb48f804"/><file name="btn_task_bg.gif" hash="5e0594bd9cbfcc1e32ffa918d7f9c812"/><file name="button-close.png" hash="04d0907b2d7fc3240693497b199f64f5"/><file name="cancel_btn_active_bg.gif" hash="91ce403d286eef2b4e0c13733875882f"/><file name="cancel_btn_bg.gif" hash="26749cf4949ac27c30f597434d3bde65"/><file name="cancel_btn_icon.gif" hash="97e0cd94ed31d6f2a1181f627e60e9a3"/><file name="cancel_btn_over_bg.gif" hash="45eb4e883b17375961672f5390387c31"/><file name="cancel_icon.gif" hash="70a23b78353f0a7b9b118a937fcb7ea9"/><file name="config_tab_dt_bg.gif" hash="a33f71077ca4078caa794cae01d9fca7"/><file name="dashboard-close.gif" hash="5ae5afd61e937fcd2d5b84641255ee4d"/><file name="db-graph-bg.gif" hash="5d76efb7c3244f5684df2566782124ea"/><file name="db-graph-bottom-bg.gif" hash="b58ced87a38a10891106329ae882aa1c"/><file name="db-graph-line-bg.gif" hash="f16bb08e040c2c0a3e23b3f35c54b79b"/><file name="db-graph-line2-bg.gif" hash="744ebfdba20d050f4d252afc216394be"/><file name="db-graph-x-bg.png" hash="d5c26510718a78d22083916d80ef7a22"/><file name="db-header-bg.png" hash="3976cb6351e167686a501a85cf3a68e9"/><file name="db-menu-bg-hov.gif" hash="34ea76a6d105d90fcb63bf105aadb8f7"/><file name="db-menu-bg-up.gif" hash="b0f754872dff5f2f0dc57ba193fdfa4c"/><file name="db-menu-bg.gif" hash="ea534c3c09bb309e566b6ae876655e13"/><file name="db-menu-sep-last.gif" hash="a01fe34854e1187e466fd58d462c4106"/><file name="db-menu-sep.gif" hash="7c5ae1cd59a189261cc3244358d5c1ad"/><file name="db-menu-start.gif" hash="aa5cac2194d937cc7fa904ccfce70ecc"/><file name="db-scroll-bg.gif" hash="06d2411e3b5f350ab21b625439d2d69d"/><file name="db-scroll-but-bot-roll.png" hash="6bc5e482f3f6d8fb1fc5014ddea43706"/><file name="db-scroll-but-bot.png" hash="25c0181e76ff8ceb3c0ec59071b8c72c"/><file name="db-scroll-but-top-roll.png" hash="b7961f2a3b5b641694a9b0b30d58e46b"/><file name="db-scroll-but-top.png" hash="de7df96e961596be9ff556924259b98b"/><file name="db-scroll-roller.png" hash="e01dde7bd096c52179acf29a425a29e5"/><file name="db-tab-bottom-left-bg.gif" hash="124388d44ac58b029377c6311a4782d5"/><file name="db-tab-bottom-mid-bg.gif" hash="9c48f33aa8907cfcb227bc779c2e1dce"/><file name="db-tab-bottom-right-bg.gif" hash="1db45e6fd8abc67d59f96a676607b412"/><file name="db-tab-footer.gif" hash="cac8928acba75bc1edd73186ced78e5c"/><file name="db-tab-header-sep.gif" hash="580312af7441b6a62f7e32081c40fb0f"/><file name="db-tab-header.gif" hash="fdf493b9477fcff7e7be98405effc33d"/><file name="db-tab-left.gif" hash="3fe3c55267dbbdd1db2ff959ccc9e0be"/><file name="db-tab-right.gif" hash="b7a32c8b03efe2fbdb63215d0446e3be"/><file name="dotted_divider_dark.gif" hash="8bf1de196d9ea048bfb25155cedd2e9e"/><file name="dotted_divider_light.gif" hash="92e562bf2070110f6b0a15e29b845445"/><file name="edit_icon.gif" hash="dbda31751c78d964c04394e9d8533187"/><file name="entry_edit_head_arrow_down.gif" hash="985c3ce4439fbf8bb2216fc7e73a3f0b"/><file name="entry_edit_head_arrow_down2.gif" hash="d68dd0fbc2819858a26ea2835c05df77"/><file name="entry_edit_head_arrow_up.gif" hash="d2b90a1823fff9f3917f19b427410144"/><file name="entry_edit_head_bg.gif" hash="1086b7196e8b33c4f46e49fecef0f35f"/><file name="error-msg.png" hash="3cd27b642416dacdc28907c89d934886"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_account.gif" hash="c910fd1ff41b940d71b0835e02fc143e"/><file name="fam_application_form_delete.png" hash="972c2d998fc19572dd64af6b5e2e898e"/><file name="fam_application_view_tile.gif" hash="f595a133bf466cb91be23d9686fe6281"/><file name="fam_asterisk_orange.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="fam_bin.gif" hash="2fb388bc9f1d32d3802db8e91dc238bc"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_bullet_disk.gif" hash="9fe82691d960c18d3d315c3f9164af4f"/><file name="fam_bullet_error.gif" hash="008802f44288b732b59cfe9fdbfecefe"/><file name="fam_bullet_success.gif" hash="465a056a3ba3d94367f51c3c0b751391"/><file name="fam_calendar.gif" hash="0614207ce4e3e0a9bd631b39e7692e3c"/><file name="fam_cart.gif" hash="1f2fd2c8ac6574488ea78302b6856191"/><file name="fam_comment.gif" hash="5138f9a4b6019a5b14b8ff9a32a3cb89"/><file name="fam_creditcards.gif" hash="b75b8ce2f4fceb58f8082c48344560c7"/><file name="fam_folder_database.gif" hash="e86175ff0f389ade1fc7bf15e03346eb"/><file name="fam_folder_palette.gif" hash="c0941b9145e06d53cc0d17ac4c151764"/><file name="fam_folder_table.gif" hash="e2914ba75944acd2a9e2d338fa339e16"/><file name="fam_group.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="fam_help.gif" hash="2b5ed4c13a8e24456207b757826c7b2c"/><file name="fam_house.gif" hash="8eb2d580c5a40b7974f4263ca64fb94a"/><file name="fam_layout.gif" hash="5366a5f02260d3a860ef0c4787282ad6"/><file name="fam_leaf.png" hash="078d4f24683331b4557356a59e67b125"/><file name="fam_link.gif" hash="78590d5d8375d1baabe7b66d7b9ceb7d"/><file name="fam_lorry.gif" hash="174e86e45e76e7008fa3510cefa85047"/><file name="fam_money.gif" hash="6996bad465222fb6487cab94b4607846"/><file name="fam_money_add.gif" hash="70ceed401fe9913305f2362f7e26225d"/><file name="fam_monitor.gif" hash="f3bc806ff9d0907320b03018ba2d00ea"/><file name="fam_newspaper.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="fam_newspaper_delete.gif" hash="41acabfc19102be92d3ccbc66d1fede3"/><file name="fam_newspaper_error.gif" hash="009bfa425298e1d2e44e38e58cd97938"/><file name="fam_newspaper_go.gif" hash="eb43105f8e13e3a752d7ca33bb086831"/><file name="fam_package.gif" hash="bf9be09ef64d006455baa211b7c03983"/><file name="fam_package_go.gif" hash="e4f8d380c2f8e5a7345e360293433764"/><file name="fam_page_white.gif" hash="26940eb67826c5af72b6048c7c5a8335"/><file name="fam_page_white_edit.gif" hash="a4f88300b74ad592a5c47ed54ff07af9"/><file name="fam_rainbow.gif" hash="e8b04cc945b3582a181d4ddbc2d2325f"/><file name="fam_refresh.gif" hash="01bbef614023c0890812e76bc7ecf7e0"/><file name="fam_server_database.gif" hash="7901fa06ffd68ed730cf43bb560756fd"/><file name="fam_status_online.gif" hash="a80019ffa3a573f709772ed1099343fc"/><file name="fam_tag_orange.gif" hash="6ce735a0e590bda040b6e1614c42e58a"/><file name="fam_user.gif" hash="63bbdd6d9d7a27591907a7b87898e259"/><file name="fam_user_comment.gif" hash="014dfd31d9af40e3d5960b2b0d900da3"/><file name="fam_user_edit.gif" hash="f5b36e803060c6b82e639a4fad57b9f7"/><file name="filter_row_bg.gif" hash="013a0929a7b2ddc6823bdda17d08acc0"/><file name="footer_bg.gif" hash="7724711d3ca07a5e46a6030e86743a71"/><file name="gift-message-collapse.gif" hash="5b710f5faa9c7352a39c10e3ebbee6fc"/><file name="gift-message-expand.gif" hash="fd53a70cbb1ea048754657a63787e9cb"/><file name="gift-message-grid-column-bg.gif" hash="97a8a9b8cc4ab68e7404ccf1320f50a6"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="grid_sort_asc.gif" hash="b78c3a1a27ac9672a31b7d1bbac60322"/><file name="grid_sort_desc.gif" hash="d958b946eba3dba863d724530a0dba1a"/><file name="grid_th_bg.gif" hash="8f4349fac728858374e17edf03390977"/><file name="grid_th_onclick_bg.gif" hash="7bf331e2a41e5331c4210bdc6adc4383"/><file name="grouped_to_order_icon.png" hash="4bdae9a6199655027b8b8aeee8f80ce4"/><file name="header_bg.gif" hash="cbe510856afa5cb0c32642c1f9a8eceb"/><file name="header_top_bg.gif" hash="8440b04c5cb6b1451bb886bfbef260a5"/><file name="horiz_tabs_ul_bg.gif" hash="58dbd9c45f76993346c2bb788896248e"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="ico_success.gif" hash="0afb20898a704a106cb4c598868abf32"/><file name="icon_btn_add.gif" hash="7300097305b577ee564dc49102822d16"/><file name="icon_btn_back.gif" hash="89ed97cede3f68241446a62c96e3ce4c"/><file name="icon_btn_delete.gif" hash="dbde0b76d36cfd624bf0de166d0a265e"/><file name="icon_btn_save.gif" hash="f5da95ac65efff5f5cf9c8830202764d"/><file name="icon_edit_address.gif" hash="d1ca2bb3a5c86afd379f25d9fc4352e3"/><file name="icon_export.gif" hash="9a13f20c6a17b41b9c357545c2da5636"/><file name="icon_export.png" hash="fb299dd13df666516eabe16f59193383"/><file name="icon_feed.gif" hash="0366583ed6e285d028442fcdebb05072"/><file name="icon_feed.png" hash="8537f6f88fcff4aac793247143d14e42"/><file name="icon_note_list.gif" hash="8d25ba225ca09b687a78bff510df5d10"/><file name="icon_remove_address.gif" hash="2de2b3d02c19adfb93e9e43a392db178"/><file name="login_box_bg.gif" hash="e4654826eaa8d5ebc0ab18e9bee71e1d"/><file name="login_box_bg.jpg" hash="404e37f4ee9f4ff9bfcb638741c7581d"/><file name="login_box_bottom.jpg" hash="038f15261e74bc381484f2fcfa45a73b"/><file name="login_box_legal_bg.gif" hash="528ac4dd480c4fc00ac808bf17394c05"/><file name="login_logo.gif" hash="9cc90e7aa1210883000fe5319862ce14"/><file name="logo-large.gif" hash="5c77654c424b0a35cc24d28df5166dc4"/><file name="logo.gif" hash="c7e9f290d965f707e4c4a61bfdab58cb"/><file name="massaction_bg.gif" hash="8b5f4db3ab3ea09cd5bd0164d67c4f0d"/><file name="massaction_button_bg.gif" hash="4c8262817e48d007237124ce0e7f4d18"/><file name="massaction_links_delimiter.gif" hash="9a0337183b5b67c0eed75993d7f14d10"/><file name="middle_bg.gif" hash="ba4f176d2c553201ebab4aba5c6d3d20"/><file name="more_arrow.gif" hash="38bb4c0e9270250151486d0bb36c476f"/><file name="nav1_active.gif" hash="a7f9ec7689a65c6b796f0d9b97582d01"/><file name="nav1_bg.gif" hash="a1d4ef5b590ce0a425dc04e45ed06cbe"/><file name="nav1_off.gif" hash="5286cbd5ac9ec1b6c027d5b48a74bdab"/><file name="nav1_on.gif" hash="a7f9ec7689a65c6b796f0d9b97582d01"/><file name="nav1_over.gif" hash="2c70d6175f1c965c27dda0598a67e63c"/><file name="nav1_sep.gif" hash="5286cbd5ac9ec1b6c027d5b48a74bdab"/><file name="nav2_last_li_bg.png" hash="279935c9799679fc5894337eaabc7cf0"/><file name="nav2_last_li_over_bg.png" hash="39536f00824293d11242888a76f40a5f"/><file name="nav2_li_bg.gif" hash="0a4f34b0e4436c519d31203f19503b83"/><file name="nav2_li_bg.png" hash="2fad219d162324e9a19f2745d5b6d562"/><file name="nav2_li_over_bg.png" hash="dc37c4a4aab40ea2ae44dea5ea133a9d"/><file name="nav2_link_bg.gif" hash="dce00ddad351e72e83bc87274cbaa54a"/><file name="nav2_parent_arrow.gif" hash="60e012a14a077bd2257343facc369c0c"/><file name="nav3_bg.png" hash="2bc7af80ad8886013da38401b63ab6df"/><file name="nav_bg.gif" hash="1b857c7d35f35ef9f6cae9e03a4e3dff"/><file name="nav_list_bg.gif" hash="7a4e2bdb887c12d8a1152bbcc8c02a3c"/><file name="nav_nest_link_bg.gif" hash="1d0c6b374bf02ac4b5aa012955c431de"/><file name="nav_nest_link_over_bg.gif" hash="fae3c579a4d432503b1f4f929d070609"/><file name="nav_on_bg.gif" hash="ac624b580cae5a76f6c92abc5a44191d"/><file name="nav_parent_arrow.gif" hash="3a95559263e569dc1c8065cb2d9b3f2c"/><file name="note_bg.gif" hash="105967d7c15ab4610726eea52d862a97"/><file name="note_cell_bg.gif" hash="71e656d42f8ba8c2d477c6866c499b71"/><file name="note_msg_icon.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="notice-msg.png" hash="9cd1dfebccec8a2123d543fa49b17bd7"/><file name="pager_arrow_left.gif" hash="6e44f608dac8eb8be1d1ebee5a3285aa"/><file name="pager_arrow_left_off.gif" hash="30f5e56195ab3546b36f4016db5254be"/><file name="pager_arrow_right.gif" hash="cc79526156b7e0c8abce61fad3d53f77"/><file name="pager_arrow_right_off.gif" hash="f01b7dad9acf0180b5c62edbd7ea9939"/><file name="paypal_logo.gif" hash="871e205a64292121f4c893373acfb581"/><file name="paypal_section.png" hash="d032551b47e48dced277c4fa344ac7f6"/><file name="paypal_tick.gif" hash="e8685c1fb7c4c106ae4fd24e9bbf5a27"/><dir name="placeholder"><file name="thumbnail.jpg" hash="5c73b5aa515b1719f7b398f5131f91a8"/></dir><file name="process_spinner.gif" hash="345b30b4d0b6088d0151ecfbdf48c036"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="rule-ajax-loader.gif" hash="32dc1f5901143d36fbd7a6df3950819f"/><file name="rule_chooser_trigger.gif" hash="9c498e789c3ce734f5301c2475e2a04c"/><file name="rule_component_add.gif" hash="7914e57701ca26f5c8bf23c6bc3e1f25"/><file name="rule_component_apply.gif" hash="3f9b9025551da6963a9ecf8d184a204a"/><file name="rule_component_remove.gif" hash="4d785bcecfbe716fa4d749d20738a8f0"/><file name="save_btn_icon.gif" hash="f5da95ac65efff5f5cf9c8830202764d"/><file name="sec_nav_bg.gif" hash="99c6741591cdb2a2a128668a1d32d668"/><file name="section_menu_bg.gif" hash="f9edd44c92743a0c9ae9535a7992d6b1"/><file name="section_menu_bottom.gif" hash="167d2ef46ff80158c807b4b916501b28"/><file name="section_menu_link_bg.gif" hash="bcabd4fea0d67b181f21779564c2284b"/><file name="section_menu_link_over_bg.gif" hash="7da7e56567633aab279cf3aec6f49d8d"/><file name="section_menu_over_span_bg.gif" hash="f5ea5292f15ed62b99f0f51d9fff2c66"/><file name="section_menu_span_bg.gif" hash="dbf3916358e794ee809b4cf33903af2c"/><file name="section_menu_ul_bg.gif" hash="3aea6e5452f548438ca34e17954a9d6b"/><file name="side_col_bg.gif" hash="b3691fd62663457af39eaf71dd8cda5a"/><file name="simple_container_bg.gif" hash="56f1ac91169eb4896b8c91384fc8bf15"/><file name="sort-arrow-down.gif" hash="fc2cd9f756ce510c4470478d720f81cd"/><file name="sort-arrow-down.png" hash="dc65160d9d4d6cdd6bfe1b397a931975"/><file name="sort-arrow-up.gif" hash="39026b0ff1f0c18091caa60384491163"/><file name="sort-arrow-up.png" hash="da54e5306bdce67551aa415f5d7f7ea7"/><file name="sort_heading_bg.gif" hash="6066d09f237f556b0a4770e4788e7598"/><file name="sort_on_bg.gif" hash="0cb36788ed4fbf19e657acbc75a3f1b8"/><file name="sort_row_bg.gif" hash="f2e1c5cb26b9f5211419b99d30745244"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="sub_button_bg.gif" hash="e3f66dd60510f9f7e937e2e55442c30a"/><file name="success-msg.png" hash="c64cb2acc3d0eeba48fdea83620913ed"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="tabs_link_bg.gif" hash="34447929f5e6591ba9b5795b983fdfd4"/><file name="tabs_link_over_bg.gif" hash="2cf3f56884096055fb0bdf9474f280c9"/><file name="tabs_span_bg.gif" hash="bcabd4fea0d67b181f21779564c2284b"/><file name="tag_blue_edit.gif" hash="b2163ac3baf7d822b48593342846645a"/><file name="tn_cancel_bg.gif" hash="fcb3506858fcfa8d1778b0683dc89f54"/><file name="tooltip_bg.gif" hash="0aa4b866fc067a75f27ab749c1dabf74"/><file name="tooltip_corner.gif" hash="71146534671d5e0751505640b7c59859"/><file name="tooltip_top.gif" hash="032ff52a6ff5714cbdf6c1f62abaf7e5"/><dir name="tree_icons"><file name="join.gif" hash="4d5d614e0da056df815a4306d6368692"/><file name="joinbottom.gif" hash="4b3daa7f2cc584f1aac0d142275d7cba"/><file name="line.gif" hash="63ab38a6203262f15ca46c631232ea2c"/><file name="minus.gif" hash="d647fbbd0ec410b8f3bb3357b62eedcf"/><file name="minusbottom.gif" hash="b09d684cca7135ef728141aaf2464baa"/><file name="nolines_minus.gif" hash="eb2243a354ffcfac93ba0fe948f7167d"/><file name="nolines_plus.gif" hash="ec92b634b63608fb4b0dbf114e3b89e1"/></dir><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><file name="varien_logo.gif" hash="6f10d0fe572cb012947c164217e9e428"/><file name="warning_msg_icon.gif" hash="4cf6ec7f59ab09f9c18b3a4301714c6d"/><dir name="widget"><file name="catalog__category_widget_link.gif" hash="8435943009f1f774bbd6a4809c719eb8"/><file name="catalog__product_widget_link.gif" hash="62f2d7020143f98ba7514469eb612a7f"/><file name="catalog__product_widget_new.gif" hash="37a5af9f98ae73e180ad0cca05c95324"/><file name="cms__widget_block.gif" hash="b7b0b1517cc38b18b92841b33b312190"/><file name="cms__widget_page_link.gif" hash="b839dee210e61850a5858cc8634cbccd"/><file name="default.gif" hash="684143ae5531aa6ba22215f4fadeea6c"/><file name="reports__product_widget_compared.gif" hash="bd3e5a5015eb2c5c64f1d11835166dc4"/><file name="reports__product_widget_viewed.gif" hash="44d5cd71e4fb7235f9cff0c7e2b2f531"/></dir><file name="widget_placeholder.gif" hash="2bd8d72cf12f8d7d0a6a3268f97786ff"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/><file name="window_content.png" hash="08361df29783d46a2493cf0d8ad733a7"/><file name="window_top.png" hash="555a8db5efa3a252c2ead3d3dadd1075"/><dir name="wysiwyg"><file name="skin_image.png" hash="a521b0c60b001de4a3405e73c4a6cd4a"/></dir></dir><dir name="media"><file name="editor.swf" hash="259afd515d7b2edee76f67973fea95a6"/><file name="flex.swf" hash="60a8c242ca2ff0e70ed9a038749f4cc1"/><file name="uploader.swf" hash="1c300001dadd932ef6e33a2fadf941e1"/><file name="uploaderSingle.swf" hash="304dd960698c5786dcd64b0e138f80ca"/></dir><file name="menu.css" hash="6f39c760b70b8250c193c5311885193a"/><file name="print.css" hash="db77a54f0e6a7146cad6566eb200a0d5"/><file name="reset.css" hash="d45948716e2dd828a40715b9a43e2115"/></dir></dir></dir></target></contents>
16
  <compatible/>
17
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Adminhtml</name><channel>community</channel><min>1.6.2.0</min><max>1.7.0.0</max></package><package><name>Lib_Js_Ext</name><channel>community</channel><min>1.6.0.0</min><max>1.7.0.0</max></package></required></dependencies>
18
  </package>