Version Notes
*Bug Fixes
*Ship to Smartbox Terminal (Shipping Method)
Smartbox CSOD (Card Swipe on Delivery) (Payment Method)
Download this release
Release Info
Developer | Deepak Bhasin |
Extension | Smartbox_Smartboxparcels |
Version | 1.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.1.1
- app/code/community/Smartbox/Smartboxparcels/Model/Api/Smartbox/Abstract.php +12 -2
- app/code/community/Smartbox/Smartboxparcels/Model/Api/Smartbox/Terminals.php +3 -3
- app/code/community/Smartbox/Smartboxparcels/Model/Observer.php +7 -7
- app/code/community/Smartbox/Smartboxparcels/controllers/Adminhtml/SmartboxparcelsController.php +6 -7
- app/code/community/Smartbox/Smartboxparcels/etc/config.xml +1 -1
- app/code/community/Smartbox/Smartboxparcels/etc/system.xml +35 -5
- app/design/adminhtml/default/default/template/smartbox/smartboxparcels/parcels_edit.phtml +1 -1
- package.xml +21 -10
app/code/community/Smartbox/Smartboxparcels/Model/Api/Smartbox/Abstract.php
CHANGED
@@ -4,6 +4,8 @@ abstract class Smartbox_Smartboxparcels_Model_Api_Smartbox_Abstract extends Mage
|
|
4 |
{
|
5 |
|
6 |
const API_KEY_XML_PATH = 'carriers/smartbox_smartboxparcels/api_key';
|
|
|
|
|
7 |
const API_ENVIRONMENT_XML_PATH = 'carriers/smartbox_smartboxparcels/environment';
|
8 |
const API_STAGING_XML_PATH = 'carriers/smartbox_smartboxparcels/staging_api';
|
9 |
const API_PRODUCTION_XML_PATH = 'carriers/smartbox_smartboxparcels/production_api';
|
@@ -18,12 +20,20 @@ abstract class Smartbox_Smartboxparcels_Model_Api_Smartbox_Abstract extends Mage
|
|
18 |
|
19 |
if(Mage::getStoreConfig(self::API_ENVIRONMENT_XML_PATH) == Smartbox_Smartboxparcels_Model_System_Config_Environment::SMARTBOX_PRODUCTION){
|
20 |
$http->setUri(Mage::getStoreConfig(self::API_PRODUCTION_XML_PATH) . $call);
|
21 |
-
$api_key = array(
|
|
|
|
|
|
|
|
|
22 |
$http->setHeaders($api_key);
|
23 |
}
|
24 |
else{
|
25 |
$http->setUri(Mage::getStoreConfig(self::API_STAGING_XML_PATH) . $call);
|
26 |
-
$api_key = array(
|
|
|
|
|
|
|
|
|
27 |
$http->setHeaders($api_key);
|
28 |
}
|
29 |
|
4 |
{
|
5 |
|
6 |
const API_KEY_XML_PATH = 'carriers/smartbox_smartboxparcels/api_key';
|
7 |
+
const API_USERNAME_XML_PATH = 'carriers/smartbox_smartboxparcels/username';
|
8 |
+
const API_PASSWORD_XML_PATH = 'carriers/smartbox_smartboxparcels/password';
|
9 |
const API_ENVIRONMENT_XML_PATH = 'carriers/smartbox_smartboxparcels/environment';
|
10 |
const API_STAGING_XML_PATH = 'carriers/smartbox_smartboxparcels/staging_api';
|
11 |
const API_PRODUCTION_XML_PATH = 'carriers/smartbox_smartboxparcels/production_api';
|
20 |
|
21 |
if(Mage::getStoreConfig(self::API_ENVIRONMENT_XML_PATH) == Smartbox_Smartboxparcels_Model_System_Config_Environment::SMARTBOX_PRODUCTION){
|
22 |
$http->setUri(Mage::getStoreConfig(self::API_PRODUCTION_XML_PATH) . $call);
|
23 |
+
$api_key = array(
|
24 |
+
'X-Api-Key' => Mage::getStoreConfig(self::API_KEY_XML_PATH),
|
25 |
+
'X-Api-User'=> Mage::getStoreConfig(self::API_USERNAME_XML_PATH),
|
26 |
+
'X-Api-Passwd'=> Mage::getStoreConfig(self::API_PASSWORD_XML_PATH)
|
27 |
+
);
|
28 |
$http->setHeaders($api_key);
|
29 |
}
|
30 |
else{
|
31 |
$http->setUri(Mage::getStoreConfig(self::API_STAGING_XML_PATH) . $call);
|
32 |
+
$api_key = array(
|
33 |
+
'X-Api-Key' => Mage::getStoreConfig(self::API_KEY_XML_PATH),
|
34 |
+
'X-Api-User'=> Mage::getStoreConfig(self::API_USERNAME_XML_PATH),
|
35 |
+
'X-Api-Passwd'=> Mage::getStoreConfig(self::API_PASSWORD_XML_PATH)
|
36 |
+
);
|
37 |
$http->setHeaders($api_key);
|
38 |
}
|
39 |
|
app/code/community/Smartbox/Smartboxparcels/Model/Api/Smartbox/Terminals.php
CHANGED
@@ -25,7 +25,7 @@ class Smartbox_Smartboxparcels_Model_Api_Smartbox_Terminals extends Smartbox_Sma
|
|
25 |
} else {
|
26 |
|
27 |
//make a request to the API
|
28 |
-
$http = parent::buildRequest('
|
29 |
$responseTerminals = parent::makeRequest($http);
|
30 |
$terminals = array();
|
31 |
foreach($responseTerminals as $terminal){
|
@@ -59,7 +59,7 @@ class Smartbox_Smartboxparcels_Model_Api_Smartbox_Terminals extends Smartbox_Sma
|
|
59 |
if(!$tracking_id){
|
60 |
return ;
|
61 |
}
|
62 |
-
$http = parent::buildRequest('
|
63 |
|
64 |
return parent::makeRequest($http);
|
65 |
|
@@ -114,7 +114,7 @@ class Smartbox_Smartboxparcels_Model_Api_Smartbox_Terminals extends Smartbox_Sma
|
|
114 |
public function getTerminal($terminalId, $returnData = false)
|
115 |
{
|
116 |
// Retrieve terminal from the API
|
117 |
-
$http = parent::buildRequest('
|
118 |
$terminaldata = parent::makeRequest($http);
|
119 |
|
120 |
// If the terminal loads and isn't false
|
25 |
} else {
|
26 |
|
27 |
//make a request to the API
|
28 |
+
$http = parent::buildRequest('terminalSearch');
|
29 |
$responseTerminals = parent::makeRequest($http);
|
30 |
$terminals = array();
|
31 |
foreach($responseTerminals as $terminal){
|
59 |
if(!$tracking_id){
|
60 |
return ;
|
61 |
}
|
62 |
+
$http = parent::buildRequest('parcelSearch?invoiceNumber='.$tracking_id);
|
63 |
|
64 |
return parent::makeRequest($http);
|
65 |
|
114 |
public function getTerminal($terminalId, $returnData = false)
|
115 |
{
|
116 |
// Retrieve terminal from the API
|
117 |
+
$http = parent::buildRequest('terminalSearch?number=' . $terminalId);
|
118 |
$terminaldata = parent::makeRequest($http);
|
119 |
|
120 |
// If the terminal loads and isn't false
|
app/code/community/Smartbox/Smartboxparcels/Model/Observer.php
CHANGED
@@ -128,6 +128,8 @@ class Smartbox_Smartboxparcels_Model_Observer {
|
|
128 |
exit;
|
129 |
}
|
130 |
|
|
|
|
|
131 |
$receiver = array(
|
132 |
'first_name' => $billingAddress->getData('firstname'),
|
133 |
'middle_name' => $billingAddress->getData('middlename'),
|
@@ -138,22 +140,20 @@ class Smartbox_Smartboxparcels_Model_Observer {
|
|
138 |
'receiver' => $receiver,
|
139 |
'size' => '',
|
140 |
'warehouseId' => Mage::helper('smartbox_smartboxparcels')->getWarehouseId(),
|
141 |
-
'target_machine' => $
|
142 |
'grand_total' => $grandTotal );
|
143 |
-
|
144 |
|
145 |
-
$parcel_target_machine_details = array('id' => $
|
146 |
'address' => array(
|
147 |
'building_number' => $terminal_data['address'],
|
148 |
'city' => $terminal_data['city']
|
149 |
)
|
150 |
);
|
151 |
-
|
152 |
-
|
153 |
-
$smartbox_order_details = array('parcel_target_machine_id' => $terminalId,
|
154 |
'receiver_phone' => $billingAddress->getData('telephone'),
|
155 |
'parcel_detail' => $parcel_detail,
|
156 |
-
'parcel_target_machine' => $
|
157 |
'parcel_target_machine_detail' => $parcel_target_machine_details,
|
158 |
'receiver_name' => $billingAddress->getData('email'));
|
159 |
$data = array($quote_id => $smartbox_order_details);
|
128 |
exit;
|
129 |
}
|
130 |
|
131 |
+
$terminal_data = $terminal->getData();
|
132 |
+
|
133 |
$receiver = array(
|
134 |
'first_name' => $billingAddress->getData('firstname'),
|
135 |
'middle_name' => $billingAddress->getData('middlename'),
|
140 |
'receiver' => $receiver,
|
141 |
'size' => '',
|
142 |
'warehouseId' => Mage::helper('smartbox_smartboxparcels')->getWarehouseId(),
|
143 |
+
'target_machine' => $terminal_data['_id'],
|
144 |
'grand_total' => $grandTotal );
|
145 |
+
|
146 |
|
147 |
+
$parcel_target_machine_details = array('id' => $terminal_data['_id'],
|
148 |
'address' => array(
|
149 |
'building_number' => $terminal_data['address'],
|
150 |
'city' => $terminal_data['city']
|
151 |
)
|
152 |
);
|
153 |
+
$smartbox_order_details = array('parcel_target_machine_id' => $terminal_data['_id'],
|
|
|
|
|
154 |
'receiver_phone' => $billingAddress->getData('telephone'),
|
155 |
'parcel_detail' => $parcel_detail,
|
156 |
+
'parcel_target_machine' => $terminal_data['_id'],
|
157 |
'parcel_target_machine_detail' => $parcel_target_machine_details,
|
158 |
'receiver_name' => $billingAddress->getData('email'));
|
159 |
$data = array($quote_id => $smartbox_order_details);
|
app/code/community/Smartbox/Smartboxparcels/controllers/Adminhtml/SmartboxparcelsController.php
CHANGED
@@ -2,7 +2,6 @@
|
|
2 |
|
3 |
class Smartbox_Smartboxparcels_Adminhtml_SmartboxparcelsController extends Mage_Adminhtml_Controller_Action
|
4 |
{
|
5 |
-
|
6 |
protected function _initAction() {
|
7 |
$this->loadLayout()
|
8 |
->_setActiveMenu('sales/smartboxparcels')
|
@@ -38,11 +37,11 @@ class Smartbox_Smartboxparcels_Adminhtml_SmartboxparcelsController extends Mage_
|
|
38 |
|
39 |
if($parcelDetailDb){
|
40 |
|
41 |
-
|
42 |
-
|
43 |
|
44 |
|
45 |
-
|
|
|
46 |
|
47 |
|
48 |
$receiver_name = $parcelDetailDb->receiver->first_name;
|
@@ -59,11 +58,11 @@ class Smartbox_Smartboxparcels_Adminhtml_SmartboxparcelsController extends Mage_
|
|
59 |
'receiver_phone' => $parcelDetailDb->receiver->phone,
|
60 |
'receiverEmail' => $parcelDetailDb->receiver->email,
|
61 |
'size' => $parcelDetailDb->size,
|
62 |
-
'
|
63 |
'price' => $parcelDetailDb->grand_total,
|
64 |
'paymentType' => $parcelDetailDb->paymentType,
|
65 |
'paymentMethod' => $parcelDetailDb->paymentMethod,
|
66 |
-
'
|
67 |
|
68 |
$terminals = Mage::getSingleton('smartbox_smartboxparcels/api_smartbox_terminals');
|
69 |
$result = $terminals->createParcel($body);
|
@@ -72,7 +71,7 @@ class Smartbox_Smartboxparcels_Adminhtml_SmartboxparcelsController extends Mage_
|
|
72 |
$parcel_details = $terminals->getParcelDetails($parcelDetailDb->EShop_trackingNumber);
|
73 |
|
74 |
if($parcel_details && is_array($parcel_details)){
|
75 |
-
$tracking_number = $parcel_details['
|
76 |
}
|
77 |
else{
|
78 |
$tracking_number = 'failed to fetch';
|
2 |
|
3 |
class Smartbox_Smartboxparcels_Adminhtml_SmartboxparcelsController extends Mage_Adminhtml_Controller_Action
|
4 |
{
|
|
|
5 |
protected function _initAction() {
|
6 |
$this->loadLayout()
|
7 |
->_setActiveMenu('sales/smartboxparcels')
|
37 |
|
38 |
if($parcelDetailDb){
|
39 |
|
40 |
+
//$terminal = Mage::getModel('smartbox_smartboxparcels/terminal')->load($parcelDetailDb->target_machine);
|
|
|
41 |
|
42 |
|
43 |
+
$terminal_id = $parcelDetailDb->target_machine;
|
44 |
+
//$terminal_id = $terminal->getData()['_id'];
|
45 |
|
46 |
|
47 |
$receiver_name = $parcelDetailDb->receiver->first_name;
|
58 |
'receiver_phone' => $parcelDetailDb->receiver->phone,
|
59 |
'receiverEmail' => $parcelDetailDb->receiver->email,
|
60 |
'size' => $parcelDetailDb->size,
|
61 |
+
'eShopWarehouseId' => $parcelDetailDb->warehouseId,
|
62 |
'price' => $parcelDetailDb->grand_total,
|
63 |
'paymentType' => $parcelDetailDb->paymentType,
|
64 |
'paymentMethod' => $parcelDetailDb->paymentMethod,
|
65 |
+
'invoiceNumber' => $parcelDetailDb->EShop_trackingNumber);
|
66 |
|
67 |
$terminals = Mage::getSingleton('smartbox_smartboxparcels/api_smartbox_terminals');
|
68 |
$result = $terminals->createParcel($body);
|
71 |
$parcel_details = $terminals->getParcelDetails($parcelDetailDb->EShop_trackingNumber);
|
72 |
|
73 |
if($parcel_details && is_array($parcel_details)){
|
74 |
+
$tracking_number = $parcel_details[0]['awbNumber'];
|
75 |
}
|
76 |
else{
|
77 |
$tracking_number = 'failed to fetch';
|
app/code/community/Smartbox/Smartboxparcels/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Smartbox_Smartboxparcels>
|
5 |
-
<version>1.1.
|
6 |
</Smartbox_Smartboxparcels>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Smartbox_Smartboxparcels>
|
5 |
+
<version>1.1.1</version>
|
6 |
</Smartbox_Smartboxparcels>
|
7 |
</modules>
|
8 |
<global>
|
app/code/community/Smartbox/Smartboxparcels/etc/system.xml
CHANGED
@@ -186,10 +186,40 @@
|
|
186 |
</depends>
|
187 |
</api_key>
|
188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
<warehouse_id translate="label comment">
|
190 |
<label>Warehouse Id</label>
|
191 |
<frontend_type>text</frontend_type>
|
192 |
-
<sort_order>
|
193 |
<show_in_default>1</show_in_default>
|
194 |
<show_in_website>1</show_in_website>
|
195 |
<show_in_store>1</show_in_store>
|
@@ -202,7 +232,7 @@
|
|
202 |
<google_settings translate="label">
|
203 |
<label>Google API Settings</label>
|
204 |
<frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
|
205 |
-
<sort_order>
|
206 |
<show_in_default>1</show_in_default>
|
207 |
<show_in_website>1</show_in_website>
|
208 |
<show_in_store>1</show_in_store>
|
@@ -211,7 +241,7 @@
|
|
211 |
<google_api_key translate="label comment">
|
212 |
<label>Google Maps JavaScript API Key</label>
|
213 |
<frontend_type>text</frontend_type>
|
214 |
-
<sort_order>
|
215 |
<show_in_default>1</show_in_default>
|
216 |
<show_in_website>1</show_in_website>
|
217 |
<show_in_store>0</show_in_store>
|
@@ -223,7 +253,7 @@
|
|
223 |
<resitrctions translate="label">
|
224 |
<label>Restrictions</label>
|
225 |
<frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
|
226 |
-
<sort_order>
|
227 |
<show_in_default>1</show_in_default>
|
228 |
<show_in_website>1</show_in_website>
|
229 |
<show_in_store>1</show_in_store>
|
@@ -234,7 +264,7 @@
|
|
234 |
<frontend_type>select</frontend_type>
|
235 |
<frontend_class>shipping-applicable-country</frontend_class>
|
236 |
<source_model>adminhtml/system_config_source_shipping_allspecificcountries</source_model>
|
237 |
-
<sort_order>
|
238 |
<show_in_default>1</show_in_default>
|
239 |
<show_in_website>1</show_in_website>
|
240 |
<show_in_store>0</show_in_store>
|
186 |
</depends>
|
187 |
</api_key>
|
188 |
|
189 |
+
<username translate="label comment">
|
190 |
+
<label>Username</label>
|
191 |
+
<frontend_type>text</frontend_type>
|
192 |
+
<sort_order>43</sort_order>
|
193 |
+
<show_in_default>1</show_in_default>
|
194 |
+
<show_in_website>1</show_in_website>
|
195 |
+
<show_in_store>1</show_in_store>
|
196 |
+
<comment><![CDATA[
|
197 |
+
Username for accessing Smartbox's API.
|
198 |
+
]]></comment>
|
199 |
+
<depends>
|
200 |
+
<configure_api>1</configure_api>
|
201 |
+
</depends>
|
202 |
+
</username >
|
203 |
+
|
204 |
+
<password translate="label comment">
|
205 |
+
<label>Password</label>
|
206 |
+
<frontend_type>password</frontend_type>
|
207 |
+
<sort_order>44</sort_order>
|
208 |
+
<show_in_default>1</show_in_default>
|
209 |
+
<show_in_website>1</show_in_website>
|
210 |
+
<show_in_store>1</show_in_store>
|
211 |
+
<comment><![CDATA[
|
212 |
+
Password for accessing Smartbox's API.
|
213 |
+
]]></comment>
|
214 |
+
<depends>
|
215 |
+
<configure_api>1</configure_api>
|
216 |
+
</depends>
|
217 |
+
</password>
|
218 |
+
|
219 |
<warehouse_id translate="label comment">
|
220 |
<label>Warehouse Id</label>
|
221 |
<frontend_type>text</frontend_type>
|
222 |
+
<sort_order>45</sort_order>
|
223 |
<show_in_default>1</show_in_default>
|
224 |
<show_in_website>1</show_in_website>
|
225 |
<show_in_store>1</show_in_store>
|
232 |
<google_settings translate="label">
|
233 |
<label>Google API Settings</label>
|
234 |
<frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
|
235 |
+
<sort_order>46</sort_order>
|
236 |
<show_in_default>1</show_in_default>
|
237 |
<show_in_website>1</show_in_website>
|
238 |
<show_in_store>1</show_in_store>
|
241 |
<google_api_key translate="label comment">
|
242 |
<label>Google Maps JavaScript API Key</label>
|
243 |
<frontend_type>text</frontend_type>
|
244 |
+
<sort_order>47</sort_order>
|
245 |
<show_in_default>1</show_in_default>
|
246 |
<show_in_website>1</show_in_website>
|
247 |
<show_in_store>0</show_in_store>
|
253 |
<resitrctions translate="label">
|
254 |
<label>Restrictions</label>
|
255 |
<frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
|
256 |
+
<sort_order>48</sort_order>
|
257 |
<show_in_default>1</show_in_default>
|
258 |
<show_in_website>1</show_in_website>
|
259 |
<show_in_store>1</show_in_store>
|
264 |
<frontend_type>select</frontend_type>
|
265 |
<frontend_class>shipping-applicable-country</frontend_class>
|
266 |
<source_model>adminhtml/system_config_source_shipping_allspecificcountries</source_model>
|
267 |
+
<sort_order>49</sort_order>
|
268 |
<show_in_default>1</show_in_default>
|
269 |
<show_in_website>1</show_in_website>
|
270 |
<show_in_store>0</show_in_store>
|
app/design/adminhtml/default/default/template/smartbox/smartboxparcels/parcels_edit.phtml
CHANGED
@@ -26,7 +26,7 @@ $smartboxparcelsData = Mage::registry('smartboxparcelsData');
|
|
26 |
|
27 |
<tr>
|
28 |
<td class="label"><?php echo $this->__('EShop Tracking Number'); ?>:</td>
|
29 |
-
<td class="input-ele"><input class="input-text" name="parcel_EShop_trackingNumber" value="<?php echo $smartboxparcelsData['parcel_EShop_trackingNumber']; ?>" /></td>
|
30 |
</tr>
|
31 |
<tr>
|
32 |
<td class="label" colspan="3">
|
26 |
|
27 |
<tr>
|
28 |
<td class="label"><?php echo $this->__('EShop Tracking Number'); ?>:</td>
|
29 |
+
<td class="input-ele"><input class="input-text" name="parcel_EShop_trackingNumber" value="<?php echo $smartboxparcelsData['parcel_EShop_trackingNumber']; ?>" disabled /></td>
|
30 |
</tr>
|
31 |
<tr>
|
32 |
<td class="label" colspan="3">
|
package.xml
CHANGED
@@ -1,19 +1,29 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Smartbox_Smartboxparcels</name>
|
4 |
-
<version>1.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="https://opensource.org/licenses/osl-3.0.php">Open Software License</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Smartbox is an automated delivery solution that gives your customers the flexibility to pickup deliveries 24/7</summary>
|
10 |
-
<description><p>
|
11 |

|
12 |
-
<p>
|
|
|
|
|
|
|
|
|
|
|
13 |

|
14 |
-
<p>Smartbox
|
15 |

|
16 |
-
<
|
|
|
|
|
|
|
|
|
|
|
17 |
<p>1. Smartbox is the only available 24/7 parcel delivery service</p>
|
18 |
<p>2. It is safe, secure, private and convenient</p>
|
19 |
<p>3. Smartbox gives your customers the flexibility of 72 hrs for picking up their parcel</p>
|
@@ -24,13 +34,14 @@
|
|
24 |
<p>8. Every Smartbox location gives the details about the location, its nearest landmark as well as the operational timings</p>
|
25 |
<p>9. Easy to install and integrate</p>
|
26 |

|
27 |
-
For more information and to sign up as a partner, please email at <a href="mailto:partner@smartbox.in">
|
28 |
-
<notes
|
|
|
29 |
Smartbox CSOD (Card Swipe on Delivery) (Payment Method)</notes>
|
30 |
<authors><author><name>Deepak Bhasin</name><user>deepakbhasin</user><email>deepak@smartbox.in</email></author></authors>
|
31 |
-
<date>2016-08-
|
32 |
-
<time>
|
33 |
-
<contents><target name="magecommunity"><dir name="Smartbox"><dir name="Smartboxparcels"><dir name="Block"><dir name="Adminhtml"><dir name="Smartboxparcels"><file name="Grid.php" hash="57bff079cbf4aff5e168f0e10f584560"/><dir name="Renderer"><file name="Link.php" hash="b0fbe249bf1bb5a8dcd53d54446c8b5b"/></dir></dir><file name="Smartboxparcels.php" hash="48f16f5e71d2c864a7891f0a92ecad21"/><dir name="System"><dir name="Config"><dir name="Smartbox"><file name="Moduleversion.php" hash="1e7bd75ac86ea1ff046d21a0655a21f8"/></dir></dir></dir></dir><dir name="Form"><file name="Smartboxcsod.php" hash="763e5a2bc9573c8a25761008c0519314"/></dir><dir name="Info"><file name="Smartboxcsod.php" hash="53a8cb332b3152a2bb3696a983140f6a"/></dir><dir name="Onepage"><dir name="Billing"><file name="Option.php" hash="d6dd54dbb8a5b22e13ca6a3148faf648"/></dir><file name="Setup.php" hash="a8b86f7e23982cf065700743c3dfa57a"/><dir name="Shipping"><dir name="Method"><dir name="Smartbox"><file name="Table.php" hash="9feeb2fb0a0a906e6fb55b80166f46eb"/></dir><file name="Smartbox.php" hash="53a2bc05e0b9fdb703ef804ec58ab096"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Data.php" hash="ba841521e655d13d0f7cabaa1aa5364d"/></dir><dir name="Model"><dir name="Api"><dir name="Smartbox"><file name="Abstract.php" hash="20601302da6337dec1829b94bc6f25f5"/><file name="Terminals.php" hash="f9e97c94a9dd5854c863efce89f26e39"/></dir></dir><file name="Carrier.php" hash="fb8d76dd1f366eb38104fbc1053a3e03"/><file name="Observer.php" hash="40b712b7e1d079638aa6dfa03a1f2e46"/><dir name="Resource"><file name="AvailablePaymentMethods.php" hash="0f4d9fd054e4f32408c4572992d69395"/><dir name="Smartboxparcels"><file name="Collection.php" hash="0031c6ebc9300dbbebda9055f3099a37"/></dir><file name="Smartboxparcels.php" hash="c7f7f3cb489ae22f34a717ca68d7e609"/></dir><file name="Smartboxcsod.php" hash="6306f7bc6d77cd1f685f0e3dea761f72"/><file name="Smartboxparcels.php" hash="452df3b0ffe61455484208a8f804bd0f"/><dir name="System"><dir name="Config"><file name="Environment.php" hash="968f8a47e067dc15d3df73e151bc9260"/></dir></dir><file name="Terminal.php" hash="4fbfd94f8783d2a85d9ad6a2c607fc2b"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SmartboxparcelsController.php" hash="631fe8e1d13851deab463b08207e4f27"/></dir><file name="IndexController.php" hash="a8344117a690a5e1cc243b86136e8adc"/></dir><dir name="etc"><file name="config.xml" hash="24efad0a485aa8322830a2ac00c78b7f"/><file name="system.xml" hash="5ba77b06f61b55a9c1f6049a7ba6a215"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="sql"><dir name="smartboxparcels_setup"><file name="mysql4-install-1.0.0.php" hash="917b5cca5966d18d3f583525bc84d1d2"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Smartbox_Smartboxparcels.xml" hash="c874cc6022d41cc8359f9029145e3363"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="smartboxparcels.xml" hash="f3b5005d8e9eed69fb8a7631bb1d151d"/></dir><dir name="template"><file name="access_denied.phtml" hash="f16e0e9b311083b08760dbd7fd50fd7d"/><dir name="api"><file name="role_users_grid_js.phtml" hash="e7ed4fd254c7014a85afa39c4e9105ba"/><file name="roleinfo.phtml" hash="c87b56dce996498986d85b6916311614"/><file name="roles.phtml" hash="aadb8e2135c7fb363b847e73da2c6182"/><file name="rolesedit.phtml" hash="6675e5d65647b45fa5629dd9f40b5642"/><file name="rolesusers.phtml" hash="f9a52fc91ea7703259840a13873da208"/><file name="user_roles_grid_js.phtml" hash="70eec9b308badc04dd9bd07bf01c9688"/><file name="userinfo.phtml" hash="a481bf90b53781d327b047cbf3bc44ad"/><file name="usernroles.phtml" hash="a68a89bb00ae9d053ff0e839eb213118"/><file name="userroles.phtml" hash="b493e0445f8ff370e93bfa0a7c722fb8"/><file name="users.phtml" hash="65f54a0a1d3f6dc0456aca9e5ad3ebb9"/></dir><dir name="api2"><dir name="attribute"><file name="buttons.phtml" hash="fda45a6ffb936d49d9e9807116be167a"/><file name="resource.phtml" hash="05f266d3d503484f0bb0b625c40a4ead"/></dir><dir name="permissions"><dir name="user"><dir name="edit"><dir name="tab"><dir name="roles"><file name="js.phtml" hash="d1eff51beb6cd5b2599620f62e5ac722"/></dir></dir></dir></dir></dir><dir name="role"><file name="buttons.phtml" hash="1231c634dc4f5e8a5803e2a0314b0082"/><file name="users_grid_js.phtml" hash="4d337d6a5dbeebedfd25ce5a9f6a0ee6"/></dir></dir><dir name="authorizenet"><dir name="directpost"><file name="iframe.phtml" hash="352d24e86d10c43d09b93cc7935407b1"/><file name="info.phtml" hash="fa328e73394d433539fcf82f4a289bc3"/></dir></dir><dir name="backup"><file name="dialogs.phtml" hash="e6be55f4511a980ae050899e719da14b"/><file name="left.phtml" hash="548d169f10934bf1168ac47dd3111215"/><file name="list.phtml" hash="2d83a6690c025d80ab460a451d00fe7d"/></dir><dir name="bundle"><dir name="product"><dir name="composite"><dir name="fieldset"><dir name="options"><file name="bundle.phtml" hash="4ed9109a84d1a95cec5f5ce170ac667c"/><dir name="type"><file name="checkbox.phtml" hash="b896aac0d9d6b7290587bfc0f88d6b0d"/><file name="multi.phtml" hash="e99db803ec19af7ce4c1a607af25518f"/><file name="radio.phtml" hash="8b248cb2c388815e8facf4c1d839e513"/><file name="select.phtml" hash="6cca9e6884fc8d1f62573b4259dde2c1"/></dir></dir></dir></dir><dir name="edit"><dir name="bundle"><dir name="option"><file name="search.phtml" hash="5da4e2dd059064c9a5f93a30786605ef"/><file name="selection.phtml" hash="d28315dd8446ac45bbcc9cf92c963d27"/></dir><file name="option.phtml" hash="e7fc92a8fe84ab5e1e7f04bd9a5a3b3d"/></dir><file name="bundle.phtml" hash="54c6f1d3ea93a74af81be782a2c7abce"/></dir></dir><dir name="sales"><dir name="creditmemo"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="112e4ce4d3a1b5a6dfec10eb19b677cb"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="8b566f5b63bb44edc2ce7ad30f040a9c"/></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="1cedcd5f293937c9af72100ca0a44060"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="8188047bfc575cc01aa0bd0c490cb554"/></dir></dir></dir><dir name="order"><dir name="view"><dir name="items"><file name="renderer.phtml" hash="e3d77508312e35f38630734a3c1f3fc4"/></dir></dir></dir><dir name="shipment"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="69dfccd585acc7fe8f6cc021a00f9a00"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="a027cfbde717fe117e85d21c1e6ca29b"/></dir></dir></dir></dir></dir><dir name="captcha"><file name="zend.phtml" hash="8587aac0fb730b01e0b4ec074e3cfebb"/></dir><dir name="catalog"><dir name="category"><dir name="checkboxes"><file name="tree.phtml" hash="aab7541691d5c310e690bb880bff9905"/></dir><dir name="edit"><file name="form.phtml" hash="e6c0123b4bcdf4f418fb33f4e3bb5597"/></dir><file name="edit.phtml" hash="a34b1a52073bff25a8ea49fc08d9d2f3"/><file name="tree.phtml" hash="fc35df15e04837fde860a1feb2b8132d"/><dir name="widget"><file name="tree.phtml" hash="d5739e968e35ac9ae8a3564048e837ea"/></dir></dir><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="11f323e13844bbf09eaf9529e2e03da1"/></dir></dir></dir><dir name="product"><dir name="attribute"><file name="js.phtml" hash="00dba5608a72f564351cd9b51a47ffe3"/><dir name="new"><file name="created.phtml" hash="cbcfc6e955927c7f0e459faa061db638"/></dir><file name="options.phtml" hash="06aabddd75b990ff6f477878654470bf"/><dir name="set"><dir name="main"><dir name="tree"><file name="attribute.phtml" hash="d35502e17bde48b39955dd6cdbbe2248"/><file name="group.phtml" hash="a04252cc7cfa30ef5dffb75297e328ac"/></dir></dir><file name="main.phtml" hash="6fd8bf05c8ecd2dc505ae8fd092254e6"/><dir name="toolbar"><file name="add.phtml" hash="22df4525860f977442097c0ad1e0d2d3"/><file name="main.phtml" hash="badd34458e3c477dbfb113728ca335a9"/></dir></dir></dir><dir name="composite"><file name="configure.phtml" hash="ba511f03c3de0aa86966dc9cced58fb3"/><dir name="fieldset"><file name="configurable.phtml" hash="85b0f6cb2f592b996a000743779e880b"/><file name="grouped.phtml" hash="64b4a89a2ee2176207e999e3a5142896"/><dir name="options"><file name="js.phtml" hash="4a937d4744244329df18846ba9fafcc4"/><dir name="type"><file name="date.phtml" hash="5956941d6b956c1492992c9a80c4893d"/><file name="default.phtml" hash="bac833aed65ce839b80d84e9a5eddf52"/><file name="file.phtml" hash="64937a450a368c2c6b3dc566c3d9505d"/><file name="select.phtml" hash="efb6e28494fe29dc5487ff36bcd9db1f"/><file name="text.phtml" hash="44e2fc1240889fe3dff9566a38d168bd"/></dir></dir><file name="options.phtml" hash="359d33ae6af0de9e15ef02cf3c2600b9"/><file name="qty.phtml" hash="29699973c64d554bf45056cde226a624"/></dir></dir><file name="created.phtml" hash="3e91f396d63ba19b845916bf09303425"/><dir name="edit"><dir name="action"><file name="attribute.phtml" hash="fec9255163898e205b40fb7d02aa372b"/><file name="inventory.phtml" hash="f2592ece9da2b7f804b63305ec053db3"/><file name="websites.phtml" hash="608f1b13cdbbe7635f669a89f6d65ece"/></dir><file name="categories.phtml" hash="c8c1e690555e45acde9e4f364fac6ef5"/><dir name="options"><file name="option.phtml" hash="a86adf60ae3caecc9bdfb114d0630deb"/><dir name="type"><file name="date.phtml" hash="d2eca3718e0da428c42cc8e327c1e13f"/><file name="file.phtml" hash="ca7ede6da10c23f91a7343a2d86e0638"/><file name="select.phtml" hash="c8f0cb50b05bee5b2aa57abb06404f6d"/><file name="text.phtml" hash="9fd19c6d63681c86cf72f6e83e0aec1a"/></dir></dir><file name="options.phtml" hash="525c4cde3e354e6bfdd64aafe7d90587"/><dir name="price"><file name="group.phtml" hash="40db61c4c12a86d23db36ae62671639c"/><file name="tier.phtml" hash="1a6d4ead00764517c4606d70e655ce75"/></dir><file name="serializer.phtml" hash="1905ba3f977151c022412d01b6bc446f"/><dir name="super"><file name="config.phtml" hash="859e1e70e0fcb0100dbe889cb6bbbedc"/></dir><file name="websites.phtml" hash="072470573430c674ae047ac9f79ac1f2"/></dir><file name="edit.phtml" hash="c8a6928c144e19396e7847cd7e19a2d4"/><dir name="helper"><file name="gallery.phtml" hash="8dbf5b148248274a8c29137fa14b89b4"/></dir><file name="js.phtml" hash="e4e1323d66678e860a0f90f8124cb97e"/><file name="price.phtml" hash="adc3fc459374000090966b2ea19e87ec"/><dir name="tab"><file name="alert.phtml" hash="2df767787624bc6bc4dad12c224a29d7"/><file name="inventory.phtml" hash="cc8c56d5f7078aed100fc3c94109f581"/></dir><dir name="widget"><dir name="chooser"><file name="container.phtml" hash="b0441bbd3b94ee43001c2255479186bf"/></dir></dir></dir><file name="product.phtml" hash="b13c733c8b232cd608df725530e28272"/><dir name="wysiwyg"><file name="js.phtml" hash="ec4468d92342977d583f0271b93c130f"/></dir></dir><dir name="centinel"><dir name="authentication"><file name="complete.phtml" hash="40520bc69fe3c3e5ba11e5784e469341"/><file name="start.phtml" hash="56887a333919637e9dec93de41ddf055"/></dir><dir name="validation"><file name="form.phtml" hash="d972ff22d8434633d828845d0cac6f64"/></dir></dir><dir name="cms"><dir name="browser"><dir name="content"><file name="files.phtml" hash="68bada0587fddf28489cc7e55ff9dcbc"/><file name="newfolder.phtml" hash="d8bf9ec3103bb0e6e3d0f3b79914cb30"/><file name="uploader.phtml" hash="a8ff9109610ef720be65dd58760a18ac"/></dir><file name="content.phtml" hash="b78354e1292c3b9965c18f702a117edf"/><file name="js.phtml" hash="e22baed3b2d08b16601006e082a02081"/><file name="tree.phtml" hash="6d71e305fbb3a287ef718edc0459f33a"/></dir><dir name="page"><dir name="edit"><dir name="form"><dir name="renderer"><file name="content.phtml" hash="cd2d9795daf963254b4b6ea05358c04b"/></dir></dir></dir></dir></dir><file name="coming.phtml" hash="e4a74b021c0663fd4957cbc77f2ab07e"/><dir name="compiler"><file name="process.phtml" hash="ebcada3454b78adde37be6e59031199e"/></dir><dir name="connect"><dir name="extension"><dir name="custom"><file name="authors.phtml" hash="7034e46f5a8cf5a1a9cada4dad378443"/><file name="contents.phtml" hash="e930d68885e60c4d9a7961f21cf6d9f5"/><file name="depends.phtml" hash="8909363c74b836616302b4c7dc7fea97"/><file name="load.phtml" hash="e407878f2106a2c15a5b099fbd3a74e5"/><file name="package.phtml" hash="ab9e5391f1f531f406ca4fea27b198c4"/><file name="release.phtml" hash="ece48241880fc90fd0abe45c44c7837b"/></dir></dir></dir><dir name="currencysymbol"><file name="grid.phtml" hash="b2ed98585b1be0ae916c77b2e975f3bb"/></dir><dir name="customer"><dir name="edit"><file name="js.phtml" hash="0e6a44f446a1d6178c59e50200703ff5"/><dir name="tab"><dir name="account"><dir name="form"><dir name="renderer"><file name="group.phtml" hash="360a5a55ea3c6dc32d3692ef69182126"/></dir></dir></dir><dir name="view"><dir name="grid"><file name="item.phtml" hash="80b71d7491a306820977f7abe72a5f36"/></dir></dir></dir></dir><file name="online.phtml" hash="aded23c136ca5f56e43156650af4b47d"/><dir name="sales"><dir name="order"><dir name="create"><dir name="address"><dir name="form"><dir name="renderer"><file name="vat.phtml" hash="3ba45328a307ee94d4bf6e9d1777b017"/></dir></dir></dir></dir></dir></dir><dir name="system"><dir name="config"><file name="validatevat.phtml" hash="477e59d6fd900152fe375f4fe5e86657"/></dir></dir><dir name="tab"><file name="addresses.phtml" hash="7447ccdc5fd31fe86b290e40bfda1760"/><file name="cart.phtml" hash="66e29e32f745685e00f0085d6ad0a17e"/><file name="newsletter.phtml" hash="59b28844a90ae3681278e0086f0b952c"/><dir name="view"><file name="sales.phtml" hash="05e98f7109aa0dc80e2d408ae598b215"/></dir><file name="view.phtml" hash="5fda89cd46dd5f62fa945e677ac94045"/><file name="wishlist.phtml" hash="c36c372727ec42de3c35d99f8528d61e"/></dir></dir><dir name="dashboard"><dir name="graph"><file name="disabled.phtml" hash="1630cadd1204b8f89a6922909dd70503"/></dir><file name="graph.phtml" hash="7fac169d9d132b9578579359e7c75e40"/><file name="grid.phtml" hash="33c3636197573589300eee913932fd97"/><file name="index.phtml" hash="7772a8add2b7ce0b186b45530d1c72b9"/><file name="salebar.phtml" hash="41b1234ba0fb4de6e5fec438f68a4884"/><file name="searches.phtml" hash="13e6123d3a08bcdf6ec8ef5432d725d1"/><dir name="store"><file name="switcher.phtml" hash="48aa686aa55e58993d0bdf97cb898cb0"/></dir><file name="totalbar.phtml" hash="c244f4aa3f0feb76ef60c67baeed0dc0"/></dir><dir name="directory"><dir name="js"><file name="optional_zip_countries.phtml" hash="371c6ebf79ce190678d17ff0de2fc8d4"/></dir></dir><dir name="downloadable"><dir name="product"><dir name="composite"><dir name="fieldset"><file name="downloadable.phtml" hash="34e7aebdc04f332c641643752e19b842"/></dir></dir><dir name="edit"><dir name="downloadable"><file name="links.phtml" hash="6a1a2073913778b52b74345e136bd47c"/><file name="samples.phtml" hash="13700132d71a80565ebc6fe455a3ea95"/></dir><file name="downloadable.phtml" hash="f2569decb8f7a9c8744384330fa2543f"/></dir></dir><dir name="sales"><dir name="items"><dir name="column"><dir name="downloadable"><dir name="creditmemo"><file name="name.phtml" hash="10204067b251557681c0fd81420158c7"/></dir><dir name="invoice"><file name="name.phtml" hash="4e944aaa9ce97b705670cad172eae961"/></dir><file name="name.phtml" hash="a132f9ee544ca829339f23b66a05256b"/></dir></dir></dir><dir name="order"><dir name="creditmemo"><dir name="create"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="8f26a6a4417568635ad13493ac93e6a9"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="78548d59d3e491927bdc8bec5c2c7acd"/></dir></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="350b60099df29bf0f5ece797241c6ffe"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="b49682402b4082f8dc93bb584e7a6242"/></dir></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="d3d3809767c2bbaf7d50eaa35a64940b"/></dir></dir></dir></dir></dir></dir><dir name="eav"><dir name="attribute"><dir name="edit"><file name="js.phtml" hash="d35502e17bde48b39955dd6cdbbe2248"/></dir><file name="options.phtml" hash="670b9081e6d1193b14269fd6ee836175"/></dir></dir><dir name="email"><dir name="order"><file name="items.phtml" hash="c2a13888609a11e5671ebfa5c63c7420"/></dir></dir><file name="empty.phtml" hash="84124a899c334089a50ba519a44d2263"/><file name="example.phtml" hash="da47dd0b17d391c6e1d4ad61bc0a4774"/><file name="forgotpassword.phtml" hash="03c6cd5db5b07cb6007d18393d5badbb"/><file name="formkey.phtml" hash="e953267b5bfeeec7a82c707db7d971bc"/><dir name="giftmessage"><file name="form.phtml" hash="2ca69f13096274179b3a6b468d358164"/><file name="giftoptionsform.phtml" hash="20482920965d8300dcd02b50f55c637c"/><file name="helper.phtml" hash="91f038a3001766bc69aa3f5c8d6799d4"/><file name="popup.phtml" hash="6d0e51b64c91b356dc536fe6007c3433"/><dir name="sales"><dir name="order"><dir name="create"><file name="giftoptions.phtml" hash="17921d8fc29103aaf9847c0ad558befa"/><file name="items.phtml" hash="3ff631b5a9e1412b36be51ee52f9616e"/></dir><dir name="view"><file name="giftoptions.phtml" hash="d5e933eba495ee9964d56b2db95efe26"/><file name="items.phtml" hash="b94da14158004fcbab0fb357d7be9db4"/></dir></dir></dir></dir><dir name="googlebase"><file name="captcha.phtml" hash="6a18efab7a11459433c2fefe7ae76fc2"/><file name="items.phtml" hash="4614c0321dd68ca6aba22e8145ed7811"/><dir name="types"><dir name="edit"><file name="attributes.phtml" hash="57b6041880202d53d973ef3cc3009b37"/></dir></dir></dir><dir name="importexport"><file name="busy.phtml" hash="5eed597e67cc4f8633efcc992b949981"/><dir name="export"><dir name="form"><file name="after.phtml" hash="7c877a4cee6723f5c6950a8865c12e80"/><file name="before.phtml" hash="12938fb58361700d88847ba14b006e48"/></dir></dir><dir name="import"><dir name="form"><file name="after.phtml" hash="fc5dd506c89fa30468bbc671f85b04e4"/><file name="before.phtml" hash="98d910aea34ffb83d043c016c870f04c"/></dir><dir name="frame"><file name="result.phtml" hash="f695d343c9d0fca2f88481d44815d1a1"/></dir></dir></dir><dir name="index"><file name="notifications.phtml" hash="941155e58ba0a96bf3b5c479751b1005"/></dir><file name="login.phtml" hash="100ed897367559ff7c6af9d136407920"/><dir name="media"><file name="editor.phtml" hash="12716ffeab919fd4e4f1722fa6c52020"/><file name="uploader.phtml" hash="bf8f5de377eb34f2ec00687c62642af8"/></dir><dir name="moneybookers"><file name="info.phtml" hash="70cfafbe1533f199150a08fad76248ff"/><file name="jsinit.phtml" hash="050f4b74ca7dc39305c0c06455cd2e23"/><dir name="pdf"><file name="info.phtml" hash="baf77b77063fe647a41a8f19f07356c0"/></dir></dir><dir name="newsletter"><dir name="preview"><file name="iframeswitcher.phtml" hash="56e5c44d48f11efce4ab0e5e07b1a86d"/><file name="store.phtml" hash="f701b2fccfeaaeec7d52f4f4e12605ec"/></dir><dir name="problem"><file name="list.phtml" hash="e6b26fb53b5250df3dcc3522885dada6"/></dir><dir name="queue"><file name="edit.phtml" hash="964bc415008d0c4efd2a8ab873acb88f"/><file name="list.phtml" hash="2d6a16fefa408c37ce7b5f8b94eb4458"/><file name="preview.phtml" hash="45d3c9d1491089714991b9242199e513"/></dir><dir name="subscriber"><file name="list.phtml" hash="67a8552ab7094d1c16fc728862c8cdaf"/></dir><dir name="template"><file name="edit.phtml" hash="d39d033dbf4a0cbc77b4bb85e69a441f"/><file name="list.phtml" hash="47970e9bd6d7fbe0abb9bde6ccd1ba0f"/><file name="preview.phtml" hash="45d3c9d1491089714991b9242199e513"/></dir></dir><dir name="notification"><file name="baseurl.phtml" hash="6e1b4f131f2a25f5a57ca19cdc429165"/><file name="security.phtml" hash="1f0d9129bf4bc8943d800d273075094e"/><file name="survey.phtml" hash="e054d8fbe626f3bfc5cc4d2c7ffd6d05"/><file name="toolbar.phtml" hash="b596691a6f1e48ffdfd535740bea5da6"/><file name="window.phtml" hash="1eb6a56fe5e34e7d68a20d8b1460759a"/></dir><dir name="oauth"><dir name="authorize"><file name="button-simple.phtml" hash="b4431c0b39901ba6367273bf667abaa7"/><file name="button.phtml" hash="0ddaf4868e41d44911acf878d3e1b1a2"/><file name="confirm-simple.phtml" hash="8b63a3fb9c863c15a7be72b31f168e60"/><file name="confirm.phtml" hash="2f769a816521758007a18b086e522cbe"/><dir name="form"><file name="login-simple.phtml" hash="b3695ea1cfd5edd6589e82b3af015eb1"/><file name="login.phtml" hash="3f6cf168acaf902862e2939727f04d42"/></dir><file name="head-simple.phtml" hash="f3a142980a95090cbfeb58b84e091c00"/><file name="reject-simple.phtml" hash="8b4cfe4d5b1c80b3a4bbf31e8793811a"/><file name="reject.phtml" hash="5006a30b6512a60b72630ba1a9a03ad4"/></dir></dir><file name="overlay_popup.phtml" hash="4b3da056e8a2fa5e2c73533ea62270ff"/><dir name="page"><file name="footer.phtml" hash="894194907cab774cb54f31980a0bb560"/><file name="head.phtml" hash="6e28bc8c912dcbb41d0ea2b2603e2f4b"/><file name="header.phtml" hash="54513d826956b6dcd0e8d99f4326b5b0"/><dir name="js"><file name="calendar.phtml" hash="2fc77e055aedf8c4e0c6105d2c72e17a"/><file name="translate.phtml" hash="86a0bedf54c423e53acba72f106936db"/></dir><file name="menu.phtml" hash="b5952bd7f38231d451d630bd08fcdb67"/><file name="notices.phtml" hash="7c823196713ccf302dcf8cd7253811da"/></dir><file name="page.phtml" hash="33082759a189ae841c7607a9fcc53a9c"/><dir name="pagecache"><dir name="cache"><file name="additional.phtml" hash="339a7b83d3db6564d9dbbde2c74385a5"/></dir></dir><dir name="paygate"><dir name="form"><file name="cc.phtml" hash="1ae51c73b2e3dcb095a842667564886a"/></dir><dir name="info"><file name="cc.phtml" hash="4df6dd0aa107db58483ce78d67cd9701"/><file name="pdf.phtml" hash="f3664031eccf47a8ee4d0516f7c4db5c"/></dir></dir><dir name="payment"><dir name="form"><file name="banktransfer.phtml" hash="c39a0581b423304dd69e72ce020c6998"/><file name="cashondelivery.phtml" hash="c4c23f5760de1d89f0584105ca30d4bb"/><file name="cc.phtml" hash="1e6cc2c14e9443a285b7ca9034f1373e"/><file name="ccsave.phtml" hash="2bd1a350fd8eeb78093047b7e1744e64"/><file name="checkmo.phtml" hash="d7fe117569e83aef26e66975a7b13fff"/><file name="purchaseorder.phtml" hash="9a15a4f9fd2876d75b2f6a4fa97a76ac"/></dir><dir name="info"><file name="banktransfer.phtml" hash="4c8fb7158289602d1ab7cb9abef9a389"/><file name="checkmo.phtml" hash="814edc6462220e40b93b9b1403e12801"/><file name="default.phtml" hash="e64136c46387e022f30dd6dc2704d881"/><dir name="pdf"><file name="checkmo.phtml" hash="8936e1803e73ba95f7f0caea2d261bb5"/><file name="default.phtml" hash="38125ed6ef357cd8a39a2a6f076aee8c"/><file name="purchaseorder.phtml" hash="4338bdd0a7cdef7475ebaa30c5af8b01"/></dir><file name="purchaseorder.phtml" hash="3df08d59a6a4ec18e5f48b1ab0c18007"/></dir></dir><dir name="paypal"><dir name="system"><dir name="config"><file name="api_wizard.phtml" hash="0581916911560427c2d1c2747c97f8c8"/><file name="bml_api_wizard.phtml" hash="269b767004e1ed3e4559c78f07bfcaa5"/><dir name="fieldset"><file name="global.phtml" hash="cb30fa3942402c8d74143fd7b47730a4"/><file name="hint.phtml" hash="e2963b32816ba4379bb3debfb50f6376"/><file name="store.phtml" hash="de503d1e4b9772bbdfbf2f25bebd6f41"/></dir><dir name="payflowlink"><file name="advanced.phtml" hash="a0a3613af1d69ab14f70e53345974f89"/><file name="info.phtml" hash="eb0bd26e2d19c29f7772b697a1eac675"/></dir></dir></dir></dir><dir name="permissions"><file name="role_users_grid_js.phtml" hash="f79295ecefd1b0c38c70b819085ad785"/><file name="roleinfo.phtml" hash="5cd8272f2ff47738f0bd7bbe7be5c510"/><file name="roles.phtml" hash="4c57006503d7ab1762f3983a82b35915"/><file name="rolesedit.phtml" hash="6a58537452de4a37ce006ca90a07a007"/><file name="rolesusers.phtml" hash="f9a52fc91ea7703259840a13873da208"/><file name="user_roles_grid_js.phtml" hash="3edf9ccb48ee36580dbb55aed3a60fd9"/><file name="userinfo.phtml" hash="a481bf90b53781d327b047cbf3bc44ad"/><file name="usernroles.phtml" hash="a68a89bb00ae9d053ff0e839eb213118"/><file name="userroles.phtml" hash="b493e0445f8ff370e93bfa0a7c722fb8"/><file name="users.phtml" hash="65f54a0a1d3f6dc0456aca9e5ad3ebb9"/></dir><dir name="poll"><dir name="answers"><file name="list.phtml" hash="0e60ae4abe1bfe54e94ff4a9e4579d93"/></dir></dir><file name="popup.phtml" hash="36b3a02220e3eed1a183229a87d9c563"/><dir name="promo"><file name="fieldset.phtml" hash="4001d6e427d58bf5fc2ac743882d83ee"/><file name="form.phtml" hash="99e55e03d599254786c0f9b5d1d8989b"/><file name="js.phtml" hash="726659c9372aad53cc83cc622a393b25"/><file name="salesrulejs.phtml" hash="9d847a7878b713ab79bc53f1ed6223c3"/></dir><dir name="rating"><file name="detailed.phtml" hash="8b6a1e2c429e584df1ad18018eef0a1d"/><file name="options.phtml" hash="d78f1e8c367deb050126169dd283b910"/><dir name="stars"><file name="detailed.phtml" hash="b7b9950462df83923687381577630f11"/><file name="summary.phtml" hash="0641bd7475977fcc6d426d05dc8d31ca"/></dir></dir><dir name="report"><dir name="grid"><file name="container.phtml" hash="fe708e244a7f24fa47acede58687236e"/></dir><file name="grid.phtml" hash="68fcf7e4c583eb9a61e7877ed5c9a37d"/><dir name="refresh"><file name="statistics.phtml" hash="89edeb4bbf5fa37bf74e9cf8c37bec1c"/></dir><dir name="store"><dir name="switcher"><file name="enhanced.phtml" hash="be8ec6c18cd26455e2dd9b4ddb868ff8"/></dir><file name="switcher.phtml" hash="1adf956b6811fa86835dea8744638339"/></dir><file name="wishlist.phtml" hash="4e9bc78c8b97f499c8b14aa89bfe3d5c"/></dir><file name="resetforgottenpassword.phtml" hash="0bc4e8b75b254796d16e4a8dc2e539e2"/><dir name="review"><file name="add.phtml" hash="ae48ff5354c96cafe10a63b5c449d0c3"/></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="form.phtml" hash="45e57ce6a5215d1bca340015be5dd1f3"/><dir name="view"><file name="form.phtml" hash="7cdbada2b4bb4d489c97957b99033e3e"/><dir name="tab"><file name="info.phtml" hash="8ea757b2aab6f0308392ec34f9574ae0"/></dir></dir></dir></dir><dir name="items"><dir name="column"><file name="name.phtml" hash="d2a76b6e53ae00ddc54aa42b92cdba65"/><file name="qty.phtml" hash="5d31eb4883443a6dfd1583d8c5afb10d"/></dir><dir name="renderer"><file name="default.phtml" hash="63ba0f9e3a7d14d9f7f5addfd4723434"/></dir></dir><dir name="order"><dir name="address"><file name="form.phtml" hash="e13a757515264a68c9b0888ca2ed163a"/></dir><dir name="comments"><file name="view.phtml" hash="0076ebf8d5ad14ca67272c4b8c38fca5"/></dir><dir name="create"><file name="abstract.phtml" hash="007e6883c399662df798a8b97ea270a2"/><dir name="billing"><dir name="method"><file name="form.phtml" hash="f68fcb2c216b71b2b53eff2c355c80ca"/></dir></dir><file name="comment.phtml" hash="3d743691e380f2566e93f8683e81d316"/><dir name="coupons"><file name="form.phtml" hash="75ea0c900dcd1d51876f39cc7c9975f5"/></dir><file name="data.phtml" hash="202555c8768c57ef8911e4c478f5251c"/><dir name="form"><file name="account.phtml" hash="d6fa987310ac2de24a9c1fd2d88737ab"/><file name="address.phtml" hash="f92200ffff3cb256250c1d67fad92512"/></dir><file name="form.phtml" hash="eba120f9801e0433320217afdfe386e2"/><file name="giftmessage.phtml" hash="ad2c4e0e04599b4f1e045713147b5e8b"/><dir name="items"><file name="grid.phtml" hash="211ba25cfe9a6101cd1eac571d1a319a"/></dir><file name="items.phtml" hash="e9d2643af463142602d79bf289749cee"/><file name="js.phtml" hash="da6a180f6b2f9a5e3ebb7ff387eb0347"/><dir name="newsletter"><file name="form.phtml" hash="e0295db228d6725bd36249470038d0e8"/></dir><dir name="shipping"><dir name="method"><file name="form.phtml" hash="7a44e99e03f829556d32704c93f55a16"/></dir></dir><dir name="sidebar"><file name="items.phtml" hash="017ca7a8dddf537f3c0c145c7b580cb5"/></dir><file name="sidebar.phtml" hash="98d96bc44184b15fcf213e3e82b9bffe"/><dir name="store"><file name="select.phtml" hash="bd479211cc43007477b1a9b14e9024c2"/></dir><dir name="totals"><file name="default.phtml" hash="59c65c0626fda681e69f413653252a03"/><file name="grandtotal.phtml" hash="40029c81ec435f1e062d34f33483da9f"/><file name="shipping.phtml" hash="dacc1b6e7931a0e487cdd9831ab6700a"/><file name="subtotal.phtml" hash="720a5bf6757de297428b5c2696a88873"/><file name="tax.phtml" hash="0e2d214c4083f50006e08ecf75475c2e"/></dir><file name="totals.phtml" hash="6d69af2ab608d91e3d3434b83a323fcc"/></dir><dir name="creditmemo"><dir name="create"><file name="form.phtml" hash="496c8cb9069f5475cd23819e2dd56f32"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="98a71d30b8447bb4f4f83fd98b4817aa"/><file name="default.phtml" hash="96c1cb6b100898ee8979e060eb900c08"/></dir></dir><file name="items.phtml" hash="d41fbce372cff25c129a77dca064d010"/><dir name="totals"><file name="adjustments.phtml" hash="623400e8add8f635e8d0c93486b03b3a"/></dir></dir><dir name="view"><file name="form.phtml" hash="a06558799cddeeb7bef5082c4737171e"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="ad9bbc4186a60d71acdb40926b54b886"/><file name="default.phtml" hash="eabae6d309baaa34dd955f0962144f07"/></dir></dir><file name="items.phtml" hash="cb37e2ae89d1ec9157afbdc9c695a67e"/></dir></dir><file name="giftoptions.phtml" hash="9d6fd3b5221209d81aafaa4a51acbf73"/><dir name="invoice"><dir name="create"><file name="form.phtml" hash="f6ac8c3c03402e2f04e5603839a7bb63"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="b66a33a2d04a3d8e2e720b42bfdda77a"/><file name="default.phtml" hash="c3f383853448a846205b4068334824ed"/></dir></dir><file name="items.phtml" hash="5c5e5e39945a7c98db6a06b2374de8bb"/><file name="tracking.phtml" hash="9bab676013b0a4dfadc7533ce8406fbf"/></dir><dir name="view"><file name="form.phtml" hash="09190dfd33f8ab5cffbf288cd3d799a7"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="d8874ec3a7fd11b1f49a730326335981"/><file name="default.phtml" hash="2e13f3a0ce00a376f50c0a2ca09f6ff3"/></dir></dir><file name="items.phtml" hash="87d1891fbf81b37d019d83d28cfa4e8b"/></dir></dir><dir name="shipment"><dir name="create"><file name="form.phtml" hash="343679a13b371bddcd9842c412f2f262"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="c9bb5b6fdaced1add7d569a900db60b7"/><file name="default.phtml" hash="5a65793bebe4ae4beb9181373609454e"/></dir></dir><file name="items.phtml" hash="65c344039b8f6ed67d4d51e8fadb8e65"/><file name="tracking.phtml" hash="1deea759d70b3688851bc88959662c45"/></dir><dir name="packaging"><file name="grid.phtml" hash="60c14e96c4e55cef8f351113e12b9fa9"/><file name="packed.phtml" hash="1402136ed1223139b5d85738d7bfc891"/><file name="popup.phtml" hash="a88e2df3e59c4f6819791647644365fd"/></dir><dir name="tracking"><file name="info.phtml" hash="bfe5654232c736f872c352499b228f1e"/></dir><dir name="view"><file name="form.phtml" hash="2044ec12b33185232c776abe042d5f80"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="689ff4084b2b5daf8d4925cae9c8a278"/><file name="default.phtml" hash="3e95b5fbfdae35b55b3cd796596ee757"/></dir></dir><file name="items.phtml" hash="8be28843357710921679c1fdab5bb94d"/><file name="tracking.phtml" hash="a67561082eecfeaf2ef2c5ffdf77d909"/></dir></dir><file name="totalbar.phtml" hash="2412a9e5f7192915426730ea3797e662"/><dir name="totals"><file name="discount.phtml" hash="b573a8c136eba651e1bc70722487f420"/><file name="due.phtml" hash="8bb44fb98db246c7e66d274f60de7de7"/><file name="footer.phtml" hash="685194eb708559222b0ab585fee03c46"/><file name="grand.phtml" hash="572923438b5ebcd07acba2db2c6ede86"/><file name="item.phtml" hash="292206f74390496d4d13fd25100a1cb1"/><file name="main.phtml" hash="6ca17dcd77c0ff88bc7b69e8d6ab4ca4"/><file name="paid.phtml" hash="45810be720a229ff61b58c804688c0d0"/><file name="refunded.phtml" hash="7172cd8ced4e58dd8b72386baf213bcd"/><file name="shipping.phtml" hash="6a673cfd519496b5693d80c417afd646"/><file name="subtotal.phtml" hash="26aa126949084c4325c56b94f2c6e78f"/><file name="tax.phtml" hash="ee0e9ff9d7fb6eb8fc90c077aba734df"/></dir><file name="totals.phtml" hash="8e790071149922fe1dca04d6d2c822cd"/><dir name="view"><file name="form.phtml" hash="3685cad2427f47b70a71c12917f80d02"/><file name="giftmessage.phtml" hash="5a640d1f98a8c6bfc7e396fcfd913f17"/><file name="history.phtml" hash="ef65801e2e398a7f4c6683c04359708b"/><file name="info.phtml" hash="477af3aa2fc6c581324c2da8fc85e7e4"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="be6eb7dea83a15491a27b59f2f3ecaf1"/></dir></dir><file name="items.phtml" hash="a271cb32875b030a6ef0a8ca11c00f60"/><dir name="tab"><file name="history.phtml" hash="39b266f4651233fce46e654314c883a8"/><file name="info.phtml" hash="7425d7f601f069cef3bc82f89aab8aa7"/></dir><file name="tracking.phtml" hash="4bf94aa7cd9bfe101ccf11a3b03330a0"/></dir></dir><dir name="payment"><dir name="form"><dir name="billing"><file name="agreement.phtml" hash="c5d78af6b3b3f1a77b21a1d3a5b25d4a"/></dir></dir></dir><dir name="recurring"><dir name="profile"><dir name="view"><file name="info.phtml" hash="723ccdc21a64f26e27ada8cac6723680"/></dir><file name="view.phtml" hash="40ce04cf992156f52b64a0607e54fa3c"/></dir></dir><dir name="transactions"><file name="detail.phtml" hash="1c5cdcd8dda49a9509b768cdfdb72034"/></dir></dir><dir name="smartbox"><dir name="smartboxparcels"><file name="parcels_edit.phtml" hash="29d416ec7b8d8b641124159754734ce6"/></dir></dir><dir name="store"><dir name="switcher"><file name="enhanced.phtml" hash="3601d2e2b1f78877545e5df2649a566f"/><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="048535d9659132e8f95b43114d4e9399"/></dir><file name="fieldset.phtml" hash="0fe21a855caf73bfb5c6fb3944e79791"/></dir></dir></dir><file name="switcher.phtml" hash="efff4b9e29afba9c112a49ea3d046bab"/></dir><dir name="system"><file name="autocomplete.phtml" hash="8b5d38c8c5edeca4097ec034537bc72f"/><dir name="cache"><file name="additional.phtml" hash="4a358ef7fdfeb1057f606f6da32a74b2"/><file name="edit.phtml" hash="f86724576022e29830780626872a47b6"/><file name="notifications.phtml" hash="3df44cdccd0060fe1abee935b8286206"/></dir><dir name="config"><file name="edit.phtml" hash="5e6aa8af236c11e1f2a589967feea616"/><dir name="form"><dir name="field"><file name="array.phtml" hash="b052d67d29fe1f0bf658fa3bfcb927db"/></dir></dir><file name="js.phtml" hash="cb6dbbd94d2f51adcf96fd869bca10d6"/><file name="switcher.phtml" hash="7ecf2afd584622d515958b17110e95de"/><dir name="system"><dir name="storage"><dir name="media"><file name="synchronize.phtml" hash="54be3d284f6216d6d381a189f837d1c6"/></dir></dir></dir><file name="tabs.phtml" hash="45542459c7f472b326bc5f0cbed32a56"/></dir><dir name="convert"><dir name="profile"><file name="process.phtml" hash="fbac2ffc8dd7fdb396fd2a786466b726"/><file name="run.phtml" hash="fbe4d6b74412f3e37ea98e65fc0d0172"/><file name="upload.phtml" hash="d512e0684b3ec25d2a02f140547f3504"/><file name="wizard.phtml" hash="6020ebe4ddcda276a0a6d175041af521"/></dir></dir><dir name="currency"><dir name="rate"><file name="matrix.phtml" hash="ecfa9b2248909ff344d3c6b94e2ee142"/><file name="services.phtml" hash="af2877d9ab9431e04f9eaf1ada5d0d67"/></dir><file name="rates.phtml" hash="7183e63cc6521fa8093289097511ed9c"/></dir><dir name="design"><file name="edit.phtml" hash="97c792c4b1162b7c97c3af63f504772f"/><file name="index.phtml" hash="759e2de6f7c07ebf5a48c7a2535dab0b"/></dir><dir name="email"><dir name="template"><file name="edit.phtml" hash="350a633c06c804f72b1d79f37b0e74e2"/><file name="list.phtml" hash="ed262248048d713732a46fa2ce2f2874"/><file name="preview.phtml" hash="69a491beaab277ebc9fba5be3e17961e"/></dir></dir><file name="info.phtml" hash="4144c47693bc965fe51cf444ea3a15c1"/><dir name="shipping"><file name="applicable_country.phtml" hash="64ad2bd504a525b8ae73f1462a15322f"/><file name="ups.phtml" hash="84f8b5312989ef040c968049e5de7f07"/></dir><dir name="store"><file name="cell.phtml" hash="b42c9e6b379a7913341195396d895e67"/><file name="container.phtml" hash="c480855485d23e03159ef01565efd7b9"/><file name="tree.phtml" hash="5ba1b7d2e4df8aa2d2f949f2340bc6f3"/></dir><dir name="variable"><file name="js.phtml" hash="4ed7e1a0360cf68c96e4406eabe2be5e"/></dir></dir><dir name="tag"><dir name="edit"><file name="container.phtml" hash="a0b275599646822885dc4ce66b470b61"/></dir><file name="index.phtml" hash="94f7cb60c467ba2ba1d01f89ee96ed41"/></dir><dir name="tax"><dir name="class"><dir name="page"><file name="edit.phtml" hash="7fbf05b3730192942b682191f36c3f38"/></dir></dir><file name="importExport.phtml" hash="c6cd9b3b7dbdc010c5e9a7deb7b14fcb"/><file name="notifications.phtml" hash="095d6e3e263de323b0a89021a2073511"/><dir name="rate"><file name="form.phtml" hash="4fa65c1733fa36fb9bc88e4293c8c5e4"/><file name="title.phtml" hash="71b1ce0c30fdc68c05477a0adc98c331"/></dir><dir name="toolbar"><dir name="class"><file name="add.phtml" hash="8931d8051aee5c6f3ba410383ab17998"/><file name="save.phtml" hash="8644a5b7c0c98575af9487ff43ab5492"/></dir><dir name="rate"><file name="add.phtml" hash="fd9f654401d1bf2752166010f1dbf105"/><file name="save.phtml" hash="10811adbf34f5bf46fcb7d1e5272c7e6"/></dir><dir name="rule"><file name="add.phtml" hash="c910d4ac4c192e2b32060b122849170e"/><file name="save.phtml" hash="9bcbcfb3faac7f0b88f72794d96944aa"/></dir></dir></dir><dir name="urlrewrite"><file name="categories.phtml" hash="2341db857f012f2f52d0fc8c1d8c7e6e"/><file name="edit.phtml" hash="531f331990debf0b404527279f62bffa"/><file name="selector.phtml" hash="3f2b0ae0f329bf07abc6f93bf8c0c560"/></dir><dir name="usa"><dir name="dhl"><file name="unitofmeasure.phtml" hash="1c0c8fcae764f6c21693de32f1ffc234"/></dir></dir><dir name="weee"><dir name="renderer"><file name="tax.phtml" hash="a3893c83634e24d8e29c95a4e0e4fd28"/></dir></dir><dir name="widget"><file name="accordion.phtml" hash="76c031482f0b51da34dc03c6ba164c0b"/><file name="breadcrumbs.phtml" hash="cd15f81ff0bd532cf14c5e18b005e655"/><dir name="form"><file name="container.phtml" hash="1a4fe20bf205d90836589d72c320bb4e"/><dir name="element"><file name="gallery.phtml" hash="85c089019dce177542b5958aa6c7ae1f"/></dir><file name="element.phtml" hash="69207d9ba085547dbbdc8f7fc5a9f9ab"/><dir name="renderer"><file name="element.phtml" hash="36a3edebdd41ad25e6f2b20546eb34b9"/><dir name="fieldset"><file name="element.phtml" hash="dbec801321bc8c514f429ccc1b318732"/></dir><file name="fieldset.phtml" hash="8824417ce6d3c9bd558e7e8850cfc18d"/></dir></dir><file name="form.phtml" hash="163d786f90d9f53a2e1e94fed18dac39"/><dir name="grid"><file name="container.phtml" hash="c480855485d23e03159ef01565efd7b9"/><file name="massaction.phtml" hash="7b7f850e3c67c10fed8509a63360d3ed"/><file name="serializer.phtml" hash="086e1af72a9d27c5f47d349ca18d3b29"/></dir><file name="grid.phtml" hash="7ccc82490cd5c640c121c991f42e57db"/><dir name="instance"><dir name="edit"><file name="layout.phtml" hash="db5bfcfe253b4ed4eb22de855000982b"/></dir><file name="js.phtml" hash="a99e9837e8219ff737029dab6a649eae"/></dir><file name="tabs.phtml" hash="c46a5b080ce30f6534d994e14ee1c3f7"/><file name="tabshoriz.phtml" hash="69c4c09711befca10ce612f147f6c2af"/><file name="tabsleft.phtml" hash="8e8d4abcb036f5651793530f9427285e"/><dir name="view"><file name="container.phtml" hash="9c3fb6b5eafbea51f1a772da470f2eb3"/></dir></dir><dir name="xmlconnect"><dir name="edit"><dir name="tab"><file name="content.phtml" hash="cccdb617292cd9ac119af75a0eaf3e52"/><dir name="design"><file name="autocomplete.phtml" hash="8d0e4503c4bb5ce08ac12d701483c5b9"/><file name="image_edit.phtml" hash="169954201fa5130ab412f3d211520ce2"/><file name="images_android.phtml" hash="afedde6e67b886ee3c8093530799ac4e"/><file name="images_ipad.phtml" hash="52ce430db787cd687a765907383c2254"/><file name="images_iphone.phtml" hash="dd8088323457d1695197a6353fe02820"/><dir name="preview"><file name="banner_rotator.phtml" hash="b9bf00f6fe5a0ab14780a013809c182c"/><file name="catalog_android.phtml" hash="cd6db3fe4cfd03733355c68679d729ef"/><file name="catalog_hor_ipad.phtml" hash="2931348d3b3261505cbefb28ed4b1391"/><file name="catalog_ipad.phtml" hash="f07f8a5574d9e603e4db4c6b397ce456"/><file name="catalog_iphone.phtml" hash="2f467d91084f9eb38e73e5b78e130bbc"/><file name="home_android.phtml" hash="60954fb665ebcf1fe9df88827ab8e89e"/><file name="home_hor_ipad.phtml" hash="cb168b42074ea93752fa0af8e049c31d"/><file name="home_ipad.phtml" hash="51186c2bc5282e26c3a9741380484af8"/><file name="home_iphone.phtml" hash="d0e43871417c80802461ffbfdfd4122f"/><file name="productinfo_iphone.phtml" hash="bd15b96799a82ca62caf42dd1441c5db"/><file name="tab_items_android.phtml" hash="4169fcaba1c4ab0737ef2553213023e1"/><file name="tab_items_ipad.phtml" hash="d53134640f8298101ecadbea245313b1"/><file name="tab_items_iphone.phtml" hash="5249c8905d8a4d966f4be11b1e204d22"/></dir><file name="preview_android.phtml" hash="b2b641963de77ea583ebfff0c7c5583a"/><file name="preview_ipad.phtml" hash="e5ff74cf84b189d86b3ed42939dd0ca7"/><file name="preview_iphone.phtml" hash="32f44df018373682daeae7ae5dfd19ae"/></dir><file name="design.phtml" hash="8734a68289c2071133bc2e3c727f83d6"/><file name="offlinecatalog.phtml" hash="32fd2419935b027df57226a116d1447b"/></dir></dir><dir name="form"><dir name="element"><file name="addrow.phtml" hash="ca76c0aac816736be0a85886f3e1aab2"/><file name="app_tabs_android.phtml" hash="054dcbf7761413d32f3604fd11bf30fa"/><file name="app_tabs_ipad.phtml" hash="7d8f990be10716b1ac9bd76290820108"/><file name="app_tabs_iphone.phtml" hash="06a4261f932168b79700c703132dec5f"/><dir name="country"><file name="androidmarket.phtml" hash="8d08ec7efb94b394c01c0f46eff762d7"/><file name="istore.phtml" hash="6a1057c17de4e2f89c5cfef4a432a3e3"/></dir><file name="themes.phtml" hash="eacd3bd1ef34fb756ededba6e04534f2"/></dir></dir><dir name="mobile"><file name="notification_helper.phtml" hash="c018a571d40518f0d84f208d89b4c8cb"/></dir><dir name="submission"><file name="app_icons_preview.phtml" hash="0f4fb7b7155c4ee2ff256312b8ce6a6d"/><file name="container.phtml" hash="4823bde69a271a804c577a53f3e9a872"/></dir><dir name="template"><file name="preview.phtml" hash="8dbc5932abfb66daa1afd6fc6a1fcfae"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="smartbox"><dir name="smartboxparcels"><file name="layout.xml" hash="3fbf544252f23c7a00b7eeb4edd2b052"/></dir></dir></dir><dir name="template"><dir name="smartbox"><dir name="smartboxparcels"><dir name="form"><file name="smartboxcsod.phtml" hash="b322862f7cc151080323488a95704243"/></dir><dir name="onepage"><dir name="billing"><file name="option.phtml" hash="b07c5bb135fac39e66944498e0520c2d"/></dir><dir name="progress"><file name="shipping_method.phtml" hash="e912c488c57c9b99c0d8d10e05d818d9"/></dir><file name="setup.phtml" hash="5537d1d67ac7fd693c1370e667f411a8"/><dir name="shipping"><dir name="method"><dir name="smartbox"><file name="table.phtml" hash="bdddbd6a12b7f0b11408755bdc70d790"/></dir><file name="smartbox.phtml" hash="3893a848a6e91e151137ee8cef4a95c4"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="smartbox"><dir name="fonts"><file name="smartbox-icon.eot" hash="01525b5cf95c9efeba43a2280e2300d6"/><file name="smartbox-icon.svg" hash="678a5b78314e464b3879809c64a1ef9f"/><file name="smartbox-icon.ttf" hash="37378fd364e51d6c09540d56e9981c86"/><file name="smartbox-icon.woff" hash="a2e9fc0d7a841e5b99d12ea9b4bc73b5"/></dir><file name="smartbox.css" hash="7f0c0b8db688b21d8c855a8b79b710e2"/></dir></dir><dir name="images"><dir name="smartbox"><dir name="smartboxparcels"><file name="ajax-loader.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/><file name="list-icon.png" hash="35be7afb401b0c77a3d7c136e12524e7"/><file name="logo.png" hash="9c28d24e5972cf937ca33a0cb0aacecf"/><file name="smartbox_csod.jpg" hash="59e314fb56221127e9d68d437fd1b035"/><file name="smartbox_csod.png" hash="ec941bf7c386aaf9de2953fadfb8130a"/></dir></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="smartbox"><file name="jquery.geocomplete.js" hash="33fc6f9335ab478d3e8cd5e3e63c6ce0"/><file name="smartbox.js" hash="7f89f8ddd44c704cbb83acf1e43e47d5"/></dir></dir></target></contents>
|
34 |
<compatible/>
|
35 |
<dependencies><required><php><min>5.4.42</min><max>5.6.9</max></php></required></dependencies>
|
36 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Smartbox_Smartboxparcels</name>
|
4 |
+
<version>1.1.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="https://opensource.org/licenses/osl-3.0.php">Open Software License</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Smartbox is an automated delivery solution that gives your customers the flexibility to pickup deliveries 24/7</summary>
|
10 |
+
<description><p>Smartbox is a parcel pick-up and drop-off solution that will help your customers pick up parcels as per their convenience in terms of timing as well as location. Smartbox automated parcel delivery terminals are available 24/7 and are stratigically located at easily accessible locations like metro stations, residential complexes and official complexes. All available Smartbox locations can be checked at <a href="https://smartbox.in/locations.php" target="_blank">https://smartbox.in/locations.php</a>, this will also be visible to your customers once our plugin is integated with your eshop. Your customers will be able to choose Smartbox as a delivery option at the checkout page itself. Please see the screenshots attached for more insight into how the plugin functions once installed.</p>
|
11 |

|
12 |
+
<p>Smartbox service is simple and easy to use. The 3 simple steps to use Smartbox are :</p>
|
13 |
+
<p>1. Order Online & choose Smartbox as a delivery option</p>
|
14 |
+
<p>2. Delivery person drops off the parcel at the chosen Smartbox terminal, customer receives OTP on mail and SMS</p>
|
15 |
+
<p>3. Using that OTP customer can collect parcel from the terminal on the day and time that is most convenient</p>
|
16 |
+

|
17 |
+
<p>For more clarity, please see our explainer video here - <a href="https://www.youtube.com/watch?v=SyGUacKEMvg" target="_blank">https://www.youtube.com/watch?v=SyGUacKEMvg</a></p>
|
18 |

|
19 |
+
<p>Smartbox can be used for both prepaid as well as COD orders. For COD orders, Smartbox provides for CSOD (Card Swipe on Delivery) so that they can pay at the time of pick-up using any debit or credit card. Our CSOD facility helps in faster COD settlements as we remit in T+2 working days.</p>
|
20 |

|
21 |
+
<p>In case of more questions please visit our FAQ page here - <a href="https://smartbox.in/faq.php" target="_blank">https://smartbox.in/faq.php</a>. You can also get in touch with us through any means that have been mentioned here <a href="https://smartbox.in/contact-us.php" target="_blank">https://smartbox.in/contact-us.php</a></p>
|
22 |
+

|
23 |
+
<p>Smartbox is India's first network of automated parcel delivery terminals. To know more, please visit <a href="https://smartbox.in" target="_blank">https://smartbox.in/</a>.</p>
|
24 |
+
<p>Our recent media mentions can be checked here - <a href="https://smartbox.in/media.php" target="_blank">https://smartbox.in/media.php</a></p>
|
25 |
+

|
26 |
+
<p>Features</p>
|
27 |
<p>1. Smartbox is the only available 24/7 parcel delivery service</p>
|
28 |
<p>2. It is safe, secure, private and convenient</p>
|
29 |
<p>3. Smartbox gives your customers the flexibility of 72 hrs for picking up their parcel</p>
|
34 |
<p>8. Every Smartbox location gives the details about the location, its nearest landmark as well as the operational timings</p>
|
35 |
<p>9. Easy to install and integrate</p>
|
36 |

|
37 |
+
<p>For more information and to sign up as a partner, please email at <a href="mailto:partner@smartbox.in">partner@smartbox.in</a></p></description>
|
38 |
+
<notes>*Bug Fixes
|
39 |
+
*Ship to Smartbox Terminal (Shipping Method)
|
40 |
Smartbox CSOD (Card Swipe on Delivery) (Payment Method)</notes>
|
41 |
<authors><author><name>Deepak Bhasin</name><user>deepakbhasin</user><email>deepak@smartbox.in</email></author></authors>
|
42 |
+
<date>2016-08-26</date>
|
43 |
+
<time>09:18:38</time>
|
44 |
+
<contents><target name="magecommunity"><dir name="Smartbox"><dir name="Smartboxparcels"><dir name="Block"><dir name="Adminhtml"><dir name="Smartboxparcels"><file name="Grid.php" hash="57bff079cbf4aff5e168f0e10f584560"/><dir name="Renderer"><file name="Link.php" hash="b0fbe249bf1bb5a8dcd53d54446c8b5b"/></dir></dir><file name="Smartboxparcels.php" hash="48f16f5e71d2c864a7891f0a92ecad21"/><dir name="System"><dir name="Config"><dir name="Smartbox"><file name="Moduleversion.php" hash="1e7bd75ac86ea1ff046d21a0655a21f8"/></dir></dir></dir></dir><dir name="Form"><file name="Smartboxcsod.php" hash="763e5a2bc9573c8a25761008c0519314"/></dir><dir name="Info"><file name="Smartboxcsod.php" hash="53a8cb332b3152a2bb3696a983140f6a"/></dir><dir name="Onepage"><dir name="Billing"><file name="Option.php" hash="d6dd54dbb8a5b22e13ca6a3148faf648"/></dir><file name="Setup.php" hash="a8b86f7e23982cf065700743c3dfa57a"/><dir name="Shipping"><dir name="Method"><dir name="Smartbox"><file name="Table.php" hash="9feeb2fb0a0a906e6fb55b80166f46eb"/></dir><file name="Smartbox.php" hash="53a2bc05e0b9fdb703ef804ec58ab096"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Helper"><file name="Data.php" hash="ba841521e655d13d0f7cabaa1aa5364d"/></dir><dir name="Model"><dir name="Api"><dir name="Smartbox"><file name="Abstract.php" hash="cdd499576ca433359c6df569f3ba0016"/><file name="Terminals.php" hash="cf8e0c4eb2d0fc05e6d8080acf0d8421"/></dir></dir><file name="Carrier.php" hash="fb8d76dd1f366eb38104fbc1053a3e03"/><file name="Observer.php" hash="8292724e4315964bc0dba755e43f318c"/><dir name="Resource"><file name="AvailablePaymentMethods.php" hash="0f4d9fd054e4f32408c4572992d69395"/><dir name="Smartboxparcels"><file name="Collection.php" hash="0031c6ebc9300dbbebda9055f3099a37"/></dir><file name="Smartboxparcels.php" hash="c7f7f3cb489ae22f34a717ca68d7e609"/></dir><file name="Smartboxcsod.php" hash="6306f7bc6d77cd1f685f0e3dea761f72"/><file name="Smartboxparcels.php" hash="452df3b0ffe61455484208a8f804bd0f"/><dir name="System"><dir name="Config"><file name="Environment.php" hash="968f8a47e067dc15d3df73e151bc9260"/></dir></dir><file name="Terminal.php" hash="4fbfd94f8783d2a85d9ad6a2c607fc2b"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SmartboxparcelsController.php" hash="5180340e8a9bf38013face60e41e49e0"/></dir><file name="IndexController.php" hash="a8344117a690a5e1cc243b86136e8adc"/></dir><dir name="etc"><file name="config.xml" hash="1f553303a7893b373a7bab7137bdb335"/><file name="system.xml" hash="2b5b9a29204e1d95fb4f20d6a924a007"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="sql"><dir name="smartboxparcels_setup"><file name="mysql4-install-1.0.0.php" hash="917b5cca5966d18d3f583525bc84d1d2"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Smartbox_Smartboxparcels.xml" hash="c874cc6022d41cc8359f9029145e3363"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="smartboxparcels.xml" hash="f3b5005d8e9eed69fb8a7631bb1d151d"/></dir><dir name="template"><file name="access_denied.phtml" hash="f16e0e9b311083b08760dbd7fd50fd7d"/><dir name="api"><file name="role_users_grid_js.phtml" hash="e7ed4fd254c7014a85afa39c4e9105ba"/><file name="roleinfo.phtml" hash="c87b56dce996498986d85b6916311614"/><file name="roles.phtml" hash="aadb8e2135c7fb363b847e73da2c6182"/><file name="rolesedit.phtml" hash="6675e5d65647b45fa5629dd9f40b5642"/><file name="rolesusers.phtml" hash="f9a52fc91ea7703259840a13873da208"/><file name="user_roles_grid_js.phtml" hash="70eec9b308badc04dd9bd07bf01c9688"/><file name="userinfo.phtml" hash="a481bf90b53781d327b047cbf3bc44ad"/><file name="usernroles.phtml" hash="a68a89bb00ae9d053ff0e839eb213118"/><file name="userroles.phtml" hash="b493e0445f8ff370e93bfa0a7c722fb8"/><file name="users.phtml" hash="65f54a0a1d3f6dc0456aca9e5ad3ebb9"/></dir><dir name="api2"><dir name="attribute"><file name="buttons.phtml" hash="fda45a6ffb936d49d9e9807116be167a"/><file name="resource.phtml" hash="05f266d3d503484f0bb0b625c40a4ead"/></dir><dir name="permissions"><dir name="user"><dir name="edit"><dir name="tab"><dir name="roles"><file name="js.phtml" hash="d1eff51beb6cd5b2599620f62e5ac722"/></dir></dir></dir></dir></dir><dir name="role"><file name="buttons.phtml" hash="1231c634dc4f5e8a5803e2a0314b0082"/><file name="users_grid_js.phtml" hash="4d337d6a5dbeebedfd25ce5a9f6a0ee6"/></dir></dir><dir name="authorizenet"><dir name="directpost"><file name="iframe.phtml" hash="352d24e86d10c43d09b93cc7935407b1"/><file name="info.phtml" hash="fa328e73394d433539fcf82f4a289bc3"/></dir></dir><dir name="backup"><file name="dialogs.phtml" hash="e6be55f4511a980ae050899e719da14b"/><file name="left.phtml" hash="548d169f10934bf1168ac47dd3111215"/><file name="list.phtml" hash="2d83a6690c025d80ab460a451d00fe7d"/></dir><dir name="bundle"><dir name="product"><dir name="composite"><dir name="fieldset"><dir name="options"><file name="bundle.phtml" hash="4ed9109a84d1a95cec5f5ce170ac667c"/><dir name="type"><file name="checkbox.phtml" hash="b896aac0d9d6b7290587bfc0f88d6b0d"/><file name="multi.phtml" hash="e99db803ec19af7ce4c1a607af25518f"/><file name="radio.phtml" hash="8b248cb2c388815e8facf4c1d839e513"/><file name="select.phtml" hash="6cca9e6884fc8d1f62573b4259dde2c1"/></dir></dir></dir></dir><dir name="edit"><dir name="bundle"><dir name="option"><file name="search.phtml" hash="5da4e2dd059064c9a5f93a30786605ef"/><file name="selection.phtml" hash="d28315dd8446ac45bbcc9cf92c963d27"/></dir><file name="option.phtml" hash="e7fc92a8fe84ab5e1e7f04bd9a5a3b3d"/></dir><file name="bundle.phtml" hash="54c6f1d3ea93a74af81be782a2c7abce"/></dir></dir><dir name="sales"><dir name="creditmemo"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="112e4ce4d3a1b5a6dfec10eb19b677cb"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="8b566f5b63bb44edc2ce7ad30f040a9c"/></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="1cedcd5f293937c9af72100ca0a44060"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="8188047bfc575cc01aa0bd0c490cb554"/></dir></dir></dir><dir name="order"><dir name="view"><dir name="items"><file name="renderer.phtml" hash="e3d77508312e35f38630734a3c1f3fc4"/></dir></dir></dir><dir name="shipment"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="69dfccd585acc7fe8f6cc021a00f9a00"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="a027cfbde717fe117e85d21c1e6ca29b"/></dir></dir></dir></dir></dir><dir name="captcha"><file name="zend.phtml" hash="8587aac0fb730b01e0b4ec074e3cfebb"/></dir><dir name="catalog"><dir name="category"><dir name="checkboxes"><file name="tree.phtml" hash="aab7541691d5c310e690bb880bff9905"/></dir><dir name="edit"><file name="form.phtml" hash="e6c0123b4bcdf4f418fb33f4e3bb5597"/></dir><file name="edit.phtml" hash="a34b1a52073bff25a8ea49fc08d9d2f3"/><file name="tree.phtml" hash="fc35df15e04837fde860a1feb2b8132d"/><dir name="widget"><file name="tree.phtml" hash="d5739e968e35ac9ae8a3564048e837ea"/></dir></dir><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="11f323e13844bbf09eaf9529e2e03da1"/></dir></dir></dir><dir name="product"><dir name="attribute"><file name="js.phtml" hash="00dba5608a72f564351cd9b51a47ffe3"/><dir name="new"><file name="created.phtml" hash="cbcfc6e955927c7f0e459faa061db638"/></dir><file name="options.phtml" hash="06aabddd75b990ff6f477878654470bf"/><dir name="set"><dir name="main"><dir name="tree"><file name="attribute.phtml" hash="d35502e17bde48b39955dd6cdbbe2248"/><file name="group.phtml" hash="a04252cc7cfa30ef5dffb75297e328ac"/></dir></dir><file name="main.phtml" hash="6fd8bf05c8ecd2dc505ae8fd092254e6"/><dir name="toolbar"><file name="add.phtml" hash="22df4525860f977442097c0ad1e0d2d3"/><file name="main.phtml" hash="badd34458e3c477dbfb113728ca335a9"/></dir></dir></dir><dir name="composite"><file name="configure.phtml" hash="ba511f03c3de0aa86966dc9cced58fb3"/><dir name="fieldset"><file name="configurable.phtml" hash="85b0f6cb2f592b996a000743779e880b"/><file name="grouped.phtml" hash="64b4a89a2ee2176207e999e3a5142896"/><dir name="options"><file name="js.phtml" hash="4a937d4744244329df18846ba9fafcc4"/><dir name="type"><file name="date.phtml" hash="5956941d6b956c1492992c9a80c4893d"/><file name="default.phtml" hash="bac833aed65ce839b80d84e9a5eddf52"/><file name="file.phtml" hash="64937a450a368c2c6b3dc566c3d9505d"/><file name="select.phtml" hash="efb6e28494fe29dc5487ff36bcd9db1f"/><file name="text.phtml" hash="44e2fc1240889fe3dff9566a38d168bd"/></dir></dir><file name="options.phtml" hash="359d33ae6af0de9e15ef02cf3c2600b9"/><file name="qty.phtml" hash="29699973c64d554bf45056cde226a624"/></dir></dir><file name="created.phtml" hash="3e91f396d63ba19b845916bf09303425"/><dir name="edit"><dir name="action"><file name="attribute.phtml" hash="fec9255163898e205b40fb7d02aa372b"/><file name="inventory.phtml" hash="f2592ece9da2b7f804b63305ec053db3"/><file name="websites.phtml" hash="608f1b13cdbbe7635f669a89f6d65ece"/></dir><file name="categories.phtml" hash="c8c1e690555e45acde9e4f364fac6ef5"/><dir name="options"><file name="option.phtml" hash="a86adf60ae3caecc9bdfb114d0630deb"/><dir name="type"><file name="date.phtml" hash="d2eca3718e0da428c42cc8e327c1e13f"/><file name="file.phtml" hash="ca7ede6da10c23f91a7343a2d86e0638"/><file name="select.phtml" hash="c8f0cb50b05bee5b2aa57abb06404f6d"/><file name="text.phtml" hash="9fd19c6d63681c86cf72f6e83e0aec1a"/></dir></dir><file name="options.phtml" hash="525c4cde3e354e6bfdd64aafe7d90587"/><dir name="price"><file name="group.phtml" hash="40db61c4c12a86d23db36ae62671639c"/><file name="tier.phtml" hash="1a6d4ead00764517c4606d70e655ce75"/></dir><file name="serializer.phtml" hash="1905ba3f977151c022412d01b6bc446f"/><dir name="super"><file name="config.phtml" hash="859e1e70e0fcb0100dbe889cb6bbbedc"/></dir><file name="websites.phtml" hash="072470573430c674ae047ac9f79ac1f2"/></dir><file name="edit.phtml" hash="c8a6928c144e19396e7847cd7e19a2d4"/><dir name="helper"><file name="gallery.phtml" hash="8dbf5b148248274a8c29137fa14b89b4"/></dir><file name="js.phtml" hash="e4e1323d66678e860a0f90f8124cb97e"/><file name="price.phtml" hash="adc3fc459374000090966b2ea19e87ec"/><dir name="tab"><file name="alert.phtml" hash="2df767787624bc6bc4dad12c224a29d7"/><file name="inventory.phtml" hash="cc8c56d5f7078aed100fc3c94109f581"/></dir><dir name="widget"><dir name="chooser"><file name="container.phtml" hash="b0441bbd3b94ee43001c2255479186bf"/></dir></dir></dir><file name="product.phtml" hash="b13c733c8b232cd608df725530e28272"/><dir name="wysiwyg"><file name="js.phtml" hash="ec4468d92342977d583f0271b93c130f"/></dir></dir><dir name="centinel"><dir name="authentication"><file name="complete.phtml" hash="40520bc69fe3c3e5ba11e5784e469341"/><file name="start.phtml" hash="56887a333919637e9dec93de41ddf055"/></dir><dir name="validation"><file name="form.phtml" hash="d972ff22d8434633d828845d0cac6f64"/></dir></dir><dir name="cms"><dir name="browser"><dir name="content"><file name="files.phtml" hash="68bada0587fddf28489cc7e55ff9dcbc"/><file name="newfolder.phtml" hash="d8bf9ec3103bb0e6e3d0f3b79914cb30"/><file name="uploader.phtml" hash="a8ff9109610ef720be65dd58760a18ac"/></dir><file name="content.phtml" hash="b78354e1292c3b9965c18f702a117edf"/><file name="js.phtml" hash="e22baed3b2d08b16601006e082a02081"/><file name="tree.phtml" hash="6d71e305fbb3a287ef718edc0459f33a"/></dir><dir name="page"><dir name="edit"><dir name="form"><dir name="renderer"><file name="content.phtml" hash="cd2d9795daf963254b4b6ea05358c04b"/></dir></dir></dir></dir></dir><file name="coming.phtml" hash="e4a74b021c0663fd4957cbc77f2ab07e"/><dir name="compiler"><file name="process.phtml" hash="ebcada3454b78adde37be6e59031199e"/></dir><dir name="connect"><dir name="extension"><dir name="custom"><file name="authors.phtml" hash="7034e46f5a8cf5a1a9cada4dad378443"/><file name="contents.phtml" hash="e930d68885e60c4d9a7961f21cf6d9f5"/><file name="depends.phtml" hash="8909363c74b836616302b4c7dc7fea97"/><file name="load.phtml" hash="e407878f2106a2c15a5b099fbd3a74e5"/><file name="package.phtml" hash="ab9e5391f1f531f406ca4fea27b198c4"/><file name="release.phtml" hash="ece48241880fc90fd0abe45c44c7837b"/></dir></dir></dir><dir name="currencysymbol"><file name="grid.phtml" hash="b2ed98585b1be0ae916c77b2e975f3bb"/></dir><dir name="customer"><dir name="edit"><file name="js.phtml" hash="0e6a44f446a1d6178c59e50200703ff5"/><dir name="tab"><dir name="account"><dir name="form"><dir name="renderer"><file name="group.phtml" hash="360a5a55ea3c6dc32d3692ef69182126"/></dir></dir></dir><dir name="view"><dir name="grid"><file name="item.phtml" hash="80b71d7491a306820977f7abe72a5f36"/></dir></dir></dir></dir><file name="online.phtml" hash="aded23c136ca5f56e43156650af4b47d"/><dir name="sales"><dir name="order"><dir name="create"><dir name="address"><dir name="form"><dir name="renderer"><file name="vat.phtml" hash="3ba45328a307ee94d4bf6e9d1777b017"/></dir></dir></dir></dir></dir></dir><dir name="system"><dir name="config"><file name="validatevat.phtml" hash="477e59d6fd900152fe375f4fe5e86657"/></dir></dir><dir name="tab"><file name="addresses.phtml" hash="7447ccdc5fd31fe86b290e40bfda1760"/><file name="cart.phtml" hash="66e29e32f745685e00f0085d6ad0a17e"/><file name="newsletter.phtml" hash="59b28844a90ae3681278e0086f0b952c"/><dir name="view"><file name="sales.phtml" hash="05e98f7109aa0dc80e2d408ae598b215"/></dir><file name="view.phtml" hash="5fda89cd46dd5f62fa945e677ac94045"/><file name="wishlist.phtml" hash="c36c372727ec42de3c35d99f8528d61e"/></dir></dir><dir name="dashboard"><dir name="graph"><file name="disabled.phtml" hash="1630cadd1204b8f89a6922909dd70503"/></dir><file name="graph.phtml" hash="7fac169d9d132b9578579359e7c75e40"/><file name="grid.phtml" hash="33c3636197573589300eee913932fd97"/><file name="index.phtml" hash="7772a8add2b7ce0b186b45530d1c72b9"/><file name="salebar.phtml" hash="41b1234ba0fb4de6e5fec438f68a4884"/><file name="searches.phtml" hash="13e6123d3a08bcdf6ec8ef5432d725d1"/><dir name="store"><file name="switcher.phtml" hash="48aa686aa55e58993d0bdf97cb898cb0"/></dir><file name="totalbar.phtml" hash="c244f4aa3f0feb76ef60c67baeed0dc0"/></dir><dir name="directory"><dir name="js"><file name="optional_zip_countries.phtml" hash="371c6ebf79ce190678d17ff0de2fc8d4"/></dir></dir><dir name="downloadable"><dir name="product"><dir name="composite"><dir name="fieldset"><file name="downloadable.phtml" hash="34e7aebdc04f332c641643752e19b842"/></dir></dir><dir name="edit"><dir name="downloadable"><file name="links.phtml" hash="6a1a2073913778b52b74345e136bd47c"/><file name="samples.phtml" hash="13700132d71a80565ebc6fe455a3ea95"/></dir><file name="downloadable.phtml" hash="f2569decb8f7a9c8744384330fa2543f"/></dir></dir><dir name="sales"><dir name="items"><dir name="column"><dir name="downloadable"><dir name="creditmemo"><file name="name.phtml" hash="10204067b251557681c0fd81420158c7"/></dir><dir name="invoice"><file name="name.phtml" hash="4e944aaa9ce97b705670cad172eae961"/></dir><file name="name.phtml" hash="a132f9ee544ca829339f23b66a05256b"/></dir></dir></dir><dir name="order"><dir name="creditmemo"><dir name="create"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="8f26a6a4417568635ad13493ac93e6a9"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="78548d59d3e491927bdc8bec5c2c7acd"/></dir></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="350b60099df29bf0f5ece797241c6ffe"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="b49682402b4082f8dc93bb584e7a6242"/></dir></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="d3d3809767c2bbaf7d50eaa35a64940b"/></dir></dir></dir></dir></dir></dir><dir name="eav"><dir name="attribute"><dir name="edit"><file name="js.phtml" hash="d35502e17bde48b39955dd6cdbbe2248"/></dir><file name="options.phtml" hash="670b9081e6d1193b14269fd6ee836175"/></dir></dir><dir name="email"><dir name="order"><file name="items.phtml" hash="c2a13888609a11e5671ebfa5c63c7420"/></dir></dir><file name="empty.phtml" hash="84124a899c334089a50ba519a44d2263"/><file name="example.phtml" hash="da47dd0b17d391c6e1d4ad61bc0a4774"/><file name="forgotpassword.phtml" hash="03c6cd5db5b07cb6007d18393d5badbb"/><file name="formkey.phtml" hash="e953267b5bfeeec7a82c707db7d971bc"/><dir name="giftmessage"><file name="form.phtml" hash="2ca69f13096274179b3a6b468d358164"/><file name="giftoptionsform.phtml" hash="20482920965d8300dcd02b50f55c637c"/><file name="helper.phtml" hash="91f038a3001766bc69aa3f5c8d6799d4"/><file name="popup.phtml" hash="6d0e51b64c91b356dc536fe6007c3433"/><dir name="sales"><dir name="order"><dir name="create"><file name="giftoptions.phtml" hash="17921d8fc29103aaf9847c0ad558befa"/><file name="items.phtml" hash="3ff631b5a9e1412b36be51ee52f9616e"/></dir><dir name="view"><file name="giftoptions.phtml" hash="d5e933eba495ee9964d56b2db95efe26"/><file name="items.phtml" hash="b94da14158004fcbab0fb357d7be9db4"/></dir></dir></dir></dir><dir name="googlebase"><file name="captcha.phtml" hash="6a18efab7a11459433c2fefe7ae76fc2"/><file name="items.phtml" hash="4614c0321dd68ca6aba22e8145ed7811"/><dir name="types"><dir name="edit"><file name="attributes.phtml" hash="57b6041880202d53d973ef3cc3009b37"/></dir></dir></dir><dir name="importexport"><file name="busy.phtml" hash="5eed597e67cc4f8633efcc992b949981"/><dir name="export"><dir name="form"><file name="after.phtml" hash="7c877a4cee6723f5c6950a8865c12e80"/><file name="before.phtml" hash="12938fb58361700d88847ba14b006e48"/></dir></dir><dir name="import"><dir name="form"><file name="after.phtml" hash="fc5dd506c89fa30468bbc671f85b04e4"/><file name="before.phtml" hash="98d910aea34ffb83d043c016c870f04c"/></dir><dir name="frame"><file name="result.phtml" hash="f695d343c9d0fca2f88481d44815d1a1"/></dir></dir></dir><dir name="index"><file name="notifications.phtml" hash="941155e58ba0a96bf3b5c479751b1005"/></dir><file name="login.phtml" hash="100ed897367559ff7c6af9d136407920"/><dir name="media"><file name="editor.phtml" hash="12716ffeab919fd4e4f1722fa6c52020"/><file name="uploader.phtml" hash="bf8f5de377eb34f2ec00687c62642af8"/></dir><dir name="moneybookers"><file name="info.phtml" hash="70cfafbe1533f199150a08fad76248ff"/><file name="jsinit.phtml" hash="050f4b74ca7dc39305c0c06455cd2e23"/><dir name="pdf"><file name="info.phtml" hash="baf77b77063fe647a41a8f19f07356c0"/></dir></dir><dir name="newsletter"><dir name="preview"><file name="iframeswitcher.phtml" hash="56e5c44d48f11efce4ab0e5e07b1a86d"/><file name="store.phtml" hash="f701b2fccfeaaeec7d52f4f4e12605ec"/></dir><dir name="problem"><file name="list.phtml" hash="e6b26fb53b5250df3dcc3522885dada6"/></dir><dir name="queue"><file name="edit.phtml" hash="964bc415008d0c4efd2a8ab873acb88f"/><file name="list.phtml" hash="2d6a16fefa408c37ce7b5f8b94eb4458"/><file name="preview.phtml" hash="45d3c9d1491089714991b9242199e513"/></dir><dir name="subscriber"><file name="list.phtml" hash="67a8552ab7094d1c16fc728862c8cdaf"/></dir><dir name="template"><file name="edit.phtml" hash="d39d033dbf4a0cbc77b4bb85e69a441f"/><file name="list.phtml" hash="47970e9bd6d7fbe0abb9bde6ccd1ba0f"/><file name="preview.phtml" hash="45d3c9d1491089714991b9242199e513"/></dir></dir><dir name="notification"><file name="baseurl.phtml" hash="6e1b4f131f2a25f5a57ca19cdc429165"/><file name="security.phtml" hash="1f0d9129bf4bc8943d800d273075094e"/><file name="survey.phtml" hash="e054d8fbe626f3bfc5cc4d2c7ffd6d05"/><file name="toolbar.phtml" hash="b596691a6f1e48ffdfd535740bea5da6"/><file name="window.phtml" hash="1eb6a56fe5e34e7d68a20d8b1460759a"/></dir><dir name="oauth"><dir name="authorize"><file name="button-simple.phtml" hash="b4431c0b39901ba6367273bf667abaa7"/><file name="button.phtml" hash="0ddaf4868e41d44911acf878d3e1b1a2"/><file name="confirm-simple.phtml" hash="8b63a3fb9c863c15a7be72b31f168e60"/><file name="confirm.phtml" hash="2f769a816521758007a18b086e522cbe"/><dir name="form"><file name="login-simple.phtml" hash="b3695ea1cfd5edd6589e82b3af015eb1"/><file name="login.phtml" hash="3f6cf168acaf902862e2939727f04d42"/></dir><file name="head-simple.phtml" hash="f3a142980a95090cbfeb58b84e091c00"/><file name="reject-simple.phtml" hash="8b4cfe4d5b1c80b3a4bbf31e8793811a"/><file name="reject.phtml" hash="5006a30b6512a60b72630ba1a9a03ad4"/></dir></dir><file name="overlay_popup.phtml" hash="4b3da056e8a2fa5e2c73533ea62270ff"/><dir name="page"><file name="footer.phtml" hash="894194907cab774cb54f31980a0bb560"/><file name="head.phtml" hash="6e28bc8c912dcbb41d0ea2b2603e2f4b"/><file name="header.phtml" hash="54513d826956b6dcd0e8d99f4326b5b0"/><dir name="js"><file name="calendar.phtml" hash="2fc77e055aedf8c4e0c6105d2c72e17a"/><file name="translate.phtml" hash="86a0bedf54c423e53acba72f106936db"/></dir><file name="menu.phtml" hash="b5952bd7f38231d451d630bd08fcdb67"/><file name="notices.phtml" hash="7c823196713ccf302dcf8cd7253811da"/></dir><file name="page.phtml" hash="33082759a189ae841c7607a9fcc53a9c"/><dir name="pagecache"><dir name="cache"><file name="additional.phtml" hash="339a7b83d3db6564d9dbbde2c74385a5"/></dir></dir><dir name="paygate"><dir name="form"><file name="cc.phtml" hash="1ae51c73b2e3dcb095a842667564886a"/></dir><dir name="info"><file name="cc.phtml" hash="4df6dd0aa107db58483ce78d67cd9701"/><file name="pdf.phtml" hash="f3664031eccf47a8ee4d0516f7c4db5c"/></dir></dir><dir name="payment"><dir name="form"><file name="banktransfer.phtml" hash="c39a0581b423304dd69e72ce020c6998"/><file name="cashondelivery.phtml" hash="c4c23f5760de1d89f0584105ca30d4bb"/><file name="cc.phtml" hash="1e6cc2c14e9443a285b7ca9034f1373e"/><file name="ccsave.phtml" hash="2bd1a350fd8eeb78093047b7e1744e64"/><file name="checkmo.phtml" hash="d7fe117569e83aef26e66975a7b13fff"/><file name="purchaseorder.phtml" hash="9a15a4f9fd2876d75b2f6a4fa97a76ac"/></dir><dir name="info"><file name="banktransfer.phtml" hash="4c8fb7158289602d1ab7cb9abef9a389"/><file name="checkmo.phtml" hash="814edc6462220e40b93b9b1403e12801"/><file name="default.phtml" hash="e64136c46387e022f30dd6dc2704d881"/><dir name="pdf"><file name="checkmo.phtml" hash="8936e1803e73ba95f7f0caea2d261bb5"/><file name="default.phtml" hash="38125ed6ef357cd8a39a2a6f076aee8c"/><file name="purchaseorder.phtml" hash="4338bdd0a7cdef7475ebaa30c5af8b01"/></dir><file name="purchaseorder.phtml" hash="3df08d59a6a4ec18e5f48b1ab0c18007"/></dir></dir><dir name="paypal"><dir name="system"><dir name="config"><file name="api_wizard.phtml" hash="0581916911560427c2d1c2747c97f8c8"/><file name="bml_api_wizard.phtml" hash="269b767004e1ed3e4559c78f07bfcaa5"/><dir name="fieldset"><file name="global.phtml" hash="cb30fa3942402c8d74143fd7b47730a4"/><file name="hint.phtml" hash="e2963b32816ba4379bb3debfb50f6376"/><file name="store.phtml" hash="de503d1e4b9772bbdfbf2f25bebd6f41"/></dir><dir name="payflowlink"><file name="advanced.phtml" hash="a0a3613af1d69ab14f70e53345974f89"/><file name="info.phtml" hash="eb0bd26e2d19c29f7772b697a1eac675"/></dir></dir></dir></dir><dir name="permissions"><file name="role_users_grid_js.phtml" hash="f79295ecefd1b0c38c70b819085ad785"/><file name="roleinfo.phtml" hash="5cd8272f2ff47738f0bd7bbe7be5c510"/><file name="roles.phtml" hash="4c57006503d7ab1762f3983a82b35915"/><file name="rolesedit.phtml" hash="6a58537452de4a37ce006ca90a07a007"/><file name="rolesusers.phtml" hash="f9a52fc91ea7703259840a13873da208"/><file name="user_roles_grid_js.phtml" hash="3edf9ccb48ee36580dbb55aed3a60fd9"/><file name="userinfo.phtml" hash="a481bf90b53781d327b047cbf3bc44ad"/><file name="usernroles.phtml" hash="a68a89bb00ae9d053ff0e839eb213118"/><file name="userroles.phtml" hash="b493e0445f8ff370e93bfa0a7c722fb8"/><file name="users.phtml" hash="65f54a0a1d3f6dc0456aca9e5ad3ebb9"/></dir><dir name="poll"><dir name="answers"><file name="list.phtml" hash="0e60ae4abe1bfe54e94ff4a9e4579d93"/></dir></dir><file name="popup.phtml" hash="36b3a02220e3eed1a183229a87d9c563"/><dir name="promo"><file name="fieldset.phtml" hash="4001d6e427d58bf5fc2ac743882d83ee"/><file name="form.phtml" hash="99e55e03d599254786c0f9b5d1d8989b"/><file name="js.phtml" hash="726659c9372aad53cc83cc622a393b25"/><file name="salesrulejs.phtml" hash="9d847a7878b713ab79bc53f1ed6223c3"/></dir><dir name="rating"><file name="detailed.phtml" hash="8b6a1e2c429e584df1ad18018eef0a1d"/><file name="options.phtml" hash="d78f1e8c367deb050126169dd283b910"/><dir name="stars"><file name="detailed.phtml" hash="b7b9950462df83923687381577630f11"/><file name="summary.phtml" hash="0641bd7475977fcc6d426d05dc8d31ca"/></dir></dir><dir name="report"><dir name="grid"><file name="container.phtml" hash="fe708e244a7f24fa47acede58687236e"/></dir><file name="grid.phtml" hash="68fcf7e4c583eb9a61e7877ed5c9a37d"/><dir name="refresh"><file name="statistics.phtml" hash="89edeb4bbf5fa37bf74e9cf8c37bec1c"/></dir><dir name="store"><dir name="switcher"><file name="enhanced.phtml" hash="be8ec6c18cd26455e2dd9b4ddb868ff8"/></dir><file name="switcher.phtml" hash="1adf956b6811fa86835dea8744638339"/></dir><file name="wishlist.phtml" hash="4e9bc78c8b97f499c8b14aa89bfe3d5c"/></dir><file name="resetforgottenpassword.phtml" hash="0bc4e8b75b254796d16e4a8dc2e539e2"/><dir name="review"><file name="add.phtml" hash="ae48ff5354c96cafe10a63b5c449d0c3"/></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="form.phtml" hash="45e57ce6a5215d1bca340015be5dd1f3"/><dir name="view"><file name="form.phtml" hash="7cdbada2b4bb4d489c97957b99033e3e"/><dir name="tab"><file name="info.phtml" hash="8ea757b2aab6f0308392ec34f9574ae0"/></dir></dir></dir></dir><dir name="items"><dir name="column"><file name="name.phtml" hash="d2a76b6e53ae00ddc54aa42b92cdba65"/><file name="qty.phtml" hash="5d31eb4883443a6dfd1583d8c5afb10d"/></dir><dir name="renderer"><file name="default.phtml" hash="63ba0f9e3a7d14d9f7f5addfd4723434"/></dir></dir><dir name="order"><dir name="address"><file name="form.phtml" hash="e13a757515264a68c9b0888ca2ed163a"/></dir><dir name="comments"><file name="view.phtml" hash="0076ebf8d5ad14ca67272c4b8c38fca5"/></dir><dir name="create"><file name="abstract.phtml" hash="007e6883c399662df798a8b97ea270a2"/><dir name="billing"><dir name="method"><file name="form.phtml" hash="f68fcb2c216b71b2b53eff2c355c80ca"/></dir></dir><file name="comment.phtml" hash="3d743691e380f2566e93f8683e81d316"/><dir name="coupons"><file name="form.phtml" hash="75ea0c900dcd1d51876f39cc7c9975f5"/></dir><file name="data.phtml" hash="202555c8768c57ef8911e4c478f5251c"/><dir name="form"><file name="account.phtml" hash="d6fa987310ac2de24a9c1fd2d88737ab"/><file name="address.phtml" hash="f92200ffff3cb256250c1d67fad92512"/></dir><file name="form.phtml" hash="eba120f9801e0433320217afdfe386e2"/><file name="giftmessage.phtml" hash="ad2c4e0e04599b4f1e045713147b5e8b"/><dir name="items"><file name="grid.phtml" hash="211ba25cfe9a6101cd1eac571d1a319a"/></dir><file name="items.phtml" hash="e9d2643af463142602d79bf289749cee"/><file name="js.phtml" hash="da6a180f6b2f9a5e3ebb7ff387eb0347"/><dir name="newsletter"><file name="form.phtml" hash="e0295db228d6725bd36249470038d0e8"/></dir><dir name="shipping"><dir name="method"><file name="form.phtml" hash="7a44e99e03f829556d32704c93f55a16"/></dir></dir><dir name="sidebar"><file name="items.phtml" hash="017ca7a8dddf537f3c0c145c7b580cb5"/></dir><file name="sidebar.phtml" hash="98d96bc44184b15fcf213e3e82b9bffe"/><dir name="store"><file name="select.phtml" hash="bd479211cc43007477b1a9b14e9024c2"/></dir><dir name="totals"><file name="default.phtml" hash="59c65c0626fda681e69f413653252a03"/><file name="grandtotal.phtml" hash="40029c81ec435f1e062d34f33483da9f"/><file name="shipping.phtml" hash="dacc1b6e7931a0e487cdd9831ab6700a"/><file name="subtotal.phtml" hash="720a5bf6757de297428b5c2696a88873"/><file name="tax.phtml" hash="0e2d214c4083f50006e08ecf75475c2e"/></dir><file name="totals.phtml" hash="6d69af2ab608d91e3d3434b83a323fcc"/></dir><dir name="creditmemo"><dir name="create"><file name="form.phtml" hash="496c8cb9069f5475cd23819e2dd56f32"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="98a71d30b8447bb4f4f83fd98b4817aa"/><file name="default.phtml" hash="96c1cb6b100898ee8979e060eb900c08"/></dir></dir><file name="items.phtml" hash="d41fbce372cff25c129a77dca064d010"/><dir name="totals"><file name="adjustments.phtml" hash="623400e8add8f635e8d0c93486b03b3a"/></dir></dir><dir name="view"><file name="form.phtml" hash="a06558799cddeeb7bef5082c4737171e"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="ad9bbc4186a60d71acdb40926b54b886"/><file name="default.phtml" hash="eabae6d309baaa34dd955f0962144f07"/></dir></dir><file name="items.phtml" hash="cb37e2ae89d1ec9157afbdc9c695a67e"/></dir></dir><file name="giftoptions.phtml" hash="9d6fd3b5221209d81aafaa4a51acbf73"/><dir name="invoice"><dir name="create"><file name="form.phtml" hash="f6ac8c3c03402e2f04e5603839a7bb63"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="b66a33a2d04a3d8e2e720b42bfdda77a"/><file name="default.phtml" hash="c3f383853448a846205b4068334824ed"/></dir></dir><file name="items.phtml" hash="5c5e5e39945a7c98db6a06b2374de8bb"/><file name="tracking.phtml" hash="9bab676013b0a4dfadc7533ce8406fbf"/></dir><dir name="view"><file name="form.phtml" hash="09190dfd33f8ab5cffbf288cd3d799a7"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="d8874ec3a7fd11b1f49a730326335981"/><file name="default.phtml" hash="2e13f3a0ce00a376f50c0a2ca09f6ff3"/></dir></dir><file name="items.phtml" hash="87d1891fbf81b37d019d83d28cfa4e8b"/></dir></dir><dir name="shipment"><dir name="create"><file name="form.phtml" hash="343679a13b371bddcd9842c412f2f262"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="c9bb5b6fdaced1add7d569a900db60b7"/><file name="default.phtml" hash="5a65793bebe4ae4beb9181373609454e"/></dir></dir><file name="items.phtml" hash="65c344039b8f6ed67d4d51e8fadb8e65"/><file name="tracking.phtml" hash="1deea759d70b3688851bc88959662c45"/></dir><dir name="packaging"><file name="grid.phtml" hash="60c14e96c4e55cef8f351113e12b9fa9"/><file name="packed.phtml" hash="1402136ed1223139b5d85738d7bfc891"/><file name="popup.phtml" hash="a88e2df3e59c4f6819791647644365fd"/></dir><dir name="tracking"><file name="info.phtml" hash="bfe5654232c736f872c352499b228f1e"/></dir><dir name="view"><file name="form.phtml" hash="2044ec12b33185232c776abe042d5f80"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="689ff4084b2b5daf8d4925cae9c8a278"/><file name="default.phtml" hash="3e95b5fbfdae35b55b3cd796596ee757"/></dir></dir><file name="items.phtml" hash="8be28843357710921679c1fdab5bb94d"/><file name="tracking.phtml" hash="a67561082eecfeaf2ef2c5ffdf77d909"/></dir></dir><file name="totalbar.phtml" hash="2412a9e5f7192915426730ea3797e662"/><dir name="totals"><file name="discount.phtml" hash="b573a8c136eba651e1bc70722487f420"/><file name="due.phtml" hash="8bb44fb98db246c7e66d274f60de7de7"/><file name="footer.phtml" hash="685194eb708559222b0ab585fee03c46"/><file name="grand.phtml" hash="572923438b5ebcd07acba2db2c6ede86"/><file name="item.phtml" hash="292206f74390496d4d13fd25100a1cb1"/><file name="main.phtml" hash="6ca17dcd77c0ff88bc7b69e8d6ab4ca4"/><file name="paid.phtml" hash="45810be720a229ff61b58c804688c0d0"/><file name="refunded.phtml" hash="7172cd8ced4e58dd8b72386baf213bcd"/><file name="shipping.phtml" hash="6a673cfd519496b5693d80c417afd646"/><file name="subtotal.phtml" hash="26aa126949084c4325c56b94f2c6e78f"/><file name="tax.phtml" hash="ee0e9ff9d7fb6eb8fc90c077aba734df"/></dir><file name="totals.phtml" hash="8e790071149922fe1dca04d6d2c822cd"/><dir name="view"><file name="form.phtml" hash="3685cad2427f47b70a71c12917f80d02"/><file name="giftmessage.phtml" hash="5a640d1f98a8c6bfc7e396fcfd913f17"/><file name="history.phtml" hash="ef65801e2e398a7f4c6683c04359708b"/><file name="info.phtml" hash="477af3aa2fc6c581324c2da8fc85e7e4"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="be6eb7dea83a15491a27b59f2f3ecaf1"/></dir></dir><file name="items.phtml" hash="a271cb32875b030a6ef0a8ca11c00f60"/><dir name="tab"><file name="history.phtml" hash="39b266f4651233fce46e654314c883a8"/><file name="info.phtml" hash="7425d7f601f069cef3bc82f89aab8aa7"/></dir><file name="tracking.phtml" hash="4bf94aa7cd9bfe101ccf11a3b03330a0"/></dir></dir><dir name="payment"><dir name="form"><dir name="billing"><file name="agreement.phtml" hash="c5d78af6b3b3f1a77b21a1d3a5b25d4a"/></dir></dir></dir><dir name="recurring"><dir name="profile"><dir name="view"><file name="info.phtml" hash="723ccdc21a64f26e27ada8cac6723680"/></dir><file name="view.phtml" hash="40ce04cf992156f52b64a0607e54fa3c"/></dir></dir><dir name="transactions"><file name="detail.phtml" hash="1c5cdcd8dda49a9509b768cdfdb72034"/></dir></dir><dir name="smartbox"><dir name="smartboxparcels"><file name="parcels_edit.phtml" hash="09fa4149c4bd30d8672d3718284269c5"/></dir></dir><dir name="store"><dir name="switcher"><file name="enhanced.phtml" hash="3601d2e2b1f78877545e5df2649a566f"/><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="048535d9659132e8f95b43114d4e9399"/></dir><file name="fieldset.phtml" hash="0fe21a855caf73bfb5c6fb3944e79791"/></dir></dir></dir><file name="switcher.phtml" hash="efff4b9e29afba9c112a49ea3d046bab"/></dir><dir name="system"><file name="autocomplete.phtml" hash="8b5d38c8c5edeca4097ec034537bc72f"/><dir name="cache"><file name="additional.phtml" hash="4a358ef7fdfeb1057f606f6da32a74b2"/><file name="edit.phtml" hash="f86724576022e29830780626872a47b6"/><file name="notifications.phtml" hash="3df44cdccd0060fe1abee935b8286206"/></dir><dir name="config"><file name="edit.phtml" hash="5e6aa8af236c11e1f2a589967feea616"/><dir name="form"><dir name="field"><file name="array.phtml" hash="b052d67d29fe1f0bf658fa3bfcb927db"/></dir></dir><file name="js.phtml" hash="cb6dbbd94d2f51adcf96fd869bca10d6"/><file name="switcher.phtml" hash="7ecf2afd584622d515958b17110e95de"/><dir name="system"><dir name="storage"><dir name="media"><file name="synchronize.phtml" hash="54be3d284f6216d6d381a189f837d1c6"/></dir></dir></dir><file name="tabs.phtml" hash="45542459c7f472b326bc5f0cbed32a56"/></dir><dir name="convert"><dir name="profile"><file name="process.phtml" hash="fbac2ffc8dd7fdb396fd2a786466b726"/><file name="run.phtml" hash="fbe4d6b74412f3e37ea98e65fc0d0172"/><file name="upload.phtml" hash="d512e0684b3ec25d2a02f140547f3504"/><file name="wizard.phtml" hash="6020ebe4ddcda276a0a6d175041af521"/></dir></dir><dir name="currency"><dir name="rate"><file name="matrix.phtml" hash="ecfa9b2248909ff344d3c6b94e2ee142"/><file name="services.phtml" hash="af2877d9ab9431e04f9eaf1ada5d0d67"/></dir><file name="rates.phtml" hash="7183e63cc6521fa8093289097511ed9c"/></dir><dir name="design"><file name="edit.phtml" hash="97c792c4b1162b7c97c3af63f504772f"/><file name="index.phtml" hash="759e2de6f7c07ebf5a48c7a2535dab0b"/></dir><dir name="email"><dir name="template"><file name="edit.phtml" hash="350a633c06c804f72b1d79f37b0e74e2"/><file name="list.phtml" hash="ed262248048d713732a46fa2ce2f2874"/><file name="preview.phtml" hash="69a491beaab277ebc9fba5be3e17961e"/></dir></dir><file name="info.phtml" hash="4144c47693bc965fe51cf444ea3a15c1"/><dir name="shipping"><file name="applicable_country.phtml" hash="64ad2bd504a525b8ae73f1462a15322f"/><file name="ups.phtml" hash="84f8b5312989ef040c968049e5de7f07"/></dir><dir name="store"><file name="cell.phtml" hash="b42c9e6b379a7913341195396d895e67"/><file name="container.phtml" hash="c480855485d23e03159ef01565efd7b9"/><file name="tree.phtml" hash="5ba1b7d2e4df8aa2d2f949f2340bc6f3"/></dir><dir name="variable"><file name="js.phtml" hash="4ed7e1a0360cf68c96e4406eabe2be5e"/></dir></dir><dir name="tag"><dir name="edit"><file name="container.phtml" hash="a0b275599646822885dc4ce66b470b61"/></dir><file name="index.phtml" hash="94f7cb60c467ba2ba1d01f89ee96ed41"/></dir><dir name="tax"><dir name="class"><dir name="page"><file name="edit.phtml" hash="7fbf05b3730192942b682191f36c3f38"/></dir></dir><file name="importExport.phtml" hash="c6cd9b3b7dbdc010c5e9a7deb7b14fcb"/><file name="notifications.phtml" hash="095d6e3e263de323b0a89021a2073511"/><dir name="rate"><file name="form.phtml" hash="4fa65c1733fa36fb9bc88e4293c8c5e4"/><file name="title.phtml" hash="71b1ce0c30fdc68c05477a0adc98c331"/></dir><dir name="toolbar"><dir name="class"><file name="add.phtml" hash="8931d8051aee5c6f3ba410383ab17998"/><file name="save.phtml" hash="8644a5b7c0c98575af9487ff43ab5492"/></dir><dir name="rate"><file name="add.phtml" hash="fd9f654401d1bf2752166010f1dbf105"/><file name="save.phtml" hash="10811adbf34f5bf46fcb7d1e5272c7e6"/></dir><dir name="rule"><file name="add.phtml" hash="c910d4ac4c192e2b32060b122849170e"/><file name="save.phtml" hash="9bcbcfb3faac7f0b88f72794d96944aa"/></dir></dir></dir><dir name="urlrewrite"><file name="categories.phtml" hash="2341db857f012f2f52d0fc8c1d8c7e6e"/><file name="edit.phtml" hash="531f331990debf0b404527279f62bffa"/><file name="selector.phtml" hash="3f2b0ae0f329bf07abc6f93bf8c0c560"/></dir><dir name="usa"><dir name="dhl"><file name="unitofmeasure.phtml" hash="1c0c8fcae764f6c21693de32f1ffc234"/></dir></dir><dir name="weee"><dir name="renderer"><file name="tax.phtml" hash="a3893c83634e24d8e29c95a4e0e4fd28"/></dir></dir><dir name="widget"><file name="accordion.phtml" hash="76c031482f0b51da34dc03c6ba164c0b"/><file name="breadcrumbs.phtml" hash="cd15f81ff0bd532cf14c5e18b005e655"/><dir name="form"><file name="container.phtml" hash="1a4fe20bf205d90836589d72c320bb4e"/><dir name="element"><file name="gallery.phtml" hash="85c089019dce177542b5958aa6c7ae1f"/></dir><file name="element.phtml" hash="69207d9ba085547dbbdc8f7fc5a9f9ab"/><dir name="renderer"><file name="element.phtml" hash="36a3edebdd41ad25e6f2b20546eb34b9"/><dir name="fieldset"><file name="element.phtml" hash="dbec801321bc8c514f429ccc1b318732"/></dir><file name="fieldset.phtml" hash="8824417ce6d3c9bd558e7e8850cfc18d"/></dir></dir><file name="form.phtml" hash="163d786f90d9f53a2e1e94fed18dac39"/><dir name="grid"><file name="container.phtml" hash="c480855485d23e03159ef01565efd7b9"/><file name="massaction.phtml" hash="7b7f850e3c67c10fed8509a63360d3ed"/><file name="serializer.phtml" hash="086e1af72a9d27c5f47d349ca18d3b29"/></dir><file name="grid.phtml" hash="7ccc82490cd5c640c121c991f42e57db"/><dir name="instance"><dir name="edit"><file name="layout.phtml" hash="db5bfcfe253b4ed4eb22de855000982b"/></dir><file name="js.phtml" hash="a99e9837e8219ff737029dab6a649eae"/></dir><file name="tabs.phtml" hash="c46a5b080ce30f6534d994e14ee1c3f7"/><file name="tabshoriz.phtml" hash="69c4c09711befca10ce612f147f6c2af"/><file name="tabsleft.phtml" hash="8e8d4abcb036f5651793530f9427285e"/><dir name="view"><file name="container.phtml" hash="9c3fb6b5eafbea51f1a772da470f2eb3"/></dir></dir><dir name="xmlconnect"><dir name="edit"><dir name="tab"><file name="content.phtml" hash="cccdb617292cd9ac119af75a0eaf3e52"/><dir name="design"><file name="autocomplete.phtml" hash="8d0e4503c4bb5ce08ac12d701483c5b9"/><file name="image_edit.phtml" hash="169954201fa5130ab412f3d211520ce2"/><file name="images_android.phtml" hash="afedde6e67b886ee3c8093530799ac4e"/><file name="images_ipad.phtml" hash="52ce430db787cd687a765907383c2254"/><file name="images_iphone.phtml" hash="dd8088323457d1695197a6353fe02820"/><dir name="preview"><file name="banner_rotator.phtml" hash="b9bf00f6fe5a0ab14780a013809c182c"/><file name="catalog_android.phtml" hash="cd6db3fe4cfd03733355c68679d729ef"/><file name="catalog_hor_ipad.phtml" hash="2931348d3b3261505cbefb28ed4b1391"/><file name="catalog_ipad.phtml" hash="f07f8a5574d9e603e4db4c6b397ce456"/><file name="catalog_iphone.phtml" hash="2f467d91084f9eb38e73e5b78e130bbc"/><file name="home_android.phtml" hash="60954fb665ebcf1fe9df88827ab8e89e"/><file name="home_hor_ipad.phtml" hash="cb168b42074ea93752fa0af8e049c31d"/><file name="home_ipad.phtml" hash="51186c2bc5282e26c3a9741380484af8"/><file name="home_iphone.phtml" hash="d0e43871417c80802461ffbfdfd4122f"/><file name="productinfo_iphone.phtml" hash="bd15b96799a82ca62caf42dd1441c5db"/><file name="tab_items_android.phtml" hash="4169fcaba1c4ab0737ef2553213023e1"/><file name="tab_items_ipad.phtml" hash="d53134640f8298101ecadbea245313b1"/><file name="tab_items_iphone.phtml" hash="5249c8905d8a4d966f4be11b1e204d22"/></dir><file name="preview_android.phtml" hash="b2b641963de77ea583ebfff0c7c5583a"/><file name="preview_ipad.phtml" hash="e5ff74cf84b189d86b3ed42939dd0ca7"/><file name="preview_iphone.phtml" hash="32f44df018373682daeae7ae5dfd19ae"/></dir><file name="design.phtml" hash="8734a68289c2071133bc2e3c727f83d6"/><file name="offlinecatalog.phtml" hash="32fd2419935b027df57226a116d1447b"/></dir></dir><dir name="form"><dir name="element"><file name="addrow.phtml" hash="ca76c0aac816736be0a85886f3e1aab2"/><file name="app_tabs_android.phtml" hash="054dcbf7761413d32f3604fd11bf30fa"/><file name="app_tabs_ipad.phtml" hash="7d8f990be10716b1ac9bd76290820108"/><file name="app_tabs_iphone.phtml" hash="06a4261f932168b79700c703132dec5f"/><dir name="country"><file name="androidmarket.phtml" hash="8d08ec7efb94b394c01c0f46eff762d7"/><file name="istore.phtml" hash="6a1057c17de4e2f89c5cfef4a432a3e3"/></dir><file name="themes.phtml" hash="eacd3bd1ef34fb756ededba6e04534f2"/></dir></dir><dir name="mobile"><file name="notification_helper.phtml" hash="c018a571d40518f0d84f208d89b4c8cb"/></dir><dir name="submission"><file name="app_icons_preview.phtml" hash="0f4fb7b7155c4ee2ff256312b8ce6a6d"/><file name="container.phtml" hash="4823bde69a271a804c577a53f3e9a872"/></dir><dir name="template"><file name="preview.phtml" hash="8dbc5932abfb66daa1afd6fc6a1fcfae"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="smartbox"><dir name="smartboxparcels"><file name="layout.xml" hash="3fbf544252f23c7a00b7eeb4edd2b052"/></dir></dir></dir><dir name="template"><dir name="smartbox"><dir name="smartboxparcels"><dir name="form"><file name="smartboxcsod.phtml" hash="b322862f7cc151080323488a95704243"/></dir><dir name="onepage"><dir name="billing"><file name="option.phtml" hash="b07c5bb135fac39e66944498e0520c2d"/></dir><dir name="progress"><file name="shipping_method.phtml" hash="e912c488c57c9b99c0d8d10e05d818d9"/></dir><file name="setup.phtml" hash="5537d1d67ac7fd693c1370e667f411a8"/><dir name="shipping"><dir name="method"><dir name="smartbox"><file name="table.phtml" hash="bdddbd6a12b7f0b11408755bdc70d790"/></dir><file name="smartbox.phtml" hash="3893a848a6e91e151137ee8cef4a95c4"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="smartbox"><dir name="fonts"><file name="smartbox-icon.eot" hash="01525b5cf95c9efeba43a2280e2300d6"/><file name="smartbox-icon.svg" hash="678a5b78314e464b3879809c64a1ef9f"/><file name="smartbox-icon.ttf" hash="37378fd364e51d6c09540d56e9981c86"/><file name="smartbox-icon.woff" hash="a2e9fc0d7a841e5b99d12ea9b4bc73b5"/></dir><file name="smartbox.css" hash="7f0c0b8db688b21d8c855a8b79b710e2"/></dir></dir><dir name="images"><dir name="smartbox"><dir name="smartboxparcels"><file name="ajax-loader.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/><file name="list-icon.png" hash="35be7afb401b0c77a3d7c136e12524e7"/><file name="logo.png" hash="9c28d24e5972cf937ca33a0cb0aacecf"/><file name="smartbox_csod.jpg" hash="59e314fb56221127e9d68d437fd1b035"/><file name="smartbox_csod.png" hash="ec941bf7c386aaf9de2953fadfb8130a"/></dir></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="smartbox"><file name="jquery.geocomplete.js" hash="33fc6f9335ab478d3e8cd5e3e63c6ce0"/><file name="smartbox.js" hash="7f89f8ddd44c704cbb83acf1e43e47d5"/></dir></dir></target></contents>
|
45 |
<compatible/>
|
46 |
<dependencies><required><php><min>5.4.42</min><max>5.6.9</max></php></required></dependencies>
|
47 |
</package>
|