MaxicycleCom_Connector - Version 1.0.3

Version Notes

v1.0.3
Refresh caching
Fix bug when having a multi store setup for SKU check

v1.0.2
Bug fix release

v1.0.1
Stability improvements
Logging into separate logfile

v.1.0.0
* Initial official release

Download this release

Release Info

Developer Maxicycle Software GmbH
Extension MaxicycleCom_Connector
Version 1.0.3
Comparing to
See all releases


Version 1.0.3

Files changed (41) hide show
  1. app/code/community/Maxicycle/Connector/Block/Adminhtml/Campaigns.php +21 -0
  2. app/code/community/Maxicycle/Connector/Block/Adminhtml/Campaigns/Grid.php +101 -0
  3. app/code/community/Maxicycle/Connector/Block/Adminhtml/Cronlog.php +21 -0
  4. app/code/community/Maxicycle/Connector/Block/Adminhtml/Cronlog/Grid.php +50 -0
  5. app/code/community/Maxicycle/Connector/Block/Adminhtml/Results.php +21 -0
  6. app/code/community/Maxicycle/Connector/Block/Adminhtml/Results/Grid.php +90 -0
  7. app/code/community/Maxicycle/Connector/Block/Adminhtml/Results/Renderer/Campaign.php +10 -0
  8. app/code/community/Maxicycle/Connector/Block/Adminhtml/Results/Renderer/Flag2.php +13 -0
  9. app/code/community/Maxicycle/Connector/Block/Adminhtml/Results/Renderer/Order.php +10 -0
  10. app/code/community/Maxicycle/Connector/Helper/Data.php +37 -0
  11. app/code/community/Maxicycle/Connector/Model/Api/Abstract.php +152 -0
  12. app/code/community/Maxicycle/Connector/Model/Api/Rest.php +400 -0
  13. app/code/community/Maxicycle/Connector/Model/Campaigns.php +17 -0
  14. app/code/community/Maxicycle/Connector/Model/Cronlog.php +17 -0
  15. app/code/community/Maxicycle/Connector/Model/Mysql4/Campaigns.php +17 -0
  16. app/code/community/Maxicycle/Connector/Model/Mysql4/Campaigns/Collection.php +17 -0
  17. app/code/community/Maxicycle/Connector/Model/Mysql4/Cronlog.php +17 -0
  18. app/code/community/Maxicycle/Connector/Model/Mysql4/Cronlog/Collection.php +16 -0
  19. app/code/community/Maxicycle/Connector/Model/Mysql4/Results.php +17 -0
  20. app/code/community/Maxicycle/Connector/Model/Mysql4/Results/Collection.php +16 -0
  21. app/code/community/Maxicycle/Connector/Model/Mysql4/Results/Renderer/Actions.php +38 -0
  22. app/code/community/Maxicycle/Connector/Model/Mysql4/Results/Renderer/Status.php +11 -0
  23. app/code/community/Maxicycle/Connector/Model/Observer.php +322 -0
  24. app/code/community/Maxicycle/Connector/Model/Resource/Mysql4/Setup.php +13 -0
  25. app/code/community/Maxicycle/Connector/Model/Results.php +17 -0
  26. app/code/community/Maxicycle/Connector/controllers/Adminhtml/CampaignsController.php +130 -0
  27. app/code/community/Maxicycle/Connector/controllers/Adminhtml/CronlogController.php +18 -0
  28. app/code/community/Maxicycle/Connector/controllers/Adminhtml/InstallationController.php +69 -0
  29. app/code/community/Maxicycle/Connector/controllers/Adminhtml/ResultsController.php +20 -0
  30. app/code/community/Maxicycle/Connector/controllers/TestConnectionController.php +21 -0
  31. app/code/community/Maxicycle/Connector/controllers/V1Controller.php +158 -0
  32. app/code/community/Maxicycle/Connector/data/data_sample.sql +2864 -0
  33. app/code/community/Maxicycle/Connector/etc/adminhtml.xml +66 -0
  34. app/code/community/Maxicycle/Connector/etc/config.xml +125 -0
  35. app/code/community/Maxicycle/Connector/sql/maxicycle_setup/mysql4-install-1.0.0.php +125 -0
  36. app/code/community/Maxicycle/Connector/sql/maxicycle_setup/upgrade-1.0.0-1.0.1.php +36 -0
  37. app/design/adminhtml/default/default/layout/maxicycle/connector/layout.xml +19 -0
  38. app/design/adminhtml/default/default/template/maxicycle/connector/installation/step1.phtml +315 -0
  39. app/etc/modules/Maxicycle_Connector.xml +18 -0
  40. package.xml +33 -0
  41. skin/adminhtml/default/default/maxicycle/connector/css/css.css +1 -0
app/code/community/Maxicycle/Connector/Block/Adminhtml/Campaigns.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+
11
+ class Maxicycle_Connector_Block_Adminhtml_Campaigns extends Mage_Adminhtml_Block_Widget_Grid_Container
12
+ {
13
+ public function __construct()
14
+ {
15
+ $this->_controller = 'adminhtml_campaigns';
16
+ $this->_blockGroup = 'maxicycle';
17
+ $this->_headerText = Mage::helper('maxicycle')->__('Maxicycle Campaigns');
18
+ parent::__construct();
19
+ $this->_removeButton('add');
20
+ }
21
+ }
app/code/community/Maxicycle/Connector/Block/Adminhtml/Campaigns/Grid.php ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_Block_Adminhtml_Campaigns_Grid extends Mage_Adminhtml_Block_Widget_Grid {
11
+
12
+ public function __construct() {
13
+ parent::__construct();
14
+ $this->setId('maxicycleGrid');
15
+ $this->setDefaultSort('id');
16
+ $this->setDefaultDir('ASC');
17
+ $this->setSaveParametersInSession(true);
18
+ }
19
+
20
+ protected function _prepareCollection() {
21
+ $collection = Mage::getModel('maxicycle/campaigns')->getCollection();
22
+ $this->setCollection($collection);
23
+ return parent::_prepareCollection();
24
+ }
25
+
26
+ protected function _prepareColumns() {
27
+ $stores = $this->getStores();
28
+
29
+ $this->addColumn('campaign_id', array(
30
+ 'header' => Mage::helper('maxicycle')->__('Campaign ID'),
31
+ 'align' => 'left',
32
+ 'width' => '50px',
33
+ 'index' => 'campaign_id',
34
+ ));
35
+
36
+ $this->addColumn('name', array(
37
+ 'header' => Mage::helper('maxicycle')->__('Name'),
38
+ 'align' => 'left',
39
+ 'index' => 'name',
40
+ ));
41
+
42
+ $this->addColumn('sku', array(
43
+ 'header' => Mage::helper('maxicycle')->__('Inserts SKU'),
44
+ 'align' => 'left',
45
+ 'index' => 'product_sku',
46
+ ));
47
+
48
+ $this->addColumn('campaign_start', array(
49
+ 'header' => Mage::helper('maxicycle')->__('Campaign Start'),
50
+ 'index' => 'campaign_start',
51
+ 'type' => 'datetime'
52
+ ));
53
+
54
+ $this->addColumn('campaign_end', array(
55
+ 'header' => Mage::helper('maxicycle')->__('Campaign End'),
56
+ 'index' => 'campaign_end',
57
+ 'type' => 'datetime'
58
+ ));
59
+
60
+ $this->addColumn('response_time_end', array(
61
+ 'header' => Mage::helper('maxicycle')->__('Response Time End'),
62
+ 'index' => 'response_time_end',
63
+ 'type' => 'datetime'
64
+ ));
65
+
66
+ $this->addColumn('store_id', array(
67
+ 'header' => Mage::helper('maxicycle')->__('Store'),
68
+ 'index' => 'store_id',
69
+ 'width' => '100px',
70
+ 'type' => 'options',
71
+ 'options' => $stores,
72
+ ));
73
+
74
+ $this->addColumn('action', array(
75
+ 'header' => Mage::helper('maxicycle')->__('Action'),
76
+ 'width' => '200',
77
+ 'type' => 'action',
78
+ 'getter' => 'getCampaignId',
79
+ 'actions' => array(
80
+ array(
81
+ 'caption' => Mage::helper('maxicycle')->__('Regenerate results'),
82
+ 'url' => array('base' => '*/*/regenerate'),
83
+ 'field' => 'campaign_id',
84
+ 'onclick' => "if(!confirm('Do you realy want to re-generate results?')) return false;"
85
+ )
86
+ )
87
+ ));
88
+
89
+ return parent::_prepareColumns();
90
+ }
91
+
92
+ public function getStores() {
93
+ $stores = Mage::app()->getStores();
94
+ $options = array();
95
+ foreach ($stores as $store) {
96
+ $options[$store->getId()] = $store->getName();
97
+ }
98
+ return $options;
99
+ }
100
+
101
+ }
app/code/community/Maxicycle/Connector/Block/Adminhtml/Cronlog.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+
11
+ class Maxicycle_Connector_Block_Adminhtml_Cronlog extends Mage_Adminhtml_Block_Widget_Grid_Container
12
+ {
13
+ public function __construct()
14
+ {
15
+ $this->_controller = 'adminhtml_cronlog';
16
+ $this->_blockGroup = 'maxicycle';
17
+ $this->_headerText = Mage::helper('maxicycle')->__('Maxicycle Cron Log');
18
+ parent::__construct();
19
+ $this->_removeButton('add');
20
+ }
21
+ }
app/code/community/Maxicycle/Connector/Block/Adminhtml/Cronlog/Grid.php ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_Block_Adminhtml_Cronlog_Grid extends Mage_Adminhtml_Block_Widget_Grid {
11
+
12
+ public function __construct() {
13
+ parent::__construct();
14
+ $this->setId('crondataGrid');
15
+ $this->setDefaultSort('id');
16
+ $this->setDefaultDir('ASC');
17
+ $this->setSaveParametersInSession(true);
18
+ }
19
+
20
+ protected function _prepareCollection() {
21
+ $collection = Mage::getModel('maxicycle/cronlog')->getCollection();
22
+ $this->setCollection($collection);
23
+ return parent::_prepareCollection();
24
+ }
25
+
26
+ protected function _prepareColumns() {
27
+
28
+ $this->addColumn('cron_id', array(
29
+ 'header' => Mage::helper('maxicycle')->__('Cron ID'),
30
+ 'align' => 'left',
31
+ 'width' => '50px',
32
+ 'index' => 'campain_id',
33
+ ));
34
+
35
+ $this->addColumn('created_at', array(
36
+ 'header' => Mage::helper('maxicycle')->__('Created At'),
37
+ 'index' => 'created_at',
38
+ 'type' => 'datetime'
39
+ ));
40
+
41
+ $this->addColumn('data', array(
42
+ 'header' => Mage::helper('maxicycle')->__('Data'),
43
+ 'align' => 'left',
44
+ 'index' => 'data',
45
+ ));
46
+
47
+ return parent::_prepareColumns();
48
+ }
49
+
50
+ }
app/code/community/Maxicycle/Connector/Block/Adminhtml/Results.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+
11
+ class Maxicycle_Connector_Block_Adminhtml_Results extends Mage_Adminhtml_Block_Widget_Grid_Container
12
+ {
13
+ public function __construct()
14
+ {
15
+ $this->_controller = 'adminhtml_results';
16
+ $this->_blockGroup = 'maxicycle';
17
+ $this->_headerText = Mage::helper('maxicycle')->__('Maxicycle Results');
18
+ parent::__construct();
19
+ $this->_removeButton('add');
20
+ }
21
+ }
app/code/community/Maxicycle/Connector/Block/Adminhtml/Results/Grid.php ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_Block_Adminhtml_Results_Grid extends Mage_Adminhtml_Block_Widget_Grid {
11
+
12
+ public function __construct() {
13
+ parent::__construct();
14
+ $this->setId('retultsGrid');
15
+ $this->setDefaultSort('id');
16
+ $this->setDefaultDir('ASC');
17
+ $this->setSaveParametersInSession(true);
18
+ }
19
+
20
+ protected function _prepareCollection() {
21
+ $collection = Mage::getModel('maxicycle/results')->getCollection();
22
+ // $collection->addFieldToFilter('export_flag',0);
23
+ $this->setCollection($collection);
24
+ return parent::_prepareCollection();
25
+ }
26
+
27
+ protected function _prepareColumns() {
28
+
29
+ $this->addColumn('id', array(
30
+ 'header' => Mage::helper('maxicycle')->__('Result ID'),
31
+ 'align' => 'left',
32
+ 'width' => '50px',
33
+ 'index' => 'id',
34
+ ));
35
+
36
+ $this->addColumn('campaign_id', array(
37
+ 'header' => Mage::helper('maxicycle')->__('Campaign'),
38
+ 'align' => 'left',
39
+ 'index' => 'campaign_id',
40
+ 'renderer' => 'Maxicycle_Connector_Block_Adminhtml_Results_Renderer_Campaign',
41
+ ));
42
+
43
+ $this->addColumn('order_id', array(
44
+ 'header' => Mage::helper('maxicycle')->__('Order Nr.'),
45
+ 'align' => 'left',
46
+ 'index' => 'order_id',
47
+ 'renderer' => 'Maxicycle_Connector_Block_Adminhtml_Results_Renderer_Order',
48
+ ));
49
+
50
+ $this->addColumn('campaign_order_type', array(
51
+ 'header' => Mage::helper('maxicycle')->__('Campaign Order Type'),
52
+ 'align' => 'left',
53
+ 'index' => 'campaign_order_type',
54
+ ));
55
+
56
+ $this->addColumn('response_to_order_id', array(
57
+ 'header' => Mage::helper('maxicycle')->__('Response To Order ID'),
58
+ 'align' => 'left',
59
+ 'index' => 'response_to_order_id',
60
+ ));
61
+
62
+ $this->addColumn('grand_total', array(
63
+ 'header' => Mage::helper('maxicycle')->__('Grand Total'),
64
+ 'align' => 'left',
65
+ 'index' => 'grand_total',
66
+ ));
67
+
68
+ $this->addColumn('order_profit', array(
69
+ 'header' => Mage::helper('maxicycle')->__('Gross Total'),
70
+ 'align' => 'left',
71
+ 'index' => 'order_profit',
72
+ ));
73
+
74
+ $this->addColumn('created_at', array(
75
+ 'header' => Mage::helper('maxicycle')->__('Created At'),
76
+ 'index' => 'created_at',
77
+ 'type' => 'datetime'
78
+ ));
79
+
80
+ $this->addColumn('export_flag', array(
81
+ 'header' => Mage::helper('maxicycle')->__('Exported to SaaS'),
82
+ 'align' => 'left',
83
+ 'index' => 'export_flag',
84
+ 'renderer' => 'Maxicycle_Connector_Block_Adminhtml_Results_Renderer_Flag2',
85
+ ));
86
+
87
+ return parent::_prepareColumns();
88
+ }
89
+
90
+ }
app/code/community/Maxicycle/Connector/Block/Adminhtml/Results/Renderer/Campaign.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Maxicycle_Connector_Block_Adminhtml_Results_Renderer_Campaign extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract {
4
+
5
+ public function render(Varien_Object $row) {
6
+ $campaign = Mage::getModel('maxicycle/campaigns')->load($row->getData('campaign_id'));
7
+ return $campaign->getName();
8
+ }
9
+
10
+ }
app/code/community/Maxicycle/Connector/Block/Adminhtml/Results/Renderer/Flag2.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Maxicycle_Connector_Block_Adminhtml_Results_Renderer_Flag2 extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract {
4
+
5
+ public function render(Varien_Object $row) {
6
+ if ((int)$row->getData('export_flag')) {
7
+ return 'Yes';
8
+ } else {
9
+ return 'No';
10
+ }
11
+ }
12
+
13
+ }
app/code/community/Maxicycle/Connector/Block/Adminhtml/Results/Renderer/Order.php ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Maxicycle_Connector_Block_Adminhtml_Results_Renderer_Order extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract {
4
+
5
+ public function render(Varien_Object $row) {
6
+ $order = Mage::getModel('sales/order')->loadByIncrementId($row->getData('order_id'));
7
+ return '<a href="' . Mage::helper('adminhtml')->getUrl('adminhtml/sales_order/view', array('order_id' => $order->getEntityId())) . '" target="_blank">' . $row->getData('order_id') . '</a>';
8
+ }
9
+
10
+ }
app/code/community/Maxicycle/Connector/Helper/Data.php ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_Helper_Data extends Mage_Core_Helper_Abstract {
11
+
12
+ public function getConfiguration($store_id) {
13
+ // KEYS
14
+ $is_enable_key = 'maxicycle/maxicycle_option/enable';
15
+ $api_key_key = 'maxicycle/maxicycle_option/api_key';
16
+ $product_costs_attribute_key = 'maxicycle/maxicycle_option/product_costs_attribute';
17
+ $product_costs_fixed_key = 'maxicycle/maxicycle_option/product_costs_fixed';
18
+ $use_tax_key = 'maxicycle/maxicycle_option/use_tax';
19
+ $use_shipping_key = 'maxicycle/maxicycle_option/use_shipping';
20
+ $order_costs_key = 'maxicycle/maxicycle_option/order_costs';
21
+ $product_costs_type_key = 'maxicycle/maxicycle_option/product_costs_type';
22
+ $valid_statuses_key = 'maxicycle/maxicycle_option/valid_statuses';
23
+
24
+ return array(
25
+ 'is_enable' => Mage::getStoreConfig($is_enable_key, $store_id),
26
+ 'api_key' => Mage::getStoreConfig($api_key_key, $store_id),
27
+ 'product_costs_attribute' => Mage::getStoreConfig($product_costs_attribute_key, $store_id),
28
+ 'product_costs_fixed' => Mage::getStoreConfig($product_costs_fixed_key, $store_id),
29
+ 'product_costs_type' => Mage::getStoreConfig($product_costs_type_key, $store_id),
30
+ 'use_tax' => Mage::getStoreConfig($use_tax_key, $store_id),
31
+ 'use_shipping' => Mage::getStoreConfig($use_shipping_key, $store_id),
32
+ 'order_costs' => Mage::getStoreConfig($order_costs_key, $store_id),
33
+ 'valid_statuses' => explode(',', Mage::getStoreConfig($valid_statuses_key, $store_id))
34
+ );
35
+ }
36
+
37
+ }
app/code/community/Maxicycle/Connector/Model/Api/Abstract.php ADDED
@@ -0,0 +1,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_Model_Api_Abstract {
11
+
12
+ /**
13
+ * Property: method
14
+ * The HTTP method this request was made in, either GET, POST, PUT or DELETE
15
+ */
16
+ protected $method = '';
17
+
18
+ /**
19
+ * Property: endpoint
20
+ * The Model requested in the URI. eg: /files
21
+ */
22
+ protected $endpoint = '';
23
+
24
+ /**
25
+ * Property: verb
26
+ * An optional additional descriptor about the endpoint, used for things that can
27
+ * not be handled by the basic methods. eg: /files/process
28
+ */
29
+ protected $verb = '';
30
+
31
+ /**
32
+ * Property: store_id
33
+ * Keep store id according to given api_key
34
+ */
35
+ protected $store_id = 0;
36
+
37
+ /**
38
+ * Property: args
39
+ * Any additional URI components after the endpoint and verb have been removed, in our
40
+ * case, an integer ID for the resource. eg: /<endpoint>/<verb>/<arg0>/<arg1>
41
+ * or /<endpoint>/<arg0>
42
+ */
43
+ protected $args = Array();
44
+
45
+ /**
46
+ * Property: file
47
+ * Stores the input of the PUT request
48
+ */
49
+ protected $file = Null;
50
+
51
+ /**
52
+ * Allow for CORS, assemble and pre-process the data
53
+ */
54
+ public function __construct($request) {
55
+ header("Access-Control-Allow-Orgin: *");
56
+ header("Access-Control-Allow-Methods: *");
57
+ header("Content-Type: application/json");
58
+
59
+ // Verify key
60
+ if (!$this->verifyKey($request)) {
61
+ echo $this->_response(array('message' => 'No or wrong API Key provided'), 403);
62
+ die();
63
+ }
64
+
65
+ $this->method = $_SERVER['REQUEST_METHOD'];
66
+ if ($this->method == 'POST' && array_key_exists('HTTP_X_HTTP_METHOD', $_SERVER)) {
67
+ if ($_SERVER['HTTP_X_HTTP_METHOD'] == 'DELETE') {
68
+ $this->method = 'DELETE';
69
+ } else if ($_SERVER['HTTP_X_HTTP_METHOD'] == 'PUT') {
70
+ $this->method = 'PUT';
71
+ } else if ($_SERVER['HTTP_X_HTTP_METHOD'] == 'GET') {
72
+ $this->method = 'GET';
73
+ } else {
74
+ throw new Exception("Unexpected Header");
75
+ }
76
+ }
77
+
78
+ switch ($this->method) {
79
+ case 'DELETE':
80
+ case 'POST':
81
+ $this->request = $this->_cleanInputs($_POST);
82
+ break;
83
+ case 'GET':
84
+ $this->request = $this->_cleanInputs($_GET);
85
+ break;
86
+ case 'PUT':
87
+ $this->request = $this->_cleanInputs($_GET);
88
+ $this->file = file_get_contents("php://input");
89
+ break;
90
+ default:
91
+ $this->_response('Invalid Method', 405);
92
+ break;
93
+ }
94
+ }
95
+
96
+ // Create JSON answer with specified status code
97
+ public function _response($data, $status = 200) {
98
+ header("HTTP/1.1 " . $status . " " . $this->_requestStatus($status));
99
+ return json_encode($data);
100
+ }
101
+
102
+ // Clean input
103
+ private function _cleanInputs($data) {
104
+ $clean_input = Array();
105
+ if (is_array($data)) {
106
+ foreach ($data as $k => $v) {
107
+ $clean_input[$k] = $this->_cleanInputs($v);
108
+ }
109
+ } else {
110
+ $clean_input = trim(strip_tags($data));
111
+ }
112
+ return $clean_input;
113
+ }
114
+
115
+ private function _requestStatus($code) {
116
+ $status = array(
117
+ 200 => 'OK',
118
+ 201 => 'Campaign created',
119
+ 204 => 'Campaign updated',
120
+ 404 => 'Not Found',
121
+ 403 => 'No API Key provided',
122
+ 405 => 'Method Not Allowed',
123
+ 500 => 'Internal Server Error',
124
+ );
125
+ return ($status[$code]) ? $status[$code] : $status[500];
126
+ }
127
+
128
+ // Key verification
129
+ public function verifyKey($request) {
130
+ $api_key = $request->getHeader('Authorization');
131
+ $api_key_parts = explode(' ', trim($api_key));
132
+ if (count($api_key_parts) > 1) {
133
+ $key = trim($api_key_parts[1]);
134
+ // Check if key belongs to any of Magento stores
135
+ foreach (Mage::app()->getStores() as $store) {
136
+ if ($key == Mage::getStoreConfig('maxicycle/maxicycle_option/api_key', $store->getId())) {
137
+ // Set store ID
138
+ $this->store_id = $store->getId();
139
+ // We found store with same key
140
+ return true;
141
+ }
142
+ }
143
+ return false;
144
+ } else {
145
+ return false;
146
+ }
147
+ }
148
+
149
+ public function getStoreId() {
150
+ return $this->store_id;
151
+ }
152
+ }
app/code/community/Maxicycle/Connector/Model/Api/Rest.php ADDED
@@ -0,0 +1,400 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_Model_Api_Rest extends Maxicycle_Connector_Model_Api_Abstract {
11
+
12
+ var $_db = null;
13
+ var $_resource = null;
14
+ var $_debug = true;
15
+
16
+ public function __construct($request) {
17
+ // Init abstract class
18
+ parent::__construct($request);
19
+
20
+ // Init DB connection
21
+ $this->_db = Mage::getSingleton('core/resource')->getConnection('core_write');
22
+ $this->_resource = Mage::getSingleton('core/resource');
23
+ }
24
+
25
+ public function products($data) {
26
+ if ($this->method == 'POST') {
27
+
28
+ // Check if API key param exist between data
29
+ if (!array_key_exists('sku', $data)) {
30
+ // There is no skku in reuqest
31
+ return $this->_response(array('message' => 'No SKU provided'), 403);
32
+ } else {
33
+ // Check if product with given SKU exist
34
+ $_product = Mage::getModel('catalog/product')->getIdBySku($data['sku']);
35
+ if (!$_product) {
36
+ return $this->_response(array('message' => 'Product with SKU: ' . $data['sku'] . ' not exist'), 404);
37
+ } else {
38
+ return $this->_response(array('message' => 'Product with SKU: exist'), 200);
39
+ }
40
+ }
41
+ } else {
42
+ // Default answer for all other HTTP methods
43
+ return $this->_response(array('message' => 'Method: ' . $this->method . ' is not supported.'), 500);
44
+ }
45
+ }
46
+
47
+ public function stores() {
48
+ if ($this->method == 'GET') {
49
+ // Result array
50
+ $stores_array = array();
51
+ // Loop over all stores
52
+ foreach (Mage::app()->getStores() as $store) {
53
+ $stores_array[] = array('id' => $store->getId(), 'name' => $store->getName());
54
+ }
55
+ // Check if there is any store
56
+ if (count($stores_array) > 0) {
57
+ // Return HTTP 200
58
+ return $this->_response($stores_array, 200);
59
+ } else {
60
+ // There is no store at all
61
+ return $this->_response(array('message' => 'There is no store'), 500);
62
+ }
63
+ } else {
64
+ // Default answer for all other HTTP methods
65
+ return $this->_response(array('message' => 'Method: ' . $this->method . ' is not supported.'), 500);
66
+ }
67
+ }
68
+
69
+ public function key($data) {
70
+ if ($this->method == 'POST') {
71
+
72
+ // Check if API key param exist between data
73
+ if (!array_key_exists('api_key', $data) || !array_key_exists('store_id', $data)) {
74
+ // There is no api key in reuqest
75
+ return $this->_response(array('message' => 'No API key or Store ID provided'), 403);
76
+ } else {
77
+ // Create config object
78
+ $config_model = new Mage_Core_Model_Config();
79
+ // Save key into config table
80
+ $config_model->saveConfig('maxicycle/maxicycle_option/api_key', $data['api_key'], 'stores', $data['store_id']);
81
+ // Return HTTP 200
82
+ return $this->_response(array('message' => 'API key set'), 200);
83
+ }
84
+ } else {
85
+ // Default answer for all other HTTP methods
86
+ return $this->_response(array('message' => 'Method: ' . $this->method . ' is not supported.'), 500);
87
+ }
88
+ }
89
+
90
+ public function campaigns($data, $store_id) {
91
+ // Check HTTP METHOD
92
+ if ($this->method == 'POST') {
93
+ // Check if all params exist
94
+ if (array_key_exists('name', $data) && array_key_exists('sku', $data) && array_key_exists('campaign_start', $data) && array_key_exists('campaign_end', $data) && array_key_exists('response_enddate', $data) && array_key_exists('treatment_group_size', $data)) {
95
+ // Check if product with given SKU exist
96
+ $_product = Mage::getModel('catalog/product')->loadByAttribute('sku', $data['sku']);
97
+ if (!$_product) {
98
+ return $this->_response(array('message' => 'Product with SKU: ' . $data['sku'] . ' not exist'), 404);
99
+ }
100
+
101
+ // Check if store with given ID exist
102
+ $_store = Mage::getModel('core/store')->load($store_id);
103
+ if (!$_store->getId()) {
104
+ return $this->_response(array('message' => 'Store with ID: ' . $store_id . ' not exist'), 404);
105
+ }
106
+
107
+ // Create campaign object
108
+ $model = Mage::getModel('maxicycle/campaigns')->setName($data['name'])
109
+ ->setProductSku($data['sku'])
110
+ ->setCampaignStart(date("Y-m-d 00:00:00", strtotime($data['campaign_start'])))
111
+ ->setCampaignEnd(date("Y-m-d 23:59:59", strtotime($data['campaign_end'])))
112
+ ->setResponseTimeEnd(date("Y-m-d 23:59:59", strtotime($data['response_enddate'])))
113
+ ->setStoreId($store_id)
114
+ ->setCondition('treatment_group_size:' . intval($data['treatment_group_size']));
115
+
116
+ // Save campaign
117
+ try {
118
+ $model->save();
119
+ // Send output
120
+ return $this->_response(array('message' => 'Created', 'campaign_id' => $model->getId()), 201);
121
+ } catch (Exception $ex) {
122
+ // Catch and send exception to output
123
+ return $this->_response(array('message' => 'Error during campaign save: ' . $ex->getMessage()), 500);
124
+ }
125
+ } else {
126
+ // Some of param(s) is missing
127
+ return $this->_response(array('message' => 'Some of required param(s) is missing, please check your request. Required params: name, sku, campaign_start, campaign_end, response_enddate, treatment_group_size'), 500);
128
+ }
129
+ } else if ($this->method == 'PUT') {
130
+ // Params are in file variable
131
+ $data = json_decode($this->file, true);
132
+ // Check if all params exist
133
+ if (array_key_exists('campaign_id', $data) && array_key_exists('name', $data) && array_key_exists('sku', $data) && array_key_exists('campaign_start', $data) && array_key_exists('campaign_end', $data) && array_key_exists('response_enddate', $data) && array_key_exists('treatment_group_size', $data)) {
134
+ // Check if campaign with given ID exist
135
+ $model = Mage::getModel("maxicycle/campaigns")->load(intval($data['campaign_id']));
136
+ if (!$model->getId()) {
137
+ return $this->_response(array('message' => 'Campaign with ID: ' . $data['campaign_id'] . ' not exist'), 404);
138
+ }
139
+
140
+ // Check if product with given SKU exist
141
+ $_product = Mage::getModel('catalog/product')->loadByAttribute('sku', $data['sku']);
142
+ if (!$_product) {
143
+ return $this->_response(array('message' => 'Product with SKU: ' . $data['sku'] . ' not exist'), 404);
144
+ }
145
+
146
+ // Check if store with given ID exist
147
+ $_store = Mage::getModel('core/store')->load($store_id);
148
+ if (!$_store->getId()) {
149
+ return $this->_response(array('message' => 'Store with ID: ' . $store_id . ' not exist'), 404);
150
+ }
151
+
152
+ // Update campaign object
153
+ $model->setName($data['name'])
154
+ ->setProductSku($data['sku'])
155
+ ->setCampaignStart(date("Y-m-d 00:00:00", strtotime($data['campaign_start'])))
156
+ ->setCampaignEnd(date("Y-m-d 23:59:59", strtotime($data['campaign_end'])))
157
+ ->setResponseTimeEnd(date("Y-m-d 23:59:59", strtotime($data['response_enddate'])))
158
+ ->setStoreId($store_id)
159
+ ->setCondition('treatment_group_size:' . intval($data['treatment_group_size']));
160
+
161
+ // Save campaign
162
+ try {
163
+ $model->save();
164
+ // Send output
165
+ return $this->_response(array('message' => 'Updated', 'campaign_id' => $model->getId()), 204);
166
+ } catch (Exception $ex) {
167
+ // Catch and send exception to output
168
+ return $this->_response(array('message' => 'Error during campaign update: ' . $ex->getMessage()), 500);
169
+ }
170
+ } else {
171
+ // Some of param(s) is missing
172
+ return $this->_response(array('message' => 'Some of required param(s) is missing, please check your request. Required params: campaign_id, name, sku, store_id, campaign_start, campaign_end, response_enddate, treatment_group_size'), 500);
173
+ }
174
+ } else if ($this->method == 'DELETE') {
175
+ // Check if all params exist
176
+ if (array_key_exists('campaign_id', $data)) {
177
+ // Check if campaign with given ID exist
178
+ $model = Mage::getModel("maxicycle/campaigns")->load((int) $data['campaign_id']);
179
+ if (!$model->getId()) {
180
+ return $this->_response(array('message' => 'Campaign with ID: ' . $data['campaign_id'] . ' not exist'), 404);
181
+ }
182
+
183
+ // Save campaign
184
+ try {
185
+ $model->delete();
186
+ // Send output
187
+ return $this->_response(array('message' => 'Removed', 'campaign_id' => $model->getId()), 200);
188
+ } catch (Exception $ex) {
189
+ // Catch and send exception to output
190
+ return $this->_response(array('message' => 'Error during campaign delete: ' . $ex->getMessage()), 500);
191
+ }
192
+ } else {
193
+ // Some of param(s) is missing
194
+ return $this->_response(array('message' => 'Some of required param(s) is missing, please check your request. Required params: campaign_id'), 500);
195
+ }
196
+ } else {
197
+ // Default answer for all other HTTP methods
198
+ return $this->_response(array('message' => 'Method: ' . $this->method . ' is not supported.'), 500);
199
+ }
200
+ }
201
+
202
+ public function results($campaign_id, $store_id) {
203
+ if ($this->method == 'GET') {
204
+ if ($campaign_id != 0) {
205
+ // Check if campaign with given ID exist
206
+ $model = Mage::getModel("maxicycle/campaigns")->load($campaign_id);
207
+ if (!$model->getId()) {
208
+ return $this->_response(array('message' => 'Campaign with ID: ' . $campaign_id . ' not exist'), 404);
209
+ }
210
+ // Check if campaign with given ID belongs to correct store_id
211
+ if ($model->getStoreId() != $store_id) {
212
+ return $this->_response(array('message' => 'Campaign with ID: ' . $campaign_id . ' exist but given api_key is associate with different store id - ' . $store_id . ' - ' . $model->getStoreId()), 404);
213
+ }
214
+
215
+ // Order statuses which could be export to Rails App
216
+ $enable_statuses = explode(',', Mage::getStoreConfig('maxicycle/maxicycle_option/valid_statuses'));
217
+
218
+ // Results array
219
+ $results = array();
220
+
221
+ // Load all campaigns
222
+ $campaigns = Mage::getModel('maxicycle/results')->getCollection()->addFieldToFilter('campaign_id', $campaign_id)->addFieldToFilter('export_flag', 0);
223
+ // Loop over all campaigns
224
+ foreach ($campaigns as $campaign) {
225
+ // For debug purpose
226
+ if ($this->_debug) {
227
+ // Simply return data without any check
228
+ $results[] = array(
229
+ 'campaign_id' => $campaign->getCampaignId(),
230
+ 'order_id' => $campaign->getOrderId(),
231
+ 'customer_id' => $campaign->getMaxicycleCustomerId(),
232
+ 'campaign_order_type' => $campaign->getCampaignOrderType(),
233
+ 'order_date' => $campaign->getCreatedAt(),
234
+ 'response_to_order_id' => $campaign->getResponseToOrderId(),
235
+ 'revenue' => $campaign->getGrandTotal(),
236
+ 'gross_profit' => $campaign->getOrderProfit(),
237
+ 'last_order_update' => $campaign->getLastOrderUpdateDate()
238
+ );
239
+ $campaign->setExportFlag(1)->save();
240
+ } else {
241
+ // Order status check
242
+ $order_status = $this->_db->fetchOne("SELECT status FROM " . $this->_resource->getTableName("sales_flat_order_grid") . " WHERE increment_id = '" . $campaign->getOrderId() . "'");
243
+
244
+ if (in_array($order_status, $enable_statuses)) {
245
+ $results[] = array(
246
+ 'campaign_id' => $campaign->getCampaignId(),
247
+ 'order_id' => $campaign->getOrderId(),
248
+ 'customer_id' => $campaign->getMaxicycleCustomerId(),
249
+ 'campaign_order_type' => $campaign->getCampaignOrderType(),
250
+ 'order_date' => $campaign->getCreatedAt(),
251
+ 'response_to_order_id' => $campaign->getResponseToOrderId(),
252
+ 'revenue' => $campaign->getGrandTotal(),
253
+ 'gross_profit' => $campaign->getOrderProfit(),
254
+ 'last_order_update' => $campaign->getLastOrderUpdateDate()
255
+ );
256
+ $campaign->setExportFlag(1)->save();
257
+ }
258
+ }
259
+ }
260
+ // Check if there is any result
261
+ if (count($results) > 0) {
262
+ // Return HTTP 200
263
+ return $this->_response($results, 200);
264
+ } else {
265
+ // There is no store at all
266
+ return $this->_response(array('message' => 'There is no result'), 500);
267
+ }
268
+ } else {
269
+ return $this->_response(array('message' => 'Campaign with ID: ' . $campaign_id . ' is wrong, please check request.'), 500);
270
+ }
271
+ } else {
272
+ // Default answer for all other HTTP methods
273
+ return $this->_response(array('message' => 'Method: ' . $this->method . ' is not supported.'), 500);
274
+ }
275
+ }
276
+
277
+ public function regenerate($campaign_id, $store_id) {
278
+ if ($this->method == 'GET') {
279
+ if ($campaign_id != 0) {
280
+ // Check if campaign with given ID exist
281
+ $campaign = Mage::getModel("maxicycle/campaigns")->load($campaign_id);
282
+
283
+ if (!$campaign->getId()) {
284
+ return $this->_response(array('message' => 'Campaign with ID: ' . $campaign_id . ' not exist'), 404);
285
+ }
286
+ // Check if campaign with given ID belongs to correct store_id
287
+ if ($campaign->getStoreId() != $store_id) {
288
+ return $this->_response(array('message' => 'Campaign with ID: ' . $campaign_id . ' exist but given api_key is associate with different store id - ' . $store_id . ' - ' . $model->getStoreId()), 404);
289
+ }
290
+
291
+ if ($campaign) {
292
+ // DB connection
293
+ $db = Mage::getSingleton('core/resource')->getConnection('core_write');
294
+ $resource = Mage::getSingleton('core/resource');
295
+ $config = Mage::helper('maxicycle')->getConfiguration($campaign->getStoreId());
296
+ // Delete old results
297
+ $db->query("DELETE FROM " . $resource->getTableName('maxicycle/results') . " WHERE campaign_id = $campaign_id");
298
+ // Get orders which should be in results according to date
299
+ $orders = $db->query("SELECT entity_id FROM " . $resource->getTableName('sales_flat_order') . " WHERE maxicycle_campaign_id = $campaign_id AND created_at >= '" . $campaign->getCampaignStart() . "' AND created_at <= '" . $campaign->getResponseTimeEnd() . "'");
300
+ foreach ($orders as $o) {
301
+ // Load order object
302
+ $order = Mage::getModel('sales/order')->load((int) $o['entity_id']);
303
+ // Gross profit
304
+ $gross_profit = 0.0000;
305
+ // Recount gross_profit according to module configuration
306
+ $order_items = $order->getAllVisibleItems();
307
+ $use_tax = intval($config['use_tax']);
308
+ $product_costs_type = $config['product_costs_type'];
309
+ $product_costs_attribute = $config['product_costs_attribute'];
310
+ $product_costs_fixed = $config['product_costs_fixed'];
311
+ $order_costs = floatval($config['order_costs']);
312
+
313
+ // Loop over all order items
314
+ foreach ($order_items as $item) {
315
+ // Load product
316
+ $product = Mage::getModel('catalog/product')->load($item->getProductId());
317
+ // Check if use product price with or without tax
318
+ if (!$use_tax) {
319
+ // With
320
+ if ($product_costs_type == '1') {
321
+ // Attribute
322
+ if (trim($product_costs_attribute) != '') {
323
+ // Decrease product price by buy price
324
+ $bp = floatval($product->getData($product_costs_attribute));
325
+ $gross_profit += (floatval($item->getQtyOrdered()) * (floatval($item->getBasePriceInclTax()) - $bp));
326
+ } else {
327
+ // Use original product price
328
+ $gross_profit += (floatval($item->getQtyOrdered()) * floatval($item->getBasePriceInclTax()));
329
+ }
330
+ } else {
331
+ // Fixed
332
+ if (floatval($product_costs_fixed) != 0) {
333
+ // Decrease product price by percentage
334
+ $fixed = 1 + floatval($product_costs_fixed) / 100.00;
335
+ $gross_profit += (floatval($item->getQtyOrdered()) * (floatval($item->getBasePriceInclTax()) / $fixed));
336
+ } else {
337
+ // Use original product price
338
+ $gross_profit += (floatval($item->getQtyOrdered()) * floatval($item->getBasePriceInclTax()));
339
+ }
340
+ }
341
+ } else {
342
+ // Without
343
+ if ($product_costs_type == '1') {
344
+ // Attribute
345
+ if (trim($product_costs_attribute) != '') {
346
+ // Decrease product price by buy price
347
+ $bp = floatval($product->getData($product_costs_attribute));
348
+ $gross_profit += (floatval($item->getQtyOrdered()) * (floatval($item->getBasePrice() - $bp)));
349
+ } else {
350
+ // Use original product price
351
+ $gross_profit += (floatval($item->getQtyOrdered()) * floatval($item->getBasePrice()));
352
+ }
353
+ } else {
354
+ // Fixed
355
+ if (floatval($product_costs_fixed) != 0) {
356
+ // Decrease product price by percentage
357
+ $fixed = 1 + floatval($product_costs_fixed) / 100.00;
358
+ $gross_profit += (floatval($item->getQtyOrdered()) * floatval($item->getBasePrice() / $fixed));
359
+ } else {
360
+ // Use original product price
361
+ $gross_profit += (floatval($item->getQtyOrdered()) * floatval($item->getBasePrice()));
362
+ }
363
+ }
364
+ }
365
+ }
366
+
367
+ // Decrease order costs
368
+ $gross_profit -= floatval($order_costs);
369
+
370
+ // Prepare data for Maxicycle results table
371
+ $data = array(
372
+ 'campaign_id' => $campaign_id,
373
+ 'order_id' => $order->getIncrementId(),
374
+ 'maxicycle_customer_id' => $order->getMaxicycleCustomerId(),
375
+ 'created_at' => $order->getCreatedAt(),
376
+ 'response_to_order_id' => $order->getMaxicycleResponseToOrderId(),
377
+ 'grand_total' => $order->getGrandTotal(),
378
+ 'order_profit' => $gross_profit,
379
+ 'last_order_update_date' => $order->getUpdatedAt(),
380
+ 'campaign_order_type' => $order->getMaxicycleOrderType(),
381
+ 'export_flag' => 0
382
+ );
383
+
384
+ // Save into result table
385
+ Mage::getModel('maxicycle/results')->setData($data)->save();
386
+ }
387
+ return $this->_response(array('message' => 'Results had been generated properly'), 200);
388
+ } else {
389
+ return $this->_response(array('message' => 'Campaign with ID: ' . $campaign_id . ' is wrong, please check request.'), 500);
390
+ }
391
+ } else {
392
+ return $this->_response(array('message' => 'Campaign with ID: ' . $campaign_id . ' is wrong, please check request.'), 500);
393
+ }
394
+ } else {
395
+ // Default answer for all other HTTP methods
396
+ return $this->_response(array('message' => 'Method: ' . $this->method . ' is not supported.'), 500);
397
+ }
398
+ }
399
+
400
+ }
app/code/community/Maxicycle/Connector/Model/Campaigns.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+
11
+ class Maxicycle_Connector_Model_Campaigns extends Mage_Core_Model_Abstract {
12
+
13
+ public function _construct() {
14
+ parent::_construct();
15
+ $this->_init('maxicycle/campaigns');
16
+ }
17
+ }
app/code/community/Maxicycle/Connector/Model/Cronlog.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+
11
+ class Maxicycle_Connector_Model_Cronlog extends Mage_Core_Model_Abstract {
12
+
13
+ public function _construct() {
14
+ parent::_construct();
15
+ $this->_init('maxicycle/cronlog');
16
+ }
17
+ }
app/code/community/Maxicycle/Connector/Model/Mysql4/Campaigns.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+
11
+ class Maxicycle_Connector_Model_Mysql4_Campaigns extends Mage_Core_Model_Mysql4_Abstract {
12
+
13
+ public function _construct() {
14
+ $this->_init('maxicycle/campaigns', 'campaign_id');
15
+ }
16
+
17
+ }
app/code/community/Maxicycle/Connector/Model/Mysql4/Campaigns/Collection.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+
11
+ class Maxicycle_Connector_Model_Mysql4_Campaigns_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract {
12
+
13
+ public function _construct() {
14
+ $this->_init('maxicycle/campaigns');
15
+ }
16
+
17
+ }
app/code/community/Maxicycle/Connector/Model/Mysql4/Cronlog.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+
11
+ class Maxicycle_Connector_Model_Mysql4_Cronlog extends Mage_Core_Model_Mysql4_Abstract {
12
+
13
+ public function _construct() {
14
+ $this->_init('maxicycle/cronlog', 'cron_id');
15
+ }
16
+
17
+ }
app/code/community/Maxicycle/Connector/Model/Mysql4/Cronlog/Collection.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_Model_Mysql4_Cronlog_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract {
11
+
12
+ public function _construct() {
13
+ $this->_init('maxicycle/cronlog');
14
+ }
15
+
16
+ }
app/code/community/Maxicycle/Connector/Model/Mysql4/Results.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+
11
+ class Maxicycle_Connector_Model_Mysql4_Results extends Mage_Core_Model_Mysql4_Abstract {
12
+
13
+ public function _construct() {
14
+ $this->_init('maxicycle/results', 'id');
15
+ }
16
+
17
+ }
app/code/community/Maxicycle/Connector/Model/Mysql4/Results/Collection.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_Model_Mysql4_Results_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract {
11
+
12
+ public function _construct() {
13
+ $this->_init('maxicycle/results');
14
+ }
15
+
16
+ }
app/code/community/Maxicycle/Connector/Model/Mysql4/Results/Renderer/Actions.php ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Aglumbik_Creditmemoext_Block_Adminhtml_Sales_Creditmemo_Renderer_Actions extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract {
4
+
5
+ public function render(Varien_Object $row) {
6
+ // Load creditmemo for prefill values
7
+ $creditmemo_info = Mage::getModel('sales/order_creditmemo')->load($row->getData('entity_id'));
8
+
9
+ // Create for for custom actions
10
+ $output = '<form method="post" action="' . Mage::getUrl('creditmemoext/adminhtml_creditmemoext/update') . '" id="form' . $row->getData('entity_id') . '"><input type="hidden" name="entity_id" value="' . $row->getData('entity_id') . '" /><input type="hidden" name="form_key" value="' . Mage::getSingleton('core/session')->getFormKey() . '" /><table>';
11
+
12
+ // Custom status
13
+ $custom_status = '<select name="custom_status" style="width:100%;">';
14
+ foreach (Mage::helper('creditmemoext')->getCustomStatuses(false) as $value => $label) {
15
+ $custom_status .= '<option' . (($value == $creditmemo_info->getCustomStatus()) ? ' selected="selected"' : '') . ' value="' . $value . '">' . $label . '</option>';
16
+ }
17
+ $custom_status .= '</select>';
18
+ $output .= '<tr><td class="label">Stav:</td><td class="value">' . $custom_status . '</td></tr>';
19
+
20
+ // Account number
21
+ $output .= '<tr><td class="label">Číslo účtu:</td><td class="value"><input type="text" name="account_number" value="' . $creditmemo_info->getAccountNumber() . '" class="input-text" style="width:97%;" /></td></tr>';
22
+ // New order ID
23
+ $output .= '<tr><td class="label">ID nové objednávky:</td><td class="value"><input type="text" name="new_order_id" value="' . $creditmemo_info->getNewOrderId() . '" class="input-text" style="width:97%;" /></td></tr>';
24
+ // Export date
25
+ $output .= '<tr><td class="label">Datum exportu:</td><td class="value">&nbsp;</td></tr>';
26
+ // Payment ID
27
+ $output .= '<tr><td class="label">ID platby:</td><td class="value">&nbsp;</td></tr>';
28
+ // Payment date
29
+ $output .= '<tr><td class="label">Datum platby:</td><td class="value">&nbsp;</td></tr>';
30
+
31
+
32
+ // End of form and save button
33
+ $output .= '<tr><td>&nbsp;</td><td><button onclick="$(\'form' . $row->getData('entity_id') . '\').submit();" class="scalable task" type="button" title="Uložit údaje"><span><span><span>Uložit údaje</span></span></span></button></td></tr></table></form>';
34
+
35
+ return $output;
36
+ }
37
+
38
+ }
app/code/community/Maxicycle/Connector/Model/Mysql4/Results/Renderer/Status.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Aglumbik_Creditmemoext_Block_Adminhtml_Sales_Creditmemo_Renderer_Status extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract {
4
+
5
+ public function render(Varien_Object $row) {
6
+ $value = 0 + (int) $row->getData($this->getColumn()->getIndex());
7
+ $statuses = Mage::helper('creditmemoext')->getCustomStatuses();
8
+ return $value;
9
+ }
10
+
11
+ }
app/code/community/Maxicycle/Connector/Model/Observer.php ADDED
@@ -0,0 +1,322 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_Model_Observer {
11
+
12
+ var $_db = null;
13
+ var $_dbResource = null;
14
+ var $_now = '';
15
+ var $_config = array();
16
+
17
+ public function __construct() {
18
+ $this->_db = Mage::getSingleton('core/resource')->getConnection('core_write');
19
+ $this->_dbResource = Mage::getSingleton('core/resource');
20
+ $this->_now = date("Y-m-d H:i:s");
21
+ }
22
+
23
+ private function setConfig($store_id) {
24
+ $this->_config = Mage::helper('maxicycle')->getConfiguration($store_id);
25
+ }
26
+
27
+ // add PRODUCT after order placement
28
+ public function sales_order_place_after($observer) {
29
+ try {
30
+ $order = $observer->getOrder();
31
+ $this->setConfig($order->getStoreId());
32
+ if (intval($this->_config['is_enable'])) {
33
+ Mage::log('MAXICYCLE: adding product to order', null, 'maxicycle.log');
34
+ $active_campaigns = $this->_db->fetchAll("SELECT * FROM " . $this->_dbResource->getTableName('maxicycle/campaigns') . " WHERE campaign_start <= '$this->_now' AND response_time_end >= '$this->_now' AND store_id = " . Mage::app()->getStore()->getId());
35
+ // If there is some active campaign
36
+ if (count($active_campaigns) > 0) {
37
+ Mage::log('MAXICYCLE: active campaigns, checking for product to add', null, 'maxicycle.log');
38
+ // Loop over active campaings
39
+ foreach ($active_campaigns as $campaign) {
40
+ // add product to Order
41
+ $this->addProductToOrder($order, $campaign);
42
+ // Set campaign_id to order
43
+ $order->setMaxicycleCampaignId($campaign['campaign_id']);
44
+ $maxicycle_customer_id = $this->setCustomerIdToOrder($order, $campaign);
45
+ // check and mark if order is response order
46
+ $response_to_order_id = $this->checkIfResponseOrder($order, $maxicycle_customer_id, $campaign);
47
+ }
48
+ } else {
49
+ Mage::log('MAXICYCLE: No active campaigns, not adding a product', null, 'maxicycle.log');
50
+ }
51
+ } else {
52
+ Mage::log('MAXICYCLE: module disabled', null, 'maxicycle.log');
53
+ }
54
+ }
55
+ catch(Exception $e) {
56
+ Mage::log('Order Place After Exception: ' .$e->getMessage(), null, 'maxicycle.log');
57
+ }
58
+ }
59
+
60
+ public function sales_order_save_after($observer) {
61
+ try {
62
+ $order = $observer->getOrder();
63
+ $this->setConfig($order->getStoreId());
64
+ Mage::log('MAXICYCLE: after save hook for order:' . $order->getEntityId(), null, 'maxicycle.log');
65
+ //Mage::log(json_encode($this->_config), null, 'maxicycle.log');
66
+ //Mage::log($this->_config['valid_statuses'], null, 'maxicycle.log');
67
+ // Check if Maxicycle is active and a valid status
68
+ if ($this->shouldExport($order)) {
69
+ Mage::log('MAXICYCLE: valid status: ' . $order->getStatus(), null, 'maxicycle.log');
70
+ // Load order info
71
+ Mage::log('MAXICYCLE: Order ID ' . $order->getEntityId(), null, 'maxicycle.log');
72
+ Mage::log('MAXICYCLE: valid status: ' . $order->getStatus(), null, 'maxicycle.log');
73
+ // Get all active campaigns
74
+ // Mage::log('MAXICYCLE: Current Store ' . $order->getStoreId(), null, 'maxicycle.log');
75
+ // TODO: refactor this, order has campaign id already
76
+ $active_campaigns = $this->_db->fetchAll("SELECT * FROM " . $this->_dbResource->getTableName('maxicycle/campaigns') .
77
+ " WHERE campaign_start <= '$this->_now' AND response_time_end >= '$this->_now' AND store_id = " . $order->getStoreId());
78
+ // If there are some active campaigns
79
+ if (count($active_campaigns) > 0) {
80
+ Mage::log('MAXICYCLE: active campaigns', null, 'maxicycle.log');
81
+ // Loop over active campaings
82
+ foreach ($active_campaigns as $campaign) {
83
+ $this->exportToResults($order, $campaign);
84
+ }
85
+ } else {
86
+ Mage::log('MAXICYCLE: No active campaigns', null, 'maxicycle.log');
87
+ }
88
+ } else {
89
+ # do nothing
90
+ # Mage::log('MAXICYCLE: module disabled or invalid status', null, 'maxicycle.log');
91
+ }
92
+ }
93
+ catch(Exception $e) {
94
+ Mage::log('Order Save After Exception: ' .$e->getMessage(), null, 'maxicycle.log');
95
+ }
96
+ }
97
+
98
+ public function testCondition($condition_code, $value, $order) {
99
+ if ($condition_code == 'treatment_group_size') {
100
+ // Generate random number
101
+ $random_number = rand(0, 100);
102
+ // Log random number for overview
103
+ Mage::log('MAXICYCLE: Random number for order #' . $order->getIncrementId() . ' was: ' . $random_number, null, 'maxicycle.log');
104
+ if ($random_number <= $value) {
105
+ return true;
106
+ } else {
107
+ return false;
108
+ }
109
+ }
110
+ }
111
+
112
+ private function exportToResults($order, $campaign) {
113
+ Mage::log('MAXICYCLE: Starting Export', null, 'maxicycle.log');
114
+ $order_id = $order->getIncrementId();
115
+ // check if already exported
116
+ $previous_order_exists = $this->_db->fetchAll("SELECT order_id FROM " .
117
+ $this->_dbResource->getTableName('maxicycle/results') .
118
+ " WHERE campaign_id = " . $campaign['campaign_id'] .
119
+ " AND order_id = ". $order_id ." LIMIT 1");
120
+
121
+ if (count($previous_order_exists) == 1) {
122
+ Mage::log('MAXICYCLE: Order already exported: ' . $order->getIncrementId(), null, 'maxicycle.log');
123
+ } else {
124
+
125
+ Mage::log('MAXICYCLE: exporting status: ' . $order->getStatus(), null, 'maxicycle.log');
126
+
127
+ // no idea why we do this, but we check and set the customer id to the order
128
+ $maxicycle_customer_id = $order->getMaxicycleCustomerId();
129
+ //$maxicycle_customer_id = $order->getCustomerId();
130
+
131
+ // calculate gross profit
132
+ $gross_profit = $this->calculateGrossProfit($order);
133
+
134
+ // Prepare data for Maxicycle results table
135
+ $data = array(
136
+ 'campaign_id' => $campaign['campaign_id'],
137
+ 'order_id' => $order_id,
138
+ 'maxicycle_customer_id' => $maxicycle_customer_id,
139
+ 'created_at' => $order->getCreatedAt(),
140
+ 'grand_total' => $order->getGrandTotal(),
141
+ 'order_profit' => $gross_profit,
142
+ 'last_order_update_date' => $order->getCreatedAt(),
143
+ 'export_flag' => 0,
144
+ 'campaign_order_type' => $order->getMaxicycleOrderType(),
145
+ 'response_to_order_id' => $order->getMaxicycleResponseToOrderId()
146
+ );
147
+
148
+ // Save order data into Maxicycle orders table
149
+ try {
150
+ $result = Mage::getModel('maxicycle/results')->setData($data)->save();
151
+ Mage::log('MAXICYCLE: Result: ' . $result->getId(), null, 'maxicycle.log');
152
+ } catch (Exception $e) {
153
+ Mage::log('MAXICYCLE: ERROR: ' . $e->getMessage(), null, 'maxicycle.log');
154
+ }
155
+ }
156
+ }
157
+
158
+ private function setCustomerIdToOrder($order, $campaign) {
159
+ // Customer email
160
+ $customer_email = $order->getCustomerEmail();
161
+ // Check if order exist with same customer email and already with Maxicycle Customer ID
162
+ $maxicycle_customer_id_exist = $this->_db->fetchAll("SELECT maxicycle_customer_id FROM "
163
+ . $this->_dbResource->getTableName('sales/order')
164
+ . " WHERE customer_email = '$customer_email' AND store_id = "
165
+ . $campaign['store_id'] . " AND maxicycle_customer_id IS NOT NULL LIMIT 1");
166
+
167
+ $maxicycle_customer_id = 0;
168
+
169
+ // If not then assign maxicycle customer is as order entity ID is, if yes then use maxicycle_customer_id from the past
170
+ if (count($maxicycle_customer_id_exist) > 0) {
171
+ $maxicycle_customer_id = intval($maxicycle_customer_id_exist[0]['maxicycle_customer_id']);
172
+ Mage::log('MAXICYCLE: existing customer id found: ' . $maxicycle_customer_id, null, 'maxicycle.log');
173
+ } else {
174
+ $maxicycle_customer_id = $order->getEntityId();
175
+ Mage::log('MAXICYCLE: new customer id: ' . $maxicycle_customer_id, null, 'maxicycle.log');
176
+ }
177
+ $order->setMaxicycleCustomerId($maxicycle_customer_id);
178
+ return $maxicycle_customer_id;
179
+ }
180
+
181
+ private function calculateGrossProfit($order) {
182
+
183
+ // Recount gross_profit according to module configuration
184
+ $order_items = $order->getAllVisibleItems();
185
+ $use_tax = intval($this->_config['use_tax']);
186
+ $product_costs_type = $this->_config['product_costs_type'];
187
+ $product_costs_attribute = $this->_config['product_costs_attribute'];
188
+ $product_costs_fixed = $this->_config['product_costs_fixed'];
189
+ $avg_order_costs = floatval($this->_config['order_costs']);
190
+ $grand_total = $order->getGrandTotal();
191
+ $item_costs = 0.00;
192
+
193
+ // Loop over all order items
194
+ foreach ($order_items as $item) {
195
+ $item_price = floatval($item->getBasePrice());
196
+ $item_quantity = floatval($item->getQtyOrdered());
197
+ // Load product
198
+ $product = Mage::getModel('catalog/product')->load($item->getProductId());
199
+
200
+ // get product price from attribute
201
+ if ($product_costs_type == '1') {
202
+ // get product price from specified attribute
203
+ $bp = floatval($product->getData($product_costs_attribute));
204
+ // Mage::log('MAXICYCLE: Gross profit: attribute', null, 'maxicycle.log');
205
+ if ($bp != 0) {
206
+ // Mage::log('MAXICYCLE: Gross profit: attribute value: ' . $bp, null, 'maxicycle.log');
207
+ $item_costs += ($item_quantity * $bp);
208
+ } else {
209
+ // Mage::log('MAXICYCLE: Gross profit: attribute value empty ' . $bp, null, 'maxicycle.log');
210
+ $item_costs += ($item_quantity * $item_price);
211
+ }
212
+ } else {
213
+ // Mage::log('MAXICYCLE: Gross profit: fixed product price - percentage', null, 'maxicycle.log');
214
+ if (floatval($product_costs_fixed) != 0) {
215
+ // deduct percentage
216
+ $fixed_percentage = floatval($product_costs_fixed) / 100.00;
217
+ $item_costs += ($item_quantity * $item_price * $fixed_percentage);
218
+ // Mage::log('MAXICYCLE: Gross profit: item costs ' . $item_costs, null, 'maxicycle.log');
219
+ } else {
220
+ $item_costs += ($item_quantity * $item_price);
221
+ }
222
+ }
223
+ }
224
+
225
+ // deduct specified average order costs
226
+ $gross_profit = ($grand_total - floatval($avg_order_costs));
227
+ Mage::log('MAXICYCLE: Gross profit: Grand total - avg order costs' . $gross_profit, null, 'maxicycle.log');
228
+ // deduct tax
229
+ if ($use_tax) {
230
+ Mage::log('MAXICYCLE: Gross profit, deducting tax', null, 'maxicycle.log');
231
+ $gross_profit -= floatval($order->getTaxAmount());
232
+ }
233
+ // deduct order item costs
234
+ $gross_profit -= $item_costs;
235
+ return $gross_profit;
236
+ }
237
+
238
+ private function addProductToOrder($order, $campaign) {
239
+ Mage::log('MAXICYCLE: adding product', null, 'maxicycle.log');
240
+ $campaign_time_end = strtotime($campaign['campaign_end']);
241
+ // Process condition - ADD PRODUCT - only if campaign is still in CP and not already in RT
242
+ if ($campaign_time_end >= time()) {
243
+ $conditions = explode('|', $campaign['condition']);
244
+ if (count($conditions) > 0) {
245
+ // Loop over conditions
246
+ for ($i = 0; $i < count($conditions); $i++) {
247
+ $condition = explode(":", $conditions[$i]);
248
+ if (count($condition) == 2) {
249
+ // Get code and value of condition
250
+ $condition_code = $condition[0];
251
+ $condition_value = $condition[1];
252
+
253
+ // Test condition
254
+ switch ($condition_code) {
255
+ case 'treatment_group_size' : {
256
+ // if treatment condition true -> insert rule SKU
257
+ if ($this->testCondition($condition_code, $condition_value, $order)) {
258
+ Mage::log('MAXICYCLE: OrderType: treatment', null, 'maxicycle.log');
259
+ // Load product
260
+ $product = Mage::getModel('catalog/product')->loadByAttribute('sku', $campaign['product_sku']);
261
+ if ($product) {
262
+ // Save product into order
263
+ $rowTotal = 0.00;
264
+ $order_item = Mage::getModel('sales/order_item')->setStoreId(null)->setQuoteItemId(null)->setQuoteParentItemId(null)->setProductId($product->getId())->setProductType($product->getTypeId())->setQtyBackordered(null)->setTotalQtyOrdered(1)->setQtyOrdered(1)->setName($product->getName())->setSku($product->getSku())->setPrice(0)->setBasePrice(0)->setOriginalPrice(0)->setRowTotal($rowTotal)->setBaseRowTotal($rowTotal)->setOrder($order);
265
+ $order_item->save();
266
+ // Set it into order
267
+ $order->setMaxicycleOrderType('treatment');
268
+ } else {
269
+ Mage::log('MAXICYCLE: WARNING: Product ' . $campaign['product_sku'] . ' not found for control order', null, 'maxicycle.log');
270
+ }
271
+ } else {
272
+ // Set it into order to be used when exporting the results
273
+ $order->setMaxicycleOrderType('control');
274
+ Mage::log('MAXICYCLE: OrderType: control', null, 'maxicycle.log');
275
+ }
276
+ break;
277
+ }
278
+ }
279
+ }
280
+ }
281
+ }
282
+ } else {
283
+ Mage::log('MAXICYCLE: Not adding product, campaign in response period');
284
+ }
285
+ }
286
+
287
+ private function checkIfResponseOrder($order, $maxicycle_customer_id, $campaign) {
288
+ Mage::log('MAXICYCLE: campaign: ' . $campaign['campaign_id'], null, 'maxicycle.log');
289
+ Mage::log('MAXICYCLE: customer id: ' . $maxicycle_customer_id, null, 'maxicycle.log');
290
+ $response_to_order_id = NULL;
291
+ // Identify if it is response order
292
+ $previous_order_exists = $this->_db->fetchAll("SELECT order_id FROM " . $this->_dbResource->getTableName('maxicycle/results') .
293
+ " WHERE campaign_id = " . $campaign['campaign_id'] .
294
+ " AND maxicycle_customer_id = $maxicycle_customer_id AND campaign_order_type IS NOT NULL ORDER BY created_at DESC LIMIT 1");
295
+ if (count($previous_order_exists) == 1) {
296
+ Mage::log('MAXICYCLE: response order', null, 'maxicycle.log');
297
+ $response_to_order_id = $previous_order_exists[0]['order_id'];
298
+ // Set it into order
299
+ $order->setMaxicycleResponseToOrderId($response_to_order_id);
300
+ }
301
+ return $response_to_order_id;
302
+ }
303
+
304
+ private function shouldExport($order) {
305
+ return $this->moduleEnabled() && $this->validStatus($order) && $this->hasCampaignOrderTypeSet($order);
306
+ }
307
+
308
+ // requires config to be set
309
+ private function validStatus($order) {
310
+ return in_array($order->getStatus(), $this->_config['valid_statuses']);
311
+ }
312
+
313
+ // requires _config to be set
314
+ private function moduleEnabled() {
315
+ return intval($this->_config['is_enable']);
316
+ }
317
+
318
+ // should have type set - fixes bug when exported before order_place_after_ran
319
+ private function hasCampaignOrderTypeSet($order) {
320
+ return !empty($order->getMaxicycleOrderType());
321
+ }
322
+ }
app/code/community/Maxicycle/Connector/Model/Resource/Mysql4/Setup.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+
11
+ class Maxicycle_Connector_Model_Resource_Mysql4_Setup extends Mage_Core_Model_Resource_Setup {
12
+
13
+ }
app/code/community/Maxicycle/Connector/Model/Results.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+
11
+ class Maxicycle_Connector_Model_Results extends Mage_Core_Model_Abstract {
12
+
13
+ public function _construct() {
14
+ parent::_construct();
15
+ $this->_init('maxicycle/results');
16
+ }
17
+ }
app/code/community/Maxicycle/Connector/controllers/Adminhtml/CampaignsController.php ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_Adminhtml_CampaignsController extends Mage_Adminhtml_Controller_action {
11
+
12
+ public function indexAction() {
13
+ $this->loadLayout();
14
+ $this->_addContent($this->getLayout()->createBlock('maxicycle/adminhtml_campaigns'));
15
+ $this->renderLayout();
16
+ }
17
+
18
+ public function regenerateAction() {
19
+ $campaign_id = (int) $this->getRequest()->getParam('campaign_id');
20
+ if ($campaign_id != 0) {
21
+ $campaign = Mage::getModel('maxicycle/campaigns')->load($campaign_id);
22
+ if ($campaign) {
23
+ // DB connection
24
+ $db = Mage::getSingleton('core/resource')->getConnection('core_write');
25
+ $resource = Mage::getSingleton('core/resource');
26
+ $config = Mage::helper('maxicycle')->getConfiguration($campaign->getStoreId());
27
+ // Delete old results
28
+ $db->query("DELETE FROM " . $resource->getTableName('maxicycle/results') . " WHERE campaign_id = $campaign_id");
29
+ // Get orders which should be in results according to date
30
+ $orders = $db->query("SELECT entity_id FROM " . $resource->getTableName('sales_flat_order') . " WHERE maxicycle_campaign_id = $campaign_id AND created_at >= '" . $campaign->getCampaignStart() . "' AND created_at <= '" . $campaign->getResponseTimeEnd() . "'");
31
+ foreach ($orders as $o) {
32
+ // Load order object
33
+ $order = Mage::getModel('sales/order')->load((int) $o['entity_id']);
34
+ // Gross profit
35
+ $gross_profit = 0.0000;
36
+ // Recount gross_profit according to module configuration
37
+ $order_items = $order->getAllVisibleItems();
38
+ $use_tax = intval($config['use_tax']);
39
+ $product_costs_type = $config['product_costs_type'];
40
+ $product_costs_attribute = $config['product_costs_attribute'];
41
+ $product_costs_fixed = $config['product_costs_fixed'];
42
+ $order_costs = floatval($config['order_costs']);
43
+
44
+ // Loop over all order items
45
+ foreach ($order_items as $item) {
46
+ // Load product
47
+ $product = Mage::getModel('catalog/product')->load($item->getProductId());
48
+ // Check if use product price with or without tax
49
+ if (!$use_tax) {
50
+ // With
51
+ if ($product_costs_type == '1') {
52
+ // Attribute
53
+ if (trim($product_costs_attribute) != '') {
54
+ // Decrease product price by buy price
55
+ $bp = floatval($product->getData($product_costs_attribute));
56
+ $gross_profit += (floatval($item->getQtyOrdered()) * (floatval($item->getBasePriceInclTax()) - $bp));
57
+ } else {
58
+ // Use original product price
59
+ $gross_profit += (floatval($item->getQtyOrdered()) * floatval($item->getBasePriceInclTax()));
60
+ }
61
+ } else {
62
+ // Fixed
63
+ if (floatval($product_costs_fixed) != 0) {
64
+ // Decrease product price by percentage
65
+ $fixed = 1 + floatval($product_costs_fixed) / 100.00;
66
+ $gross_profit += (floatval($item->getQtyOrdered()) * (floatval($item->getBasePriceInclTax()) / $fixed));
67
+ } else {
68
+ // Use original product price
69
+ $gross_profit += (floatval($item->getQtyOrdered()) * floatval($item->getBasePriceInclTax()));
70
+ }
71
+ }
72
+ } else {
73
+ // Without
74
+ if ($product_costs_type == '1') {
75
+ // Attribute
76
+ if (trim($product_costs_attribute) != '') {
77
+ // Decrease product price by buy price
78
+ $bp = floatval($product->getData($product_costs_attribute));
79
+ $gross_profit += (floatval($item->getQtyOrdered()) * (floatval($item->getBasePrice() - $bp)));
80
+ } else {
81
+ // Use original product price
82
+ $gross_profit += (floatval($item->getQtyOrdered()) * floatval($item->getBasePrice()));
83
+ }
84
+ } else {
85
+ // Fixed
86
+ if (floatval($product_costs_fixed) != 0) {
87
+ // Decrease product price by percentage
88
+ $fixed = 1 + floatval($product_costs_fixed) / 100.00;
89
+ $gross_profit += (floatval($item->getQtyOrdered()) * floatval($item->getBasePrice() / $fixed));
90
+ } else {
91
+ // Use original product price
92
+ $gross_profit += (floatval($item->getQtyOrdered()) * floatval($item->getBasePrice()));
93
+ }
94
+ }
95
+ }
96
+ }
97
+
98
+ // Decrease order costs
99
+ $gross_profit -= floatval($order_costs);
100
+
101
+ // Prepare data for Maxicycle results table
102
+ $data = array(
103
+ 'campaign_id' => $campaign_id,
104
+ 'order_id' => $order->getIncrementId(),
105
+ 'maxicycle_customer_id' => $order->getMaxicycleCustomerId(),
106
+ 'created_at' => $order->getCreatedAt(),
107
+ 'response_to_order_id' => $order->getMaxicycleResponseToOrderId(),
108
+ 'grand_total' => $order->getGrandTotal(),
109
+ 'order_profit' => $gross_profit,
110
+ 'last_order_update_date' => $order->getUpdatedAt(),
111
+ 'campaign_order_type' => $order->getMaxicycleOrderType(),
112
+ 'export_flag' => 0
113
+ );
114
+
115
+ // Save into result table
116
+ Mage::getModel('maxicycle/results')->setData($data)->save();
117
+ }
118
+ Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('maxicycle')->__('Results had been generated.'));
119
+ $this->_redirect('*/*/');
120
+ } else {
121
+ Mage::getSingleton('adminhtml/session')->addError(Mage::helper('maxicycle')->__('Campaign not exist'));
122
+ $this->_redirect('*/*/');
123
+ }
124
+ } else {
125
+ Mage::getSingleton('adminhtml/session')->addError(Mage::helper('maxicycle')->__('Campaign not exist'));
126
+ $this->_redirect('*/*/');
127
+ }
128
+ }
129
+
130
+ }
app/code/community/Maxicycle/Connector/controllers/Adminhtml/CronlogController.php ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_Adminhtml_CronlogController extends Mage_Adminhtml_Controller_action {
11
+
12
+ public function indexAction() {
13
+ $this->loadLayout();
14
+ $this->_addContent($this->getLayout()->createBlock('maxicycle/adminhtml_cronlog'));
15
+ $this->renderLayout();
16
+ }
17
+
18
+ }
app/code/community/Maxicycle/Connector/controllers/Adminhtml/InstallationController.php ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_Adminhtml_InstallationController extends Mage_Adminhtml_Controller_action {
11
+
12
+ public function indexAction() {
13
+ $this->loadLayout();
14
+ $this->_addContent($this->getLayout()->createBlock('adminhtml/template')->setTemplate('maxicycle/connector/installation/step1.phtml'));
15
+ $this->renderLayout();
16
+ }
17
+
18
+ public function updateAction() {
19
+ if ($this->getRequest()->getPost()) {
20
+ // DB CONNECTION
21
+ $db = Mage::getSingleton('core/resource')->getConnection('core_write');
22
+ $store_id = (int) $this->getRequest()->getPost('store_id');
23
+ $scope = (($store_id == 0) ? 'default' : 'stores');
24
+
25
+ // VALUES
26
+ $is_enable = intval($this->getRequest()->getPost('is_enable'));
27
+ $api_key = addslashes($this->getRequest()->getPost('api_key'));
28
+ $product_costs_attribute = addslashes($this->getRequest()->getPost('product_costs_attribute'));
29
+ $product_costs_fixed = addslashes($this->getRequest()->getPost('product_costs_fixed'));
30
+ $product_costs_type = addslashes($this->getRequest()->getPost('product_costs_type'));
31
+ $use_tax = intval($this->getRequest()->getPost('use_tax'));
32
+ $use_shipping = intval($this->getRequest()->getPost('use_shipping'));
33
+ $order_costs = floatval($this->getRequest()->getPost('order_costs'));
34
+ $valid_statuses = $this->getRequest()->getPost('valid_statuses');
35
+
36
+ // KEYS
37
+ $is_enable_key = 'maxicycle/maxicycle_option/enable';
38
+ $api_key_key = 'maxicycle/maxicycle_option/api_key';
39
+ $product_costs_attribute_key = 'maxicycle/maxicycle_option/product_costs_attribute';
40
+ $product_costs_fixed_key = 'maxicycle/maxicycle_option/product_costs_fixed';
41
+ $use_tax_key = 'maxicycle/maxicycle_option/use_tax';
42
+ $use_shipping_key = 'maxicycle/maxicycle_option/use_shipping';
43
+ $order_costs_key = 'maxicycle/maxicycle_option/order_costs';
44
+ $product_costs_type_key = 'maxicycle/maxicycle_option/product_costs_type';
45
+ $valid_statuses_key = 'maxicycle/maxicycle_option/valid_statuses';
46
+
47
+ // UPDATES
48
+ $db->query("INSERT INTO " . Mage::getSingleton('core/resource')->getTableName('core_config_data') . " (scope,scope_id,path,value) VALUES('$scope', $store_id, '$is_enable_key', '$is_enable') ON DUPLICATE KEY UPDATE value = '$is_enable'");
49
+ $db->query("INSERT INTO " . Mage::getSingleton('core/resource')->getTableName('core_config_data') . " (scope,scope_id,path,value) VALUES('$scope', $store_id, '$api_key_key', '$api_key') ON DUPLICATE KEY UPDATE value = '$api_key'");
50
+ $db->query("INSERT INTO " . Mage::getSingleton('core/resource')->getTableName('core_config_data') . " (scope,scope_id,path,value) VALUES('$scope', $store_id, '$product_costs_attribute_key', '$product_costs_attribute') ON DUPLICATE KEY UPDATE value = '$product_costs_attribute'");
51
+ $db->query("INSERT INTO " . Mage::getSingleton('core/resource')->getTableName('core_config_data') . " (scope,scope_id,path,value) VALUES('$scope', $store_id, '$product_costs_fixed_key', '$product_costs_fixed') ON DUPLICATE KEY UPDATE value = '$product_costs_fixed'");
52
+ $db->query("INSERT INTO " . Mage::getSingleton('core/resource')->getTableName('core_config_data') . " (scope,scope_id,path,value) VALUES('$scope', $store_id, '$product_costs_type_key', '$product_costs_type') ON DUPLICATE KEY UPDATE value = '$product_costs_type'");
53
+ $db->query("INSERT INTO " . Mage::getSingleton('core/resource')->getTableName('core_config_data') . " (scope,scope_id,path,value) VALUES('$scope', $store_id, '$use_tax_key', '$use_tax') ON DUPLICATE KEY UPDATE value = '$use_tax'");
54
+ $db->query("INSERT INTO " . Mage::getSingleton('core/resource')->getTableName('core_config_data') . " (scope,scope_id,path,value) VALUES('$scope', $store_id, '$use_shipping_key', '$use_shipping') ON DUPLICATE KEY UPDATE value = '$use_shipping'");
55
+ $db->query("INSERT INTO " . Mage::getSingleton('core/resource')->getTableName('core_config_data') . " (scope,scope_id,path,value) VALUES('$scope', $store_id, '$order_costs_key', '$order_costs') ON DUPLICATE KEY UPDATE value = '$order_costs'");
56
+ $db->query("INSERT INTO " . Mage::getSingleton('core/resource')->getTableName('core_config_data') . " (scope,scope_id,path,value) VALUES('$scope', $store_id, '$valid_statuses_key', '" . implode(',', $valid_statuses) . "') ON DUPLICATE KEY UPDATE value = '" . implode(',', $valid_statuses) . "'");
57
+
58
+ // RESET CACHE
59
+ $cacheType = 'config';
60
+ Mage::app()->getCacheInstance()->cleanType($cacheType);
61
+ Mage::dispatchEvent('adminhtml_cache_refresh_type', array('type' => $cacheType));
62
+
63
+ // Info and redirect
64
+ Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('maxicycle')->__('Your data had been updated'));
65
+ $this->_redirect('*/*/', array('store' => $store_id));
66
+ }
67
+ }
68
+
69
+ }
app/code/community/Maxicycle/Connector/controllers/Adminhtml/ResultsController.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_Adminhtml_ResultsController extends Mage_Adminhtml_Controller_action {
11
+
12
+ public function indexAction() {
13
+ $this->loadLayout();
14
+ $this->_addContent($this->getLayout()->createBlock('maxicycle/adminhtml_results'));
15
+ $this->renderLayout();
16
+ }
17
+
18
+
19
+
20
+ }
app/code/community/Maxicycle/Connector/controllers/TestConnectionController.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_TestConnectionController extends Mage_Core_Controller_Front_Action {
11
+
12
+ public function indexAction() {
13
+ header("Access-Control-Allow-Orgin: *");
14
+ header("Access-Control-Allow-Methods: *");
15
+ header("Content-Type: application/json");
16
+ header("HTTP/1.1 204 Connection Success");
17
+ echo json_encode(array());
18
+ exit;
19
+ }
20
+
21
+ }
app/code/community/Maxicycle/Connector/controllers/V1Controller.php ADDED
@@ -0,0 +1,158 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ class Maxicycle_Connector_V1Controller extends Mage_Core_Controller_Front_Action {
11
+ /* Set API key action */
12
+
13
+ public function keyAction() {
14
+ // Load POST data and encode them
15
+ $data = json_decode(file_get_contents("php://input"), true);
16
+ // Check if API key is already set
17
+ if (trim(Mage::getStoreConfig('maxicycle/maxicycle_option/api_key', (int) $data['store_id'])) == '') {
18
+ // Run key request with loaded data
19
+ if (!array_key_exists('api_key', $data) || !array_key_exists('store_id', $data)) {
20
+ // There is no api key in reuqest
21
+ header("HTTP/1.1 " . 403);
22
+ echo json_encode(array('message' => 'No API key provided'));
23
+ die();
24
+ } else {
25
+ // Create config object
26
+ $config_model = new Mage_Core_Model_Config();
27
+ // Save key into config table
28
+ $config_model->saveConfig('maxicycle/maxicycle_option/api_key', $data['api_key'], 'stores', $data['store_id']);
29
+ # refresh magento configuration cache
30
+ Mage::app()->getCacheInstance()->cleanType('config');
31
+ header("HTTP/1.1 " . 200);
32
+ echo json_encode(array('message' => 'API key set'));
33
+ die();
34
+ }
35
+ } else {
36
+ // API key had been already set -> Validate request API key with current key by API object initialization
37
+ $api = Mage::getModel('maxicycle/api_rest', $this->getRequest());
38
+ // Load POST data and encode them
39
+ $data = json_decode(file_get_contents("php://input"), true);
40
+ // Run key request with loaded data
41
+ echo $api->key($data);
42
+ die();
43
+ }
44
+ }
45
+
46
+ /* Return array with all stores - No API key validation needed */
47
+
48
+ public function storesAction() {
49
+ $stores_array = array();
50
+ // Loop over all stores
51
+ foreach (Mage::app()->getStores() as $store) {
52
+ $stores_array[] = array('id' => $store->getId(), 'name' => $store->getName());
53
+ }
54
+ header("HTTP/1.1 " . 200);
55
+ echo json_encode($stores_array);
56
+ die();
57
+ }
58
+
59
+ /* Return current module version */
60
+
61
+ public function versionAction() {
62
+ $version_array = array('version' => (string) Mage::getConfig()->getModuleConfig("Maxicycle_Connector")->version);
63
+ header("HTTP/1.1 " . 200);
64
+ echo json_encode($version_array);
65
+ die();
66
+ }
67
+
68
+ /* Return array with all product SKUs */
69
+
70
+ public function productsAction() {
71
+ // Init API
72
+ $api = Mage::getModel('maxicycle/api_rest', $this->getRequest());
73
+ // Load POST data and encode them
74
+ $data = json_decode(file_get_contents("php://input"), true);
75
+ // Call request
76
+ echo $api->products($data);
77
+ die();
78
+ }
79
+
80
+ /* Return result from CRUD campaign operation */
81
+
82
+ public function campaignsAction() {
83
+ // Init API
84
+ $api = Mage::getModel('maxicycle/api_rest', $this->getRequest());
85
+ // Get store ID according to api_key
86
+ $store_id = $api->getStoreId();
87
+ // Load POST data and encode them
88
+ $data = json_decode(file_get_contents("php://input"), true);
89
+ // Run key request with loaded data
90
+ echo $api->campaigns($data, $store_id);
91
+ die();
92
+ }
93
+
94
+ // Return results according to campaign id
95
+
96
+ public function resultsAction() {
97
+ // Init API
98
+ $api = Mage::getModel('maxicycle/api_rest', $this->getRequest());
99
+ // Check that campaign_id belongs to correct store id -> according to api_key
100
+ $store_id = $api->getStoreId();
101
+ // Campaign ID
102
+ $campaign_id = $this->getId();
103
+ // Call API
104
+ echo $api->results($campaign_id, $store_id);
105
+ }
106
+
107
+ // Re-create results for specific campaign
108
+
109
+ public function regenerateAction() {
110
+ // verify method or return
111
+ $this->verifyMethod('GET');
112
+ // Init API
113
+ $api = Mage::getModel('maxicycle/api_rest', $this->getRequest());
114
+ // Check that campaign_id belongs to correct store id -> according to api_key
115
+ $store_id = $api->getStoreId();
116
+ // Campaign ID
117
+ $campaign_id = $this->getId();
118
+ // Call API
119
+ echo $api->regenerate($campaign_id, $store_id);
120
+ }
121
+
122
+ // Import sample data
123
+
124
+ public function sampleAction() {
125
+ $campaign_id = $this->getId();
126
+ $path = Mage::getModuleDir('data', 'Maxicycle_Connector');
127
+ $sql = file_get_contents($path . DS . 'data_sample.sql');
128
+ $db = Mage::getSingleton('core/resource')->getConnection('core_write');
129
+ $db->exec("DELETE FROM `maxicycle_results` WHERE `campaign_id` = $campaign_id;");
130
+ $db->exec($sql);
131
+ $db->exec("UPDATE `maxicycle_results` SET export_flag = 0 WHERE `campaign_id` = 999;");
132
+ $db->exec("UPDATE `maxicycle_results` SET campaign_id = $campaign_id WHERE `campaign_id` = 999;");
133
+ // Return OK
134
+ Mage::log("Sample Import for campaign $campaign_id finished");
135
+ header("HTTP/1.1 " . 200);
136
+ echo json_encode(array('message' => 'Sample data imported'));
137
+ die();
138
+ }
139
+
140
+ private function getId() {
141
+ // Get params campaign_id from request
142
+ $params = $this->getRequest()->getParams();
143
+ // Check params - only one should be available
144
+ foreach ($params as $key => $value) {
145
+ // Set campaign id
146
+ $campaign_id = (int) $key;
147
+ }
148
+ return $campaign_id;
149
+ }
150
+
151
+ private function verifyMethod($method) {
152
+ $requestMethod = $this->getRequest()->getMethod();
153
+ if ($method != $requestMethod) {
154
+ header("HTTP/1.1 " . 405);
155
+ die();
156
+ }
157
+ }
158
+ }
app/code/community/Maxicycle/Connector/data/data_sample.sql ADDED
@@ -0,0 +1,2864 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022744, '2119', 'control', '2014-11-19T15:33:00', '2014-11-19T15:33:00', 5023066, 18980, 9002);
2
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020056, '2125', '', '2014-12-11T11:06:00', '2014-12-11T11:06:00', 5021616, 11380, 7663);
3
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021339, '2139', 'treatment', '2014-12-03T17:11:00', '2014-12-03T17:11:00', 5021340, 3585, 1988.5);
4
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5017885, '2167', '', '2014-12-30T10:22:00', '2014-12-30T10:22:00', 5021242, 11250, 6338);
5
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022486, '2168', 'treatment', '2014-11-23T16:06:00', '2014-11-23T16:06:00', 5022943, 10575, 5765);
6
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018935, '2179', '', '2014-12-16T15:04:00', '2014-12-16T15:04:00', 5020351, 15070, 5670);
7
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022104, '2199', 'treatment', '2014-11-27T11:43:00', '2014-11-27T11:43:00', 5023132, 5080, 2720);
8
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020083, '2220', '', '2014-12-11T09:35:00', '2014-12-11T09:35:00', 5022992, 9575, 3352);
9
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021570, '2262', 'control', '2014-12-02T10:31:00', '2014-12-02T10:31:00', 5022587, 4790, 2889);
10
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020026, '2314', '', '2014-12-11T12:47:00', '2014-12-11T12:47:00', 5022385, 5790, 3484);
11
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021147, '2329', 'treatment', '2014-12-04T19:39:00', '2014-12-04T19:39:00', 5022924, 16470, 6196);
12
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018119, '2354', '', '2014-12-21T18:44:00', '2014-12-21T18:44:00', 5020395, 8985, 5801.5);
13
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021560, '2366', 'control', '2014-12-02T11:20:00', '2014-12-02T11:20:00', 5021562, 13485, 7719);
14
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022641, '2402', 'control', '2014-11-20T20:04:00', '2014-11-20T20:04:00', 5022720, 13780, 6467);
15
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019136, '2452', '', '2014-12-15T18:53:00', '2014-12-15T18:53:00', 5020575, 4290, 1728);
16
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021482, '2590', 'treatment', '2014-12-02T18:45:00', '2014-12-02T18:45:00', 5022367, 8228, 2771.2);
17
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020340, '2667', 'treatment', '2014-12-09T19:55:00', '2014-12-09T19:55:00', 5020347, 12250, 8241);
18
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020345, '2730', 'control', '2014-12-09T19:50:00', '2014-12-09T19:50:00', 5020375, 3385, 1204.5);
19
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5017891, '2787', '', '2014-12-29T20:13:00', '2014-12-29T20:13:00', 5022408, 2790, 599);
20
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021282, '2791', 'control', '2014-12-03T21:42:00', '2014-12-03T21:42:00', 5021284, 10990, 4071);
21
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020898, '2957', 'control', '2014-12-06T16:09:00', '2014-12-06T16:09:00', 5020899, 13380, 6101);
22
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018924, '3091', '', '2014-12-16T15:56:00', '2014-12-16T15:56:00', 5022489, 11550, 5451);
23
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021136, '3193', 'control', '2014-12-04T20:01:00', '2014-12-04T20:01:00', 5023012, 32391, 15596.5);
24
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022555, '3333', 'treatment', '2014-11-22T10:52:00', '2014-11-22T10:52:00', 5023031, 6790, 3038);
25
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021788, '3421', 'control', '2014-11-30T20:14:00', '2014-11-30T20:14:00', 5021955, 4585, 1262);
26
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019153, '3520', '', '2014-12-15T18:15:00', '2014-12-15T18:15:00', 5021549, 14680, 5272);
27
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020088, '3635', '', '2014-12-11T09:13:00', '2014-12-11T09:13:00', 5021911, 13480, 4966);
28
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022328, '3651', 'treatment', '2014-11-24T22:00:00', '2014-11-24T22:00:00', 5022774, 14285, 8093);
29
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018536, '3755', '', '2014-12-18T10:36:00', '2014-12-18T10:36:00', 5020637, 9480, 3280);
30
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021369, '3856', 'control', '2014-12-03T15:03:00', '2014-12-03T15:03:00', 5022313, 3790, 1008);
31
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021272, '3984', 'control', '2014-12-03T23:10:00', '2014-12-03T23:10:00', 5021496, 3585, 2006.5);
32
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019043, '4074', '', '2014-12-16T06:55:00', '2014-12-16T06:55:00', 5023017, 7080, 3099);
33
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022510, '4171', 'treatment', '2014-11-23T10:58:00', '2014-11-23T10:58:00', 5022956, 8075, 2742);
34
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021908, '4238', 'treatment', '2014-11-29T16:09:00', '2014-11-29T16:09:00', 5022565, 5790, 2437);
35
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022527, '4308', 'treatment', '2014-11-22T20:43:00', '2014-11-22T20:43:00', 5022528, 4290, 1224);
36
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018926, '4388', '', '2014-12-16T15:48:00', '2014-12-16T15:48:00', 5022765, 11995, 6850);
37
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021382, '4463', 'control', '2014-12-03T13:55:00', '2014-12-03T13:55:00', 5021516, 3790, 1894);
38
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020254, '4482', 'control', '2014-12-10T12:09:00', '2014-12-10T12:09:00', 5021393, 15875, 5958);
39
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020285, '4492', 'control', '2014-12-10T08:39:00', '2014-12-10T08:39:00', 5020308, 10680, 3683);
40
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022152, '4579', 'treatment', '2014-11-26T17:05:00', '2014-11-26T17:05:00', 5022815, 6275, 1963);
41
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020485, '4582', 'treatment', '2014-12-09T09:43:00', '2014-12-09T09:43:00', 5020860, 17970, 10272);
42
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019583, '4701', '', '2014-12-13T19:36:00', '2014-12-13T19:36:00', 5021310, 15765, 10540.5);
43
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022860, '1', 'control', '2014-11-18T12:06:00', '2014-11-18T12:06:00', '', 15985, 10864.5);
44
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022862, '2', 'treatment', '2014-11-18T11:55:00', '2014-11-18T11:55:00', '', 15475, 5626);
45
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020210, '3', 'treatment', '2014-12-10T16:49:00', '2014-12-10T16:49:00', '', 49985, 24574.5);
46
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020186, '4', 'treatment', '2014-12-10T19:38:00', '2014-12-10T19:38:00', '', 11985, 5567.5);
47
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020934, '5', 'control', '2014-12-06T11:04:00', '2014-12-06T11:04:00', '', 9485, 3370);
48
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021839, '6', 'control', '2014-11-30T14:33:00', '2014-11-30T14:33:00', '', 4485, 1429);
49
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022971, '9', 'treatment', '2014-11-16T19:53:00', '2014-11-16T19:53:00', '', 4790, 2800);
50
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021841, '11', 'treatment', '2014-11-30T14:25:00', '2014-11-30T14:25:00', '', 12285, 4553);
51
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020690, '14', 'control', '2014-12-07T21:38:00', '2014-12-07T21:38:00', '', 11085, 5211.5);
52
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023141, '16', 'treatment', '2014-11-13T10:53:00', '2014-11-13T10:53:00', '', 3290, 1611);
53
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021470, '17', 'treatment', '2014-12-02T19:54:00', '2014-12-02T19:54:00', '', 17060, 9649);
54
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022388, '18', 'treatment', '2014-11-24T14:26:00', '2014-11-24T14:26:00', '', 12080, 8085);
55
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020624, '19', 'control', '2014-12-08T12:03:00', '2014-12-08T12:03:00', '', 6785, 4201.5);
56
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022609, '20', 'treatment', '2014-11-21T12:22:00', '2014-11-21T12:22:00', '', 4790, 1839);
57
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020547, '22', 'control', '2014-12-08T19:38:00', '2014-12-08T19:38:00', '', 8253, 5300.1);
58
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020549, '24', 'treatment', '2014-12-08T19:32:00', '2014-12-08T19:32:00', '', 9585, 4433.5);
59
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021860, '25', 'control', '2014-11-30T10:49:00', '2014-11-30T10:49:00', '', 10990, 3952);
60
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020172, '26', 'treatment', '2014-12-10T20:05:00', '2014-12-10T20:05:00', '', 12470, 8407);
61
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022923, '27', 'control', '2014-11-17T12:47:00', '2014-11-17T12:47:00', '', 16980, 11346);
62
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021713, '28', 'control', '2014-12-01T12:00:00', '2014-12-01T12:00:00', '', 4775, 1970.5);
63
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020490, '30', 'control', '2014-12-09T09:10:00', '2014-12-09T09:10:00', '', 14980, 5691);
64
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020686, '31', 'treatment', '2014-12-07T21:54:00', '2014-12-07T21:54:00', '', 4790, 3000);
65
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020540, '34', 'control', '2014-12-08T19:58:00', '2014-12-08T19:58:00', '', 3790, 2185);
66
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020880, '35', 'control', '2014-12-06T19:17:00', '2014-12-06T19:17:00', '', 7585, 4074);
67
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022748, '36', 'control', '2014-11-19T15:05:00', '2014-11-19T15:05:00', '', 11980, 7994);
68
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020943, '37', 'control', '2014-12-06T09:13:00', '2014-12-06T09:13:00', '', 4290, 2216);
69
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020598, '38', 'control', '2014-12-08T14:22:00', '2014-12-08T14:22:00', '', 7790, 3451);
70
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020344, '40', 'control', '2014-12-09T19:51:00', '2014-12-09T19:51:00', '', 2490, 531);
71
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020926, '43', 'treatment', '2014-12-06T12:38:00', '2014-12-06T12:38:00', '', 7185, 4503.5);
72
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022099, '44', 'treatment', '2014-11-27T12:26:00', '2014-11-27T12:26:00', '', 2785, 792);
73
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022756, '45', 'control', '2014-11-19T14:20:00', '2014-11-19T14:20:00', '', 10875, 3900);
74
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021915, '47', 'control', '2014-11-29T14:02:00', '2014-11-29T14:02:00', '', 7285, 3771);
75
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020170, '50', 'control', '2014-12-10T20:10:00', '2014-12-10T20:10:00', '', 11875, 7791.5);
76
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022599, '51', 'control', '2014-11-21T13:58:00', '2014-11-21T13:58:00', '', 7380, 4702);
77
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021156, '52', 'treatment', '2014-12-04T19:17:00', '2014-12-04T19:17:00', '', 2490, 1005);
78
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022651, '53', 'treatment', '2014-11-20T18:21:00', '2014-11-20T18:21:00', '', 8780, 5700);
79
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021322, '54', 'treatment', '2014-12-03T18:52:00', '2014-12-03T18:52:00', '', 4790, 2887);
80
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020634, '55', 'control', '2014-12-08T10:42:00', '2014-12-08T10:42:00', '', 2790, 718);
81
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022556, '56', 'treatment', '2014-11-22T10:37:00', '2014-11-22T10:37:00', '', 5085, 2457);
82
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022548, '57', 'control', '2014-11-22T14:39:00', '2014-11-22T14:39:00', '', 2685, 514);
83
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022700, '59', 'treatment', '2014-11-19T21:43:00', '2014-11-19T21:43:00', '', 9490, 4306);
84
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023109, '60', 'treatment', '2014-11-13T18:38:00', '2014-11-13T18:38:00', '', 3290, 1609);
85
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021423, '61', 'control', '2014-12-03T10:00:00', '2014-12-03T10:00:00', '', 4090, 2151);
86
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020354, '62', 'treatment', '2014-12-09T19:32:00', '2014-12-09T19:32:00', '', 20934, 14076.8);
87
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020336, '64', 'control', '2014-12-09T20:05:00', '2014-12-09T20:05:00', '', 2290, 1266);
88
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021278, '68', 'control', '2014-12-03T21:50:00', '2014-12-03T21:50:00', '', 4790, 1431);
89
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022024, '69', 'treatment', '2014-11-28T10:01:00', '2014-11-28T10:01:00', '', 12290, 8284);
90
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022633, '70', 'treatment', '2014-11-20T20:56:00', '2014-11-20T20:56:00', '', 13175, 4867);
91
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020945, '71', 'control', '2014-12-06T08:59:00', '2014-12-06T08:59:00', '', 12475, 5898.5);
92
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021012, '74', 'control', '2014-12-05T15:56:00', '2014-12-05T15:56:00', '', 9290, 5205);
93
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022601, '75', 'treatment', '2014-11-21T13:24:00', '2014-11-21T13:24:00', '', 25470, 17442);
94
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021017, '76', 'treatment', '2014-12-05T15:07:00', '2014-12-05T15:07:00', '', 7285, 3241.5);
95
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023092, '77', 'treatment', '2014-11-13T21:25:00', '2014-11-13T21:25:00', '', 11470, 4120);
96
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021531, '78', 'treatment', '2014-12-02T14:24:00', '2014-12-02T14:24:00', '', 2790, 820);
97
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021407, '79', 'control', '2014-12-03T11:56:00', '2014-12-03T11:56:00', '', 11985, 7866.5);
98
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021425, '81', 'treatment', '2014-12-03T09:41:00', '2014-12-03T09:41:00', '', 9680, 3378);
99
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020146, '84', 'control', '2014-12-10T21:08:00', '2014-12-10T21:08:00', '', 4285, 1699.5);
100
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021795, '85', 'treatment', '2014-11-30T19:39:00', '2014-11-30T19:39:00', '', 3885, 2382.5);
101
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020449, '86', 'control', '2014-12-09T12:16:00', '2014-12-09T12:16:00', '', 7085, 4564.5);
102
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020708, '35', 'control', '2014-12-07T19:38:00', '2014-12-07T19:38:00', 5020880, 4290, 2680);
103
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020478, '45', 'control', '2014-12-09T10:12:00', '2014-12-09T10:12:00', 5022756, 17355, 6556);
104
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022597, '53', 'control', '2014-11-21T14:30:00', '2014-11-21T14:30:00', 5022651, 7790, 2586);
105
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019604, '84', '', '2014-12-13T16:33:00', '2014-12-13T16:33:00', 5020146, 12995, 8718.5);
106
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021216, '87', 'control', '2014-12-04T12:38:00', '2014-12-04T12:38:00', '', 9185, 5184);
107
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021996, '91', 'treatment', '2014-11-28T13:44:00', '2014-11-28T13:44:00', '', 14972, 8482.2);
108
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022203, '92', 'control', '2014-11-25T21:50:00', '2014-11-25T21:50:00', '', 9785, 4292.5);
109
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020965, '95', 'control', '2014-12-05T20:48:00', '2014-12-05T20:48:00', '', 12580, 8364);
110
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020443, '101', 'control', '2014-12-09T12:27:00', '2014-12-09T12:27:00', '', 9480, 3358);
111
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020983, '103', 'control', '2014-12-05T18:50:00', '2014-12-05T18:50:00', '', 9490, 3260);
112
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022471, '104', 'treatment', '2014-11-23T18:24:00', '2014-11-23T18:24:00', '', 3485, 1770);
113
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020832, '106', 'treatment', '2014-12-07T09:15:00', '2014-12-07T09:15:00', '', 9775, 6242.5);
114
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021333, '108', 'control', '2014-12-03T17:48:00', '2014-12-03T17:48:00', '', 4585, 2664.5);
115
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021505, '109', 'treatment', '2014-12-02T16:32:00', '2014-12-02T16:32:00', '', 13965, 5001);
116
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021515, '110', 'treatment', '2014-12-02T16:03:00', '2014-12-02T16:03:00', '', 3885, 1589.5);
117
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022502, '111', 'treatment', '2014-11-23T13:37:00', '2014-11-23T13:37:00', '', 13580, 9177);
118
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022692, '112', 'treatment', '2014-11-20T06:30:00', '2014-11-20T06:30:00', '', 6790, 3675);
119
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020797, '113', 'control', '2014-12-07T12:52:00', '2014-12-07T12:52:00', '', 9990, 6616);
120
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022105, '116', 'treatment', '2014-11-27T11:36:00', '2014-11-27T11:36:00', '', 10180, 3563);
121
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020233, '117', 'control', '2014-12-10T14:16:00', '2014-12-10T14:16:00', '', 10380, 5730);
122
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021084, '118', 'control', '2014-12-05T08:53:00', '2014-12-05T08:53:00', '', 15880, 10647);
123
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021352, '122', 'treatment', '2014-12-03T16:07:00', '2014-12-03T16:07:00', '', 4590, 1783);
124
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021283, '125', 'control', '2014-12-03T21:39:00', '2014-12-03T21:39:00', '', 10075, 4579.5);
125
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022499, '127', 'treatment', '2014-11-23T14:10:00', '2014-11-23T14:10:00', '', 3790, 2071);
126
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020976, '128', 'control', '2014-12-05T19:58:00', '2014-12-05T19:58:00', '', 7570, 4146);
127
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021567, '130', 'treatment', '2014-12-02T10:55:00', '2014-12-02T10:55:00', '', 4685, 2293);
128
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021155, '132', 'control', '2014-12-04T19:20:00', '2014-12-04T19:20:00', '', 5085, 1460);
129
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021825, '134', 'control', '2014-11-30T16:21:00', '2014-11-30T16:21:00', '', 5780, 2895);
130
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020122, '135', 'control', '2014-12-10T22:45:00', '2014-12-10T22:45:00', '', 11280, 6367);
131
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021686, '136', 'treatment', '2014-12-01T15:25:00', '2014-12-01T15:25:00', '', 26245, 18050.5);
132
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022424, '138', 'treatment', '2014-11-24T08:16:00', '2014-11-24T08:16:00', '', 2985, 893.5);
133
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021703, '141', 'treatment', '2014-12-01T13:03:00', '2014-12-01T13:03:00', '', 7790, 2693);
134
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020415, '142', 'treatment', '2014-12-09T13:55:00', '2014-12-09T13:55:00', '', 11965, 7954.5);
135
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021952, '144', 'control', '2014-11-28T22:18:00', '2014-11-28T22:18:00', '', 11485, 5300.5);
136
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022236, '145', 'treatment', '2014-11-25T18:36:00', '2014-11-25T18:36:00', '', 10075, 5738);
137
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022504, '147', 'control', '2014-11-23T13:15:00', '2014-11-23T13:15:00', '', 3785, 2329.5);
138
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021052, '148', 'treatment', '2014-12-05T12:35:00', '2014-12-05T12:35:00', '', 12475, 5839.5);
139
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023016, '149', 'treatment', '2014-11-15T23:53:00', '2014-11-15T23:53:00', '', 10980, 7326);
140
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022101, '152', 'treatment', '2014-11-27T12:25:00', '2014-11-27T12:25:00', '', 4085, 1125);
141
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021764, '156', 'treatment', '2014-11-30T22:35:00', '2014-11-30T22:35:00', '', 9180, 5188);
142
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022414, '158', 'control', '2014-11-24T09:43:00', '2014-11-24T09:43:00', '', 13580, 6328);
143
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021561, '160', 'control', '2014-12-02T11:35:00', '2014-12-02T11:35:00', '', 4790, 2954);
144
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022998, '161', 'control', '2014-11-16T12:57:00', '2014-11-16T12:57:00', '', 11980, 4480);
145
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020817, '163', 'treatment', '2014-12-07T11:05:00', '2014-12-07T11:05:00', '', 4290, 1592);
146
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020136, '164', 'control', '2014-12-10T22:03:00', '2014-12-10T22:03:00', '', 6785, 4273.5);
147
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022384, '166', 'treatment', '2014-11-24T15:21:00', '2014-11-24T15:21:00', '', 3290, 947);
148
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020905, '167', 'control', '2014-12-06T15:31:00', '2014-12-06T15:31:00', '', 5290, 2824);
149
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022701, '169', 'treatment', '2014-11-19T21:39:00', '2014-11-19T21:39:00', '', 8585, 5468.5);
150
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023027, '170', 'treatment', '2014-11-15T19:10:00', '2014-11-15T19:10:00', '', 10675, 6972.5);
151
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020564, '171', 'control', '2014-12-08T18:19:00', '2014-12-08T18:19:00', '', 8785, 5806.5);
152
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021978, '172', 'treatment', '2014-11-28T18:00:00', '2014-11-28T18:00:00', '', 6175, 3389);
153
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022961, '173', 'control', '2014-11-16T20:53:00', '2014-11-16T20:53:00', '', 9070, 5791);
154
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021577, '174', 'control', '2014-12-02T09:16:00', '2014-12-02T09:16:00', '', 11485, 4136);
155
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022800, '177', 'treatment', '2014-11-19T09:19:00', '2014-11-19T09:19:00', '', 5790, 3013);
156
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022133, '178', 'treatment', '2014-11-26T20:30:00', '2014-11-26T20:30:00', '', 3290, 1417);
157
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020133, '180', 'control', '2014-12-10T22:09:00', '2014-12-10T22:09:00', '', 7680, 3420);
158
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022128, '183', 'treatment', '2014-11-26T21:06:00', '2014-11-26T21:06:00', '', 3290, 1272);
159
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020532, '184', 'control', '2014-12-08T21:20:00', '2014-12-08T21:20:00', '', 12680, 7144);
160
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022023, '185', 'treatment', '2014-11-28T10:01:00', '2014-11-28T10:01:00', '', 4087, 1716.5);
161
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020432, '186', 'treatment', '2014-12-09T12:58:00', '2014-12-09T12:58:00', '', 9780, 4583);
162
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020888, '187', 'treatment', '2014-12-06T17:21:00', '2014-12-06T17:21:00', '', 4790, 1445);
163
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021177, '188', 'treatment', '2014-12-04T16:59:00', '2014-12-04T16:59:00', '', 4790, 1396);
164
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020230, '189', 'control', '2014-12-10T14:37:00', '2014-12-10T14:37:00', '', 2985, 1010.5);
165
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022081, '192', 'treatment', '2014-11-27T14:45:00', '2014-11-27T14:45:00', '', 8785, 3205);
166
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022505, '194', 'treatment', '2014-11-23T13:01:00', '2014-11-23T13:01:00', '', 10875, 5087.5);
167
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020165, '195', 'control', '2014-12-10T20:20:00', '2014-12-10T20:20:00', '', 3190, 1847);
168
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023009, '196', 'treatment', '2014-11-16T09:25:00', '2014-11-16T09:25:00', '', 2790, 1309);
169
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022263, '197', 'treatment', '2014-11-25T15:40:00', '2014-11-25T15:40:00', '', 3490, 1690);
170
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021034, '158', 'control', '2014-12-05T14:03:00', '2014-12-05T14:03:00', 5022414, 9285, 4334.5);
171
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020511, '198', 'control', '2014-12-09T01:50:00', '2014-12-09T01:50:00', '', 13280, 4817);
172
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021184, '201', 'control', '2014-12-04T16:24:00', '2014-12-04T16:24:00', '', 29070, 16932);
173
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021047, '202', 'treatment', '2014-12-05T12:50:00', '2014-12-05T12:50:00', '', 5785, 1856);
174
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021789, '204', 'treatment', '2014-11-30T20:13:00', '2014-11-30T20:13:00', '', 9985, 4619.5);
175
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021238, '205', 'control', '2014-12-04T10:49:00', '2014-12-04T10:49:00', '', 14475, 6793.5);
176
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021111, '207', 'treatment', '2014-12-04T21:52:00', '2014-12-04T21:52:00', '', 7290, 3298);
177
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020143, '209', 'control', '2014-12-10T21:26:00', '2014-12-10T21:26:00', '', 11485, 6310);
178
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021671, '210', 'control', '2014-12-01T16:46:00', '2014-12-01T16:46:00', '', 4790, 2985);
179
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022035, '211', 'treatment', '2014-11-28T09:06:00', '2014-11-28T09:06:00', '', 3585, 1808);
180
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022552, '218', 'control', '2014-11-22T11:59:00', '2014-11-22T11:59:00', '', 6790, 4390);
181
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022958, '221', 'treatment', '2014-11-16T21:31:00', '2014-11-16T21:31:00', '', 8285, 4671);
182
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022557, '222', 'treatment', '2014-11-22T10:50:00', '2014-11-22T10:50:00', '', 9180, 6114);
183
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022709, '223', 'treatment', '2014-11-19T20:47:00', '2014-11-19T20:47:00', '', 13980, 6688);
184
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020512, '224', 'control', '2014-12-09T00:50:00', '2014-12-09T00:50:00', '', 9185, 5920.5);
185
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023135, '225', 'treatment', '2014-11-13T12:08:00', '2014-11-13T12:08:00', '', 7380, 2638);
186
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020994, '226', 'treatment', '2014-12-05T17:55:00', '2014-12-05T17:55:00', '', 9575, 3298);
187
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022031, '228', 'control', '2014-11-28T09:35:00', '2014-11-28T09:35:00', '', 5790, 2584);
188
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021925, '229', 'control', '2014-11-29T12:28:00', '2014-11-29T12:28:00', '', 20345, 7651);
189
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021087, '231', 'control', '2014-12-05T08:37:00', '2014-12-05T08:37:00', '', 4185, 2182);
190
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022963, '233', 'treatment', '2014-11-16T20:43:00', '2014-11-16T20:43:00', '', 2290, 437);
191
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022866, '235', 'treatment', '2014-11-18T09:35:00', '2014-11-18T09:35:00', '', 18985, 9063.5);
192
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021323, '238', 'control', '2014-12-03T18:49:00', '2014-12-03T18:49:00', '', 10475, 5905);
193
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022816, '239', 'control', '2014-11-18T21:33:00', '2014-11-18T21:33:00', '', 3090, 1282);
194
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020731, '240', 'treatment', '2014-12-07T18:08:00', '2014-12-07T18:08:00', '', 15585, 7287.5);
195
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021239, '242', 'treatment', '2014-12-04T10:40:00', '2014-12-04T10:40:00', '', 9485, 3431);
196
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022439, '243', 'treatment', '2014-11-23T21:46:00', '2014-11-23T21:46:00', '', 5085, 3032.5);
197
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022039, '244', 'treatment', '2014-11-28T08:06:00', '2014-11-28T08:06:00', '', 6976, 2431.4);
198
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021070, '247', 'treatment', '2014-12-05T10:42:00', '2014-12-05T10:42:00', '', 14320, 5293);
199
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020604, '248', 'control', '2014-12-08T13:35:00', '2014-12-08T13:35:00', '', 9485, 6336.5);
200
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020948, '249', 'control', '2014-12-06T07:44:00', '2014-12-06T07:44:00', '', 3290, 1924);
201
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021936, '250', 'treatment', '2014-11-29T10:22:00', '2014-11-29T10:22:00', '', 10065, 5666);
202
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022671, '251', 'treatment', '2014-11-20T13:24:00', '2014-11-20T13:24:00', '', 4290, 2017);
203
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022522, '255', 'treatment', '2014-11-23T05:08:00', '2014-11-23T05:08:00', '', 10485, 3755);
204
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021575, '256', 'treatment', '2014-12-02T09:56:00', '2014-12-02T09:56:00', '', 3790, 1021);
205
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021411, '258', 'treatment', '2014-12-03T11:38:00', '2014-12-03T11:38:00', '', 5785, 3044);
206
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022795, '259', 'treatment', '2014-11-19T09:57:00', '2014-11-19T09:57:00', '', 4680, 2269);
207
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021930, '260', 'control', '2014-11-29T10:49:00', '2014-11-29T10:49:00', '', 10170, 6611);
208
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020367, '265', 'treatment', '2014-12-09T18:56:00', '2014-12-09T18:56:00', '', 4785, 3038.5);
209
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022582, '266', 'treatment', '2014-11-21T17:27:00', '2014-11-21T17:27:00', '', 13665, 6329.5);
210
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020173, '268', 'treatment', '2014-12-10T20:04:00', '2014-12-10T20:04:00', '', 8270, 3720);
211
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021446, '269', 'control', '2014-12-02T21:53:00', '2014-12-02T21:53:00', '', 7780, 3537);
212
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022739, '271', 'treatment', '2014-11-19T16:16:00', '2014-11-19T16:16:00', '', 17480, 6473);
213
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020756, '272', 'treatment', '2014-12-07T16:15:00', '2014-12-07T16:15:00', '', 6380, 3390);
214
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020769, '273', 'treatment', '2014-12-07T15:30:00', '2014-12-07T15:30:00', '', 10375, 4646.5);
215
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022247, '274', 'treatment', '2014-11-25T17:35:00', '2014-11-25T17:35:00', '', 11485, 4102);
216
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020856, '275', 'treatment', '2014-12-06T21:35:00', '2014-12-06T21:35:00', '', 9275, 5952.5);
217
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022223, '277', 'treatment', '2014-11-25T20:12:00', '2014-11-25T20:12:00', '', 10185, 5530);
218
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022630, '278', 'control', '2014-11-20T21:13:00', '2014-11-20T21:13:00', '', 1690, 198);
219
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020811, '279', 'treatment', '2014-12-07T11:50:00', '2014-12-07T11:50:00', '', 9980, 5581);
220
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021431, '281', 'control', '2014-12-03T07:52:00', '2014-12-03T07:52:00', '', 14865, 5521);
221
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020425, '283', 'control', '2014-12-09T13:12:00', '2014-12-09T13:12:00', '', 9885, 6525.5);
222
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020571, '284', 'treatment', '2014-12-08T17:45:00', '2014-12-08T17:45:00', '', 4185, 1733.5);
223
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021118, '285', 'control', '2014-12-04T21:20:00', '2014-12-04T21:20:00', '', 3980, 1841);
224
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021480, '286', 'treatment', '2014-12-02T19:04:00', '2014-12-02T19:04:00', '', 3090, 928);
225
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022097, '287', 'control', '2014-11-27T12:48:00', '2014-11-27T12:48:00', '', 4090, 1939);
226
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021071, '290', 'control', '2014-12-05T10:23:00', '2014-12-05T10:23:00', '', 9290, 6084);
227
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020557, '292', 'control', '2014-12-08T19:00:00', '2014-12-08T19:00:00', '', 21980, 12695);
228
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022855, '295', 'treatment', '2014-11-18T13:39:00', '2014-11-18T13:39:00', '', 8670, 3098);
229
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021061, '296', 'control', '2014-12-05T11:41:00', '2014-12-05T11:41:00', '', 7685, 4936.5);
230
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021019, '297', 'control', '2014-12-05T15:06:00', '2014-12-05T15:06:00', '', 3190, 897);
231
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020855, '298', 'treatment', '2014-12-06T21:37:00', '2014-12-06T21:37:00', '', 7480, 4003);
232
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021043, '299', 'treatment', '2014-12-05T13:19:00', '2014-12-05T13:19:00', '', 9975, 6458.5);
233
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019978, '229', '', '2014-12-11T16:20:00', '2014-12-11T16:20:00', 5021925, 6775, 2369);
234
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019820, '279', '', '2014-12-12T11:10:00', '2014-12-12T11:10:00', 5020811, 8285, 3761.5);
235
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019979, '281', '', '2014-12-11T15:59:00', '2014-12-11T15:59:00', 5021431, 13990, 8017);
236
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022244, '301', 'treatment', '2014-11-25T17:44:00', '2014-11-25T17:44:00', '', 9475, 5215);
237
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020222, '302', 'control', '2014-12-10T15:20:00', '2014-12-10T15:20:00', '', 2790, 1353);
238
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020444, '303', 'treatment', '2014-12-09T12:27:00', '2014-12-09T12:27:00', '', 5885, 3085);
239
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020504, '304', 'control', '2014-12-09T07:48:00', '2014-12-09T07:48:00', '', 3290, 1852);
240
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022253, '305', 'treatment', '2014-11-25T16:50:00', '2014-11-25T16:50:00', '', 9580, 4210);
241
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021864, '309', 'control', '2014-11-30T10:25:00', '2014-11-30T10:25:00', '', 9290, 5068);
242
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021042, '312', 'control', '2014-12-05T13:19:00', '2014-12-05T13:19:00', '', 8880, 5871);
243
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020153, '314', 'treatment', '2014-12-10T20:42:00', '2014-12-10T20:42:00', '', 9475, 5227);
244
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021768, '316', 'treatment', '2014-11-30T22:06:00', '2014-11-30T22:06:00', '', 14480, 9743);
245
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022147, '317', 'treatment', '2014-11-26T19:17:00', '2014-11-26T19:17:00', '', 9790, 3469);
246
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021069, '319', 'treatment', '2014-12-05T10:40:00', '2014-12-05T10:40:00', '', 12480, 5818);
247
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020954, '320', 'control', '2014-12-05T23:21:00', '2014-12-05T23:21:00', '', 4585, 1532);
248
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021944, '322', 'treatment', '2014-11-29T08:07:00', '2014-11-29T08:07:00', '', 9680, 4340);
249
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022893, '323', 'treatment', '2014-11-17T18:13:00', '2014-11-17T18:13:00', '', 11490, 5258);
250
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020185, '324', 'control', '2014-12-10T19:37:00', '2014-12-10T19:37:00', '', 3290, 1308);
251
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022342, '325', 'control', '2014-11-24T20:18:00', '2014-11-24T20:18:00', '', 6390, 3921);
252
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022708, '326', 'control', '2014-11-19T20:49:00', '2014-11-19T20:49:00', '', 10760, 6060);
253
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021532, '327', 'control', '2014-12-02T14:24:00', '2014-12-02T14:24:00', '', 12580, 8352);
254
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020312, '329', 'treatment', '2014-12-09T21:48:00', '2014-12-09T21:48:00', '', 2985, 628);
255
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021689, '330', 'treatment', '2014-12-01T15:23:00', '2014-12-01T15:23:00', '', 12995, 4782);
256
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023065, '331', 'treatment', '2014-11-14T15:48:00', '2014-11-14T15:48:00', '', 9075, 5984.5);
257
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021979, '332', 'control', '2014-11-28T17:32:00', '2014-11-28T17:32:00', '', 3290, 1413);
258
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021522, '334', 'treatment', '2014-12-02T15:28:00', '2014-12-02T15:28:00', '', 7580, 2438);
259
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020992, '337', 'control', '2014-12-05T18:00:00', '2014-12-05T18:00:00', '', 16080, 9294);
260
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020962, '338', 'control', '2014-12-05T21:33:00', '2014-12-05T21:33:00', '', 4285, 1546.5);
261
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021143, '341', 'control', '2014-12-04T19:46:00', '2014-12-04T19:46:00', '', 9980, 3452);
262
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022997, '342', 'treatment', '2014-11-16T13:03:00', '2014-11-16T13:03:00', '', 6590, 2154);
263
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023074, '343', 'treatment', '2014-11-14T09:56:00', '2014-11-14T09:56:00', '', 7790, 2803);
264
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021316, '344', 'control', '2014-12-03T19:45:00', '2014-12-03T19:45:00', '', 9785, 3367);
265
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022368, '345', 'treatment', '2014-11-24T17:13:00', '2014-11-24T17:13:00', '', 18950, 7184);
266
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020592, '346', 'control', '2014-12-08T15:06:00', '2014-12-08T15:06:00', '', 4790, 2535);
267
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021896, '347', 'control', '2014-11-29T19:26:00', '2014-11-29T19:26:00', '', 4585, 1825.5);
268
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021781, '348', 'control', '2014-11-30T20:51:00', '2014-11-30T20:51:00', '', 9175, 4267.5);
269
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020996, '350', 'treatment', '2014-12-05T17:43:00', '2014-12-05T17:43:00', '', 11290, 6384);
270
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022619, '351', 'treatment', '2014-11-21T09:16:00', '2014-11-21T09:16:00', '', 4290, 2038);
271
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021433, '352', 'control', '2014-12-03T07:29:00', '2014-12-03T07:29:00', '', 5085, 1710);
272
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023006, '353', 'treatment', '2014-11-16T11:08:00', '2014-11-16T11:08:00', '', 4790, 3026);
273
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021377, '354', 'control', '2014-12-03T14:08:00', '2014-12-03T14:08:00', '', 8080, 4483);
274
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022771, '355', 'treatment', '2014-11-19T13:00:00', '2014-11-19T13:00:00', '', 8280, 4462);
275
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021027, '356', 'treatment', '2014-12-05T14:47:00', '2014-12-05T14:47:00', '', 7885, 3454.5);
276
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022151, '357', 'control', '2014-11-26T18:37:00', '2014-11-26T18:37:00', '', 3285, 947);
277
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022487, '358', 'treatment', '2014-11-23T16:00:00', '2014-11-23T16:00:00', '', 4790, 2532);
278
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021402, '359', 'control', '2014-12-03T12:26:00', '2014-12-03T12:26:00', '', 4285, 2134);
279
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022667, '361', 'treatment', '2014-11-20T14:00:00', '2014-11-20T14:00:00', '', 14770, 9819);
280
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020725, '362', 'control', '2014-12-07T18:39:00', '2014-12-07T18:39:00', '', 4290, 1309);
281
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021632, '364', 'control', '2014-12-01T19:54:00', '2014-12-01T19:54:00', '', 11480, 5431);
282
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021737, '365', 'control', '2014-12-01T09:21:00', '2014-12-01T09:21:00', '', 1890, 344);
283
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022623, '368', 'control', '2014-11-20T22:49:00', '2014-11-20T22:49:00', '', 10280, 6827);
284
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022478, '369', 'treatment', '2014-11-23T17:59:00', '2014-11-23T17:59:00', '', 11475, 4184);
285
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020323, '370', 'control', '2014-12-09T21:12:00', '2014-12-09T21:12:00', '', 12460, 8262);
286
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022452, '371', 'control', '2014-11-23T20:28:00', '2014-11-23T20:28:00', '', 9485, 6256.5);
287
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022933, '372', 'control', '2014-11-17T10:48:00', '2014-11-17T10:48:00', '', 5580, 3321);
288
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020413, '373', 'control', '2014-12-09T13:55:00', '2014-12-09T13:55:00', '', 9485, 3473);
289
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022306, '375', 'treatment', '2014-11-25T09:03:00', '2014-11-25T09:03:00', '', 14470, 9819);
290
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020127, '377', 'treatment', '2014-12-10T22:30:00', '2014-12-10T22:30:00', '', 10585, 5878);
291
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021870, '378', 'treatment', '2014-11-30T08:58:00', '2014-11-30T08:58:00', '', 4790, 1324);
292
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021868, '379', 'treatment', '2014-11-30T09:26:00', '2014-11-30T09:26:00', '', 13360, 7523);
293
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021732, '381', 'control', '2014-12-01T10:01:00', '2014-12-01T10:01:00', '', 3090, 770);
294
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020630, '382', 'treatment', '2014-12-08T11:25:00', '2014-12-08T11:25:00', '', 10775, 5056.5);
295
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022931, '383', 'treatment', '2014-11-17T11:01:00', '2014-11-17T11:01:00', '', 10285, 5756);
296
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022086, '384', 'treatment', '2014-11-27T14:04:00', '2014-11-27T14:04:00', '', 11965, 5600.5);
297
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020176, '385', 'control', '2014-12-10T19:55:00', '2014-12-10T19:55:00', '', 10760, 5885);
298
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021178, '387', 'control', '2014-12-04T16:54:00', '2014-12-04T16:54:00', '', 4790, 1371);
299
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021128, '388', 'treatment', '2014-12-04T20:30:00', '2014-12-04T20:30:00', '', 4585, 1277);
300
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021578, '389', 'control', '2014-12-02T09:06:00', '2014-12-02T09:06:00', '', 8080, 3708);
301
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022376, '390', 'control', '2014-11-24T16:10:00', '2014-11-24T16:10:00', '', 17995, 8672.5);
302
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022343, '392', 'treatment', '2014-11-24T20:07:00', '2014-11-24T20:07:00', '', 16975, 11373.5);
303
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020371, '394', 'control', '2014-12-09T18:17:00', '2014-12-09T18:17:00', '', 6180, 3117);
304
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020264, '395', 'control', '2014-12-10T10:58:00', '2014-12-10T10:58:00', '', 3785, 2279.5);
305
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020822, '396', 'treatment', '2014-12-07T10:34:00', '2014-12-07T10:34:00', '', 11680, 6619);
306
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023115, '398', 'control', '2014-11-13T17:49:00', '2014-11-13T17:49:00', '', 10885, 7136.5);
307
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020642, '399', 'control', '2014-12-08T09:56:00', '2014-12-08T09:56:00', '', 14475, 8097);
308
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020643, '401', 'treatment', '2014-12-08T10:05:00', '2014-12-08T10:05:00', '', 22270, 12878);
309
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020439, '402', 'control', '2014-12-09T12:47:00', '2014-12-09T12:47:00', '', 14090, 9502);
310
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021989, '403', 'control', '2014-11-28T15:36:00', '2014-11-28T15:36:00', '', 4775, 2880.5);
311
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020568, '405', 'treatment', '2014-12-08T17:55:00', '2014-12-08T17:55:00', '', 15995, 10619.5);
312
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022684, '406', 'treatment', '2014-11-20T09:42:00', '2014-11-20T09:42:00', '', 12480, 8383);
313
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022593, '407', 'treatment', '2014-11-21T15:49:00', '2014-11-21T15:49:00', '', 8080, 5340);
314
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023035, '408', 'treatment', '2014-11-15T15:03:00', '2014-11-15T15:03:00', '', 7285, 3913);
315
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022508, '410', 'treatment', '2014-11-23T11:08:00', '2014-11-23T11:08:00', '', 8385, 4698);
316
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022345, '412', 'treatment', '2014-11-24T19:43:00', '2014-11-24T19:43:00', '', 5790, 2957);
317
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022340, '413', 'control', '2014-11-24T20:27:00', '2014-11-24T20:27:00', '', 2290, 658);
318
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022141, '415', 'treatment', '2014-11-26T19:59:00', '2014-11-26T19:59:00', '', 4790, 2314);
319
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021775, '416', 'treatment', '2014-11-30T20:59:00', '2014-11-30T20:59:00', '', 9485, 4254.5);
320
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022154, '420', 'treatment', '2014-11-26T16:44:00', '2014-11-26T16:44:00', '', 9370, 6226);
321
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021130, '421', 'control', '2014-12-04T20:26:00', '2014-12-04T20:26:00', '', 12085, 5663.5);
322
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023086, '422', 'treatment', '2014-11-13T23:20:00', '2014-11-13T23:20:00', '', 4290, 2243);
323
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020986, '423', 'control', '2014-12-05T18:40:00', '2014-12-05T18:40:00', '', 8170, 2865);
324
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022539, '424', 'treatment', '2014-11-22T16:51:00', '2014-11-22T16:51:00', '', 3685, 1799);
325
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022335, '425', 'control', '2014-11-24T20:50:00', '2014-11-24T20:50:00', '', 10480, 4719);
326
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020241, '427', 'control', '2014-12-10T13:18:00', '2014-12-10T13:18:00', '', 5285, 3109.5);
327
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020663, '428', 'control', '2014-12-08T08:30:00', '2014-12-08T08:30:00', '', 46965, 18409);
328
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022989, '430', 'treatment', '2014-11-16T16:27:00', '2014-11-16T16:27:00', '', 7790, 3555);
329
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020487, '431', 'control', '2014-12-09T09:38:00', '2014-12-09T09:38:00', '', 3785, 2307.5);
330
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021843, '434', 'control', '2014-11-30T13:54:00', '2014-11-30T13:54:00', '', 3000, 1501);
331
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022813, '436', 'treatment', '2014-11-18T21:56:00', '2014-11-18T21:56:00', '', 7785, 5037.5);
332
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021495, '437', 'control', '2014-12-02T17:42:00', '2014-12-02T17:42:00', '', 4290, 2441);
333
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022456, '438', 'treatment', '2014-11-23T20:04:00', '2014-11-23T20:04:00', '', 4085, 1299);
334
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020616, '442', 'control', '2014-12-08T12:23:00', '2014-12-08T12:23:00', '', 7790, 4296);
335
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022636, '443', 'control', '2014-11-20T20:39:00', '2014-11-20T20:39:00', '', 9280, 5094);
336
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022062, '444', 'control', '2014-11-27T19:01:00', '2014-11-27T19:01:00', '', 6285, 3847.5);
337
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022874, '447', 'treatment', '2014-11-17T21:46:00', '2014-11-17T21:46:00', '', 10175, 3499);
338
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020167, '448', 'control', '2014-12-10T20:12:00', '2014-12-10T20:12:00', '', 10685, 7108.5);
339
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022235, '449', 'treatment', '2014-11-25T18:58:00', '2014-11-25T18:58:00', '', 4790, 2451);
340
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022110, '450', 'treatment', '2014-11-27T10:19:00', '2014-11-27T10:19:00', '', 2590, 1127);
341
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022566, '451', 'control', '2014-11-22T07:59:00', '2014-11-22T07:59:00', '', 19365, 13237.5);
342
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021835, '454', 'treatment', '2014-11-30T14:48:00', '2014-11-30T14:48:00', '', 16490, 7655);
343
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020538, '457', 'treatment', '2014-12-08T20:05:00', '2014-12-08T20:05:00', '', 6590, 2283);
344
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021104, '458', 'control', '2014-12-04T22:30:00', '2014-12-04T22:30:00', '', 5080, 1510);
345
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021999, '460', 'treatment', '2014-11-28T13:37:00', '2014-11-28T13:37:00', '', 12577, 8463.9);
346
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021745, '461', 'control', '2014-12-01T08:22:00', '2014-12-01T08:22:00', '', 2290, 686);
347
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022218, '464', 'treatment', '2014-11-25T20:44:00', '2014-11-25T20:44:00', '', 19560, 11194);
348
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020990, '465', 'treatment', '2014-12-05T18:19:00', '2014-12-05T18:19:00', '', 2090, 453);
349
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022838, '469', 'treatment', '2014-11-18T18:10:00', '2014-11-18T18:10:00', '', 6285, 3934.5);
350
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022659, '470', 'treatment', '2014-11-20T15:44:00', '2014-11-20T15:44:00', '', 4790, 1470);
351
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021609, '471', 'control', '2014-12-01T22:27:00', '2014-12-01T22:27:00', '', 6590, 3463);
352
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022199, '472', 'treatment', '2014-11-26T04:37:00', '2014-11-26T04:37:00', '', 5480, 2284);
353
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021421, '476', 'treatment', '2014-12-03T10:09:00', '2014-12-03T10:09:00', '', 4790, 1493);
354
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020429, '478', 'treatment', '2014-12-09T13:08:00', '2014-12-09T13:08:00', '', 6780, 2390);
355
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022484, '479', 'control', '2014-11-23T16:06:00', '2014-11-23T16:06:00', '', 10575, 4832.5);
356
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021494, '481', 'treatment', '2014-12-02T17:47:00', '2014-12-02T17:47:00', '', 9465, 5247);
357
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020918, '485', 'control', '2014-12-06T13:32:00', '2014-12-06T13:32:00', '', 15485, 10321.5);
358
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022270, '486', 'control', '2014-11-25T13:54:00', '2014-11-25T13:54:00', '', 4885, 2058.5);
359
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022433, '487', 'treatment', '2014-11-24T01:50:00', '2014-11-24T01:50:00', '', 8285, 5461.5);
360
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022503, '488', 'treatment', '2014-11-23T13:21:00', '2014-11-23T13:21:00', '', 8785, 4689);
361
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021670, '489', 'control', '2014-12-01T16:47:00', '2014-12-01T16:47:00', '', 10770, 3730);
362
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022130, '490', 'control', '2014-11-26T20:53:00', '2014-11-26T20:53:00', '', 3985, 1644.5);
363
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021103, '491', 'treatment', '2014-12-04T23:58:00', '2014-12-04T23:58:00', '', 7290, 3302);
364
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022673, '492', 'treatment', '2014-11-20T13:11:00', '2014-11-20T13:11:00', '', 4780, 2072);
365
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018886, '416', '', '2014-12-16T18:42:00', '2014-12-16T18:42:00', 5021775, 6080, 2664);
366
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018560, '423', '', '2014-12-18T07:55:00', '2014-12-18T07:55:00', 5020986, 8070, 2684);
367
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022202, '469', 'treatment', '2014-11-25T22:00:00', '2014-11-25T22:00:00', 5022838, 14085, 9294.5);
368
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021719, '495', 'control', '2014-12-01T11:44:00', '2014-12-01T11:44:00', '', 17975, 11996.5);
369
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022761, '498', 'treatment', '2014-11-19T13:54:00', '2014-11-19T13:54:00', '', 17970, 10359);
370
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021437, '499', 'control', '2014-12-02T23:04:00', '2014-12-02T23:04:00', '', 18880, 10768);
371
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022093, '500', 'treatment', '2014-11-27T13:04:00', '2014-11-27T13:04:00', '', 5790, 3033);
372
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022336, '501', 'control', '2014-11-24T20:33:00', '2014-11-24T20:33:00', '', 5185, 1747);
373
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022613, '502', 'control', '2014-11-21T09:55:00', '2014-11-21T09:55:00', '', 2190, 679);
374
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022005, '504', 'control', '2014-11-28T12:41:00', '2014-11-28T12:41:00', '', 9285, 3117);
375
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020845, '508', 'control', '2014-12-07T02:44:00', '2014-12-07T02:44:00', '', 8580, 3717);
376
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022831, '509', 'treatment', '2014-11-18T19:22:00', '2014-11-18T19:22:00', '', 5790, 3716);
377
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021776, '510', 'treatment', '2014-11-30T21:15:00', '2014-11-30T21:15:00', '', 13485, 4861);
378
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020916, '513', 'control', '2014-12-06T14:00:00', '2014-12-06T14:00:00', '', 4585, 2813.5);
379
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021472, '514', 'treatment', '2014-12-02T19:42:00', '2014-12-02T19:42:00', '', 8780, 4777);
380
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020205, '516', 'treatment', '2014-12-10T17:13:00', '2014-12-10T17:13:00', '', 7285, 2384);
381
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021622, '517', 'control', '2014-12-01T20:47:00', '2014-12-01T20:47:00', '', 2285, 1056);
382
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022057, '519', 'control', '2014-11-27T20:16:00', '2014-11-27T20:16:00', '', 3090, 1616);
383
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021923, '521', 'control', '2014-11-29T12:22:00', '2014-11-29T12:22:00', '', 9185, 5209);
384
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020446, '522', 'control', '2014-12-09T12:18:00', '2014-12-09T12:18:00', '', 6785, 2800.5);
385
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022179, '524', 'control', '2014-11-26T11:27:00', '2014-11-26T11:27:00', '', 16765, 9485);
386
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023117, '525', 'treatment', '2014-11-13T16:32:00', '2014-11-13T16:32:00', '', 19580, 7520);
387
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022399, '526', 'control', '2014-11-24T12:34:00', '2014-11-24T12:34:00', '', 4790, 2542);
388
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021810, '527', 'control', '2014-11-30T17:48:00', '2014-11-30T17:48:00', '', 9085, 6037.5);
389
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021144, '528', 'treatment', '2014-12-04T19:45:00', '2014-12-04T19:45:00', '', 10285, 5758);
390
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020391, '531', 'control', '2014-12-09T16:15:00', '2014-12-09T16:15:00', '', 6385, 2188);
391
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021335, '532', 'control', '2014-12-03T17:35:00', '2014-12-03T17:35:00', '', 3185, 1012.5);
392
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020964, '533', 'control', '2014-12-05T20:48:00', '2014-12-05T20:48:00', '', 5180, 2618);
393
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022927, '536', 'control', '2014-11-17T11:55:00', '2014-11-17T11:55:00', '', 13545, 6399.5);
394
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023129, '537', 'treatment', '2014-11-13T13:33:00', '2014-11-13T13:33:00', '', 2490, 1169);
395
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021861, '538', 'treatment', '2014-11-30T10:28:00', '2014-11-30T10:28:00', '', 4790, 1857);
396
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022172, '539', 'treatment', '2014-11-26T13:57:00', '2014-11-26T13:57:00', '', 10490, 4871);
397
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020850, '541', 'treatment', '2014-12-06T23:25:00', '2014-12-06T23:25:00', '', 7585, 4721.5);
398
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020144, '545', 'control', '2014-12-10T21:14:00', '2014-12-10T21:14:00', '', 3090, 805);
399
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022615, '550', 'control', '2014-11-21T09:44:00', '2014-11-21T09:44:00', '', 6790, 2860);
400
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021488, '551', 'treatment', '2014-12-02T18:13:00', '2014-12-02T18:13:00', '', 9995, 6453.5);
401
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022361, '554', 'control', '2014-11-24T17:41:00', '2014-11-24T17:41:00', '', 4790, 1359);
402
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022854, '555', 'treatment', '2014-11-18T13:46:00', '2014-11-18T13:46:00', '', 10975, 3869);
403
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021466, '557', 'treatment', '2014-12-02T20:14:00', '2014-12-02T20:14:00', '', 16490, 9424);
404
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020931, '558', 'control', '2014-12-06T11:28:00', '2014-12-06T11:28:00', '', 4790, 1503);
405
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021345, '560', 'treatment', '2014-12-03T16:36:00', '2014-12-03T16:36:00', '', 9475, 5123);
406
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021458, '561', 'control', '2014-12-02T20:46:00', '2014-12-02T20:46:00', '', 5290, 1594);
407
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021792, '562', 'control', '2014-11-30T19:53:00', '2014-11-30T19:53:00', '', 2585, 509);
408
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020359, '566', 'control', '2014-12-09T19:25:00', '2014-12-09T19:25:00', '', 19065, 7036);
409
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022780, '568', 'treatment', '2014-11-19T12:25:00', '2014-11-19T12:25:00', '', 4785, 2985.5);
410
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023021, '570', 'treatment', '2014-11-15T20:15:00', '2014-11-15T20:15:00', '', 4285, 2554.5);
411
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020889, '575', 'control', '2014-12-06T17:33:00', '2014-12-06T17:33:00', '', 7280, 2413);
412
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023041, '584', 'treatment', '2014-11-15T11:06:00', '2014-11-15T11:06:00', '', 9785, 4488.5);
413
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021692, '585', 'treatment', '2014-12-01T14:49:00', '2014-12-01T14:49:00', '', 5280, 1521);
414
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020810, '586', 'control', '2014-12-07T11:55:00', '2014-12-07T11:55:00', '', 4831, 2410.6);
415
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020350, '589', 'control', '2014-12-09T19:43:00', '2014-12-09T19:43:00', '', 4290, 2548);
416
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022743, '590', 'treatment', '2014-11-19T15:37:00', '2014-11-19T15:37:00', '', 16080, 5987);
417
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020936, '591', 'control', '2014-12-06T10:58:00', '2014-12-06T10:58:00', '', 10870, 3950);
418
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022534, '592', 'treatment', '2014-11-22T18:18:00', '2014-11-22T18:18:00', '', 4785, 1996.5);
419
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022976, '593', 'treatment', '2014-11-16T19:07:00', '2014-11-16T19:07:00', '', 11785, 4230);
420
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022423, '595', 'treatment', '2014-11-24T08:35:00', '2014-11-24T08:35:00', '', 9175, 4061.5);
421
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022440, '597', 'treatment', '2014-11-23T22:29:00', '2014-11-23T22:29:00', '', 6790, 2282);
422
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023080, '598', 'treatment', '2014-11-14T05:53:00', '2014-11-14T05:53:00', '', 3590, 2087);
423
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022611, '599', 'treatment', '2014-11-21T10:27:00', '2014-11-21T10:27:00', '', 8775, 4904);
424
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022755, '600', 'treatment', '2014-11-19T14:27:00', '2014-11-19T14:27:00', '', 33565, 23192.5);
425
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020321, '601', 'control', '2014-12-09T21:19:00', '2014-12-09T21:19:00', '', 2790, 812);
426
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022869, '602', 'control', '2014-11-18T07:34:00', '2014-11-18T07:34:00', '', 2590, 981);
427
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020648, '603', 'control', '2014-12-08T09:00:00', '2014-12-08T09:00:00', '', 12080, 6737);
428
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022171, '604', 'treatment', '2014-11-26T14:13:00', '2014-11-26T14:13:00', '', 12490, 5775);
429
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022214, '605', 'control', '2014-11-25T20:54:00', '2014-11-25T20:54:00', '', 3585, 2150.5);
430
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020332, '541', 'treatment', '2014-12-09T20:27:00', '2014-12-09T20:27:00', 5020850, 7365, 3199.5);
431
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021972, '568', 'treatment', '2014-11-28T18:51:00', '2014-11-28T18:51:00', 5022780, 11780, 7701);
432
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018937, '590', '', '2014-12-16T15:02:00', '2014-12-16T15:02:00', 5022743, 9080, 5946);
433
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022393, '606', 'treatment', '2014-11-24T13:47:00', '2014-11-24T13:47:00', '', 9290, 5189);
434
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022029, '608', 'control', '2014-11-28T09:38:00', '2014-11-28T09:38:00', '', 6787, 2897.5);
435
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021814, '611', 'treatment', '2014-11-30T17:13:00', '2014-11-30T17:13:00', '', 5380, 3168);
436
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022750, '612', 'control', '2014-11-19T14:55:00', '2014-11-19T14:55:00', '', 7785, 3531.5);
437
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020220, '615', 'control', '2014-12-10T15:41:00', '2014-12-10T15:41:00', '', 3290, 1904);
438
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021125, '617', 'treatment', '2014-12-04T20:42:00', '2014-12-04T20:42:00', '', 14780, 6974);
439
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020841, '618', 'control', '2014-12-07T08:51:00', '2014-12-07T08:51:00', '', 9290, 3377);
440
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022431, '620', 'treatment', '2014-11-24T06:58:00', '2014-11-24T06:58:00', '', 2490, 966);
441
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020266, '623', 'treatment', '2014-12-10T10:52:00', '2014-12-10T10:52:00', '', 16970, 11569);
442
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022205, '625', 'treatment', '2014-11-25T21:42:00', '2014-11-25T21:42:00', '', 11765, 4141);
443
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022164, '627', 'treatment', '2014-11-26T15:37:00', '2014-11-26T15:37:00', '', 9470, 5361);
444
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021500, '628', 'treatment', '2014-12-02T16:59:00', '2014-12-02T16:59:00', '', 4285, 2682.5);
445
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020361, '630', 'control', '2014-12-09T19:18:00', '2014-12-09T19:18:00', '', 3290, 1078);
446
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022559, '631', 'control', '2014-11-22T10:23:00', '2014-11-22T10:23:00', '', 14185, 7975);
447
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022644, '633', 'control', '2014-11-20T19:39:00', '2014-11-20T19:39:00', '', 3290, 1965);
448
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021006, '634', 'control', '2014-12-05T16:37:00', '2014-12-05T16:37:00', '', 12270, 6779);
449
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020399, '636', 'treatment', '2014-12-09T15:31:00', '2014-12-09T15:31:00', '', 4790, 1977);
450
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020760, '637', 'control', '2014-12-07T15:53:00', '2014-12-07T15:53:00', '', 14070, 9323);
451
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022356, '638', 'treatment', '2014-11-24T18:22:00', '2014-11-24T18:22:00', '', 39770, 15582);
452
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021957, '639', 'control', '2014-11-28T21:01:00', '2014-11-28T21:01:00', '', 5790, 1898);
453
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022736, '640', 'control', '2014-11-19T16:36:00', '2014-11-19T16:36:00', '', 19240, 9095);
454
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023114, '641', 'treatment', '2014-11-13T17:58:00', '2014-11-13T17:58:00', '', 5290, 3197);
455
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021099, '642', 'treatment', '2014-12-05T04:47:00', '2014-12-05T04:47:00', '', 10485, 6846.5);
456
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020265, '643', 'treatment', '2014-12-10T10:57:00', '2014-12-10T10:57:00', '', 9280, 5104);
457
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022173, '644', 'treatment', '2014-11-26T13:56:00', '2014-11-26T13:56:00', '', 4380, 1154);
458
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020674, '645', 'treatment', '2014-12-07T23:43:00', '2014-12-07T23:43:00', '', 13970, 6501);
459
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022840, '646', 'treatment', '2014-11-18T17:32:00', '2014-11-18T17:32:00', '', 8785, 5692.5);
460
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021946, '647', 'treatment', '2014-11-29T05:39:00', '2014-11-29T05:39:00', '', 2290, 704);
461
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020853, '648', 'treatment', '2014-12-06T22:06:00', '2014-12-06T22:06:00', '', 4790, 1358);
462
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020611, '649', 'treatment', '2014-12-08T12:52:00', '2014-12-08T12:52:00', '', 11475, 7720.5);
463
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021420, '651', 'control', '2014-12-03T10:01:00', '2014-12-03T10:01:00', '', 3490, 2034);
464
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022411, '652', 'treatment', '2014-11-24T09:59:00', '2014-11-24T09:59:00', '', 7285, 3775);
465
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022268, '653', 'treatment', '2014-11-25T14:02:00', '2014-11-25T14:02:00', '', 3985, 2003);
466
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022895, '655', 'treatment', '2014-11-17T17:34:00', '2014-11-17T17:34:00', '', 7290, 3920);
467
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020738, '656', 'control', '2014-12-07T17:44:00', '2014-12-07T17:44:00', '', 7870, 5186);
468
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022820, '658', 'control', '2014-11-18T21:06:00', '2014-11-18T21:06:00', '', 7970, 4307);
469
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020831, '660', 'control', '2014-12-07T09:52:00', '2014-12-07T09:52:00', '', 14980, 7046);
470
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023048, '661', 'treatment', '2014-11-14T22:32:00', '2014-11-14T22:32:00', '', 7375, 4852.5);
471
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022403, '665', 'treatment', '2014-11-24T11:32:00', '2014-11-24T11:32:00', '', 6790, 2941);
472
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020363, '666', 'control', '2014-12-09T19:13:00', '2014-12-09T19:13:00', '', 11280, 7470);
473
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020703, '669', 'treatment', '2014-12-07T20:08:00', '2014-12-07T20:08:00', '', 4785, 1315);
474
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022231, '670', 'control', '2014-11-25T19:25:00', '2014-11-25T19:25:00', '', 4790, 1839);
475
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022303, '677', 'treatment', '2014-11-25T09:35:00', '2014-11-25T09:35:00', '', 3790, 954);
476
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021280, '678', 'control', '2014-12-03T22:17:00', '2014-12-03T22:17:00', '', 2190, 874);
477
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021591, '680', 'control', '2014-12-02T06:47:00', '2014-12-02T06:47:00', '', 4290, 2681);
478
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022366, '681', 'control', '2014-11-24T17:19:00', '2014-11-24T17:19:00', '', 7790, 5149);
479
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021987, '683', 'control', '2014-11-28T16:08:00', '2014-11-28T16:08:00', '', 11781, 4375.4);
480
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020200, '684', 'treatment', '2014-12-10T18:31:00', '2014-12-10T18:31:00', '', 22625, 8704);
481
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023052, '685', 'treatment', '2014-11-14T19:44:00', '2014-11-14T19:44:00', '', 3290, 1226);
482
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021731, '687', 'control', '2014-12-01T10:11:00', '2014-12-01T10:11:00', '', 5790, 3591);
483
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020447, '688', 'treatment', '2014-12-09T12:18:00', '2014-12-09T12:18:00', '', 2985, 1001.5);
484
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021342, '689', 'treatment', '2014-12-03T16:37:00', '2014-12-03T16:37:00', '', 11285, 4081);
485
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021317, '692', 'control', '2014-12-03T19:44:00', '2014-12-03T19:44:00', '', 10080, 6488);
486
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021261, '693', 'treatment', '2014-12-04T08:32:00', '2014-12-04T08:32:00', '', 8775, 3101);
487
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022764, '695', 'control', '2014-11-19T13:36:00', '2014-11-19T13:36:00', '', 37780, 25852);
488
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022158, '696', 'control', '2014-11-26T16:13:00', '2014-11-26T16:13:00', '', 10080, 6530);
489
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023071, '697', 'treatment', '2014-11-14T12:00:00', '2014-11-14T12:00:00', '', 9290, 5008);
490
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022045, '698', 'control', '2014-11-27T22:39:00', '2014-11-27T22:39:00', '', 4980, 3043);
491
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022725, '700', 'control', '2014-11-19T18:35:00', '2014-11-19T18:35:00', '', 7285, 3896);
492
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021030, '701', 'treatment', '2014-12-05T14:33:00', '2014-12-05T14:33:00', '', 11785, 4204);
493
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020565, '702', 'treatment', '2014-12-08T18:12:00', '2014-12-08T18:12:00', '', 2290, 1146);
494
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022221, '704', 'treatment', '2014-11-25T20:29:00', '2014-11-25T20:29:00', '', 2590, 1309);
495
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020688, '706', 'treatment', '2014-12-07T21:48:00', '2014-12-07T21:48:00', '', 4290, 2255);
496
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022458, '707', 'treatment', '2014-11-23T20:01:00', '2014-11-23T20:01:00', '', 12880, 8497);
497
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020008, '643', '', '2014-12-11T13:50:00', '2014-12-11T13:50:00', 5020265, 3790, 1545);
498
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020342, '712', 'control', '2014-12-09T19:53:00', '2014-12-09T19:53:00', '', 10485, 4652.5);
499
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022075, '716', 'treatment', '2014-11-27T15:56:00', '2014-11-27T15:56:00', '', 11980, 5689);
500
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021973, '717', 'control', '2014-11-28T18:46:00', '2014-11-28T18:46:00', '', 9713, 4395.5);
501
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021956, '718', 'control', '2014-11-28T21:21:00', '2014-11-28T21:21:00', '', 10483, 6971.1);
502
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020287, '724', 'control', '2014-12-10T08:30:00', '2014-12-10T08:30:00', '', 22980, 13466);
503
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021296, '725', 'treatment', '2014-12-03T20:56:00', '2014-12-03T20:56:00', '', 2590, 1180);
504
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021866, '726', 'control', '2014-11-30T09:53:00', '2014-11-30T09:53:00', '', 6590, 2993);
505
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020589, '727', 'treatment', '2014-12-08T15:31:00', '2014-12-08T15:31:00', '', 4785, 2509);
506
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021268, '730', 'control', '2014-12-04T05:29:00', '2014-12-04T05:29:00', '', 2790, 1150);
507
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021135, '731', 'control', '2014-12-04T20:03:00', '2014-12-04T20:03:00', '', 3285, 1485);
508
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021765, '733', 'control', '2014-12-01T01:28:00', '2014-12-01T01:28:00', '', 4290, 2594);
509
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021394, '735', 'treatment', '2014-12-03T12:56:00', '2014-12-03T12:56:00', '', 3090, 1856);
510
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020515, '736', 'treatment', '2014-12-08T23:08:00', '2014-12-08T23:08:00', '', 12995, 6172.5);
511
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020207, '737', 'control', '2014-12-10T17:03:00', '2014-12-10T17:03:00', '', 4790, 2548);
512
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021004, '738', 'control', '2014-12-05T16:48:00', '2014-12-05T16:48:00', '', 12675, 7173);
513
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022678, '739', 'treatment', '2014-11-20T11:49:00', '2014-11-20T11:49:00', '', 3290, 1478);
514
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022170, '740', 'control', '2014-11-26T14:25:00', '2014-11-26T14:25:00', '', 2790, 671);
515
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020816, '741', 'control', '2014-12-07T11:09:00', '2014-12-07T11:09:00', '', 5975, 3047);
516
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021738, '742', 'treatment', '2014-12-01T09:39:00', '2014-12-01T09:39:00', '', 8375, 4553);
517
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022734, '744', 'treatment', '2014-11-19T17:07:00', '2014-11-19T17:07:00', '', 6790, 3680);
518
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023022, '745', 'treatment', '2014-11-15T19:59:00', '2014-11-15T19:59:00', '', 2190, 700);
519
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020697, '747', 'control', '2014-12-07T20:53:00', '2014-12-07T20:53:00', '', 14790, 8440);
520
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022298, '749', 'treatment', '2014-11-25T10:23:00', '2014-11-25T10:23:00', '', 4085, 1208);
521
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022628, '752', 'treatment', '2014-11-20T21:24:00', '2014-11-20T21:24:00', '', 7565, 3185.5);
522
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022799, '753', 'treatment', '2014-11-19T09:23:00', '2014-11-19T09:23:00', '', 4780, 1910);
523
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021160, '755', 'treatment', '2014-12-04T19:05:00', '2014-12-04T19:05:00', '', 6085, 3809.5);
524
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020647, '757', 'control', '2014-12-08T09:36:00', '2014-12-08T09:36:00', '', 4790, 2826);
525
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022591, '759', 'treatment', '2014-11-21T16:17:00', '2014-11-21T16:17:00', '', 4180, 1203);
526
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020717, '761', 'treatment', '2014-12-07T19:15:00', '2014-12-07T19:15:00', '', 3785, 1438.5);
527
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020256, '763', 'treatment', '2014-12-10T11:27:00', '2014-12-10T11:27:00', '', 3390, 1045);
528
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022703, '764', 'control', '2014-11-19T21:30:00', '2014-11-19T21:30:00', '', 4185, 1948);
529
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021237, '770', 'control', '2014-12-04T10:50:00', '2014-12-04T10:50:00', '', 6180, 1968);
530
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020779, '772', 'control', '2014-12-07T14:15:00', '2014-12-07T14:15:00', '', 20490, 9648);
531
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020804, '773', 'control', '2014-12-07T12:24:00', '2014-12-07T12:24:00', '', 11055, 6210);
532
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020869, '776', 'control', '2014-12-06T20:10:00', '2014-12-06T20:10:00', '', 14175, 9428.5);
533
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022588, '777', 'treatment', '2014-11-21T16:23:00', '2014-11-21T16:23:00', '', 7285, 4526.5);
534
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022833, '778', 'treatment', '2014-11-18T18:35:00', '2014-11-18T18:35:00', '', 3790, 1523);
535
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020878, '782', 'treatment', '2014-12-06T19:21:00', '2014-12-06T19:21:00', '', 5485, 3518.5);
536
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023099, '783', 'treatment', '2014-11-13T20:10:00', '2014-11-13T20:10:00', '', 3790, 2179);
537
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022939, '784', 'treatment', '2014-11-17T09:03:00', '2014-11-17T09:03:00', '', 5785, 3116);
538
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022957, '785', 'control', '2014-11-16T22:00:00', '2014-11-16T22:00:00', '', 9090, 5857);
539
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022558, '787', 'treatment', '2014-11-22T10:26:00', '2014-11-22T10:26:00', '', 7175, 4684.5);
540
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021899, '789', 'control', '2014-11-29T17:34:00', '2014-11-29T17:34:00', '', 4790, 1345);
541
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021772, '790', 'control', '2014-11-30T21:51:00', '2014-11-30T21:51:00', '', 4685, 2000.5);
542
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021990, '792', 'control', '2014-11-28T15:51:00', '2014-11-28T15:51:00', '', 2290, 1153);
543
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021948, '793', 'control', '2014-11-29T00:21:00', '2014-11-29T00:21:00', '', 6790, 2952);
544
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020863, '794', 'control', '2014-12-06T20:57:00', '2014-12-06T20:57:00', '', 4790, 3033);
545
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020825, '796', 'control', '2014-12-07T10:15:00', '2014-12-07T10:15:00', '', 21070, 10212);
546
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022695, '797', 'control', '2014-11-19T23:00:00', '2014-11-19T23:00:00', '', 6785, 3045.5);
547
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020790, '798', 'control', '2014-12-07T13:44:00', '2014-12-07T13:44:00', '', 9790, 4521);
548
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023103, '799', 'control', '2014-11-13T19:55:00', '2014-11-13T19:55:00', '', 2290, 880);
549
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022578, '800', 'treatment', '2014-11-21T19:14:00', '2014-11-21T19:14:00', '', 6590, 2947);
550
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022970, '802', 'treatment', '2014-11-16T19:58:00', '2014-11-16T19:58:00', '', 6285, 3297);
551
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020460, '803', 'control', '2014-12-09T11:30:00', '2014-12-09T11:30:00', '', 3290, 1205);
552
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021675, '804', 'control', '2014-12-01T16:38:00', '2014-12-01T16:38:00', '', 6280, 2705);
553
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022776, '805', 'control', '2014-11-19T12:49:00', '2014-11-19T12:49:00', '', 13080, 4721);
554
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020343, '806', 'control', '2014-12-09T19:52:00', '2014-12-09T19:52:00', '', 3685, 1333.5);
555
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022525, '807', 'treatment', '2014-11-22T22:56:00', '2014-11-22T22:56:00', '', 9280, 6063);
556
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021294, '812', 'control', '2014-12-03T20:59:00', '2014-12-03T20:59:00', '', 5680, 3528);
557
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021985, '813', 'treatment', '2014-11-28T16:28:00', '2014-11-28T16:28:00', '', 16021, 9267.6);
558
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020403, '815', 'treatment', '2014-12-09T14:45:00', '2014-12-09T14:45:00', '', 3290, 890);
559
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022446, '816', 'control', '2014-11-23T21:01:00', '2014-11-23T21:01:00', '', 2790, 1558);
560
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022576, '817', 'control', '2014-11-21T19:20:00', '2014-11-21T19:20:00', '', 13175, 4760);
561
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020251, '776', 'control', '2014-12-10T12:22:00', '2014-12-10T12:22:00', 5020869, 5290, 3160);
562
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021092, '797', 'control', '2014-12-05T08:12:00', '2014-12-05T08:12:00', 5022695, 16995, 7962.5);
563
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022352, '800', 'treatment', '2014-11-24T18:57:00', '2014-11-24T18:57:00', 5022578, 4090, 1197);
564
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021621, '818', 'control', '2014-12-01T20:47:00', '2014-12-01T20:47:00', '', 2790, 1247);
565
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020234, '819', 'treatment', '2014-12-10T14:08:00', '2014-12-10T14:08:00', '', 4785, 1919.5);
566
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022185, '820', 'treatment', '2014-11-26T09:53:00', '2014-11-26T09:53:00', '', 4790, 1937);
567
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020423, '823', 'control', '2014-12-09T13:21:00', '2014-12-09T13:21:00', '', 5290, 2099);
568
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020470, '825', 'control', '2014-12-09T10:46:00', '2014-12-09T10:46:00', '', 14645, 9882.5);
569
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022292, '826', 'control', '2014-11-25T10:46:00', '2014-11-25T10:46:00', '', 3290, 1447);
570
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022167, '827', 'treatment', '2014-11-26T14:54:00', '2014-11-26T14:54:00', '', 8290, 5244);
571
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022301, '828', 'control', '2014-11-25T09:45:00', '2014-11-25T09:45:00', '', 23265, 11232.5);
572
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022937, '829', 'control', '2014-11-17T09:41:00', '2014-11-17T09:41:00', '', 10980, 7274);
573
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021811, '834', 'control', '2014-11-30T17:43:00', '2014-11-30T17:43:00', '', 10485, 3796);
574
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021702, '836', 'treatment', '2014-12-01T13:12:00', '2014-12-01T13:12:00', '', 3290, 1139);
575
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022663, '838', 'treatment', '2014-11-20T14:25:00', '2014-11-20T14:25:00', '', 9780, 3425);
576
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021969, '839', 'control', '2014-11-28T18:58:00', '2014-11-28T18:58:00', '', 3190, 1336);
577
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021564, '840', 'treatment', '2014-12-02T11:17:00', '2014-12-02T11:17:00', '', 9280, 6188);
578
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022216, '841', 'control', '2014-11-25T20:49:00', '2014-11-25T20:49:00', '', 13470, 6213);
579
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020704, '842', 'control', '2014-12-07T19:55:00', '2014-12-07T19:55:00', '', 9875, 4423.5);
580
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022889, '844', 'treatment', '2014-11-17T19:02:00', '2014-11-17T19:02:00', '', 5290, 1531);
581
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021626, '845', 'control', '2014-12-01T20:33:00', '2014-12-01T20:33:00', '', 9475, 4408.5);
582
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020650, '847', 'control', '2014-12-08T09:03:00', '2014-12-08T09:03:00', '', 4790, 2450);
583
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022788, '852', 'treatment', '2014-11-19T11:25:00', '2014-11-19T11:25:00', '', 11370, 5282);
584
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022018, '853', 'control', '2014-11-28T10:44:00', '2014-11-28T10:44:00', '', 3290, 1243);
585
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020400, '857', 'treatment', '2014-12-09T15:06:00', '2014-12-09T15:06:00', '', 4090, 1266);
586
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020794, '859', 'control', '2014-12-07T13:29:00', '2014-12-07T13:29:00', '', 8070, 2917);
587
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022413, '860', 'treatment', '2014-11-24T09:49:00', '2014-11-24T09:49:00', '', 3785, 2306.5);
588
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022999, '864', 'treatment', '2014-11-16T12:55:00', '2014-11-16T12:55:00', '', 10375, 5634);
589
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020510, '867', 'control', '2014-12-09T05:40:00', '2014-12-09T05:40:00', '', 3290, 957);
590
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022792, '868', 'treatment', '2014-11-19T10:38:00', '2014-11-19T10:38:00', '', 8075, 2802);
591
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020362, '869', 'control', '2014-12-09T19:17:00', '2014-12-09T19:17:00', '', 12380, 6970);
592
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022217, '872', 'treatment', '2014-11-25T20:48:00', '2014-11-25T20:48:00', '', 21485, 14560.5);
593
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022426, '873', 'treatment', '2014-11-24T08:03:00', '2014-11-24T08:03:00', '', 9985, 3417);
594
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022819, '875', 'treatment', '2014-11-18T21:10:00', '2014-11-18T21:10:00', '', 6580, 4144);
595
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020232, '876', 'control', '2014-12-10T14:25:00', '2014-12-10T14:25:00', '', 7480, 2609);
596
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021767, '877', 'control', '2014-11-30T22:26:00', '2014-11-30T22:26:00', '', 4090, 1947);
597
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021428, '880', 'control', '2014-12-03T08:35:00', '2014-12-03T08:35:00', '', 4785, 1372);
598
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020971, '882', 'control', '2014-12-05T20:27:00', '2014-12-05T20:27:00', '', 5780, 3138);
599
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022964, '883', 'control', '2014-11-16T20:38:00', '2014-11-16T20:38:00', '', 5790, 2485);
600
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021568, '884', 'control', '2014-12-02T10:53:00', '2014-12-02T10:53:00', '', 10285, 5807);
601
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022347, '886', 'treatment', '2014-11-24T19:33:00', '2014-11-24T19:33:00', '', 5380, 3282);
602
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021171, '888', 'control', '2014-12-04T17:42:00', '2014-12-04T17:42:00', '', 8270, 5254);
603
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021454, '889', 'treatment', '2014-12-02T20:48:00', '2014-12-02T20:48:00', '', 5585, 3493.5);
604
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021796, '891', 'control', '2014-11-30T19:26:00', '2014-11-30T19:26:00', '', 11285, 5137.5);
605
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021427, '894', 'control', '2014-12-03T08:49:00', '2014-12-03T08:49:00', '', 6790, 3485);
606
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021200, '895', 'control', '2014-12-04T14:14:00', '2014-12-04T14:14:00', '', 3685, 1057);
607
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022509, '897', 'treatment', '2014-11-23T10:40:00', '2014-11-23T10:40:00', '', 4090, 2563);
608
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021834, '898', 'treatment', '2014-11-30T14:55:00', '2014-11-30T14:55:00', '', 7080, 3049);
609
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020952, '899', 'treatment', '2014-12-05T23:45:00', '2014-12-05T23:45:00', '', 6075, 2553.5);
610
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022724, '900', 'control', '2014-11-19T18:40:00', '2014-11-19T18:40:00', '', 4785, 2307);
611
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022267, '901', 'treatment', '2014-11-25T14:03:00', '2014-11-25T14:03:00', '', 9690, 5464);
612
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020749, '902', 'treatment', '2014-12-07T16:58:00', '2014-12-07T16:58:00', '', 4290, 1609);
613
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022227, '903', 'treatment', '2014-11-25T19:45:00', '2014-11-25T19:45:00', '', 7785, 4238);
614
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020669, '905', 'treatment', '2014-12-08T07:57:00', '2014-12-08T07:57:00', '', 3390, 1894);
615
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021566, '909', 'control', '2014-12-02T10:56:00', '2014-12-02T10:56:00', '', 10480, 4739);
616
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021550, '910', 'treatment', '2014-12-02T12:25:00', '2014-12-02T12:25:00', '', 9680, 3329);
617
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021752, '912', 'treatment', '2014-12-01T07:33:00', '2014-12-01T07:33:00', '', 4790, 2374);
618
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023091, '914', 'treatment', '2014-11-13T21:41:00', '2014-11-13T21:41:00', '', 31490, 12022);
619
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020262, '916', 'treatment', '2014-12-10T11:00:00', '2014-12-10T11:00:00', '', 1890, 410);
620
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022984, '917', 'control', '2014-11-16T17:31:00', '2014-11-16T17:31:00', '', 6975, 3618);
621
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022371, '919', 'control', '2014-11-24T16:58:00', '2014-11-24T16:58:00', '', 10780, 3830);
622
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020480, '923', 'control', '2014-12-09T10:01:00', '2014-12-09T10:01:00', '', 11480, 7653);
623
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021976, '924', 'control', '2014-11-28T18:38:00', '2014-11-28T18:38:00', '', 4185, 1744.5);
624
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021358, '927', 'control', '2014-12-03T15:52:00', '2014-12-03T15:52:00', '', 10580, 4964);
625
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022829, '928', 'treatment', '2014-11-18T19:32:00', '2014-11-18T19:32:00', '', 4790, 2045);
626
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021975, '929', 'treatment', '2014-11-28T18:40:00', '2014-11-28T18:40:00', '', 3290, 1300);
627
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020736, '930', 'treatment', '2014-12-07T17:52:00', '2014-12-07T17:52:00', '', 4785, 1468);
628
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022872, '931', 'treatment', '2014-11-17T21:50:00', '2014-11-17T21:50:00', '', 4385, 1288);
629
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022053, '935', 'treatment', '2014-11-27T20:48:00', '2014-11-27T20:48:00', '', 13643, 4883.2);
630
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019231, '909', '', '2014-12-15T12:17:00', '2014-12-15T12:17:00', 5021566, 9790, 6522);
631
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022908, '937', 'treatment', '2014-11-17T15:40:00', '2014-11-17T15:40:00', '', 4090, 2279);
632
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022960, '938', 'treatment', '2014-11-16T21:16:00', '2014-11-16T21:16:00', '', 3785, 1090);
633
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022519, '939', 'control', '2014-11-23T09:40:00', '2014-11-23T09:40:00', '', 4290, 2443);
634
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021259, '940', 'control', '2014-12-04T09:03:00', '2014-12-04T09:03:00', '', 5785, 2005);
635
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020682, '943', 'control', '2014-12-07T22:09:00', '2014-12-07T22:09:00', '', 3785, 1483.5);
636
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020260, '945', 'control', '2014-12-10T11:05:00', '2014-12-10T11:05:00', '', 4985, 2626);
637
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023030, '946', 'treatment', '2014-11-15T18:01:00', '2014-11-15T18:01:00', '', 3680, 895);
638
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020753, '947', 'treatment', '2014-12-07T16:23:00', '2014-12-07T16:23:00', '', 10285, 6889.5);
639
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022777, '948', 'control', '2014-11-19T12:42:00', '2014-11-19T12:42:00', '', 4790, 2920);
640
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022255, '949', 'control', '2014-11-25T16:31:00', '2014-11-25T16:31:00', '', 19465, 7219);
641
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020989, '951', 'control', '2014-12-05T18:30:00', '2014-12-05T18:30:00', '', 6875, 3114.5);
642
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022291, '952', 'treatment', '2014-11-25T10:57:00', '2014-11-25T10:57:00', '', 9475, 6067.5);
643
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020150, '953', 'treatment', '2014-12-10T20:55:00', '2014-12-10T20:55:00', '', 5285, 2240.5);
644
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021554, '954', 'treatment', '2014-12-02T12:21:00', '2014-12-02T12:21:00', '', 10485, 4761.5);
645
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022806, '955', 'treatment', '2014-11-19T07:13:00', '2014-11-19T07:13:00', '', 2790, 844);
646
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020317, '956', 'treatment', '2014-12-09T21:24:00', '2014-12-09T21:24:00', '', 4785, 2851.5);
647
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021966, '958', 'control', '2014-11-28T19:48:00', '2014-11-28T19:48:00', '', 10181, 5560.6);
648
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021403, '960', 'treatment', '2014-12-03T12:10:00', '2014-12-03T12:10:00', '', 5485, 3353.5);
649
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020837, '962', 'treatment', '2014-12-07T09:17:00', '2014-12-07T09:17:00', '', 6880, 2905);
650
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020420, '964', 'control', '2014-12-09T13:26:00', '2014-12-09T13:26:00', '', 3285, 1317.5);
651
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023014, '965', 'treatment', '2014-11-16T00:40:00', '2014-11-16T00:40:00', '', 9580, 3483);
652
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023023, '966', 'treatment', '2014-11-15T19:55:00', '2014-11-15T19:55:00', '', 3490, 1342);
653
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022188, '967', 'treatment', '2014-11-26T09:20:00', '2014-11-26T09:20:00', '', 17970, 8529);
654
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023118, '969', 'treatment', '2014-11-13T17:13:00', '2014-11-13T17:13:00', '', 6775, 2196);
655
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021916, '970', 'treatment', '2014-11-29T13:51:00', '2014-11-29T13:51:00', '', 4790, 2847);
656
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020212, '972', 'control', '2014-12-10T16:44:00', '2014-12-10T16:44:00', '', 6280, 3276);
657
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023013, '974', 'control', '2014-11-16T01:07:00', '2014-11-16T01:07:00', '', 4285, 2174);
658
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021075, '975', 'treatment', '2014-12-05T10:03:00', '2014-12-05T10:03:00', '', 7580, 4770);
659
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022953, '976', 'control', '2014-11-17T00:55:00', '2014-11-17T00:55:00', '', 6180, 3944);
660
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020836, '977', 'control', '2014-12-07T09:34:00', '2014-12-07T09:34:00', '', 4790, 2076);
661
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020879, '980', 'treatment', '2014-12-06T19:19:00', '2014-12-06T19:19:00', '', 4285, 1413);
662
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021363, '982', 'control', '2014-12-03T15:31:00', '2014-12-03T15:31:00', '', 12780, 8632);
663
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021353, '983', 'treatment', '2014-12-03T16:02:00', '2014-12-03T16:02:00', '', 14985, 5477);
664
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021639, '986', 'treatment', '2014-12-01T19:20:00', '2014-12-01T19:20:00', '', 10970, 4014);
665
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022791, '987', 'treatment', '2014-11-19T10:49:00', '2014-11-19T10:49:00', '', 10775, 5953);
666
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021211, '988', 'control', '2014-12-04T12:59:00', '2014-12-04T12:59:00', '', 3390, 1210);
667
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022457, '989', 'control', '2014-11-23T20:03:00', '2014-11-23T20:03:00', '', 9785, 3501);
668
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022445, '995', 'control', '2014-11-23T21:05:00', '2014-11-23T21:05:00', '', 4790, 2859);
669
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023001, '1000', 'control', '2014-11-16T12:16:00', '2014-11-16T12:16:00', '', 10680, 3749);
670
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021801, '1002', 'treatment', '2014-11-30T18:58:00', '2014-11-30T18:58:00', '', 10090, 3551);
671
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020194, '1003', 'control', '2014-12-10T18:55:00', '2014-12-10T18:55:00', '', 5280, 2172);
672
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021491, '1004', 'control', '2014-12-02T18:00:00', '2014-12-02T18:00:00', '', 5385, 3284.5);
673
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022160, '1005', 'treatment', '2014-11-26T15:55:00', '2014-11-26T15:55:00', '', 25855, 15180);
674
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020135, '1006', 'control', '2014-12-10T21:53:00', '2014-12-10T21:53:00', '', 6785, 3584);
675
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022332, '1008', 'treatment', '2014-11-24T21:04:00', '2014-11-24T21:04:00', '', 4790, 2562);
676
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021525, '1009', 'treatment', '2014-12-02T14:58:00', '2014-12-02T14:58:00', '', 3985, 1548.5);
677
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021887, '1010', 'control', '2014-11-29T21:57:00', '2014-11-29T21:57:00', '', 4790, 2533);
678
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021551, '1012', 'control', '2014-12-02T12:24:00', '2014-12-02T12:24:00', '', 2590, 480);
679
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022580, '1013', 'control', '2014-11-21T18:17:00', '2014-11-21T18:17:00', '', 6590, 2799);
680
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020271, '1014', 'treatment', '2014-12-10T10:32:00', '2014-12-10T10:32:00', '', 13670, 7839);
681
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021644, '1018', 'treatment', '2014-12-01T19:05:00', '2014-12-01T19:05:00', '', 21775, 12742);
682
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021817, '1019', 'treatment', '2014-11-30T17:02:00', '2014-11-30T17:02:00', '', 14270, 8246);
683
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022245, '1020', 'treatment', '2014-11-25T17:43:00', '2014-11-25T17:43:00', '', 4285, 2483.5);
684
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021497, '1021', 'control', '2014-12-02T17:32:00', '2014-12-02T17:32:00', '', 3490, 1307);
685
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021690, '1023', 'control', '2014-12-01T14:59:00', '2014-12-01T14:59:00', '', 8285, 5232.5);
686
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020937, '1024', 'control', '2014-12-06T10:31:00', '2014-12-06T10:31:00', '', 5280, 3132);
687
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022066, '1025', 'treatment', '2014-11-27T18:28:00', '2014-11-27T18:28:00', '', 3592, 1334);
688
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022884, '1027', 'treatment', '2014-11-17T20:06:00', '2014-11-17T20:06:00', '', 3790, 2280);
689
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020208, '1030', 'control', '2014-12-10T17:02:00', '2014-12-10T17:02:00', '', 13485, 7750);
690
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022540, '1031', 'treatment', '2014-11-22T17:05:00', '2014-11-22T17:05:00', '', 2590, 1261);
691
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021756, '1033', 'treatment', '2014-12-01T07:04:00', '2014-12-01T07:04:00', '', 4790, 1609);
692
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022986, '1034', 'treatment', '2014-11-16T17:16:00', '2014-11-16T17:16:00', '', 6280, 3285);
693
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022443, '1037', 'control', '2014-11-23T21:11:00', '2014-11-23T21:11:00', '', 8285, 5446.5);
694
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019438, '986', '', '2014-12-14T17:12:00', '2014-12-14T17:12:00', 5021639, 8680, 3753);
695
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018838, '989', '', '2014-12-16T20:34:00', '2014-12-16T20:34:00', 5022457, 4885, 1559);
696
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019940, '1013', '', '2014-12-11T19:20:00', '2014-12-11T19:20:00', 5022580, 10485, 4675.5);
697
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021440, '1038', 'treatment', '2014-12-02T22:44:00', '2014-12-02T22:44:00', '', 7285, 3937);
698
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022323, '1040', 'treatment', '2014-11-25T00:33:00', '2014-11-25T00:33:00', '', 3285, 1263.5);
699
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020645, '1041', 'control', '2014-12-08T09:38:00', '2014-12-08T09:38:00', '', 14655, 8489);
700
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022234, '1043', 'treatment', '2014-11-25T19:07:00', '2014-11-25T19:07:00', '', 10480, 4663);
701
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022515, '1045', 'treatment', '2014-11-23T10:15:00', '2014-11-23T10:15:00', '', 2590, 955);
702
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020247, '1046', 'treatment', '2014-12-10T12:42:00', '2014-12-10T12:42:00', '', 9470, 5203);
703
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021026, '1049', 'treatment', '2014-12-05T14:49:00', '2014-12-05T14:49:00', '', 3390, 1190);
704
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022907, '1050', 'treatment', '2014-11-17T15:58:00', '2014-11-17T15:58:00', '', 21660, 10476);
705
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020311, '1052', 'control', '2014-12-09T21:52:00', '2014-12-09T21:52:00', '', 9580, 4279);
706
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020778, '1053', 'control', '2014-12-07T14:19:00', '2014-12-07T14:19:00', '', 9085, 4154.5);
707
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021150, '1054', 'control', '2014-12-04T19:37:00', '2014-12-04T19:37:00', '', 10880, 7304);
708
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022759, '1055', 'treatment', '2014-11-19T14:06:00', '2014-11-19T14:06:00', '', 1790, 445);
709
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022934, '1060', 'treatment', '2014-11-17T10:28:00', '2014-11-17T10:28:00', '', 16270, 10872);
710
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022560, '1061', 'treatment', '2014-11-22T10:12:00', '2014-11-22T10:12:00', '', 10990, 6052);
711
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020224, '1062', 'control', '2014-12-10T15:08:00', '2014-12-10T15:08:00', '', 19365, 7237);
712
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022496, '1064', 'control', '2014-11-23T14:26:00', '2014-11-23T14:26:00', '', 9380, 5997);
713
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021332, '1065', 'control', '2014-12-03T18:00:00', '2014-12-03T18:00:00', '', 6785, 3049.5);
714
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021429, '1066', 'control', '2014-12-03T08:17:00', '2014-12-03T08:17:00', '', 2990, 646);
715
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020580, '1068', 'control', '2014-12-08T16:44:00', '2014-12-08T16:44:00', '', 5380, 1826);
716
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020806, '1070', 'treatment', '2014-12-07T12:16:00', '2014-12-07T12:16:00', '', 4185, 1126);
717
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022398, '1071', 'control', '2014-11-24T12:29:00', '2014-11-24T12:29:00', '', 4290, 2601);
718
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021399, '1073', 'control', '2014-12-03T12:39:00', '2014-12-03T12:39:00', '', 5685, 2364.5);
719
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021185, '1074', 'control', '2014-12-04T16:03:00', '2014-12-04T16:03:00', '', 7175, 4000);
720
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020925, '1075', 'control', '2014-12-06T12:40:00', '2014-12-06T12:40:00', '', 6590, 4128);
721
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022434, '1076', 'treatment', '2014-11-23T23:23:00', '2014-11-23T23:23:00', '', 8465, 3901.5);
722
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020155, '1078', 'control', '2014-12-10T20:40:00', '2014-12-10T20:40:00', '', 5085, 2112.5);
723
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021046, '1081', 'control', '2014-12-05T12:54:00', '2014-12-05T12:54:00', '', 11685, 7868.5);
724
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021273, '1083', 'control', '2014-12-03T22:46:00', '2014-12-03T22:46:00', '', 10680, 7155);
725
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022290, '1084', 'treatment', '2014-11-25T10:03:00', '2014-11-25T10:03:00', '', 9475, 3413);
726
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022257, '1087', 'treatment', '2014-11-25T16:26:00', '2014-11-25T16:26:00', '', 6790, 4363);
727
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021589, '1088', 'control', '2014-12-02T06:53:00', '2014-12-02T06:53:00', '', 12995, 6152.5);
728
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021452, '1090', 'control', '2014-12-02T20:55:00', '2014-12-02T20:55:00', '', 4485, 1810.5);
729
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020766, '1091', 'treatment', '2014-12-07T15:35:00', '2014-12-07T15:35:00', '', 12985, 4718);
730
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020337, '1092', 'control', '2014-12-09T19:57:00', '2014-12-09T19:57:00', '', 6590, 3507);
731
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021227, '1093', 'treatment', '2014-12-04T12:02:00', '2014-12-04T12:02:00', '', 5475, 2340.5);
732
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021711, '1094', 'control', '2014-12-01T12:06:00', '2014-12-01T12:06:00', '', 4585, 1709.5);
733
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020788, '1095', 'control', '2014-12-07T13:50:00', '2014-12-07T13:50:00', '', 4290, 2255);
734
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021430, '1097', 'treatment', '2014-12-03T08:04:00', '2014-12-03T08:04:00', '', 3585, 1913.5);
735
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021794, '1100', 'control', '2014-11-30T19:41:00', '2014-11-30T19:41:00', '', 8560, 3831);
736
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021287, '1101', 'treatment', '2014-12-03T21:26:00', '2014-12-03T21:26:00', '', 5285, 3399.5);
737
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022547, '1102', 'control', '2014-11-22T14:05:00', '2014-11-22T14:05:00', '', 7085, 4417.5);
738
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021878, '1104', 'control', '2014-11-30T01:30:00', '2014-11-30T01:30:00', '', 9285, 6120.5);
739
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022594, '1106', 'control', '2014-11-21T15:45:00', '2014-11-21T15:45:00', '', 3790, 2080);
740
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020382, '1107', 'control', '2014-12-09T17:28:00', '2014-12-09T17:28:00', '', 15890, 10755);
741
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022442, '1108', 'treatment', '2014-11-23T21:19:00', '2014-11-23T21:19:00', '', 13170, 6249);
742
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021662, '1113', 'control', '2014-12-01T17:53:00', '2014-12-01T17:53:00', '', 4090, 1527);
743
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020707, '1115', 'treatment', '2014-12-07T19:45:00', '2014-12-07T19:45:00', '', 44245, 21589.5);
744
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021847, '1117', 'control', '2014-11-30T13:17:00', '2014-11-30T13:17:00', '', 7790, 4115);
745
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021884, '1122', 'treatment', '2014-11-29T22:17:00', '2014-11-29T22:17:00', '', 4790, 2333);
746
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020665, '1123', 'control', '2014-12-08T08:10:00', '2014-12-08T08:10:00', '', 16370, 10981);
747
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020379, '1124', 'control', '2014-12-09T18:00:00', '2014-12-09T18:00:00', '', 3490, 1889);
748
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021939, '1125', 'treatment', '2014-11-29T09:57:00', '2014-11-29T09:57:00', '', 3290, 1956);
749
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022174, '1129', 'treatment', '2014-11-26T13:34:00', '2014-11-26T13:34:00', '', 5790, 3023);
750
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020605, '1130', 'control', '2014-12-08T13:28:00', '2014-12-08T13:28:00', '', 5290, 1541);
751
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022196, '1135', 'treatment', '2014-11-26T07:24:00', '2014-11-26T07:24:00', '', 3490, 1668);
752
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021631, '1136', 'control', '2014-12-01T19:47:00', '2014-12-01T19:47:00', '', 3385, 840);
753
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020906, '1137', 'control', '2014-12-06T15:18:00', '2014-12-06T15:18:00', '', 5290, 2314);
754
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022668, '1138', 'treatment', '2014-11-20T13:41:00', '2014-11-20T13:41:00', '', 6785, 2187);
755
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021518, '1140', 'control', '2014-12-02T15:43:00', '2014-12-02T15:43:00', '', 4585, 2391);
756
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022404, '1141', 'treatment', '2014-11-24T10:44:00', '2014-11-24T10:44:00', '', 5285, 2219.5);
757
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021001, '1073', 'control', '2014-12-05T17:02:00', '2014-12-05T17:02:00', 5021399, 4385, 1198);
758
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022087, '1106', 'control', '2014-11-27T13:56:00', '2014-11-27T13:56:00', 5022594, 8180, 2967);
759
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019312, '1137', '', '2014-12-15T07:57:00', '2014-12-15T07:57:00', 5020906, 10185, 3711);
760
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023120, '1142', 'treatment', '2014-11-13T16:13:00', '2014-11-13T16:13:00', '', 6785, 4336.5);
761
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022373, '1143', 'control', '2014-11-24T16:57:00', '2014-11-24T16:57:00', '', 9990, 6509);
762
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022569, '1144', 'treatment', '2014-11-22T00:21:00', '2014-11-22T00:21:00', '', 17995, 8665.5);
763
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021251, '1145', 'treatment', '2014-12-04T09:47:00', '2014-12-04T09:47:00', '', 8075, 4409);
764
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020727, '1146', 'treatment', '2014-12-07T18:29:00', '2014-12-07T18:29:00', '', 3880, 1740);
765
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022052, '1147', 'control', '2014-11-27T20:49:00', '2014-11-27T20:49:00', '', 9751, 6344.7);
766
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021397, '1150', 'control', '2014-12-03T12:48:00', '2014-12-03T12:48:00', '', 6765, 2906.5);
767
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022871, '1152', 'treatment', '2014-11-17T22:28:00', '2014-11-17T22:28:00', '', 4790, 2508);
768
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022911, '1153', 'treatment', '2014-11-17T14:45:00', '2014-11-17T14:45:00', '', 2490, 929);
769
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022524, '1155', 'treatment', '2014-11-22T23:46:00', '2014-11-22T23:46:00', '', 9970, 5660);
770
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021502, '1156', 'control', '2014-12-02T16:51:00', '2014-12-02T16:51:00', '', 4185, 1745.5);
771
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022129, '1157', 'treatment', '2014-11-26T20:42:00', '2014-11-26T20:42:00', '', 5790, 1826);
772
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022711, '1158', 'treatment', '2014-11-19T20:29:00', '2014-11-19T20:29:00', '', 8880, 4034);
773
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020541, '1160', 'control', '2014-12-08T20:02:00', '2014-12-08T20:02:00', '', 10875, 6207);
774
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022397, '1162', 'treatment', '2014-11-24T12:37:00', '2014-11-24T12:37:00', '', 10995, 4979.5);
775
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020174, '1165', 'control', '2014-12-10T20:03:00', '2014-12-10T20:03:00', '', 1890, 410);
776
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021035, '1166', 'control', '2014-12-05T13:43:00', '2014-12-05T13:43:00', '', 18665, 12669.5);
777
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020393, '1167', 'treatment', '2014-12-09T15:59:00', '2014-12-09T15:59:00', '', 6785, 2203);
778
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022338, '1168', 'treatment', '2014-11-24T20:31:00', '2014-11-24T20:31:00', '', 4290, 2014);
779
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020973, '1169', 'control', '2014-12-05T20:12:00', '2014-12-05T20:12:00', '', 4085, 1720.5);
780
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020486, '1172', 'control', '2014-12-09T09:41:00', '2014-12-09T09:41:00', '', 2590, 564);
781
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020782, '1173', 'treatment', '2014-12-07T14:03:00', '2014-12-07T14:03:00', '', 2790, 1124);
782
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022002, '1175', 'treatment', '2014-11-28T13:01:00', '2014-11-28T13:01:00', '', 3690, 997);
783
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022707, '1179', 'treatment', '2014-11-19T21:06:00', '2014-11-19T21:06:00', '', 9370, 5166);
784
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022772, '1182', 'control', '2014-11-19T12:54:00', '2014-11-19T12:54:00', '', 17260, 9829);
785
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021596, '1185', 'control', '2014-12-02T05:46:00', '2014-12-02T05:46:00', '', 22670, 10939);
786
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020404, '1186', 'treatment', '2014-12-09T14:38:00', '2014-12-09T14:38:00', '', 10985, 3935);
787
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020134, '1188', 'control', '2014-12-10T22:08:00', '2014-12-10T22:08:00', '', 3685, 2160.5);
788
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022304, '1191', 'treatment', '2014-11-25T09:32:00', '2014-11-25T09:32:00', '', 2290, 874);
789
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020218, '1193', 'treatment', '2014-12-10T15:51:00', '2014-12-10T15:51:00', '', 4790, 2966);
790
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022422, '1195', 'treatment', '2014-11-24T08:38:00', '2014-11-24T08:38:00', '', 2585, 1453.5);
791
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020431, '1197', 'treatment', '2014-12-09T13:01:00', '2014-12-09T13:01:00', '', 5580, 1710);
792
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021755, '1198', 'control', '2014-12-01T06:55:00', '2014-12-01T06:55:00', '', 15965, 7540.5);
793
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023128, '1201', 'treatment', '2014-11-13T14:13:00', '2014-11-13T14:13:00', '', 2190, 1124);
794
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020236, '1202', 'treatment', '2014-12-10T14:00:00', '2014-12-10T14:00:00', '', 3585, 1409.5);
795
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021717, '1209', 'control', '2014-12-01T11:47:00', '2014-12-01T11:47:00', '', 8280, 2955);
796
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021701, '1211', 'control', '2014-12-01T13:18:00', '2014-12-01T13:18:00', '', 8480, 4753);
797
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021503, '1214', 'treatment', '2014-12-02T16:50:00', '2014-12-02T16:50:00', '', 9680, 5277);
798
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022438, '1216', 'treatment', '2014-11-23T22:41:00', '2014-11-23T22:41:00', '', 8080, 4369);
799
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020148, '1217', 'treatment', '2014-12-10T20:58:00', '2014-12-10T20:58:00', '', 8585, 3799.5);
800
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021536, '1218', 'control', '2014-12-02T13:50:00', '2014-12-02T13:50:00', '', 5285, 2698);
801
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021059, '1220', 'control', '2014-12-05T11:45:00', '2014-12-05T11:45:00', '', 5785, 3695.5);
802
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023140, '1225', 'treatment', '2014-11-13T10:56:00', '2014-11-13T10:56:00', '', 10175, 3540);
803
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021081, '1227', 'control', '2014-12-05T09:23:00', '2014-12-05T09:23:00', '', 4790, 3003);
804
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022194, '1229', 'treatment', '2014-11-26T07:56:00', '2014-11-26T07:56:00', '', 11980, 6874);
805
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020537, '1231', 'treatment', '2014-12-08T20:07:00', '2014-12-08T20:07:00', '', 40120, 23580);
806
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021512, '1233', 'treatment', '2014-12-02T16:13:00', '2014-12-02T16:13:00', '', 14480, 6843);
807
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021022, '1234', 'treatment', '2014-12-05T15:05:00', '2014-12-05T15:05:00', '', 4490, 1346);
808
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022657, '1236', 'treatment', '2014-11-20T15:56:00', '2014-11-20T15:56:00', '', 23460, 8786);
809
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022793, '1238', 'treatment', '2014-11-19T10:28:00', '2014-11-19T10:28:00', '', 9990, 6641);
810
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021727, '1239', 'control', '2014-12-01T10:29:00', '2014-12-01T10:29:00', '', 6590, 4178);
811
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022382, '1244', 'control', '2014-11-24T15:30:00', '2014-11-24T15:30:00', '', 4585, 2253);
812
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020390, '1245', 'control', '2014-12-09T16:27:00', '2014-12-09T16:27:00', '', 4790, 1583);
813
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020259, '1246', 'treatment', '2014-12-10T11:07:00', '2014-12-10T11:07:00', '', 14080, 9341);
814
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021370, '1248', 'treatment', '2014-12-03T14:54:00', '2014-12-03T14:54:00', '', 9085, 4187.5);
815
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020409, '1155', 'treatment', '2014-12-09T14:15:00', '2014-12-09T14:15:00', 5022524, 10160, 5574);
816
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022003, '1195', 'control', '2014-11-28T12:42:00', '2014-11-28T12:42:00', 5022422, 1690, 489);
817
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018337, '1198', '', '2014-12-19T14:28:00', '2014-12-19T14:28:00', 5021755, 3290, 1927);
818
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021113, '1216', 'treatment', '2014-12-04T21:43:00', '2014-12-04T21:43:00', 5022438, 13785, 5045);
819
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018452, '1231', '', '2014-12-18T19:32:00', '2014-12-18T19:32:00', 5020537, 5885, 3573.5);
820
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020757, '1236', 'treatment', '2014-12-07T16:11:00', '2014-12-07T16:11:00', 5022657, 30345, 14614.5);
821
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018942, '1246', '', '2014-12-16T14:39:00', '2014-12-16T14:39:00', 5020259, 11875, 7852.5);
822
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022870, '1250', 'treatment', '2014-11-18T06:36:00', '2014-11-18T06:36:00', '', 13980, 9285);
823
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020673, '1252', 'treatment', '2014-12-08T07:05:00', '2014-12-08T07:05:00', '', 3790, 1489);
824
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022284, '1253', 'treatment', '2014-11-25T12:07:00', '2014-11-25T12:07:00', '', 11180, 4002);
825
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020278, '1254', 'control', '2014-12-10T09:55:00', '2014-12-10T09:55:00', '', 4790, 2031);
826
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021267, '1255', 'control', '2014-12-04T07:34:00', '2014-12-04T07:34:00', '', 9995, 4521.5);
827
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022930, '1256', 'treatment', '2014-11-17T11:22:00', '2014-11-17T11:22:00', '', 3285, 1158.5);
828
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021971, '1257', 'control', '2014-11-28T18:51:00', '2014-11-28T18:51:00', '', 9995, 5672);
829
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022206, '1262', 'treatment', '2014-11-25T21:32:00', '2014-11-25T21:32:00', '', 12375, 4367);
830
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020442, '1263', 'control', '2014-12-09T12:28:00', '2014-12-09T12:28:00', '', 9665, 5356);
831
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020198, '1264', 'control', '2014-12-10T18:47:00', '2014-12-10T18:47:00', '', 6485, 2707.5);
832
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021180, '1266', 'control', '2014-12-04T16:44:00', '2014-12-04T16:44:00', '', 12575, 8259.5);
833
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022885, '1268', 'treatment', '2014-11-17T19:52:00', '2014-11-17T19:52:00', '', 2785, 854.5);
834
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021627, '1269', 'treatment', '2014-12-01T20:24:00', '2014-12-01T20:24:00', '', 2790, 868);
835
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022089, '1270', 'treatment', '2014-11-27T13:52:00', '2014-11-27T13:52:00', '', 18275, 6942);
836
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020508, '1274', 'control', '2014-12-09T06:11:00', '2014-12-09T06:11:00', '', 5585, 2373.5);
837
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021409, '1275', 'control', '2014-12-03T11:51:00', '2014-12-03T11:51:00', '', 15975, 9085);
838
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022698, '1278', 'treatment', '2014-11-19T22:38:00', '2014-11-19T22:38:00', '', 12580, 5973);
839
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021319, '1279', 'control', '2014-12-03T19:44:00', '2014-12-03T19:44:00', '', 4780, 2373);
840
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021889, '1281', 'control', '2014-11-29T21:02:00', '2014-11-29T21:02:00', '', 9980, 3443);
841
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020783, '1282', 'control', '2014-12-07T14:03:00', '2014-12-07T14:03:00', '', 4780, 1996);
842
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021186, '1284', 'control', '2014-12-04T15:59:00', '2014-12-04T15:59:00', '', 9480, 5245);
843
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021898, '1285', 'control', '2014-11-29T18:48:00', '2014-11-29T18:48:00', '', 17280, 11614);
844
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020705, '1286', 'control', '2014-12-07T19:54:00', '2014-12-07T19:54:00', '', 17370, 6572);
845
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020524, '1288', 'treatment', '2014-12-08T21:56:00', '2014-12-08T21:56:00', '', 9285, 5079);
846
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023090, '1289', 'control', '2014-11-13T22:10:00', '2014-11-13T22:10:00', '', 7780, 3412);
847
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021165, '1290', 'treatment', '2014-12-04T18:21:00', '2014-12-04T18:21:00', '', 9480, 4333);
848
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021094, '1291', 'control', '2014-12-05T07:40:00', '2014-12-05T07:40:00', '', 22490, 10662);
849
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022627, '1295', 'treatment', '2014-11-20T21:32:00', '2014-11-20T21:32:00', '', 4790, 1469);
850
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021256, '1297', 'control', '2014-12-04T09:20:00', '2014-12-04T09:20:00', '', 6280, 3421);
851
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021024, '1298', 'treatment', '2014-12-05T15:00:00', '2014-12-05T15:00:00', '', 4790, 2356);
852
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022017, '1301', 'treatment', '2014-11-28T10:56:00', '2014-11-28T10:56:00', '', 6790, 3671);
853
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023133, '1302', 'treatment', '2014-11-13T12:18:00', '2014-11-13T12:18:00', '', 12475, 7134);
854
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020910, '1306', 'control', '2014-12-06T14:38:00', '2014-12-06T14:38:00', '', 4790, 2079);
855
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020373, '1308', 'control', '2014-12-09T18:11:00', '2014-12-09T18:11:00', '', 3785, 1958);
856
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022272, '1309', 'treatment', '2014-11-25T13:43:00', '2014-11-25T13:43:00', '', 4090, 1700);
857
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022717, '1311', 'treatment', '2014-11-19T19:47:00', '2014-11-19T19:47:00', '', 9485, 3352);
858
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022222, '1314', 'treatment', '2014-11-25T20:29:00', '2014-11-25T20:29:00', '', 3490, 1994);
859
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022904, '1316', 'treatment', '2014-11-17T16:19:00', '2014-11-17T16:19:00', '', 4775, 1459);
860
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021131, '1317', 'treatment', '2014-12-04T20:23:00', '2014-12-04T20:23:00', '', 3790, 2123);
861
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020397, '1318', 'control', '2014-12-09T15:40:00', '2014-12-09T15:40:00', '', 6180, 3406);
862
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020743, '1319', 'treatment', '2014-12-07T17:16:00', '2014-12-07T17:16:00', '', 9480, 5127);
863
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022135, '1320', 'treatment', '2014-11-26T20:25:00', '2014-11-26T20:25:00', '', 6790, 4297);
864
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021424, '1322', 'treatment', '2014-12-03T09:56:00', '2014-12-03T09:56:00', '', 7580, 4772);
865
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021859, '1330', 'control', '2014-11-30T11:14:00', '2014-11-30T11:14:00', '', 8780, 4767);
866
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021140, '1331', 'control', '2014-12-04T19:47:00', '2014-12-04T19:47:00', '', 6980, 2295);
867
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021127, '1334', 'control', '2014-12-04T20:31:00', '2014-12-04T20:31:00', '', 8365, 2752);
868
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021918, '1335', 'control', '2014-11-29T13:44:00', '2014-11-29T13:44:00', '', 3290, 860);
869
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022145, '1336', 'treatment', '2014-11-26T19:22:00', '2014-11-26T19:22:00', '', 10775, 6990.5);
870
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020479, '1337', 'treatment', '2014-12-07T14:23:00', '2014-12-07T14:23:00', '', 6485, 4214.5);
871
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020412, '1339', 'treatment', '2014-12-09T14:07:00', '2014-12-09T14:07:00', '', 7085, 3024.5);
872
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022861, '1340', 'treatment', '2014-11-18T12:04:00', '2014-11-18T12:04:00', '', 11780, 4169);
873
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020754, '1343', 'treatment', '2014-12-07T16:20:00', '2014-12-07T16:20:00', '', 4790, 2007);
874
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023137, '1344', 'treatment', '2014-11-13T12:08:00', '2014-11-13T12:08:00', '', 1890, 597);
875
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021279, '1349', 'treatment', '2014-12-03T22:05:00', '2014-12-03T22:05:00', '', 4790, 1820);
876
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021095, '1350', 'control', '2014-12-05T07:37:00', '2014-12-05T07:37:00', '', 28275, 16381);
877
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021558, '1351', 'treatment', '2014-12-02T12:04:00', '2014-12-02T12:04:00', '', 9380, 4171);
878
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020908, '1354', 'control', '2014-12-06T14:51:00', '2014-12-06T14:51:00', '', 12995, 7361);
879
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020306, '1355', 'control', '2014-12-09T22:21:00', '2014-12-09T22:21:00', '', 2590, 547);
880
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021228, '1357', 'treatment', '2014-12-04T11:38:00', '2014-12-04T11:38:00', '', 6980, 3019);
881
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022572, '1358', 'treatment', '2014-11-21T21:39:00', '2014-11-21T21:39:00', '', 15780, 9051);
882
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020456, '1359', 'treatment', '2014-12-09T11:55:00', '2014-12-09T11:55:00', '', 6790, 2295);
883
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021506, '1360', 'control', '2014-12-02T16:26:00', '2014-12-02T16:26:00', '', 5785, 3053);
884
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021450, '1362', 'treatment', '2014-12-02T21:07:00', '2014-12-02T21:07:00', '', 5385, 2658);
885
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021809, '1363', 'control', '2014-11-30T17:51:00', '2014-11-30T17:51:00', '', 7085, 3190.5);
886
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022460, '1365', 'control', '2014-11-23T19:47:00', '2014-11-23T19:47:00', '', 1790, 291);
887
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021064, '1367', 'treatment', '2014-12-05T11:18:00', '2014-12-05T11:18:00', '', 7790, 3576);
888
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021697, '1369', 'control', '2014-12-01T13:51:00', '2014-12-01T13:51:00', '', 4090, 1474);
889
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020819, '1373', 'treatment', '2014-12-07T10:44:00', '2014-12-07T10:44:00', '', 4785, 2778.5);
890
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021357, '1374', 'control', '2014-12-03T15:53:00', '2014-12-03T15:53:00', '', 7290, 4610);
891
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022000, '1376', 'control', '2014-11-28T13:21:00', '2014-11-28T13:21:00', '', 5585, 1893);
892
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022302, '1377', 'control', '2014-11-25T09:40:00', '2014-11-25T09:40:00', '', 4090, 2408);
893
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022359, '1381', 'control', '2014-11-24T17:45:00', '2014-11-24T17:45:00', '', 2490, 1393);
894
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022932, '1383', 'control', '2014-11-17T10:50:00', '2014-11-17T10:50:00', '', 9985, 6601.5);
895
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021051, '1386', 'treatment', '2014-12-05T12:44:00', '2014-12-05T12:44:00', '', 6590, 4159);
896
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020520, '1387', 'control', '2014-12-08T22:14:00', '2014-12-08T22:14:00', '', 13275, 4932);
897
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020352, '1388', 'control', '2014-12-09T19:34:00', '2014-12-09T19:34:00', '', 8885, 5653.5);
898
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021534, '1389', 'treatment', '2014-12-02T13:58:00', '2014-12-02T13:58:00', '', 9080, 4203);
899
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022955, '1393', 'treatment', '2014-11-16T22:10:00', '2014-11-16T22:10:00', '', 19375, 9088.5);
900
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020407, '1394', 'control', '2014-12-09T14:19:00', '2014-12-09T14:19:00', '', 10985, 3935);
901
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020392, '1395', 'control', '2014-12-09T16:06:00', '2014-12-09T16:06:00', '', 18490, 12625);
902
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020164, '1402', 'control', '2014-12-10T20:21:00', '2014-12-10T20:21:00', '', 3490, 1713);
903
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021336, '1403', 'control', '2014-12-03T17:34:00', '2014-12-03T17:34:00', '', 12780, 5820);
904
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021784, '1405', 'control', '2014-11-30T20:23:00', '2014-11-30T20:23:00', '', 3585, 1480.5);
905
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022733, '1406', 'treatment', '2014-11-19T17:23:00', '2014-11-19T17:23:00', '', 5290, 1586);
906
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021922, '1407', 'treatment', '2014-11-29T12:29:00', '2014-11-29T12:29:00', '', 12995, 4847);
907
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020120, '1408', 'control', '2014-12-10T23:10:00', '2014-12-10T23:10:00', '', 13350, 9045);
908
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021806, '1409', 'control', '2014-11-30T18:28:00', '2014-11-30T18:28:00', '', 9080, 4881);
909
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021681, '1411', 'control', '2014-12-01T15:57:00', '2014-12-01T15:57:00', '', 17995, 8617.5);
910
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021182, '1412', 'treatment', '2014-12-04T16:39:00', '2014-12-04T16:39:00', '', 4385, 2660.5);
911
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020223, '1414', 'treatment', '2014-12-10T15:18:00', '2014-12-10T15:18:00', '', 3685, 1773);
912
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021066, '1415', 'control', '2014-12-05T10:55:00', '2014-12-05T10:55:00', '', 2785, 559);
913
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021457, '1416', 'control', '2014-12-02T20:47:00', '2014-12-02T20:47:00', '', 9680, 4412);
914
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021876, '1417', 'control', '2014-11-30T06:38:00', '2014-11-30T06:38:00', '', 4290, 1799);
915
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021648, '1419', 'control', '2014-12-01T18:55:00', '2014-12-01T18:55:00', '', 9285, 4322.5);
916
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021763, '1420', 'control', '2014-12-01T05:25:00', '2014-12-01T05:25:00', '', 5790, 3742);
917
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020320, '1422', 'control', '2014-12-09T21:23:00', '2014-12-09T21:23:00', '', 7570, 2578);
918
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020529, '1423', 'treatment', '2014-12-08T21:39:00', '2014-12-08T21:39:00', '', 20490, 7895);
919
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020147, '1425', 'treatment', '2014-12-10T21:05:00', '2014-12-10T21:05:00', '', 3885, 1126);
920
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021751, '1426', 'control', '2014-12-01T07:43:00', '2014-12-01T07:43:00', '', 4785, 1962.5);
921
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021236, '1430', 'control', '2014-12-04T10:57:00', '2014-12-04T10:57:00', '', 20265, 13712.5);
922
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020721, '1431', 'treatment', '2014-12-07T19:00:00', '2014-12-07T19:00:00', '', 9065, 4171.5);
923
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020421, '1435', 'control', '2014-12-09T13:25:00', '2014-12-09T13:25:00', '', 13390, 6346);
924
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022201, '1436', 'treatment', '2014-11-25T23:01:00', '2014-11-25T23:01:00', '', 15490, 8764);
925
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022124, '1439', 'control', '2014-11-26T21:27:00', '2014-11-26T21:27:00', '', 5790, 1735);
926
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021260, '1440', 'treatment', '2014-12-04T08:53:00', '2014-12-04T08:53:00', '', 6585, 2332);
927
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021611, '1441', 'control', '2014-12-01T21:58:00', '2014-12-01T21:58:00', '', 4790, 1373);
928
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022334, '1443', 'treatment', '2014-11-24T20:53:00', '2014-11-24T20:53:00', '', 6790, 4411);
929
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021921, '1445', 'control', '2014-11-29T12:54:00', '2014-11-29T12:54:00', '', 13980, 6646);
930
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022500, '1446', 'treatment', '2014-11-23T14:12:00', '2014-11-23T14:12:00', '', 3590, 1199);
931
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021625, '1447', 'treatment', '2014-12-01T20:31:00', '2014-12-01T20:31:00', '', 5285, 1755);
932
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022192, '1448', 'treatment', '2014-11-26T08:07:00', '2014-11-26T08:07:00', '', 6080, 3874);
933
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021850, '1449', 'treatment', '2014-11-30T12:41:00', '2014-11-30T12:41:00', '', 10990, 3808);
934
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021951, '1450', 'control', '2014-11-28T22:52:00', '2014-11-28T22:52:00', '', 5463, 1859.2);
935
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021202, '1452', 'control', '2014-12-04T13:58:00', '2014-12-04T13:58:00', '', 12380, 8304);
936
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023054, '1454', 'control', '2014-11-14T19:19:00', '2014-11-14T19:19:00', '', 5790, 3496);
937
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021089, '1455', 'control', '2014-12-05T08:34:00', '2014-12-05T08:34:00', '', 5290, 3394);
938
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022832, '1456', 'treatment', '2014-11-18T19:08:00', '2014-11-18T19:08:00', '', 11385, 6401);
939
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020333, '1458', 'control', '2014-12-09T20:24:00', '2014-12-09T20:24:00', '', 8780, 2932);
940
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021584, '1460', 'treatment', '2014-12-02T08:04:00', '2014-12-02T08:04:00', '', 13260, 6187);
941
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021902, '1461', 'control', '2014-11-29T16:55:00', '2014-11-29T16:55:00', '', 7085, 3231.5);
942
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022910, '1462', 'treatment', '2014-11-17T15:26:00', '2014-11-17T15:26:00', '', 8785, 5767.5);
943
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022670, '1463', 'treatment', '2014-11-20T13:26:00', '2014-11-20T13:26:00', '', 9680, 6427);
944
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022947, '1464', 'treatment', '2014-11-17T07:42:00', '2014-11-17T07:42:00', '', 7285, 3328.5);
945
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020911, '1468', 'treatment', '2014-12-06T14:36:00', '2014-12-06T14:36:00', '', 9370, 5200);
946
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023076, '1469', 'treatment', '2014-11-14T09:30:00', '2014-11-14T09:30:00', '', 3790, 1101);
947
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020875, '1470', 'control', '2014-12-06T19:35:00', '2014-12-06T19:35:00', '', 8680, 5548);
948
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019265, '1436', '', '2014-12-15T11:15:00', '2014-12-15T11:15:00', 5022201, 13390, 7660);
949
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020445, '1452', 'treatment', '2014-12-09T12:22:00', '2014-12-09T12:22:00', 5021202, 5175, 2637);
950
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020493, '1469', 'control', '2014-12-09T09:01:00', '2014-12-09T09:01:00', 5023076, 4836, 2444.6);
951
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020539, '1472', 'treatment', '2014-12-08T20:04:00', '2014-12-08T20:04:00', '', 4290, 1142);
952
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020201, '1474', 'control', '2014-12-10T18:06:00', '2014-12-10T18:06:00', '', 4385, 2617.5);
953
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022010, '1476', 'control', '2014-11-28T12:22:00', '2014-11-28T12:22:00', '', 9775, 6330.5);
954
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021313, '1477', 'treatment', '2014-12-03T19:58:00', '2014-12-03T19:58:00', '', 10870, 5074);
955
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020644, '1478', 'control', '2014-12-08T09:50:00', '2014-12-08T09:50:00', '', 2990, 1253);
956
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021330, '1479', 'control', '2014-12-03T18:12:00', '2014-12-03T18:12:00', '', 4380, 1408);
957
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022375, '1480', 'treatment', '2014-11-24T16:33:00', '2014-11-24T16:33:00', '', 24980, 14489);
958
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021240, '1481', 'control', '2014-12-04T10:39:00', '2014-12-04T10:39:00', '', 14470, 6872);
959
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022674, '1482', 'treatment', '2014-11-20T12:32:00', '2014-11-20T12:32:00', '', 11865, 7726.5);
960
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020451, '1485', 'control', '2014-12-09T12:15:00', '2014-12-09T12:15:00', '', 4090, 1323);
961
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022577, '1486', 'control', '2014-11-21T19:15:00', '2014-11-21T19:15:00', '', 4385, 2514.5);
962
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020417, '1488', 'treatment', '2014-12-09T13:40:00', '2014-12-09T13:40:00', '', 53820, 26469);
963
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021905, '1489', 'treatment', '2014-11-29T16:37:00', '2014-11-29T16:37:00', '', 4790, 1613);
964
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021937, '1490', 'control', '2014-11-29T10:11:00', '2014-11-29T10:11:00', '', 3290, 1260);
965
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021740, '1491', 'control', '2014-12-01T09:00:00', '2014-12-01T09:00:00', '', 4790, 3051);
966
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022240, '1492', 'control', '2014-11-25T17:55:00', '2014-11-25T17:55:00', '', 26945, 18379.5);
967
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020221, '1494', 'control', '2014-12-10T15:38:00', '2014-12-10T15:38:00', '', 6590, 3534);
968
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020714, '1495', 'treatment', '2014-12-07T19:24:00', '2014-12-07T19:24:00', '', 8485, 3836.5);
969
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020687, '1496', 'treatment', '2014-12-07T21:56:00', '2014-12-07T21:56:00', '', 3290, 1186);
970
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022111, '1498', 'control', '2014-11-27T09:36:00', '2014-11-27T09:36:00', '', 11985, 8018.5);
971
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022082, '1499', 'control', '2014-11-27T14:36:00', '2014-11-27T14:36:00', '', 30995, 15091.5);
972
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021813, '1500', 'control', '2014-11-30T17:21:00', '2014-11-30T17:21:00', '', 5085, 3114.5);
973
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022012, '1502', 'treatment', '2014-11-28T12:05:00', '2014-11-28T12:05:00', '', 5880, 2601);
974
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020715, '1503', 'treatment', '2014-12-07T19:34:00', '2014-12-07T19:34:00', '', 7775, 3480.5);
975
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020867, '1504', 'treatment', '2014-12-06T20:26:00', '2014-12-06T20:26:00', '', 12980, 7410);
976
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020942, '1505', 'control', '2014-12-06T09:17:00', '2014-12-06T09:17:00', '', 5290, 3236);
977
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022945, '1508', 'treatment', '2014-11-17T07:56:00', '2014-11-17T07:56:00', '', 3785, 1058);
978
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020932, '1509', 'control', '2014-12-06T11:20:00', '2014-12-06T11:20:00', '', 3790, 2248);
979
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021460, '1511', 'control', '2014-12-02T20:40:00', '2014-12-02T20:40:00', '', 8070, 2729);
980
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020895, '1512', 'control', '2014-12-06T16:25:00', '2014-12-06T16:25:00', '', 12175, 5720.5);
981
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020809, '1513', 'control', '2014-12-07T12:11:00', '2014-12-07T12:11:00', '', 4285, 1563.5);
982
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021375, '1516', 'treatment', '2014-12-03T14:15:00', '2014-12-03T14:15:00', '', 10985, 3980);
983
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021031, '1521', 'control', '2014-12-05T14:29:00', '2014-12-05T14:29:00', '', 10980, 3847);
984
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022059, '1522', 'treatment', '2014-11-27T19:27:00', '2014-11-27T19:27:00', '', 4760, 2781);
985
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021436, '1523', 'treatment', '2014-12-02T23:23:00', '2014-12-02T23:23:00', '', 10570, 6851);
986
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023072, '1525', 'treatment', '2014-11-14T11:32:00', '2014-11-14T11:32:00', '', 7085, 3755);
987
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021213, '1526', 'treatment', '2014-12-04T12:53:00', '2014-12-04T12:53:00', '', 9385, 3231);
988
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022535, '1527', 'control', '2014-11-22T17:49:00', '2014-11-22T17:49:00', '', 9570, 6269);
989
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021067, '1528', 'treatment', '2014-12-05T10:43:00', '2014-12-05T10:43:00', '', 4485, 1808.5);
990
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022451, '1529', 'control', '2014-11-23T20:37:00', '2014-11-23T20:37:00', '', 5585, 2305.5);
991
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022877, '1530', 'control', '2014-11-17T20:52:00', '2014-11-17T20:52:00', '', 17865, 12064.5);
992
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022954, '1532', 'control', '2014-11-17T00:08:00', '2014-11-17T00:08:00', '', 11980, 5511);
993
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020158, '1533', 'treatment', '2014-12-10T20:36:00', '2014-12-10T20:36:00', '', 3290, 1809);
994
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021565, '1536', 'control', '2014-12-02T10:59:00', '2014-12-02T10:59:00', '', 4790, 1577);
995
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022786, '1537', 'treatment', '2014-11-19T12:07:00', '2014-11-19T12:07:00', '', 4090, 2010);
996
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020868, '1540', 'treatment', '2014-12-06T19:56:00', '2014-12-06T19:56:00', '', 9685, 6340.5);
997
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022920, '1542', 'treatment', '2014-11-17T13:40:00', '2014-11-17T13:40:00', '', 3790, 1188);
998
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022118, '1543', 'control', '2014-11-27T06:41:00', '2014-11-27T06:41:00', '', 2785, 1144);
999
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022168, '1546', 'control', '2014-11-26T14:50:00', '2014-11-26T14:50:00', '', 4290, 1755);
1000
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020573, '1547', 'control', '2014-12-08T17:27:00', '2014-12-08T17:27:00', '', 4290, 1622);
1001
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021149, '1548', 'control', '2014-12-04T19:38:00', '2014-12-04T19:38:00', '', 15070, 10002);
1002
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020859, '1549', 'control', '2014-12-06T21:13:00', '2014-12-06T21:13:00', '', 9260, 3367);
1003
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021389, '1550', 'control', '2014-12-03T13:14:00', '2014-12-03T13:14:00', '', 5785, 1806);
1004
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020658, '1551', 'control', '2014-12-08T08:43:00', '2014-12-08T08:43:00', '', 4385, 1240);
1005
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020876, '1552', 'treatment', '2014-12-06T19:26:00', '2014-12-06T19:26:00', '', 10880, 3812);
1006
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021904, '1554', 'control', '2014-11-29T16:44:00', '2014-11-29T16:44:00', '', 14470, 5210);
1007
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020960, '1557', 'control', '2014-12-05T21:51:00', '2014-12-05T21:51:00', '', 5790, 1910);
1008
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021297, '1560', 'control', '2014-12-03T20:56:00', '2014-12-03T20:56:00', '', 14832, 5563.8);
1009
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020842, '1561', 'treatment', '2014-12-07T08:34:00', '2014-12-07T08:34:00', '', 16460, 7892);
1010
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021002, '1563', 'control', '2014-12-05T16:55:00', '2014-12-05T16:55:00', '', 4685, 1979.5);
1011
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021343, '1564', 'treatment', '2014-12-03T16:37:00', '2014-12-03T16:37:00', '', 16690, 11212);
1012
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021198, '1565', 'control', '2014-12-04T14:30:00', '2014-12-04T14:30:00', '', 5480, 3406);
1013
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021101, '1566', 'treatment', '2014-12-05T00:36:00', '2014-12-05T00:36:00', '', 15745, 8911);
1014
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018915, '1561', '', '2014-12-16T16:40:00', '2014-12-16T16:40:00', 5020842, 26265, 12538.5);
1015
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021422, '1569', 'treatment', '2014-12-03T09:51:00', '2014-12-03T09:51:00', '', 5780, 3508);
1016
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020813, '1576', 'treatment', '2014-12-07T11:18:00', '2014-12-07T11:18:00', '', 16785, 8031.5);
1017
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021456, '1577', 'treatment', '2014-12-02T20:48:00', '2014-12-02T20:48:00', '', 5785, 1930);
1018
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022672, '1578', 'control', '2014-11-20T13:17:00', '2014-11-20T13:17:00', '', 4790, 2995);
1019
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021196, '1579', 'control', '2014-12-04T14:31:00', '2014-12-04T14:31:00', '', 3790, 1587);
1020
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022396, '1580', 'treatment', '2014-11-24T12:48:00', '2014-11-24T12:48:00', '', 5085, 2233.5);
1021
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021344, '1581', 'treatment', '2014-12-03T16:37:00', '2014-12-03T16:37:00', '', 7290, 3819);
1022
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021942, '1583', 'treatment', '2014-11-29T09:07:00', '2014-11-29T09:07:00', '', 4790, 1344);
1023
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021734, '1586', 'control', '2014-12-01T09:59:00', '2014-12-01T09:59:00', '', 9180, 4970);
1024
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022975, '1589', 'treatment', '2014-11-16T19:11:00', '2014-11-16T19:11:00', '', 9485, 6230.5);
1025
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020349, '1592', 'treatment', '2014-12-09T19:45:00', '2014-12-09T19:45:00', '', 6785, 2338);
1026
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021618, '1595', 'control', '2014-12-01T21:10:00', '2014-12-01T21:10:00', '', 8180, 4503);
1027
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021684, '1597', 'control', '2014-12-01T15:29:00', '2014-12-01T15:29:00', '', 5285, 1729);
1028
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021875, '1598', 'control', '2014-11-30T08:13:00', '2014-11-30T08:13:00', '', 18340, 8574);
1029
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021736, '1599', 'control', '2014-12-01T09:57:00', '2014-12-01T09:57:00', '', 5875, 3658.5);
1030
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022890, '1603', 'treatment', '2014-11-17T18:56:00', '2014-11-17T18:56:00', '', 5790, 3051);
1031
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021912, '1605', 'treatment', '2014-11-29T15:21:00', '2014-11-29T15:21:00', '', 10775, 6078);
1032
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020242, '1606', 'control', '2014-12-10T13:17:00', '2014-12-10T13:17:00', '', 11285, 7469.5);
1033
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022681, '1607', 'treatment', '2014-11-20T10:53:00', '2014-11-20T10:53:00', '', 5280, 2261);
1034
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020670, '1608', 'treatment', '2014-12-08T07:57:00', '2014-12-08T07:57:00', '', 4285, 1360);
1035
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022080, '1609', 'treatment', '2014-11-27T14:51:00', '2014-11-27T14:51:00', '', 3290, 1463);
1036
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020600, '1610', 'treatment', '2014-12-08T14:01:00', '2014-12-08T14:01:00', '', 8085, 4311);
1037
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022896, '1611', 'control', '2014-11-17T17:33:00', '2014-11-17T17:33:00', '', 4985, 2105.5);
1038
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020329, '1613', 'control', '2014-12-09T20:50:00', '2014-12-09T20:50:00', '', 8480, 2793);
1039
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022747, '1614', 'treatment', '2014-11-19T15:07:00', '2014-11-19T15:07:00', '', 6790, 4447);
1040
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020623, '1616', 'control', '2014-12-08T12:05:00', '2014-12-08T12:05:00', '', 55365, 38373.5);
1041
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022715, '1618', 'control', '2014-11-19T20:10:00', '2014-11-19T20:10:00', '', 47950, 33162);
1042
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020372, '1619', 'treatment', '2014-12-09T18:14:00', '2014-12-09T18:14:00', '', 12850, 8531);
1043
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021443, '1620', 'control', '2014-12-02T22:29:00', '2014-12-02T22:29:00', '', 8985, 5698.5);
1044
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021524, '1622', 'control', '2014-12-02T15:13:00', '2014-12-02T15:13:00', '', 13170, 4680);
1045
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021838, '1624', 'treatment', '2014-11-30T14:53:00', '2014-11-30T14:53:00', '', 14990, 6941);
1046
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022479, '1625', 'treatment', '2014-11-23T17:30:00', '2014-11-23T17:30:00', '', 15985, 9087);
1047
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023087, '1628', 'treatment', '2014-11-13T23:06:00', '2014-11-13T23:06:00', '', 6385, 2727.5);
1048
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020584, '1630', 'treatment', '2014-12-08T16:31:00', '2014-12-08T16:31:00', '', 6790, 4289);
1049
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021138, '1631', 'treatment', '2014-12-04T19:58:00', '2014-12-04T19:58:00', '', 7085, 3767);
1050
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022044, '1632', 'control', '2014-11-27T23:02:00', '2014-11-27T23:02:00', '', 15995, 7514.5);
1051
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020776, '1633', 'treatment', '2014-12-07T14:58:00', '2014-12-07T14:58:00', '', 3790, 1686);
1052
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020503, '1635', 'treatment', '2014-12-09T08:03:00', '2014-12-09T08:03:00', '', 17980, 10312);
1053
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021628, '1637', 'control', '2014-12-01T20:21:00', '2014-12-01T20:21:00', '', 5980, 3698);
1054
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021601, '1640', 'control', '2014-12-02T01:07:00', '2014-12-02T01:07:00', '', 2485, 894.5);
1055
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021498, '1642', 'treatment', '2014-12-02T17:06:00', '2014-12-02T17:06:00', '', 5980, 3064);
1056
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020613, '1644', 'treatment', '2014-12-08T12:43:00', '2014-12-08T12:43:00', '', 6785, 2309);
1057
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021656, '1645', 'control', '2014-12-01T18:16:00', '2014-12-01T18:16:00', '', 14585, 8445);
1058
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021204, '1648', 'treatment', '2014-12-04T13:27:00', '2014-12-04T13:27:00', '', 4090, 1261);
1059
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021501, '1649', 'treatment', '2014-12-02T16:52:00', '2014-12-02T16:52:00', '', 7285, 3226.5);
1060
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020625, '1650', 'treatment', '2014-12-08T12:01:00', '2014-12-08T12:01:00', '', 9180, 4174);
1061
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022211, '1651', 'treatment', '2014-11-25T21:11:00', '2014-11-25T21:11:00', '', 16365, 9394);
1062
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021688, '1653', 'treatment', '2014-12-01T15:06:00', '2014-12-01T15:06:00', '', 14280, 8100);
1063
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020327, '1655', 'control', '2014-12-09T20:53:00', '2014-12-09T20:53:00', '', 9785, 4355.5);
1064
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022899, '1657', 'treatment', '2014-11-17T17:11:00', '2014-11-17T17:11:00', '', 6790, 2122);
1065
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021758, '1658', 'control', '2014-12-01T06:21:00', '2014-12-01T06:21:00', '', 7585, 2610);
1066
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021769, '1659', 'control', '2014-11-30T21:59:00', '2014-11-30T21:59:00', '', 9485, 4229.5);
1067
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020319, '1661', 'treatment', '2014-12-09T21:23:00', '2014-12-09T21:23:00', '', 9180, 4178);
1068
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020574, '1665', 'control', '2014-12-08T17:20:00', '2014-12-08T17:20:00', '', 2985, 1458);
1069
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022280, '1667', 'control', '2014-11-25T12:49:00', '2014-11-25T12:49:00', '', 1990, 439);
1070
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022902, '1672', 'control', '2014-11-17T16:35:00', '2014-11-17T16:35:00', '', 6590, 4142);
1071
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020288, '1675', 'treatment', '2014-12-10T08:11:00', '2014-12-10T08:11:00', '', 5290, 1566);
1072
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022186, '1676', 'treatment', '2014-11-26T09:41:00', '2014-11-26T09:41:00', '', 3790, 2345);
1073
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020338, '1677', 'control', '2014-12-09T19:58:00', '2014-12-09T19:58:00', '', 4985, 1557);
1074
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021371, '1678', 'treatment', '2014-12-03T14:52:00', '2014-12-03T14:52:00', '', 4090, 2300);
1075
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022310, '1679', 'treatment', '2014-11-25T08:27:00', '2014-11-25T08:27:00', '', 10985, 5148.5);
1076
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021442, '1680', 'treatment', '2014-12-02T22:30:00', '2014-12-02T22:30:00', '', 4790, 2862);
1077
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018250, '1620', '', '2014-12-20T13:42:00', '2014-12-20T13:42:00', 5021443, 4185, 1078);
1078
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018419, '1628', '', '2014-12-18T22:40:00', '2014-12-18T22:40:00', 5023087, 6385, 3925.5);
1079
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021924, '1682', 'treatment', '2014-11-29T12:28:00', '2014-11-29T12:28:00', '', 3885, 1037);
1080
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022796, '1683', 'control', '2014-11-19T09:48:00', '2014-11-19T09:48:00', '', 10475, 6764.5);
1081
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020649, '1684', 'treatment', '2014-12-08T09:19:00', '2014-12-08T09:19:00', '', 3790, 924);
1082
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020950, '1686', 'control', '2014-12-06T00:38:00', '2014-12-06T00:38:00', '', 3285, 795);
1083
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022731, '1688', 'treatment', '2014-11-19T17:39:00', '2014-11-19T17:39:00', '', 10075, 3507);
1084
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021029, '1692', 'control', '2014-12-05T14:36:00', '2014-12-05T14:36:00', '', 49720, 29498);
1085
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020209, '1693', 'treatment', '2014-12-10T16:58:00', '2014-12-10T16:58:00', '', 4785, 2814.5);
1086
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022844, '1694', 'treatment', '2014-11-18T16:49:00', '2014-11-18T16:49:00', '', 6585, 2167);
1087
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021396, '1697', 'control', '2014-12-03T12:50:00', '2014-12-03T12:50:00', '', 5290, 2228);
1088
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022738, '1699', 'treatment', '2014-11-19T16:19:00', '2014-11-19T16:19:00', '', 6785, 4424.5);
1089
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020560, '1700', 'treatment', '2014-12-08T18:54:00', '2014-12-08T18:54:00', '', 4785, 2022.5);
1090
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021652, '1702', 'control', '2014-12-01T18:35:00', '2014-12-01T18:35:00', '', 3790, 1940);
1091
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020866, '1703', 'control', '2014-12-06T20:40:00', '2014-12-06T20:40:00', '', 3490, 918);
1092
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020286, '1704', 'control', '2014-12-10T08:33:00', '2014-12-10T08:33:00', '', 5290, 2730);
1093
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023082, '1705', 'control', '2014-11-14T00:14:00', '2014-11-14T00:14:00', '', 19670, 9330);
1094
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022741, '1706', 'treatment', '2014-11-19T15:56:00', '2014-11-19T15:56:00', '', 19670, 13455);
1095
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020963, '1708', 'control', '2014-12-05T21:14:00', '2014-12-05T21:14:00', '', 2790, 946);
1096
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021057, '1710', 'control', '2014-12-05T11:48:00', '2014-12-05T11:48:00', '', 6785, 2242);
1097
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021328, '1711', 'treatment', '2014-12-03T18:27:00', '2014-12-03T18:27:00', '', 13932, 9347.4);
1098
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022237, '1713', 'treatment', '2014-11-25T18:22:00', '2014-11-25T18:22:00', '', 6585, 4119.5);
1099
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020975, '1717', 'control', '2014-12-05T19:58:00', '2014-12-05T19:58:00', '', 12385, 5662.5);
1100
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020216, '1719', 'treatment', '2014-12-10T15:57:00', '2014-12-10T15:57:00', '', 5285, 3314.5);
1101
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021696, '1721', 'control', '2014-12-01T14:07:00', '2014-12-01T14:07:00', '', 3285, 1765.5);
1102
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022842, '1722', 'treatment', '2014-11-18T16:57:00', '2014-11-18T16:57:00', '', 4790, 2852);
1103
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020383, '1723', 'treatment', '2014-12-09T17:26:00', '2014-12-09T17:26:00', '', 2090, 467);
1104
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020734, '1728', 'treatment', '2014-12-07T17:59:00', '2014-12-07T17:59:00', '', 6775, 2979.5);
1105
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021000, '1731', 'control', '2014-12-05T17:17:00', '2014-12-05T17:17:00', '', 13290, 6273);
1106
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022200, '1732', 'control', '2014-11-26T00:39:00', '2014-11-26T00:39:00', '', 5375, 2637);
1107
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023108, '1733', 'treatment', '2014-11-13T18:39:00', '2014-11-13T18:39:00', '', 13280, 5002);
1108
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022333, '1736', 'treatment', '2014-11-24T21:00:00', '2014-11-24T21:00:00', '', 3590, 1326);
1109
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020151, '1737', 'control', '2014-12-10T20:52:00', '2014-12-10T20:52:00', '', 10962, 6185.2);
1110
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020422, '1738', 'treatment', '2014-12-09T13:23:00', '2014-12-09T13:23:00', '', 7790, 2566);
1111
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022922, '1739', 'treatment', '2014-11-17T13:09:00', '2014-11-17T13:09:00', '', 9995, 5523);
1112
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021209, '1741', 'treatment', '2014-12-04T13:00:00', '2014-12-04T13:00:00', '', 9475, 4287.5);
1113
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020324, '1742', 'control', '2014-12-09T21:05:00', '2014-12-09T21:05:00', '', 7085, 2413);
1114
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021187, '1743', 'control', '2014-12-04T15:52:00', '2014-12-04T15:52:00', '', 4285, 2602.5);
1115
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022658, '1745', 'treatment', '2014-11-20T16:26:00', '2014-11-20T16:26:00', '', 7290, 3805);
1116
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021793, '1746', 'treatment', '2014-11-30T19:58:00', '2014-11-30T19:58:00', '', 15165, 5745);
1117
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022818, '1747', 'treatment', '2014-11-18T21:26:00', '2014-11-18T21:26:00', '', 3290, 1926);
1118
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021607, '1748', 'treatment', '2014-12-01T22:49:00', '2014-12-01T22:49:00', '', 10685, 7000.5);
1119
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023138, '1749', 'treatment', '2014-11-13T11:59:00', '2014-11-13T11:59:00', '', 4790, 1866);
1120
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021263, '1752', 'control', '2014-12-04T08:14:00', '2014-12-04T08:14:00', '', 5180, 2139);
1121
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021049, '1754', 'control', '2014-12-05T12:48:00', '2014-12-05T12:48:00', '', 14665, 5440);
1122
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021707, '1757', 'control', '2014-12-01T12:42:00', '2014-12-01T12:42:00', '', 4790, 1577);
1123
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020922, '1758', 'control', '2014-12-06T13:01:00', '2014-12-06T13:01:00', '', 11080, 7359);
1124
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022845, '1760', 'treatment', '2014-11-18T16:09:00', '2014-11-18T16:09:00', '', 9480, 5275);
1125
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022250, '1764', 'treatment', '2014-11-25T17:15:00', '2014-11-25T17:15:00', '', 7080, 2997);
1126
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022763, '1765', 'treatment', '2014-11-19T13:42:00', '2014-11-19T13:42:00', '', 10170, 5608);
1127
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020951, '1769', 'treatment', '2014-12-05T23:44:00', '2014-12-05T23:44:00', '', 3790, 1428);
1128
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021643, '1770', 'treatment', '2014-12-01T19:07:00', '2014-12-01T19:07:00', '', 4090, 1100);
1129
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020253, '1772', 'treatment', '2014-12-10T12:14:00', '2014-12-10T12:14:00', '', 10485, 7025.5);
1130
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022851, '1773', 'treatment', '2014-11-18T15:10:00', '2014-11-18T15:10:00', '', 3790, 1464);
1131
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020177, '1776', 'treatment', '2014-12-10T19:54:00', '2014-12-10T19:54:00', '', 3290, 961);
1132
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022262, '1778', 'treatment', '2014-11-25T15:47:00', '2014-11-25T15:47:00', '', 8785, 4712);
1133
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021076, '1779', 'treatment', '2014-12-05T09:53:00', '2014-12-05T09:53:00', '', 4785, 1951.5);
1134
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020424, '1780', 'control', '2014-12-09T13:14:00', '2014-12-09T13:14:00', '', 11285, 6409);
1135
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020883, '1782', 'treatment', '2014-12-06T18:39:00', '2014-12-06T18:39:00', '', 6980, 2319);
1136
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021726, '1783', 'control', '2014-12-01T10:32:00', '2014-12-01T10:32:00', '', 3790, 959);
1137
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021243, '1711', 'control', '2014-12-04T10:10:00', '2014-12-04T10:10:00', 5021328, 7785, 2701);
1138
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020570, '1733', 'control', '2014-12-08T17:46:00', '2014-12-08T17:46:00', 5021579, 5985, 3693.5);
1139
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018345, '1738', '', '2014-12-19T13:50:00', '2014-12-19T13:50:00', 5020422, 6175, 3835.5);
1140
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5017981, '1757', '', '2014-12-25T15:31:00', '2014-12-25T15:31:00', 5021707, 4980, 2031);
1141
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019851, '1778', '', '2014-12-12T08:46:00', '2014-12-12T08:46:00', 5022262, 8880, 5914);
1142
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023085, '1784', 'control', '2014-11-13T23:48:00', '2014-11-13T23:48:00', '', 4790, 2928);
1143
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022677, '1785', 'treatment', '2014-11-20T12:06:00', '2014-11-20T12:06:00', '', 4790, 1371);
1144
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020488, '1787', 'treatment', '2014-12-09T09:26:00', '2014-12-09T09:26:00', '', 3290, 1199);
1145
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022449, '1791', 'treatment', '2014-11-23T20:48:00', '2014-11-23T20:48:00', '', 5790, 1740);
1146
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021360, '1792', 'control', '2014-12-03T15:38:00', '2014-12-03T15:38:00', '', 11485, 7468.5);
1147
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021301, '1793', 'treatment', '2014-12-03T20:45:00', '2014-12-03T20:45:00', '', 2590, 707);
1148
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022146, '1794', 'treatment', '2014-11-26T19:12:00', '2014-11-26T19:12:00', '', 7290, 4615);
1149
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022122, '1796', 'treatment', '2014-11-26T21:39:00', '2014-11-26T21:39:00', '', 4290, 2693);
1150
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021459, '1797', 'control', '2014-12-02T20:45:00', '2014-12-02T20:45:00', '', 4790, 2995);
1151
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020277, '1798', 'control', '2014-12-10T09:56:00', '2014-12-10T09:56:00', '', 9885, 5470);
1152
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021986, '1799', 'control', '2014-11-28T16:14:00', '2014-11-28T16:14:00', '', 3085, 1725.5);
1153
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020746, '1800', 'control', '2014-12-07T17:08:00', '2014-12-07T17:08:00', '', 15995, 7469.5);
1154
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022207, '1804', 'treatment', '2014-11-25T21:34:00', '2014-11-25T21:34:00', '', 12790, 8543);
1155
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020214, '1806', 'control', '2014-12-10T16:21:00', '2014-12-10T16:21:00', '', 3790, 1698);
1156
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022852, '1808', 'treatment', '2014-11-18T14:42:00', '2014-11-18T14:42:00', '', 4290, 2590);
1157
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021234, '1809', 'treatment', '2014-12-04T11:01:00', '2014-12-04T11:01:00', '', 9485, 6237.5);
1158
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022210, '1811', 'treatment', '2014-11-25T21:20:00', '2014-11-25T21:20:00', '', 12275, 4439);
1159
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021647, '1812', 'treatment', '2014-12-01T18:58:00', '2014-12-01T18:58:00', '', 3790, 1685);
1160
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022554, '1813', 'treatment', '2014-11-22T11:43:00', '2014-11-22T11:43:00', '', 7285, 4667.5);
1161
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022238, '1815', 'treatment', '2014-11-25T18:22:00', '2014-11-25T18:22:00', '', 11990, 4352);
1162
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020608, '1816', 'treatment', '2014-12-08T13:12:00', '2014-12-08T13:12:00', '', 4290, 2020);
1163
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020302, '1817', 'control', '2014-12-09T22:27:00', '2014-12-09T22:27:00', '', 10075, 6536.5);
1164
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020229, '1819', 'treatment', '2014-12-10T14:38:00', '2014-12-10T14:38:00', '', 7185, 2536);
1165
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022040, '1821', 'treatment', '2014-11-28T07:51:00', '2014-11-28T07:51:00', '', 3290, 888);
1166
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021646, '1823', 'control', '2014-12-01T18:59:00', '2014-12-01T18:59:00', '', 11485, 5244.5);
1167
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020824, '1825', 'treatment', '2014-12-07T10:31:00', '2014-12-07T10:31:00', '', 5790, 3468);
1168
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020365, '1828', 'control', '2014-12-09T19:05:00', '2014-12-09T19:05:00', '', 5985, 3648.5);
1169
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020915, '1829', 'treatment', '2014-12-06T13:44:00', '2014-12-06T13:44:00', '', 5275, 3390.5);
1170
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022876, '1830', 'treatment', '2014-11-17T21:29:00', '2014-11-17T21:29:00', '', 5790, 2914);
1171
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021288, '1831', 'control', '2014-12-03T21:19:00', '2014-12-03T21:19:00', '', 5680, 2379);
1172
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022507, '1835', 'treatment', '2014-11-23T12:07:00', '2014-11-23T12:07:00', '', 2290, 597);
1173
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022259, '1838', 'treatment', '2014-11-25T16:24:00', '2014-11-25T16:24:00', '', 2485, 940.5);
1174
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023039, '1839', 'treatment', '2014-11-15T13:40:00', '2014-11-15T13:40:00', '', 3785, 1947);
1175
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020370, '1840', 'control', '2014-12-09T18:29:00', '2014-12-09T18:29:00', '', 2290, 540);
1176
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020179, '1841', 'control', '2014-12-10T19:46:00', '2014-12-10T19:46:00', '', 21755, 10318.5);
1177
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023049, '1842', 'treatment', '2014-11-14T20:37:00', '2014-11-14T20:37:00', '', 6680, 2250);
1178
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020744, '1843', 'treatment', '2014-12-07T17:09:00', '2014-12-07T17:09:00', '', 17980, 12041);
1179
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021856, '1844', 'control', '2014-11-30T11:56:00', '2014-11-30T11:56:00', '', 7685, 4810.5);
1180
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020414, '1846', 'treatment', '2014-12-09T13:45:00', '2014-12-09T13:45:00', '', 10370, 4605);
1181
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020282, '1850', 'treatment', '2014-12-10T09:12:00', '2014-12-10T09:12:00', '', 12860, 4740);
1182
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021874, '1852', 'control', '2014-11-30T07:02:00', '2014-11-30T07:02:00', '', 5785, 2963);
1183
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023034, '1855', 'control', '2014-11-15T15:31:00', '2014-11-15T15:31:00', '', 2090, 926);
1184
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021044, '1857', 'control', '2014-12-05T13:09:00', '2014-12-05T13:09:00', '', 10795, 4926.5);
1185
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022243, '1858', 'treatment', '2014-11-25T17:48:00', '2014-11-25T17:48:00', '', 9880, 3477);
1186
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022169, '1859', 'treatment', '2014-11-26T14:46:00', '2014-11-26T14:46:00', '', 3190, 1748);
1187
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021507, '1860', 'control', '2014-12-02T16:20:00', '2014-12-02T16:20:00', '', 19975, 11406);
1188
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020191, '1861', 'treatment', '2014-12-10T19:20:00', '2014-12-10T19:20:00', '', 4790, 1341);
1189
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022886, '1863', 'control', '2014-11-17T19:41:00', '2014-11-17T19:41:00', '', 8370, 3835);
1190
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023095, '1865', 'control', '2014-11-13T20:43:00', '2014-11-13T20:43:00', '', 7285, 4582.5);
1191
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022607, '1866', 'treatment', '2014-11-21T11:38:00', '2014-11-21T11:38:00', '', 1690, 310);
1192
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022573, '1867', 'treatment', '2014-11-21T21:00:00', '2014-11-21T21:00:00', '', 3585, 1068);
1193
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021919, '1868', 'treatment', '2014-11-29T13:41:00', '2014-11-29T13:41:00', '', 7085, 3898);
1194
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022632, '1870', 'treatment', '2014-11-20T21:03:00', '2014-11-20T21:03:00', '', 15270, 5744);
1195
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021077, '1873', 'treatment', '2014-12-05T09:30:00', '2014-12-05T09:30:00', '', 5290, 3159);
1196
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022839, '1874', 'treatment', '2014-11-18T17:38:00', '2014-11-18T17:38:00', '', 11550, 5216);
1197
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021199, '1876', 'control', '2014-12-04T14:21:00', '2014-12-04T14:21:00', '', 5280, 2167);
1198
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020197, '1878', 'control', '2014-12-10T18:51:00', '2014-12-10T18:51:00', '', 19990, 13467);
1199
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020664, '1879', 'treatment', '2014-12-08T08:19:00', '2014-12-08T08:19:00', '', 4090, 2010);
1200
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022033, '1880', 'treatment', '2014-11-28T09:08:00', '2014-11-28T09:08:00', '', 5980, 2090);
1201
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020199, '1829', 'control', '2014-12-10T18:34:00', '2014-12-10T18:34:00', 5020915, 4790, 2512);
1202
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019356, '1861', '', '2014-12-14T21:16:00', '2014-12-14T21:16:00', 5020191, 4790, 1880);
1203
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022513, '1870', 'treatment', '2014-11-23T10:17:00', '2014-11-23T10:17:00', 5022632, 3290, 1938);
1204
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020193, '1870', 'control', '2014-12-10T19:07:00', '2014-12-10T19:07:00', 5022513, 10480, 5828);
1205
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023126, '1881', 'treatment', '2014-11-13T14:37:00', '2014-11-13T14:37:00', '', 2390, 1081);
1206
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021977, '1882', 'treatment', '2014-11-28T18:20:00', '2014-11-28T18:20:00', '', 9485, 5259);
1207
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020661, '1883', 'control', '2014-12-08T08:39:00', '2014-12-08T08:39:00', '', 4790, 2816);
1208
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022383, '1886', 'treatment', '2014-11-24T15:28:00', '2014-11-24T15:28:00', '', 4585, 2438);
1209
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020551, '1889', 'control', '2014-12-08T19:17:00', '2014-12-08T19:17:00', '', 5785, 1841);
1210
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021170, '1890', 'control', '2014-12-04T17:49:00', '2014-12-04T17:49:00', '', 17995, 6645);
1211
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020516, '1892', 'control', '2014-12-08T22:56:00', '2014-12-08T22:56:00', '', 11880, 4289);
1212
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022309, '1893', 'treatment', '2014-11-25T08:28:00', '2014-11-25T08:28:00', '', 7380, 4693);
1213
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021007, '1894', 'control', '2014-12-05T16:29:00', '2014-12-05T16:29:00', '', 10880, 5069);
1214
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020874, '1895', 'control', '2014-12-06T19:38:00', '2014-12-06T19:38:00', '', 4290, 2078);
1215
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022450, '1897', 'treatment', '2014-11-23T20:39:00', '2014-11-23T20:39:00', '', 4790, 2790);
1216
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022339, '1898', 'treatment', '2014-11-24T20:31:00', '2014-11-24T20:31:00', '', 16180, 9298);
1217
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021519, '1899', 'control', '2014-12-02T15:43:00', '2014-12-02T15:43:00', '', 6275, 3415);
1218
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021748, '1900', 'control', '2014-12-01T08:20:00', '2014-12-01T08:20:00', '', 5585, 2261.5);
1219
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021715, '1903', 'control', '2014-12-01T11:57:00', '2014-12-01T11:57:00', '', 13385, 4895);
1220
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020678, '1904', 'treatment', '2014-12-07T22:21:00', '2014-12-07T22:21:00', '', 10870, 5001);
1221
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022079, '1906', 'treatment', '2014-11-27T14:53:00', '2014-11-27T14:53:00', '', 6790, 4275);
1222
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023069, '1908', 'treatment', '2014-11-14T12:34:00', '2014-11-14T12:34:00', '', 12270, 6772);
1223
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022600, '1912', 'control', '2014-11-21T13:46:00', '2014-11-21T13:46:00', '', 11770, 7829);
1224
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020720, '1914', 'treatment', '2014-12-07T19:01:00', '2014-12-07T19:01:00', '', 4785, 2304);
1225
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022043, '1916', 'control', '2014-11-27T22:47:00', '2014-11-27T22:47:00', '', 13936, 9396.2);
1226
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023053, '1917', 'treatment', '2014-11-14T19:30:00', '2014-11-14T19:30:00', '', 4290, 1754);
1227
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022123, '1918', 'treatment', '2014-11-26T21:42:00', '2014-11-26T21:42:00', '', 6275, 2579.5);
1228
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020561, '1920', 'treatment', '2014-12-08T18:42:00', '2014-12-08T18:42:00', '', 17575, 10176);
1229
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020761, '1921', 'control', '2014-12-07T15:52:00', '2014-12-07T15:52:00', '', 4790, 2284);
1230
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021217, '1922', 'control', '2014-12-04T12:31:00', '2014-12-04T12:31:00', '', 9985, 6626.5);
1231
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022355, '1923', 'treatment', '2014-11-24T18:53:00', '2014-11-24T18:53:00', '', 32665, 15884.5);
1232
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022892, '1924', 'treatment', '2014-11-17T18:24:00', '2014-11-17T18:24:00', '', 4480, 1303);
1233
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020774, '1925', 'treatment', '2014-12-07T15:08:00', '2014-12-07T15:08:00', '', 11465, 7709.5);
1234
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022714, '1926', 'treatment', '2014-11-19T20:25:00', '2014-11-19T20:25:00', '', 7085, 4647.5);
1235
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022184, '1928', 'treatment', '2014-11-26T10:28:00', '2014-11-26T10:28:00', '', 10965, 7214.5);
1236
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021257, '1929', 'control', '2014-12-04T09:05:00', '2014-12-04T09:05:00', '', 16365, 6201);
1237
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021192, '1930', 'treatment', '2014-12-04T15:10:00', '2014-12-04T15:10:00', '', 9575, 5284);
1238
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020374, '1931', 'treatment', '2014-12-09T18:09:00', '2014-12-09T18:09:00', '', 3985, 1088);
1239
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020818, '1932', 'treatment', '2014-12-07T10:47:00', '2014-12-07T10:47:00', '', 5590, 2304);
1240
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021249, '1934', 'control', '2014-12-04T09:52:00', '2014-12-04T09:52:00', '', 4790, 2344);
1241
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020854, '1935', 'control', '2014-12-06T22:05:00', '2014-12-06T22:05:00', '', 9580, 5364);
1242
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022119, '1936', 'treatment', '2014-11-27T00:09:00', '2014-11-27T00:09:00', '', 10285, 4753.5);
1243
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022377, '1937', 'treatment', '2014-11-24T15:41:00', '2014-11-24T15:41:00', '', 9280, 5005);
1244
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021595, '1938', 'control', '2014-12-02T06:09:00', '2014-12-02T06:09:00', '', 4290, 1412);
1245
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020291, '1939', 'treatment', '2014-12-10T07:24:00', '2014-12-10T07:24:00', '', 3290, 1974);
1246
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022094, '1942', 'control', '2014-11-27T12:57:00', '2014-11-27T12:57:00', '', 4790, 1901);
1247
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022454, '1944', 'control', '2014-11-23T20:22:00', '2014-11-23T20:22:00', '', 13160, 8908);
1248
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021441, '1946', 'control', '2014-12-02T22:36:00', '2014-12-02T22:36:00', '', 3585, 983);
1249
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021447, '1948', 'treatment', '2014-12-02T21:45:00', '2014-12-02T21:45:00', '', 12970, 4733);
1250
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021475, '1950', 'control', '2014-12-02T19:26:00', '2014-12-02T19:26:00', '', 0, -433);
1251
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021593, '1951', 'control', '2014-12-02T06:16:00', '2014-12-02T06:16:00', '', 5790, 2337);
1252
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020506, '1952', 'control', '2014-12-09T07:06:00', '2014-12-09T07:06:00', '', 3090, 687);
1253
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020202, '1953', 'treatment', '2014-12-10T18:05:00', '2014-12-10T18:05:00', '', 4290, 1267);
1254
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020858, '1954', 'control', '2014-12-06T21:24:00', '2014-12-06T21:24:00', '', 6285, 3175);
1255
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022084, '1955', 'control', '2014-11-27T14:15:00', '2014-11-27T14:15:00', '', 9980, 5571);
1256
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021121, '1957', 'treatment', '2014-12-04T21:06:00', '2014-12-04T21:06:00', '', 10290, 6628);
1257
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021321, '1958', 'treatment', '2014-12-03T18:54:00', '2014-12-03T18:54:00', '', 3790, 2343);
1258
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020213, '1961', 'control', '2014-12-10T16:21:00', '2014-12-10T16:21:00', '', 6980, 3117);
1259
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021097, '1962', 'control', '2014-12-05T05:00:00', '2014-12-05T05:00:00', '', 10380, 3715);
1260
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020977, '1963', 'control', '2014-12-05T19:49:00', '2014-12-05T19:49:00', '', 4090, 1973);
1261
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022634, '1965', 'control', '2014-11-20T20:46:00', '2014-11-20T20:46:00', '', 4985, 2597);
1262
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021471, '1968', 'control', '2014-12-02T19:53:00', '2014-12-02T19:53:00', '', 4790, 2555);
1263
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020204, '1969', 'control', '2014-12-10T17:46:00', '2014-12-10T17:46:00', '', 9980, 3519);
1264
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020595, '1972', 'control', '2014-12-08T14:50:00', '2014-12-08T14:50:00', '', 5285, 2766);
1265
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020314, '1916', 'treatment', '2014-12-09T21:45:00', '2014-12-09T21:45:00', 5022043, 5485, 2802);
1266
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022727, '1917', 'control', '2014-11-19T18:28:00', '2014-11-19T18:28:00', 5023053, 9775, 6266.5);
1267
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019279, '1937', '', '2014-12-15T10:03:00', '2014-12-15T10:03:00', 5022377, 8985, 5844.5);
1268
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019459, '1950', '', '2014-12-14T16:20:00', '2014-12-14T16:20:00', 5021475, 2115, 865);
1269
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019772, '1957', '', '2014-12-12T14:48:00', '2014-12-12T14:48:00', 5021121, 8385, 2952);
1270
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020792, '1974', 'control', '2014-12-07T13:36:00', '2014-12-07T13:36:00', '', 3090, 1521);
1271
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021993, '1977', 'control', '2014-11-28T15:07:00', '2014-11-28T15:07:00', '', 16277, 7613.5);
1272
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020358, '1979', 'treatment', '2014-12-09T19:26:00', '2014-12-09T19:26:00', '', 20255, 7759);
1273
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020968, '1981', 'treatment', '2014-12-05T20:31:00', '2014-12-05T20:31:00', '', 6175, 2555.5);
1274
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020627, '1982', 'treatment', '2014-12-08T11:50:00', '2014-12-08T11:50:00', '', 4290, 2190);
1275
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020970, '1983', 'treatment', '2014-12-05T20:29:00', '2014-12-05T20:29:00', '', 9775, 6455.5);
1276
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021023, '1985', 'control', '2014-12-05T15:00:00', '2014-12-05T15:00:00', '', 3085, 1419);
1277
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021115, '1986', 'control', '2014-12-04T21:37:00', '2014-12-04T21:37:00', '', 4090, 2524);
1278
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020249, '1988', 'treatment', '2014-12-10T12:30:00', '2014-12-10T12:30:00', '', 5290, 2815);
1279
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022136, '1989', 'treatment', '2014-11-26T20:25:00', '2014-11-26T20:25:00', '', 4785, 2973.5);
1280
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022654, '1992', 'treatment', '2014-11-20T17:35:00', '2014-11-20T17:35:00', '', 2785, 821.5);
1281
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020211, '1993', 'treatment', '2014-12-10T16:22:00', '2014-12-10T16:22:00', '', 3790, 1894);
1282
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022322, '1997', 'control', '2014-11-25T05:15:00', '2014-11-25T05:15:00', '', 5485, 3264.5);
1283
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022463, '1998', 'treatment', '2014-11-23T19:06:00', '2014-11-23T19:06:00', '', 2285, 456);
1284
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022365, '2000', 'treatment', '2014-11-24T17:28:00', '2014-11-24T17:28:00', '', 10995, 6269);
1285
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020156, '2002', 'treatment', '2014-12-10T20:39:00', '2014-12-10T20:39:00', '', 3290, 1642);
1286
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022117, '2004', 'treatment', '2014-11-27T07:31:00', '2014-11-27T07:31:00', '', 3290, 1542);
1287
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022054, '2005', 'control', '2014-11-27T20:47:00', '2014-11-27T20:47:00', '', 4285, 2193);
1288
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021669, '2006', 'control', '2014-12-01T16:49:00', '2014-12-01T16:49:00', '', 4090, 1240);
1289
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021308, '2007', 'control', '2014-12-03T20:07:00', '2014-12-03T20:07:00', '', 10285, 6658.5);
1290
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020877, '2008', 'treatment', '2014-12-06T19:26:00', '2014-12-06T19:26:00', '', 4290, 2473);
1291
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022419, '2009', 'treatment', '2014-11-24T09:12:00', '2014-11-24T09:12:00', '', 9170, 3103);
1292
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022224, '2010', 'treatment', '2014-11-25T20:11:00', '2014-11-25T20:11:00', '', 9180, 5024);
1293
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023119, '2011', 'control', '2014-11-13T16:18:00', '2014-11-13T16:18:00', '', 3985, 1999);
1294
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020250, '2012', 'treatment', '2014-12-10T12:28:00', '2014-12-10T12:28:00', '', 21850, 8221);
1295
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022317, '2014', 'treatment', '2014-11-25T07:36:00', '2014-11-25T07:36:00', '', 2285, 675.5);
1296
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020716, '2016', 'treatment', '2014-12-07T19:33:00', '2014-12-07T19:33:00', '', 3490, 2000);
1297
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021803, '2017', 'control', '2014-11-30T18:49:00', '2014-11-30T18:49:00', '', 5675, 3596.5);
1298
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022113, '2018', 'treatment', '2014-11-27T08:39:00', '2014-11-27T08:39:00', '', 10385, 6693.5);
1299
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021891, '2019', 'treatment', '2014-11-29T21:32:00', '2014-11-29T21:32:00', '', 10995, 3848);
1300
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021907, '2021', 'treatment', '2014-11-29T16:32:00', '2014-11-29T16:32:00', '', 9180, 3194);
1301
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021559, '2026', 'control', '2014-12-02T11:51:00', '2014-12-02T11:51:00', '', 3790, 1765);
1302
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020735, '2027', 'control', '2014-12-07T17:58:00', '2014-12-07T17:58:00', '', 12375, 5769.5);
1303
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020884, '2028', 'control', '2014-12-06T18:34:00', '2014-12-06T18:34:00', '', 6085, 2471.5);
1304
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021037, '2029', 'treatment', '2014-12-05T13:32:00', '2014-12-05T13:32:00', '', 6085, 3780.5);
1305
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020533, '2031', 'control', '2014-12-08T21:19:00', '2014-12-08T21:19:00', '', 11180, 7461);
1306
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022543, '2032', 'treatment', '2014-11-22T15:58:00', '2014-11-22T15:58:00', '', 5290, 3141);
1307
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022564, '2033', 'control', '2014-11-22T08:25:00', '2014-11-22T08:25:00', '', 3185, 1357);
1308
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021141, '2034', 'control', '2014-12-04T19:54:00', '2014-12-04T19:54:00', '', 6790, 4237);
1309
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022025, '2035', 'control', '2014-11-28T09:52:00', '2014-11-28T09:52:00', '', 2790, 1493);
1310
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021469, '2037', 'control', '2014-12-02T19:56:00', '2014-12-02T19:56:00', '', 3090, 806);
1311
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023057, '2038', 'treatment', '2014-11-14T18:39:00', '2014-11-14T18:39:00', '', 9480, 6078);
1312
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021535, '2039', 'control', '2014-12-02T14:07:00', '2014-12-02T14:07:00', '', 14180, 8107);
1313
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022281, '2041', 'treatment', '2014-11-25T12:37:00', '2014-11-25T12:37:00', '', 8280, 5233);
1314
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021604, '2042', 'control', '2014-12-01T23:19:00', '2014-12-01T23:19:00', '', 3790, 1460);
1315
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021797, '2044', 'control', '2014-11-30T19:09:00', '2014-11-30T19:09:00', '', 7280, 2481);
1316
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020835, '2046', 'treatment', '2014-12-07T09:35:00', '2014-12-07T09:35:00', '', 7790, 3393);
1317
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020847, '2047', 'treatment', '2014-12-06T23:39:00', '2014-12-06T23:39:00', '', 3690, 1170);
1318
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022285, '2048', 'control', '2014-11-25T11:47:00', '2014-11-25T11:47:00', '', 4790, 2833);
1319
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022665, '2049', 'treatment', '2014-11-20T14:22:00', '2014-11-20T14:22:00', '', 4790, 2334);
1320
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020909, '2052', 'treatment', '2014-12-06T14:43:00', '2014-12-06T14:43:00', '', 11370, 6329);
1321
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022437, '2057', 'treatment', '2014-11-23T22:41:00', '2014-11-23T22:41:00', '', 7085, 4635.5);
1322
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021324, '2059', 'control', '2014-12-03T18:49:00', '2014-12-03T18:49:00', '', 5785, 2911);
1323
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020428, '2060', 'treatment', '2014-12-09T13:06:00', '2014-12-09T13:06:00', '', 10980, 3800);
1324
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020357, '2061', 'control', '2014-12-09T19:29:00', '2014-12-09T19:29:00', '', 7790, 3425);
1325
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022719, '2063', 'treatment', '2014-11-19T19:30:00', '2014-11-19T19:30:00', '', 3290, 1340);
1326
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021988, '2065', 'treatment', '2014-11-28T16:00:00', '2014-11-28T16:00:00', '', 5785, 2534.5);
1327
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022386, '2068', 'control', '2014-11-24T14:36:00', '2014-11-24T14:36:00', '', 2490, 929);
1328
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021587, '2069', 'control', '2014-12-02T07:57:00', '2014-12-02T07:57:00', '', 3585, 2189.5);
1329
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022918, '2070', 'treatment', '2014-11-17T13:58:00', '2014-11-17T13:58:00', '', 3985, 2319.5);
1330
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022769, '2072', 'treatment', '2014-11-19T13:06:00', '2014-11-19T13:06:00', '', 9270, 4151);
1331
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022536, '2073', 'treatment', '2014-11-22T17:27:00', '2014-11-22T17:27:00', '', 6790, 4202);
1332
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022766, '2074', 'treatment', '2014-11-19T13:27:00', '2014-11-19T13:27:00', '', 9480, 4409);
1333
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020833, '2052', 'control', '2014-12-07T09:45:00', '2014-12-07T09:45:00', 5020909, 10285, 5574);
1334
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022378, '2076', 'control', '2014-11-24T16:07:00', '2014-11-24T16:07:00', '', 9365, 3359);
1335
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020556, '2077', 'control', '2014-12-08T19:03:00', '2014-12-08T19:03:00', '', 6790, 4354);
1336
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021655, '2078', 'treatment', '2014-12-01T18:19:00', '2014-12-01T18:19:00', '', 2290, 1077);
1337
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022897, '2079', 'treatment', '2014-11-17T17:31:00', '2014-11-17T17:31:00', '', 4790, 2348);
1338
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022929, '2080', 'treatment', '2014-11-17T11:30:00', '2014-11-17T11:30:00', '', 4090, 1953);
1339
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023113, '2081', 'treatment', '2014-11-13T18:19:00', '2014-11-13T18:19:00', '', 2785, 1429.5);
1340
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022740, '2083', 'treatment', '2014-11-19T15:59:00', '2014-11-19T15:59:00', '', 7385, 2480);
1341
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021708, '2085', 'treatment', '2014-12-01T12:46:00', '2014-12-01T12:46:00', '', 17490, 9939);
1342
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022324, '2086', 'treatment', '2014-11-25T00:22:00', '2014-11-25T00:22:00', '', 9285, 6153.5);
1343
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021735, '2087', 'control', '2014-12-01T09:41:00', '2014-12-01T09:41:00', '', 2790, 1060);
1344
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022526, '2088', 'treatment', '2014-11-22T20:57:00', '2014-11-22T20:57:00', '', 8185, 4353);
1345
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023123, '2090', 'treatment', '2014-11-13T15:54:00', '2014-11-13T15:54:00', '', 4090, 2099);
1346
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021190, '2092', 'control', '2014-12-04T15:33:00', '2014-12-04T15:33:00', '', 11670, 7583);
1347
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021315, '2094', 'control', '2014-12-03T19:49:00', '2014-12-03T19:49:00', '', 4685, 2816.5);
1348
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022400, '2097', 'control', '2014-11-24T12:24:00', '2014-11-24T12:24:00', '', 6790, 2179);
1349
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022969, '2098', 'treatment', '2014-11-16T19:58:00', '2014-11-16T19:58:00', '', 2290, 760);
1350
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022466, '2100', 'control', '2014-11-23T18:49:00', '2014-11-23T18:49:00', '', 9975, 5597);
1351
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021620, '2102', 'control', '2014-12-01T20:59:00', '2014-12-01T20:59:00', '', 4185, 2461.5);
1352
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021833, '2103', 'control', '2014-11-30T15:03:00', '2014-11-30T15:03:00', '', 4090, 1923);
1353
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020730, '2105', 'control', '2014-12-07T18:17:00', '2014-12-07T18:17:00', '', 4790, 2290);
1354
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021490, '2109', 'control', '2014-12-02T18:06:00', '2014-12-02T18:06:00', '', 6285, 2102);
1355
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020245, '2110', 'treatment', '2014-12-10T12:59:00', '2014-12-10T12:59:00', '', 12680, 4556);
1356
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021193, '2116', 'treatment', '2014-12-04T15:05:00', '2014-12-04T15:05:00', '', 9785, 6374.5);
1357
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021205, '2117', 'control', '2014-12-04T13:25:00', '2014-12-04T13:25:00', '', 3290, 1127);
1358
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021553, '2118', 'control', '2014-12-02T12:20:00', '2014-12-02T12:20:00', '', 11980, 8029);
1359
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023121, '2119', 'treatment', '2014-11-13T16:12:00', '2014-11-13T16:12:00', '', 14385, 9598.5);
1360
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021262, '2121', 'treatment', '2014-12-04T08:30:00', '2014-12-04T08:30:00', '', 3290, 1435);
1361
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020921, '2122', 'control', '2014-12-06T13:05:00', '2014-12-06T13:05:00', '', 9770, 6307);
1362
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022078, '2124', 'control', '2014-11-27T15:03:00', '2014-11-27T15:03:00', '', 3785, 1181);
1363
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021616, '2125', 'control', '2014-12-01T21:16:00', '2014-12-01T21:16:00', '', 13275, 4755);
1364
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020188, '2128', 'treatment', '2014-12-10T19:28:00', '2014-12-10T19:28:00', '', 3790, 1803);
1365
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022004, '2131', 'treatment', '2014-11-28T12:50:00', '2014-11-28T12:50:00', '', 8534, 3017.6);
1366
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020795, '2133', 'control', '2014-12-07T13:26:00', '2014-12-07T13:26:00', '', 16470, 7885);
1367
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020872, '2135', 'treatment', '2014-12-06T19:50:00', '2014-12-06T19:50:00', '', 2590, 727);
1368
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020237, '2137', 'control', '2014-12-10T13:53:00', '2014-12-10T13:53:00', '', 7275, 2339);
1369
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021340, '2139', 'control', '2014-12-03T17:03:00', '2014-12-03T17:03:00', '', 17490, 11733);
1370
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022541, '2140', 'control', '2014-11-22T16:23:00', '2014-11-22T16:23:00', '', 4290, 2048);
1371
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022394, '2141', 'treatment', '2014-11-24T13:16:00', '2014-11-24T13:16:00', '', 4790, 2078);
1372
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022925, '2142', 'treatment', '2014-11-17T12:33:00', '2014-11-17T12:33:00', '', 10370, 3625);
1373
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022230, '2146', 'treatment', '2014-11-25T19:26:00', '2014-11-25T19:26:00', '', 12370, 4454);
1374
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020195, '2150', 'treatment', '2014-12-10T18:51:00', '2014-12-10T18:51:00', '', 11980, 6678);
1375
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022149, '2153', 'control', '2014-11-26T17:53:00', '2014-11-26T17:53:00', '', 4785, 1998.5);
1376
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021172, '2154', 'control', '2014-12-04T17:33:00', '2014-12-04T17:33:00', '', 8780, 3884);
1377
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020870, '2156', 'control', '2014-12-06T19:53:00', '2014-12-06T19:53:00', '', 8251, 3769.5);
1378
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020248, '2157', 'control', '2014-12-10T12:42:00', '2014-12-10T12:42:00', '', 14475, 8283);
1379
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021311, '2159', 'control', '2014-12-03T19:58:00', '2014-12-03T19:58:00', '', 14175, 5357);
1380
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021672, '2162', 'treatment', '2014-12-01T16:45:00', '2014-12-01T16:45:00', '', 10885, 4871.5);
1381
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021750, '2164', 'control', '2014-12-01T07:47:00', '2014-12-01T07:47:00', '', 3485, 1969.5);
1382
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021242, '2167', 'control', '2014-12-04T10:12:00', '2014-12-04T10:12:00', '', 3780, 925);
1383
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022943, '2168', 'control', '2014-11-17T08:49:00', '2014-11-17T08:49:00', '', 10970, 7169);
1384
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021419, '2171', 'control', '2014-12-03T10:12:00', '2014-12-03T10:12:00', '', 4290, 2097);
1385
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021252, '2172', 'control', '2014-12-04T09:39:00', '2014-12-04T09:39:00', '', 20990, 14205);
1386
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021650, '2173', 'control', '2014-12-01T18:55:00', '2014-12-01T18:55:00', '', 13275, 8946.5);
1387
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020376, '2174', 'control', '2014-12-09T18:01:00', '2014-12-09T18:01:00', '', 5290, 3225);
1388
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022518, '2175', 'treatment', '2014-11-23T09:44:00', '2014-11-23T09:44:00', '', 3790, 2302);
1389
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020801, '2176', 'control', '2014-12-07T12:38:00', '2014-12-07T12:38:00', '', 4290, 2552);
1390
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021220, '2178', 'treatment', '2014-12-04T12:18:00', '2014-12-04T12:18:00', '', 16995, 11570.5);
1391
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020351, '2179', 'control', '2014-12-09T19:40:00', '2014-12-09T19:40:00', '', 8356, 3668);
1392
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023066, '2119', 'control', '2014-11-14T14:58:00', '2014-11-14T14:58:00', 5023121, 4775, 2775.5);
1393
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020639, '2180', 'treatment', '2014-12-08T10:13:00', '2014-12-08T10:13:00', '', 5585, 3528.5);
1394
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021146, '2181', 'control', '2014-12-04T19:44:00', '2014-12-04T19:44:00', '', 3790, 1527);
1395
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020215, '2182', 'treatment', '2014-12-10T16:08:00', '2014-12-10T16:08:00', '', 4790, 1525);
1396
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021329, '2183', 'treatment', '2014-12-03T18:12:00', '2014-12-03T18:12:00', '', 7280, 2447);
1397
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021842, '2185', 'control', '2014-11-30T13:54:00', '2014-11-30T13:54:00', '', 5785, 3701.5);
1398
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020820, '2187', 'control', '2014-12-07T10:43:00', '2014-12-07T10:43:00', '', 4090, 1067);
1399
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021463, '2188', 'control', '2014-12-02T20:35:00', '2014-12-02T20:35:00', '', 6590, 2097);
1400
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021003, '2191', 'treatment', '2014-12-05T16:51:00', '2014-12-05T16:51:00', '', 12667, 5776.5);
1401
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021543, '2194', 'control', '2014-12-02T13:05:00', '2014-12-02T13:05:00', '', 3790, 2327);
1402
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022096, '2197', 'treatment', '2014-11-27T12:48:00', '2014-11-27T12:48:00', '', 3790, 1917);
1403
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022856, '2198', 'control', '2014-11-18T13:25:00', '2014-11-18T13:25:00', '', 6875, 4368.5);
1404
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023132, '2199', 'treatment', '2014-11-13T12:52:00', '2014-11-13T12:52:00', '', 4285, 1275);
1405
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021721, '2201', 'treatment', '2014-12-01T11:18:00', '2014-12-01T11:18:00', '', 4790, 2781);
1406
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022346, '2202', 'treatment', '2014-11-24T19:35:00', '2014-11-24T19:35:00', '', 6480, 3399);
1407
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022161, '2203', 'control', '2014-11-26T15:41:00', '2014-11-26T15:41:00', '', 6585, 4059.5);
1408
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020500, '2205', 'control', '2014-12-09T08:19:00', '2014-12-09T08:19:00', '', 30995, 12002);
1409
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023131, '2206', 'treatment', '2014-11-13T13:01:00', '2014-11-13T13:01:00', '', 3790, 2118);
1410
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020536, '2209', 'control', '2014-12-08T21:10:00', '2014-12-08T21:10:00', '', 4785, 1361);
1411
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021733, '2210', 'control', '2014-12-01T10:00:00', '2014-12-01T10:00:00', '', 6590, 2958);
1412
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020610, '2213', 'control', '2014-12-08T12:56:00', '2014-12-08T12:56:00', '', 15995, 7528.5);
1413
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022980, '2214', 'treatment', '2014-11-16T18:03:00', '2014-11-16T18:03:00', '', 12080, 8099);
1414
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021983, '2216', 'control', '2014-11-28T16:52:00', '2014-11-28T16:52:00', '', 4590, 1496);
1415
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021932, '2218', 'control', '2014-11-29T10:46:00', '2014-11-29T10:46:00', '', 9990, 3689);
1416
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022007, '2219', 'treatment', '2014-11-28T12:32:00', '2014-11-28T12:32:00', '', 9680, 3567);
1417
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022992, '2220', 'treatment', '2014-11-16T15:43:00', '2014-11-16T15:43:00', '', 4985, 1466);
1418
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021513, '2221', 'control', '2014-12-02T16:04:00', '2014-12-02T16:04:00', '', 4790, 1517);
1419
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021845, '2222', 'control', '2014-11-30T13:37:00', '2014-11-30T13:37:00', '', 7275, 4561.5);
1420
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021693, '2223', 'treatment', '2014-12-01T14:45:00', '2014-12-01T14:45:00', '', 9485, 3335);
1421
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022108, '2224', 'treatment', '2014-11-27T11:24:00', '2014-11-27T11:24:00', '', 15275, 7232.5);
1422
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022983, '2225', 'treatment', '2014-11-16T17:35:00', '2014-11-16T17:35:00', '', 6790, 2912);
1423
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022139, '2227', 'treatment', '2014-11-26T20:09:00', '2014-11-26T20:09:00', '', 6590, 4227);
1424
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021318, '2228', 'control', '2014-12-03T19:33:00', '2014-12-03T19:33:00', '', 2985, 1096.5);
1425
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020408, '2231', 'control', '2014-12-09T14:16:00', '2014-12-09T14:16:00', '', 3685, 1450.5);
1426
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021479, '2233', 'treatment', '2014-12-02T18:47:00', '2014-12-02T18:47:00', '', 8980, 4122);
1427
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020894, '2235', 'control', '2014-12-06T16:49:00', '2014-12-06T16:49:00', '', 5785, 1905);
1428
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021065, '2238', 'treatment', '2014-12-05T11:08:00', '2014-12-05T11:08:00', '', 15680, 7474);
1429
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022276, '2240', 'treatment', '2014-11-25T13:09:00', '2014-11-25T13:09:00', '', 9055, 5945.5);
1430
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021326, '2241', 'control', '2014-12-03T18:42:00', '2014-12-03T18:42:00', '', 16995, 9849);
1431
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020683, '2243', 'treatment', '2014-12-07T22:09:00', '2014-12-07T22:09:00', '', 9360, 3330);
1432
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021105, '2244', 'control', '2014-12-04T22:27:00', '2014-12-04T22:27:00', '', 4090, 1956);
1433
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020543, '2245', 'treatment', '2014-12-08T19:55:00', '2014-12-08T19:55:00', '', 4290, 1550);
1434
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022545, '2247', 'treatment', '2014-11-22T15:03:00', '2014-11-22T15:03:00', '', 5980, 3216);
1435
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020129, '2252', 'control', '2014-12-10T22:28:00', '2014-12-10T22:28:00', '', 6185, 3763.5);
1436
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022605, '2256', 'treatment', '2014-11-21T12:57:00', '2014-11-21T12:57:00', '', 6790, 2145);
1437
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020692, '2258', 'control', '2014-12-07T21:34:00', '2014-12-07T21:34:00', '', 4385, 2131);
1438
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022226, '2259', 'control', '2014-11-25T19:56:00', '2014-11-25T19:56:00', '', 30995, 12077);
1439
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020865, '2260', 'control', '2014-12-06T20:47:00', '2014-12-06T20:47:00', '', 31660, 15479);
1440
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022987, '2261', 'control', '2014-11-16T16:52:00', '2014-11-16T16:52:00', '', 3490, 1000);
1441
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022587, '2262', 'treatment', '2014-11-21T16:24:00', '2014-11-21T16:24:00', '', 3290, 1969);
1442
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022137, '2263', 'control', '2014-11-26T20:24:00', '2014-11-26T20:24:00', '', 6590, 2960);
1443
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021467, '2265', 'treatment', '2014-12-02T20:04:00', '2014-12-02T20:04:00', '', 6885, 3710);
1444
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020206, '2266', 'treatment', '2014-12-10T17:09:00', '2014-12-10T17:09:00', '', 5290, 1714);
1445
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021013, '2269', 'control', '2014-12-05T15:55:00', '2014-12-05T15:55:00', '', 13565, 7836);
1446
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020800, '2270', 'treatment', '2014-12-07T12:49:00', '2014-12-07T12:49:00', '', 32150, 12427);
1447
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022828, '2276', 'treatment', '2014-11-18T19:45:00', '2014-11-18T19:45:00', '', 9275, 6043.5);
1448
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021624, '2277', 'control', '2014-12-01T20:41:00', '2014-12-01T20:41:00', '', 9285, 3320);
1449
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022898, '2278', 'control', '2014-11-17T17:13:00', '2014-11-17T17:13:00', '', 5480, 3281);
1450
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023010, '2279', 'control', '2014-11-16T09:07:00', '2014-11-16T09:07:00', '', 4590, 2660);
1451
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020353, '2283', 'control', '2014-12-09T19:34:00', '2014-12-09T19:34:00', '', 5285, 2598);
1452
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022016, '2286', 'treatment', '2014-11-28T11:08:00', '2014-11-28T11:08:00', '', 6790, 3618);
1453
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020902, '2287', 'control', '2014-12-06T15:51:00', '2014-12-06T15:51:00', '', 5556, 1915.4);
1454
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021511, '2288', 'treatment', '2014-12-02T15:52:00', '2014-12-02T15:52:00', '', 9290, 3236);
1455
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021961, '2292', 'control', '2014-11-28T20:15:00', '2014-11-28T20:15:00', '', 4087, 1239.8);
1456
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021510, '2293', 'control', '2014-12-02T16:17:00', '2014-12-02T16:17:00', '', 4290, 2472);
1457
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022549, '2296', 'treatment', '2014-11-22T13:38:00', '2014-11-22T13:38:00', '', 10775, 7108.5);
1458
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021807, '2297', 'treatment', '2014-11-30T18:16:00', '2014-11-30T18:16:00', '', 5790, 2940);
1459
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021219, '2300', 'control', '2014-12-04T12:20:00', '2014-12-04T12:20:00', '', 10990, 6006);
1460
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020272, '2301', 'treatment', '2014-12-10T10:36:00', '2014-12-10T10:36:00', '', 10175, 5724);
1461
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022329, '2302', 'control', '2014-11-24T22:31:00', '2014-11-24T22:31:00', '', 9475, 4348.5);
1462
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020290, '2304', 'treatment', '2014-12-10T07:37:00', '2014-12-10T07:37:00', '', 6790, 2258);
1463
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022229, '2307', 'control', '2014-11-25T19:29:00', '2014-11-25T19:29:00', '', 5285, 2794);
1464
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021982, '2309', 'control', '2014-11-28T17:13:00', '2014-11-28T17:13:00', '', 11742, 4301.8);
1465
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021665, '2310', 'control', '2014-12-01T17:10:00', '2014-12-01T17:10:00', '', 11470, 7614);
1466
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020684, '2312', 'control', '2014-12-07T22:07:00', '2014-12-07T22:07:00', '', 15075, 5717);
1467
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020947, '2313', 'treatment', '2014-12-06T08:04:00', '2014-12-06T08:04:00', '', 11975, 6722);
1468
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022385, '2314', 'treatment', '2014-11-24T14:56:00', '2014-11-24T14:56:00', '', 6285, 2153);
1469
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020154, '2315', 'treatment', '2014-12-10T20:42:00', '2014-12-10T20:42:00', '', 7080, 2429);
1470
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021716, '2318', 'control', '2014-12-01T11:48:00', '2014-12-01T11:48:00', '', 7780, 4220);
1471
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021638, '2319', 'treatment', '2014-12-01T19:15:00', '2014-12-01T19:15:00', '', 22480, 15240);
1472
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022441, '2322', 'treatment', '2014-11-23T21:22:00', '2014-11-23T21:22:00', '', 9790, 5361);
1473
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021848, '2323', 'control', '2014-11-30T13:16:00', '2014-11-30T13:16:00', '', 4790, 2347);
1474
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020752, '2324', 'control', '2014-12-07T16:31:00', '2014-12-07T16:31:00', '', 4790, 2788);
1475
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021028, '2326', 'control', '2014-12-05T14:43:00', '2014-12-05T14:43:00', '', 4790, 2352);
1476
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022516, '2327', 'control', '2014-11-23T10:14:00', '2014-11-23T10:14:00', '', 9485, 3347);
1477
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022794, '2328', 'control', '2014-11-19T10:10:00', '2014-11-19T10:10:00', '', 10870, 6062);
1478
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022924, '2329', 'treatment', '2014-11-17T12:19:00', '2014-11-17T12:19:00', '', 8185, 5299.5);
1479
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021710, '2331', 'treatment', '2014-12-01T12:08:00', '2014-12-01T12:08:00', '', 11985, 5605.5);
1480
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021169, '2332', 'control', '2014-12-04T18:05:00', '2014-12-04T18:05:00', '', 12075, 4287);
1481
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022391, '2335', 'control', '2014-11-24T13:53:00', '2014-11-24T13:53:00', '', 4090, 1576);
1482
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020121, '2337', 'control', '2014-12-10T23:10:00', '2014-12-10T23:10:00', '', 3685, 1694);
1483
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021173, '2341', 'treatment', '2014-12-04T17:29:00', '2014-12-04T17:29:00', '', 6285, 3308);
1484
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020299, '2345', 'treatment', '2014-12-09T23:18:00', '2014-12-09T23:18:00', '', 5680, 2871);
1485
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022239, '2348', 'treatment', '2014-11-25T17:59:00', '2014-11-25T17:59:00', '', 9270, 4288);
1486
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022051, '2351', 'treatment', '2014-11-27T20:49:00', '2014-11-27T20:49:00', '', 2992, 653.8);
1487
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021246, '2352', 'treatment', '2014-12-04T10:08:00', '2014-12-04T10:08:00', '', 3790, 1676);
1488
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022546, '2353', 'treatment', '2014-11-22T15:08:00', '2014-11-22T15:08:00', '', 12360, 4628);
1489
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020395, '2354', 'treatment', '2014-12-09T15:49:00', '2014-12-09T15:49:00', '', 10275, 6892.5);
1490
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021854, '2355', 'treatment', '2014-11-30T12:25:00', '2014-11-30T12:25:00', '', 4790, 2922);
1491
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020467, '2362', 'treatment', '2014-12-09T10:50:00', '2014-12-09T10:50:00', '', 4185, 2601.5);
1492
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022001, '2363', 'control', '2014-11-28T13:18:00', '2014-11-28T13:18:00', '', 3090, 1118);
1493
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021965, '2364', 'control', '2014-11-28T19:25:00', '2014-11-28T19:25:00', '', 16585, 11118.5);
1494
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020929, '2365', 'control', '2014-12-06T12:06:00', '2014-12-06T12:06:00', '', 10385, 6916.5);
1495
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021562, '2366', 'treatment', '2014-12-02T11:18:00', '2014-12-02T11:18:00', '', 6590, 4029);
1496
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022951, '2367', 'treatment', '2014-11-17T06:52:00', '2014-11-17T06:52:00', '', 3090, 1143);
1497
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021478, '2369', 'control', '2014-12-02T19:07:00', '2014-12-02T19:07:00', '', 6880, 4510);
1498
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020739, '2377', 'control', '2014-12-07T17:39:00', '2014-12-07T17:39:00', '', 5290, 1755);
1499
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021828, '2382', 'control', '2014-11-30T16:09:00', '2014-11-30T16:09:00', '', 4675, 2331);
1500
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022801, '2383', 'treatment', '2014-11-19T08:58:00', '2014-11-19T08:58:00', '', 4080, 2276);
1501
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021195, '2384', 'treatment', '2014-12-04T14:48:00', '2014-12-04T14:48:00', '', 10675, 5908);
1502
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021541, '2385', 'treatment', '2014-12-02T13:27:00', '2014-12-02T13:27:00', '', 2590, 956);
1503
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021867, '2389', 'control', '2014-11-30T09:44:00', '2014-11-30T09:44:00', '', 6590, 4232);
1504
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022420, '2390', 'treatment', '2014-11-24T08:47:00', '2014-11-24T08:47:00', '', 3190, 883);
1505
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021255, '2391', 'treatment', '2014-12-04T09:18:00', '2014-12-04T09:18:00', '', 3785, 1441.5);
1506
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023024, '2393', 'treatment', '2014-11-15T19:33:00', '2014-11-15T19:33:00', '', 9790, 4575);
1507
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021542, '2395', 'treatment', '2014-12-02T13:17:00', '2014-12-02T13:17:00', '', 5275, 1608);
1508
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022412, '2396', 'treatment', '2014-11-24T09:54:00', '2014-11-24T09:54:00', '', 3085, 1522);
1509
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021487, '2397', 'control', '2014-12-02T18:30:00', '2014-12-02T18:30:00', '', 3985, 2203.5);
1510
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021598, '2399', 'control', '2014-12-02T06:09:00', '2014-12-02T06:09:00', '', 4790, 2042);
1511
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021060, '2400', 'control', '2014-12-05T11:38:00', '2014-12-05T11:38:00', '', 3290, 1908);
1512
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020566, '2401', 'control', '2014-12-08T18:13:00', '2014-12-08T18:13:00', '', 2590, 1091);
1513
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022720, '2402', 'control', '2014-11-19T19:15:00', '2014-11-19T19:15:00', '', 6790, 2909);
1514
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022585, '2404', 'control', '2014-11-21T17:06:00', '2014-11-21T17:06:00', '', 14250, 8195);
1515
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020269, '2407', 'control', '2014-12-10T10:43:00', '2014-12-10T10:43:00', '', 2790, 566);
1516
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020386, '2409', 'control', '2014-12-09T17:08:00', '2014-12-09T17:08:00', '', 6585, 2814.5);
1517
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020999, '2411', 'control', '2014-12-05T17:24:00', '2014-12-05T17:24:00', '', 11870, 5387);
1518
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020465, '2414', 'control', '2014-12-09T11:02:00', '2014-12-09T11:02:00', '', 10075, 3474);
1519
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020569, '2416', 'control', '2014-12-08T17:55:00', '2014-12-08T17:55:00', '', 9990, 6659);
1520
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020307, '2418', 'treatment', '2014-12-09T22:11:00', '2014-12-09T22:11:00', '', 5785, 3059);
1521
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022242, '2419', 'control', '2014-11-25T17:49:00', '2014-11-25T17:49:00', '', 6790, 3013);
1522
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023050, '2421', 'control', '2014-11-14T20:24:00', '2014-11-14T20:24:00', '', 2490, 1354);
1523
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020585, '2422', 'treatment', '2014-12-08T16:31:00', '2014-12-08T16:31:00', '', 4790, 1888);
1524
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020675, '2429', 'control', '2014-12-08T05:39:00', '2014-12-08T05:39:00', '', 7790, 2561);
1525
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021086, '2433', 'control', '2014-12-05T08:38:00', '2014-12-05T08:38:00', '', 9490, 4375);
1526
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020991, '2434', 'control', '2014-12-05T18:14:00', '2014-12-05T18:14:00', '', 15775, 7452.5);
1527
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020799, '2437', 'treatment', '2014-12-07T13:01:00', '2014-12-07T13:01:00', '', 2790, 590);
1528
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022501, '2442', 'control', '2014-11-23T13:47:00', '2014-11-23T13:47:00', '', 7285, 2498);
1529
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020998, '2444', 'control', '2014-12-05T17:28:00', '2014-12-05T17:28:00', '', 10280, 4640);
1530
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022134, '2445', 'control', '2014-11-26T20:30:00', '2014-11-26T20:30:00', '', 10995, 6208);
1531
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022735, '2447', 'control', '2014-11-19T16:40:00', '2014-11-19T16:40:00', '', 11980, 4267);
1532
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020235, '2450', 'treatment', '2014-12-10T14:03:00', '2014-12-10T14:03:00', '', 10485, 3799);
1533
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020575, '2452', 'treatment', '2014-12-08T17:14:00', '2014-12-08T17:14:00', '', 10180, 6649);
1534
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020602, '2454', 'treatment', '2014-12-08T13:48:00', '2014-12-08T13:48:00', '', 4790, 2422);
1535
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020280, '2456', 'treatment', '2014-12-10T09:52:00', '2014-12-10T09:52:00', '', 3790, 2224);
1536
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021630, '2459', 'treatment', '2014-12-01T20:04:00', '2014-12-01T20:04:00', '', 9180, 3359);
1537
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022318, '2461', 'treatment', '2014-11-25T07:10:00', '2014-11-25T07:10:00', '', 6085, 1944);
1538
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020729, '2462', 'control', '2014-12-07T18:22:00', '2014-12-07T18:22:00', '', 11985, 7912.5);
1539
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021657, '2463', 'control', '2014-12-01T18:15:00', '2014-12-01T18:15:00', '', 12995, 6008.5);
1540
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020330, '2465', 'treatment', '2014-12-09T20:45:00', '2014-12-09T20:45:00', '', 5285, 2288.5);
1541
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021134, '2467', 'control', '2014-12-04T20:12:00', '2014-12-04T20:12:00', '', 9290, 4149);
1542
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022120, '2470', 'control', '2014-11-26T22:16:00', '2014-11-26T22:16:00', '', 5790, 1961);
1543
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022050, '2472', 'treatment', '2014-11-27T21:07:00', '2014-11-27T21:07:00', '', 8885, 5764.5);
1544
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021091, '2474', 'control', '2014-12-05T08:15:00', '2014-12-05T08:15:00', '', 6280, 3253);
1545
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022814, '2476', 'treatment', '2014-11-18T21:44:00', '2014-11-18T21:44:00', '', 4285, 1977);
1546
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021137, '2477', 'control', '2014-12-04T19:59:00', '2014-12-04T19:59:00', '', 7385, 3358.5);
1547
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020579, '2479', 'treatment', '2014-12-08T16:50:00', '2014-12-08T16:50:00', '', 8975, 5932.5);
1548
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022150, '2480', 'treatment', '2014-11-26T18:14:00', '2014-11-26T18:14:00', '', 5785, 2534.5);
1549
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022626, '2481', 'treatment', '2014-11-20T22:11:00', '2014-11-20T22:11:00', '', 4790, 2996);
1550
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022069, '2482', 'treatment', '2014-11-27T17:51:00', '2014-11-27T17:51:00', '', 7081, 4380.7);
1551
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022187, '2483', 'control', '2014-11-26T09:43:00', '2014-11-26T09:43:00', '', 15995, 5970);
1552
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022521, '2485', 'treatment', '2014-11-23T08:23:00', '2014-11-23T08:23:00', '', 5980, 3149);
1553
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020941, '2486', 'control', '2014-12-06T09:22:00', '2014-12-06T09:22:00', '', 8785, 2926);
1554
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022138, '2491', 'control', '2014-11-26T20:10:00', '2014-11-26T20:10:00', '', 7785, 2672);
1555
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022768, '2493', 'treatment', '2014-11-19T13:13:00', '2014-11-19T13:13:00', '', 5790, 2319);
1556
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021934, '2495', 'treatment', '2014-11-29T10:23:00', '2014-11-29T10:23:00', '', 2490, 429);
1557
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020189, '2496', 'control', '2014-12-10T19:23:00', '2014-12-10T19:23:00', '', 7280, 2424);
1558
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020513, '2497', 'treatment', '2014-12-08T23:23:00', '2014-12-08T23:23:00', '', 6585, 3595);
1559
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020440, '2498', 'control', '2014-12-09T12:38:00', '2014-12-09T12:38:00', '', 4290, 1208);
1560
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021218, '2500', 'control', '2014-12-04T12:28:00', '2014-12-04T12:28:00', '', 6285, 3217);
1561
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020292, '2501', 'control', '2014-12-10T07:11:00', '2014-12-10T07:11:00', '', 6185, 4016.5);
1562
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020843, '2504', 'treatment', '2014-12-07T06:23:00', '2014-12-07T06:23:00', '', 5790, 3144);
1563
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023029, '2505', 'treatment', '2014-11-15T18:44:00', '2014-11-15T18:44:00', '', 3785, 1781);
1564
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020246, '2506', 'treatment', '2014-12-10T12:44:00', '2014-12-10T12:44:00', '', 23560, 16091);
1565
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021658, '2507', 'treatment', '2014-12-01T18:07:00', '2014-12-01T18:07:00', '', 4790, 1816);
1566
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022915, '2509', 'control', '2014-11-17T14:19:00', '2014-11-17T14:19:00', '', 17145, 11620.5);
1567
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022144, '2510', 'treatment', '2014-11-26T19:31:00', '2014-11-26T19:31:00', '', 9075, 4978);
1568
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022551, '2514', 'treatment', '2014-11-22T12:19:00', '2014-11-22T12:19:00', '', 9485, 4211.5);
1569
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020544, '2515', 'treatment', '2014-12-08T19:54:00', '2014-12-08T19:54:00', '', 4090, 1965);
1570
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022506, '2516', 'treatment', '2014-11-23T12:28:00', '2014-11-23T12:28:00', '', 4090, 1482);
1571
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022660, '2518', 'treatment', '2014-11-20T15:23:00', '2014-11-20T15:23:00', '', 20385, 9810.5);
1572
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020966, '2519', 'control', '2014-12-05T20:47:00', '2014-12-05T20:47:00', '', 7585, 4831.5);
1573
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022646, '2526', 'treatment', '2014-11-20T19:18:00', '2014-11-20T19:18:00', '', 4580, 1929);
1574
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023003, '2527', 'treatment', '2014-11-16T12:11:00', '2014-11-16T12:11:00', '', 11590, 5256);
1575
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020629, '2530', 'control', '2014-12-08T11:37:00', '2014-12-08T11:37:00', '', 11985, 7972.5);
1576
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020545, '2532', 'control', '2014-12-08T19:52:00', '2014-12-08T19:52:00', '', 9085, 4141.5);
1577
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022782, '2533', 'treatment', '2014-11-19T12:23:00', '2014-11-19T12:23:00', '', 10380, 6709);
1578
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022182, '2535', 'treatment', '2014-11-26T10:28:00', '2014-11-26T10:28:00', '', 10950, 5073);
1579
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021890, '2539', 'control', '2014-11-29T21:08:00', '2014-11-29T21:08:00', '', 9785, 4363.5);
1580
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021312, '2541', 'treatment', '2014-12-03T20:02:00', '2014-12-03T20:02:00', '', 13980, 8056);
1581
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020305, '2544', 'control', '2014-12-09T22:21:00', '2014-12-09T22:21:00', '', 2985, 1198);
1582
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020289, '2547', 'treatment', '2014-12-10T08:01:00', '2014-12-10T08:01:00', '', 6285, 4093.5);
1583
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022697, '2548', 'treatment', '2014-11-19T22:46:00', '2014-11-19T22:46:00', '', 2290, 762);
1584
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021207, '2549', 'treatment', '2014-12-04T13:18:00', '2014-12-04T13:18:00', '', 4790, 3018);
1585
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021787, '2553', 'treatment', '2014-11-30T20:16:00', '2014-11-30T20:16:00', '', 7480, 4139);
1586
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021530, '2556', 'control', '2014-12-02T14:30:00', '2014-12-02T14:30:00', '', 4790, 2498);
1587
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022996, '2558', 'control', '2014-11-16T13:35:00', '2014-11-16T13:35:00', '', 7780, 4316);
1588
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020441, '2560', 'treatment', '2014-12-09T12:31:00', '2014-12-09T12:31:00', '', 4485, 1821.5);
1589
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022787, '2561', 'treatment', '2014-11-19T11:55:00', '2014-11-19T11:55:00', '', 3290, 1802);
1590
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020328, '2564', 'treatment', '2014-12-09T20:59:00', '2014-12-09T20:59:00', '', 1890, 918);
1591
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022155, '2569', 'treatment', '2014-11-26T17:04:00', '2014-11-26T17:04:00', '', 4285, 2425.5);
1592
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022106, '2574', 'treatment', '2014-11-27T11:33:00', '2014-11-27T11:33:00', '', 9680, 6190);
1593
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021074, '2575', 'treatment', '2014-12-05T10:04:00', '2014-12-05T10:04:00', '', 6685, 4343.5);
1594
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021117, '2577', 'control', '2014-12-04T21:26:00', '2014-12-04T21:26:00', '', 17275, 9901);
1595
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022300, '2578', 'treatment', '2014-11-25T10:06:00', '2014-11-25T10:06:00', '', 7075, 3894);
1596
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022888, '2581', 'treatment', '2014-11-17T19:08:00', '2014-11-17T19:08:00', '', 21160, 7968);
1597
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021056, '2585', 'treatment', '2014-12-05T12:07:00', '2014-12-05T12:07:00', '', 22490, 8580);
1598
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021306, '2587', 'treatment', '2014-12-03T20:13:00', '2014-12-03T20:13:00', '', 15265, 7239.5);
1599
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023078, '2589', 'treatment', '2014-11-14T07:15:00', '2014-11-14T07:15:00', '', 8585, 4767);
1600
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022367, '2590', 'control', '2014-11-24T17:17:00', '2014-11-24T17:17:00', '', 4790, 1553);
1601
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022049, '2591', 'control', '2014-11-27T21:18:00', '2014-11-27T21:18:00', '', 3785, 1372.5);
1602
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022048, '2593', 'treatment', '2014-11-27T21:25:00', '2014-11-27T21:25:00', '', 5775, 1962);
1603
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022610, '2595', 'treatment', '2014-11-21T11:12:00', '2014-11-21T11:12:00', '', 14260, 5110);
1604
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022537, '2596', 'treatment', '2014-11-22T17:13:00', '2014-11-22T17:13:00', '', 4290, 1663);
1605
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022085, '2598', 'treatment', '2014-11-27T14:13:00', '2014-11-27T14:13:00', '', 3385, 824);
1606
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021933, '2601', 'control', '2014-11-29T10:40:00', '2014-11-29T10:40:00', '', 6590, 4076);
1607
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023036, '2602', 'control', '2014-11-15T14:41:00', '2014-11-15T14:41:00', '', 3090, 962);
1608
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022409, '2603', 'treatment', '2014-11-24T10:00:00', '2014-11-24T10:00:00', '', 6485, 2813.5);
1609
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022520, '2605', 'treatment', '2014-11-23T08:48:00', '2014-11-23T08:48:00', '', 6790, 4395);
1610
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021800, '2608', 'treatment', '2014-11-30T19:01:00', '2014-11-30T19:01:00', '', 2690, 714);
1611
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020620, '2611', 'treatment', '2014-12-08T12:15:00', '2014-12-08T12:15:00', '', 5090, 3003);
1612
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022624, '2614', 'treatment', '2014-11-20T23:17:00', '2014-11-20T23:17:00', '', 11785, 5566.5);
1613
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022026, '2624', 'control', '2014-11-28T09:51:00', '2014-11-28T09:51:00', '', 3242, 1639.2);
1614
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022321, '2625', 'treatment', '2014-11-25T06:01:00', '2014-11-25T06:01:00', '', 4790, 3016);
1615
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020389, '2626', 'control', '2014-12-09T16:59:00', '2014-12-09T16:59:00', '', 8975, 3132);
1616
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021444, '2628', 'control', '2014-12-02T22:23:00', '2014-12-02T22:23:00', '', 8285, 4484);
1617
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021380, '2631', 'control', '2014-12-03T13:59:00', '2014-12-03T13:59:00', '', 4290, 2681);
1618
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022835, '2632', 'treatment', '2014-11-18T18:13:00', '2014-11-18T18:13:00', '', 4080, 1497);
1619
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020886, '2635', 'treatment', '2014-12-06T17:41:00', '2014-12-06T17:41:00', '', 5290, 2335);
1620
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021453, '2636', 'treatment', '2014-12-02T20:51:00', '2014-12-02T20:51:00', '', 5590, 1715);
1621
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022666, '2640', 'treatment', '2014-11-20T14:13:00', '2014-11-20T14:13:00', '', 2385, 1309.5);
1622
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022325, '2642', 'treatment', '2014-11-24T23:41:00', '2014-11-24T23:41:00', '', 2190, 745);
1623
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022364, '2645', 'treatment', '2014-11-24T17:26:00', '2014-11-24T17:26:00', '', 5790, 2594);
1624
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022894, '2647', 'treatment', '2014-11-17T18:07:00', '2014-11-17T18:07:00', '', 3790, 1495);
1625
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022046, '2648', 'control', '2014-11-27T22:28:00', '2014-11-27T22:28:00', '', 4887, 2430.2);
1626
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021546, '2649', 'treatment', '2014-12-02T12:50:00', '2014-12-02T12:50:00', '', 9995, 3414);
1627
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023127, '2650', 'treatment', '2014-11-13T14:17:00', '2014-11-13T14:17:00', '', 3290, 825);
1628
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020526, '2652', 'control', '2014-12-08T21:55:00', '2014-12-08T21:55:00', '', 5790, 1820);
1629
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022570, '2653', 'treatment', '2014-11-21T21:47:00', '2014-11-21T21:47:00', '', 9765, 6262.5);
1630
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021233, '2654', 'control', '2014-12-04T11:13:00', '2014-12-04T11:13:00', '', 2990, 1433);
1631
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021374, '2657', 'control', '2014-12-03T14:16:00', '2014-12-03T14:16:00', '', 7375, 2625);
1632
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022817, '2658', 'treatment', '2014-11-18T21:32:00', '2014-11-18T21:32:00', '', 5785, 1942);
1633
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021586, '2659', 'control', '2014-12-02T08:01:00', '2014-12-02T08:01:00', '', 2790, 1138);
1634
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022370, '2660', 'treatment', '2014-11-24T17:12:00', '2014-11-24T17:12:00', '', 5790, 3470);
1635
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020131, '2662', 'control', '2014-12-10T22:23:00', '2014-12-10T22:23:00', '', 7290, 3798);
1636
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022868, '2663', 'control', '2014-11-18T09:16:00', '2014-11-18T09:16:00', '', 3790, 965);
1637
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022841, '2664', 'control', '2014-11-18T17:03:00', '2014-11-18T17:03:00', '', 6590, 2945);
1638
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022477, '2666', 'treatment', '2014-11-23T17:58:00', '2014-11-23T17:58:00', '', 3090, 709);
1639
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020347, '2667', 'control', '2014-12-09T19:49:00', '2014-12-09T19:49:00', '', 15840, 5923);
1640
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022112, '2669', 'treatment', '2014-11-27T10:03:00', '2014-11-27T10:03:00', '', 47760, 28350);
1641
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022275, '2670', 'treatment', '2014-11-25T13:19:00', '2014-11-25T13:19:00', '', 11490, 4058);
1642
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019677, '2593', '', '2014-12-13T08:49:00', '2014-12-13T08:49:00', 5022048, 5575, 1816);
1643
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018128, '2605', '', '2014-12-21T17:28:00', '2014-12-21T17:28:00', 5022520, 7375, 4727.5);
1644
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020614, '2672', 'control', '2014-12-08T12:39:00', '2014-12-08T12:39:00', '', 11070, 4018);
1645
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020475, '2673', 'control', '2014-12-09T10:38:00', '2014-12-09T10:38:00', '', 2985, 1535.5);
1646
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021895, '2675', 'control', '2014-11-29T19:12:00', '2014-11-29T19:12:00', '', 12265, 6888);
1647
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022176, '2676', 'treatment', '2014-11-26T13:22:00', '2014-11-26T13:22:00', '', 17970, 6818);
1648
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020652, '2678', 'treatment', '2014-12-08T08:57:00', '2014-12-08T08:57:00', '', 4790, 1828);
1649
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020263, '2679', 'control', '2014-12-10T11:03:00', '2014-12-10T11:03:00', '', 6185, 3970.5);
1650
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021938, '2683', 'control', '2014-11-29T10:02:00', '2014-11-29T10:02:00', '', 2790, 862);
1651
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023051, '2684', 'treatment', '2014-11-14T19:58:00', '2014-11-14T19:58:00', '', 3785, 957);
1652
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020322, '2685', 'control', '2014-12-09T21:15:00', '2014-12-09T21:15:00', '', 15995, 5909);
1653
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021299, '2688', 'control', '2014-12-03T20:51:00', '2014-12-03T20:51:00', '', 15160, 8741);
1654
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020723, '2690', 'control', '2014-12-07T18:51:00', '2014-12-07T18:51:00', '', 1890, 637);
1655
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022586, '2693', 'treatment', '2014-11-21T16:31:00', '2014-11-21T16:31:00', '', 2190, 1012);
1656
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021573, '2696', 'control', '2014-12-02T10:12:00', '2014-12-02T10:12:00', '', 5280, 3260);
1657
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020316, '2697', 'control', '2014-12-09T21:25:00', '2014-12-09T21:25:00', '', 16985, 11448.5);
1658
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021050, '2698', 'treatment', '2014-12-05T12:38:00', '2014-12-05T12:38:00', '', 11485, 4070);
1659
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020873, '2699', 'control', '2014-12-06T19:37:00', '2014-12-06T19:37:00', '', 8585, 3944.5);
1660
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020672, '2700', 'treatment', '2014-12-08T07:06:00', '2014-12-08T07:06:00', '', 9275, 3123);
1661
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021025, '2702', 'control', '2014-12-05T14:50:00', '2014-12-05T14:50:00', '', 6785, 4319.5);
1662
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021943, '2706', 'treatment', '2014-11-29T08:12:00', '2014-11-29T08:12:00', '', 4790, 1966);
1663
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021048, '2707', 'control', '2014-12-05T12:49:00', '2014-12-05T12:49:00', '', 10285, 4635.5);
1664
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022544, '2709', 'treatment', '2014-11-22T15:24:00', '2014-11-22T15:24:00', '', 9290, 4326);
1665
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022293, '2712', 'treatment', '2014-11-25T10:41:00', '2014-11-25T10:41:00', '', 9580, 5352);
1666
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020576, '2716', 'treatment', '2014-12-08T17:10:00', '2014-12-08T17:10:00', '', 7285, 4585.5);
1667
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021107, '2717', 'control', '2014-12-04T22:15:00', '2014-12-04T22:15:00', '', 7685, 3327.5);
1668
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020313, '2718', 'control', '2014-12-09T21:27:00', '2014-12-09T21:27:00', '', 7790, 5096);
1669
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022603, '2719', 'control', '2014-11-21T13:23:00', '2014-11-21T13:23:00', '', 3290, 1940);
1670
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022305, '2721', 'treatment', '2014-11-25T09:32:00', '2014-11-25T09:32:00', '', 2090, 1074);
1671
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022166, '2722', 'control', '2014-11-26T14:54:00', '2014-11-26T14:54:00', '', 11580, 6551);
1672
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021824, '2723', 'control', '2014-11-30T16:14:00', '2014-11-30T16:14:00', '', 2790, 1125);
1673
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021728, '2724', 'treatment', '2014-12-01T10:31:00', '2014-12-01T10:31:00', '', 3790, 2062);
1674
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022448, '2725', 'treatment', '2014-11-23T20:50:00', '2014-11-23T20:50:00', '', 9470, 4353);
1675
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022685, '2727', 'treatment', '2014-11-20T08:57:00', '2014-11-20T08:57:00', '', 8390, 2896);
1676
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022752, '2729', 'treatment', '2014-11-19T14:43:00', '2014-11-19T14:43:00', '', 2490, 908);
1677
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020375, '2730', 'treatment', '2014-12-09T18:09:00', '2014-12-09T18:09:00', '', 11075, 4983.5);
1678
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022604, '2734', 'treatment', '2014-11-21T13:05:00', '2014-11-21T13:05:00', '', 3785, 1073);
1679
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020785, '2737', 'control', '2014-12-07T13:59:00', '2014-12-07T13:59:00', '', 4785, 2771.5);
1680
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021073, '2739', 'control', '2014-12-05T10:15:00', '2014-12-05T10:15:00', '', 6975, 3734);
1681
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020433, '2741', 'control', '2014-12-09T12:58:00', '2014-12-09T12:58:00', '', 11960, 7909);
1682
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021780, '2742', 'control', '2014-11-30T20:51:00', '2014-11-30T20:51:00', '', 4790, 2553);
1683
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022006, '2745', 'treatment', '2014-11-28T12:37:00', '2014-11-28T12:37:00', '', 5090, 2495);
1684
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020472, '2748', 'control', '2014-12-09T10:40:00', '2014-12-09T10:40:00', '', 11980, 8055);
1685
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021079, '2752', 'control', '2014-12-05T09:29:00', '2014-12-05T09:29:00', '', 2685, 1463.5);
1686
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021418, '2754', 'control', '2014-12-03T10:24:00', '2014-12-03T10:24:00', '', 2590, 1334);
1687
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023106, '2756', 'control', '2014-11-13T19:19:00', '2014-11-13T19:19:00', '', 2985, 903.5);
1688
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021660, '2758', 'control', '2014-12-01T18:07:00', '2014-12-01T18:07:00', '', 12580, 7117);
1689
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020159, '2759', 'control', '2014-12-10T20:34:00', '2014-12-10T20:34:00', '', 3785, 1523.5);
1690
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022042, '2762', 'control', '2014-11-27T23:18:00', '2014-11-27T23:18:00', '', 13783, 9301.1);
1691
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022022, '2764', 'control', '2014-11-28T10:12:00', '2014-11-28T10:12:00', '', 6590, 3457);
1692
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020768, '2765', 'treatment', '2014-12-07T15:30:00', '2014-12-07T15:30:00', '', 9990, 4695);
1693
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022283, '2769', 'treatment', '2014-11-25T12:09:00', '2014-11-25T12:09:00', '', 11675, 6688);
1694
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020696, '2772', 'treatment', '2014-12-07T20:57:00', '2014-12-07T20:57:00', '', 3290, 1266);
1695
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020483, '2773', 'control', '2014-12-09T09:46:00', '2014-12-09T09:46:00', '', 5785, 3584.5);
1696
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021742, '2774', 'control', '2014-12-01T08:50:00', '2014-12-01T08:50:00', '', 9175, 4189.5);
1697
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021645, '2776', 'treatment', '2014-12-01T19:00:00', '2014-12-01T19:00:00', '', 9185, 5955.5);
1698
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020830, '2777', 'control', '2014-12-07T09:49:00', '2014-12-07T09:49:00', '', 5485, 3525.5);
1699
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020646, '2778', 'treatment', '2014-12-08T09:36:00', '2014-12-08T09:36:00', '', 9080, 5037);
1700
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022901, '2780', 'control', '2014-11-17T16:43:00', '2014-11-17T16:43:00', '', 10765, 7040.5);
1701
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021110, '2781', 'treatment', '2014-12-04T22:02:00', '2014-12-04T22:02:00', '', 5585, 2976);
1702
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022429, '2782', 'treatment', '2014-11-24T07:19:00', '2014-11-24T07:19:00', '', 12585, 5925.5);
1703
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020437, '2783', 'control', '2014-12-09T12:53:00', '2014-12-09T12:53:00', '', 3790, 2157);
1704
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020590, '2784', 'control', '2014-12-08T15:28:00', '2014-12-08T15:28:00', '', 3290, 1944);
1705
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021054, '2785', 'treatment', '2014-12-05T12:16:00', '2014-12-05T12:16:00', '', 9775, 3358);
1706
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020031, '2752', '', '2014-12-11T12:29:00', '2014-12-11T12:29:00', 5021079, 4090, 1974);
1707
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018612, '2756', '', '2014-12-17T20:52:00', '2014-12-17T20:52:00', 5023106, 8965, 5856.5);
1708
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020149, '2759', 'control', '2014-12-10T20:56:00', '2014-12-10T20:56:00', 5020159, 2590, 985);
1709
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021871, '2786', 'control', '2014-11-30T08:34:00', '2014-11-30T08:34:00', '', 6790, 4422);
1710
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022408, '2787', 'treatment', '2014-11-24T10:18:00', '2014-11-24T10:18:00', '', 6785, 4338.5);
1711
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021093, '2788', 'control', '2014-12-05T08:03:00', '2014-12-05T08:03:00', '', 29050, 11227);
1712
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021122, '2789', 'control', '2014-12-04T21:03:00', '2014-12-04T21:03:00', '', 9780, 6334);
1713
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021284, '2791', 'control', '2014-12-03T21:38:00', '2014-12-03T21:38:00', '', 10990, 5052);
1714
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021197, '2793', 'treatment', '2014-12-04T14:27:00', '2014-12-04T14:27:00', '', 3290, 867);
1715
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020781, '2794', 'treatment', '2014-12-07T14:14:00', '2014-12-07T14:14:00', '', 9785, 3470);
1716
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023081, '2796', 'control', '2014-11-14T02:29:00', '2014-11-14T02:29:00', '', 9280, 3227);
1717
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020125, '2799', 'control', '2014-12-10T22:34:00', '2014-12-10T22:34:00', '', 3290, 1498);
1718
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022857, '2801', 'treatment', '2014-11-18T13:17:00', '2014-11-18T13:17:00', '', 9790, 4525);
1719
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021159, '2804', 'control', '2014-12-04T19:07:00', '2014-12-04T19:07:00', '', 2285, 694.5);
1720
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021508, '2808', 'treatment', '2014-12-02T16:19:00', '2014-12-02T16:19:00', '', 10180, 3692);
1721
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021968, '2810', 'control', '2014-11-28T19:08:00', '2014-11-28T19:08:00', '', 18785, 12582.5);
1722
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021356, '2812', 'control', '2014-12-03T15:54:00', '2014-12-03T15:54:00', '', 4790, 2887);
1723
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022823, '2813', 'control', '2014-11-18T20:58:00', '2014-11-18T20:58:00', '', 9585, 3523);
1724
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020807, '2820', 'control', '2014-12-07T12:13:00', '2014-12-07T12:13:00', '', 9270, 3397);
1725
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022790, '2827', 'treatment', '2014-11-19T11:11:00', '2014-11-19T11:11:00', '', 8280, 5455);
1726
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020711, '2829', 'control', '2014-12-07T19:35:00', '2014-12-07T19:35:00', '', 2290, 335);
1727
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021120, '2831', 'control', '2014-12-04T21:07:00', '2014-12-04T21:07:00', '', 4290, 1326);
1728
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020712, '2832', 'treatment', '2014-12-07T19:35:00', '2014-12-07T19:35:00', '', 5285, 3382.5);
1729
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022011, '2833', 'control', '2014-11-28T12:18:00', '2014-11-28T12:18:00', '', 4782, 1488.8);
1730
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020502, '2835', 'treatment', '2014-12-09T08:08:00', '2014-12-09T08:08:00', '', 2985, 1154.5);
1731
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022055, '2836', 'control', '2014-11-27T20:19:00', '2014-11-27T20:19:00', '', 3290, 1427);
1732
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021582, '2837', 'treatment', '2014-12-02T08:17:00', '2014-12-02T08:17:00', '', 11870, 5461);
1733
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022754, '2839', 'treatment', '2014-11-19T14:35:00', '2014-11-19T14:35:00', '', 14270, 6715);
1734
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021682, '2840', 'control', '2014-12-01T15:51:00', '2014-12-01T15:51:00', '', 4790, 2772);
1735
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021325, '2843', 'control', '2014-12-03T18:48:00', '2014-12-03T18:48:00', '', 17070, 11409);
1736
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020436, '2847', 'treatment', '2014-12-09T12:53:00', '2014-12-09T12:53:00', '', 5285, 1757);
1737
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021208, '2849', 'control', '2014-12-04T13:06:00', '2014-12-04T13:06:00', '', 6590, 3512);
1738
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022455, '2852', 'control', '2014-11-23T20:07:00', '2014-11-23T20:07:00', '', 4085, 1916);
1739
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021649, '2853', 'control', '2014-12-01T18:43:00', '2014-12-01T18:43:00', '', 6765, 4296.5);
1740
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021917, '2855', 'treatment', '2014-11-29T13:44:00', '2014-11-29T13:44:00', '', 10190, 4611);
1741
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022935, '2856', 'control', '2014-11-17T09:45:00', '2014-11-17T09:45:00', '', 3790, 1887);
1742
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020461, '2858', 'treatment', '2014-12-09T11:29:00', '2014-12-09T11:29:00', '', 2985, 1392);
1743
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021096, '2859', 'treatment', '2014-12-05T07:06:00', '2014-12-05T07:06:00', '', 4290, 1755);
1744
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022269, '2862', 'treatment', '2014-11-25T13:58:00', '2014-11-25T13:58:00', '', 8485, 2987);
1745
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021679, '2865', 'control', '2014-12-01T15:57:00', '2014-12-01T15:57:00', '', 9065, 3242);
1746
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022883, '2868', 'treatment', '2014-11-17T20:08:00', '2014-11-17T20:08:00', '', 9180, 3288);
1747
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022530, '2869', 'treatment', '2014-11-22T20:00:00', '2014-11-22T20:00:00', '', 3290, 1862);
1748
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021819, '2870', 'treatment', '2014-11-30T16:53:00', '2014-11-30T16:53:00', '', 5290, 2612);
1749
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022444, '2872', 'treatment', '2014-11-23T21:06:00', '2014-11-23T21:06:00', '', 6585, 2973.5);
1750
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023073, '2877', 'control', '2014-11-14T10:11:00', '2014-11-14T10:11:00', '', 5790, 2580);
1751
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020416, '2881', 'control', '2014-12-09T13:43:00', '2014-12-09T13:43:00', '', 3290, 933);
1752
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020454, '2885', 'treatment', '2014-12-09T11:52:00', '2014-12-09T11:52:00', '', 2985, 1304);
1753
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021533, '2886', 'control', '2014-12-02T14:22:00', '2014-12-02T14:22:00', '', 10980, 3938);
1754
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021270, '2890', 'control', '2014-12-04T02:28:00', '2014-12-04T02:28:00', '', 3790, 2153);
1755
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021552, '2895', 'control', '2014-12-02T12:24:00', '2014-12-02T12:24:00', '', 2790, 1614);
1756
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020239, '2896', 'treatment', '2014-12-10T13:47:00', '2014-12-10T13:47:00', '', 4185, 1700.5);
1757
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021355, '2897', 'treatment', '2014-12-03T15:56:00', '2014-12-03T15:56:00', '', 15165, 10183.5);
1758
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021412, '2900', 'treatment', '2014-12-03T11:23:00', '2014-12-03T11:23:00', '', 9485, 6265.5);
1759
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020691, '2907', 'control', '2014-12-07T21:35:00', '2014-12-07T21:35:00', '', 6580, 2872);
1760
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020168, '2911', 'control', '2014-12-10T20:12:00', '2014-12-10T20:12:00', '', 8480, 2970);
1761
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020257, '2913', 'control', '2014-12-10T11:26:00', '2014-12-10T11:26:00', '', 6285, 3412);
1762
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021840, '2919', 'treatment', '2014-11-30T14:37:00', '2014-11-30T14:37:00', '', 5385, 2327.5);
1763
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020919, '2920', 'control', '2014-12-06T13:31:00', '2014-12-06T13:31:00', '', 4790, 1443);
1764
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020593, '2921', 'treatment', '2014-12-08T15:01:00', '2014-12-08T15:01:00', '', 3290, 976);
1765
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022805, '2922', 'control', '2014-11-19T07:57:00', '2014-11-19T07:57:00', '', 16475, 6098);
1766
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020826, '2925', 'control', '2014-12-07T10:15:00', '2014-12-07T10:15:00', '', 5980, 2061);
1767
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022246, '2926', 'treatment', '2014-11-25T17:39:00', '2014-11-25T17:39:00', '', 9975, 3490);
1768
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022830, '2928', 'control', '2014-11-18T19:28:00', '2014-11-18T19:28:00', '', 11180, 4084);
1769
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020677, '2813', 'treatment', '2014-12-07T22:50:00', '2014-12-07T22:50:00', 5022823, 5780, 1876);
1770
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020355, '2862', 'treatment', '2014-12-09T19:30:00', '2014-12-09T19:30:00', 5022269, 3585, 2014.5);
1771
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018056, '2926', '', '2014-12-22T16:04:00', '2014-12-22T16:04:00', 5022246, 3290, 1774);
1772
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018141, '2928', '', '2014-12-21T15:41:00', '2014-12-21T15:41:00', 5022830, 9485, 4278.5);
1773
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023063, '2931', 'treatment', '2014-11-14T17:08:00', '2014-11-14T17:08:00', '', 4380, 1191);
1774
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020741, '2933', 'control', '2014-12-07T17:21:00', '2014-12-07T17:21:00', '', 9985, 3505);
1775
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022014, '2934', 'control', '2014-11-28T11:32:00', '2014-11-28T11:32:00', '', 8131, 5185.7);
1776
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021148, '2936', 'control', '2014-12-04T19:39:00', '2014-12-04T19:39:00', '', 9475, 4241.5);
1777
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021812, '2939', 'control', '2014-11-30T17:43:00', '2014-11-30T17:43:00', '', 35265, 24111.5);
1778
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020808, '2943', 'treatment', '2014-12-07T12:11:00', '2014-12-07T12:11:00', '', 2090, 922);
1779
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022116, '2945', 'control', '2014-11-27T07:05:00', '2014-11-27T07:05:00', '', 14485, 9653.5);
1780
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020967, '2946', 'treatment', '2014-12-05T20:36:00', '2014-12-05T20:36:00', '', 10470, 5881);
1781
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021581, '2947', 'treatment', '2014-12-02T08:49:00', '2014-12-02T08:49:00', '', 5180, 3169);
1782
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022722, '2950', 'treatment', '2014-11-19T18:42:00', '2014-11-19T18:42:00', '', 5285, 2327.5);
1783
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022917, '2954', 'treatment', '2014-11-17T14:17:00', '2014-11-17T14:17:00', '', 9375, 4124.5);
1784
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021484, '2955', 'control', '2014-12-02T18:38:00', '2014-12-02T18:38:00', '', 7280, 3935);
1785
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021362, '2956', 'control', '2014-12-03T15:34:00', '2014-12-03T15:34:00', '', 11990, 4426);
1786
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020899, '2957', 'control', '2014-12-06T16:05:00', '2014-12-06T16:05:00', '', 17055, 11507.5);
1787
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022401, '2960', 'treatment', '2014-11-24T12:08:00', '2014-11-24T12:08:00', '', 10685, 5952);
1788
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021348, '2962', 'control', '2014-12-03T16:23:00', '2014-12-03T16:23:00', '', 17985, 6641);
1789
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021083, '2963', 'control', '2014-12-05T09:12:00', '2014-12-05T09:12:00', '', 2190, 984);
1790
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021783, '2966', 'treatment', '2014-11-30T20:25:00', '2014-11-30T20:25:00', '', 14275, 5347);
1791
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020507, '2970', 'treatment', '2014-12-09T07:00:00', '2014-12-09T07:00:00', '', 6785, 2251);
1792
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020384, '2971', 'control', '2014-12-09T17:14:00', '2014-12-09T17:14:00', '', 7375, 2600);
1793
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021194, '2973', 'control', '2014-12-04T15:03:00', '2014-12-04T15:03:00', '', 16750, 6357);
1794
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020896, '2975', 'treatment', '2014-12-06T16:23:00', '2014-12-06T16:23:00', '', 14290, 6665);
1795
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021347, '2976', 'control', '2014-12-03T16:24:00', '2014-12-03T16:24:00', '', 9270, 4065);
1796
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022351, '2977', 'treatment', '2014-11-24T19:00:00', '2014-11-24T19:00:00', '', 3485, 1223.5);
1797
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021415, '2979', 'control', '2014-12-03T11:06:00', '2014-12-03T11:06:00', '', 4090, 2379);
1798
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022225, '2980', 'control', '2014-11-25T19:46:00', '2014-11-25T19:46:00', '', 3290, 1195);
1799
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022103, '2982', 'treatment', '2014-11-27T12:00:00', '2014-11-27T12:00:00', '', 5685, 3439.5);
1800
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021387, '2983', 'treatment', '2014-12-03T13:23:00', '2014-12-03T13:23:00', '', 10185, 6666.5);
1801
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022706, '2984', 'control', '2014-11-19T21:17:00', '2014-11-19T21:17:00', '', 12670, 4565);
1802
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020137, '2985', 'control', '2014-12-10T21:49:00', '2014-12-10T21:49:00', '', 4290, 1550);
1803
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021359, '2986', 'control', '2014-12-03T15:49:00', '2014-12-03T15:49:00', '', 5285, 2686);
1804
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022083, '2988', 'treatment', '2014-11-27T14:41:00', '2014-11-27T14:41:00', '', 11875, 5548.5);
1805
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020857, '2989', 'control', '2014-12-06T21:24:00', '2014-12-06T21:24:00', '', 4790, 2092);
1806
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022068, '2990', 'control', '2014-11-27T17:53:00', '2014-11-27T17:53:00', '', 9960, 4649);
1807
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021426, '2991', 'treatment', '2014-12-03T08:57:00', '2014-12-03T08:57:00', '', 6080, 2680);
1808
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021674, '2993', 'treatment', '2014-12-01T16:39:00', '2014-12-01T16:39:00', '', 13170, 8907);
1809
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021653, '2994', 'treatment', '2014-12-01T18:33:00', '2014-12-01T18:33:00', '', 4985, 1527);
1810
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020496, '2995', 'treatment', '2014-12-09T08:49:00', '2014-12-09T08:49:00', '', 13880, 5043);
1811
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020594, '2996', 'control', '2014-12-08T14:52:00', '2014-12-08T14:52:00', '', 3790, 1689);
1812
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020546, '2999', 'treatment', '2014-12-08T19:33:00', '2014-12-08T19:33:00', '', 9280, 3362);
1813
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022032, '3002', 'treatment', '2014-11-28T09:10:00', '2014-11-28T09:10:00', '', 14340, 5271);
1814
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020695, '3003', 'control', '2014-12-07T21:01:00', '2014-12-07T21:01:00', '', 8175, 5422.5);
1815
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023044, '3005', 'control', '2014-11-15T08:26:00', '2014-11-15T08:26:00', '', 5790, 3067);
1816
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023100, '3006', 'treatment', '2014-11-13T20:24:00', '2014-11-13T20:24:00', '', 2490, 1385);
1817
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020587, '3008', 'treatment', '2014-12-08T16:21:00', '2014-12-08T16:21:00', '', 7280, 4573);
1818
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020694, '3010', 'treatment', '2014-12-07T21:23:00', '2014-12-07T21:23:00', '', 6880, 4470);
1819
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022760, '3012', 'treatment', '2014-11-19T14:04:00', '2014-11-19T14:04:00', '', 3790, 1474);
1820
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022008, '3015', 'control', '2014-11-28T12:34:00', '2014-11-28T12:34:00', '', 3590, 1471);
1821
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020559, '3016', 'control', '2014-12-08T18:54:00', '2014-12-08T18:54:00', '', 6285, 2635.5);
1822
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020281, '3018', 'control', '2014-12-10T08:47:00', '2014-12-10T08:47:00', '', 3090, 975);
1823
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022827, '3019', 'control', '2014-11-18T20:41:00', '2014-11-18T20:41:00', '', 11475, 7723.5);
1824
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021474, '3020', 'control', '2014-12-02T19:27:00', '2014-12-02T19:27:00', '', 4090, 1321);
1825
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022849, '3022', 'treatment', '2014-11-18T15:12:00', '2014-11-18T15:12:00', '', 7975, 3427.5);
1826
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022962, '3023', 'treatment', '2014-11-16T20:46:00', '2014-11-16T20:46:00', '', 4185, 2424.5);
1827
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020552, '3025', 'treatment', '2014-12-08T19:19:00', '2014-12-08T19:19:00', '', 7790, 5143);
1828
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020528, '3028', 'treatment', '2014-12-08T21:55:00', '2014-12-08T21:55:00', '', 12475, 8241.5);
1829
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021729, '3031', 'control', '2014-12-01T10:11:00', '2014-12-01T10:11:00', '', 4790, 2999);
1830
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020890, '3032', 'control', '2014-12-06T17:14:00', '2014-12-06T17:14:00', '', 8290, 3655);
1831
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022363, '3033', 'treatment', '2014-11-24T17:29:00', '2014-11-24T17:29:00', '', 2490, 700);
1832
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021538, '3037', 'control', '2014-12-02T13:40:00', '2014-12-02T13:40:00', '', 9775, 5457);
1833
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022037, '3039', 'control', '2014-11-28T09:00:00', '2014-11-28T09:00:00', '', 9253, 5937.1);
1834
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022249, '3040', 'treatment', '2014-11-25T17:19:00', '2014-11-25T17:19:00', '', 11485, 5329.5);
1835
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020621, '3041', 'control', '2014-12-08T12:19:00', '2014-12-08T12:19:00', '', 12485, 4628);
1836
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020190, '3042', 'control', '2014-12-10T19:11:00', '2014-12-10T19:11:00', '', 7785, 3467.5);
1837
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020633, '2993', 'control', '2014-12-08T11:04:00', '2014-12-08T11:04:00', 5021674, 6285, 2055);
1838
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021078, '3043', 'treatment', '2014-11-26T09:57:00', '2014-11-26T09:57:00', '', 11985, 7901.5);
1839
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022653, '3044', 'treatment', '2014-11-20T17:27:00', '2014-11-20T17:27:00', '', 5780, 2509);
1840
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021485, '3045', 'treatment', '2014-12-02T18:31:00', '2014-12-02T18:31:00', '', 3290, 1496);
1841
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021008, '3046', 'treatment', '2014-12-05T16:23:00', '2014-12-05T16:23:00', '', 6790, 4428);
1842
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020297, '3047', 'control', '2014-12-09T23:58:00', '2014-12-09T23:58:00', '', 10970, 7317);
1843
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021804, '3048', 'control', '2014-11-30T18:42:00', '2014-11-30T18:42:00', '', 18775, 10754);
1844
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021483, '3049', 'control', '2014-12-02T18:39:00', '2014-12-02T18:39:00', '', 2290, 874);
1845
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021610, '3050', 'treatment', '2014-12-01T21:49:00', '2014-12-01T21:49:00', '', 5290, 2615);
1846
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021229, '3051', 'control', '2014-12-04T11:24:00', '2014-12-04T11:24:00', '', 4790, 1500);
1847
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021303, '3053', 'treatment', '2014-12-03T20:22:00', '2014-12-03T20:22:00', '', 2790, 860);
1848
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020163, '3058', 'control', '2014-12-10T20:26:00', '2014-12-10T20:26:00', '', 6590, 2942);
1849
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021295, '3059', 'control', '2014-12-03T20:57:00', '2014-12-03T20:57:00', '', 15490, 5793);
1850
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022616, '3060', 'control', '2014-11-21T09:43:00', '2014-11-21T09:43:00', '', 4790, 1950);
1851
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022163, '3063', 'treatment', '2014-11-26T15:03:00', '2014-11-26T15:03:00', '', 10990, 4907);
1852
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021158, '3065', 'treatment', '2014-12-04T19:10:00', '2014-12-04T19:10:00', '', 15875, 5927);
1853
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022344, '3069', 'treatment', '2014-11-24T19:53:00', '2014-11-24T19:53:00', '', 2785, 1367.5);
1854
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020274, '3070', 'control', '2014-12-10T10:21:00', '2014-12-10T10:21:00', '', 10280, 3524);
1855
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022906, '3072', 'control', '2014-11-17T16:10:00', '2014-11-17T16:10:00', '', 5380, 2109);
1856
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021837, '3074', 'control', '2014-11-30T13:13:00', '2014-11-30T13:13:00', '', 8385, 3054);
1857
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021521, '3076', 'treatment', '2014-12-02T15:29:00', '2014-12-02T15:29:00', '', 47335, 18477);
1858
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021605, '3078', 'treatment', '2014-12-01T23:01:00', '2014-12-01T23:01:00', '', 9985, 5498);
1859
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020784, '3079', 'treatment', '2014-12-07T14:01:00', '2014-12-07T14:01:00', '', 3290, 1938);
1860
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020567, '3080', 'treatment', '2014-12-08T18:07:00', '2014-12-08T18:07:00', '', 9165, 4138.5);
1861
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022131, '3082', 'control', '2014-11-26T20:56:00', '2014-11-26T20:56:00', '', 1990, 878);
1862
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022614, '3084', 'treatment', '2014-11-21T09:54:00', '2014-11-21T09:54:00', '', 9580, 6127);
1863
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022710, '3085', 'treatment', '2014-11-19T20:38:00', '2014-11-19T20:38:00', '', 2185, 652.5);
1864
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021629, '3086', 'control', '2014-12-01T20:24:00', '2014-12-01T20:24:00', '', 9580, 4214);
1865
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020956, '3088', 'control', '2014-12-05T22:38:00', '2014-12-05T22:38:00', '', 10285, 4676.5);
1866
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021606, '3089', 'control', '2014-12-01T22:51:00', '2014-12-01T22:51:00', '', 5585, 2854);
1867
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021493, '3090', 'control', '2014-12-02T17:53:00', '2014-12-02T17:53:00', '', 3785, 998);
1868
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022489, '3091', 'control', '2014-11-23T15:50:00', '2014-11-23T15:50:00', '', 8675, 4623);
1869
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020852, '3093', 'control', '2014-12-06T22:21:00', '2014-12-06T22:21:00', '', 6175, 2506.5);
1870
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020958, '3094', 'treatment', '2014-12-05T22:14:00', '2014-12-05T22:14:00', '', 6385, 3254);
1871
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021331, '3096', 'control', '2014-12-03T18:02:00', '2014-12-03T18:02:00', '', 16065, 9181);
1872
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023094, '3097', 'control', '2014-11-13T20:47:00', '2014-11-13T20:47:00', '', 5290, 3261);
1873
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022480, '3098', 'control', '2014-11-23T16:38:00', '2014-11-23T16:38:00', '', 10280, 4822);
1874
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022959, '3101', 'treatment', '2014-11-16T21:19:00', '2014-11-16T21:19:00', '', 7085, 2460);
1875
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021885, '3103', 'control', '2014-11-29T22:08:00', '2014-11-29T22:08:00', '', 8380, 4558);
1876
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020597, '3104', 'control', '2014-12-08T14:28:00', '2014-12-08T14:28:00', '', 2790, 1476);
1877
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022612, '3105', 'treatment', '2014-11-21T10:17:00', '2014-11-21T10:17:00', '', 4185, 2101);
1878
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022307, '3108', 'treatment', '2014-11-25T08:43:00', '2014-11-25T08:43:00', '', 53390, 36833);
1879
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023020, '3110', 'treatment', '2014-11-15T20:46:00', '2014-11-15T20:46:00', '', 9280, 5229);
1880
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020402, '3111', 'control', '2014-12-09T14:52:00', '2014-12-09T14:52:00', '', 4785, 2942.5);
1881
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021413, '3112', 'treatment', '2014-12-03T11:22:00', '2014-12-03T11:22:00', '', 8890, 2972);
1882
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020676, '3114', 'treatment', '2014-12-07T22:53:00', '2014-12-07T22:53:00', '', 5290, 3218);
1883
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022430, '3115', 'treatment', '2014-11-24T07:15:00', '2014-11-24T07:15:00', '', 6790, 3735);
1884
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020933, '3119', 'treatment', '2014-12-06T11:18:00', '2014-12-06T11:18:00', '', 6285, 2019);
1885
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020700, '3121', 'control', '2014-12-07T20:32:00', '2014-12-07T20:32:00', '', 8580, 3783);
1886
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021449, '3122', 'treatment', '2014-12-02T21:08:00', '2014-12-02T21:08:00', '', 15995, 10767.5);
1887
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020293, '3123', 'control', '2014-12-10T07:03:00', '2014-12-10T07:03:00', '', 6270, 3989);
1888
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021376, '3125', 'control', '2014-12-03T14:14:00', '2014-12-03T14:14:00', '', 7285, 2580);
1889
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023107, '3127', 'control', '2014-11-13T19:19:00', '2014-11-13T19:19:00', '', 5290, 3238);
1890
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021557, '3128', 'control', '2014-12-02T12:07:00', '2014-12-02T12:07:00', '', 3290, 903);
1891
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020815, '3129', 'control', '2014-12-07T11:25:00', '2014-12-07T11:25:00', '', 4790, 2066);
1892
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020522, '3135', 'treatment', '2014-12-08T22:06:00', '2014-12-08T22:06:00', '', 16890, 6453);
1893
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023028, '3137', 'control', '2014-11-15T18:49:00', '2014-11-15T18:49:00', '', 11990, 8038);
1894
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022523, '3138', 'treatment', '2014-11-23T04:59:00', '2014-11-23T04:59:00', '', 3790, 972);
1895
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022875, '3139', 'control', '2014-11-17T21:37:00', '2014-11-17T21:37:00', '', 13980, 6420);
1896
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020178, '3140', 'treatment', '2014-12-10T19:47:00', '2014-12-10T19:47:00', '', 4185, 1319);
1897
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020279, '3142', 'treatment', '2014-12-10T09:24:00', '2014-12-10T09:24:00', '', 8775, 3002);
1898
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022282, '3143', 'control', '2014-11-25T12:11:00', '2014-11-25T12:11:00', '', 6685, 2366);
1899
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022531, '3144', 'control', '2014-11-22T19:52:00', '2014-11-22T19:52:00', '', 9990, 3572);
1900
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020848, '3145', 'control', '2014-12-06T23:37:00', '2014-12-06T23:37:00', '', 6790, 4426);
1901
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021623, '3148', 'treatment', '2014-12-01T20:47:00', '2014-12-01T20:47:00', '', 4790, 1835);
1902
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021900, '3150', 'control', '2014-11-29T17:19:00', '2014-11-29T17:19:00', '', 6590, 4111);
1903
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020588, '3151', 'control', '2014-12-08T16:04:00', '2014-12-08T16:04:00', '', 3185, 1797.5);
1904
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021314, '3152', 'treatment', '2014-12-03T19:57:00', '2014-12-03T19:57:00', '', 7375, 3971);
1905
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022256, '3157', 'control', '2014-11-25T16:27:00', '2014-11-25T16:27:00', '', 11080, 4068);
1906
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022277, '3159', 'control', '2014-11-25T12:57:00', '2014-11-25T12:57:00', '', 13270, 4794);
1907
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020335, '3160', 'treatment', '2014-12-09T20:05:00', '2014-12-09T20:05:00', '', 2790, 877);
1908
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022621, '3161', 'treatment', '2014-11-21T08:49:00', '2014-11-21T08:49:00', '', 25250, 9612);
1909
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021612, '3162', 'treatment', '2014-12-01T22:13:00', '2014-12-01T22:13:00', '', 5290, 3276);
1910
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021124, '3165', 'treatment', '2014-12-04T20:59:00', '2014-12-04T20:59:00', '', 14090, 6491);
1911
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020548, '3167', 'treatment', '2014-12-08T19:33:00', '2014-12-08T19:33:00', '', 9090, 3040);
1912
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021009, '3169', 'control', '2014-12-05T16:09:00', '2014-12-05T16:09:00', '', 6585, 4205.5);
1913
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020759, '3171', 'control', '2014-12-07T15:56:00', '2014-12-07T15:56:00', '', 2290, 1043);
1914
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022380, '3172', 'treatment', '2014-11-24T15:32:00', '2014-11-24T15:32:00', '', 13975, 9371.5);
1915
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020949, '3174', 'control', '2014-12-06T01:21:00', '2014-12-06T01:21:00', '', 9285, 3153);
1916
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020405, '3178', 'treatment', '2014-12-09T14:23:00', '2014-12-09T14:23:00', '', 3185, 1515);
1917
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020618, '3179', 'treatment', '2014-12-08T12:28:00', '2014-12-08T12:28:00', '', 6090, 3923);
1918
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022592, '3181', 'treatment', '2014-11-21T14:19:00', '2014-11-21T14:19:00', '', 9990, 5478);
1919
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022261, '3184', 'treatment', '2014-11-25T15:54:00', '2014-11-25T15:54:00', '', 10385, 6769.5);
1920
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022354, '3185', 'treatment', '2014-11-24T18:56:00', '2014-11-24T18:56:00', '', 7085, 3070.5);
1921
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022993, '3186', 'control', '2014-11-16T15:23:00', '2014-11-16T15:23:00', '', 4590, 2762);
1922
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023012, '3193', 'treatment', '2014-11-16T08:07:00', '2014-11-16T08:07:00', '', 7370, 4019);
1923
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022568, '3195', 'control', '2014-11-22T07:41:00', '2014-11-22T07:41:00', '', 6790, 4235);
1924
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021913, '3196', 'control', '2014-11-29T14:32:00', '2014-11-29T14:32:00', '', 5185, 1691);
1925
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021590, '3197', 'treatment', '2014-12-02T07:11:00', '2014-12-02T07:11:00', '', 3790, 959);
1926
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021241, '3198', 'control', '2014-12-04T10:17:00', '2014-12-04T10:17:00', '', 15670, 9060);
1927
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022602, '3200', 'treatment', '2014-11-21T13:43:00', '2014-11-21T13:43:00', '', 7085, 3825);
1928
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021465, '3201', 'treatment', '2014-12-02T20:14:00', '2014-12-02T20:14:00', '', 6185, 2026);
1929
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021153, '3203', 'treatment', '2014-12-04T19:25:00', '2014-12-04T19:25:00', '', 13375, 7502);
1930
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020903, '3204', 'treatment', '2014-12-06T15:32:00', '2014-12-06T15:32:00', '', 12380, 8292);
1931
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022919, '3205', 'treatment', '2014-11-17T13:41:00', '2014-11-17T13:41:00', '', 11985, 4411);
1932
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022098, '3210', 'treatment', '2014-11-27T12:47:00', '2014-11-27T12:47:00', '', 3985, 1036);
1933
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020140, '3211', 'treatment', '2014-12-10T21:34:00', '2014-12-10T21:34:00', '', 9975, 6513.5);
1934
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021351, '3212', 'control', '2014-12-03T16:09:00', '2014-12-03T16:09:00', '', 5285, 2249.5);
1935
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020356, '3213', 'control', '2014-12-09T19:30:00', '2014-12-09T19:30:00', '', 3785, 1673);
1936
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020938, '3214', 'control', '2014-12-06T09:42:00', '2014-12-06T09:42:00', '', 9580, 4303);
1937
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022009, '3215', 'control', '2014-11-28T12:18:00', '2014-11-28T12:18:00', '', 11970, 5395);
1938
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022590, '3216', 'control', '2014-11-21T15:54:00', '2014-11-21T15:54:00', '', 3290, 1725);
1939
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020718, '3224', 'control', '2014-12-07T19:08:00', '2014-12-07T19:08:00', '', 9075, 5005);
1940
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021695, '3225', 'control', '2014-12-01T14:29:00', '2014-12-01T14:29:00', '', 5780, 1984);
1941
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022887, '3226', 'treatment', '2014-11-17T19:36:00', '2014-11-17T19:36:00', '', 19975, 9630.5);
1942
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020765, '3227', 'control', '2014-12-07T15:35:00', '2014-12-07T15:35:00', '', 11675, 7625.5);
1943
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021383, '3228', 'control', '2014-12-03T13:37:00', '2014-12-03T13:37:00', '', 11980, 6887);
1944
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021271, '3229', 'treatment', '2014-12-03T23:24:00', '2014-12-03T23:24:00', '', 33540, 22917);
1945
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022789, '3230', 'treatment', '2014-11-19T11:26:00', '2014-11-19T11:26:00', '', 4290, 2538);
1946
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020438, '3231', 'treatment', '2014-12-09T12:41:00', '2014-12-09T12:41:00', '', 4290, 1550);
1947
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021337, '3233', 'control', '2014-12-03T17:33:00', '2014-12-03T17:33:00', '', 11475, 4120);
1948
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020928, '3235', 'treatment', '2014-12-06T12:12:00', '2014-12-06T12:12:00', '', 4085, 2269.5);
1949
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021167, '3238', 'control', '2014-12-04T18:15:00', '2014-12-04T18:15:00', '', 7485, 4697.5);
1950
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023040, '3239', 'control', '2014-11-15T12:01:00', '2014-11-15T12:01:00', '', 7790, 2813);
1951
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022348, '3245', 'treatment', '2014-11-24T19:26:00', '2014-11-24T19:26:00', '', 4285, 2497.5);
1952
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020141, '3246', 'treatment', '2014-12-10T21:30:00', '2014-12-10T21:30:00', '', 9075, 5775.5);
1953
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020901, '3250', 'control', '2014-12-06T15:55:00', '2014-12-06T15:55:00', '', 4790, 1435);
1954
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020203, '3255', 'control', '2014-12-10T18:04:00', '2014-12-10T18:04:00', '', 2790, 1591);
1955
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022326, '3256', 'treatment', '2014-11-24T23:32:00', '2014-11-24T23:32:00', '', 4790, 1834);
1956
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023043, '3260', 'treatment', '2014-11-15T08:48:00', '2014-11-15T08:48:00', '', 11780, 4192);
1957
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020640, '3261', 'control', '2014-12-08T10:15:00', '2014-12-08T10:15:00', '', 2590, 1443);
1958
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020227, '3262', 'control', '2014-12-10T14:45:00', '2014-12-10T14:45:00', '', 4785, 2532);
1959
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021720, '3264', 'control', '2014-12-01T11:43:00', '2014-12-01T11:43:00', '', 4785, 1552);
1960
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020706, '3268', 'control', '2014-12-07T19:47:00', '2014-12-07T19:47:00', '', 9985, 5449);
1961
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022635, '3273', 'control', '2014-11-20T20:41:00', '2014-11-20T20:41:00', '', 11785, 7675.5);
1962
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022662, '3275', 'treatment', '2014-11-20T15:10:00', '2014-11-20T15:10:00', '', 9175, 4096.5);
1963
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022687, '3276', 'treatment', '2014-11-20T08:24:00', '2014-11-20T08:24:00', '', 4290, 1610);
1964
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022638, '3278', 'control', '2014-11-20T20:21:00', '2014-11-20T20:21:00', '', 8475, 3803.5);
1965
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022159, '3279', 'control', '2014-11-26T16:28:00', '2014-11-26T16:28:00', '', 7680, 2481);
1966
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020851, '3280', 'treatment', '2014-12-06T22:48:00', '2014-12-06T22:48:00', '', 18855, 8997.5);
1967
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020978, '3283', 'control', '2014-12-05T19:53:00', '2014-12-05T19:53:00', '', 4790, 2491);
1968
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020119, '3284', 'control', '2014-12-10T23:40:00', '2014-12-10T23:40:00', '', 4790, 2036);
1969
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022879, '3290', 'treatment', '2014-11-17T20:31:00', '2014-11-17T20:31:00', '', 10290, 5721);
1970
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022177, '3291', 'treatment', '2014-11-26T11:36:00', '2014-11-26T11:36:00', '', 4090, 1101);
1971
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020123, '3292', 'control', '2014-12-10T22:38:00', '2014-12-10T22:38:00', '', 8975, 3251);
1972
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020581, '3295', 'control', '2014-12-08T16:34:00', '2014-12-08T16:34:00', '', 4790, 1855);
1973
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020953, '3298', 'control', '2014-12-05T22:49:00', '2014-12-05T22:49:00', '', 12480, 5772);
1974
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020531, '3299', 'control', '2014-12-08T21:29:00', '2014-12-08T21:29:00', '', 8970, 4019);
1975
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020326, '3301', 'control', '2014-12-09T21:04:00', '2014-12-09T21:04:00', '', 4790, 2491);
1976
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022353, '3305', 'control', '2014-11-24T18:57:00', '2014-11-24T18:57:00', '', 9565, 3310);
1977
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021040, '3306', 'control', '2014-12-05T13:22:00', '2014-12-05T13:22:00', '', 9580, 3380);
1978
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022837, '3308', 'treatment', '2014-11-18T18:12:00', '2014-11-18T18:12:00', '', 11290, 4194);
1979
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020881, '3309', 'control', '2014-12-06T19:14:00', '2014-12-06T19:14:00', '', 3590, 1979);
1980
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023058, '3311', 'treatment', '2014-11-14T18:20:00', '2014-11-14T18:20:00', '', 4790, 2572);
1981
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020252, '3312', 'control', '2014-12-10T12:18:00', '2014-12-10T12:18:00', '', 3490, 1028);
1982
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022189, '3313', 'treatment', '2014-11-26T08:20:00', '2014-11-26T08:20:00', '', 7290, 3931);
1983
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023089, '3314', 'control', '2014-11-13T22:10:00', '2014-11-13T22:10:00', '', 5290, 2666);
1984
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021574, '3315', 'control', '2014-12-02T09:57:00', '2014-12-02T09:57:00', '', 3290, 866);
1985
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023038, '3319', 'control', '2014-11-15T14:02:00', '2014-11-15T14:02:00', '', 7785, 3557.5);
1986
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021909, '3320', 'control', '2014-11-29T15:27:00', '2014-11-29T15:27:00', '', 31985, 15554.5);
1987
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020609, '3325', 'treatment', '2014-12-08T13:13:00', '2014-12-08T13:13:00', '', 6090, 2020);
1988
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021888, '3328', 'treatment', '2014-11-29T21:37:00', '2014-11-29T21:37:00', '', 2490, 612);
1989
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020558, '3330', 'control', '2014-12-08T18:59:00', '2014-12-08T18:59:00', '', 9375, 5280);
1990
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020912, '3332', 'treatment', '2014-12-06T14:26:00', '2014-12-06T14:26:00', '', 16480, 9370);
1991
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023031, '3333', 'treatment', '2014-11-15T17:35:00', '2014-11-15T17:35:00', '', 5790, 3659);
1992
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021499, '3335', 'treatment', '2014-12-02T17:10:00', '2014-12-02T17:10:00', '', 5575, 1868);
1993
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023067, '3338', 'control', '2014-11-14T13:06:00', '2014-11-14T13:06:00', '', 12955, 4675);
1994
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021886, '3343', 'control', '2014-11-29T21:59:00', '2014-11-29T21:59:00', '', 2985, 894);
1995
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022850, '3346', 'treatment', '2014-11-18T15:12:00', '2014-11-18T15:12:00', '', 3790, 1767);
1996
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022482, '3348', 'treatment', '2014-11-23T16:30:00', '2014-11-23T16:30:00', '', 5185, 2811);
1997
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020303, '3350', 'treatment', '2014-12-09T22:23:00', '2014-12-09T22:23:00', '', 15175, 7014.5);
1998
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021063, '3351', 'treatment', '2014-12-05T11:38:00', '2014-12-05T11:38:00', '', 4285, 1621.5);
1999
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021849, '3353', 'control', '2014-11-30T13:04:00', '2014-11-30T13:04:00', '', 6475, 2724.5);
2000
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022946, '3354', 'control', '2014-11-17T07:47:00', '2014-11-17T07:47:00', '', 6090, 3120);
2001
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021378, '3355', 'control', '2014-12-03T14:01:00', '2014-12-03T14:01:00', '', 11485, 5224.5);
2002
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020325, '3356', 'control', '2014-12-09T21:10:00', '2014-12-09T21:10:00', '', 5590, 3473);
2003
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022314, '3357', 'treatment', '2014-11-25T07:50:00', '2014-11-25T07:50:00', '', 7965, 3411.5);
2004
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020805, '3359', 'control', '2014-12-07T12:19:00', '2014-12-07T12:19:00', '', 15665, 7277.5);
2005
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021448, '3361', 'treatment', '2014-12-02T21:33:00', '2014-12-02T21:33:00', '', 7580, 3411);
2006
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021302, '3364', 'control', '2014-12-03T20:40:00', '2014-12-03T20:40:00', '', 9680, 3379);
2007
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021334, '3365', 'treatment', '2014-12-03T17:37:00', '2014-12-03T17:37:00', '', 10465, 6907.5);
2008
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020702, '3367', 'control', '2014-12-07T20:12:00', '2014-12-07T20:12:00', '', 9365, 5266);
2009
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021408, '3370', 'control', '2014-12-03T11:50:00', '2014-12-03T11:50:00', '', 5285, 2702);
2010
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022882, '3372', 'treatment', '2014-11-17T20:11:00', '2014-11-17T20:11:00', '', 7285, 4675.5);
2011
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021761, '3378', 'control', '2014-12-01T06:07:00', '2014-12-01T06:07:00', '', 14275, 6588.5);
2012
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020981, '3381', 'control', '2014-12-05T19:19:00', '2014-12-05T19:19:00', '', 3685, 1130);
2013
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021706, '3383', 'control', '2014-12-01T12:54:00', '2014-12-01T12:54:00', '', 8285, 5407.5);
2014
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022581, '3387', 'control', '2014-11-21T17:56:00', '2014-11-21T17:56:00', '', 4385, 2589.5);
2015
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020583, '3388', 'treatment', '2014-12-08T16:33:00', '2014-12-08T16:33:00', '', 3290, 1894);
2016
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022021, '3391', 'control', '2014-11-28T10:13:00', '2014-11-28T10:13:00', '', 10990, 6023);
2017
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021388, '3392', 'control', '2014-12-03T13:19:00', '2014-12-03T13:19:00', '', 3090, 775);
2018
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020534, '3393', 'treatment', '2014-12-08T21:13:00', '2014-12-08T21:13:00', '', 3090, 1005);
2019
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022691, '3395', 'control', '2014-11-20T07:01:00', '2014-11-20T07:01:00', '', 12495, 8402.5);
2020
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022175, '3398', 'control', '2014-11-26T12:18:00', '2014-11-26T12:18:00', '', 15455, 8822);
2021
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020709, '3399', 'control', '2014-12-07T19:35:00', '2014-12-07T19:35:00', '', 1790, 409);
2022
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021941, '3400', 'treatment', '2014-11-29T09:54:00', '2014-11-29T09:54:00', '', 6485, 3528);
2023
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022114, '3406', 'treatment', '2014-11-27T08:39:00', '2014-11-27T08:39:00', '', 7370, 2489);
2024
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022618, '3408', 'treatment', '2014-11-21T09:34:00', '2014-11-21T09:34:00', '', 5185, 2217.5);
2025
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021741, '3409', 'control', '2014-12-01T08:37:00', '2014-12-01T08:37:00', '', 32465, 19132);
2026
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020780, '3411', 'control', '2014-12-07T14:12:00', '2014-12-07T14:12:00', '', 16665, 8031.5);
2027
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021523, '3413', 'control', '2014-12-02T15:25:00', '2014-12-02T15:25:00', '', 4290, 2237);
2028
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022642, '3414', 'treatment', '2014-11-20T19:55:00', '2014-11-20T19:55:00', '', 6180, 3357);
2029
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021826, '3415', 'control', '2014-11-30T16:13:00', '2014-11-30T16:13:00', '', 3385, 1256.5);
2030
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021126, '3417', 'treatment', '2014-12-04T20:40:00', '2014-12-04T20:40:00', '', 4790, 1927);
2031
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020418, '3418', 'control', '2014-12-09T13:39:00', '2014-12-09T13:39:00', '', 7290, 3961);
2032
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020987, '3419', 'treatment', '2014-12-05T18:40:00', '2014-12-05T18:40:00', '', 10985, 4983.5);
2033
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020728, '3420', 'treatment', '2014-12-07T18:23:00', '2014-12-07T18:23:00', '', 7585, 4893.5);
2034
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021955, '3421', 'control', '2014-11-28T21:38:00', '2014-11-28T21:38:00', '', 10990, 5100);
2035
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021846, '3422', 'control', '2014-11-30T13:26:00', '2014-11-30T13:26:00', '', 17555, 11750.5);
2036
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020462, '3423', 'control', '2014-12-09T11:25:00', '2014-12-09T11:25:00', '', 1890, 584);
2037
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022208, '3424', 'treatment', '2014-11-25T21:10:00', '2014-11-25T21:10:00', '', 15995, 5857);
2038
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020469, '3426', 'control', '2014-12-09T10:46:00', '2014-12-09T10:46:00', '', 7290, 3342);
2039
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022436, '3427', 'treatment', '2014-11-23T22:54:00', '2014-11-23T22:54:00', '', 14480, 6653);
2040
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023098, '3428', 'treatment', '2014-11-13T20:31:00', '2014-11-13T20:31:00', '', 10970, 4920);
2041
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022402, '3429', 'treatment', '2014-11-24T11:38:00', '2014-11-24T11:38:00', '', 3490, 1288);
2042
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022649, '3431', 'treatment', '2014-11-20T19:07:00', '2014-11-20T19:07:00', '', 1790, 490);
2043
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022562, '3432', 'treatment', '2014-11-22T08:53:00', '2014-11-22T08:53:00', '', 10285, 6862.5);
2044
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020789, '3435', 'control', '2014-12-07T13:47:00', '2014-12-07T13:47:00', '', 9975, 4656.5);
2045
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022529, '3437', 'control', '2014-11-22T20:36:00', '2014-11-22T20:36:00', '', 6790, 4332);
2046
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021694, '3438', 'control', '2014-12-01T14:39:00', '2014-12-01T14:39:00', '', 5780, 3479);
2047
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021739, '3440', 'control', '2014-12-01T09:13:00', '2014-12-01T09:13:00', '', 3385, 1724);
2048
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022757, '3441', 'control', '2014-11-19T14:11:00', '2014-11-19T14:11:00', '', 6785, 2257);
2049
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021210, '3442', 'treatment', '2014-12-04T12:55:00', '2014-12-04T12:55:00', '', 12180, 4378);
2050
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021614, '3444', 'control', '2014-12-01T21:28:00', '2014-12-01T21:28:00', '', 10780, 5899);
2051
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020491, '3445', 'treatment', '2014-12-09T09:05:00', '2014-12-09T09:05:00', '', 9675, 4252.5);
2052
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022389, '3446', 'treatment', '2014-11-24T14:19:00', '2014-11-24T14:19:00', '', 7785, 4118);
2053
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023136, '3447', 'treatment', '2014-11-13T12:08:00', '2014-11-13T12:08:00', '', 4790, 2039);
2054
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020802, '3449', 'control', '2014-12-07T12:37:00', '2014-12-07T12:37:00', '', 9085, 5148);
2055
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021386, '3450', 'treatment', '2014-12-03T13:26:00', '2014-12-03T13:26:00', '', 9436, 5210.6);
2056
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021235, '3451', 'treatment', '2014-12-04T11:00:00', '2014-12-04T11:00:00', '', 3790, 1959);
2057
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022493, '3453', 'control', '2014-11-23T15:03:00', '2014-11-23T15:03:00', '', 9175, 5134);
2058
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020497, '3454', 'treatment', '2014-12-09T08:34:00', '2014-12-09T08:34:00', '', 6085, 2692.5);
2059
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022803, '3455', 'treatment', '2014-11-19T08:30:00', '2014-11-19T08:30:00', '', 4090, 2287);
2060
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021572, '3457', 'control', '2014-12-02T10:15:00', '2014-12-02T10:15:00', '', 12480, 8215);
2061
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022617, '3459', 'control', '2014-11-21T09:40:00', '2014-11-21T09:40:00', '', 6080, 2603);
2062
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021364, '3460', 'treatment', '2014-12-03T15:28:00', '2014-12-03T15:28:00', '', 11970, 4392);
2063
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022826, '3461', 'treatment', '2014-11-18T20:52:00', '2014-11-18T20:52:00', '', 2590, 746);
2064
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022027, '3462', 'control', '2014-11-28T09:47:00', '2014-11-28T09:47:00', '', 5975, 2552.5);
2065
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020764, '3463', 'treatment', '2014-12-07T15:38:00', '2014-12-07T15:38:00', '', 10790, 4811);
2066
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022392, '3465', 'treatment', '2014-11-24T13:26:00', '2014-11-24T13:26:00', '', 12570, 8298);
2067
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021265, '3469', 'control', '2014-12-04T07:53:00', '2014-12-04T07:53:00', '', 9470, 5367);
2068
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020450, '3470', 'treatment', '2014-12-09T12:07:00', '2014-12-09T12:07:00', '', 9085, 6022.5);
2069
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020732, '3471', 'treatment', '2014-12-07T18:08:00', '2014-12-07T18:08:00', '', 5790, 1958);
2070
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022517, '3472', 'treatment', '2014-11-23T09:54:00', '2014-11-23T09:54:00', '', 4790, 2370);
2071
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021162, '3473', 'control', '2014-12-04T18:50:00', '2014-12-04T18:50:00', '', 5290, 3257);
2072
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020238, '3474', 'control', '2014-12-10T13:47:00', '2014-12-10T13:47:00', '', 2490, 512);
2073
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021928, '3479', 'control', '2014-11-29T11:28:00', '2014-11-29T11:28:00', '', 10585, 5809);
2074
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021492, '3480', 'control', '2014-12-02T17:59:00', '2014-12-02T17:59:00', '', 14085, 6730.5);
2075
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022407, '3483', 'control', '2014-11-24T10:16:00', '2014-11-24T10:16:00', '', 12375, 4534);
2076
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022812, '3484', 'control', '2014-11-18T22:07:00', '2014-11-18T22:07:00', '', 24865, 9445);
2077
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020927, '3489', 'treatment', '2014-12-06T12:17:00', '2014-12-06T12:17:00', '', 14575, 6880.5);
2078
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021055, '3490', 'control', '2014-12-05T12:11:00', '2014-12-05T12:11:00', '', 3785, 1913);
2079
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021451, '3491', 'control', '2014-12-02T21:03:00', '2014-12-02T21:03:00', '', 13970, 6473);
2080
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021997, '3492', 'treatment', '2014-11-28T13:39:00', '2014-11-28T13:39:00', '', 6790, 4231);
2081
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021176, '3494', 'treatment', '2014-12-04T17:18:00', '2014-12-04T17:18:00', '', 7285, 4069);
2082
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021281, '3502', 'control', '2014-12-03T21:47:00', '2014-12-03T21:47:00', '', 6590, 2288);
2083
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022538, '3503', 'treatment', '2014-11-22T17:13:00', '2014-11-22T17:13:00', '', 4790, 2538);
2084
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020838, '3504', 'control', '2014-12-07T09:13:00', '2014-12-07T09:13:00', '', 5290, 2310);
2085
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020667, '3505', 'control', '2014-12-08T08:09:00', '2014-12-08T08:09:00', '', 3090, 1059);
2086
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022938, '3506', 'treatment', '2014-11-17T09:31:00', '2014-11-17T09:31:00', '', 2490, 567);
2087
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020862, '3507', 'treatment', '2014-12-06T20:48:00', '2014-12-06T20:48:00', '', 4090, 1124);
2088
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020722, '3508', 'control', '2014-12-07T18:51:00', '2014-12-07T18:51:00', '', 9985, 5589);
2089
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021877, '3509', 'control', '2014-11-30T04:55:00', '2014-11-30T04:55:00', '', 6675, 2264);
2090
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021832, '3511', 'control', '2014-11-30T15:30:00', '2014-11-30T15:30:00', '', 2790, 1015);
2091
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021292, '3515', 'treatment', '2014-12-03T21:05:00', '2014-12-03T21:05:00', '', 7775, 4196);
2092
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020628, '3517', 'control', '2014-12-08T11:41:00', '2014-12-08T11:41:00', '', 4290, 1354);
2093
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021855, '3424', 'control', '2014-11-30T12:14:00', '2014-11-30T12:14:00', 5022208, 12080, 8033);
2094
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5017936, '3471', '', '2014-12-28T10:28:00', '2014-12-28T10:28:00', 5020732, 6790, 3511);
2095
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021290, '3515', 'treatment', '2014-12-03T21:13:00', '2014-12-03T21:13:00', 5021292, 2190, 951);
2096
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022637, '3518', 'treatment', '2014-11-20T20:39:00', '2014-11-20T20:39:00', '', 2590, 1228);
2097
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021549, '3520', 'control', '2014-12-02T12:32:00', '2014-12-02T12:32:00', '', 11275, 6234);
2098
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022316, '3522', 'treatment', '2014-11-25T07:39:00', '2014-11-25T07:39:00', '', 10770, 4869);
2099
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020301, '3523', 'treatment', '2014-12-09T22:39:00', '2014-12-09T22:39:00', '', 9880, 6612);
2100
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022843, '3525', 'treatment', '2014-11-18T16:57:00', '2014-11-18T16:57:00', '', 16490, 7842);
2101
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020671, '3529', 'treatment', '2014-12-08T07:49:00', '2014-12-08T07:49:00', '', 3290, 929);
2102
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020225, '3531', 'treatment', '2014-12-10T15:08:00', '2014-12-10T15:08:00', '', 4285, 2127);
2103
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021883, '3532', 'control', '2014-11-29T22:34:00', '2014-11-29T22:34:00', '', 9950, 5570);
2104
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022903, '3533', 'treatment', '2014-11-17T16:34:00', '2014-11-17T16:34:00', '', 11590, 5424);
2105
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021203, '3534', 'control', '2014-12-04T13:42:00', '2014-12-04T13:42:00', '', 9785, 5559);
2106
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020457, '3539', 'control', '2014-12-09T11:50:00', '2014-12-09T11:50:00', '', 1890, 635);
2107
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021880, '3540', 'control', '2014-11-29T23:14:00', '2014-11-29T23:14:00', '', 9770, 4316);
2108
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022251, '3542', 'treatment', '2014-11-25T17:05:00', '2014-11-25T17:05:00', '', 9775, 3342);
2109
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020411, '3544', 'control', '2014-12-09T14:12:00', '2014-12-09T14:12:00', '', 2985, 1078.5);
2110
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020924, '3545', 'control', '2014-12-06T12:59:00', '2014-12-06T12:59:00', '', 5785, 1901);
2111
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020656, '3548', 'control', '2014-12-08T08:45:00', '2014-12-08T08:45:00', '', 5090, 2531);
2112
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022699, '3549', 'treatment', '2014-11-19T21:49:00', '2014-11-19T21:49:00', '', 4685, 1942.5);
2113
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023116, '3550', 'treatment', '2014-11-13T17:28:00', '2014-11-13T17:28:00', '', 4790, 2518);
2114
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023008, '3551', 'treatment', '2014-11-16T09:52:00', '2014-11-16T09:52:00', '', 5975, 1944);
2115
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022379, '3552', 'treatment', '2014-11-24T15:38:00', '2014-11-24T15:38:00', '', 6790, 3648);
2116
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021603, '3553', 'control', '2014-12-01T23:33:00', '2014-12-01T23:33:00', '', 11880, 6583);
2117
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023000, '3554', 'treatment', '2014-11-16T12:39:00', '2014-11-16T12:39:00', '', 6790, 3628);
2118
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020693, '3557', 'control', '2014-12-07T21:30:00', '2014-12-07T21:30:00', '', 4285, 2616.5);
2119
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020161, '3559', 'control', '2014-12-10T20:31:00', '2014-12-10T20:31:00', '', 6485, 2880.5);
2120
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022916, '3564', 'treatment', '2014-11-17T14:12:00', '2014-11-17T14:12:00', '', 28450, 10943);
2121
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022435, '3565', 'control', '2014-11-23T22:57:00', '2014-11-23T22:57:00', '', 9780, 4401);
2122
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020679, '3570', 'treatment', '2014-12-07T22:21:00', '2014-12-07T22:21:00', '', 3290, 1816);
2123
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020777, '3572', 'control', '2014-12-07T14:35:00', '2014-12-07T14:35:00', '', 4290, 2050);
2124
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021528, '3573', 'control', '2014-12-02T14:52:00', '2014-12-02T14:52:00', '', 17090, 9819);
2125
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022606, '3582', 'treatment', '2014-11-21T12:46:00', '2014-11-21T12:46:00', '', 11490, 4192);
2126
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021970, '3583', 'treatment', '2014-11-28T18:49:00', '2014-11-28T18:49:00', '', 3592, 1587.2);
2127
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022977, '3584', 'treatment', '2014-11-16T19:05:00', '2014-11-16T19:05:00', '', 9385, 5167);
2128
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022197, '3585', 'control', '2014-11-26T06:49:00', '2014-11-26T06:49:00', '', 10995, 6042);
2129
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020152, '3586', 'control', '2014-12-10T20:46:00', '2014-12-10T20:46:00', '', 3790, 1779);
2130
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021906, '3593', 'control', '2014-11-29T16:43:00', '2014-11-29T16:43:00', '', 12590, 5933);
2131
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021016, '3595', 'control', '2014-12-05T15:21:00', '2014-12-05T15:21:00', '', 5785, 3002);
2132
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020396, '3596', 'treatment', '2014-12-09T15:41:00', '2014-12-09T15:41:00', '', 11155, 7309.5);
2133
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021123, '3598', 'control', '2014-12-04T21:02:00', '2014-12-04T21:02:00', '', 6180, 3755);
2134
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022973, '3601', 'treatment', '2014-11-16T19:36:00', '2014-11-16T19:36:00', '', 3785, 1416.5);
2135
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021749, '3602', 'control', '2014-12-01T07:52:00', '2014-12-01T07:52:00', '', 9490, 5119);
2136
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022289, '3603', 'treatment', '2014-11-25T11:16:00', '2014-11-25T11:16:00', '', 20785, 12120);
2137
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020803, '3604', 'control', '2014-12-07T12:25:00', '2014-12-07T12:25:00', '', 2790, 1075);
2138
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021634, '3607', 'control', '2014-12-01T19:46:00', '2014-12-01T19:46:00', '', 4790, 2759);
2139
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022470, '3610', 'treatment', '2014-11-23T18:24:00', '2014-11-23T18:24:00', '', 14270, 5395);
2140
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021633, '3611', 'control', '2014-12-01T19:45:00', '2014-12-01T19:45:00', '', 6085, 2697.5);
2141
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020972, '3612', 'control', '2014-12-05T20:13:00', '2014-12-05T20:13:00', '', 5090, 2054);
2142
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020907, '3618', 'control', '2014-12-06T14:53:00', '2014-12-06T14:53:00', '', 10085, 4605.5);
2143
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021438, '3620', 'control', '2014-12-02T22:56:00', '2014-12-02T22:56:00', '', 12990, 4603);
2144
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021808, '3621', 'control', '2014-11-30T18:09:00', '2014-11-30T18:09:00', '', 4385, 1437);
2145
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022873, '3625', 'treatment', '2014-11-17T21:50:00', '2014-11-17T21:50:00', '', 13180, 7381);
2146
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020631, '3626', 'control', '2014-12-08T11:17:00', '2014-12-08T11:17:00', '', 4380, 2485);
2147
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021746, '3627', 'control', '2014-12-01T08:00:00', '2014-12-01T08:00:00', '', 3790, 1324);
2148
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020132, '3628', 'treatment', '2014-12-10T22:13:00', '2014-12-10T22:13:00', '', 5280, 2334);
2149
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021770, '3633', 'control', '2014-11-30T21:58:00', '2014-11-30T21:58:00', '', 5085, 3165.5);
2150
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021777, '3634', 'treatment', '2014-11-30T21:15:00', '2014-11-30T21:15:00', '', 9980, 5517);
2151
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021911, '3635', 'control', '2014-11-29T15:09:00', '2014-11-29T15:09:00', '', 9775, 3563);
2152
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020473, '3636', 'control', '2014-12-09T10:45:00', '2014-12-09T10:45:00', '', 3885, 1913);
2153
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021873, '3638', 'control', '2014-11-30T08:29:00', '2014-11-30T08:29:00', '', 7260, 2347);
2154
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022726, '3639', 'treatment', '2014-11-19T18:35:00', '2014-11-19T18:35:00', '', 6785, 4313.5);
2155
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020273, '3641', 'control', '2014-12-10T10:28:00', '2014-12-10T10:28:00', '', 2290, 1300);
2156
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022639, '3642', 'treatment', '2014-11-20T20:10:00', '2014-11-20T20:10:00', '', 3185, 1471);
2157
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018780, '3540', '', '2014-12-17T06:48:00', '2014-12-17T06:48:00', 5021880, 7790, 2756);
2158
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018718, '3557', '', '2014-12-17T13:20:00', '2014-12-17T13:20:00', 5020693, 3590, 1813);
2159
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018795, '3638', '', '2014-12-16T22:34:00', '2014-12-16T22:34:00', 5021873, 7085, 4556.5);
2160
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021714, '3645', 'control', '2014-12-01T11:58:00', '2014-12-01T11:58:00', '', 7385, 4671.5);
2161
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020913, '3647', 'control', '2014-12-06T14:10:00', '2014-12-06T14:10:00', '', 22230, 12880);
2162
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023124, '3648', 'treatment', '2014-11-13T15:09:00', '2014-11-13T15:09:00', '', 8085, 2840);
2163
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022567, '3650', 'control', '2014-11-22T08:12:00', '2014-11-22T08:12:00', '', 10990, 5064);
2164
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022774, '3651', 'treatment', '2014-11-19T12:51:00', '2014-11-19T12:51:00', '', 4790, 1474);
2165
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020577, '3652', 'control', '2014-12-08T16:55:00', '2014-12-08T16:55:00', '', 2190, 684);
2166
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023011, '3654', 'control', '2014-11-16T08:56:00', '2014-11-16T08:56:00', '', 3790, 1840);
2167
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021704, '3656', 'treatment', '2014-12-01T12:54:00', '2014-12-01T12:54:00', '', 5285, 2636);
2168
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020453, '3657', 'control', '2014-12-09T11:59:00', '2014-12-09T11:59:00', '', 2985, 1366);
2169
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022810, '3658', 'treatment', '2014-11-18T22:56:00', '2014-11-18T22:56:00', '', 8085, 3576.5);
2170
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020920, '3661', 'treatment', '2014-12-06T13:05:00', '2014-12-06T13:05:00', '', 6790, 4184);
2171
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020139, '3662', 'control', '2014-12-10T21:36:00', '2014-12-10T21:36:00', '', 3190, 1754);
2172
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021277, '3663', 'treatment', '2014-12-03T22:18:00', '2014-12-03T22:18:00', '', 15290, 7142);
2173
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021664, '3664', 'control', '2014-12-01T17:34:00', '2014-12-01T17:34:00', '', 4790, 2329);
2174
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022047, '3665', 'control', '2014-11-27T22:08:00', '2014-11-27T22:08:00', '', 4790, 2770);
2175
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020517, '3666', 'treatment', '2014-12-08T22:53:00', '2014-12-08T22:53:00', '', 9675, 3393);
2176
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020603, '3667', 'control', '2014-12-08T13:42:00', '2014-12-08T13:42:00', '', 7975, 3504.5);
2177
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022779, '3672', 'control', '2014-11-19T12:40:00', '2014-11-19T12:40:00', '', 3790, 1192);
2178
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021544, '3674', 'control', '2014-12-02T13:02:00', '2014-12-02T13:02:00', '', 13555, 9085.5);
2179
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022867, '3675', 'treatment', '2014-11-18T08:21:00', '2014-11-18T08:21:00', '', 3090, 1517);
2180
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020638, '3677', 'treatment', '2014-12-08T10:16:00', '2014-12-08T10:16:00', '', 7085, 2410);
2181
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022751, '3679', 'treatment', '2014-11-19T14:44:00', '2014-11-19T14:44:00', '', 7790, 5107);
2182
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020458, '3681', 'treatment', '2014-12-09T11:50:00', '2014-12-09T11:50:00', '', 4290, 1176);
2183
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020959, '3682', 'control', '2014-12-05T22:04:00', '2014-12-05T22:04:00', '', 3685, 2270.5);
2184
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021212, '3685', 'control', '2014-12-04T12:53:00', '2014-12-04T12:53:00', '', 9490, 4262);
2185
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022730, '3686', 'control', '2014-11-19T17:41:00', '2014-11-19T17:41:00', '', 9590, 3343);
2186
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022942, '3688', 'treatment', '2014-11-17T08:57:00', '2014-11-17T08:57:00', '', 11775, 6684);
2187
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020763, '3689', 'control', '2014-12-07T15:40:00', '2014-12-07T15:40:00', '', 4785, 2866.5);
2188
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022758, '3691', 'control', '2014-11-19T14:09:00', '2014-11-19T14:09:00', '', 6785, 3624);
2189
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020240, '3692', 'control', '2014-12-10T13:33:00', '2014-12-10T13:33:00', '', 9785, 6406.5);
2190
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021367, '3693', 'control', '2014-12-03T15:15:00', '2014-12-03T15:15:00', '', 9970, 4681);
2191
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022064, '3694', 'control', '2014-11-27T18:48:00', '2014-11-27T18:48:00', '', 16995, 6414);
2192
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020829, '3697', 'control', '2014-12-07T09:58:00', '2014-12-07T09:58:00', '', 4880, 3082);
2193
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021869, '3698', 'control', '2014-11-30T09:17:00', '2014-11-30T09:17:00', '', 3590, 2169);
2194
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021102, '3699', 'control', '2014-12-05T00:37:00', '2014-12-05T00:37:00', '', 11675, 7852.5);
2195
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021291, '3700', 'control', '2014-12-03T21:09:00', '2014-12-03T21:09:00', '', 2790, 593);
2196
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021862, '3701', 'control', '2014-11-30T10:47:00', '2014-11-30T10:47:00', '', 9780, 5309);
2197
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021865, '3702', 'treatment', '2014-11-30T10:28:00', '2014-11-30T10:28:00', '', 4790, 1445);
2198
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021434, '3703', 'treatment', '2014-12-03T07:16:00', '2014-12-03T07:16:00', '', 11590, 6442);
2199
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022060, '3704', 'control', '2014-11-27T19:37:00', '2014-11-27T19:37:00', '', 5087, 2098.5);
2200
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020284, '3705', 'control', '2014-12-10T08:40:00', '2014-12-10T08:40:00', '', 3790, 1887);
2201
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022596, '3706', 'control', '2014-11-21T14:48:00', '2014-11-21T14:48:00', '', 9985, 6410.5);
2202
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022948, '3708', 'treatment', '2014-11-17T07:38:00', '2014-11-17T07:38:00', '', 4285, 1263);
2203
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022264, '3709', 'control', '2014-11-25T14:51:00', '2014-11-25T14:51:00', '', 3885, 2119.5);
2204
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021398, '3710', 'control', '2014-12-03T12:43:00', '2014-12-03T12:43:00', '', 7175, 3039.5);
2205
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021818, '3714', 'treatment', '2014-11-30T17:01:00', '2014-11-30T17:01:00', '', 7285, 4639.5);
2206
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022107, '3715', 'treatment', '2014-11-27T11:28:00', '2014-11-27T11:28:00', '', 15485, 10346.5);
2207
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022320, '3716', 'treatment', '2014-11-25T06:18:00', '2014-11-25T06:18:00', '', 9275, 3211);
2208
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020904, '3720', 'treatment', '2014-12-06T15:32:00', '2014-12-06T15:32:00', '', 7785, 5139.5);
2209
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023134, '3722', 'treatment', '2014-11-13T12:14:00', '2014-11-13T12:14:00', '', 6380, 3278);
2210
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022266, '3723', 'control', '2014-11-25T14:10:00', '2014-11-25T14:10:00', '', 11990, 8083);
2211
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022944, '3725', 'treatment', '2014-11-17T08:49:00', '2014-11-17T08:49:00', '', 9275, 4275.5);
2212
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022418, '3727', 'treatment', '2014-11-24T09:00:00', '2014-11-24T09:00:00', '', 12995, 4652);
2213
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022498, '3730', 'treatment', '2014-11-23T14:21:00', '2014-11-23T14:21:00', '', 3685, 2177.5);
2214
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020463, '3731', 'control', '2014-12-09T11:20:00', '2014-12-09T11:20:00', '', 31825, 15569.5);
2215
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021926, '3732', 'treatment', '2014-11-29T11:52:00', '2014-11-29T11:52:00', '', 13080, 4925);
2216
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020974, '3735', 'treatment', '2014-12-05T20:08:00', '2014-12-05T20:08:00', '', 2490, 833);
2217
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022278, '3736', 'treatment', '2014-11-25T12:54:00', '2014-11-25T12:54:00', '', 49580, 24461);
2218
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022465, '3738', 'treatment', '2014-11-23T18:47:00', '2014-11-23T18:47:00', '', 3290, 1089);
2219
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022265, '3740', 'treatment', '2014-11-25T14:15:00', '2014-11-25T14:15:00', '', 4790, 2543);
2220
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020310, '3742', 'treatment', '2014-12-09T22:01:00', '2014-12-09T22:01:00', '', 7175, 4514.5);
2221
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021090, '3743', 'control', '2014-12-05T08:16:00', '2014-12-05T08:16:00', '', 6790, 2966);
2222
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022941, '3744', 'treatment', '2014-11-17T08:59:00', '2014-11-17T08:59:00', '', 5785, 3577.5);
2223
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018782, '3735', '', '2014-12-17T06:44:00', '2014-12-17T06:44:00', 5020974, 14385, 8228);
2224
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021164, '3736', 'control', '2014-12-04T18:21:00', '2014-12-04T18:21:00', 5022278, 11770, 5303);
2225
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020793, '3746', 'control', '2014-12-07T13:32:00', '2014-12-07T13:32:00', '', 9685, 5381);
2226
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020988, '3748', 'control', '2014-12-05T18:36:00', '2014-12-05T18:36:00', '', 9075, 4196.5);
2227
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022858, '3749', 'treatment', '2014-11-18T13:17:00', '2014-11-18T13:17:00', '', 12865, 5853.5);
2228
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022274, '3750', 'treatment', '2014-11-25T13:24:00', '2014-11-25T13:24:00', '', 7285, 3783);
2229
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022625, '3751', 'treatment', '2014-11-20T22:37:00', '2014-11-20T22:37:00', '', 3190, 1826);
2230
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020183, '3754', 'control', '2014-12-10T19:40:00', '2014-12-10T19:40:00', '', 9375, 4282.5);
2231
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020637, '3755', 'treatment', '2014-12-08T10:29:00', '2014-12-08T10:29:00', '', 9480, 4309);
2232
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021114, '3756', 'treatment', '2014-12-04T21:43:00', '2014-12-04T21:43:00', '', 16990, 11462);
2233
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020477, '3759', 'treatment', '2014-12-09T10:15:00', '2014-12-09T10:15:00', '', 10285, 6651.5);
2234
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021132, '3761', 'control', '2014-12-04T20:17:00', '2014-12-04T20:17:00', '', 3290, 840);
2235
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021981, '3762', 'treatment', '2014-11-28T17:14:00', '2014-11-28T17:14:00', '', 3290, 741);
2236
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022180, '3764', 'treatment', '2014-11-26T10:37:00', '2014-11-26T10:37:00', '', 3790, 2072);
2237
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021920, '3766', 'treatment', '2014-11-29T13:17:00', '2014-11-29T13:17:00', '', 3585, 2188.5);
2238
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020130, '3767', 'treatment', '2014-12-10T22:26:00', '2014-12-10T22:26:00', '', 4290, 2597);
2239
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020724, '3768', 'control', '2014-12-07T18:49:00', '2014-12-07T18:49:00', '', 6185, 3915.5);
2240
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021181, '3770', 'control', '2014-12-04T16:34:00', '2014-12-04T16:34:00', '', 6790, 4158);
2241
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021289, '3773', 'control', '2014-12-03T21:14:00', '2014-12-03T21:14:00', '', 3790, 2326);
2242
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022990, '3775', 'treatment', '2014-11-16T16:02:00', '2014-11-16T16:02:00', '', 20255, 9700.5);
2243
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022652, '3776', 'control', '2014-11-20T17:40:00', '2014-11-20T17:40:00', '', 4785, 1377);
2244
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020295, '3783', 'treatment', '2014-12-10T01:12:00', '2014-12-10T01:12:00', '', 4790, 2307);
2245
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022745, '3784', 'control', '2014-11-19T15:08:00', '2014-11-19T15:08:00', '', 12990, 6129);
2246
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022341, '3785', 'control', '2014-11-24T20:25:00', '2014-11-24T20:25:00', '', 5885, 3707.5);
2247
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021341, '3786', 'control', '2014-12-03T16:47:00', '2014-12-03T16:47:00', '', 3390, 1181);
2248
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021045, '3792', 'treatment', '2014-12-05T12:57:00', '2014-12-05T12:57:00', '', 6785, 3766);
2249
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020339, '3794', 'treatment', '2014-12-09T20:00:00', '2014-12-09T20:00:00', '', 7085, 3821);
2250
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020619, '3795', 'control', '2014-12-08T12:21:00', '2014-12-08T12:21:00', '', 9375, 5268);
2251
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022178, '3797', 'treatment', '2014-11-26T12:09:00', '2014-11-26T12:09:00', '', 2290, 883);
2252
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021133, '3799', 'control', '2014-12-04T20:15:00', '2014-12-04T20:15:00', '', 9375, 4273.5);
2253
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021698, '3800', 'control', '2014-12-01T13:37:00', '2014-12-01T13:37:00', '', 10780, 7230);
2254
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021893, '3804', 'control', '2014-11-29T19:54:00', '2014-11-29T19:54:00', '', 5285, 2793);
2255
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021762, '3805', 'control', '2014-12-01T05:32:00', '2014-12-01T05:32:00', '', 5385, 1676);
2256
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020360, '3806', 'treatment', '2014-12-09T19:21:00', '2014-12-09T19:21:00', '', 5975, 3733.5);
2257
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020410, '3807', 'control', '2014-12-09T14:10:00', '2014-12-09T14:10:00', '', 15270, 10234);
2258
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021068, '3808', 'control', '2014-12-05T10:27:00', '2014-12-05T10:27:00', '', 5385, 2897);
2259
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022694, '3809', 'treatment', '2014-11-19T23:14:00', '2014-11-19T23:14:00', '', 13050, 8718);
2260
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020448, '3810', 'control', '2014-12-09T12:17:00', '2014-12-09T12:17:00', '', 2790, 845);
2261
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021486, '3812', 'treatment', '2014-12-02T18:14:00', '2014-12-02T18:14:00', '', 4790, 2079);
2262
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022065, '3814', 'control', '2014-11-27T18:42:00', '2014-11-27T18:42:00', '', 7785, 3586.5);
2263
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022427, '3816', 'control', '2014-11-24T07:43:00', '2014-11-24T07:43:00', '', 5785, 3014);
2264
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020657, '3818', 'treatment', '2014-12-08T08:45:00', '2014-12-08T08:45:00', '', 9080, 5888);
2265
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022228, '3819', 'treatment', '2014-11-25T19:43:00', '2014-11-25T19:43:00', '', 2490, 489);
2266
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021615, '3820', 'control', '2014-12-01T21:13:00', '2014-12-01T21:13:00', '', 6590, 2819);
2267
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020145, '3821', 'treatment', '2014-12-10T21:13:00', '2014-12-10T21:13:00', '', 1790, 603);
2268
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021600, '3825', 'treatment', '2014-12-02T03:26:00', '2014-12-02T03:26:00', '', 19880, 11600);
2269
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023142, '3826', 'treatment', '2014-11-13T10:03:00', '2014-11-13T10:03:00', '', 3790, 1844);
2270
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021537, '3828', 'control', '2014-12-02T13:45:00', '2014-12-02T13:45:00', '', 12280, 4430);
2271
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022608, '3831', 'control', '2014-11-21T12:05:00', '2014-11-21T12:05:00', '', 8285, 2892);
2272
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020527, '3832', 'treatment', '2014-12-08T21:48:00', '2014-12-08T21:48:00', '', 17490, 11859);
2273
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021309, '3834', 'treatment', '2014-12-03T20:08:00', '2014-12-03T20:08:00', '', 2490, 1184);
2274
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021782, '3836', 'control', '2014-11-30T20:42:00', '2014-11-30T20:42:00', '', 10995, 4029);
2275
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021201, '3839', 'treatment', '2014-12-04T14:10:00', '2014-12-04T14:10:00', '', 20960, 8084);
2276
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022881, '3840', 'treatment', '2014-11-17T20:20:00', '2014-11-17T20:20:00', '', 11780, 6649);
2277
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020474, '3843', 'control', '2014-12-09T10:28:00', '2014-12-09T10:28:00', '', 7790, 4855);
2278
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020550, '3844', 'treatment', '2014-12-08T19:30:00', '2014-12-08T19:30:00', '', 3785, 2222.5);
2279
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021754, '3845', 'control', '2014-12-01T07:14:00', '2014-12-01T07:14:00', '', 4485, 2543.5);
2280
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021967, '3847', 'treatment', '2014-11-28T19:15:00', '2014-11-28T19:15:00', '', 4286, 1559);
2281
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022807, '3849', 'control', '2014-11-19T00:45:00', '2014-11-19T00:45:00', '', 17990, 6872);
2282
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021992, '3854', 'control', '2014-11-28T14:50:00', '2014-11-28T14:50:00', '', 3785, 2200.5);
2283
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018483, '3775', '', '2014-12-18T16:09:00', '2014-12-18T16:09:00', 5022990, 4290, 1833);
2284
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020049, '3797', '', '2014-12-11T11:33:00', '2014-12-11T11:33:00', 5022178, 3290, 926);
2285
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020341, '3806', 'control', '2014-12-09T19:53:00', '2014-12-09T19:53:00', 5020360, 14980, 9945);
2286
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020267, '3806', 'control', '2014-12-10T10:48:00', '2014-12-10T10:48:00', 5020341, 9585, 4240.5);
2287
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022038, '3809', 'control', '2014-11-28T08:48:00', '2014-11-28T08:48:00', 5022694, 8995, 4903);
2288
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021406, '3816', 'control', '2014-12-03T12:07:00', '2014-12-03T12:07:00', 5022427, 3090, 1720);
2289
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022313, '3856', 'control', '2014-11-25T08:22:00', '2014-11-25T08:22:00', '', 2585, 646);
2290
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021163, '3859', 'treatment', '2014-12-04T18:26:00', '2014-12-04T18:26:00', '', 5475, 1855);
2291
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022058, '3860', 'control', '2014-11-27T20:06:00', '2014-11-27T20:06:00', '', 6742, 4375.4);
2292
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022494, '3861', 'treatment', '2014-11-23T14:59:00', '2014-11-23T14:59:00', '', 10490, 3790);
2293
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023088, '3862', 'treatment', '2014-11-13T22:17:00', '2014-11-13T22:17:00', '', 3290, 864);
2294
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021041, '3864', 'control', '2014-12-05T13:19:00', '2014-12-05T13:19:00', '', 3385, 1853.5);
2295
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022863, '3865', 'treatment', '2014-11-18T11:04:00', '2014-11-18T11:04:00', '', 13170, 4954);
2296
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020582, '3869', 'control', '2014-12-08T16:44:00', '2014-12-08T16:44:00', '', 3290, 1582);
2297
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020484, '3870', 'control', '2014-12-09T09:44:00', '2014-12-09T09:44:00', '', 6085, 3243);
2298
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020366, '3871', 'treatment', '2014-12-09T18:59:00', '2014-12-09T18:59:00', '', 8986, 5990.2);
2299
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020434, '3872', 'treatment', '2014-12-09T12:56:00', '2014-12-09T12:56:00', '', 9990, 5451);
2300
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022704, '3873', 'control', '2014-11-19T21:26:00', '2014-11-19T21:26:00', '', 2290, 1183);
2301
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022405, '3874', 'treatment', '2014-11-24T10:33:00', '2014-11-24T10:33:00', '', 3290, 1596);
2302
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021641, '3877', 'control', '2014-12-01T19:09:00', '2014-12-01T19:09:00', '', 10685, 3721);
2303
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020521, '3881', 'control', '2014-12-08T22:12:00', '2014-12-08T22:12:00', '', 10785, 6959.5);
2304
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020519, '3885', 'treatment', '2014-12-08T22:25:00', '2014-12-08T22:25:00', '', 13585, 7652);
2305
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022349, '3886', 'treatment', '2014-11-24T19:26:00', '2014-11-24T19:26:00', '', 5285, 2177.5);
2306
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022100, '3887', 'treatment', '2014-11-27T12:29:00', '2014-11-27T12:29:00', '', 9085, 3301);
2307
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022312, '3888', 'treatment', '2014-11-25T07:59:00', '2014-11-25T07:59:00', '', 10075, 3436);
2308
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022880, '3889', 'control', '2014-11-17T20:25:00', '2014-11-17T20:25:00', '', 4085, 2511.5);
2309
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022683, '3890', 'treatment', '2014-11-20T10:31:00', '2014-11-20T10:31:00', '', 3985, 1292);
2310
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020459, '3891', 'control', '2014-12-09T11:45:00', '2014-12-09T11:45:00', '', 6585, 2301);
2311
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022056, '3895', 'treatment', '2014-11-27T20:39:00', '2014-11-27T20:39:00', '', 2987, 924.5);
2312
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022928, '3897', 'treatment', '2014-11-17T11:46:00', '2014-11-17T11:46:00', '', 3090, 1210);
2313
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021730, '3900', 'control', '2014-12-01T10:17:00', '2014-12-01T10:17:00', '', 8075, 5065.5);
2314
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021174, '3901', 'control', '2014-12-04T17:22:00', '2014-12-04T17:22:00', '', 6185, 2669.5);
2315
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022472, '3902', 'treatment', '2014-11-23T18:22:00', '2014-11-23T18:22:00', '', 17995, 8496.5);
2316
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022690, '3904', 'treatment', '2014-11-20T08:01:00', '2014-11-20T08:01:00', '', 4790, 2298);
2317
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022020, '3905', 'control', '2014-11-28T10:21:00', '2014-11-28T10:21:00', '', 4790, 2539);
2318
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020217, '3906', 'treatment', '2014-12-10T15:52:00', '2014-12-10T15:52:00', '', 4790, 1552);
2319
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022940, '3908', 'treatment', '2014-11-17T09:03:00', '2014-11-17T09:03:00', '', 6590, 2770);
2320
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022553, '3909', 'treatment', '2014-11-22T11:48:00', '2014-11-22T11:48:00', '', 18980, 12887);
2321
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021221, '3910', 'treatment', '2014-12-04T12:15:00', '2014-12-04T12:15:00', '', 9290, 6193);
2322
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022416, '3911', 'treatment', '2014-11-24T09:43:00', '2014-11-24T09:43:00', '', 7875, 5051.5);
2323
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021504, '3912', 'treatment', '2014-12-02T16:34:00', '2014-12-02T16:34:00', '', 4585, 1504);
2324
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021527, '3913', 'control', '2014-12-02T14:54:00', '2014-12-02T14:54:00', '', 6790, 3063);
2325
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021831, '3915', 'control', '2014-11-30T15:55:00', '2014-11-30T15:55:00', '', 14285, 8218);
2326
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022254, '3916', 'control', '2014-11-25T16:41:00', '2014-11-25T16:41:00', '', 4790, 1841);
2327
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020243, '3917', 'control', '2014-12-10T13:14:00', '2014-12-10T13:14:00', '', 7775, 3406.5);
2328
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022127, '3920', 'treatment', '2014-11-26T21:17:00', '2014-11-26T21:17:00', '', 19475, 11319);
2329
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022878, '3921', 'treatment', '2014-11-17T20:38:00', '2014-11-17T20:38:00', '', 7275, 3800);
2330
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020563, '3922', 'control', '2014-12-08T18:35:00', '2014-12-08T18:35:00', '', 9285, 5160);
2331
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021100, '3923', 'treatment', '2014-12-05T01:43:00', '2014-12-05T01:43:00', '', 7085, 3046.5);
2332
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020601, '3924', 'treatment', '2014-12-08T13:56:00', '2014-12-08T13:56:00', '', 6285, 1981);
2333
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021088, '3925', 'treatment', '2014-12-05T08:35:00', '2014-12-05T08:35:00', '', 19075, 7190);
2334
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023060, '3926', 'control', '2014-11-14T18:01:00', '2014-11-14T18:01:00', '', 9670, 5373);
2335
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021392, '3928', 'treatment', '2014-12-03T13:05:00', '2014-12-03T13:05:00', '', 10585, 3815);
2336
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021018, '3930', 'control', '2014-12-05T15:08:00', '2014-12-05T15:08:00', '', 11680, 5373);
2337
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021661, '3931', 'treatment', '2014-12-01T17:55:00', '2014-12-01T17:55:00', '', 6770, 2803);
2338
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023007, '3932', 'treatment', '2014-11-16T10:01:00', '2014-11-16T10:01:00', '', 12995, 7386);
2339
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021395, '3933', 'control', '2014-12-03T12:55:00', '2014-12-03T12:55:00', '', 5785, 3038);
2340
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022595, '3934', 'treatment', '2014-11-21T15:49:00', '2014-11-21T15:49:00', '', 10760, 5860);
2341
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021189, '3941', 'control', '2014-12-04T15:40:00', '2014-12-04T15:40:00', '', 21990, 8262);
2342
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021881, '3942', 'control', '2014-11-29T22:50:00', '2014-11-29T22:50:00', '', 11165, 6313);
2343
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023110, '3943', 'treatment', '2014-11-13T18:35:00', '2014-11-13T18:35:00', '', 2490, 644);
2344
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022233, '3944', 'treatment', '2014-11-25T19:16:00', '2014-11-25T19:16:00', '', 8580, 3110);
2345
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022142, '3945', 'treatment', '2014-11-26T19:56:00', '2014-11-26T19:56:00', '', 6290, 2671);
2346
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020369, '3946', 'treatment', '2014-12-09T18:21:00', '2014-12-09T18:21:00', '', 24455, 16676.5);
2347
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021836, '3947', 'treatment', '2014-11-30T14:54:00', '2014-11-30T14:54:00', '', 5485, 2416.5);
2348
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020377, '3948', 'treatment', '2014-12-09T18:00:00', '2014-12-09T18:00:00', '', 6275, 2687.5);
2349
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021852, '3949', 'treatment', '2014-11-30T12:34:00', '2014-11-30T12:34:00', '', 4090, 2442);
2350
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018555, '3864', '', '2014-12-18T08:39:00', '2014-12-18T08:39:00', 5021041, 4790, 2283);
2351
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019802, '3888', '', '2014-12-12T12:12:00', '2014-12-12T12:12:00', 5022312, 5085, 1981.5);
2352
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022195, '3909', 'treatment', '2014-11-26T07:26:00', '2014-11-26T07:26:00', 5022553, 6785, 2178);
2353
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020844, '3942', 'treatment', '2014-12-07T05:52:00', '2014-12-07T05:52:00', 5021881, 6875, 4412.5);
2354
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020166, '3950', 'control', '2014-12-10T20:19:00', '2014-12-10T20:19:00', '', 6380, 3893);
2355
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021773, '3951', 'control', '2014-11-30T21:17:00', '2014-11-30T21:17:00', '', 11485, 6460);
2356
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021858, '3952', 'control', '2014-11-30T11:48:00', '2014-11-30T11:48:00', '', 4785, 3031.5);
2357
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022308, '3954', 'control', '2014-11-25T08:53:00', '2014-11-25T08:53:00', '', 2790, 1154);
2358
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022072, '3956', 'treatment', '2014-11-27T17:33:00', '2014-11-27T17:33:00', '', 7610, 2709);
2359
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021033, '3958', 'treatment', '2014-12-05T14:09:00', '2014-12-05T14:09:00', '', 4585, 1438);
2360
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022583, '3960', 'treatment', '2014-11-21T17:17:00', '2014-11-21T17:17:00', '', 2590, 573);
2361
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022092, '3963', 'control', '2014-11-27T13:43:00', '2014-11-27T13:43:00', '', 5180, 3080);
2362
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020662, '3965', 'control', '2014-12-08T08:34:00', '2014-12-08T08:34:00', '', 4485, 2300);
2363
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022656, '3969', 'control', '2014-11-20T16:49:00', '2014-11-20T16:49:00', '', 5790, 3036);
2364
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021244, '3970', 'treatment', '2014-12-04T10:09:00', '2014-12-04T10:09:00', '', 10785, 3864);
2365
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022319, '3973', 'treatment', '2014-11-25T07:00:00', '2014-11-25T07:00:00', '', 4590, 1949);
2366
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022909, '3975', 'control', '2014-11-17T15:30:00', '2014-11-17T15:30:00', '', 6880, 3783);
2367
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022994, '3976', 'treatment', '2014-11-16T15:23:00', '2014-11-16T15:23:00', '', 4285, 2680.5);
2368
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020181, '3978', 'control', '2014-12-10T19:45:00', '2014-12-10T19:45:00', '', 17270, 9800);
2369
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021175, '3981', 'control', '2014-12-04T17:24:00', '2014-12-04T17:24:00', '', 3085, 1407);
2370
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020659, '3982', 'control', '2014-12-08T08:44:00', '2014-12-08T08:44:00', '', 3285, 1573);
2371
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021496, '3984', 'control', '2014-12-02T17:42:00', '2014-12-02T17:42:00', '', 9995, 4676.5);
2372
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022153, '3986', 'treatment', '2014-11-26T17:25:00', '2014-11-26T17:25:00', '', 5285, 2654);
2373
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020138, '3988', 'treatment', '2014-12-10T21:42:00', '2014-12-10T21:42:00', '', 5785, 1964);
2374
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020798, '3989', 'treatment', '2014-12-07T12:58:00', '2014-12-07T12:58:00', '', 3985, 1140);
2375
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021709, '3990', 'treatment', '2014-12-01T12:34:00', '2014-12-01T12:34:00', '', 6790, 4392);
2376
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020182, '3991', 'control', '2014-12-10T19:41:00', '2014-12-10T19:41:00', '', 2590, 1210);
2377
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021747, '3993', 'treatment', '2014-12-01T08:11:00', '2014-12-01T08:11:00', '', 9170, 6046);
2378
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021214, '3995', 'control', '2014-12-04T12:53:00', '2014-12-04T12:53:00', '', 4290, 2601);
2379
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021526, '3997', 'control', '2014-12-02T15:01:00', '2014-12-02T15:01:00', '', 6790, 3685);
2380
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022473, '3998', 'treatment', '2014-11-23T18:13:00', '2014-11-23T18:13:00', '', 4285, 2244);
2381
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021545, '3999', 'treatment', '2014-12-02T13:01:00', '2014-12-02T13:01:00', '', 11270, 5096);
2382
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021275, '4006', 'control', '2014-12-03T22:38:00', '2014-12-03T22:38:00', '', 12770, 5882);
2383
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022550, '4007', 'treatment', '2014-11-22T12:36:00', '2014-11-22T12:36:00', '', 9880, 3365);
2384
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021036, '4008', 'treatment', '2014-12-05T13:55:00', '2014-12-05T13:55:00', '', 4585, 1512);
2385
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022900, '4009', 'treatment', '2014-11-17T17:09:00', '2014-11-17T17:09:00', '', 9965, 5450);
2386
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020740, '4013', 'control', '2014-12-07T17:38:00', '2014-12-07T17:38:00', '', 5785, 3049);
2387
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021476, '4015', 'control', '2014-12-02T19:23:00', '2014-12-02T19:23:00', '', 13775, 7810);
2388
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021245, '4016', 'control', '2014-12-04T10:00:00', '2014-12-04T10:00:00', '', 9275, 4265.5);
2389
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020464, '4018', 'treatment', '2014-12-09T11:23:00', '2014-12-09T11:23:00', '', 1890, 898);
2390
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022140, '4019', 'treatment', '2014-11-26T20:05:00', '2014-11-26T20:05:00', '', 9580, 3255);
2391
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021304, '4020', 'treatment', '2014-12-03T20:19:00', '2014-12-03T20:19:00', '', 6590, 4234);
2392
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021320, '4021', 'treatment', '2014-12-03T19:31:00', '2014-12-03T19:31:00', '', 4790, 2549);
2393
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020294, '4024', 'treatment', '2014-12-10T06:19:00', '2014-12-10T06:19:00', '', 7280, 4539);
2394
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021815, '4025', 'treatment', '2014-11-30T17:08:00', '2014-11-30T17:08:00', '', 6775, 4150.5);
2395
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021995, '4027', 'control', '2014-11-28T14:43:00', '2014-11-28T14:43:00', '', 55550, 38309);
2396
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020726, '4028', 'control', '2014-12-07T18:38:00', '2014-12-07T18:38:00', '', 11470, 5430);
2397
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021991, '4030', 'treatment', '2014-11-28T15:31:00', '2014-11-28T15:31:00', '', 6790, 4186);
2398
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022165, '4031', 'treatment', '2014-11-26T15:12:00', '2014-11-26T15:12:00', '', 18975, 12947.5);
2399
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022425, '4033', 'treatment', '2014-11-24T08:05:00', '2014-11-24T08:05:00', '', 6780, 4301);
2400
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021712, '4035', 'control', '2014-12-01T12:01:00', '2014-12-01T12:01:00', '', 6285, 3871.5);
2401
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021112, '4036', 'control', '2014-12-04T21:47:00', '2014-12-04T21:47:00', '', 8285, 4576);
2402
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021161, '4037', 'control', '2014-12-04T18:53:00', '2014-12-04T18:53:00', '', 6790, 2839);
2403
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020499, '4041', 'control', '2014-12-09T08:20:00', '2014-12-09T08:20:00', '', 3485, 1036);
2404
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020586, '4042', 'control', '2014-12-08T16:28:00', '2014-12-08T16:28:00', '', 5790, 1750);
2405
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020192, '4043', 'control', '2014-12-10T19:10:00', '2014-12-10T19:10:00', '', 7785, 2703);
2406
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021724, '4046', 'control', '2014-12-01T10:38:00', '2014-12-01T10:38:00', '', 8280, 3756);
2407
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020599, '4048', 'control', '2014-12-08T14:08:00', '2014-12-08T14:08:00', '', 10465, 6935.5);
2408
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021556, '4050', 'treatment', '2014-12-02T12:11:00', '2014-12-02T12:11:00', '', 3685, 2027.5);
2409
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021222, '4051', 'treatment', '2014-12-04T12:13:00', '2014-12-04T12:13:00', '', 5457, 2897.2);
2410
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020900, '4053', 'treatment', '2014-12-06T15:59:00', '2014-12-06T15:59:00', '', 3790, 968);
2411
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020641, '4055', 'treatment', '2014-12-08T10:09:00', '2014-12-08T10:09:00', '', 4090, 2413);
2412
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021416, '4059', 'control', '2014-12-03T10:31:00', '2014-12-03T10:31:00', '', 5280, 3191);
2413
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022295, '4060', 'control', '2014-11-25T10:31:00', '2014-11-25T10:31:00', '', 6175, 3917.5);
2414
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020380, '4063', 'control', '2014-12-09T17:54:00', '2014-12-09T17:54:00', '', 3785, 1052);
2415
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020622, '4064', 'treatment', '2014-12-08T12:07:00', '2014-12-08T12:07:00', '', 17070, 8047);
2416
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020157, '4065', 'treatment', '2014-12-10T20:39:00', '2014-12-10T20:39:00', '', 3490, 1268);
2417
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020791, '4067', 'treatment', '2014-12-07T13:43:00', '2014-12-07T13:43:00', '', 5185, 2791);
2418
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020244, '4033', 'control', '2014-12-10T12:57:00', '2014-12-10T12:57:00', 5022425, 3290, 1602);
2419
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022467, '4068', 'control', '2014-11-23T18:39:00', '2014-11-23T18:39:00', '', 4790, 2410);
2420
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022696, '4069', 'treatment', '2014-11-19T22:56:00', '2014-11-19T22:56:00', '', 10175, 3726);
2421
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020482, '4071', 'control', '2014-12-09T09:48:00', '2014-12-09T09:48:00', '', 10385, 6870.5);
2422
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022296, '4072', 'control', '2014-11-25T10:30:00', '2014-11-25T10:30:00', '', 4790, 2022);
2423
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023017, '4074', 'treatment', '2014-11-15T23:52:00', '2014-11-15T23:52:00', '', 8380, 2877);
2424
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022212, '4075', 'control', '2014-11-25T20:58:00', '2014-11-25T20:58:00', '', 3390, 1534);
2425
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021188, '4076', 'control', '2014-12-04T15:49:00', '2014-12-04T15:49:00', '', 9685, 3279);
2426
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021857, '4077', 'treatment', '2014-11-30T11:25:00', '2014-11-30T11:25:00', '', 5185, 3288.5);
2427
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021258, '4078', 'treatment', '2014-12-04T09:04:00', '2014-12-04T09:04:00', '', 3785, 1053);
2428
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022643, '4079', 'treatment', '2014-11-20T19:50:00', '2014-11-20T19:50:00', '', 9765, 3558);
2429
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022148, '4080', 'treatment', '2014-11-26T18:45:00', '2014-11-26T18:45:00', '', 9585, 5318);
2430
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020737, '4082', 'treatment', '2014-12-07T17:45:00', '2014-12-07T17:45:00', '', 4485, 1895.5);
2431
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020897, '4083', 'control', '2014-12-06T16:17:00', '2014-12-06T16:17:00', '', 3290, 1291);
2432
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022019, '4084', 'treatment', '2014-11-28T10:40:00', '2014-11-28T10:40:00', '', 8390, 4436);
2433
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022260, '4087', 'treatment', '2014-11-25T16:02:00', '2014-11-25T16:02:00', '', 5185, 2755);
2434
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020481, '4090', 'control', '2014-12-09T09:53:00', '2014-12-09T09:53:00', '', 11980, 4477);
2435
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022271, '4092', 'treatment', '2014-11-25T13:43:00', '2014-11-25T13:43:00', '', 14690, 6784);
2436
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022676, '4094', 'control', '2014-11-20T12:24:00', '2014-11-20T12:24:00', '', 2585, 1094);
2437
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022279, '4096', 'treatment', '2014-11-25T12:38:00', '2014-11-25T12:38:00', '', 6790, 2350);
2438
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022350, '4097', 'treatment', '2014-11-24T19:23:00', '2014-11-24T19:23:00', '', 11160, 6149);
2439
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020309, '4098', 'control', '2014-12-09T21:54:00', '2014-12-09T21:54:00', '', 10185, 6596.5);
2440
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022337, '4099', 'treatment', '2014-11-24T20:33:00', '2014-11-24T20:33:00', '', 3485, 872);
2441
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022865, '4100', 'treatment', '2014-11-18T11:35:00', '2014-11-18T11:35:00', '', 3290, 1577);
2442
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022571, '4101', 'control', '2014-11-21T21:41:00', '2014-11-21T21:41:00', '', 9785, 3462);
2443
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022846, '4102', 'treatment', '2014-11-18T15:29:00', '2014-11-18T15:29:00', '', 13780, 5109);
2444
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021379, '4104', 'control', '2014-12-03T14:01:00', '2014-12-03T14:01:00', '', 2490, 937);
2445
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020298, '4107', 'control', '2014-12-09T23:39:00', '2014-12-09T23:39:00', '', 9475, 3216);
2446
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022712, '4108', 'treatment', '2014-11-19T20:26:00', '2014-11-19T20:26:00', '', 19775, 7377);
2447
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023093, '4109', 'treatment', '2014-11-13T21:13:00', '2014-11-13T21:13:00', '', 10985, 6195);
2448
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021151, '4110', 'control', '2014-12-04T19:34:00', '2014-12-04T19:34:00', '', 9775, 3472);
2449
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021790, '4111', 'control', '2014-11-30T20:10:00', '2014-11-30T20:10:00', '', 3085, 1337);
2450
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022853, '4113', 'treatment', '2014-11-18T14:32:00', '2014-11-18T14:32:00', '', 4790, 1456);
2451
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022729, '4114', 'treatment', '2014-11-19T18:02:00', '2014-11-19T18:02:00', '', 9780, 6295);
2452
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020891, '4116', 'control', '2014-12-06T17:12:00', '2014-12-06T17:12:00', '', 5090, 2509);
2453
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021897, '4119', 'control', '2014-11-29T18:50:00', '2014-11-29T18:50:00', '', 15980, 9228);
2454
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021183, '4120', 'control', '2014-12-04T16:27:00', '2014-12-04T16:27:00', '', 7785, 2770);
2455
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021391, '4121', 'treatment', '2014-12-03T13:05:00', '2014-12-03T13:05:00', '', 11988, 5622);
2456
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020839, '4122', 'treatment', '2014-12-07T09:09:00', '2014-12-07T09:09:00', '', 11485, 7463.5);
2457
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021157, '4123', 'treatment', '2014-12-04T19:12:00', '2014-12-04T19:12:00', '', 3090, 1476);
2458
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022088, '4125', 'treatment', '2014-11-27T13:46:00', '2014-11-27T13:46:00', '', 9270, 5079);
2459
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021366, '4126', 'control', '2014-12-03T15:18:00', '2014-12-03T15:18:00', '', 6590, 3574);
2460
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022655, '4127', 'treatment', '2014-11-20T17:11:00', '2014-11-20T17:11:00', '', 5785, 1990);
2461
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021477, '4128', 'control', '2014-12-02T19:19:00', '2014-12-02T19:19:00', '', 7975, 4290);
2462
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020823, '4129', 'treatment', '2014-12-07T10:19:00', '2014-12-07T10:19:00', '', 3385, 1325.5);
2463
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022492, '4131', 'treatment', '2014-11-23T15:16:00', '2014-11-23T15:16:00', '', 4980, 1969);
2464
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022095, '4132', 'control', '2014-11-27T12:55:00', '2014-11-27T12:55:00', '', 9885, 4559.5);
2465
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021401, '4134', 'control', '2014-12-03T12:27:00', '2014-12-03T12:27:00', '', 4785, 1494);
2466
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021774, '4135', 'control', '2014-11-30T21:30:00', '2014-11-30T21:30:00', '', 9485, 5110);
2467
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022156, '4136', 'treatment', '2014-11-26T16:43:00', '2014-11-26T16:43:00', '', 3790, 1166);
2468
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022258, '4137', 'treatment', '2014-11-25T16:24:00', '2014-11-25T16:24:00', '', 6790, 4204);
2469
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022406, '4141', 'control', '2014-11-24T10:20:00', '2014-11-24T10:20:00', '', 4985, 2145.5);
2470
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021802, '4142', 'control', '2014-11-30T18:50:00', '2014-11-30T18:50:00', '', 3785, 1396.5);
2471
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021248, '4143', 'control', '2014-12-04T10:00:00', '2014-12-04T10:00:00', '', 3975, 2409.5);
2472
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022372, '4144', 'control', '2014-11-24T16:43:00', '2014-11-24T16:43:00', '', 5790, 2979);
2473
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020492, '4145', 'control', '2014-12-09T09:03:00', '2014-12-09T09:03:00', '', 10785, 4980.5);
2474
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020713, '4146', 'control', '2014-12-07T19:34:00', '2014-12-07T19:34:00', '', 13275, 4801);
2475
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021247, '4148', 'control', '2014-12-04T10:05:00', '2014-12-04T10:05:00', '', 6785, 3003.5);
2476
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022988, '4149', 'control', '2014-11-16T16:51:00', '2014-11-16T16:51:00', '', 4590, 1991);
2477
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021410, '4151', 'treatment', '2014-12-03T11:43:00', '2014-12-03T11:43:00', '', 36570, 21499);
2478
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020596, '4152', 'treatment', '2014-12-08T14:32:00', '2014-12-08T14:32:00', '', 10485, 5990);
2479
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022462, '4153', 'treatment', '2014-11-23T19:35:00', '2014-11-23T19:35:00', '', 25555, 17462.5);
2480
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021015, '4110', 'control', '2014-12-05T15:32:00', '2014-12-05T15:32:00', 5021151, 9785, 5518);
2481
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019970, '4116', '', '2014-12-11T17:15:00', '2014-12-11T17:15:00', 5020891, 9385, 4156.5);
2482
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020090, '4127', '', '2014-12-11T09:01:00', '2014-12-11T09:01:00', 5022655, 4785, 3037.5);
2483
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018139, '4153', '', '2014-12-21T16:11:00', '2014-12-21T16:11:00', 5022462, 4290, 1242);
2484
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020160, '4159', 'control', '2014-12-10T20:35:00', '2014-12-10T20:35:00', '', 4090, 1685);
2485
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020489, '4162', 'treatment', '2014-12-09T09:18:00', '2014-12-09T09:18:00', '', 5175, 2197.5);
2486
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022742, '4165', 'control', '2014-11-19T15:43:00', '2014-11-19T15:43:00', '', 8280, 3559);
2487
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022041, '4166', 'treatment', '2014-11-28T00:13:00', '2014-11-28T00:13:00', '', 3791, 2282.7);
2488
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022716, '4167', 'control', '2014-11-19T20:09:00', '2014-11-19T20:09:00', '', 11675, 7813.5);
2489
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020750, '4168', 'control', '2014-12-07T16:36:00', '2014-12-07T16:36:00', '', 6590, 4193);
2490
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020685, '4170', 'control', '2014-12-07T22:01:00', '2014-12-07T22:01:00', '', 3685, 2075.5);
2491
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022956, '4171', 'control', '2014-11-16T22:09:00', '2014-11-16T22:09:00', '', 3290, 1861);
2492
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020187, '4172', 'treatment', '2014-12-10T19:33:00', '2014-12-10T19:33:00', '', 4585, 2275);
2493
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021276, '4173', 'control', '2014-12-03T22:19:00', '2014-12-03T22:19:00', '', 5580, 2908);
2494
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022330, '4174', 'treatment', '2014-11-24T21:53:00', '2014-11-24T21:53:00', '', 23640, 11384);
2495
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022811, '4175', 'treatment', '2014-11-18T22:41:00', '2014-11-18T22:41:00', '', 4785, 1499);
2496
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021215, '4178', 'control', '2014-12-04T12:44:00', '2014-12-04T12:44:00', '', 4790, 2897);
2497
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020796, '4180', 'control', '2014-12-07T13:23:00', '2014-12-07T13:23:00', '', 2490, 938);
2498
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021959, '4182', 'control', '2014-11-28T20:29:00', '2014-11-28T20:29:00', '', 5790, 1739);
2499
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021935, '4183', 'control', '2014-11-29T10:12:00', '2014-11-29T10:12:00', '', 24485, 14180);
2500
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022143, '4184', 'control', '2014-11-26T19:40:00', '2014-11-26T19:40:00', '', 2590, 1238);
2501
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022688, '4187', 'treatment', '2014-11-20T08:16:00', '2014-11-20T08:16:00', '', 4790, 2797);
2502
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020607, '4188', 'control', '2014-12-08T13:22:00', '2014-12-08T13:22:00', '', 17265, 8068.5);
2503
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021509, '4190', 'control', '2014-12-02T16:15:00', '2014-12-02T16:15:00', '', 5875, 3132);
2504
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021984, '4191', 'treatment', '2014-11-28T16:28:00', '2014-11-28T16:28:00', '', 4785, 1975.5);
2505
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020632, '4192', 'control', '2014-12-08T11:16:00', '2014-12-08T11:16:00', '', 32440, 12425);
2506
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020814, '4193', 'control', '2014-12-07T11:43:00', '2014-12-07T11:43:00', '', 6785, 2323);
2507
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020255, '4194', 'control', '2014-12-10T11:48:00', '2014-12-10T11:48:00', '', 10490, 4945);
2508
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020612, '4195', 'treatment', '2014-12-08T12:49:00', '2014-12-08T12:49:00', '', 11980, 4468);
2509
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020747, '4196', 'control', '2014-12-07T17:02:00', '2014-12-07T17:02:00', '', 3385, 1508);
2510
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021445, '4197', 'treatment', '2014-12-02T21:57:00', '2014-12-02T21:57:00', '', 9285, 5012);
2511
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021799, '4199', 'control', '2014-11-30T19:08:00', '2014-11-30T19:08:00', '', 4790, 2061);
2512
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021619, '4201', 'control', '2014-12-01T21:04:00', '2014-12-01T21:04:00', '', 4290, 1405);
2513
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021892, '4202', 'control', '2014-11-29T19:27:00', '2014-11-29T19:27:00', '', 6480, 3585);
2514
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020364, '4206', 'control', '2014-12-09T19:12:00', '2014-12-09T19:12:00', '', 16870, 8126);
2515
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021599, '4207', 'treatment', '2014-12-02T03:55:00', '2014-12-02T03:55:00', '', 2785, 1349);
2516
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021082, '4209', 'control', '2014-12-05T09:14:00', '2014-12-05T09:14:00', '', 11085, 7345.5);
2517
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020701, '4210', 'treatment', '2014-12-07T20:17:00', '2014-12-07T20:17:00', '', 26975, 10394);
2518
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021699, '4211', 'control', '2014-12-01T13:26:00', '2014-12-01T13:26:00', '', 8275, 5251.5);
2519
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023068, '4213', 'control', '2014-11-14T12:40:00', '2014-11-14T12:40:00', '', 9790, 5549);
2520
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020887, '4214', 'treatment', '2014-12-06T17:20:00', '2014-12-06T17:20:00', '', 2790, 1156);
2521
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020426, '4217', 'control', '2014-12-09T13:09:00', '2014-12-09T13:09:00', '', 11085, 7244.5);
2522
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021266, '4221', 'control', '2014-12-04T07:34:00', '2014-12-04T07:34:00', '', 3790, 955);
2523
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021298, '4222', 'control', '2014-12-03T20:55:00', '2014-12-03T20:55:00', '', 3285, 1574);
2524
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022497, '4224', 'treatment', '2014-11-23T14:22:00', '2014-11-23T14:22:00', '', 17475, 6570);
2525
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022723, '4226', 'treatment', '2014-11-19T18:41:00', '2014-11-19T18:41:00', '', 11785, 6491);
2526
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022991, '4227', 'control', '2014-11-16T16:02:00', '2014-11-16T16:02:00', '', 5290, 2330);
2527
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020940, '4231', 'treatment', '2014-12-06T09:33:00', '2014-12-06T09:33:00', '', 10780, 3942);
2528
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022063, '4233', 'treatment', '2014-11-27T18:54:00', '2014-11-27T18:54:00', '', 4290, 2441);
2529
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022013, '4234', 'control', '2014-11-28T11:33:00', '2014-11-28T11:33:00', '', 5246, 3272.2);
2530
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022565, '4238', 'treatment', '2014-11-22T08:23:00', '2014-11-22T08:23:00', '', 9490, 4303);
2531
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020655, '4239', 'control', '2014-12-08T08:45:00', '2014-12-08T08:45:00', '', 7775, 2703);
2532
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022650, '4241', 'treatment', '2014-11-20T18:24:00', '2014-11-20T18:24:00', '', 19775, 9304.5);
2533
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023005, '4242', 'treatment', '2014-11-16T11:39:00', '2014-11-16T11:39:00', '', 3390, 1133);
2534
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020509, '4243', 'control', '2014-12-09T05:51:00', '2014-12-09T05:51:00', '', 4785, 2458);
2535
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022982, '4244', 'treatment', '2014-11-16T17:40:00', '2014-11-16T17:40:00', '', 5275, 3314.5);
2536
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023143, '4245', 'treatment', '2014-11-13T06:36:00', '2014-11-13T06:36:00', '', 15485, 5876);
2537
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022315, '4246', 'treatment', '2014-11-25T07:50:00', '2014-11-25T07:50:00', '', 13280, 8860);
2538
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020849, '4248', 'control', '2014-12-06T23:33:00', '2014-12-06T23:33:00', '', 5085, 1970.5);
2539
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020626, '4250', 'control', '2014-12-08T11:58:00', '2014-12-08T11:58:00', '', 4585, 1252);
2540
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022679, '4251', 'treatment', '2014-11-20T11:24:00', '2014-11-20T11:24:00', '', 5075, 2657);
2541
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020300, '4252', 'control', '2014-12-09T22:49:00', '2014-12-09T22:49:00', '', 11485, 4225);
2542
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023004, '4254', 'treatment', '2014-11-16T12:04:00', '2014-11-16T12:04:00', '', 2590, 551);
2543
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023064, '4257', 'treatment', '2014-11-14T16:12:00', '2014-11-14T16:12:00', '', 10485, 3808);
2544
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020476, '4258', 'treatment', '2014-12-09T10:24:00', '2014-12-09T10:24:00', '', 14165, 7924);
2545
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021473, '4259', 'control', '2014-12-02T19:52:00', '2014-12-02T19:52:00', '', 4585, 2319);
2546
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019984, '4238', '', '2014-12-11T15:47:00', '2014-12-11T15:47:00', 5021908, 5085, 2004.5);
2547
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020452, '4258', 'treatment', '2014-12-09T12:07:00', '2014-12-09T12:07:00', 5020476, 9480, 4237);
2548
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022767, '4260', 'treatment', '2014-11-19T13:18:00', '2014-11-19T13:18:00', '', 10980, 7268);
2549
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021058, '4262', 'control', '2014-12-05T11:54:00', '2014-12-05T11:54:00', '', 12975, 5913.5);
2550
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020944, '4263', 'treatment', '2014-12-06T09:02:00', '2014-12-06T09:02:00', '', 10885, 4941.5);
2551
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020334, '4264', 'control', '2014-12-09T20:21:00', '2014-12-09T20:21:00', '', 1990, 905);
2552
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020401, '4265', 'control', '2014-12-09T14:55:00', '2014-12-09T14:55:00', '', 6590, 2072);
2553
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020128, '4266', 'control', '2014-12-10T22:23:00', '2014-12-10T22:23:00', '', 16755, 7922.5);
2554
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021468, '4267', 'treatment', '2014-12-02T20:00:00', '2014-12-02T20:00:00', '', 9070, 5001);
2555
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022481, '4270', 'treatment', '2014-11-23T16:31:00', '2014-11-23T16:31:00', '', 6590, 2740);
2556
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021154, '4271', 'control', '2014-12-04T19:23:00', '2014-12-04T19:23:00', '', 5290, 2865);
2557
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020283, '4274', 'control', '2014-12-10T09:22:00', '2014-12-10T09:22:00', '', 11990, 6805);
2558
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020562, '4275', 'control', '2014-12-08T18:47:00', '2014-12-08T18:47:00', '', 5285, 1715);
2559
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022705, '4277', 'treatment', '2014-11-19T21:22:00', '2014-11-19T21:22:00', '', 6590, 2746);
2560
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020270, '4278', 'control', '2014-12-10T10:39:00', '2014-12-10T10:39:00', '', 8075, 3701.5);
2561
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021779, '4279', 'control', '2014-11-30T20:51:00', '2014-11-30T20:51:00', '', 7085, 3791);
2562
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021432, '4280', 'control', '2014-12-03T07:41:00', '2014-12-03T07:41:00', '', 10585, 4864.5);
2563
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022428, '4281', 'treatment', '2014-11-24T07:31:00', '2014-11-24T07:31:00', '', 17970, 6734);
2564
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020985, '4283', 'treatment', '2014-12-05T18:40:00', '2014-12-05T18:40:00', '', 8680, 3951);
2565
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022495, '4284', 'treatment', '2014-11-23T14:38:00', '2014-11-23T14:38:00', '', 9180, 5841);
2566
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022749, '4286', 'control', '2014-11-19T14:58:00', '2014-11-19T14:58:00', '', 6785, 3623);
2567
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020748, '4289', 'treatment', '2014-12-07T16:58:00', '2014-12-07T16:58:00', '', 7790, 2740);
2568
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023055, '4290', 'control', '2014-11-14T19:04:00', '2014-11-14T19:04:00', '', 3585, 1556);
2569
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021853, '4291', 'control', '2014-11-30T12:33:00', '2014-11-30T12:33:00', '', 9875, 4422.5);
2570
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022241, '4294', 'treatment', '2014-11-25T17:54:00', '2014-11-25T17:54:00', '', 6785, 4264.5);
2571
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020993, '4295', 'control', '2014-12-05T17:58:00', '2014-12-05T17:58:00', '', 4790, 1973);
2572
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021962, '4296', 'control', '2014-11-28T20:13:00', '2014-11-28T20:13:00', '', 1690, 482);
2573
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021152, '4297', 'control', '2014-12-04T19:25:00', '2014-12-04T19:25:00', '', 3785, 1482.5);
2574
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021700, '4299', 'treatment', '2014-12-01T13:23:00', '2014-12-01T13:23:00', '', 14995, 7011.5);
2575
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022453, '4302', 'treatment', '2014-11-23T20:25:00', '2014-11-23T20:25:00', '', 9085, 5791.5);
2576
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020169, '4303', 'control', '2014-12-10T20:10:00', '2014-12-10T20:10:00', '', 9290, 4252);
2577
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021119, '4304', 'treatment', '2014-12-04T21:18:00', '2014-12-04T21:18:00', '', 5590, 2788);
2578
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020946, '4307', 'control', '2014-12-06T08:28:00', '2014-12-06T08:28:00', '', 3790, 1528);
2579
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022528, '4308', 'treatment', '2014-11-22T20:36:00', '2014-11-22T20:36:00', '', 3785, 1831);
2580
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023101, '4309', 'control', '2014-11-13T20:06:00', '2014-11-13T20:06:00', '', 17790, 11926);
2581
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021350, '4310', 'treatment', '2014-12-03T16:14:00', '2014-12-03T16:14:00', '', 5385, 2167.5);
2582
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021250, '4311', 'control', '2014-12-04T09:52:00', '2014-12-04T09:52:00', '', 4790, 1393);
2583
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022732, '4312', 'control', '2014-11-19T17:38:00', '2014-11-19T17:38:00', '', 6885, 3015.5);
2584
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022030, '4314', 'treatment', '2014-11-28T09:37:00', '2014-11-28T09:37:00', '', 4933, 1382.2);
2585
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021651, '4315', 'control', '2014-12-01T18:50:00', '2014-12-01T18:50:00', '', 1790, 655);
2586
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020635, '4316', 'control', '2014-12-08T10:36:00', '2014-12-08T10:36:00', '', 4975, 1435);
2587
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021253, '4318', 'control', '2014-12-04T09:35:00', '2014-12-04T09:35:00', '', 5785, 2905);
2588
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021563, '4321', 'control', '2014-12-02T11:17:00', '2014-12-02T11:17:00', '', 21690, 10512);
2589
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021381, '4323', 'control', '2014-12-03T13:58:00', '2014-12-03T13:58:00', '', 7790, 4199);
2590
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022331, '4328', 'treatment', '2014-11-24T21:38:00', '2014-11-24T21:38:00', '', 5790, 3551);
2591
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021722, '4329', 'treatment', '2014-12-01T11:29:00', '2014-12-01T11:29:00', '', 5680, 2315);
2592
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022476, '4330', 'treatment', '2014-11-23T18:03:00', '2014-11-23T18:03:00', '', 9485, 5165);
2593
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023125, '4331', 'treatment', '2014-11-13T14:38:00', '2014-11-13T14:38:00', '', 9680, 4380);
2594
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022913, '4332', 'treatment', '2014-11-17T14:33:00', '2014-11-17T14:33:00', '', 8285, 2766);
2595
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021307, '4333', 'control', '2014-12-03T20:09:00', '2014-12-03T20:09:00', '', 9990, 6502);
2596
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020505, '4334', 'treatment', '2014-12-09T07:41:00', '2014-12-09T07:41:00', '', 4585, 2626.5);
2597
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021947, '4337', 'treatment', '2014-11-29T02:49:00', '2014-11-29T02:49:00', '', 3590, 1052);
2598
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021821, '4338', 'treatment', '2014-11-30T16:36:00', '2014-11-30T16:36:00', '', 18280, 8635);
2599
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021179, '4340', 'control', '2014-12-04T16:47:00', '2014-12-04T16:47:00', '', 2790, 1645);
2600
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022914, '4341', 'treatment', '2014-11-17T14:32:00', '2014-11-17T14:32:00', '', 14680, 6935);
2601
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022220, '4346', 'treatment', '2014-11-25T20:34:00', '2014-11-25T20:34:00', '', 13360, 4764);
2602
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021958, '4347', 'control', '2014-11-28T20:53:00', '2014-11-28T20:53:00', '', 4790, 1958);
2603
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020882, '4348', 'treatment', '2014-12-06T18:47:00', '2014-12-06T18:47:00', '', 18465, 10767);
2604
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023097, '4349', 'control', '2014-11-13T20:27:00', '2014-11-13T20:27:00', '', 14665, 8286);
2605
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020939, '4350', 'treatment', '2014-12-06T09:49:00', '2014-12-06T09:49:00', '', 4090, 1466);
2606
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021822, '4353', 'control', '2014-11-30T16:49:00', '2014-11-30T16:49:00', '', 17575, 6556);
2607
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022693, '4355', 'treatment', '2014-11-20T00:28:00', '2014-11-20T00:28:00', '', 6785, 3702);
2608
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023059, '4309', 'treatment', '2014-11-14T18:11:00', '2014-11-14T18:11:00', 5023101, 2590, 1290);
2609
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019840, '4314', '', '2014-12-12T10:10:00', '2014-12-12T10:10:00', 5022030, 3285, 1810.5);
2610
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5017894, '4338', '', '2014-12-29T19:50:00', '2014-12-29T19:50:00', 5021821, 7185, 3954);
2611
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020553, '4358', 'control', '2014-12-08T19:15:00', '2014-12-08T19:15:00', '', 5780, 3520);
2612
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021608, '4359', 'control', '2014-12-01T22:34:00', '2014-12-01T22:34:00', '', 3585, 1560);
2613
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023033, '4361', 'control', '2014-11-15T17:08:00', '2014-11-15T17:08:00', '', 3790, 2270);
2614
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021791, '4362', 'treatment', '2014-11-30T20:00:00', '2014-11-30T20:00:00', '', 15080, 7014);
2615
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022273, '4363', 'treatment', '2014-11-25T13:27:00', '2014-11-25T13:27:00', '', 17055, 6428);
2616
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021548, '4364', 'treatment', '2014-12-02T12:33:00', '2014-12-02T12:33:00', '', 15996, 7570);
2617
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023062, '4365', 'treatment', '2014-11-14T17:22:00', '2014-11-14T17:22:00', '', 2590, 1209);
2618
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022966, '4367', 'treatment', '2014-11-16T20:20:00', '2014-11-16T20:20:00', '', 9780, 3313);
2619
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022209, '4368', 'treatment', '2014-11-25T21:14:00', '2014-11-25T21:14:00', '', 18470, 12601);
2620
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021927, '4369', 'control', '2014-11-29T11:32:00', '2014-11-29T11:32:00', '', 6285, 2681.5);
2621
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022390, '4371', 'control', '2014-11-24T13:54:00', '2014-11-24T13:54:00', '', 3385, 1782.5);
2622
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022294, '4373', 'treatment', '2014-11-25T10:40:00', '2014-11-25T10:40:00', '', 3090, 696);
2623
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021129, '4375', 'treatment', '2014-12-04T20:29:00', '2014-12-04T20:29:00', '', 4490, 1842);
2624
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022464, '4377', 'control', '2014-11-23T19:34:00', '2014-11-23T19:34:00', '', 6285, 3203);
2625
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021106, '4378', 'treatment', '2014-12-04T22:21:00', '2014-12-04T22:21:00', '', 3290, 1250);
2626
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020388, '4380', 'control', '2014-12-09T16:59:00', '2014-12-09T16:59:00', '', 11885, 4444);
2627
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021778, '4384', 'control', '2014-11-30T20:51:00', '2014-11-30T20:51:00', '', 16175, 7772.5);
2628
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022102, '4387', 'treatment', '2014-11-27T12:19:00', '2014-11-27T12:19:00', '', 22150, 10667);
2629
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022765, '4388', 'control', '2014-11-19T13:23:00', '2014-11-19T13:23:00', '', 6785, 3547);
2630
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022965, '4391', 'control', '2014-11-16T20:22:00', '2014-11-16T20:22:00', '', 4290, 1267);
2631
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022532, '4393', 'treatment', '2014-11-22T19:52:00', '2014-11-22T19:52:00', '', 2590, 1249);
2632
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021547, '4395', 'treatment', '2014-12-02T12:36:00', '2014-12-02T12:36:00', '', 11790, 4295);
2633
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021109, '4396', 'control', '2014-12-04T22:04:00', '2014-12-04T22:04:00', '', 9380, 6053);
2634
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022864, '4398', 'treatment', '2014-11-18T11:40:00', '2014-11-18T11:40:00', '', 4790, 1853);
2635
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020755, '4400', 'treatment', '2014-12-07T16:20:00', '2014-12-07T16:20:00', '', 13990, 7853);
2636
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022912, '4403', 'treatment', '2014-11-17T14:38:00', '2014-11-17T14:38:00', '', 9290, 4991);
2637
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021039, '4404', 'treatment', '2014-12-05T13:22:00', '2014-12-05T13:22:00', '', 4685, 1797.5);
2638
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023084, '4409', 'control', '2014-11-13T23:57:00', '2014-11-13T23:57:00', '', 4790, 1494);
2639
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023019, '4412', 'control', '2014-11-15T22:37:00', '2014-11-15T22:37:00', '', 2790, 1014);
2640
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022132, '4413', 'treatment', '2014-11-26T20:35:00', '2014-11-26T20:35:00', '', 8280, 4526);
2641
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022773, '4415', 'treatment', '2014-11-19T12:54:00', '2014-11-19T12:54:00', '', 2790, 1367);
2642
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020226, '4416', 'control', '2014-12-10T14:56:00', '2014-12-10T14:56:00', '', 5785, 3558.5);
2643
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020930, '4417', 'control', '2014-12-06T11:52:00', '2014-12-06T11:52:00', '', 12490, 7005);
2644
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022073, '4418', 'treatment', '2014-11-27T17:06:00', '2014-11-27T17:06:00', '', 3290, 1478);
2645
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022381, '4420', 'control', '2014-11-24T15:35:00', '2014-11-24T15:35:00', '', 3285, 731);
2646
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021032, '4421', 'treatment', '2014-12-05T14:22:00', '2014-12-05T14:22:00', '', 9575, 6370.5);
2647
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023002, '4425', 'treatment', '2014-11-16T12:12:00', '2014-11-16T12:12:00', '', 4790, 2841);
2648
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020653, '4426', 'control', '2014-12-08T08:57:00', '2014-12-08T08:57:00', '', 9775, 6400.5);
2649
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021588, '4428', 'control', '2014-12-02T07:44:00', '2014-12-02T07:44:00', '', 4090, 2121);
2650
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021617, '4429', 'control', '2014-12-01T21:11:00', '2014-12-01T21:11:00', '', 10985, 4066);
2651
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021305, '4435', 'control', '2014-12-03T20:17:00', '2014-12-03T20:17:00', '', 9342, 6191.4);
2652
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020572, '4436', 'treatment', '2014-12-08T17:44:00', '2014-12-08T17:44:00', '', 2790, 1353);
2653
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021384, '4437', 'control', '2014-12-03T13:29:00', '2014-12-03T13:29:00', '', 6280, 2081);
2654
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022061, '4440', 'control', '2014-11-27T19:05:00', '2014-11-27T19:05:00', '', 4785, 2294);
2655
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020885, '4442', 'treatment', '2014-12-06T18:32:00', '2014-12-06T18:32:00', '', 9180, 5883);
2656
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022299, '4443', 'treatment', '2014-11-25T10:18:00', '2014-11-25T10:18:00', '', 7085, 3215.5);
2657
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021274, '4445', 'control', '2014-12-03T22:42:00', '2014-12-03T22:42:00', '', 3290, 1498);
2658
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022327, '4446', 'treatment', '2014-11-24T22:37:00', '2014-11-24T22:37:00', '', 3790, 2199);
2659
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022664, '4449', 'treatment', '2014-11-20T14:13:00', '2014-11-20T14:13:00', '', 11575, 5446.5);
2660
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022474, '4451', 'treatment', '2014-11-23T18:17:00', '2014-11-23T18:17:00', '', 6790, 2198);
2661
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021368, '4452', 'control', '2014-12-03T15:04:00', '2014-12-03T15:04:00', '', 12580, 7130);
2662
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021327, '4455', 'control', '2014-12-03T18:36:00', '2014-12-03T18:36:00', '', 4790, 1926);
2663
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022785, '4456', 'treatment', '2014-11-19T12:11:00', '2014-11-19T12:11:00', '', 3790, 1128);
2664
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020501, '4458', 'control', '2014-12-09T08:17:00', '2014-12-09T08:17:00', '', 2790, 873);
2665
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023045, '4459', 'treatment', '2014-11-15T07:47:00', '2014-11-15T07:47:00', '', 2290, 1114);
2666
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022972, '4461', 'treatment', '2014-11-16T19:48:00', '2014-11-16T19:48:00', '', 9990, 3648);
2667
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021516, '4463', 'treatment', '2014-12-02T15:52:00', '2014-12-02T15:52:00', '', 13180, 7356);
2668
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021166, '4464', 'treatment', '2014-12-04T18:17:00', '2014-12-04T18:17:00', '', 3790, 1018);
2669
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020514, '4465', 'control', '2014-12-08T23:10:00', '2014-12-08T23:10:00', '', 10870, 4993);
2670
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020666, '4468', 'control', '2014-12-08T08:09:00', '2014-12-08T08:09:00', '', 19070, 8945);
2671
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023047, '4469', 'treatment', '2014-11-15T06:02:00', '2014-11-15T06:02:00', '', 5975, 2535.5);
2672
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022647, '4470', 'treatment', '2014-11-20T19:08:00', '2014-11-20T19:08:00', '', 5790, 2889);
2673
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018320, '4398', '', '2014-12-19T16:02:00', '2014-12-19T16:02:00', 5022864, 4790, 1806);
2674
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019982, '4451', '', '2014-12-11T15:54:00', '2014-12-11T15:54:00', 5022474, 6790, 2373);
2675
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022640, '4473', 'treatment', '2014-11-20T19:57:00', '2014-11-20T19:57:00', '', 5480, 3519);
2676
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020914, '4474', 'treatment', '2014-12-06T14:08:00', '2014-12-06T14:08:00', '', 20960, 10042);
2677
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021901, '4477', 'control', '2014-11-29T17:27:00', '2014-11-29T17:27:00', '', 6785, 2216);
2678
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020955, '4479', 'control', '2014-12-05T22:48:00', '2014-12-05T22:48:00', '', 41490, 28602);
2679
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021393, '4482', 'treatment', '2014-12-03T13:04:00', '2014-12-03T13:04:00', '', 18350, 12460);
2680
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021354, '4483', 'control', '2014-12-03T15:58:00', '2014-12-03T15:58:00', '', 8675, 3758.5);
2681
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022215, '4484', 'control', '2014-11-25T20:51:00', '2014-11-25T20:51:00', '', 4785, 1406);
2682
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020530, '4486', 'control', '2014-12-08T21:47:00', '2014-12-08T21:47:00', '', 3290, 943);
2683
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020923, '4491', 'treatment', '2014-12-06T12:53:00', '2014-12-06T12:53:00', '', 12465, 4393);
2684
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020308, '4492', 'treatment', '2014-12-09T22:03:00', '2014-12-09T22:03:00', '', 10870, 4953);
2685
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022949, '4494', 'treatment', '2014-11-17T07:17:00', '2014-11-17T07:17:00', '', 4790, 1579);
2686
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022190, '4496', 'treatment', '2014-11-26T08:11:00', '2014-11-26T08:11:00', '', 4790, 2405);
2687
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023139, '4497', 'treatment', '2014-11-13T11:48:00', '2014-11-13T11:48:00', '', 8590, 3818);
2688
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022475, '4500', 'treatment', '2014-11-23T18:04:00', '2014-11-23T18:04:00', '', 4680, 2818);
2689
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021010, '4502', 'control', '2014-12-05T16:03:00', '2014-12-05T16:03:00', '', 3490, 1749);
2690
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020689, '4505', 'treatment', '2014-12-07T21:52:00', '2014-12-07T21:52:00', '', 9785, 4529.5);
2691
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021108, '4507', 'treatment', '2014-12-04T22:11:00', '2014-12-04T22:11:00', '', 16485, 11046.5);
2692
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020762, '4508', 'control', '2014-12-07T15:50:00', '2014-12-07T15:50:00', '', 5290, 1672);
2693
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021659, '4509', 'control', '2014-12-01T18:01:00', '2014-12-01T18:01:00', '', 12470, 4410);
2694
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022191, '4510', 'control', '2014-11-26T08:17:00', '2014-11-26T08:17:00', '', 5875, 3223);
2695
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021753, '4513', 'control', '2014-12-01T07:24:00', '2014-12-01T07:24:00', '', 12985, 8653.5);
2696
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020406, '4514', 'treatment', '2014-12-09T14:22:00', '2014-12-09T14:22:00', '', 6790, 2999);
2697
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022071, '4519', 'treatment', '2014-11-27T15:38:00', '2014-11-27T15:38:00', '', 13480, 9108);
2698
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022395, '4520', 'treatment', '2014-11-24T12:55:00', '2014-11-24T12:55:00', '', 12885, 7211);
2699
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020466, '4521', 'control', '2014-12-09T10:58:00', '2014-12-09T10:58:00', '', 17356, 6606.4);
2700
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022974, '4526', 'treatment', '2014-11-16T19:25:00', '2014-11-16T19:25:00', '', 2790, 644);
2701
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021786, '4528', 'control', '2014-11-28T18:45:00', '2014-11-28T18:45:00', '', 17490, 8416);
2702
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020767, '4529', 'treatment', '2014-12-07T15:31:00', '2014-12-07T15:31:00', '', 9980, 4628);
2703
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022770, '4531', 'treatment', '2014-11-19T13:02:00', '2014-11-19T13:02:00', '', 7785, 4303);
2704
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021613, '4533', 'treatment', '2014-12-01T22:22:00', '2014-12-01T22:22:00', '', 9085, 4181.5);
2705
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021592, '4534', 'control', '2014-12-02T06:27:00', '2014-12-02T06:27:00', '', 6585, 2276);
2706
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022511, '4535', 'treatment', '2014-11-23T10:36:00', '2014-11-23T10:36:00', '', 8585, 4667);
2707
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021540, '4537', 'treatment', '2014-12-02T13:30:00', '2014-12-02T13:30:00', '', 7480, 2508);
2708
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021954, '4538', 'control', '2014-11-28T21:41:00', '2014-11-28T21:41:00', '', 7790, 4894);
2709
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020378, '4541', 'control', '2014-12-09T18:00:00', '2014-12-09T18:00:00', '', 9180, 3100);
2710
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021798, '4542', 'treatment', '2014-11-30T19:11:00', '2014-11-30T19:11:00', '', 7785, 2734);
2711
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020435, '4544', 'treatment', '2014-12-09T12:55:00', '2014-12-09T12:55:00', '', 3790, 2102);
2712
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021038, '4546', 'treatment', '2014-12-05T13:39:00', '2014-12-05T13:39:00', '', 8977, 3970.5);
2713
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022252, '4547', 'treatment', '2014-11-25T16:57:00', '2014-11-25T16:57:00', '', 13965, 5277);
2714
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023075, '4548', 'treatment', '2014-11-14T09:38:00', '2014-11-14T09:38:00', '', 8760, 3885);
2715
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021080, '4549', 'treatment', '2014-12-05T09:25:00', '2014-12-05T09:25:00', '', 3190, 1152);
2716
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021139, '4550', 'control', '2014-12-04T19:55:00', '2014-12-04T19:55:00', '', 3290, 950);
2717
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021914, '4551', 'control', '2014-11-29T14:07:00', '2014-11-29T14:07:00', '', 3885, 1822);
2718
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021910, '4552', 'treatment', '2014-11-29T14:51:00', '2014-11-29T14:51:00', '', 2190, 579);
2719
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023102, '4553', 'control', '2014-11-13T19:57:00', '2014-11-13T19:57:00', '', 9580, 3503);
2720
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022421, '4554', 'treatment', '2014-11-24T08:43:00', '2014-11-24T08:43:00', '', 18180, 10462);
2721
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021168, '4555', 'control', '2014-12-04T18:15:00', '2014-12-04T18:15:00', '', 12370, 5768);
2722
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022682, '4556', 'treatment', '2014-11-20T10:38:00', '2014-11-20T10:38:00', '', 10280, 4545);
2723
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022808, '4557', 'treatment', '2014-11-18T23:26:00', '2014-11-18T23:26:00', '', 15945, 10665.5);
2724
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021098, '4558', 'control', '2014-12-05T06:27:00', '2014-12-05T06:27:00', '', 16870, 11260);
2725
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020368, '4559', 'control', '2014-12-09T18:51:00', '2014-12-09T18:51:00', '', 4790, 1858);
2726
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020699, '4560', 'treatment', '2014-12-07T20:37:00', '2014-12-07T20:37:00', '', 3290, 740);
2727
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023037, '4561', 'treatment', '2014-11-15T14:19:00', '2014-11-15T14:19:00', '', 2590, 976);
2728
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020385, '4562', 'treatment', '2014-12-09T17:08:00', '2014-12-09T17:08:00', '', 1890, 495);
2729
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020828, '4565', 'control', '2014-12-07T10:06:00', '2014-12-07T10:06:00', '', 6785, 3538);
2730
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021269, '4566', 'treatment', '2014-12-04T01:17:00', '2014-12-04T01:17:00', '', 9280, 6086);
2731
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020787, '4567', 'control', '2014-12-07T13:53:00', '2014-12-07T13:53:00', '', 9990, 5429);
2732
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022981, '4568', 'control', '2014-11-16T18:02:00', '2014-11-16T18:02:00', '', 5685, 3614.5);
2733
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019702, '4491', '', '2014-12-12T21:57:00', '2014-12-12T21:57:00', 5020923, 12490, 5648);
2734
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018396, '4505', '', '2014-12-19T08:14:00', '2014-12-19T08:14:00', 5020689, 4785, 2304);
2735
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019399, '4552', '', '2014-12-14T19:35:00', '2014-12-14T19:35:00', 5021910, 3585, 1198.5);
2736
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019348, '4556', '', '2014-12-14T21:26:00', '2014-12-14T21:26:00', 5022682, 12690, 5832);
2737
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022115, '4561', 'treatment', '2014-11-27T08:19:00', '2014-11-27T08:19:00', 5023037, 9285, 6171.5);
2738
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021929, '4561', 'treatment', '2014-11-29T11:01:00', '2014-11-29T11:01:00', 5022115, 3790, 1371);
2739
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023042, '4571', 'treatment', '2014-11-15T09:09:00', '2014-11-15T09:09:00', '', 9380, 5970);
2740
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021085, '4572', 'control', '2014-12-05T08:40:00', '2014-12-05T08:40:00', '', 14070, 6573);
2741
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020535, '4574', 'treatment', '2014-12-08T21:13:00', '2014-12-08T21:13:00', '', 9970, 3550);
2742
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021642, '4575', 'control', '2014-12-01T19:09:00', '2014-12-01T19:09:00', '', 4385, 1615.5);
2743
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020554, '4576', 'treatment', '2014-12-08T19:07:00', '2014-12-08T19:07:00', '', 5290, 2804);
2744
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022542, '4577', 'treatment', '2014-11-22T16:18:00', '2014-11-22T16:18:00', '', 10290, 3805);
2745
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022815, '4579', 'treatment', '2014-11-18T21:40:00', '2014-11-18T21:40:00', '', 7285, 2343);
2746
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020471, '4580', 'control', '2014-12-09T10:45:00', '2014-12-09T10:45:00', '', 26250, 10048);
2747
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020860, '4582', 'control', '2014-12-06T21:08:00', '2014-12-06T21:08:00', '', 2790, 978);
2748
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022891, '4584', 'treatment', '2014-11-17T18:26:00', '2014-11-17T18:26:00', '', 3880, 1969);
2749
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022995, '4586', 'treatment', '2014-11-16T14:43:00', '2014-11-16T14:43:00', '', 11275, 6211);
2750
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021576, '4589', 'treatment', '2014-12-02T09:32:00', '2014-12-02T09:32:00', '', 17660, 10124);
2751
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020681, '4590', 'treatment', '2014-12-07T22:11:00', '2014-12-07T22:11:00', '', 9280, 3409);
2752
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021816, '4593', 'control', '2014-11-30T17:02:00', '2014-11-30T17:02:00', '', 3090, 1329);
2753
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020861, '4595', 'control', '2014-12-06T21:05:00', '2014-12-06T21:05:00', '', 13770, 4948);
2754
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023046, '4596', 'treatment', '2014-11-15T06:53:00', '2014-11-15T06:53:00', '', 4790, 3003);
2755
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021293, '4597', 'treatment', '2014-12-03T21:00:00', '2014-12-03T21:00:00', '', 4790, 1396);
2756
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021723, '4598', 'control', '2014-12-01T11:02:00', '2014-12-01T11:02:00', '', 9995, 4610.5);
2757
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022561, '4601', 'control', '2014-11-22T09:40:00', '2014-11-22T09:40:00', '', 10170, 3636);
2758
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020893, '4602', 'treatment', '2014-12-06T16:56:00', '2014-12-06T16:56:00', '', 9080, 5066);
2759
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022491, '4604', 'treatment', '2014-11-23T15:41:00', '2014-11-23T15:41:00', '', 9995, 5670);
2760
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020398, '4610', 'control', '2014-12-09T15:33:00', '2014-12-09T15:33:00', '', 7775, 3462.5);
2761
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021555, '4612', 'treatment', '2014-12-02T12:20:00', '2014-12-02T12:20:00', '', 5285, 2261.5);
2762
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022288, '4617', 'treatment', '2014-11-25T11:36:00', '2014-11-25T11:36:00', '', 9575, 3244);
2763
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020276, '4621', 'control', '2014-12-10T09:58:00', '2014-12-10T09:58:00', '', 12970, 4760);
2764
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021683, '4622', 'treatment', '2014-12-01T15:44:00', '2014-12-01T15:44:00', '', 10375, 3673);
2765
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021685, '4623', 'treatment', '2014-12-01T15:27:00', '2014-12-01T15:27:00', '', 1690, 690);
2766
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022848, '4624', 'treatment', '2014-11-18T15:24:00', '2014-11-18T15:24:00', '', 7785, 3400.5);
2767
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022204, '4625', 'treatment', '2014-11-25T21:44:00', '2014-11-25T21:44:00', '', 5480, 2957);
2768
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022737, '4626', 'treatment', '2014-11-19T16:18:00', '2014-11-19T16:18:00', '', 13990, 5259);
2769
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022721, '4628', 'treatment', '2014-11-19T18:51:00', '2014-11-19T18:51:00', '', 4290, 2065);
2770
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021539, '4629', 'treatment', '2014-12-02T13:34:00', '2014-12-02T13:34:00', '', 21950, 8314);
2771
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021953, '4631', 'control', '2014-11-28T21:45:00', '2014-11-28T21:45:00', '', 7385, 2568);
2772
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021338, '4632', 'control', '2014-12-03T17:12:00', '2014-12-03T17:12:00', '', 12995, 4812);
2773
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021680, '4633', 'control', '2014-12-01T15:51:00', '2014-12-01T15:51:00', '', 16490, 9362);
2774
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022490, '4634', 'treatment', '2014-11-23T15:43:00', '2014-11-23T15:43:00', '', 7790, 5003);
2775
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020821, '4636', 'treatment', '2014-12-07T10:42:00', '2014-12-07T10:42:00', '', 21970, 12815);
2776
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020751, '4640', 'control', '2014-12-07T16:32:00', '2014-12-07T16:32:00', '', 11995, 8066.5);
2777
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022797, '4641', 'treatment', '2014-11-19T09:29:00', '2014-11-19T09:29:00', '', 7780, 3398);
2778
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021462, '4642', 'control', '2014-12-02T20:37:00', '2014-12-02T20:37:00', '', 6790, 3626);
2779
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021725, '4643', 'control', '2014-12-01T10:36:00', '2014-12-01T10:36:00', '', 4790, 2380);
2780
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020651, '4644', 'control', '2014-12-08T08:59:00', '2014-12-08T08:59:00', '', 7085, 2235);
2781
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021583, '4645', 'treatment', '2014-12-02T08:11:00', '2014-12-02T08:11:00', '', 6790, 2139);
2782
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022936, '4646', 'treatment', '2014-11-17T09:44:00', '2014-11-17T09:44:00', '', 7290, 4540);
2783
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021349, '4648', 'treatment', '2014-12-03T16:14:00', '2014-12-03T16:14:00', '', 6790, 4311);
2784
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022563, '4649', 'treatment', '2014-11-22T08:35:00', '2014-11-22T08:35:00', '', 9990, 6662);
2785
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020171, '4650', 'control', '2014-12-10T20:06:00', '2014-12-10T20:06:00', '', 4290, 2611);
2786
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021226, '4652', 'treatment', '2014-12-04T12:01:00', '2014-12-04T12:01:00', '', 29525, 11452);
2787
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022579, '4653', 'treatment', '2014-11-21T18:17:00', '2014-11-21T18:17:00', '', 3485, 1977.5);
2788
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021805, '4654', 'control', '2014-11-30T18:36:00', '2014-11-30T18:36:00', '', 10990, 7387);
2789
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020518, '4656', 'control', '2014-12-08T22:39:00', '2014-12-08T22:39:00', '', 9560, 6320);
2790
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020917, '4658', 'control', '2014-12-06T13:38:00', '2014-12-06T13:38:00', '', 5785, 3011);
2791
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020162, '4659', 'treatment', '2014-12-10T20:26:00', '2014-12-10T20:26:00', '', 10275, 5790);
2792
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021743, '4661', 'control', '2014-12-01T08:30:00', '2014-12-01T08:30:00', '', 5285, 3223.5);
2793
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022036, '4662', 'treatment', '2014-11-28T09:05:00', '2014-11-28T09:05:00', '', 4185, 1369);
2794
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021346, '4664', 'treatment', '2014-12-03T16:26:00', '2014-12-03T16:26:00', '', 5685, 1760);
2795
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020997, '4665', 'treatment', '2014-12-05T17:41:00', '2014-12-05T17:41:00', '', 10980, 6242);
2796
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021373, '4666', 'control', '2014-12-03T14:23:00', '2014-12-03T14:23:00', '', 9490, 6239);
2797
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020617, '4669', 'treatment', '2014-12-08T12:26:00', '2014-12-08T12:26:00', '', 7970, 4444);
2798
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022836, '4670', 'treatment', '2014-11-18T18:21:00', '2014-11-18T18:21:00', '', 9570, 3330);
2799
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020668, '4640', 'control', '2014-12-08T08:01:00', '2014-12-08T08:01:00', 5020751, 23765, 13680);
2800
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019257, '4659', '', '2014-12-15T11:32:00', '2014-12-15T11:32:00', 5020162, 7785, 4890.5);
2801
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022784, '4671', 'treatment', '2014-11-19T12:11:00', '2014-11-19T12:11:00', '', 4790, 2758);
2802
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022661, '4672', 'treatment', '2014-11-20T15:22:00', '2014-11-20T15:22:00', '', 3390, 1630);
2803
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021667, '4674', 'treatment', '2014-12-01T16:55:00', '2014-12-01T16:55:00', '', 1990, 825);
2804
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020175, '4675', 'treatment', '2014-12-10T19:59:00', '2014-12-10T19:59:00', '', 9290, 4986);
2805
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022157, '4677', 'treatment', '2014-11-26T16:33:00', '2014-11-26T16:33:00', '', 9990, 6619);
2806
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021678, '4679', 'control', '2014-12-01T16:06:00', '2014-12-01T16:06:00', '', 9185, 5075);
2807
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023083, '4683', 'control', '2014-11-14T00:03:00', '2014-11-14T00:03:00', '', 4790, 2876);
2808
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020957, '4685', 'treatment', '2014-12-05T22:17:00', '2014-12-05T22:17:00', '', 3985, 1847);
2809
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022859, '4688', 'treatment', '2014-11-18T12:19:00', '2014-11-18T12:19:00', '', 5085, 1505);
2810
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022483, '4689', 'treatment', '2014-11-23T16:11:00', '2014-11-23T16:11:00', '', 11990, 4396);
2811
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023104, '4690', 'treatment', '2014-11-13T19:36:00', '2014-11-13T19:36:00', '', 1790, 660);
2812
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022287, '4691', 'treatment', '2014-11-25T11:37:00', '2014-11-25T11:37:00', '', 9075, 3135);
2813
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021417, '4692', 'control', '2014-12-03T10:25:00', '2014-12-03T10:25:00', '', 4290, 1794);
2814
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022219, '4693', 'treatment', '2014-11-25T20:41:00', '2014-11-25T20:41:00', '', 2590, 446);
2815
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021286, '4696', 'treatment', '2014-12-03T21:28:00', '2014-12-03T21:28:00', '', 17995, 10198);
2816
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021310, '4701', 'control', '2014-12-03T20:04:00', '2014-12-03T20:04:00', '', 17160, 6417);
2817
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021461, '4702', 'control', '2014-12-02T20:40:00', '2014-12-02T20:40:00', '', 12685, 8548.5);
2818
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020680, '4703', 'control', '2014-12-07T22:20:00', '2014-12-07T22:20:00', '', 14670, 9725);
2819
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020742, '4705', 'control', '2014-12-07T17:17:00', '2014-12-07T17:17:00', '', 5885, 2536.5);
2820
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021637, '4706', 'control', '2014-12-01T19:14:00', '2014-12-01T19:14:00', '', 16680, 11306);
2821
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020304, '4707', 'control', '2014-12-09T22:23:00', '2014-12-09T22:23:00', '', 5385, 2148.5);
2822
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022121, '4710', 'treatment', '2014-11-26T21:51:00', '2014-11-26T21:51:00', '', 13480, 9033);
2823
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022183, '4712', 'treatment', '2014-11-26T08:28:00', '2014-11-26T08:28:00', '', 10280, 6646);
2824
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022417, '4713', 'treatment', '2014-11-24T09:20:00', '2014-11-24T09:20:00', '', 7775, 4977.5);
2825
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020219, '4714', 'treatment', '2014-12-10T15:46:00', '2014-12-10T15:46:00', '', 9785, 4561.5);
2826
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020834, '4715', 'control', '2014-12-07T09:35:00', '2014-12-07T09:35:00', '', 20575, 9736.5);
2827
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023096, '4716', 'treatment', '2014-11-13T20:37:00', '2014-11-13T20:37:00', '', 4490, 1410);
2828
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020606, '4717', 'control', '2014-12-08T13:18:00', '2014-12-08T13:18:00', '', 2990, 932);
2829
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021635, '4719', 'control', '2014-12-01T19:37:00', '2014-12-01T19:37:00', '', 2885, 1433.5);
2830
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020980, '4720', 'treatment', '2014-12-05T19:25:00', '2014-12-05T19:25:00', '', 10775, 6123);
2831
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020840, '4721', 'treatment', '2014-12-07T09:12:00', '2014-12-07T09:12:00', '', 5290, 1705);
2832
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022979, '4723', 'treatment', '2014-11-16T18:39:00', '2014-11-16T18:39:00', '', 5680, 2488);
2833
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5023061, '4725', 'control', '2014-11-14T17:59:00', '2014-11-14T17:59:00', '', 6590, 2134);
2834
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021514, '20', 'treatment', '2014-12-02T15:59:00', '2014-12-02T15:59:00', 5022609, 4785, 2860.5);
2835
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021264, '136', 'control', '2014-12-04T08:05:00', '2014-12-04T08:05:00', 5021686, 35940, 24843);
2836
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022798, '149', 'treatment', '2014-11-19T09:28:00', '2014-11-19T09:28:00', 5023016, 9870, 3579);
2837
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020258, '228', 'control', '2014-12-10T11:10:00', '2014-12-10T11:10:00', 5022031, 5290, 2812);
2838
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021827, '323', 'treatment', '2014-11-30T16:03:00', '2014-11-30T16:03:00', 5022893, 10590, 5855);
2839
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020969, '392', 'control', '2014-12-05T20:31:00', '2014-12-05T20:31:00', 5022343, 4775, 3003.5);
2840
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022622, '422', 'treatment', '2014-11-21T07:45:00', '2014-11-21T07:45:00', 5023086, 4290, 1319);
2841
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022702, '498', 'control', '2014-11-19T21:32:00', '2014-11-19T21:32:00', 5022761, 5685, 3446.5);
2842
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021005, '595', 'treatment', '2014-12-05T16:40:00', '2014-12-05T16:40:00', 5022423, 4085, 1867);
2843
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021851, '606', 'control', '2014-11-30T12:47:00', '2014-11-30T12:47:00', 5022393, 5370, 2890);
2844
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019423, '773', '', '2014-12-14T18:01:00', '2014-12-14T18:01:00', 5020804, 5165, 1627);
2845
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018559, '839', '', '2014-12-18T08:01:00', '2014-12-18T08:01:00', 5021969, 4485, 2185);
2846
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5017856, '954', '', '2014-12-31T15:52:00', '2014-12-31T15:52:00', 5021554, 8995, 4889);
2847
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021361, '982', 'control', '2014-12-03T15:40:00', '2014-12-03T15:40:00', 5021363, 12780, 7278);
2848
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020995, '1065', 'control', '2014-12-05T17:53:00', '2014-12-05T17:53:00', 5021332, 9485, 5154);
2849
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019852, '1108', '', '2014-12-12T08:42:00', '2014-12-12T08:42:00', 5022442, 4185, 1600.5);
2850
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018610, '1152', '', '2014-12-17T20:58:00', '2014-12-17T20:58:00', 5022871, 9985, 5606);
2851
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021654, '1158', 'control', '2014-12-01T18:19:00', '2014-12-01T18:19:00', 5022711, 10265, 6687.5);
2852
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5022028, '1340', 'control', '2014-11-28T09:48:00', '2014-11-28T09:48:00', 5022861, 8390, 3869);
2853
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020961, '1393', 'control', '2014-12-05T21:36:00', '2014-12-05T21:36:00', 5022955, 22180, 8321);
2854
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020062, '1468', '', '2014-12-11T10:45:00', '2014-12-11T10:45:00', 5020911, 5280, 1738);
2855
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5017926, '1504', '', '2014-12-28T15:46:00', '2014-12-28T15:46:00', 5020867, 8985, 5981.5);
2856
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020331, '1581', 'treatment', '2014-12-09T20:43:00', '2014-12-09T20:43:00', 5021344, 7290, 2336);
2857
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021569, '1706', 'control', '2014-12-02T10:48:00', '2014-12-02T10:48:00', 5022741, 6785, 2912.5);
2858
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021579, '1733', 'treatment', '2014-12-02T08:54:00', '2014-12-02T08:54:00', 5023108, 10190, 3648);
2859
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5018909, '1819', '', '2014-12-16T17:05:00', '2014-12-16T17:05:00', 5020229, 3790, 2296);
2860
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021844, '1838', 'treatment', '2014-11-30T13:44:00', '2014-11-30T13:44:00', 5022259, 8265, 5457.5);
2861
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5020034, '1894', '', '2014-12-11T12:05:00', '2014-12-11T12:05:00', 5021007, 2290, 407);
2862
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5019867, '1920', '', '2014-12-12T07:17:00', '2014-12-12T07:17:00', 5020561, 17885, 6804);
2863
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021829, '2019', 'control', '2014-11-30T16:02:00', '2014-11-30T16:02:00', 5021891, 15995, 7561.5);
2864
+ insert into maxicycle_results (campaign_id, order_id, maxicycle_customer_id, campaign_order_type, created_at, last_order_update_date, response_to_order_id, grand_total, order_profit) values (999, 5021011, '2090', 'control', '2014-12-05T16:00:00', '2014-12-05T16:00:00', 5023123, 2090, 816);
app/code/community/Maxicycle/Connector/etc/adminhtml.xml ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!--
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ -->
11
+ <config>
12
+ <menu>
13
+ <promo>
14
+ <children>
15
+ <maxicycle translate="title" module="maxicycle">
16
+ <title>Maxicycle</title>
17
+ <sort_order>100</sort_order>
18
+ <children>
19
+ <installation translate="title" module="maxicycle">
20
+ <title>Module configuration</title>
21
+ <action>maxicycle/adminhtml_installation/index</action>
22
+ </installation>
23
+ <campaigns translate="title" module="maxicycle">
24
+ <title>Campaigns</title>
25
+ <action>maxicycle/adminhtml_campaigns/index</action>
26
+ </campaigns>
27
+ <!-- <crondata translate="title" module="maxicycle">
28
+ <title>Cron Log</title>
29
+ <action>maxicycle/adminhtml_cronlog/index</action>
30
+ </crondata>-->
31
+ <results translate="title" module="maxicycle">
32
+ <title>Results</title>
33
+ <action>maxicycle/adminhtml_results/index</action>
34
+ </results>
35
+ </children>
36
+ </maxicycle>
37
+ </children>
38
+ </promo>
39
+ </menu>
40
+ <acl>
41
+ <resources>
42
+ <all>
43
+ <title>Allow Everything</title>
44
+ </all>
45
+ <admin>
46
+ <children>
47
+ <system>
48
+ <children>
49
+ <config>
50
+ <children>
51
+ <maxicycle>
52
+ <title>Maxicycle</title>
53
+ </maxicycle>
54
+ </children>
55
+ </config>
56
+ </children>
57
+ </system>
58
+ <Maxicycle_Connector>
59
+ <title>Maxicycle_Connector</title>
60
+ <sort_order>10</sort_order>
61
+ </Maxicycle_Connector>
62
+ </children>
63
+ </admin>
64
+ </resources>
65
+ </acl>
66
+ </config>
app/code/community/Maxicycle/Connector/etc/config.xml ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!--
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ -->
11
+
12
+ <config>
13
+ <modules>
14
+ <Maxicycle_Connector>
15
+ <version>1.0.3</version>
16
+ </Maxicycle_Connector>
17
+ </modules>
18
+
19
+ <frontend>
20
+ <routers>
21
+ <maxicycle>
22
+ <use>standard</use>
23
+ <args>
24
+ <module>Maxicycle_Connector</module>
25
+ <frontName>maxicycle_api</frontName>
26
+ </args>
27
+ </maxicycle>
28
+ </routers>
29
+ </frontend>
30
+
31
+ <global>
32
+ <helpers>
33
+ <maxicycle>
34
+ <class>Maxicycle_Connector_Helper</class>
35
+ </maxicycle>
36
+ </helpers>
37
+ <blocks>
38
+ <maxicycle>
39
+ <class>Maxicycle_Connector_Block</class>
40
+ </maxicycle>
41
+ </blocks>
42
+ <models>
43
+ <maxicycle>
44
+ <class>Maxicycle_Connector_Model</class>
45
+ <resourceModel>maxicycle_mysql4</resourceModel>
46
+ </maxicycle>
47
+ <maxicycle_mysql4>
48
+ <class>Maxicycle_Connector_Model_Mysql4</class>
49
+ <entities>
50
+ <campaigns>
51
+ <table>maxicycle_campaigns</table>
52
+ </campaigns>
53
+ <cronlog>
54
+ <table>maxicycle_cronlog</table>
55
+ </cronlog>
56
+ <results>
57
+ <table>maxicycle_results</table>
58
+ </results>
59
+ </entities>
60
+ </maxicycle_mysql4>
61
+ </models>
62
+ <resources>
63
+ <maxicycle_setup>
64
+ <setup>
65
+ <module>Maxicycle_Connector</module>
66
+ </setup>
67
+ <connection>
68
+ <use>core_setup</use>
69
+ </connection>
70
+ </maxicycle_setup>
71
+ <maxicycle_write>
72
+ <connection>
73
+ <use>core_write</use>
74
+ </connection>
75
+ </maxicycle_write>
76
+ <maxicycle_read>
77
+ <connection>
78
+ <use>core_read</use>
79
+ </connection>
80
+ </maxicycle_read>
81
+ </resources>
82
+ <events>
83
+ <sales_order_place_after>
84
+ <observers>
85
+ <maxicycle>
86
+ <type>singleton</type>
87
+ <class>maxicycle/observer</class>
88
+ <method>sales_order_place_after</method>
89
+ </maxicycle>
90
+ </observers>
91
+ </sales_order_place_after>
92
+ <sales_order_save_after>
93
+ <observers>
94
+ <maxicycle>
95
+ <type>singleton</type>
96
+ <class>maxicycle/observer</class>
97
+ <method>sales_order_save_after</method>
98
+ </maxicycle>
99
+ </observers>
100
+ </sales_order_save_after>
101
+ </events>
102
+ </global>
103
+
104
+ <admin>
105
+ <routers>
106
+ <maxicycle>
107
+ <use>admin</use>
108
+ <args>
109
+ <module>Maxicycle_Connector</module>
110
+ <frontName>maxicycle</frontName>
111
+ </args>
112
+ </maxicycle>
113
+ </routers>
114
+ </admin>
115
+
116
+ <adminhtml>
117
+ <layout>
118
+ <updates>
119
+ <maxicycle>
120
+ <file>maxicycle/connector/layout.xml</file>
121
+ </maxicycle>
122
+ </updates>
123
+ </layout>
124
+ </adminhtml>
125
+ </config>
app/code/community/Maxicycle/Connector/sql/maxicycle_setup/mysql4-install-1.0.0.php ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ $installer = $this;
11
+ $installer->startSetup();
12
+
13
+ /* Create base table for campaigns */
14
+ $table = $installer->getConnection()
15
+ ->newTable($installer->getTable('maxicycle/campaigns'))
16
+ ->addColumn('campaign_id', Varien_Db_Ddl_Table::TYPE_INTEGER, null, array(
17
+ 'identity' => true,
18
+ 'unsigned' => true,
19
+ 'nullable' => false,
20
+ 'primary' => true,
21
+ ), 'Campaign ID')
22
+ ->addColumn('name', Varien_Db_Ddl_Table::TYPE_VARCHAR, null, array(
23
+ 'nullable' => false,
24
+ ), 'Name')
25
+ ->addColumn('description', Varien_Db_Ddl_Table::TYPE_BLOB, null, array(
26
+ 'nullable' => false,
27
+ ), 'Description')
28
+ ->addColumn('product_sku', Varien_Db_Ddl_Table::TYPE_VARCHAR, null, array(
29
+ 'nullable' => false,
30
+ ), 'Product SKU')
31
+ ->addColumn('campaign_start', Varien_Db_Ddl_Table::TYPE_DATETIME, null, array(
32
+ 'nullable' => false,
33
+ ), 'Campaign Start')
34
+ ->addColumn('campaign_end', Varien_Db_Ddl_Table::TYPE_DATETIME, null, array(
35
+ 'nullable' => false,
36
+ ), 'Campaign End')
37
+ ->addColumn('response_time_end', Varien_Db_Ddl_Table::TYPE_DATETIME, null, array(
38
+ 'nullable' => false,
39
+ ), 'Response Time End')
40
+ ->addColumn('store_id', Varien_Db_Ddl_Table::TYPE_INTEGER, null, array(
41
+ 'nullable' => false,
42
+ ), 'Store')
43
+ ->addColumn('campaign_status', Varien_Db_Ddl_Table::TYPE_INTEGER, null, array(
44
+ 'nullable' => false,
45
+ ), 'Campaign Status')
46
+ ->addColumn('condition', Varien_Db_Ddl_Table::TYPE_BLOB, null, array(
47
+ 'nullable' => false,
48
+ ), 'Condition');
49
+
50
+
51
+ /* Create base table for results */
52
+ $table2 = $installer->getConnection()
53
+ ->newTable($installer->getTable('maxicycle/results'))
54
+ ->addColumn('id', Varien_Db_Ddl_Table::TYPE_INTEGER, null, array(
55
+ 'identity' => true,
56
+ 'unsigned' => true,
57
+ 'nullable' => false,
58
+ 'primary' => true,
59
+ ), 'ID')
60
+ ->addColumn('campaign_id', Varien_Db_Ddl_Table::TYPE_INTEGER, null, array(
61
+ ), 'Campaign ID')
62
+ ->addColumn('order_id', Varien_Db_Ddl_Table::TYPE_INTEGER, null, array(
63
+ 'nullable' => false,
64
+ ), 'Order ID')
65
+ ->addColumn('maxicycle_customer_id', Varien_Db_Ddl_Table::TYPE_INTEGER, null, array(
66
+ 'nullable' => false,
67
+ ), 'Maxicycle Customer ID')
68
+ ->addColumn('campaign_order_type', Varien_Db_Ddl_Table::TYPE_VARCHAR, null, array(
69
+ 'nullable' => false,
70
+ ), 'Campaign Order Type')
71
+ ->addColumn('created_at', Varien_Db_Ddl_Table::TYPE_DATETIME, null, array(
72
+ 'nullable' => false,
73
+ ), 'Created At')
74
+ ->addColumn('last_order_update_date', Varien_Db_Ddl_Table::TYPE_DATETIME, null, array(
75
+ 'nullable' => false,
76
+ ), 'Last Order Update Date')
77
+ ->addColumn('response_to_order_id', Varien_Db_Ddl_Table::TYPE_VARCHAR, null, array(
78
+ 'nullable' => false,
79
+ ), 'Response to order ID')
80
+ ->addColumn('grand_total', Varien_Db_Ddl_Table::TYPE_DECIMAL, '12,4', array(
81
+ 'nullable' => false,
82
+ ), 'Grand Total')
83
+ ->addColumn('order_profit', Varien_Db_Ddl_Table::TYPE_DECIMAL, '12,4', array(
84
+ 'nullable' => false,
85
+ ), 'Order Profit')
86
+ ->addColumn('export_flag', Varien_Db_Ddl_Table::TYPE_INTEGER, null, array(
87
+ 'nullable' => false,
88
+ ), 'Export Flag');
89
+
90
+ /* Create base table for campaigns */
91
+ $table3 = $installer->getConnection()
92
+ ->newTable($installer->getTable('maxicycle/cronlog'))
93
+ ->addColumn('cron_id', Varien_Db_Ddl_Table::TYPE_INTEGER, null, array(
94
+ 'identity' => true,
95
+ 'unsigned' => true,
96
+ 'nullable' => false,
97
+ 'primary' => true,
98
+ ), 'Cron ID')
99
+ ->addColumn('data', Varien_Db_Ddl_Table::TYPE_BLOB, null, array(
100
+ 'nullable' => false,
101
+ ), 'Data')
102
+ ->addColumn('created_at', Varien_Db_Ddl_Table::TYPE_DATETIME, null, array(
103
+ 'nullable' => false,
104
+ ), 'Created At');
105
+
106
+ $installer->run("DROP TABLE IF EXISTS {$this->getTable('maxicycle/cronlog')}");
107
+ $installer->getConnection()->createTable($table3);
108
+ $installer->run("DROP TABLE IF EXISTS {$this->getTable('maxicycle/results')}");
109
+ $installer->getConnection()->createTable($table2);
110
+ $installer->run("DROP TABLE IF EXISTS {$this->getTable('maxicycle/campaigns')}");
111
+ $installer->getConnection()->createTable($table);
112
+
113
+ // Add order attribute
114
+ $installer->getConnection()->addColumn($installer->getTable('sales_flat_order'),
115
+ 'maxicycle_customer_id',
116
+ array(
117
+ 'type' => Varien_Db_Ddl_Table::TYPE_INTEGER,
118
+ 'length' => 10,
119
+ 'nullable' => true,
120
+ 'default' => null,
121
+ 'comment' => 'CustomerId for Maxicycle Plugin'
122
+ ));
123
+
124
+ $installer->endSetup();
125
+
app/code/community/Maxicycle/Connector/sql/maxicycle_setup/upgrade-1.0.0-1.0.1.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ $installer = $this;
11
+ $installer->startSetup();
12
+
13
+ // Add order attribute
14
+ $installer->getConnection()->addColumn($installer->getTable('sales_flat_order'), 'maxicycle_response_to_order_id',
15
+ Varien_Db_Ddl_Table::TYPE_TEXT, null, array(
16
+ 'nullable' => true,
17
+ 'default' => null,
18
+ 'comment' => 'Maxicycle response id',
19
+ 'length' => 100
20
+ ));
21
+ $installer->getConnection()->addColumn($installer->getTable('sales_flat_order'), 'maxicycle_order_type',
22
+ Varien_Db_Ddl_Table::TYPE_TEXT, null, array(
23
+ 'nullable' => true,
24
+ 'default' => null,
25
+ 'comment' => 'Maxicycle order type' ,
26
+ 'length' => 100
27
+ ));
28
+ $installer->getConnection()->addColumn($installer->getTable('sales_flat_order'), 'maxicycle_campaign_id',
29
+ array(
30
+ 'type' => Varien_Db_Ddl_Table::TYPE_INTEGER,
31
+ 'length' => 10,
32
+ 'nullable' => true,
33
+ 'default' => null,
34
+ 'comment' => 'Maxicycle campaign ID for order'
35
+ ));
36
+ $installer->endSetup();
app/design/adminhtml/default/default/layout/maxicycle/connector/layout.xml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * @category Maxicycle
5
+ * @package Maxicycle_Connector
6
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
7
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
8
+ */
9
+ -->
10
+ <layout>
11
+ <default>
12
+ <reference name="head">
13
+ <action method="addItem">
14
+ <type>skin_css</type>
15
+ <file>maxicycle/connector/css/css.css</file>
16
+ </action>
17
+ </reference>
18
+ </default>
19
+ </layout>
app/design/adminhtml/default/default/template/maxicycle/connector/installation/step1.phtml ADDED
@@ -0,0 +1,315 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php $store_id = (int) $this->getRequest()->getParam('store'); ?>
2
+ <?php if ($store_id == 0): ?>
3
+ <?php foreach (Mage::app()->getStores() as $store): ?>
4
+ <?php $store_id = $store->getId(); ?>
5
+ <?php break; ?>
6
+ <?php endforeach; ?>
7
+ <?php endif; ?>
8
+ <?php $config = Mage::helper('maxicycle')->getConfiguration($store_id); ?>
9
+ <form id="edit_form" name="edit_form" method="post" action="<?php echo $this->getUrl('*/*/update') ?>"">
10
+ <input type="hidden" name="form_key" value="<?php echo $this->getFormKey(); ?>" />
11
+ <input type="hidden" name="store_id" value="<?php echo $store_id; ?>" />
12
+
13
+ <div class="content-header">
14
+ <table cellspacing="0">
15
+ <tbody>
16
+ <tr>
17
+ <td>
18
+ <h3>
19
+ <?php echo $this->__('Maxicycle module configuration'); ?>
20
+ </h3>
21
+ </td>
22
+ <td align="right">
23
+ <button style="" onclick="submitIfValid();" class="scalable save save_and_update_marketplaces" type="button" title="<?php echo $this->__('Save And Update'); ?>">
24
+ <span>
25
+ <span>
26
+ <span>
27
+ <?php echo $this->__('Save And Update'); ?>
28
+ </span>
29
+ </span>
30
+ </span>
31
+ </button>
32
+ </td>
33
+ </tr>
34
+ </tbody>
35
+ </table>
36
+ </div>
37
+
38
+ <div title="" class="is_prepared block_notices" id="block_notice_marketplaces_choose" subtitle="" collapseable="" hideblock="" always_show="">
39
+ <div class="block_notices_header">
40
+ <div class="block_notices_header_left">
41
+ <p>
42
+ <?php echo $this->__('Not sure how to get Maxicycle up and running? Check out <a href="http://www.maxicycle.com/help" target="blank">http://www.maxicycle.com/help</a>'); ?>
43
+ </p>
44
+ </div>
45
+ </div>
46
+ </div>
47
+
48
+ <div id="messages">
49
+ <ul class="messages">
50
+ <li class="warning" style="background-color:#e6e6e6;border:1px solid #666e73;">
51
+ <ul>
52
+ <li>
53
+ <?php if (count(Mage::app()->getStores()) > 1): ?>
54
+ <span><?php echo $this->__('Whow, you have multiple stores! Please enter these API URLs into your <a href="http://my.maxicycle.com" target="blank">my.maxicycle.com</a> account shop configuration'); ?></span>
55
+ <br />
56
+ <br />
57
+ <table>
58
+ <tr>
59
+ <td style="padding-left:10px;">
60
+ <table border="1" cellpadding="0" cellspacing="0">
61
+ <tr>
62
+ <td style="padding:5px;font-weight:bold;"><strong><?php echo $this->__('ID'); ?></strong></td>
63
+ <td style="padding:5px;font-weight:bold;"><strong><?php echo $this->__('Store Name'); ?></strong></td>
64
+ <td style="padding:5px;font-weight:bold;"><strong><?php echo $this->__('API URL'); ?></strong></td>
65
+ </tr>
66
+ <?php foreach (Mage::app()->getStores() as $store): ?>
67
+ <tr>
68
+ <td style="padding:5px;"><?php echo $store->getId(); ?></td>
69
+ <td style="padding:5px;"><?php echo $store->getName(); ?></td>
70
+ <td style="padding:5px;"><?php echo $store->getBaseUrl() . 'maxicycle_api'; ?></td>
71
+ </tr>
72
+ <?php endforeach; ?>
73
+ </table>
74
+ </td>
75
+ </tr>
76
+ </table>
77
+ <?php else: ?>
78
+ <span>
79
+ <?php echo $this->__('Please enter the API URL into your <a href="http://my.maxicycle.com">my.maxicycle.com</a> account: '); ?>
80
+ <?php foreach (Mage::app()->getStores() as $store): ?>
81
+ <strong><?php echo $store->getBaseUrl() . 'maxicycle_api'; ?></strong>
82
+ <?php endforeach; ?>
83
+ </span>
84
+ <?php endif; ?>
85
+ </li>
86
+ </ul>
87
+ </li>
88
+ </ul>
89
+ </div>
90
+
91
+ <?php if ($websites = Mage::app()->getWebsites()): ?>
92
+ <p class="switcher"><label for="store_switcher"><?php echo $this->__('Choose Store View:') ?></label>
93
+ <input type="hidden" name="current_store" value="<?php echo $store_id; ?>" id="current_store" />
94
+ <select name="store_switcher" id="store_switcher" onchange="return switchStore(this);" onclick="$('current_store').value = this.value;">
95
+ <?php if ($this->hasDefaultOption()): ?>
96
+ <option value=""><?php echo $this->getDefaultStoreName() ?></option>
97
+ <?php endif; ?>
98
+ <?php foreach ($websites as $website): ?>
99
+ <?php $showWebsite = false; ?>
100
+ <?php foreach ($website->getGroups() as $group): ?>
101
+ <?php $showGroup = false; ?>
102
+ <?php foreach ($group->getStores() as $store): ?>
103
+ <?php if ($store->getId() == 0) continue; ?>
104
+ <?php if ($showWebsite == false): ?>
105
+ <?php $showWebsite = true; ?>
106
+ <optgroup label="<?php echo $this->escapeHtml($website->getName()) ?>"></optgroup>
107
+ <?php endif; ?>
108
+ <?php if ($showGroup == false): ?>
109
+ <?php $showGroup = true; ?>
110
+ <optgroup label="&nbsp;&nbsp;&nbsp;<?php echo $this->escapeHtml($group->getName()) ?>">
111
+ <?php endif; ?>
112
+ <option value="<?php echo $this->escapeHtml($store->getId()) ?>"<?php if ($store_id == $store->getId()): ?> selected="selected"<?php endif; ?>>&nbsp;&nbsp;&nbsp;&nbsp;<?php echo $this->escapeHtml($store->getName()) ?></option>
113
+ <?php endforeach; ?>
114
+ <?php if ($showGroup): ?>
115
+ </optgroup>
116
+ <?php endif; ?>
117
+ <?php endforeach; ?>
118
+ <?php endforeach; ?>
119
+ </select>
120
+ </p>
121
+ <?php endif; ?>
122
+
123
+ <div>
124
+ <div id="magento_block_amazon_marketplaces_group_1" class="entry-edit magento_block_amazon_marketplaces_group_1_hide magento_block_amazon_marketplaces_group_1_hide_tips">
125
+ <div class="entry-edit-head">
126
+ <div>
127
+ <h4><?php echo $this->__('Basic settings'); ?></h4>
128
+ </div>
129
+ </div>
130
+ <div class="fieldset" style="margin-bottom: 15px;">
131
+ <div class="hor-scroll">
132
+ <table cellspacing="0" cellpadding="0" class="form-list">
133
+ <tr>
134
+ <td class="label">
135
+ <?php echo $this->__('Enable module'); ?>:
136
+ </td>
137
+ <td class="value">
138
+ <select name="is_enable" class="select">
139
+ <option value="1"<?php echo ((intval($config['is_enable']) == 1) ? ' selected="selected"' : ''); ?>><?php echo $this->__('Yes'); ?></option>
140
+ <option value="0"<?php echo ((intval($config['is_enable']) == 0) ? ' selected="selected"' : ''); ?>><?php echo $this->__('No'); ?></option>
141
+ </select>
142
+ </td>
143
+ </tr>
144
+ <tr>
145
+ <td class="label">
146
+ <?php echo $this->__('API Key'); ?>:
147
+ </td>
148
+ <td class="value">
149
+ <input type="text" name="api_key" class="input-text" value="<?php echo $config['api_key']; ?>" />
150
+ <p class="note">
151
+ <span><?php echo $this->__('You can find in your Shops overview on Maxicycle.com'); ?></span>
152
+ </p>
153
+ </td>
154
+ </tr>
155
+ <tr>
156
+ <td class="label">
157
+ <?php echo $this->__('Valid order statuses for Maxicycle'); ?>:
158
+ </td>
159
+ <td class="value">
160
+ <?php $orderStatusCollection = Mage::getModel('sales/order_status')->getResourceCollection()->getData(); ?>
161
+ <select name="valid_statuses[]" class="select multiselect" multiple="true" size="6" id="valid-status">
162
+ <?php if (!$config['valid_statuses'][0]): ?>
163
+ <?php foreach ($orderStatusCollection as $orderStatus): ?>
164
+ <option<?php echo ($orderStatus['status'] == 'complete' ? ' selected="selected"' : ''); ?> value="<?php echo $orderStatus['status']; ?>"><?php echo $orderStatus['label']; ?></option>
165
+ <?php endforeach; ?>
166
+ <?php else: ?>
167
+ <?php foreach ($orderStatusCollection as $orderStatus): ?>
168
+ <option<?php echo ((in_array($orderStatus['status'], $config['valid_statuses'])) ? ' selected="selected"' : ''); ?> value="<?php echo $orderStatus['status']; ?>"><?php echo $orderStatus['label']; ?></option>
169
+ <?php endforeach; ?>
170
+ <?php endif; ?>
171
+ </select>
172
+ <p class="note">
173
+ <span><?php echo $this->__('Once an order has reached this status, we use it for analyses. This should be the status which you use to mark a shipped parcel.'); ?></span>
174
+ </p>
175
+ </td>
176
+ </tr>
177
+ </table>
178
+ </div>
179
+ </div>
180
+ </div>
181
+ <div id="magento_block_amazon_marketplaces_group_2" class="entry-edit magento_block_amazon_marketplaces_group_1_hide magento_block_amazon_marketplaces_group_1_hide_tips">
182
+ <div class="entry-edit-head">
183
+ <div>
184
+ <h4><?php echo $this->__('Gross profit calculation'); ?></h4>
185
+ </div>
186
+ </div>
187
+ <div class="fieldset" style="margin-bottom: 15px;">
188
+ <div class="hor-scroll">
189
+ <table cellspacing="0" cellpadding="0" class="form-list">
190
+ <tr>
191
+ <td colspan="2">
192
+ <strong><?php echo $this->__('You do want to find out how profitable your package insert campaigns are, right? Ok, so let us know how we should calculate your gross profit per order. You need more information? Check out <a href="http://www.maxicycle.com/help">http://www.maxicycle.com/help</a>'); ?></strong>
193
+ </td>
194
+ </tr>
195
+ <tr><td>&nbsp;</td></tr>
196
+ <tr>
197
+ <td class="label">
198
+ <?php echo $this->__('Take product buying price from'); ?>:
199
+ </td>
200
+ <td class="value">
201
+ <select name="product_costs_type" class="select" onchange="return showProductCostsAttribute(this);" id="product_cost_type">
202
+ <option value="1"<?php echo ((intval($config['product_costs_type']) == 1) ? ' selected="selected"' : ''); ?>><?php echo $this->__('Attribute'); ?></option>
203
+ <option value="2"<?php echo ((intval($config['product_costs_type']) == 2) ? ' selected="selected"' : ''); ?>><?php echo $this->__('Fixed value'); ?></option>
204
+ </select>
205
+ <p class="note">
206
+ <span><?php echo $this->__('Select "Attribute" if you have stored the buying price of your products in a product attribute. If not, please select "Fixed value" and enter your average costs of goods sold (in percent).'); ?></span>
207
+ </p>
208
+ </td>
209
+ </tr>
210
+ <tr>
211
+ <td></td>
212
+ <td class="value"<?php echo (($config['product_costs_type'] == '2') ? '' : ' style="display:none;"'); ?> id="product_costs_fixed">
213
+ <input type="text" class="input-text validate-digits-range digits-range-0-99" name="product_costs_fixed" value="<?php echo $config['product_costs_fixed']; ?>" /> %
214
+ <p class="note">
215
+ <span><?php echo $this->__('Average costs of goods sold in percent of your product selling price without taxes. (Ask your controller!)'); ?></span>
216
+ </p>
217
+ </td>
218
+ </tr>
219
+ <tr>
220
+ <td></td>
221
+ <td class="value"<?php echo (($config['product_costs_type'] == '1') ? '' : ' style="display:none;"'); ?> id="product_costs_attribute">
222
+ <?php $attributes = Mage::getResourceModel('catalog/product_attribute_collection')->getItems(); ?>
223
+ <select name="product_costs_attribute" class="select">
224
+ <?php foreach ($attributes as $attribute): ?>
225
+ <?php if ($attribute->getFrontendLabel() == '' || $attribute->getBackendType() != 'decimal') continue; ?>
226
+ <?php $attribute_selected = ($config['product_costs_attribute'] == '' ? 'cost' : $config['product_costs_attribute']) ?>
227
+ <option value="<?php echo $attribute->getAttributecode(); ?>"<?php echo (($attribute_selected == $attribute->getAttributecode()) ? ' selected="selected"' : ''); ?>><?php echo $attribute->getFrontendLabel(); ?></option>
228
+ <?php endforeach; ?>
229
+ </select>
230
+ <p class="note">
231
+ <span><?php echo $this->__('This product attribute contains your product buying price.'); ?></span>
232
+ </p>
233
+ </td>
234
+ </tr>
235
+ <tr>
236
+ <td class="label">
237
+ <?php echo $this->__('Deduct VAT from selling price'); ?>:
238
+ </td>
239
+ <td class="value">
240
+ <select name="use_tax" class="select">
241
+ <?php $deduct_vat = ($config['use_tax'] == '' ? 1 : $config['use_tax']) ?>
242
+ <option value="1"<?php echo (($deduct_vat == 1) ? ' selected="selected"' : ''); ?>><?php echo $this->__('Yes'); ?></option>
243
+ <option value="0"<?php echo ((intval($deduct_vat) == 0) ? ' selected="selected"' : ''); ?>><?php echo $this->__('No'); ?></option>
244
+ </select>
245
+ <p class="note">
246
+ <span><?php echo $this->__('Select "Yes" if you use the standard Magento functionality to calculate your VAT. If you select "No", Maxicycle does not deduct taxes from your selling price to calculate gross profit.'); ?></span>
247
+ </p>
248
+ </td>
249
+ </tr>
250
+ <tr>
251
+ <td class="label">
252
+ <?php echo $this->__('Average order costs'); ?>:
253
+ </td>
254
+ <td class="value">
255
+ <?php $order_cost = ($config['order_costs'] == '' ? 0 : $config['order_costs']) ?>
256
+ <input type="text" name="order_costs" class="input-text" value="<?php echo $order_cost; ?>" /> &euro;
257
+ <p class="note">
258
+ <span><?php echo $this->__('Additional order costs to COGS and taxes (e.g. fulfilment, postage, customer care) – enter your average per order in €.'); ?></span>
259
+ </p>
260
+ </td>
261
+ </tr>
262
+ </table>
263
+ </div>
264
+ </div>
265
+ </div>
266
+ </div>
267
+ </form>
268
+
269
+ <script type="text/javascript">
270
+ //< ![CDATA[
271
+ function showProductCostsAttribute(e) {
272
+ if ($(e).value == '1') {
273
+ $('product_costs_fixed').hide();
274
+ $('product_costs_attribute').show();
275
+ } else {
276
+ $('product_costs_fixed').show();
277
+ $('product_costs_attribute').hide();
278
+ }
279
+ }
280
+ function switchStore(obj) {
281
+ var storeParam = obj.value ? 'store/' + obj.value + '/' : '';
282
+ if (obj.switchParams) {
283
+ storeParam += obj.switchParams;
284
+ }
285
+ if (confirm("<?php echo $this->__('Please confirm site switching. All data that hasn\'t been saved will be lost.') ?>")) {
286
+ setLocation('<?php echo $this->getSwitchUrl() ?>' + storeParam);
287
+ return true;
288
+ } else {
289
+ obj.value = $('current_store').value;
290
+ return false;
291
+ }
292
+ return false;
293
+ }
294
+ // init showProductCostsAttribute
295
+ var $el = document.getElementById('product_cost_type');
296
+ showProductCostsAttribute($el);
297
+
298
+
299
+ document.edit_form.onsubmit = function(){
300
+ alert('handled');
301
+ validateForm();
302
+ }
303
+
304
+ function submitIfValid() {
305
+ console.log('validateForm');
306
+ var e = document.getElementById("valid-status");
307
+ if (!e.options[e.selectedIndex]) {
308
+ alert("Select at least one order status.");
309
+ return false;
310
+ } else {
311
+ $('edit_form').submit();
312
+ }
313
+ }
314
+ //]]>
315
+ </script>
app/etc/modules/Maxicycle_Connector.xml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * Maxicycle
5
+ *
6
+ * @category Maxicycle
7
+ * @package Maxicycle_Connector
8
+ * @copyright Copyright (c) 2015 (http://www.maxicycle.com)
9
+ */
10
+ -->
11
+ <config>
12
+ <modules>
13
+ <Maxicycle_Connector>
14
+ <active>true</active>
15
+ <codePool>community</codePool>
16
+ </Maxicycle_Connector>
17
+ </modules>
18
+ </config>
package.xml ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>MaxicycleCom_Connector</name>
4
+ <version>1.0.3</version>
5
+ <stability>stable</stability>
6
+ <license uri="http://www.maxicycle/license">Copyright Maxicycle Software GmbH 2015</license>
7
+ <channel>community</channel>
8
+ <extends/>
9
+ <summary>Boost your package for retention.</summary>
10
+ <description>Boost your package for retention.&#xD;
11
+ &#xD;
12
+ Did you know that enclosing package inserts (coupons, catalogs, freebies, product samples, etc.) are extremely effective in driving follow-up orders from your existing customer base? Maxicycle is the solution that turns your packages into a real performance-based retention marketing channel with an amazing ROI: Create, manage, measure and optimise package inserts in a similar way than you are used from your AdWords or Facebook ads.&#xD;
13
+ </description>
14
+ <notes>v1.0.3&#xD;
15
+ Refresh caching&#xD;
16
+ Fix bug when having a multi store setup for SKU check&#xD;
17
+ &#xD;
18
+ v1.0.2&#xD;
19
+ Bug fix release&#xD;
20
+ &#xD;
21
+ v1.0.1&#xD;
22
+ Stability improvements&#xD;
23
+ Logging into separate logfile&#xD;
24
+ &#xD;
25
+ v.1.0.0&#xD;
26
+ * Initial official release</notes>
27
+ <authors><author><name>Maxicycle Software GmbH</name><user>maxicycle</user><email>support@maxicycle.com</email></author></authors>
28
+ <date>2015-09-11</date>
29
+ <time>08:39:22</time>
30
+ <contents><target name="mageetc"><dir name="modules"><file name="Maxicycle_Connector.xml" hash="0d64b2d2ad66099e225460c349125557"/></dir></target><target name="magecommunity"><dir name="Maxicycle"><dir name="Connector"><dir name="Block"><dir name="Adminhtml"><dir name="Campaigns"><file name="Grid.php" hash="c350b3b4e428bf5f11027a97e38167ae"/></dir><file name="Campaigns.php" hash="b09c985fc4215ecd937024e0364f319b"/><dir name="Cronlog"><file name="Grid.php" hash="256284d0455dbb136baf8e00d2a71a89"/></dir><file name="Cronlog.php" hash="577f5e50a80fbac7b83cf8d5727bbb5f"/><dir name="Results"><file name="Grid.php" hash="4236c80b8faa31e6cba5f184e0d45adc"/><dir name="Renderer"><file name="Campaign.php" hash="ef4d3f0cd6c3558367f82e07853414e6"/><file name="Flag2.php" hash="d8779254a77e19da81c91e81452a7e43"/><file name="Order.php" hash="aecdc4cb460c558773660778060cde0f"/></dir></dir><file name="Results.php" hash="4d32a5f15b1f3a18434e3b2754030659"/></dir></dir><dir name="Helper"><file name="Data.php" hash="77ad31ff601c6f98f54788aaa616f0d6"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="71be3bc47c32463bc8f6f84e901719ef"/><file name="Rest.php" hash="260c1849fc5dba7b5698d5160f427d5d"/></dir><file name="Campaigns.php" hash="4e60821d8a19ea5391921e5b358257dc"/><file name="Cronlog.php" hash="dc5eec5445c6c703429992b749c8ef2c"/><dir name="Mysql4"><dir name="Campaigns"><file name="Collection.php" hash="880cbcd1ab65efb9096965c267ad35cc"/></dir><file name="Campaigns.php" hash="98143aae26423260cccb496aac9d28f2"/><dir name="Cronlog"><file name="Collection.php" hash="44d321c218f66619fbbf14271fca361f"/></dir><file name="Cronlog.php" hash="299749238a435407cce37b5dc524c466"/><dir name="Results"><file name="Collection.php" hash="8b046e56516f2f1893b6f3d1e6e2b228"/><dir name="Renderer"><file name="Actions.php" hash="da76e0352436e0570c8e6506a121d031"/><file name="Status.php" hash="37878ac8231edee56041b714077f7aec"/></dir></dir><file name="Results.php" hash="8898f253c8dce9ebe3a6b289e26945a6"/></dir><file name="Observer.php" hash="d6c7dba823b03a5aa9434feba1b3971f"/><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="ccae8f6fc1d48cb5ef6b761211e75bd9"/></dir></dir><file name="Results.php" hash="246fff1018a0b03f521ba96ec61b8a8e"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CampaignsController.php" hash="420557976cfeda32353ce0b5f435a252"/><file name="CronlogController.php" hash="eb58983412dec2890d22138adecb95a7"/><file name="InstallationController.php" hash="3f61bbc6a06009ed2966df2192c0474d"/><file name="ResultsController.php" hash="78633bbdd767350c56deef829c7b4a62"/></dir><file name="TestConnectionController.php" hash="ddb67e441e3478d45632905b78e5c362"/><file name="V1Controller.php" hash="8cf992ec3ab988d3b11f8428ea98d501"/></dir><dir name="data"><file name="data_sample.sql" hash="c02ad04dc9c1b43814ac7877970ab1ae"/></dir><dir name="etc"><file name="adminhtml.xml" hash="363126b0e935810dd07d42426ce9f766"/><file name="config.xml" hash="425632d64a939ddd598c245fb81b0cf1"/></dir><dir name="sql"><dir name="maxicycle_setup"><file name="mysql4-install-1.0.0.php" hash="ac322e77f8b08beb2d326426f2c23121"/><file name="upgrade-1.0.0-1.0.1.php" hash="dba0e0a874a87c101b379de988646b1f"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="maxicycle"><dir name="connector"><dir name="installation"><file name="step1.phtml" hash="e3efe0f106cc3cf941a77ece30b51041"/></dir></dir></dir></dir><dir name="layout"><dir name="maxicycle"><dir name="connector"><file name="layout.xml" hash="b4c388d059df42d365c945f972e8cfca"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="maxicycle"><dir name="connector"><dir name="css"><file name="css.css" hash="6cb4c9ca0ce1288f028ea80284d368ae"/></dir></dir></dir></dir></dir></dir></target></contents>
31
+ <compatible/>
32
+ <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
33
+ </package>
skin/adminhtml/default/default/maxicycle/connector/css/css.css ADDED
@@ -0,0 +1 @@
 
1
+ .block_notices{background:none repeat scroll 0 0 #fafafa!important;border:1px solid #d6d6d6!important;display:block;margin-bottom:15px!important;padding:10px 15px!important;}