-- MySQL dump 10.13 Distrib 5.1.60, for unknown-linux-gnu (x86_64) -- -- Host: localhost Database: tomorrp9_store -- ------------------------------------------------------ -- Server version 5.1.60-community-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `admin_assert` -- DROP TABLE IF EXISTS `admin_assert`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `admin_assert` ( `assert_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `assert_type` varchar(20) NOT NULL DEFAULT '', `assert_data` text, PRIMARY KEY (`assert_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ACL Asserts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admin_assert` -- LOCK TABLES `admin_assert` WRITE; /*!40000 ALTER TABLE `admin_assert` DISABLE KEYS */; /*!40000 ALTER TABLE `admin_assert` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_role` -- DROP TABLE IF EXISTS `admin_role`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `admin_role` ( `role_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(10) unsigned NOT NULL DEFAULT '0', `tree_level` tinyint(3) unsigned NOT NULL DEFAULT '0', `sort_order` tinyint(3) unsigned NOT NULL DEFAULT '0', `role_type` char(1) NOT NULL DEFAULT '0', `user_id` int(11) unsigned NOT NULL DEFAULT '0', `role_name` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`role_id`), KEY `parent_id` (`parent_id`,`sort_order`), KEY `tree_level` (`tree_level`) ) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8 COMMENT='ACL Roles'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admin_role` -- LOCK TABLES `admin_role` WRITE; /*!40000 ALTER TABLE `admin_role` DISABLE KEYS */; INSERT INTO `admin_role` VALUES (1,0,1,1,'G',0,'Administrators'),(20,0,1,0,'G',0,'Shipping'),(21,0,1,0,'G',0,'administrator'),(25,1,2,0,'U',3,'Molli'),(26,1,2,0,'U',2,'Nick'),(27,1,2,0,'U',4,'Tasha'),(36,1,2,0,'U',1,'Hugh'),(39,1,2,0,'U',9,'Mike'),(40,1,2,0,'U',10,'Mason'),(43,0,1,0,'G',0,'Rep'),(46,20,2,0,'U',8,'Ryan'),(48,1,2,0,'U',11,'Stan'); /*!40000 ALTER TABLE `admin_role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_rule` -- DROP TABLE IF EXISTS `admin_rule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `admin_rule` ( `rule_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `role_id` int(10) unsigned NOT NULL DEFAULT '0', `resource_id` varchar(255) NOT NULL DEFAULT '', `privileges` varchar(20) NOT NULL DEFAULT '', `assert_id` int(10) unsigned NOT NULL DEFAULT '0', `role_type` char(1) DEFAULT NULL, `permission` varchar(10) DEFAULT NULL, PRIMARY KEY (`rule_id`), KEY `resource` (`resource_id`,`role_id`), KEY `role_id` (`role_id`,`resource_id`), CONSTRAINT `FK_admin_rule` FOREIGN KEY (`role_id`) REFERENCES `admin_role` (`role_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2072 DEFAULT CHARSET=utf8 COMMENT='ACL Rules'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admin_rule` -- LOCK TABLES `admin_rule` WRITE; /*!40000 ALTER TABLE `admin_rule` DISABLE KEYS */; INSERT INTO `admin_rule` VALUES (1,1,'all','',0,'G','allow'),(937,21,'all','',0,'G','deny'),(938,21,'admin','',0,'G','deny'),(939,21,'admin/dashboard','',0,'G','allow'),(940,21,'admin/system','',0,'G','deny'),(941,21,'admin/system/acl','',0,'G','deny'),(942,21,'admin/system/acl/roles','',0,'G','deny'),(943,21,'admin/system/acl/users','',0,'G','deny'),(944,21,'admin/system/store','',0,'G','deny'),(945,21,'admin/system/design','',0,'G','deny'),(946,21,'admin/system/config','',0,'G','deny'),(947,21,'admin/system/config/general','',0,'G','deny'),(948,21,'admin/system/config/web','',0,'G','deny'),(949,21,'admin/system/config/design','',0,'G','deny'),(950,21,'admin/system/config/system','',0,'G','deny'),(951,21,'admin/system/config/advanced','',0,'G','deny'),(952,21,'admin/system/config/trans_email','',0,'G','deny'),(953,21,'admin/system/config/dev','',0,'G','deny'),(954,21,'admin/system/config/currency','',0,'G','deny'),(955,21,'admin/system/config/sendfriend','',0,'G','deny'),(956,21,'admin/system/config/admin','',0,'G','deny'),(957,21,'admin/system/config/cms','',0,'G','deny'),(958,21,'admin/system/config/customer','',0,'G','deny'),(959,21,'admin/system/config/catalog','',0,'G','deny'),(960,21,'admin/system/config/payment','',0,'G','deny'),(961,21,'admin/system/config/payment_services','',0,'G','deny'),(962,21,'admin/system/config/sales','',0,'G','deny'),(963,21,'admin/system/config/sales_email','',0,'G','deny'),(964,21,'admin/system/config/sales_pdf','',0,'G','deny'),(965,21,'admin/system/config/cataloginventory','',0,'G','deny'),(966,21,'admin/system/config/shipping','',0,'G','deny'),(967,21,'admin/system/config/carriers','',0,'G','deny'),(968,21,'admin/system/config/checkout','',0,'G','deny'),(969,21,'admin/system/config/paypal','',0,'G','deny'),(970,21,'admin/system/config/google','',0,'G','deny'),(971,21,'admin/system/config/reports','',0,'G','deny'),(972,21,'admin/system/config/tax','',0,'G','deny'),(973,21,'admin/system/config/wishlist','',0,'G','deny'),(974,21,'admin/system/config/contacts','',0,'G','deny'),(975,21,'admin/system/config/sitemap','',0,'G','deny'),(976,21,'admin/system/config/rss','',0,'G','deny'),(977,21,'admin/system/config/api','',0,'G','deny'),(978,21,'admin/system/config/downloadable','',0,'G','deny'),(979,21,'admin/system/config/newsletter','',0,'G','deny'),(980,21,'admin/system/config/fblikebox','',0,'G','deny'),(981,21,'admin/system/config/feed','',0,'G','deny'),(982,21,'admin/system/config/moneybookers','',0,'G','deny'),(983,21,'admin/system/currency','',0,'G','deny'),(984,21,'admin/system/email_template','',0,'G','deny'),(985,21,'admin/system/variable','',0,'G','deny'),(986,21,'admin/system/myaccount','',0,'G','deny'),(987,21,'admin/system/tools','',0,'G','deny'),(988,21,'admin/system/tools/backup','',0,'G','deny'),(989,21,'admin/system/tools/compiler','',0,'G','deny'),(990,21,'admin/system/convert','',0,'G','deny'),(991,21,'admin/system/convert/gui','',0,'G','deny'),(992,21,'admin/system/convert/profiles','',0,'G','deny'),(993,21,'admin/system/convert/import','',0,'G','deny'),(994,21,'admin/system/convert/export','',0,'G','deny'),(995,21,'admin/system/extensions','',0,'G','deny'),(996,21,'admin/system/extensions/local','',0,'G','deny'),(997,21,'admin/system/extensions/local/action','',0,'G','deny'),(998,21,'admin/system/extensions/custom','',0,'G','deny'),(999,21,'admin/system/extensions/custom/action','',0,'G','deny'),(1000,21,'admin/system/cache','',0,'G','deny'),(1001,21,'admin/system/adminnotification','',0,'G','deny'),(1002,21,'admin/system/adminnotification/show_toolbar','',0,'G','deny'),(1003,21,'admin/system/adminnotification/show_list','',0,'G','deny'),(1004,21,'admin/system/adminnotification/mark_as_read','',0,'G','deny'),(1005,21,'admin/system/adminnotification/remove','',0,'G','deny'),(1006,21,'admin/system/index','',0,'G','deny'),(1007,21,'admin/system/api','',0,'G','deny'),(1008,21,'admin/system/api/users','',0,'G','deny'),(1009,21,'admin/system/api/roles','',0,'G','deny'),(1010,21,'admin/global_search','',0,'G','deny'),(1011,21,'admin/cms','',0,'G','deny'),(1012,21,'admin/cms/block','',0,'G','deny'),(1013,21,'admin/cms/page','',0,'G','deny'),(1014,21,'admin/cms/page/save','',0,'G','deny'),(1015,21,'admin/cms/page/delete','',0,'G','deny'),(1016,21,'admin/cms/poll','',0,'G','deny'),(1017,21,'admin/cms/widget_instance','',0,'G','deny'),(1018,21,'admin/customer','',0,'G','allow'),(1019,21,'admin/customer/group','',0,'G','allow'),(1020,21,'admin/customer/manage','',0,'G','allow'),(1021,21,'admin/customer/online','',0,'G','allow'),(1022,21,'admin/catalog','',0,'G','deny'),(1023,21,'admin/catalog/attributes','',0,'G','deny'),(1024,21,'admin/catalog/attributes/attributes','',0,'G','deny'),(1025,21,'admin/catalog/attributes/sets','',0,'G','deny'),(1026,21,'admin/catalog/categories','',0,'G','deny'),(1027,21,'admin/catalog/products','',0,'G','deny'),(1028,21,'admin/catalog/update_attributes','',0,'G','deny'),(1029,21,'admin/catalog/urlrewrite','',0,'G','deny'),(1030,21,'admin/catalog/search','',0,'G','deny'),(1031,21,'admin/catalog/reviews_ratings','',0,'G','deny'),(1032,21,'admin/catalog/reviews_ratings/ratings','',0,'G','deny'),(1033,21,'admin/catalog/reviews_ratings/reviews','',0,'G','deny'),(1034,21,'admin/catalog/reviews_ratings/reviews/all','',0,'G','deny'),(1035,21,'admin/catalog/reviews_ratings/reviews/pending','',0,'G','deny'),(1036,21,'admin/catalog/tag','',0,'G','deny'),(1037,21,'admin/catalog/tag/all','',0,'G','deny'),(1038,21,'admin/catalog/tag/pending','',0,'G','deny'),(1039,21,'admin/catalog/sitemap','',0,'G','deny'),(1040,21,'admin/catalog/googlebase','',0,'G','deny'),(1041,21,'admin/catalog/googlebase/types','',0,'G','deny'),(1042,21,'admin/catalog/googlebase/items','',0,'G','deny'),(1043,21,'admin/promo','',0,'G','deny'),(1044,21,'admin/promo/catalog','',0,'G','deny'),(1045,21,'admin/promo/quote','',0,'G','deny'),(1046,21,'admin/sales','',0,'G','allow'),(1047,21,'admin/sales/order','',0,'G','allow'),(1048,21,'admin/sales/order/actions','',0,'G','allow'),(1049,21,'admin/sales/order/actions/create','',0,'G','allow'),(1050,21,'admin/sales/order/actions/view','',0,'G','allow'),(1051,21,'admin/sales/order/actions/reorder','',0,'G','allow'),(1052,21,'admin/sales/order/actions/edit','',0,'G','deny'),(1053,21,'admin/sales/order/actions/cancel','',0,'G','deny'),(1054,21,'admin/sales/order/actions/review_payment','',0,'G','deny'),(1055,21,'admin/sales/order/actions/capture','',0,'G','deny'),(1056,21,'admin/sales/order/actions/invoice','',0,'G','allow'),(1057,21,'admin/sales/order/actions/creditmemo','',0,'G','allow'),(1058,21,'admin/sales/order/actions/hold','',0,'G','allow'),(1059,21,'admin/sales/order/actions/unhold','',0,'G','allow'),(1060,21,'admin/sales/order/actions/ship','',0,'G','allow'),(1061,21,'admin/sales/order/actions/comment','',0,'G','allow'),(1062,21,'admin/sales/order/actions/emails','',0,'G','allow'),(1063,21,'admin/sales/invoice','',0,'G','allow'),(1064,21,'admin/sales/shipment','',0,'G','allow'),(1065,21,'admin/sales/creditmemo','',0,'G','allow'),(1066,21,'admin/sales/transactions','',0,'G','allow'),(1067,21,'admin/sales/transactions/fetch','',0,'G','allow'),(1068,21,'admin/sales/recurring_profile','',0,'G','allow'),(1069,21,'admin/sales/billing_agreement','',0,'G','deny'),(1070,21,'admin/sales/billing_agreement/actions','',0,'G','deny'),(1071,21,'admin/sales/billing_agreement/actions/view','',0,'G','deny'),(1072,21,'admin/sales/billing_agreement/actions/manage','',0,'G','deny'),(1073,21,'admin/sales/billing_agreement/actions/use','',0,'G','deny'),(1074,21,'admin/sales/checkoutagreement','',0,'G','allow'),(1075,21,'admin/sales/tax','',0,'G','deny'),(1076,21,'admin/sales/tax/classes_customer','',0,'G','deny'),(1077,21,'admin/sales/tax/classes_product','',0,'G','deny'),(1078,21,'admin/sales/tax/import_export','',0,'G','deny'),(1079,21,'admin/sales/tax/rates','',0,'G','deny'),(1080,21,'admin/sales/tax/rules','',0,'G','deny'),(1081,21,'admin/report','',0,'G','allow'),(1082,21,'admin/report/salesroot','',0,'G','deny'),(1083,21,'admin/report/salesroot/paypal_settlement_reports','',0,'G','deny'),(1084,21,'admin/report/salesroot/paypal_settlement_reports/view','',0,'G','deny'),(1085,21,'admin/report/salesroot/paypal_settlement_reports/fetch','',0,'G','deny'),(1086,21,'admin/report/salesroot/sales','',0,'G','deny'),(1087,21,'admin/report/salesroot/tax','',0,'G','deny'),(1088,21,'admin/report/salesroot/shipping','',0,'G','deny'),(1089,21,'admin/report/salesroot/invoiced','',0,'G','deny'),(1090,21,'admin/report/salesroot/refunded','',0,'G','deny'),(1091,21,'admin/report/salesroot/coupons','',0,'G','deny'),(1092,21,'admin/report/shopcart','',0,'G','deny'),(1093,21,'admin/report/shopcart/product','',0,'G','deny'),(1094,21,'admin/report/shopcart/abandoned','',0,'G','deny'),(1095,21,'admin/report/products','',0,'G','allow'),(1096,21,'admin/report/products/ordered','',0,'G','allow'),(1097,21,'admin/report/products/sold','',0,'G','deny'),(1098,21,'admin/report/products/viewed','',0,'G','allow'),(1099,21,'admin/report/products/lowstock','',0,'G','deny'),(1100,21,'admin/report/products/downloads','',0,'G','deny'),(1101,21,'admin/report/customers','',0,'G','allow'),(1102,21,'admin/report/customers/accounts','',0,'G','allow'),(1103,21,'admin/report/customers/totals','',0,'G','allow'),(1104,21,'admin/report/customers/orders','',0,'G','allow'),(1105,21,'admin/report/review','',0,'G','allow'),(1106,21,'admin/report/review/customer','',0,'G','allow'),(1107,21,'admin/report/review/product','',0,'G','allow'),(1108,21,'admin/report/tags','',0,'G','allow'),(1109,21,'admin/report/tags/customer','',0,'G','allow'),(1110,21,'admin/report/tags/popular','',0,'G','allow'),(1111,21,'admin/report/tags/product','',0,'G','allow'),(1112,21,'admin/report/search','',0,'G','allow'),(1113,21,'admin/report/statistics','',0,'G','allow'),(1114,21,'admin/newsletter','',0,'G','deny'),(1115,21,'admin/newsletter/problem','',0,'G','deny'),(1116,21,'admin/newsletter/queue','',0,'G','deny'),(1117,21,'admin/newsletter/subscriber','',0,'G','deny'),(1118,21,'admin/newsletter/template','',0,'G','deny'),(1119,21,'admin/xmlconnect','',0,'G','deny'),(1120,21,'admin/xmlconnect/mobile','',0,'G','deny'),(1121,21,'admin/xmlconnect/history','',0,'G','deny'),(1122,21,'admin/xmlconnect/templates','',0,'G','deny'),(1123,21,'admin/xmlconnect/queue','',0,'G','deny'),(1686,43,'all','',0,'G','deny'),(1687,43,'admin','',0,'G','deny'),(1688,43,'admin/dashboard','',0,'G','deny'),(1689,43,'admin/system','',0,'G','deny'),(1690,43,'admin/system/acl','',0,'G','deny'),(1691,43,'admin/system/acl/roles','',0,'G','deny'),(1692,43,'admin/system/acl/users','',0,'G','deny'),(1693,43,'admin/system/store','',0,'G','deny'),(1694,43,'admin/system/design','',0,'G','deny'),(1695,43,'admin/system/config','',0,'G','deny'),(1696,43,'admin/system/config/general','',0,'G','deny'),(1697,43,'admin/system/config/web','',0,'G','deny'),(1698,43,'admin/system/config/design','',0,'G','deny'),(1699,43,'admin/system/config/system','',0,'G','deny'),(1700,43,'admin/system/config/advanced','',0,'G','deny'),(1701,43,'admin/system/config/trans_email','',0,'G','deny'),(1702,43,'admin/system/config/dev','',0,'G','deny'),(1703,43,'admin/system/config/currency','',0,'G','deny'),(1704,43,'admin/system/config/sendfriend','',0,'G','deny'),(1705,43,'admin/system/config/admin','',0,'G','deny'),(1706,43,'admin/system/config/cms','',0,'G','deny'),(1707,43,'admin/system/config/customer','',0,'G','deny'),(1708,43,'admin/system/config/catalog','',0,'G','deny'),(1709,43,'admin/system/config/payment','',0,'G','deny'),(1710,43,'admin/system/config/payment_services','',0,'G','deny'),(1711,43,'admin/system/config/sales','',0,'G','deny'),(1712,43,'admin/system/config/sales_email','',0,'G','deny'),(1713,43,'admin/system/config/sales_pdf','',0,'G','deny'),(1714,43,'admin/system/config/cataloginventory','',0,'G','deny'),(1715,43,'admin/system/config/shipping','',0,'G','deny'),(1716,43,'admin/system/config/carriers','',0,'G','deny'),(1717,43,'admin/system/config/checkout','',0,'G','deny'),(1718,43,'admin/system/config/paypal','',0,'G','deny'),(1719,43,'admin/system/config/google','',0,'G','deny'),(1720,43,'admin/system/config/reports','',0,'G','deny'),(1721,43,'admin/system/config/tax','',0,'G','deny'),(1722,43,'admin/system/config/wishlist','',0,'G','deny'),(1723,43,'admin/system/config/contacts','',0,'G','deny'),(1724,43,'admin/system/config/sitemap','',0,'G','deny'),(1725,43,'admin/system/config/rss','',0,'G','deny'),(1726,43,'admin/system/config/api','',0,'G','deny'),(1727,43,'admin/system/config/downloadable','',0,'G','deny'),(1728,43,'admin/system/config/newsletter','',0,'G','deny'),(1729,43,'admin/system/config/mailchimp','',0,'G','deny'),(1730,43,'admin/system/config/beesocial_options','',0,'G','deny'),(1731,43,'admin/system/config/fblikebox','',0,'G','deny'),(1732,43,'admin/system/config/feed','',0,'G','deny'),(1733,43,'admin/system/config/engage','',0,'G','deny'),(1734,43,'admin/system/config/socialbookmarking','',0,'G','deny'),(1735,43,'admin/system/config/moneybookers','',0,'G','deny'),(1736,43,'admin/system/currency','',0,'G','deny'),(1737,43,'admin/system/email_template','',0,'G','deny'),(1738,43,'admin/system/variable','',0,'G','deny'),(1739,43,'admin/system/myaccount','',0,'G','deny'),(1740,43,'admin/system/tools','',0,'G','deny'),(1741,43,'admin/system/tools/backup','',0,'G','deny'),(1742,43,'admin/system/tools/compiler','',0,'G','deny'),(1743,43,'admin/system/convert','',0,'G','deny'),(1744,43,'admin/system/convert/gui','',0,'G','deny'),(1745,43,'admin/system/convert/profiles','',0,'G','deny'),(1746,43,'admin/system/convert/import','',0,'G','deny'),(1747,43,'admin/system/convert/export','',0,'G','deny'),(1748,43,'admin/system/extensions','',0,'G','deny'),(1749,43,'admin/system/extensions/local','',0,'G','deny'),(1750,43,'admin/system/extensions/local/action','',0,'G','deny'),(1751,43,'admin/system/extensions/custom','',0,'G','deny'),(1752,43,'admin/system/extensions/custom/action','',0,'G','deny'),(1753,43,'admin/system/cache','',0,'G','deny'),(1754,43,'admin/system/adminnotification','',0,'G','deny'),(1755,43,'admin/system/adminnotification/show_toolbar','',0,'G','deny'),(1756,43,'admin/system/adminnotification/show_list','',0,'G','deny'),(1757,43,'admin/system/adminnotification/mark_as_read','',0,'G','deny'),(1758,43,'admin/system/adminnotification/remove','',0,'G','deny'),(1759,43,'admin/system/index','',0,'G','deny'),(1760,43,'admin/system/api','',0,'G','deny'),(1761,43,'admin/system/api/users','',0,'G','deny'),(1762,43,'admin/system/api/roles','',0,'G','deny'),(1763,43,'admin/global_search','',0,'G','deny'),(1764,43,'admin/cms','',0,'G','deny'),(1765,43,'admin/cms/block','',0,'G','deny'),(1766,43,'admin/cms/page','',0,'G','deny'),(1767,43,'admin/cms/page/save','',0,'G','deny'),(1768,43,'admin/cms/page/delete','',0,'G','deny'),(1769,43,'admin/cms/poll','',0,'G','deny'),(1770,43,'admin/cms/widget_instance','',0,'G','deny'),(1771,43,'admin/customer','',0,'G','deny'),(1772,43,'admin/customer/group','',0,'G','deny'),(1773,43,'admin/customer/manage','',0,'G','deny'),(1774,43,'admin/customer/online','',0,'G','deny'),(1775,43,'admin/catalog','',0,'G','deny'),(1776,43,'admin/catalog/attributes','',0,'G','deny'),(1777,43,'admin/catalog/attributes/attributes','',0,'G','deny'),(1778,43,'admin/catalog/attributes/sets','',0,'G','deny'),(1779,43,'admin/catalog/categories','',0,'G','deny'),(1780,43,'admin/catalog/products','',0,'G','deny'),(1781,43,'admin/catalog/update_attributes','',0,'G','deny'),(1782,43,'admin/catalog/urlrewrite','',0,'G','deny'),(1783,43,'admin/catalog/search','',0,'G','deny'),(1784,43,'admin/catalog/reviews_ratings','',0,'G','deny'),(1785,43,'admin/catalog/reviews_ratings/ratings','',0,'G','deny'),(1786,43,'admin/catalog/reviews_ratings/reviews','',0,'G','deny'),(1787,43,'admin/catalog/reviews_ratings/reviews/all','',0,'G','deny'),(1788,43,'admin/catalog/reviews_ratings/reviews/pending','',0,'G','deny'),(1789,43,'admin/catalog/tag','',0,'G','deny'),(1790,43,'admin/catalog/tag/all','',0,'G','deny'),(1791,43,'admin/catalog/tag/pending','',0,'G','deny'),(1792,43,'admin/catalog/sitemap','',0,'G','deny'),(1793,43,'admin/catalog/googlebase','',0,'G','deny'),(1794,43,'admin/catalog/googlebase/types','',0,'G','deny'),(1795,43,'admin/catalog/googlebase/items','',0,'G','deny'),(1796,43,'admin/promo','',0,'G','deny'),(1797,43,'admin/promo/catalog','',0,'G','deny'),(1798,43,'admin/promo/quote','',0,'G','deny'),(1799,43,'admin/sales','',0,'G','allow'),(1800,43,'admin/sales/order','',0,'G','allow'),(1801,43,'admin/sales/order/actions','',0,'G','allow'),(1802,43,'admin/sales/order/actions/create','',0,'G','allow'),(1803,43,'admin/sales/order/actions/view','',0,'G','allow'),(1804,43,'admin/sales/order/actions/reorder','',0,'G','allow'),(1805,43,'admin/sales/order/actions/edit','',0,'G','allow'),(1806,43,'admin/sales/order/actions/cancel','',0,'G','allow'),(1807,43,'admin/sales/order/actions/review_payment','',0,'G','allow'),(1808,43,'admin/sales/order/actions/capture','',0,'G','allow'),(1809,43,'admin/sales/order/actions/invoice','',0,'G','allow'),(1810,43,'admin/sales/order/actions/creditmemo','',0,'G','allow'),(1811,43,'admin/sales/order/actions/hold','',0,'G','allow'),(1812,43,'admin/sales/order/actions/unhold','',0,'G','allow'),(1813,43,'admin/sales/order/actions/ship','',0,'G','allow'),(1814,43,'admin/sales/order/actions/comment','',0,'G','allow'),(1815,43,'admin/sales/order/actions/emails','',0,'G','allow'),(1816,43,'admin/sales/invoice','',0,'G','deny'),(1817,43,'admin/sales/shipment','',0,'G','deny'),(1818,43,'admin/sales/creditmemo','',0,'G','deny'),(1819,43,'admin/sales/transactions','',0,'G','deny'),(1820,43,'admin/sales/transactions/fetch','',0,'G','deny'),(1821,43,'admin/sales/recurring_profile','',0,'G','deny'),(1822,43,'admin/sales/billing_agreement','',0,'G','deny'),(1823,43,'admin/sales/billing_agreement/actions','',0,'G','deny'),(1824,43,'admin/sales/billing_agreement/actions/view','',0,'G','deny'),(1825,43,'admin/sales/billing_agreement/actions/manage','',0,'G','deny'),(1826,43,'admin/sales/billing_agreement/actions/use','',0,'G','deny'),(1827,43,'admin/sales/checkoutagreement','',0,'G','deny'),(1828,43,'admin/sales/tax','',0,'G','deny'),(1829,43,'admin/sales/tax/classes_customer','',0,'G','deny'),(1830,43,'admin/sales/tax/classes_product','',0,'G','deny'),(1831,43,'admin/sales/tax/import_export','',0,'G','deny'),(1832,43,'admin/sales/tax/rates','',0,'G','deny'),(1833,43,'admin/sales/tax/rules','',0,'G','deny'),(1834,43,'admin/report','',0,'G','deny'),(1835,43,'admin/report/salesroot','',0,'G','deny'),(1836,43,'admin/report/salesroot/paypal_settlement_reports','',0,'G','deny'),(1837,43,'admin/report/salesroot/paypal_settlement_reports/view','',0,'G','deny'),(1838,43,'admin/report/salesroot/paypal_settlement_reports/fetch','',0,'G','deny'),(1839,43,'admin/report/salesroot/sales','',0,'G','deny'),(1840,43,'admin/report/salesroot/tax','',0,'G','deny'),(1841,43,'admin/report/salesroot/shipping','',0,'G','deny'),(1842,43,'admin/report/salesroot/invoiced','',0,'G','deny'),(1843,43,'admin/report/salesroot/refunded','',0,'G','deny'),(1844,43,'admin/report/salesroot/coupons','',0,'G','deny'),(1845,43,'admin/report/shopcart','',0,'G','deny'),(1846,43,'admin/report/shopcart/product','',0,'G','deny'),(1847,43,'admin/report/shopcart/abandoned','',0,'G','deny'),(1848,43,'admin/report/products','',0,'G','deny'),(1849,43,'admin/report/products/ordered','',0,'G','deny'),(1850,43,'admin/report/products/sold','',0,'G','deny'),(1851,43,'admin/report/products/viewed','',0,'G','deny'),(1852,43,'admin/report/products/lowstock','',0,'G','deny'),(1853,43,'admin/report/products/downloads','',0,'G','deny'),(1854,43,'admin/report/customers','',0,'G','deny'),(1855,43,'admin/report/customers/accounts','',0,'G','deny'),(1856,43,'admin/report/customers/totals','',0,'G','deny'),(1857,43,'admin/report/customers/orders','',0,'G','deny'),(1858,43,'admin/report/review','',0,'G','deny'),(1859,43,'admin/report/review/customer','',0,'G','deny'),(1860,43,'admin/report/review/product','',0,'G','deny'),(1861,43,'admin/report/tags','',0,'G','deny'),(1862,43,'admin/report/tags/customer','',0,'G','deny'),(1863,43,'admin/report/tags/popular','',0,'G','deny'),(1864,43,'admin/report/tags/product','',0,'G','deny'),(1865,43,'admin/report/search','',0,'G','deny'),(1866,43,'admin/report/statistics','',0,'G','deny'),(1867,43,'admin/newsletter','',0,'G','deny'),(1868,43,'admin/newsletter/problem','',0,'G','deny'),(1869,43,'admin/newsletter/queue','',0,'G','deny'),(1870,43,'admin/newsletter/subscriber','',0,'G','deny'),(1871,43,'admin/newsletter/template','',0,'G','deny'),(1872,43,'admin/xmlconnect','',0,'G','deny'),(1873,43,'admin/xmlconnect/mobile','',0,'G','deny'),(1874,43,'admin/xmlconnect/history','',0,'G','deny'),(1875,43,'admin/xmlconnect/templates','',0,'G','deny'),(1876,43,'admin/xmlconnect/queue','',0,'G','deny'),(1877,20,'all','',0,'G','deny'),(1878,20,'admin','',0,'G','deny'),(1879,20,'admin/dashboard','',0,'G','deny'),(1880,20,'admin/system','',0,'G','allow'),(1881,20,'admin/system/acl','',0,'G','deny'),(1882,20,'admin/system/acl/roles','',0,'G','deny'),(1883,20,'admin/system/acl/users','',0,'G','deny'),(1884,20,'admin/system/store','',0,'G','deny'),(1885,20,'admin/system/design','',0,'G','deny'),(1886,20,'admin/system/config','',0,'G','deny'),(1887,20,'admin/system/config/general','',0,'G','deny'),(1888,20,'admin/system/config/web','',0,'G','deny'),(1889,20,'admin/system/config/design','',0,'G','deny'),(1890,20,'admin/system/config/system','',0,'G','deny'),(1891,20,'admin/system/config/advanced','',0,'G','deny'),(1892,20,'admin/system/config/trans_email','',0,'G','deny'),(1893,20,'admin/system/config/dev','',0,'G','deny'),(1894,20,'admin/system/config/currency','',0,'G','deny'),(1895,20,'admin/system/config/sendfriend','',0,'G','deny'),(1896,20,'admin/system/config/admin','',0,'G','deny'),(1897,20,'admin/system/config/cms','',0,'G','deny'),(1898,20,'admin/system/config/customer','',0,'G','deny'),(1899,20,'admin/system/config/catalog','',0,'G','deny'),(1900,20,'admin/system/config/payment','',0,'G','deny'),(1901,20,'admin/system/config/payment_services','',0,'G','deny'),(1902,20,'admin/system/config/sales','',0,'G','deny'),(1903,20,'admin/system/config/sales_email','',0,'G','deny'),(1904,20,'admin/system/config/sales_pdf','',0,'G','deny'),(1905,20,'admin/system/config/cataloginventory','',0,'G','deny'),(1906,20,'admin/system/config/shipping','',0,'G','deny'),(1907,20,'admin/system/config/carriers','',0,'G','deny'),(1908,20,'admin/system/config/checkout','',0,'G','deny'),(1909,20,'admin/system/config/paypal','',0,'G','deny'),(1910,20,'admin/system/config/google','',0,'G','deny'),(1911,20,'admin/system/config/reports','',0,'G','deny'),(1912,20,'admin/system/config/tax','',0,'G','deny'),(1913,20,'admin/system/config/wishlist','',0,'G','deny'),(1914,20,'admin/system/config/contacts','',0,'G','deny'),(1915,20,'admin/system/config/sitemap','',0,'G','deny'),(1916,20,'admin/system/config/rss','',0,'G','deny'),(1917,20,'admin/system/config/api','',0,'G','deny'),(1918,20,'admin/system/config/downloadable','',0,'G','deny'),(1919,20,'admin/system/config/newsletter','',0,'G','deny'),(1920,20,'admin/system/config/mailchimp','',0,'G','deny'),(1921,20,'admin/system/config/easy_lightbox','',0,'G','deny'),(1922,20,'admin/system/config/beesocial_options','',0,'G','deny'),(1923,20,'admin/system/config/fblikebox','',0,'G','deny'),(1924,20,'admin/system/config/feed','',0,'G','deny'),(1925,20,'admin/system/config/ig_lightbox','',0,'G','deny'),(1926,20,'admin/system/config/engage','',0,'G','deny'),(1927,20,'admin/system/config/socialbookmarking','',0,'G','deny'),(1928,20,'admin/system/config/moneybookers','',0,'G','deny'),(1929,20,'admin/system/config/zizio_powershare','',0,'G','deny'),(1930,20,'admin/system/currency','',0,'G','deny'),(1931,20,'admin/system/email_template','',0,'G','allow'),(1932,20,'admin/system/variable','',0,'G','deny'),(1933,20,'admin/system/myaccount','',0,'G','deny'),(1934,20,'admin/system/tools','',0,'G','deny'),(1935,20,'admin/system/tools/backup','',0,'G','deny'),(1936,20,'admin/system/tools/compiler','',0,'G','deny'),(1937,20,'admin/system/convert','',0,'G','deny'),(1938,20,'admin/system/convert/gui','',0,'G','deny'),(1939,20,'admin/system/convert/profiles','',0,'G','deny'),(1940,20,'admin/system/convert/import','',0,'G','deny'),(1941,20,'admin/system/convert/export','',0,'G','deny'),(1942,20,'admin/system/extensions','',0,'G','deny'),(1943,20,'admin/system/extensions/local','',0,'G','deny'),(1944,20,'admin/system/extensions/local/action','',0,'G','deny'),(1945,20,'admin/system/extensions/custom','',0,'G','deny'),(1946,20,'admin/system/extensions/custom/action','',0,'G','deny'),(1947,20,'admin/system/cache','',0,'G','deny'),(1948,20,'admin/system/adminnotification','',0,'G','deny'),(1949,20,'admin/system/adminnotification/show_toolbar','',0,'G','deny'),(1950,20,'admin/system/adminnotification/show_list','',0,'G','deny'),(1951,20,'admin/system/adminnotification/mark_as_read','',0,'G','deny'),(1952,20,'admin/system/adminnotification/remove','',0,'G','deny'),(1953,20,'admin/system/index','',0,'G','deny'),(1954,20,'admin/system/api','',0,'G','deny'),(1955,20,'admin/system/api/users','',0,'G','deny'),(1956,20,'admin/system/api/roles','',0,'G','deny'),(1957,20,'admin/global_search','',0,'G','deny'),(1958,20,'admin/cms','',0,'G','deny'),(1959,20,'admin/cms/block','',0,'G','deny'),(1960,20,'admin/cms/page','',0,'G','deny'),(1961,20,'admin/cms/page/save','',0,'G','deny'),(1962,20,'admin/cms/page/delete','',0,'G','deny'),(1963,20,'admin/cms/poll','',0,'G','deny'),(1964,20,'admin/cms/widget_instance','',0,'G','deny'),(1965,20,'admin/customer','',0,'G','allow'),(1966,20,'admin/customer/group','',0,'G','allow'),(1967,20,'admin/customer/manage','',0,'G','allow'),(1968,20,'admin/customer/online','',0,'G','allow'),(1969,20,'admin/catalog','',0,'G','allow'),(1970,20,'admin/catalog/attributes','',0,'G','allow'),(1971,20,'admin/catalog/attributes/attributes','',0,'G','allow'),(1972,20,'admin/catalog/attributes/sets','',0,'G','allow'),(1973,20,'admin/catalog/categories','',0,'G','allow'),(1974,20,'admin/catalog/products','',0,'G','allow'),(1975,20,'admin/catalog/update_attributes','',0,'G','allow'),(1976,20,'admin/catalog/urlrewrite','',0,'G','allow'),(1977,20,'admin/catalog/search','',0,'G','allow'),(1978,20,'admin/catalog/reviews_ratings','',0,'G','allow'),(1979,20,'admin/catalog/reviews_ratings/ratings','',0,'G','allow'),(1980,20,'admin/catalog/reviews_ratings/reviews','',0,'G','allow'),(1981,20,'admin/catalog/reviews_ratings/reviews/all','',0,'G','allow'),(1982,20,'admin/catalog/reviews_ratings/reviews/pending','',0,'G','allow'),(1983,20,'admin/catalog/tag','',0,'G','allow'),(1984,20,'admin/catalog/tag/all','',0,'G','allow'),(1985,20,'admin/catalog/tag/pending','',0,'G','allow'),(1986,20,'admin/catalog/sitemap','',0,'G','allow'),(1987,20,'admin/catalog/googlebase','',0,'G','allow'),(1988,20,'admin/catalog/googlebase/types','',0,'G','allow'),(1989,20,'admin/catalog/googlebase/items','',0,'G','allow'),(1990,20,'admin/promo','',0,'G','deny'),(1991,20,'admin/promo/catalog','',0,'G','deny'),(1992,20,'admin/promo/quote','',0,'G','deny'),(1993,20,'admin/sales','',0,'G','allow'),(1994,20,'admin/sales/order','',0,'G','allow'),(1995,20,'admin/sales/order/actions','',0,'G','allow'),(1996,20,'admin/sales/order/actions/create','',0,'G','deny'),(1997,20,'admin/sales/order/actions/view','',0,'G','allow'),(1998,20,'admin/sales/order/actions/reorder','',0,'G','deny'),(1999,20,'admin/sales/order/actions/edit','',0,'G','deny'),(2000,20,'admin/sales/order/actions/cancel','',0,'G','deny'),(2001,20,'admin/sales/order/actions/review_payment','',0,'G','deny'),(2002,20,'admin/sales/order/actions/capture','',0,'G','deny'),(2003,20,'admin/sales/order/actions/invoice','',0,'G','allow'),(2004,20,'admin/sales/order/actions/creditmemo','',0,'G','deny'),(2005,20,'admin/sales/order/actions/hold','',0,'G','deny'),(2006,20,'admin/sales/order/actions/unhold','',0,'G','deny'),(2007,20,'admin/sales/order/actions/ship','',0,'G','allow'),(2008,20,'admin/sales/order/actions/comment','',0,'G','allow'),(2009,20,'admin/sales/order/actions/emails','',0,'G','deny'),(2010,20,'admin/sales/invoice','',0,'G','allow'),(2011,20,'admin/sales/shipment','',0,'G','allow'),(2012,20,'admin/sales/creditmemo','',0,'G','allow'),(2013,20,'admin/sales/transactions','',0,'G','deny'),(2014,20,'admin/sales/transactions/fetch','',0,'G','deny'),(2015,20,'admin/sales/recurring_profile','',0,'G','deny'),(2016,20,'admin/sales/billing_agreement','',0,'G','deny'),(2017,20,'admin/sales/billing_agreement/actions','',0,'G','deny'),(2018,20,'admin/sales/billing_agreement/actions/view','',0,'G','deny'),(2019,20,'admin/sales/billing_agreement/actions/manage','',0,'G','deny'),(2020,20,'admin/sales/billing_agreement/actions/use','',0,'G','deny'),(2021,20,'admin/sales/checkoutagreement','',0,'G','deny'),(2022,20,'admin/sales/tax','',0,'G','deny'),(2023,20,'admin/sales/tax/classes_customer','',0,'G','deny'),(2024,20,'admin/sales/tax/classes_product','',0,'G','deny'),(2025,20,'admin/sales/tax/import_export','',0,'G','deny'),(2026,20,'admin/sales/tax/rates','',0,'G','deny'),(2027,20,'admin/sales/tax/rules','',0,'G','deny'),(2028,20,'admin/report','',0,'G','allow'),(2029,20,'admin/report/salesroot','',0,'G','allow'),(2030,20,'admin/report/salesroot/paypal_settlement_reports','',0,'G','deny'),(2031,20,'admin/report/salesroot/paypal_settlement_reports/view','',0,'G','deny'),(2032,20,'admin/report/salesroot/paypal_settlement_reports/fetch','',0,'G','deny'),(2033,20,'admin/report/salesroot/sales','',0,'G','allow'),(2034,20,'admin/report/salesroot/tax','',0,'G','deny'),(2035,20,'admin/report/salesroot/shipping','',0,'G','allow'),(2036,20,'admin/report/salesroot/invoiced','',0,'G','allow'),(2037,20,'admin/report/salesroot/refunded','',0,'G','allow'),(2038,20,'admin/report/salesroot/coupons','',0,'G','allow'),(2039,20,'admin/report/shopcart','',0,'G','deny'),(2040,20,'admin/report/shopcart/product','',0,'G','deny'),(2041,20,'admin/report/shopcart/abandoned','',0,'G','deny'),(2042,20,'admin/report/products','',0,'G','allow'),(2043,20,'admin/report/products/ordered','',0,'G','allow'),(2044,20,'admin/report/products/sold','',0,'G','allow'),(2045,20,'admin/report/products/viewed','',0,'G','allow'),(2046,20,'admin/report/products/lowstock','',0,'G','allow'),(2047,20,'admin/report/products/downloads','',0,'G','deny'),(2048,20,'admin/report/customers','',0,'G','allow'),(2049,20,'admin/report/customers/accounts','',0,'G','allow'),(2050,20,'admin/report/customers/totals','',0,'G','allow'),(2051,20,'admin/report/customers/orders','',0,'G','allow'),(2052,20,'admin/report/review','',0,'G','deny'),(2053,20,'admin/report/review/customer','',0,'G','deny'),(2054,20,'admin/report/review/product','',0,'G','deny'),(2055,20,'admin/report/tags','',0,'G','allow'),(2056,20,'admin/report/tags/customer','',0,'G','allow'),(2057,20,'admin/report/tags/popular','',0,'G','deny'),(2058,20,'admin/report/tags/product','',0,'G','allow'),(2059,20,'admin/report/search','',0,'G','deny'),(2060,20,'admin/report/statistics','',0,'G','allow'),(2061,20,'admin/newsletter','',0,'G','deny'),(2062,20,'admin/newsletter/problem','',0,'G','deny'),(2063,20,'admin/newsletter/queue','',0,'G','deny'),(2064,20,'admin/newsletter/subscriber','',0,'G','deny'),(2065,20,'admin/newsletter/template','',0,'G','deny'),(2066,20,'admin/xmlconnect','',0,'G','deny'),(2067,20,'admin/xmlconnect/mobile','',0,'G','deny'),(2068,20,'admin/xmlconnect/history','',0,'G','deny'),(2069,20,'admin/xmlconnect/templates','',0,'G','deny'),(2070,20,'admin/xmlconnect/queue','',0,'G','deny'),(2071,20,'admin/facebook-store','',0,'G','deny'); /*!40000 ALTER TABLE `admin_rule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_user` -- DROP TABLE IF EXISTS `admin_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `admin_user` ( `user_id` mediumint(9) unsigned NOT NULL AUTO_INCREMENT, `firstname` varchar(32) NOT NULL DEFAULT '', `lastname` varchar(32) NOT NULL DEFAULT '', `email` varchar(128) NOT NULL DEFAULT '', `username` varchar(40) NOT NULL DEFAULT '', `password` varchar(40) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified` datetime DEFAULT NULL, `logdate` datetime DEFAULT NULL, `lognum` smallint(5) unsigned NOT NULL DEFAULT '0', `reload_acl_flag` tinyint(1) NOT NULL DEFAULT '0', `is_active` tinyint(1) NOT NULL DEFAULT '1', `extra` text, PRIMARY KEY (`user_id`), UNIQUE KEY `UNQ_ADMIN_USER_USERNAME` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Users'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admin_user` -- LOCK TABLES `admin_user` WRITE; /*!40000 ALTER TABLE `admin_user` DISABLE KEYS */; INSERT INTO `admin_user` VALUES (1,'Hugh','Vail','hugh@tomorrowsharvest.com','hugh','c62876c7fd2400d8eb9da9effdec1a7b:1m','2010-12-13 22:32:18','2011-11-12 12:47:10','2011-12-13 05:33:20',167,0,1,'a:1:{s:11:\"configState\";a:83:{s:17:\"carriers_flatrate\";s:1:\"1\";s:18:\"carriers_tablerate\";s:1:\"0\";s:21:\"carriers_freeshipping\";s:1:\"1\";s:12:\"carriers_ups\";s:1:\"0\";s:13:\"carriers_usps\";s:1:\"0\";s:14:\"carriers_fedex\";s:1:\"1\";s:12:\"carriers_dhl\";s:1:\"0\";s:16:\"checkout_options\";s:1:\"0\";s:13:\"checkout_cart\";s:1:\"0\";s:18:\"checkout_cart_link\";s:1:\"0\";s:16:\"checkout_sidebar\";s:1:\"0\";s:23:\"checkout_payment_failed\";s:1:\"1\";s:14:\"design_package\";s:1:\"1\";s:12:\"design_theme\";s:1:\"1\";s:11:\"design_head\";s:1:\"1\";s:13:\"design_header\";s:1:\"1\";s:13:\"design_footer\";s:1:\"1\";s:16:\"design_watermark\";s:1:\"1\";s:17:\"design_pagination\";s:1:\"0\";s:22:\"customer_account_share\";s:1:\"1\";s:25:\"customer_online_customers\";s:1:\"1\";s:23:\"customer_create_account\";s:1:\"1\";s:17:\"customer_password\";s:1:\"1\";s:16:\"customer_address\";s:1:\"1\";s:16:\"customer_startup\";s:1:\"1\";s:26:\"customer_address_templates\";s:1:\"0\";s:15:\"general_country\";s:1:\"1\";s:14:\"general_locale\";s:1:\"1\";s:25:\"general_store_information\";s:1:\"0\";s:25:\"trans_email_ident_general\";s:1:\"1\";s:23:\"trans_email_ident_sales\";s:1:\"0\";s:25:\"trans_email_ident_support\";s:1:\"1\";s:25:\"trans_email_ident_custom1\";s:1:\"0\";s:25:\"trans_email_ident_custom2\";s:1:\"0\";s:17:\"contacts_contacts\";s:1:\"1\";s:14:\"contacts_email\";s:1:\"1\";s:17:\"mailchimp_general\";s:1:\"1\";s:19:\"mailchimp_subscribe\";s:1:\"1\";s:21:\"mailchimp_unsubscribe\";s:1:\"0\";s:25:\"beesocial_options_general\";s:1:\"1\";s:29:\"beesocial_options_fb_comments\";s:1:\"1\";s:25:\"beesocial_options_twitter\";s:1:\"1\";s:14:\"payment_ccsave\";s:1:\"0\";s:15:\"payment_checkmo\";s:1:\"0\";s:12:\"payment_free\";s:1:\"0\";s:21:\"payment_purchaseorder\";s:1:\"0\";s:31:\"payment_authorizenet_directpost\";s:1:\"0\";s:20:\"payment_authorizenet\";s:1:\"0\";s:10:\"rss_config\";s:1:\"1\";s:12:\"rss_wishlist\";s:1:\"1\";s:11:\"rss_catalog\";s:1:\"1\";s:9:\"rss_order\";s:1:\"1\";s:17:\"sales_email_order\";s:1:\"1\";s:25:\"sales_email_order_comment\";s:1:\"0\";s:19:\"sales_email_invoice\";s:1:\"1\";s:27:\"sales_email_invoice_comment\";s:1:\"0\";s:20:\"sales_email_shipment\";s:1:\"0\";s:28:\"sales_email_shipment_comment\";s:1:\"0\";s:22:\"sales_email_creditmemo\";s:1:\"0\";s:30:\"sales_email_creditmemo_comment\";s:1:\"0\";s:14:\"engage_options\";s:1:\"1\";s:18:\"engage_accountdata\";s:1:\"1\";s:11:\"engage_info\";s:1:\"0\";s:19:\"fblikebox_fblikebox\";s:1:\"1\";s:13:\"fblikebox_ids\";s:1:\"0\";s:17:\"fblikebox_options\";s:1:\"0\";s:14:\"fblikebox_size\";s:1:\"0\";s:15:\"fblikebox_style\";s:1:\"0\";s:16:\"checkout_curebit\";s:1:\"0\";s:16:\"catalog_frontend\";s:1:\"1\";s:15:\"catalog_sitemap\";s:1:\"0\";s:14:\"catalog_review\";s:1:\"0\";s:20:\"catalog_productalert\";s:1:\"0\";s:25:\"catalog_productalert_cron\";s:1:\"0\";s:19:\"catalog_placeholder\";s:1:\"0\";s:25:\"catalog_recently_products\";s:1:\"0\";s:13:\"catalog_price\";s:1:\"0\";s:26:\"catalog_layered_navigation\";s:1:\"0\";s:18:\"catalog_navigation\";s:1:\"0\";s:11:\"catalog_seo\";s:1:\"0\";s:14:\"catalog_search\";s:1:\"0\";s:20:\"catalog_downloadable\";s:1:\"0\";s:22:\"catalog_custom_options\";s:1:\"0\";}}'),(2,'Nick','Litster','nick@scoreboardsports.net','Nick','fc465c63b6d54a484e87fd964179eedb:LW','2010-12-18 01:02:12','2011-10-22 21:15:14','2011-10-21 03:42:04',37,0,0,'a:1:{s:11:\"configState\";a:83:{s:17:\"carriers_flatrate\";s:1:\"1\";s:18:\"carriers_tablerate\";s:1:\"0\";s:21:\"carriers_freeshipping\";s:1:\"1\";s:12:\"carriers_ups\";s:1:\"0\";s:13:\"carriers_usps\";s:1:\"0\";s:14:\"carriers_fedex\";s:1:\"1\";s:12:\"carriers_dhl\";s:1:\"0\";s:16:\"checkout_options\";s:1:\"0\";s:13:\"checkout_cart\";s:1:\"0\";s:18:\"checkout_cart_link\";s:1:\"0\";s:16:\"checkout_sidebar\";s:1:\"0\";s:23:\"checkout_payment_failed\";s:1:\"1\";s:14:\"design_package\";s:1:\"1\";s:12:\"design_theme\";s:1:\"1\";s:11:\"design_head\";s:1:\"1\";s:13:\"design_header\";s:1:\"1\";s:13:\"design_footer\";s:1:\"1\";s:16:\"design_watermark\";s:1:\"1\";s:17:\"design_pagination\";s:1:\"0\";s:22:\"customer_account_share\";s:1:\"1\";s:25:\"customer_online_customers\";s:1:\"1\";s:23:\"customer_create_account\";s:1:\"1\";s:17:\"customer_password\";s:1:\"1\";s:16:\"customer_address\";s:1:\"1\";s:16:\"customer_startup\";s:1:\"1\";s:26:\"customer_address_templates\";s:1:\"0\";s:15:\"general_country\";s:1:\"1\";s:14:\"general_locale\";s:1:\"1\";s:25:\"general_store_information\";s:1:\"0\";s:25:\"trans_email_ident_general\";s:1:\"1\";s:23:\"trans_email_ident_sales\";s:1:\"0\";s:25:\"trans_email_ident_support\";s:1:\"1\";s:25:\"trans_email_ident_custom1\";s:1:\"0\";s:25:\"trans_email_ident_custom2\";s:1:\"0\";s:17:\"contacts_contacts\";s:1:\"1\";s:14:\"contacts_email\";s:1:\"1\";s:17:\"mailchimp_general\";s:1:\"1\";s:19:\"mailchimp_subscribe\";s:1:\"1\";s:21:\"mailchimp_unsubscribe\";s:1:\"0\";s:25:\"beesocial_options_general\";s:1:\"1\";s:29:\"beesocial_options_fb_comments\";s:1:\"1\";s:25:\"beesocial_options_twitter\";s:1:\"1\";s:14:\"payment_ccsave\";s:1:\"0\";s:15:\"payment_checkmo\";s:1:\"0\";s:12:\"payment_free\";s:1:\"0\";s:21:\"payment_purchaseorder\";s:1:\"0\";s:31:\"payment_authorizenet_directpost\";s:1:\"0\";s:20:\"payment_authorizenet\";s:1:\"0\";s:10:\"rss_config\";s:1:\"1\";s:12:\"rss_wishlist\";s:1:\"1\";s:11:\"rss_catalog\";s:1:\"1\";s:9:\"rss_order\";s:1:\"1\";s:17:\"sales_email_order\";s:1:\"1\";s:25:\"sales_email_order_comment\";s:1:\"0\";s:19:\"sales_email_invoice\";s:1:\"1\";s:27:\"sales_email_invoice_comment\";s:1:\"0\";s:20:\"sales_email_shipment\";s:1:\"0\";s:28:\"sales_email_shipment_comment\";s:1:\"0\";s:22:\"sales_email_creditmemo\";s:1:\"0\";s:30:\"sales_email_creditmemo_comment\";s:1:\"0\";s:14:\"engage_options\";s:1:\"1\";s:18:\"engage_accountdata\";s:1:\"1\";s:11:\"engage_info\";s:1:\"0\";s:19:\"fblikebox_fblikebox\";s:1:\"1\";s:13:\"fblikebox_ids\";s:1:\"0\";s:17:\"fblikebox_options\";s:1:\"0\";s:14:\"fblikebox_size\";s:1:\"0\";s:15:\"fblikebox_style\";s:1:\"0\";s:16:\"checkout_curebit\";s:1:\"0\";s:16:\"catalog_frontend\";s:1:\"1\";s:15:\"catalog_sitemap\";s:1:\"0\";s:14:\"catalog_review\";s:1:\"0\";s:20:\"catalog_productalert\";s:1:\"0\";s:25:\"catalog_productalert_cron\";s:1:\"0\";s:19:\"catalog_placeholder\";s:1:\"0\";s:25:\"catalog_recently_products\";s:1:\"0\";s:13:\"catalog_price\";s:1:\"0\";s:26:\"catalog_layered_navigation\";s:1:\"0\";s:18:\"catalog_navigation\";s:1:\"0\";s:11:\"catalog_seo\";s:1:\"0\";s:14:\"catalog_search\";s:1:\"0\";s:20:\"catalog_downloadable\";s:1:\"0\";s:22:\"catalog_custom_options\";s:1:\"0\";}}'),(3,'Molli','Merrill','molli@scoreboardsports.net','molli','e0c15f4e82cbe9b05c8a28b9c2b565c9:9z','2010-12-18 01:02:46','2011-10-22 21:14:56','2011-10-03 00:08:48',90,0,0,'a:1:{s:11:\"configState\";a:83:{s:17:\"carriers_flatrate\";s:1:\"1\";s:18:\"carriers_tablerate\";s:1:\"0\";s:21:\"carriers_freeshipping\";s:1:\"1\";s:12:\"carriers_ups\";s:1:\"0\";s:13:\"carriers_usps\";s:1:\"0\";s:14:\"carriers_fedex\";s:1:\"1\";s:12:\"carriers_dhl\";s:1:\"0\";s:16:\"checkout_options\";s:1:\"0\";s:13:\"checkout_cart\";s:1:\"0\";s:18:\"checkout_cart_link\";s:1:\"0\";s:16:\"checkout_sidebar\";s:1:\"0\";s:23:\"checkout_payment_failed\";s:1:\"1\";s:14:\"design_package\";s:1:\"1\";s:12:\"design_theme\";s:1:\"1\";s:11:\"design_head\";s:1:\"1\";s:13:\"design_header\";s:1:\"1\";s:13:\"design_footer\";s:1:\"1\";s:16:\"design_watermark\";s:1:\"1\";s:17:\"design_pagination\";s:1:\"0\";s:22:\"customer_account_share\";s:1:\"1\";s:25:\"customer_online_customers\";s:1:\"1\";s:23:\"customer_create_account\";s:1:\"1\";s:17:\"customer_password\";s:1:\"1\";s:16:\"customer_address\";s:1:\"1\";s:16:\"customer_startup\";s:1:\"1\";s:26:\"customer_address_templates\";s:1:\"0\";s:15:\"general_country\";s:1:\"1\";s:14:\"general_locale\";s:1:\"1\";s:25:\"general_store_information\";s:1:\"0\";s:25:\"trans_email_ident_general\";s:1:\"1\";s:23:\"trans_email_ident_sales\";s:1:\"0\";s:25:\"trans_email_ident_support\";s:1:\"1\";s:25:\"trans_email_ident_custom1\";s:1:\"0\";s:25:\"trans_email_ident_custom2\";s:1:\"0\";s:17:\"contacts_contacts\";s:1:\"1\";s:14:\"contacts_email\";s:1:\"1\";s:17:\"mailchimp_general\";s:1:\"1\";s:19:\"mailchimp_subscribe\";s:1:\"1\";s:21:\"mailchimp_unsubscribe\";s:1:\"0\";s:25:\"beesocial_options_general\";s:1:\"1\";s:29:\"beesocial_options_fb_comments\";s:1:\"1\";s:25:\"beesocial_options_twitter\";s:1:\"1\";s:14:\"payment_ccsave\";s:1:\"0\";s:15:\"payment_checkmo\";s:1:\"0\";s:12:\"payment_free\";s:1:\"0\";s:21:\"payment_purchaseorder\";s:1:\"0\";s:31:\"payment_authorizenet_directpost\";s:1:\"0\";s:20:\"payment_authorizenet\";s:1:\"0\";s:10:\"rss_config\";s:1:\"1\";s:12:\"rss_wishlist\";s:1:\"1\";s:11:\"rss_catalog\";s:1:\"1\";s:9:\"rss_order\";s:1:\"1\";s:17:\"sales_email_order\";s:1:\"1\";s:25:\"sales_email_order_comment\";s:1:\"0\";s:19:\"sales_email_invoice\";s:1:\"1\";s:27:\"sales_email_invoice_comment\";s:1:\"0\";s:20:\"sales_email_shipment\";s:1:\"0\";s:28:\"sales_email_shipment_comment\";s:1:\"0\";s:22:\"sales_email_creditmemo\";s:1:\"0\";s:30:\"sales_email_creditmemo_comment\";s:1:\"0\";s:14:\"engage_options\";s:1:\"1\";s:18:\"engage_accountdata\";s:1:\"1\";s:11:\"engage_info\";s:1:\"0\";s:19:\"fblikebox_fblikebox\";s:1:\"1\";s:13:\"fblikebox_ids\";s:1:\"0\";s:17:\"fblikebox_options\";s:1:\"0\";s:14:\"fblikebox_size\";s:1:\"0\";s:15:\"fblikebox_style\";s:1:\"0\";s:16:\"checkout_curebit\";s:1:\"0\";s:16:\"catalog_frontend\";s:1:\"1\";s:15:\"catalog_sitemap\";s:1:\"0\";s:14:\"catalog_review\";s:1:\"0\";s:20:\"catalog_productalert\";s:1:\"0\";s:25:\"catalog_productalert_cron\";s:1:\"0\";s:19:\"catalog_placeholder\";s:1:\"0\";s:25:\"catalog_recently_products\";s:1:\"0\";s:13:\"catalog_price\";s:1:\"0\";s:26:\"catalog_layered_navigation\";s:1:\"0\";s:18:\"catalog_navigation\";s:1:\"0\";s:11:\"catalog_seo\";s:1:\"0\";s:14:\"catalog_search\";s:1:\"0\";s:20:\"catalog_downloadable\";s:1:\"0\";s:22:\"catalog_custom_options\";s:1:\"0\";}}'),(4,'Tasha','Bell','tasha@scoreboardsports.net','Tasha','82c1d6c6f349b480db1c0d4321af414b:1S','2010-12-18 01:03:19','2011-10-22 21:15:33',NULL,0,0,0,'a:1:{s:11:\"configState\";a:83:{s:17:\"carriers_flatrate\";s:1:\"1\";s:18:\"carriers_tablerate\";s:1:\"0\";s:21:\"carriers_freeshipping\";s:1:\"1\";s:12:\"carriers_ups\";s:1:\"0\";s:13:\"carriers_usps\";s:1:\"0\";s:14:\"carriers_fedex\";s:1:\"1\";s:12:\"carriers_dhl\";s:1:\"0\";s:16:\"checkout_options\";s:1:\"0\";s:13:\"checkout_cart\";s:1:\"0\";s:18:\"checkout_cart_link\";s:1:\"0\";s:16:\"checkout_sidebar\";s:1:\"0\";s:23:\"checkout_payment_failed\";s:1:\"1\";s:14:\"design_package\";s:1:\"1\";s:12:\"design_theme\";s:1:\"1\";s:11:\"design_head\";s:1:\"1\";s:13:\"design_header\";s:1:\"1\";s:13:\"design_footer\";s:1:\"1\";s:16:\"design_watermark\";s:1:\"1\";s:17:\"design_pagination\";s:1:\"0\";s:22:\"customer_account_share\";s:1:\"1\";s:25:\"customer_online_customers\";s:1:\"1\";s:23:\"customer_create_account\";s:1:\"1\";s:17:\"customer_password\";s:1:\"1\";s:16:\"customer_address\";s:1:\"1\";s:16:\"customer_startup\";s:1:\"1\";s:26:\"customer_address_templates\";s:1:\"0\";s:15:\"general_country\";s:1:\"1\";s:14:\"general_locale\";s:1:\"1\";s:25:\"general_store_information\";s:1:\"0\";s:25:\"trans_email_ident_general\";s:1:\"1\";s:23:\"trans_email_ident_sales\";s:1:\"0\";s:25:\"trans_email_ident_support\";s:1:\"1\";s:25:\"trans_email_ident_custom1\";s:1:\"0\";s:25:\"trans_email_ident_custom2\";s:1:\"0\";s:17:\"contacts_contacts\";s:1:\"1\";s:14:\"contacts_email\";s:1:\"1\";s:17:\"mailchimp_general\";s:1:\"1\";s:19:\"mailchimp_subscribe\";s:1:\"1\";s:21:\"mailchimp_unsubscribe\";s:1:\"0\";s:25:\"beesocial_options_general\";s:1:\"1\";s:29:\"beesocial_options_fb_comments\";s:1:\"1\";s:25:\"beesocial_options_twitter\";s:1:\"1\";s:14:\"payment_ccsave\";s:1:\"0\";s:15:\"payment_checkmo\";s:1:\"0\";s:12:\"payment_free\";s:1:\"0\";s:21:\"payment_purchaseorder\";s:1:\"0\";s:31:\"payment_authorizenet_directpost\";s:1:\"0\";s:20:\"payment_authorizenet\";s:1:\"0\";s:10:\"rss_config\";s:1:\"1\";s:12:\"rss_wishlist\";s:1:\"1\";s:11:\"rss_catalog\";s:1:\"1\";s:9:\"rss_order\";s:1:\"1\";s:17:\"sales_email_order\";s:1:\"1\";s:25:\"sales_email_order_comment\";s:1:\"0\";s:19:\"sales_email_invoice\";s:1:\"1\";s:27:\"sales_email_invoice_comment\";s:1:\"0\";s:20:\"sales_email_shipment\";s:1:\"0\";s:28:\"sales_email_shipment_comment\";s:1:\"0\";s:22:\"sales_email_creditmemo\";s:1:\"0\";s:30:\"sales_email_creditmemo_comment\";s:1:\"0\";s:14:\"engage_options\";s:1:\"1\";s:18:\"engage_accountdata\";s:1:\"1\";s:11:\"engage_info\";s:1:\"0\";s:19:\"fblikebox_fblikebox\";s:1:\"1\";s:13:\"fblikebox_ids\";s:1:\"0\";s:17:\"fblikebox_options\";s:1:\"0\";s:14:\"fblikebox_size\";s:1:\"0\";s:15:\"fblikebox_style\";s:1:\"0\";s:16:\"checkout_curebit\";s:1:\"0\";s:16:\"catalog_frontend\";s:1:\"1\";s:15:\"catalog_sitemap\";s:1:\"0\";s:14:\"catalog_review\";s:1:\"0\";s:20:\"catalog_productalert\";s:1:\"0\";s:25:\"catalog_productalert_cron\";s:1:\"0\";s:19:\"catalog_placeholder\";s:1:\"0\";s:25:\"catalog_recently_products\";s:1:\"0\";s:13:\"catalog_price\";s:1:\"0\";s:26:\"catalog_layered_navigation\";s:1:\"0\";s:18:\"catalog_navigation\";s:1:\"0\";s:11:\"catalog_seo\";s:1:\"0\";s:14:\"catalog_search\";s:1:\"0\";s:20:\"catalog_downloadable\";s:1:\"0\";s:22:\"catalog_custom_options\";s:1:\"0\";}}'),(8,'Ryan','Lassetter','ryanlassetter@tomorrowsharvest.com','ryanl','8b6db6feed503806f5eaee6e5d5d9e6a:RT','2011-10-24 20:13:27','2011-11-28 19:35:56','2011-12-13 00:08:46',37,0,1,'a:1:{s:11:\"configState\";a:83:{s:17:\"carriers_flatrate\";s:1:\"1\";s:18:\"carriers_tablerate\";s:1:\"0\";s:21:\"carriers_freeshipping\";s:1:\"1\";s:12:\"carriers_ups\";s:1:\"0\";s:13:\"carriers_usps\";s:1:\"0\";s:14:\"carriers_fedex\";s:1:\"1\";s:12:\"carriers_dhl\";s:1:\"0\";s:16:\"checkout_options\";s:1:\"0\";s:13:\"checkout_cart\";s:1:\"0\";s:18:\"checkout_cart_link\";s:1:\"0\";s:16:\"checkout_sidebar\";s:1:\"0\";s:23:\"checkout_payment_failed\";s:1:\"1\";s:14:\"design_package\";s:1:\"1\";s:12:\"design_theme\";s:1:\"1\";s:11:\"design_head\";s:1:\"1\";s:13:\"design_header\";s:1:\"1\";s:13:\"design_footer\";s:1:\"1\";s:16:\"design_watermark\";s:1:\"1\";s:17:\"design_pagination\";s:1:\"0\";s:22:\"customer_account_share\";s:1:\"1\";s:25:\"customer_online_customers\";s:1:\"1\";s:23:\"customer_create_account\";s:1:\"1\";s:17:\"customer_password\";s:1:\"1\";s:16:\"customer_address\";s:1:\"1\";s:16:\"customer_startup\";s:1:\"1\";s:26:\"customer_address_templates\";s:1:\"0\";s:15:\"general_country\";s:1:\"1\";s:14:\"general_locale\";s:1:\"1\";s:25:\"general_store_information\";s:1:\"0\";s:25:\"trans_email_ident_general\";s:1:\"1\";s:23:\"trans_email_ident_sales\";s:1:\"0\";s:25:\"trans_email_ident_support\";s:1:\"1\";s:25:\"trans_email_ident_custom1\";s:1:\"0\";s:25:\"trans_email_ident_custom2\";s:1:\"0\";s:17:\"contacts_contacts\";s:1:\"1\";s:14:\"contacts_email\";s:1:\"1\";s:17:\"mailchimp_general\";s:1:\"1\";s:19:\"mailchimp_subscribe\";s:1:\"1\";s:21:\"mailchimp_unsubscribe\";s:1:\"0\";s:25:\"beesocial_options_general\";s:1:\"1\";s:29:\"beesocial_options_fb_comments\";s:1:\"1\";s:25:\"beesocial_options_twitter\";s:1:\"1\";s:14:\"payment_ccsave\";s:1:\"0\";s:15:\"payment_checkmo\";s:1:\"0\";s:12:\"payment_free\";s:1:\"0\";s:21:\"payment_purchaseorder\";s:1:\"0\";s:31:\"payment_authorizenet_directpost\";s:1:\"0\";s:20:\"payment_authorizenet\";s:1:\"0\";s:10:\"rss_config\";s:1:\"1\";s:12:\"rss_wishlist\";s:1:\"1\";s:11:\"rss_catalog\";s:1:\"1\";s:9:\"rss_order\";s:1:\"1\";s:17:\"sales_email_order\";s:1:\"1\";s:25:\"sales_email_order_comment\";s:1:\"0\";s:19:\"sales_email_invoice\";s:1:\"1\";s:27:\"sales_email_invoice_comment\";s:1:\"0\";s:20:\"sales_email_shipment\";s:1:\"0\";s:28:\"sales_email_shipment_comment\";s:1:\"0\";s:22:\"sales_email_creditmemo\";s:1:\"0\";s:30:\"sales_email_creditmemo_comment\";s:1:\"0\";s:14:\"engage_options\";s:1:\"1\";s:18:\"engage_accountdata\";s:1:\"1\";s:11:\"engage_info\";s:1:\"0\";s:19:\"fblikebox_fblikebox\";s:1:\"1\";s:13:\"fblikebox_ids\";s:1:\"0\";s:17:\"fblikebox_options\";s:1:\"0\";s:14:\"fblikebox_size\";s:1:\"0\";s:15:\"fblikebox_style\";s:1:\"0\";s:16:\"checkout_curebit\";s:1:\"0\";s:16:\"catalog_frontend\";s:1:\"1\";s:15:\"catalog_sitemap\";s:1:\"0\";s:14:\"catalog_review\";s:1:\"0\";s:20:\"catalog_productalert\";s:1:\"0\";s:25:\"catalog_productalert_cron\";s:1:\"0\";s:19:\"catalog_placeholder\";s:1:\"0\";s:25:\"catalog_recently_products\";s:1:\"0\";s:13:\"catalog_price\";s:1:\"0\";s:26:\"catalog_layered_navigation\";s:1:\"0\";s:18:\"catalog_navigation\";s:1:\"0\";s:11:\"catalog_seo\";s:1:\"0\";s:14:\"catalog_search\";s:1:\"0\";s:20:\"catalog_downloadable\";s:1:\"0\";s:22:\"catalog_custom_options\";s:1:\"0\";}}'),(9,'Mike','Porenta','mike@tomorrowsharvest.com','mike','0a2a0f864314a93e688532a9cd01a274:Fv','2011-11-12 12:44:44','2011-11-12 12:45:32','2011-12-13 17:07:27',125,0,1,'a:1:{s:11:\"configState\";a:83:{s:17:\"carriers_flatrate\";s:1:\"1\";s:18:\"carriers_tablerate\";s:1:\"0\";s:21:\"carriers_freeshipping\";s:1:\"1\";s:12:\"carriers_ups\";s:1:\"0\";s:13:\"carriers_usps\";s:1:\"0\";s:14:\"carriers_fedex\";s:1:\"1\";s:12:\"carriers_dhl\";s:1:\"0\";s:16:\"checkout_options\";s:1:\"0\";s:13:\"checkout_cart\";s:1:\"0\";s:18:\"checkout_cart_link\";s:1:\"0\";s:16:\"checkout_sidebar\";s:1:\"0\";s:23:\"checkout_payment_failed\";s:1:\"1\";s:14:\"design_package\";s:1:\"1\";s:12:\"design_theme\";s:1:\"1\";s:11:\"design_head\";s:1:\"1\";s:13:\"design_header\";s:1:\"1\";s:13:\"design_footer\";s:1:\"1\";s:16:\"design_watermark\";s:1:\"1\";s:17:\"design_pagination\";s:1:\"0\";s:22:\"customer_account_share\";s:1:\"1\";s:25:\"customer_online_customers\";s:1:\"1\";s:23:\"customer_create_account\";s:1:\"1\";s:17:\"customer_password\";s:1:\"1\";s:16:\"customer_address\";s:1:\"1\";s:16:\"customer_startup\";s:1:\"1\";s:26:\"customer_address_templates\";s:1:\"0\";s:15:\"general_country\";s:1:\"1\";s:14:\"general_locale\";s:1:\"1\";s:25:\"general_store_information\";s:1:\"0\";s:25:\"trans_email_ident_general\";s:1:\"1\";s:23:\"trans_email_ident_sales\";s:1:\"0\";s:25:\"trans_email_ident_support\";s:1:\"1\";s:25:\"trans_email_ident_custom1\";s:1:\"0\";s:25:\"trans_email_ident_custom2\";s:1:\"0\";s:17:\"contacts_contacts\";s:1:\"1\";s:14:\"contacts_email\";s:1:\"1\";s:17:\"mailchimp_general\";s:1:\"1\";s:19:\"mailchimp_subscribe\";s:1:\"1\";s:21:\"mailchimp_unsubscribe\";s:1:\"0\";s:25:\"beesocial_options_general\";s:1:\"1\";s:29:\"beesocial_options_fb_comments\";s:1:\"1\";s:25:\"beesocial_options_twitter\";s:1:\"1\";s:14:\"payment_ccsave\";s:1:\"0\";s:15:\"payment_checkmo\";s:1:\"0\";s:12:\"payment_free\";s:1:\"0\";s:21:\"payment_purchaseorder\";s:1:\"0\";s:31:\"payment_authorizenet_directpost\";s:1:\"0\";s:20:\"payment_authorizenet\";s:1:\"0\";s:10:\"rss_config\";s:1:\"1\";s:12:\"rss_wishlist\";s:1:\"1\";s:11:\"rss_catalog\";s:1:\"1\";s:9:\"rss_order\";s:1:\"1\";s:17:\"sales_email_order\";s:1:\"1\";s:25:\"sales_email_order_comment\";s:1:\"0\";s:19:\"sales_email_invoice\";s:1:\"1\";s:27:\"sales_email_invoice_comment\";s:1:\"0\";s:20:\"sales_email_shipment\";s:1:\"0\";s:28:\"sales_email_shipment_comment\";s:1:\"0\";s:22:\"sales_email_creditmemo\";s:1:\"0\";s:30:\"sales_email_creditmemo_comment\";s:1:\"0\";s:14:\"engage_options\";s:1:\"1\";s:18:\"engage_accountdata\";s:1:\"1\";s:11:\"engage_info\";s:1:\"0\";s:19:\"fblikebox_fblikebox\";s:1:\"1\";s:13:\"fblikebox_ids\";s:1:\"0\";s:17:\"fblikebox_options\";s:1:\"0\";s:14:\"fblikebox_size\";s:1:\"0\";s:15:\"fblikebox_style\";s:1:\"0\";s:16:\"checkout_curebit\";s:1:\"0\";s:16:\"catalog_frontend\";s:1:\"1\";s:15:\"catalog_sitemap\";s:1:\"0\";s:14:\"catalog_review\";s:1:\"0\";s:20:\"catalog_productalert\";s:1:\"0\";s:25:\"catalog_productalert_cron\";s:1:\"0\";s:19:\"catalog_placeholder\";s:1:\"0\";s:25:\"catalog_recently_products\";s:1:\"0\";s:13:\"catalog_price\";s:1:\"0\";s:26:\"catalog_layered_navigation\";s:1:\"0\";s:18:\"catalog_navigation\";s:1:\"0\";s:11:\"catalog_seo\";s:1:\"0\";s:14:\"catalog_search\";s:1:\"0\";s:20:\"catalog_downloadable\";s:1:\"0\";s:22:\"catalog_custom_options\";s:1:\"0\";}}'),(10,'Mason','Stenquist','mason.sten@gmail.com','Mason','8f6c7a2837ced733b7ae3b0f8edd7c90:9z','2011-11-16 17:20:52','2011-11-16 17:20:52','2011-11-16 22:45:13',1,0,1,'a:1:{s:11:\"configState\";a:83:{s:17:\"carriers_flatrate\";s:1:\"1\";s:18:\"carriers_tablerate\";s:1:\"0\";s:21:\"carriers_freeshipping\";s:1:\"1\";s:12:\"carriers_ups\";s:1:\"0\";s:13:\"carriers_usps\";s:1:\"0\";s:14:\"carriers_fedex\";s:1:\"1\";s:12:\"carriers_dhl\";s:1:\"0\";s:16:\"checkout_options\";s:1:\"0\";s:13:\"checkout_cart\";s:1:\"0\";s:18:\"checkout_cart_link\";s:1:\"0\";s:16:\"checkout_sidebar\";s:1:\"0\";s:23:\"checkout_payment_failed\";s:1:\"1\";s:14:\"design_package\";s:1:\"1\";s:12:\"design_theme\";s:1:\"1\";s:11:\"design_head\";s:1:\"1\";s:13:\"design_header\";s:1:\"1\";s:13:\"design_footer\";s:1:\"1\";s:16:\"design_watermark\";s:1:\"1\";s:17:\"design_pagination\";s:1:\"0\";s:22:\"customer_account_share\";s:1:\"1\";s:25:\"customer_online_customers\";s:1:\"1\";s:23:\"customer_create_account\";s:1:\"1\";s:17:\"customer_password\";s:1:\"1\";s:16:\"customer_address\";s:1:\"1\";s:16:\"customer_startup\";s:1:\"1\";s:26:\"customer_address_templates\";s:1:\"0\";s:15:\"general_country\";s:1:\"1\";s:14:\"general_locale\";s:1:\"1\";s:25:\"general_store_information\";s:1:\"0\";s:25:\"trans_email_ident_general\";s:1:\"1\";s:23:\"trans_email_ident_sales\";s:1:\"0\";s:25:\"trans_email_ident_support\";s:1:\"1\";s:25:\"trans_email_ident_custom1\";s:1:\"0\";s:25:\"trans_email_ident_custom2\";s:1:\"0\";s:17:\"contacts_contacts\";s:1:\"1\";s:14:\"contacts_email\";s:1:\"1\";s:17:\"mailchimp_general\";s:1:\"1\";s:19:\"mailchimp_subscribe\";s:1:\"1\";s:21:\"mailchimp_unsubscribe\";s:1:\"0\";s:25:\"beesocial_options_general\";s:1:\"1\";s:29:\"beesocial_options_fb_comments\";s:1:\"1\";s:25:\"beesocial_options_twitter\";s:1:\"1\";s:14:\"payment_ccsave\";s:1:\"0\";s:15:\"payment_checkmo\";s:1:\"0\";s:12:\"payment_free\";s:1:\"0\";s:21:\"payment_purchaseorder\";s:1:\"0\";s:31:\"payment_authorizenet_directpost\";s:1:\"0\";s:20:\"payment_authorizenet\";s:1:\"0\";s:10:\"rss_config\";s:1:\"1\";s:12:\"rss_wishlist\";s:1:\"1\";s:11:\"rss_catalog\";s:1:\"1\";s:9:\"rss_order\";s:1:\"1\";s:17:\"sales_email_order\";s:1:\"1\";s:25:\"sales_email_order_comment\";s:1:\"0\";s:19:\"sales_email_invoice\";s:1:\"1\";s:27:\"sales_email_invoice_comment\";s:1:\"0\";s:20:\"sales_email_shipment\";s:1:\"0\";s:28:\"sales_email_shipment_comment\";s:1:\"0\";s:22:\"sales_email_creditmemo\";s:1:\"0\";s:30:\"sales_email_creditmemo_comment\";s:1:\"0\";s:14:\"engage_options\";s:1:\"1\";s:18:\"engage_accountdata\";s:1:\"1\";s:11:\"engage_info\";s:1:\"0\";s:19:\"fblikebox_fblikebox\";s:1:\"1\";s:13:\"fblikebox_ids\";s:1:\"0\";s:17:\"fblikebox_options\";s:1:\"0\";s:14:\"fblikebox_size\";s:1:\"0\";s:15:\"fblikebox_style\";s:1:\"0\";s:16:\"checkout_curebit\";s:1:\"0\";s:16:\"catalog_frontend\";s:1:\"1\";s:15:\"catalog_sitemap\";s:1:\"0\";s:14:\"catalog_review\";s:1:\"0\";s:20:\"catalog_productalert\";s:1:\"0\";s:25:\"catalog_productalert_cron\";s:1:\"0\";s:19:\"catalog_placeholder\";s:1:\"0\";s:25:\"catalog_recently_products\";s:1:\"0\";s:13:\"catalog_price\";s:1:\"0\";s:26:\"catalog_layered_navigation\";s:1:\"0\";s:18:\"catalog_navigation\";s:1:\"0\";s:11:\"catalog_seo\";s:1:\"0\";s:14:\"catalog_search\";s:1:\"0\";s:20:\"catalog_downloadable\";s:1:\"0\";s:22:\"catalog_custom_options\";s:1:\"0\";}}'),(11,'Stan','McCormick','teylorjayd@gmail.com','Stan','74a6bb0deb707375c319c8155d0e0ea0:Hi','2011-11-18 22:53:32','2011-12-13 05:32:11','2011-12-13 05:32:30',25,0,1,'a:1:{s:11:\"configState\";a:83:{s:17:\"carriers_flatrate\";s:1:\"1\";s:18:\"carriers_tablerate\";s:1:\"0\";s:21:\"carriers_freeshipping\";s:1:\"1\";s:12:\"carriers_ups\";s:1:\"0\";s:13:\"carriers_usps\";s:1:\"0\";s:14:\"carriers_fedex\";s:1:\"1\";s:12:\"carriers_dhl\";s:1:\"0\";s:16:\"checkout_options\";s:1:\"0\";s:13:\"checkout_cart\";s:1:\"0\";s:18:\"checkout_cart_link\";s:1:\"0\";s:16:\"checkout_sidebar\";s:1:\"0\";s:23:\"checkout_payment_failed\";s:1:\"1\";s:14:\"design_package\";s:1:\"1\";s:12:\"design_theme\";s:1:\"1\";s:11:\"design_head\";s:1:\"1\";s:13:\"design_header\";s:1:\"1\";s:13:\"design_footer\";s:1:\"1\";s:16:\"design_watermark\";s:1:\"1\";s:17:\"design_pagination\";s:1:\"0\";s:22:\"customer_account_share\";s:1:\"1\";s:25:\"customer_online_customers\";s:1:\"1\";s:23:\"customer_create_account\";s:1:\"1\";s:17:\"customer_password\";s:1:\"1\";s:16:\"customer_address\";s:1:\"1\";s:16:\"customer_startup\";s:1:\"1\";s:26:\"customer_address_templates\";s:1:\"0\";s:15:\"general_country\";s:1:\"1\";s:14:\"general_locale\";s:1:\"1\";s:25:\"general_store_information\";s:1:\"0\";s:25:\"trans_email_ident_general\";s:1:\"1\";s:23:\"trans_email_ident_sales\";s:1:\"0\";s:25:\"trans_email_ident_support\";s:1:\"1\";s:25:\"trans_email_ident_custom1\";s:1:\"0\";s:25:\"trans_email_ident_custom2\";s:1:\"0\";s:17:\"contacts_contacts\";s:1:\"1\";s:14:\"contacts_email\";s:1:\"1\";s:17:\"mailchimp_general\";s:1:\"1\";s:19:\"mailchimp_subscribe\";s:1:\"1\";s:21:\"mailchimp_unsubscribe\";s:1:\"0\";s:25:\"beesocial_options_general\";s:1:\"1\";s:29:\"beesocial_options_fb_comments\";s:1:\"1\";s:25:\"beesocial_options_twitter\";s:1:\"1\";s:14:\"payment_ccsave\";s:1:\"0\";s:15:\"payment_checkmo\";s:1:\"0\";s:12:\"payment_free\";s:1:\"0\";s:21:\"payment_purchaseorder\";s:1:\"0\";s:31:\"payment_authorizenet_directpost\";s:1:\"0\";s:20:\"payment_authorizenet\";s:1:\"0\";s:10:\"rss_config\";s:1:\"1\";s:12:\"rss_wishlist\";s:1:\"1\";s:11:\"rss_catalog\";s:1:\"1\";s:9:\"rss_order\";s:1:\"1\";s:17:\"sales_email_order\";s:1:\"1\";s:25:\"sales_email_order_comment\";s:1:\"0\";s:19:\"sales_email_invoice\";s:1:\"1\";s:27:\"sales_email_invoice_comment\";s:1:\"0\";s:20:\"sales_email_shipment\";s:1:\"0\";s:28:\"sales_email_shipment_comment\";s:1:\"0\";s:22:\"sales_email_creditmemo\";s:1:\"0\";s:30:\"sales_email_creditmemo_comment\";s:1:\"0\";s:14:\"engage_options\";s:1:\"1\";s:18:\"engage_accountdata\";s:1:\"1\";s:11:\"engage_info\";s:1:\"0\";s:19:\"fblikebox_fblikebox\";s:1:\"1\";s:13:\"fblikebox_ids\";s:1:\"0\";s:17:\"fblikebox_options\";s:1:\"0\";s:14:\"fblikebox_size\";s:1:\"0\";s:15:\"fblikebox_style\";s:1:\"0\";s:16:\"checkout_curebit\";s:1:\"0\";s:16:\"catalog_frontend\";s:1:\"1\";s:15:\"catalog_sitemap\";s:1:\"0\";s:14:\"catalog_review\";s:1:\"0\";s:20:\"catalog_productalert\";s:1:\"0\";s:25:\"catalog_productalert_cron\";s:1:\"0\";s:19:\"catalog_placeholder\";s:1:\"0\";s:25:\"catalog_recently_products\";s:1:\"0\";s:13:\"catalog_price\";s:1:\"0\";s:26:\"catalog_layered_navigation\";s:1:\"0\";s:18:\"catalog_navigation\";s:1:\"0\";s:11:\"catalog_seo\";s:1:\"0\";s:14:\"catalog_search\";s:1:\"0\";s:20:\"catalog_downloadable\";s:1:\"0\";s:22:\"catalog_custom_options\";s:1:\"0\";}}'); /*!40000 ALTER TABLE `admin_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `adminnotification_inbox` -- DROP TABLE IF EXISTS `adminnotification_inbox`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `adminnotification_inbox` ( `notification_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `severity` tinyint(3) unsigned NOT NULL DEFAULT '0', `date_added` datetime NOT NULL, `title` varchar(255) NOT NULL, `description` text, `url` varchar(255) NOT NULL, `is_read` tinyint(1) unsigned NOT NULL DEFAULT '0', `is_remove` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`notification_id`), KEY `IDX_SEVERITY` (`severity`), KEY `IDX_IS_READ` (`is_read`), KEY `IDX_IS_REMOVE` (`is_remove`) ) ENGINE=InnoDB AUTO_INCREMENT=65 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `adminnotification_inbox` -- LOCK TABLES `adminnotification_inbox` WRITE; /*!40000 ALTER TABLE `adminnotification_inbox` DISABLE KEYS */; INSERT INTO `adminnotification_inbox` VALUES (1,4,'2008-07-25 01:24:40','Magento 1.1 Production Version Now Available','We are thrilled to announce the availability of the production release of Magento 1.1. Read more about the release in the Magento Blog.','http://www.magentocommerce.com/blog/comments/magento-11-is-here-1/',0,1),(2,4,'2008-08-02 01:30:16','Updated iPhone Theme is now available','Updated iPhone theme for Magento 1.1 is now available on Magento Connect and for upgrade through your Magento Connect Manager.','http://www.magentocommerce.com/blog/comments/updated-iphone-theme-for-magento-11-is-now-available/',0,1),(3,3,'2008-08-02 01:40:27','Magento version 1.1.2 is now available','Magento version 1.1.2 is now available for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-version-112-is-now-available/',0,1),(4,3,'2008-08-13 17:51:46','Magento version 1.1.3 is now available','Magento version 1.1.3 is now available','http://www.magentocommerce.com/blog/comments/magento-version-113-is-now-available/',0,1),(5,1,'2008-09-02 21:10:31','Magento Version 1.1.4 Security Update Now Available','Magento 1.1.4 Security Update Now Available. If you are using Magento version 1.1.x, we highly recommend upgrading to this version as soon as possible.','http://www.magentocommerce.com/blog/comments/magento-version-114-security-update/',0,1),(6,3,'2008-09-15 22:09:54','Magento version 1.1.5 Now Available','Magento version 1.1.5 Now Available.\n\nThis release includes many bug fixes, a new category manager and a new skin for the default Magento theme.','http://www.magentocommerce.com/blog/comments/magento-version-115-now-available/',0,1),(7,3,'2008-09-17 20:18:35','Magento version 1.1.6 Now Available','Magento version 1.1.6 Now Available.\n\nThis version includes bug fixes for Magento 1.1.x that are listed in the release notes section.','http://www.magentocommerce.com/blog/comments/magento-version-116-now-available/',0,1),(8,4,'2008-11-07 23:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.','',0,1),(9,3,'2008-11-20 01:31:12','Magento version 1.1.7 Now Available','Magento version 1.1.7 Now Available.\n\nThis version includes over 350 issue resolutions for Magento 1.1.x that are listed in the release notes section, and new functionality that includes:\n\n-Google Website Optimizer integration\n-Google Base integration\n-Scheduled DB logs cleaning option','http://www.magentocommerce.com/blog/comments/magento-version-117-now-available/',0,1),(10,3,'2008-11-26 21:24:50','Magento Version 1.1.8 Now Available','Magento version 1.1.8 now available.\n\nThis version includes some issue resolutions for Magento 1.1.x that are listed in the release notes section.','http://www.magentocommerce.com/blog/comments/magento-version-118-now-available/',0,1),(11,3,'2008-12-30 07:45:59','Magento version 1.2.0 is now available for download and upgrade','We are extremely happy to announce the availability of Magento version 1.2.0 for download and upgrade.\n\nThis version includes numerous issue resolutions for Magento version 1.1.x and some highly requested new features such as:\n\n * Support for Downloadable/Digital Products. \n * Added Layered Navigation to site search result page.\n * Improved site search to utilize MySQL fulltext search\n * Added support for fixed-taxes on product level.\n * Upgraded Zend Framework to the latest stable version 1.7.2','http://www.magentocommerce.com/blog/comments/magento-version-120-is-now-available/',0,1),(12,2,'2008-12-30 21:59:22','Magento version 1.2.0.1 now available','Magento version 1.2.0.1 now available.This version includes some issue resolutions for Magento 1.2.x that are listed in the release notes section.','http://www.magentocommerce.com/blog/comments/magento-version-1201-available/',0,1),(13,2,'2009-01-12 20:41:49','Magento version 1.2.0.2 now available','Magento version 1.2.0.2 is now available for download and upgrade. This version includes an issue resolutions for Magento version 1.2.0.x as listed in the release notes.','http://www.magentocommerce.com/blog/comments/magento-version-1202-now-available/',0,1),(14,3,'2009-01-24 00:25:56','Magento version 1.2.0.3 now available','Magento version 1.2.0.3 is now available for download and upgrade. This version includes issue resolutions for Magento version 1.2.0.x as listed in the release notes.','http://www.magentocommerce.com/blog/comments/magento-version-1203-now-available/',0,1),(15,3,'2009-02-02 21:57:00','Magento version 1.2.1 is now available for download and upgrade','We are happy to announce the availability of Magento version 1.2.1 for download and upgrade.\n\nThis version includes some issue resolutions for Magento version 1.2.x. A full list of items included in this release can be found on the release notes page.','http://www.magentocommerce.com/blog/comments/magento-version-121-now-available/',0,1),(16,3,'2009-02-24 00:45:47','Magento version 1.2.1.1 now available','Magento version 1.2.1.1 now available.This version includes some issue resolutions for Magento 1.2.x that are listed in the release notes section.','http://www.magentocommerce.com/blog/comments/magento-version-1211-now-available/',0,1),(17,3,'2009-02-27 01:39:24','CSRF Attack Prevention','We have just posted a blog entry about a hypothetical CSRF attack on a Magento admin panel. Please read the post to find out if your Magento installation is at risk at http://www.magentocommerce.com/blog/comments/csrf-vulnerabilities-in-web-application-and-how-to-avoid-them-in-magento/','http://www.magentocommerce.com/blog/comments/csrf-vulnerabilities-in-web-application-and-how-to-avoid-them-in-magento/',0,1),(18,2,'2009-03-03 23:03:58','Magento version 1.2.1.2 now available','Magento version 1.2.1.2 is now available for download and upgrade.\nThis version includes some updates to improve admin security as described in the release notes page.','http://www.magentocommerce.com/blog/comments/magento-version-1212-now-available/',0,1),(19,3,'2009-03-31 02:22:40','Magento version 1.3.0 now available','Magento version 1.3.0 is now available for download and upgrade. This version includes numerous issue resolutions for Magento version 1.2.x and new features as described on the release notes page.','http://www.magentocommerce.com/blog/comments/magento-version-130-is-now-available/',0,1),(20,3,'2009-04-18 04:06:02','Magento version 1.3.1 now available','Magento version 1.3.1 is now available for download and upgrade. This version includes some issue resolutions for Magento version 1.3.x and new features such as Checkout By Amazon and Amazon Flexible Payment. To see a full list of updates please check the release notes page.','http://www.magentocommerce.com/blog/comments/magento-version-131-now-available/',0,1),(21,3,'2009-05-19 22:31:21','Magento version 1.3.1.1 now available','Magento version 1.3.1.1 is now available for download and upgrade. This version includes some issue resolutions for Magento version 1.3.x and a security update for Magento installations that run on multiple domains or sub-domains. If you are running Magento with multiple domains or sub-domains we highly recommend upgrading to this version.','http://www.magentocommerce.com/blog/comments/magento-version-1311-now-available/',0,1),(22,3,'2009-05-29 22:54:06','Magento version 1.3.2 now available','This version includes some improvements and issue resolutions for version 1.3.x that are listed on the release notes page. also included is a Beta version of the Compile module.','http://www.magentocommerce.com/blog/comments/magento-version-132-now-available/',0,1),(23,3,'2009-06-01 19:32:52','Magento version 1.3.2.1 now available','Magento version 1.3.2.1 now available for download and upgrade.\n\nThis release solves an issue for users running Magento with PHP 5.2.0, and changes to index.php to support the new Compiler Module.','http://www.magentocommerce.com/blog/comments/magento-version-1321-now-available/',0,1),(24,3,'2009-07-02 01:21:44','Magento version 1.3.2.2 now available','Magento version 1.3.2.2 is now available for download and upgrade.\n\nThis release includes issue resolution for Magento version 1.3.x. To see a full list of changes please visit the release notes page http://www.magentocommerce.com/download/release_notes.','http://www.magentocommerce.com/blog/comments/magento-version-1322-now-available/',0,1),(25,3,'2009-07-23 06:48:54','Magento version 1.3.2.3 now available','Magento version 1.3.2.3 is now available for download and upgrade.\n\nThis release includes issue resolution for Magento version 1.3.x. We recommend to upgrade to this version if PayPal payment modules are in use. To see a full list of changes please visit the release notes page http://www.magentocommerce.com/download/release_notes.','http://www.magentocommerce.com/blog/comments/magento-version-1323-now-available/',0,1),(26,4,'2009-08-28 18:26:28','PayPal is updating Payflow Pro and Website Payments Pro (Payflow Edition) UK.','If you are using Payflow Pro and/or Website Payments Pro (Payflow Edition) UK. payment methods, you will need to update the URL‘s in your Magento Administrator Panel in order to process transactions after September 1, 2009. Full details are available here: http://www.magentocommerce.com/wiki/paypal_payflow_changes','http://www.magentocommerce.com/wiki/paypal_payflow_changes',0,1),(27,2,'2009-09-23 20:16:49','Magento Version 1.3.2.4 Security Update','Magento Version 1.3.2.4 is now available. This version includes a security updates for Magento 1.3.x that solves possible XSS vulnerability issue on customer registration page and is available through SVN, Download Page and through the Magento Connect Manager.','http://www.magentocommerce.com/blog/comments/magento-version-1324-security-update/',0,1),(28,4,'2009-09-25 14:57:54','Magento Preview Version 1.4.0.0-alpha2 is now available','We are happy to announce the availability of Magento Preview Version 1.4.0.0-alpha2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1400-alpha2-now-available/',0,1),(29,4,'2009-10-07 00:55:40','Magento Preview Version 1.4.0.0-alpha3 is now available','We are happy to announce the availability of Magento Preview Version 1.4.0.0-alpha3 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1400-alpha3-now-available/',0,1),(30,4,'2009-12-08 23:30:36','Magento Preview Version 1.4.0.0-beta1 is now available','We are happy to announce the availability of Magento Preview Version 1.4.0.0-beta1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1400-beta1-now-available/',0,1),(31,4,'2009-12-31 09:22:12','Magento Preview Version 1.4.0.0-rc1 is now available','We are happy to announce the availability of Magento Preview Version 1.4.0.0-rc1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1400-rc1-now-available/',0,1),(32,4,'2010-02-13 03:39:53','Magento CE Version 1.4.0.0 Stable is now available','We are excited to announce the availability of Magento CE Version 1.4.0.0 Stable for upgrade and download.','http://bit.ly/c53rpK',0,1),(33,3,'2010-02-20 02:39:36','Magento CE Version 1.4.0.1 Stable is now available','Magento CE 1.4.0.1 Stable is now available for upgrade and download.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1401-stable-now-available/',0,1),(34,4,'2010-04-23 20:09:03','Magento Version CE 1.3.3.0 Stable - Now Available With Support for 3-D Secure','Based on community requests, we are excited to announce the release of Magento CE 1.3.3.0-Stable with support for 3-D Secure. This release is intended for Magento merchants using version 1.3.x, who want to add support for 3-D Secure.','http://www.magentocommerce.com/blog/comments/magento-version-ce-1330-stable-now-available-with-support-for-3-d-secure/',0,1),(35,4,'2010-05-31 17:20:21','Announcing the Launch of Magento Mobile','The Magento team is pleased to announce the launch of Magento mobile, a new product that will allow Magento merchants to easily create branded, native mobile storefront applications that are deeply integrated with Magento’s market-leading eCommerce platform. The product includes a new administrative manager, a native iPhone app that is fully customizable, and a service where Magento manages the submission and maintenance process for the iTunes App Store.\n\nLearn more by visiting the Magento mobile product page and sign-up to be the first to launch a native mobile commerce app, fully integrated with Magento.','http://www.magentocommerce.com/product/mobile',0,1),(36,4,'2010-06-10 20:08:08','Magento CE Version 1.4.1.0 Stable is now available','We are excited to announce the availability of Magento CE Version 1.4.1.0 Stable for upgrade and download. Some of the highlights of this release include: Enhanced PayPal integration (more info to follow), Change of Database structure of the Sales module to no longer use EAV, and much more.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1410-stable-now-available/',0,1),(37,4,'2010-07-26 21:37:34','Magento CE Version 1.4.1.1 Stable is now available','We are excited to announce the availability of Magento CE Version 1.4.1.1 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1411-stable-now-available/',0,1),(38,4,'2010-07-28 05:12:12','Magento CE Version 1.4.2.0-beta1 Preview Release Now Available','This release gives a preview of the new Magento Connect Manager.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1420-beta1-now-available/',0,1),(39,4,'2010-07-28 20:15:01','Magento CE Version 1.4.1.1 Patch Available','As some users experienced issues with upgrading to CE 1.4.1.1 through PEAR channels we provided a patch for it that is available on our blog http://www.magentocommerce.com/blog/comments/magento-ce-version-1411-stable-patch/','http://www.magentocommerce.com/blog/comments/magento-ce-version-1411-stable-patch/',0,1),(40,4,'2010-11-08 21:52:06','Magento CE Version 1.4.2.0-RC1 Preview Release Now Available','We are happy to announce the availability of Magento Preview Version 1.4.2.0-RC1 for download.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1420-rc1-now-available/',0,1),(41,4,'2010-12-02 20:33:00','Magento CE Version 1.4.2.0-RC2 Preview Release Now Available','We are happy to announce the availability of Magento Preview Version 1.4.2.0-RC2 for download.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1420-rc2-now-available/',0,1),(42,4,'2010-12-08 22:29:55','Magento CE Version 1.4.2.0 Stable is now available','We are excited to announce the availability of Magento CE Version 1.4.2.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1420-stable-now-available/',0,1),(43,4,'2010-12-17 23:23:55','Magento Preview Version CE 1.5.0.0-alpha1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-alpha1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-alpha1-now-available/',0,1),(44,4,'2010-12-29 23:51:08','Magento Preview Version CE 1.5.0.0-alpha2 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-alpha2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-alpha2-now-available/',1,1),(45,4,'2011-01-14 00:35:36','Magento Preview Version CE 1.5.0.0-beta1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-beta1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-beta1-now-available/',0,1),(46,4,'2011-01-21 21:19:09','Magento Preview Version CE 1.5.0.0-beta2 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-beta2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-beta2-now-available/',1,1),(47,4,'2011-01-27 21:27:57','Magento Preview Version CE 1.5.0.0-rc1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-rc1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-rc1-now-available/',1,1),(48,4,'2011-02-08 19:43:23','Magento CE Version 1.5.0.0 Stable is now available','We are excited to announce the availability of Magento CE Version 1.5.0.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-community-professional-and-enterprise-editions-releases-now-availab/',1,1),(49,4,'2011-02-09 23:42:57','Magento CE 1.5.0.1 stable Now Available','We are excited to announce the availability of Magento CE Version 1.5.0.1 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-1501-stable-now-available/',1,1),(50,4,'2011-02-03 21:56:33','Magento Preview Version CE 1.5.0.0-rc2 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-rc2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-rc2-now-available/',1,1),(51,4,'2011-03-18 20:15:45','Magento CE 1.5.1.0-beta1 Now Available','We are happy to announce the availability of Magento Preview Version CE 1.5.1.0-beta1 for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1510-beta1-now-available/',1,1),(52,4,'2011-03-31 18:43:02','Magento CE 1.5.1.0-rc1 Now Available','We are happy to announce the availability of Magento Preview Version CE 1.5.1.0-rc1 for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1510-rc1-now-available/',1,1),(53,4,'2011-04-26 19:21:07','Magento CE 1.5.1.0-stable Now Available','We are excited to announce the availability of Magento CE Version 1.5.1.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1510-stable-now-available/',1,1),(54,4,'2010-10-12 04:13:25','Magento Mobile is now live!','Magento Mobile is now live! Signup today to have your own native iPhone mobile-shopping app in iTunes for the holiday season! Learn more at http://www.magentomobile.com/','http://www.magentomobile.com/',1,1),(55,4,'2011-01-25 03:10:33','Join us for Magento\'s Imagine eCommerce Conference!','Magento\'s Imagine eCommerce Conference is a must-attend event for anyone who uses the Magento platform or is part of the Magento ecosystem. The conference will bring together over 500 retailers, merchants, developers, partners, eCommerce experts, technologists and marketing pros for a fun and intensive conversation about the future of eCommerce.\n\nThe conference is in Los Angeles and kicks off early Monday evening February 7th through Wednesday, February 9th, 2011.\n\nRegister at http://www.magento.com/imagine. First 20 registrants use discount code IMAGINE3X76 for $300 off. *This discount is sponsored by PayPal and is only valid for new registrations.\n\nHope to see you there!\n\nMagento Team','http://www.magento.com/imagine',1,1),(56,4,'2011-05-26 23:33:23','Magento Preview Version CE 1.6.0.0-alpha1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.0.0-alpha1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1600-alpha1-now-available/',1,1),(57,4,'2011-06-15 22:12:08','Magento Preview Version CE 1.6.0.0-beta1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.0.0-beta1for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1600-beta1-now-available/',1,1),(58,4,'2011-06-30 23:03:58','Magento Preview Version CE 1.6.0.0-rc1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.0.0-rc1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1600-rc1-now-available/',1,1),(59,4,'2011-07-11 23:07:39','Magento Preview Version CE 1.6.0.0-rc2 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.0.0-rc2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1600-rc2-now-available/',1,1),(60,4,'2011-08-19 21:58:31','Magento CE 1.6.0.0-stable Now Available','We are excited to announce the availability of Magento CE Version 1.6.0.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1600-stable-now-available/',1,1),(61,4,'2011-09-17 05:31:26','Magento Preview Version CE 1.6.1.0-alpha1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.1.0-alpha1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1610-alpha1-now-available/',1,1),(62,4,'2011-09-17 05:31:26','Magento Preview Version CE 1.6.1.0-beta1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.1.0-beta1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1610-beta1-now-available/',1,1),(63,4,'2011-09-29 19:44:10','Magento Preview Version CE 1.6.1.0-rc1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.1.0-rc1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1610-rc1-now-available/',0,1),(64,4,'2011-10-19 21:50:05','Magento CE 1.6.1.0-stable Now Available','We are excited to announce the availability of Magento CE Version 1.6.1.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1610-stable-now-available/',0,1); /*!40000 ALTER TABLE `adminnotification_inbox` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api_assert` -- DROP TABLE IF EXISTS `api_assert`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `api_assert` ( `assert_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `assert_type` varchar(20) NOT NULL DEFAULT '', `assert_data` text, PRIMARY KEY (`assert_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Asserts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `api_assert` -- LOCK TABLES `api_assert` WRITE; /*!40000 ALTER TABLE `api_assert` DISABLE KEYS */; /*!40000 ALTER TABLE `api_assert` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api_role` -- DROP TABLE IF EXISTS `api_role`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `api_role` ( `role_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(10) unsigned NOT NULL DEFAULT '0', `tree_level` tinyint(3) unsigned NOT NULL DEFAULT '0', `sort_order` tinyint(3) unsigned NOT NULL DEFAULT '0', `role_type` char(1) NOT NULL DEFAULT '0', `user_id` int(11) unsigned NOT NULL DEFAULT '0', `role_name` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`role_id`), KEY `parent_id` (`parent_id`,`sort_order`), KEY `tree_level` (`tree_level`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Api ACL Roles'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `api_role` -- LOCK TABLES `api_role` WRITE; /*!40000 ALTER TABLE `api_role` DISABLE KEYS */; INSERT INTO `api_role` VALUES (1,0,1,0,'G',0,'Bee Facebook Store'),(2,1,1,0,'U',1,'Mike'); /*!40000 ALTER TABLE `api_role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api_rule` -- DROP TABLE IF EXISTS `api_rule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `api_rule` ( `rule_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `role_id` int(10) unsigned NOT NULL DEFAULT '0', `resource_id` varchar(255) NOT NULL DEFAULT '', `privileges` varchar(20) NOT NULL DEFAULT '', `assert_id` int(10) unsigned NOT NULL DEFAULT '0', `role_type` char(1) DEFAULT NULL, `permission` varchar(10) DEFAULT NULL, PRIMARY KEY (`rule_id`), KEY `resource` (`resource_id`,`role_id`), KEY `role_id` (`role_id`,`resource_id`), CONSTRAINT `FK_api_rule` FOREIGN KEY (`role_id`) REFERENCES `api_role` (`role_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8 COMMENT='Api ACL Rules'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `api_rule` -- LOCK TABLES `api_rule` WRITE; /*!40000 ALTER TABLE `api_rule` DISABLE KEYS */; INSERT INTO `api_rule` VALUES (1,1,'directory','',0,'G','allow'),(2,1,'directory/country','',0,'G','allow'),(3,1,'directory/region','',0,'G','allow'),(4,1,'customer','',0,'G','allow'),(5,1,'customer/create','',0,'G','allow'),(6,1,'customer/update','',0,'G','allow'),(7,1,'customer/delete','',0,'G','allow'),(8,1,'customer/info','',0,'G','allow'),(9,1,'customer/address','',0,'G','allow'),(10,1,'customer/address/create','',0,'G','allow'),(11,1,'customer/address/update','',0,'G','allow'),(12,1,'customer/address/delete','',0,'G','allow'),(13,1,'customer/address/info','',0,'G','allow'),(14,1,'catalog','',0,'G','allow'),(15,1,'catalog/category','',0,'G','allow'),(16,1,'catalog/category/create','',0,'G','allow'),(17,1,'catalog/category/update','',0,'G','allow'),(18,1,'catalog/category/move','',0,'G','allow'),(19,1,'catalog/category/delete','',0,'G','allow'),(20,1,'catalog/category/tree','',0,'G','allow'),(21,1,'catalog/category/info','',0,'G','allow'),(22,1,'catalog/category/product','',0,'G','allow'),(23,1,'catalog/category/product/assign','',0,'G','allow'),(24,1,'catalog/category/product/update','',0,'G','allow'),(25,1,'catalog/category/product/remove','',0,'G','allow'),(26,1,'catalog/product','',0,'G','allow'),(27,1,'catalog/product/create','',0,'G','allow'),(28,1,'catalog/product/update','',0,'G','allow'),(29,1,'catalog/product/delete','',0,'G','allow'),(30,1,'catalog/product/update_tier_price','',0,'G','allow'),(31,1,'catalog/product/info','',0,'G','allow'),(32,1,'catalog/product/attribute','',0,'G','allow'),(33,1,'catalog/product/attribute/read','',0,'G','allow'),(34,1,'catalog/product/attribute/write','',0,'G','allow'),(35,1,'catalog/product/link','',0,'G','allow'),(36,1,'catalog/product/link/assign','',0,'G','allow'),(37,1,'catalog/product/link/update','',0,'G','allow'),(38,1,'catalog/product/link/remove','',0,'G','allow'),(39,1,'catalog/product/media','',0,'G','allow'),(40,1,'catalog/product/media/create','',0,'G','allow'),(41,1,'catalog/product/media/update','',0,'G','allow'),(42,1,'catalog/product/media/remove','',0,'G','allow'),(43,1,'sales','',0,'G','allow'),(44,1,'sales/order','',0,'G','allow'),(45,1,'sales/order/change','',0,'G','allow'),(46,1,'sales/order/info','',0,'G','allow'),(47,1,'sales/order/shipment','',0,'G','allow'),(48,1,'sales/order/shipment/create','',0,'G','allow'),(49,1,'sales/order/shipment/comment','',0,'G','allow'),(50,1,'sales/order/shipment/track','',0,'G','allow'),(51,1,'sales/order/shipment/info','',0,'G','allow'),(52,1,'sales/order/invoice','',0,'G','allow'),(53,1,'sales/order/invoice/create','',0,'G','allow'),(54,1,'sales/order/invoice/comment','',0,'G','allow'),(55,1,'sales/order/invoice/capture','',0,'G','allow'),(56,1,'sales/order/invoice/void','',0,'G','allow'),(57,1,'sales/order/invoice/cancel','',0,'G','allow'),(58,1,'sales/order/invoice/info','',0,'G','allow'),(59,1,'cataloginventory','',0,'G','allow'),(60,1,'cataloginventory/update','',0,'G','allow'),(61,1,'cataloginventory/info','',0,'G','allow'),(62,1,'all','',0,'G','deny'); /*!40000 ALTER TABLE `api_rule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api_session` -- DROP TABLE IF EXISTS `api_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `api_session` ( `user_id` mediumint(9) unsigned NOT NULL, `logdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `sessid` varchar(40) NOT NULL DEFAULT '', KEY `API_SESSION_USER` (`user_id`), KEY `API_SESSION_SESSID` (`sessid`), CONSTRAINT `FK_API_SESSION_USER` FOREIGN KEY (`user_id`) REFERENCES `api_user` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api Sessions'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `api_session` -- LOCK TABLES `api_session` WRITE; /*!40000 ALTER TABLE `api_session` DISABLE KEYS */; INSERT INTO `api_session` VALUES (1,'2011-12-13 06:11:44','d31f225a710772e9ffddb9ff06cf1704'),(1,'2011-12-13 06:11:50','d3fa91ca41be34c0819b52b08cec24f0'),(1,'2011-12-13 06:11:51','ca1f94fadde645e5cc5e91bc2f260bd4'),(1,'2011-12-13 06:18:32','b03680d0021046b96ae631909d9db674'),(1,'2011-12-13 06:18:32','d3a1882ddbe54892ba6727d484a60ab1'),(1,'2011-12-13 06:18:38','91afaec3440a5a79e05d728fe62c4529'),(1,'2011-12-13 06:18:36','927646e7f5e15ede30d6e302f91ece15'); /*!40000 ALTER TABLE `api_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api_user` -- DROP TABLE IF EXISTS `api_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `api_user` ( `user_id` mediumint(9) unsigned NOT NULL AUTO_INCREMENT, `firstname` varchar(32) NOT NULL DEFAULT '', `lastname` varchar(32) NOT NULL DEFAULT '', `email` varchar(128) NOT NULL DEFAULT '', `username` varchar(40) NOT NULL DEFAULT '', `api_key` varchar(40) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `modified` datetime DEFAULT NULL, `lognum` smallint(5) unsigned NOT NULL DEFAULT '0', `reload_acl_flag` tinyint(1) NOT NULL DEFAULT '0', `is_active` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Api Users'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `api_user` -- LOCK TABLES `api_user` WRITE; /*!40000 ALTER TABLE `api_user` DISABLE KEYS */; INSERT INTO `api_user` VALUES (1,'Mike','Porenta','mike.porenta@gmail.com','mporenta','5da513beb312448b5e9c1f961ba6ac1c:WS','2011-11-22 04:27:31','2011-11-22 04:27:31',460,0,1); /*!40000 ALTER TABLE `api_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_anc_categs_index_idx` -- DROP TABLE IF EXISTS `catalog_category_anc_categs_index_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_anc_categs_index_idx` ( `category_id` int(10) unsigned NOT NULL DEFAULT '0', `path` varchar(255) NOT NULL DEFAULT '', KEY `IDX_CATEGORY` (`category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_anc_categs_index_idx` -- LOCK TABLES `catalog_category_anc_categs_index_idx` WRITE; /*!40000 ALTER TABLE `catalog_category_anc_categs_index_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_anc_categs_index_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_anc_categs_index_tmp` -- DROP TABLE IF EXISTS `catalog_category_anc_categs_index_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_anc_categs_index_tmp` ( `category_id` int(10) unsigned NOT NULL DEFAULT '0', `path` varchar(255) NOT NULL DEFAULT '', KEY `IDX_CATEGORY` (`category_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_anc_categs_index_tmp` -- LOCK TABLES `catalog_category_anc_categs_index_tmp` WRITE; /*!40000 ALTER TABLE `catalog_category_anc_categs_index_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_anc_categs_index_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_anc_products_index_idx` -- DROP TABLE IF EXISTS `catalog_category_anc_products_index_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_anc_products_index_idx` ( `category_id` int(10) unsigned NOT NULL DEFAULT '0', `product_id` int(10) unsigned NOT NULL DEFAULT '0', `position` int(10) unsigned DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_anc_products_index_idx` -- LOCK TABLES `catalog_category_anc_products_index_idx` WRITE; /*!40000 ALTER TABLE `catalog_category_anc_products_index_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_anc_products_index_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_anc_products_index_tmp` -- DROP TABLE IF EXISTS `catalog_category_anc_products_index_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_anc_products_index_tmp` ( `category_id` int(10) unsigned NOT NULL DEFAULT '0', `product_id` int(10) unsigned NOT NULL DEFAULT '0' ) ENGINE=MEMORY DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_anc_products_index_tmp` -- LOCK TABLES `catalog_category_anc_products_index_tmp` WRITE; /*!40000 ALTER TABLE `catalog_category_anc_products_index_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_anc_products_index_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity` -- DROP TABLE IF EXISTS `catalog_category_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_entity` ( `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entity_type_id` smallint(8) unsigned NOT NULL DEFAULT '0', `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT '0', `parent_id` int(10) unsigned NOT NULL DEFAULT '0', `created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `path` varchar(255) NOT NULL, `position` int(11) NOT NULL, `level` int(11) NOT NULL, `children_count` int(11) NOT NULL, PRIMARY KEY (`entity_id`), KEY `IDX_LEVEL` (`level`) ) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8 COMMENT='Category Entities'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_entity` -- LOCK TABLES `catalog_category_entity` WRITE; /*!40000 ALTER TABLE `catalog_category_entity` DISABLE KEYS */; INSERT INTO `catalog_category_entity` VALUES (1,3,0,0,'0000-00-00 00:00:00','2010-12-13 22:31:44','1',0,0,62),(2,3,3,1,'2010-12-13 22:31:44','2011-11-29 01:30:43','1/2',1,1,59),(3,3,3,39,'2010-12-23 17:05:28','2011-11-11 18:18:41','1/2/39/3',2,3,25),(4,3,3,3,'2010-12-23 17:07:35','2011-09-19 22:15:11','1/2/39/3/4',1,4,0),(5,3,3,3,'2010-12-23 17:13:57','2011-11-07 17:57:55','1/2/39/3/5',8,4,0),(6,3,3,3,'2010-12-23 17:14:30','2011-09-22 01:26:51','1/2/39/3/6',4,4,0),(7,3,3,3,'2010-12-23 17:14:52','2011-09-19 23:03:15','1/2/39/3/7',5,4,0),(8,3,3,3,'2010-12-23 17:15:13','2011-10-05 17:52:37','1/2/39/3/8',3,4,0),(9,3,3,3,'2010-12-23 17:15:34','2011-09-19 22:15:26','1/2/39/3/9',10,4,0),(11,3,3,3,'2010-12-23 17:17:34','2011-09-19 22:16:05','1/2/39/3/11',11,4,0),(12,3,3,3,'2010-12-23 17:17:55','2011-09-19 22:17:47','1/2/39/3/12',12,4,5),(13,3,3,12,'2010-12-23 17:27:20','2010-12-23 17:27:20','1/2/39/3/12/13',1,5,0),(14,3,3,12,'2010-12-23 17:27:47','2010-12-23 17:27:47','1/2/39/3/12/14',2,5,0),(15,3,3,12,'2010-12-23 17:28:17','2010-12-23 17:28:17','1/2/39/3/12/15',3,5,0),(16,3,3,12,'2010-12-23 17:29:19','2010-12-23 17:30:48','1/2/39/3/12/16',4,5,0),(17,3,3,12,'2010-12-23 17:30:09','2010-12-23 17:30:09','1/2/39/3/12/17',5,5,0),(26,3,3,3,'2011-01-06 03:26:03','2011-09-19 22:16:36','1/2/39/3/26',13,4,0),(28,3,3,3,'2011-01-06 03:27:58','2011-09-19 22:19:31','1/2/39/3/28',14,4,0),(30,3,3,3,'2011-01-09 01:46:07','2011-09-19 22:19:46','1/2/39/3/30',15,4,0),(31,3,3,3,'2011-01-24 17:54:03','2011-09-19 22:20:05','1/2/39/3/31',16,4,0),(32,3,3,3,'2011-01-24 17:55:03','2011-09-19 22:20:23','1/2/39/3/32',17,4,0),(33,3,3,3,'2011-01-24 17:55:39','2011-09-19 22:20:37','1/2/39/3/33',18,4,0),(34,3,3,3,'2011-01-24 17:56:05','2011-09-19 22:21:04','1/2/39/3/34',19,4,0),(35,3,3,3,'2011-01-24 17:56:45','2011-09-19 22:21:16','1/2/39/3/35',20,4,0),(36,3,3,3,'2011-09-19 22:54:20','2011-09-24 21:27:18','1/2/39/3/36',2,4,0),(37,3,3,3,'2011-09-23 23:46:34','2011-09-23 23:47:01','1/2/39/3/37',9,4,0),(38,3,3,3,'2011-09-29 21:22:30','2011-11-09 00:18:18','1/2/39/3/38',7,4,0),(39,3,3,2,'2011-09-30 16:41:37','2011-11-08 23:09:17','1/2/39',2,2,44),(40,3,3,39,'2011-09-30 17:16:34','2011-11-11 18:20:58','1/2/39/40',3,3,1),(41,3,3,39,'2011-09-30 17:50:41','2011-10-05 19:10:03','1/2/39/41',11,3,3),(42,3,3,40,'2011-09-30 17:55:53','2011-09-30 18:47:23','1/2/39/40/42',1,4,0),(44,3,3,1,'2011-10-01 18:45:21','2011-10-03 19:24:42','1/44',3,1,0),(49,3,3,0,'2011-10-03 19:26:32','2011-10-03 19:26:32','1/2/39//49',13,4,0),(50,3,3,39,'2011-10-05 17:47:24','2011-10-06 16:47:19','1/2/39/50',8,3,0),(51,3,3,39,'2011-10-05 17:51:18','2011-10-06 16:48:17','1/2/39/51',9,3,0),(52,3,3,2,'2011-10-05 20:35:02','2011-11-22 04:37:40','1/2/52',12,2,0),(53,3,3,3,'2011-10-06 16:49:13','2011-10-06 16:49:13','1/2/39/3/53',6,4,0),(55,3,3,2,'2011-10-27 02:29:55','2011-11-15 19:21:06','1/2/55',4,2,2),(59,3,3,2,'2011-11-04 03:49:58','2011-11-05 19:41:45','1/2/59',10,2,0),(61,3,3,2,'2011-11-04 04:03:25','2011-11-09 00:17:27','1/2/61',9,2,5),(65,3,3,61,'2011-11-06 02:06:39','2011-11-07 17:17:22','1/2/61/65',3,3,0),(66,3,3,61,'2011-11-06 02:12:59','2011-11-09 00:24:53','1/2/61/66',4,3,0),(70,3,3,2,'2011-11-06 22:42:28','2011-11-21 22:36:36','1/2/70',11,2,2),(72,3,3,70,'2011-11-08 03:58:57','2011-11-08 04:10:33','1/2/70/72',1,3,0),(73,3,3,70,'2011-11-08 04:01:11','2011-11-08 04:18:40','1/2/70/73',2,3,0),(75,3,3,39,'2011-11-08 23:45:00','2011-11-11 16:56:25','1/2/39/75',10,3,4),(76,3,3,41,'2011-11-08 23:50:58','2011-11-08 23:50:58','1/2/39/41/76',1,4,0),(77,3,3,41,'2011-11-08 23:53:46','2011-11-08 23:53:46','1/2/39/41/77',2,4,0),(78,3,3,41,'2011-11-08 23:56:31','2011-11-08 23:56:31','1/2/39/41/78',3,4,0),(79,3,3,55,'2011-11-08 23:59:25','2011-11-08 23:59:25','1/2/55/79',1,3,0),(80,3,3,55,'2011-11-09 00:01:50','2011-11-15 00:32:00','1/2/55/80',2,3,0),(81,3,3,61,'2011-11-09 04:33:23','2011-11-09 04:33:37','1/2/61/81',2,3,0),(82,3,3,75,'2011-11-10 10:03:23','2011-11-10 10:03:23','1/2/39/75/82',1,4,0),(83,3,3,1,'2011-11-10 22:05:49','2011-11-10 22:05:49','1/83',4,1,0),(84,3,3,75,'2011-11-11 08:07:37','2011-11-11 08:46:43','1/2/39/75/84',2,4,0),(85,3,3,75,'2011-11-11 08:22:55','2011-11-11 16:58:22','1/2/39/75/85',3,4,0),(86,3,3,75,'2011-11-11 08:39:04','2011-11-11 08:44:13','1/2/39/75/86',4,4,0),(87,3,3,39,'2011-11-12 22:44:23','2011-11-12 22:44:23','1/2/39/87',12,3,0),(88,3,3,39,'2011-11-17 22:59:29','2011-11-17 22:59:29','1/2/39/88',13,3,0),(89,3,3,61,'2011-11-21 22:30:44','2011-11-21 22:32:36','1/2/61/89',5,3,0),(90,3,3,61,'2011-12-01 23:47:07','2011-12-01 23:53:35','1/2/61/90',1,3,0); /*!40000 ALTER TABLE `catalog_category_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_datetime` -- DROP TABLE IF EXISTS `catalog_category_entity_datetime`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_entity_datetime` ( `value_id` int(11) NOT NULL AUTO_INCREMENT, `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0', `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `entity_id` int(10) unsigned NOT NULL DEFAULT '0', `value` datetime DEFAULT NULL, PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `FK_ATTRIBUTE_DATETIME_ENTITY` (`entity_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_DATETIME_STORE` (`store_id`), CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DATETIME_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=191 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_entity_datetime` -- LOCK TABLES `catalog_category_entity_datetime` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_datetime` DISABLE KEYS */; INSERT INTO `catalog_category_entity_datetime` VALUES (1,3,52,0,3,NULL),(2,3,53,0,3,NULL),(3,3,52,0,4,NULL),(4,3,53,0,4,NULL),(5,3,52,0,5,NULL),(6,3,53,0,5,NULL),(7,3,52,0,6,NULL),(8,3,53,0,6,NULL),(9,3,52,0,7,NULL),(10,3,53,0,7,NULL),(11,3,52,0,8,NULL),(12,3,53,0,8,NULL),(13,3,52,0,9,NULL),(14,3,53,0,9,NULL),(17,3,52,0,11,NULL),(18,3,53,0,11,NULL),(19,3,52,0,12,NULL),(20,3,53,0,12,NULL),(21,3,52,0,13,NULL),(22,3,53,0,13,NULL),(23,3,52,0,14,NULL),(24,3,53,0,14,NULL),(25,3,52,0,15,NULL),(26,3,53,0,15,NULL),(27,3,52,0,16,NULL),(28,3,53,0,16,NULL),(29,3,52,0,17,NULL),(30,3,53,0,17,NULL),(35,3,52,0,2,NULL),(36,3,53,0,2,NULL),(49,3,52,0,26,NULL),(50,3,53,0,26,NULL),(53,3,52,0,28,NULL),(54,3,53,0,28,NULL),(57,3,52,0,30,NULL),(58,3,53,0,30,NULL),(59,3,52,0,31,NULL),(60,3,53,0,31,NULL),(61,3,52,0,32,NULL),(62,3,53,0,32,NULL),(63,3,52,0,33,NULL),(64,3,53,0,33,NULL),(65,3,52,0,34,NULL),(66,3,53,0,34,NULL),(67,3,52,0,35,NULL),(68,3,53,0,35,NULL),(69,3,52,0,36,NULL),(70,3,53,0,36,NULL),(71,3,52,0,37,NULL),(72,3,53,0,37,NULL),(73,3,52,0,38,NULL),(74,3,53,0,38,NULL),(75,3,52,0,39,NULL),(76,3,53,0,39,NULL),(77,3,52,0,40,NULL),(78,3,53,0,40,NULL),(79,3,52,0,41,NULL),(80,3,53,0,41,NULL),(81,3,52,0,42,NULL),(82,3,53,0,42,NULL),(85,3,52,0,44,NULL),(86,3,53,0,44,NULL),(95,3,52,0,50,NULL),(96,3,53,0,50,NULL),(97,3,52,0,51,NULL),(98,3,53,0,51,NULL),(99,3,52,0,52,NULL),(100,3,53,0,52,NULL),(101,3,52,0,53,NULL),(102,3,53,0,53,NULL),(105,3,52,0,55,NULL),(106,3,53,0,55,NULL),(113,3,52,1,59,NULL),(114,3,53,1,59,NULL),(117,3,52,1,61,NULL),(118,3,53,1,61,NULL),(119,3,52,0,59,NULL),(120,3,53,0,59,NULL),(129,3,52,1,65,NULL),(130,3,53,1,65,NULL),(131,3,52,1,66,NULL),(132,3,53,1,66,NULL),(139,3,52,1,70,NULL),(140,3,53,1,70,NULL),(143,3,52,0,70,NULL),(144,3,53,0,70,NULL),(147,3,52,1,72,NULL),(148,3,53,1,72,NULL),(149,3,52,1,73,NULL),(150,3,53,1,73,NULL),(153,3,52,0,75,NULL),(154,3,53,0,75,NULL),(155,3,52,0,76,NULL),(156,3,53,0,76,NULL),(157,3,52,0,77,NULL),(158,3,53,0,77,NULL),(159,3,52,0,78,NULL),(160,3,53,0,78,NULL),(161,3,52,0,79,NULL),(162,3,53,0,79,NULL),(163,3,52,0,80,NULL),(164,3,53,0,80,NULL),(165,3,52,0,61,NULL),(166,3,53,0,61,NULL),(167,3,52,0,66,NULL),(168,3,53,0,66,NULL),(169,3,52,0,81,NULL),(170,3,53,0,81,NULL),(171,3,52,0,82,NULL),(172,3,53,0,82,NULL),(173,3,52,0,83,NULL),(174,3,53,0,83,NULL),(175,3,52,1,84,NULL),(176,3,53,1,84,NULL),(177,3,52,1,85,NULL),(178,3,53,1,85,NULL),(179,3,52,1,86,NULL),(180,3,53,1,86,NULL),(181,3,52,0,85,NULL),(182,3,53,0,85,NULL),(183,3,52,0,87,NULL),(184,3,53,0,87,NULL),(185,3,52,0,88,NULL),(186,3,53,0,88,NULL),(187,3,52,0,89,NULL),(188,3,53,0,89,NULL),(189,3,52,0,90,NULL),(190,3,53,0,90,NULL); /*!40000 ALTER TABLE `catalog_category_entity_datetime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_decimal` -- DROP TABLE IF EXISTS `catalog_category_entity_decimal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_entity_decimal` ( `value_id` int(11) NOT NULL AUTO_INCREMENT, `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0', `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `entity_id` int(10) unsigned NOT NULL DEFAULT '0', `value` decimal(12,4) DEFAULT NULL, PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `FK_ATTRIBUTE_DECIMAL_ENTITY` (`entity_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_STORE` (`store_id`), CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_entity_decimal` -- LOCK TABLES `catalog_category_entity_decimal` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_decimal` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_entity_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_int` -- DROP TABLE IF EXISTS `catalog_category_entity_int`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_entity_int` ( `value_id` int(11) NOT NULL AUTO_INCREMENT, `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0', `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `entity_id` int(10) unsigned NOT NULL DEFAULT '0', `value` int(11) DEFAULT NULL, PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `FK_ATTRIBUTE_INT_ENTITY` (`entity_id`), KEY `FK_CATALOG_CATEGORY_EMTITY_INT_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_CATEGORY_EMTITY_INT_STORE` (`store_id`), CONSTRAINT `FK_CATALOG_CATEGORY_EMTITY_INT_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_EMTITY_INT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_EMTITY_INT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=843 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_entity_int` -- LOCK TABLES `catalog_category_entity_int` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_int` DISABLE KEYS */; INSERT INTO `catalog_category_entity_int` VALUES (1,3,34,0,2,1),(2,3,34,1,2,1),(3,3,105,0,1,1),(4,3,105,0,2,1),(5,3,34,0,3,1),(6,3,105,0,3,1),(7,3,42,0,3,NULL),(8,3,43,0,3,0),(9,3,106,0,3,0),(10,3,107,0,3,0),(11,3,108,0,3,NULL),(12,3,34,0,4,0),(13,3,105,0,4,0),(14,3,42,0,4,NULL),(15,3,43,0,4,0),(16,3,106,0,4,0),(17,3,107,0,4,0),(18,3,108,0,4,NULL),(19,3,34,0,5,1),(20,3,105,0,5,1),(21,3,42,0,5,NULL),(22,3,43,0,5,0),(23,3,106,0,5,0),(24,3,107,0,5,0),(25,3,108,0,5,NULL),(26,3,34,0,6,1),(27,3,105,0,6,1),(28,3,42,0,6,NULL),(29,3,43,0,6,0),(30,3,106,0,6,0),(31,3,107,0,6,0),(32,3,108,0,6,NULL),(33,3,34,0,7,1),(34,3,105,0,7,1),(35,3,42,0,7,NULL),(36,3,43,0,7,0),(37,3,106,0,7,0),(38,3,107,0,7,0),(39,3,108,0,7,NULL),(40,3,34,0,8,1),(41,3,105,0,8,1),(42,3,42,0,8,NULL),(43,3,43,0,8,0),(44,3,106,0,8,0),(45,3,107,0,8,0),(46,3,108,0,8,NULL),(47,3,34,0,9,0),(48,3,105,0,9,0),(49,3,42,0,9,NULL),(50,3,43,0,9,0),(51,3,106,0,9,0),(52,3,107,0,9,0),(53,3,108,0,9,NULL),(61,3,34,0,11,0),(62,3,105,0,11,0),(63,3,42,0,11,NULL),(64,3,43,0,11,0),(65,3,106,0,11,0),(66,3,107,0,11,0),(67,3,108,0,11,NULL),(68,3,34,0,12,0),(69,3,105,0,12,0),(70,3,42,0,12,NULL),(71,3,43,0,12,0),(72,3,106,0,12,0),(73,3,107,0,12,0),(74,3,108,0,12,NULL),(75,3,34,0,13,1),(76,3,105,0,13,1),(77,3,42,0,13,NULL),(78,3,43,0,13,0),(79,3,106,0,13,0),(80,3,107,0,13,0),(81,3,108,0,13,NULL),(82,3,34,0,14,1),(83,3,105,0,14,1),(84,3,42,0,14,NULL),(85,3,43,0,14,0),(86,3,106,0,14,0),(87,3,107,0,14,0),(88,3,108,0,14,NULL),(89,3,34,0,15,1),(90,3,105,0,15,1),(91,3,42,0,15,NULL),(92,3,43,0,15,0),(93,3,106,0,15,0),(94,3,107,0,15,0),(95,3,108,0,15,NULL),(96,3,34,0,16,1),(97,3,105,0,16,1),(98,3,42,0,16,NULL),(99,3,43,0,16,0),(100,3,106,0,16,0),(101,3,107,0,16,0),(102,3,108,0,16,NULL),(103,3,34,0,17,1),(104,3,105,0,17,1),(105,3,42,0,17,NULL),(106,3,43,0,17,0),(107,3,106,0,17,0),(108,3,107,0,17,0),(109,3,108,0,17,NULL),(124,3,42,0,2,NULL),(125,3,43,0,2,0),(126,3,107,0,2,0),(127,3,108,0,2,NULL),(170,3,34,0,26,0),(171,3,105,0,26,0),(172,3,42,0,26,NULL),(173,3,43,0,26,0),(174,3,106,0,26,0),(175,3,107,0,26,0),(176,3,108,0,26,NULL),(184,3,34,0,28,0),(185,3,105,0,28,0),(186,3,42,0,28,NULL),(187,3,43,0,28,0),(188,3,106,0,28,0),(189,3,107,0,28,0),(190,3,108,0,28,NULL),(198,3,34,0,30,0),(199,3,105,0,30,0),(200,3,42,0,30,NULL),(201,3,43,0,30,0),(202,3,106,0,30,0),(203,3,107,0,30,0),(204,3,108,0,30,NULL),(205,3,34,0,31,0),(206,3,105,0,31,0),(207,3,42,0,31,NULL),(208,3,43,0,31,0),(209,3,106,0,31,0),(210,3,107,0,31,0),(211,3,108,0,31,NULL),(212,3,34,0,32,0),(213,3,105,0,32,0),(214,3,42,0,32,NULL),(215,3,43,0,32,0),(216,3,106,0,32,0),(217,3,107,0,32,0),(218,3,108,0,32,NULL),(219,3,34,0,33,0),(220,3,105,0,33,0),(221,3,42,0,33,NULL),(222,3,43,0,33,0),(223,3,106,0,33,0),(224,3,107,0,33,0),(225,3,108,0,33,NULL),(226,3,34,0,34,0),(227,3,105,0,34,0),(228,3,42,0,34,NULL),(229,3,43,0,34,0),(230,3,106,0,34,0),(231,3,107,0,34,0),(232,3,108,0,34,NULL),(233,3,34,0,35,0),(234,3,105,0,35,1),(235,3,42,0,35,NULL),(236,3,43,0,35,0),(237,3,106,0,35,0),(238,3,107,0,35,0),(239,3,108,0,35,NULL),(283,3,34,0,36,1),(284,3,105,0,36,1),(285,3,42,0,36,NULL),(286,3,43,0,36,0),(287,3,106,0,36,0),(288,3,107,0,36,0),(289,3,108,0,36,NULL),(314,3,34,0,37,1),(315,3,105,0,37,1),(316,3,42,0,37,NULL),(317,3,43,0,37,0),(318,3,106,0,37,0),(319,3,107,0,37,0),(320,3,108,0,37,NULL),(323,3,34,0,38,1),(324,3,105,0,38,1),(325,3,42,0,38,NULL),(326,3,43,0,38,0),(327,3,106,0,38,0),(328,3,107,0,38,0),(329,3,108,0,38,NULL),(330,3,34,0,39,1),(331,3,105,0,39,1),(332,3,42,0,39,NULL),(333,3,43,0,39,0),(334,3,106,0,39,0),(335,3,107,0,39,0),(336,3,108,0,39,NULL),(337,3,34,0,40,0),(338,3,105,0,40,1),(339,3,42,0,40,NULL),(340,3,43,0,40,0),(341,3,106,0,40,0),(342,3,107,0,40,0),(343,3,108,0,40,NULL),(349,3,34,0,41,1),(350,3,105,0,41,1),(351,3,42,0,41,NULL),(352,3,43,0,41,0),(353,3,106,0,41,0),(354,3,107,0,41,0),(355,3,108,0,41,NULL),(356,3,34,0,42,0),(357,3,105,0,42,0),(358,3,42,0,42,NULL),(359,3,43,0,42,0),(360,3,106,0,42,0),(361,3,107,0,42,0),(362,3,108,0,42,NULL),(375,3,34,0,44,1),(376,3,105,0,44,1),(377,3,42,0,44,NULL),(378,3,43,0,44,1),(379,3,106,0,44,0),(380,3,107,0,44,0),(381,3,108,0,44,NULL),(418,3,34,0,49,1),(419,3,105,0,49,1),(423,3,43,0,49,1),(427,3,34,0,50,0),(428,3,105,0,50,0),(429,3,42,0,50,NULL),(430,3,43,0,50,1),(431,3,106,0,50,0),(432,3,107,0,50,0),(433,3,108,0,50,NULL),(435,3,34,0,51,0),(436,3,105,0,51,0),(437,3,42,0,51,NULL),(438,3,43,0,51,1),(439,3,106,0,51,0),(440,3,107,0,51,0),(441,3,108,0,51,NULL),(444,3,34,0,52,1),(445,3,105,0,52,1),(446,3,42,0,52,NULL),(447,3,43,0,52,1),(448,3,106,0,52,0),(449,3,107,0,52,0),(450,3,108,0,52,NULL),(458,3,34,0,53,1),(459,3,105,0,53,1),(460,3,42,0,53,NULL),(461,3,43,0,53,1),(462,3,106,0,53,0),(463,3,107,0,53,0),(464,3,108,0,53,NULL),(472,3,34,0,55,1),(473,3,105,0,55,1),(474,3,42,0,55,NULL),(475,3,43,0,55,1),(476,3,106,0,55,0),(477,3,107,0,55,0),(478,3,108,0,55,NULL),(514,3,34,0,59,1),(515,3,105,0,59,1),(516,3,34,1,59,0),(517,3,105,1,59,1),(519,3,43,0,59,1),(532,3,34,0,61,1),(533,3,105,0,61,1),(535,3,105,1,61,1),(537,3,43,0,61,1),(539,3,42,0,59,NULL),(540,3,106,0,59,0),(541,3,107,0,59,0),(542,3,108,0,59,NULL),(553,3,34,1,61,1),(588,3,34,0,65,1),(589,3,105,0,65,1),(590,3,34,1,65,1),(591,3,105,1,65,1),(593,3,43,0,65,0),(597,3,34,0,66,1),(598,3,105,0,66,1),(599,3,34,1,66,1),(600,3,105,1,66,1),(602,3,43,0,66,1),(634,3,34,0,70,1),(635,3,105,0,70,1),(636,3,34,1,70,1),(637,3,105,1,70,1),(639,3,43,0,70,1),(658,3,42,0,70,NULL),(659,3,106,0,70,0),(660,3,107,0,70,0),(661,3,108,0,70,NULL),(668,3,34,0,72,1),(669,3,105,0,72,1),(670,3,34,1,72,1),(671,3,105,1,72,1),(673,3,43,0,72,0),(677,3,34,0,73,1),(678,3,105,0,73,1),(679,3,34,1,73,1),(680,3,105,1,73,1),(682,3,43,0,73,0),(694,3,34,0,75,1),(695,3,105,0,75,1),(696,3,42,0,75,NULL),(697,3,43,0,75,1),(698,3,106,0,75,0),(699,3,107,0,75,0),(700,3,108,0,75,NULL),(702,3,34,0,76,1),(703,3,105,0,76,1),(704,3,42,0,76,NULL),(705,3,43,0,76,1),(706,3,106,0,76,0),(707,3,107,0,76,0),(708,3,108,0,76,NULL),(709,3,34,0,77,1),(710,3,105,0,77,1),(711,3,42,0,77,NULL),(712,3,43,0,77,1),(713,3,106,0,77,0),(714,3,107,0,77,0),(715,3,108,0,77,NULL),(716,3,34,0,78,1),(717,3,105,0,78,1),(718,3,42,0,78,NULL),(719,3,43,0,78,1),(720,3,106,0,78,0),(721,3,107,0,78,0),(722,3,108,0,78,NULL),(723,3,34,0,79,1),(724,3,105,0,79,1),(725,3,42,0,79,NULL),(726,3,43,0,79,1),(727,3,106,0,79,0),(728,3,107,0,79,0),(729,3,108,0,79,NULL),(730,3,34,0,80,1),(731,3,105,0,80,1),(732,3,42,0,80,NULL),(733,3,43,0,80,1),(734,3,106,0,80,0),(735,3,107,0,80,0),(736,3,108,0,80,NULL),(738,3,42,0,61,NULL),(739,3,106,0,61,0),(740,3,107,0,61,0),(741,3,108,0,61,NULL),(750,3,42,0,66,NULL),(751,3,106,0,66,0),(752,3,107,0,66,0),(753,3,108,0,66,NULL),(756,3,34,0,81,1),(757,3,105,0,81,1),(758,3,42,0,81,NULL),(759,3,43,0,81,0),(760,3,106,0,81,0),(761,3,107,0,81,0),(762,3,108,0,81,NULL),(764,3,34,0,82,1),(765,3,105,0,82,1),(766,3,42,0,82,NULL),(767,3,43,0,82,0),(768,3,106,0,82,0),(769,3,107,0,82,0),(770,3,108,0,82,NULL),(771,3,34,0,83,1),(772,3,105,0,83,1),(773,3,42,0,83,NULL),(774,3,43,0,83,1),(775,3,106,0,83,0),(776,3,107,0,83,0),(777,3,108,0,83,NULL),(778,3,34,0,84,1),(779,3,105,0,84,1),(780,3,34,1,84,1),(781,3,105,1,84,1),(783,3,43,0,84,0),(787,3,34,0,85,1),(788,3,105,0,85,1),(789,3,34,1,85,1),(790,3,105,1,85,1),(791,3,42,1,85,NULL),(792,3,43,0,85,0),(793,3,106,1,85,0),(794,3,107,1,85,0),(795,3,108,1,85,NULL),(796,3,34,0,86,1),(797,3,105,0,86,1),(798,3,34,1,86,1),(799,3,105,1,86,1),(801,3,43,0,86,0),(808,3,42,0,85,NULL),(809,3,106,0,85,0),(810,3,107,0,85,0),(811,3,108,0,85,NULL),(812,3,34,0,87,1),(813,3,105,0,87,1),(814,3,42,0,87,NULL),(815,3,43,0,87,0),(816,3,106,0,87,0),(817,3,107,0,87,0),(818,3,108,0,87,NULL),(820,3,34,0,88,1),(821,3,105,0,88,1),(822,3,42,0,88,NULL),(823,3,43,0,88,0),(824,3,106,0,88,0),(825,3,107,0,88,0),(826,3,108,0,88,NULL),(827,3,34,0,89,1),(828,3,105,0,89,1),(829,3,42,0,89,NULL),(830,3,43,0,89,0),(831,3,106,0,89,0),(832,3,107,0,89,0),(833,3,108,0,89,NULL),(835,3,34,0,90,1),(836,3,105,0,90,1),(837,3,42,0,90,NULL),(838,3,43,0,90,0),(839,3,106,0,90,0),(840,3,107,0,90,0),(841,3,108,0,90,NULL); /*!40000 ALTER TABLE `catalog_category_entity_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_text` -- DROP TABLE IF EXISTS `catalog_category_entity_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_entity_text` ( `value_id` int(11) NOT NULL AUTO_INCREMENT, `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0', `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `entity_id` int(10) unsigned NOT NULL DEFAULT '0', `value` text NOT NULL, PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `FK_ATTRIBUTE_TEXT_ENTITY` (`entity_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_TEXT_STORE` (`store_id`), CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_TEXT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_TEXT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=566 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_entity_text` -- LOCK TABLES `catalog_category_entity_text` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_text` DISABLE KEYS */; INSERT INTO `catalog_category_entity_text` VALUES (1,3,58,0,1,''),(2,3,58,1,1,''),(3,3,58,0,2,''),(4,3,58,1,2,''),(5,3,36,0,3,''),(6,3,39,0,3,''),(7,3,40,0,3,''),(8,3,55,0,3,''),(9,3,58,0,3,''),(10,3,36,0,4,''),(11,3,39,0,4,''),(12,3,40,0,4,''),(13,3,55,0,4,''),(14,3,58,0,4,''),(15,3,36,0,5,''),(16,3,39,0,5,''),(17,3,40,0,5,''),(18,3,55,0,5,''),(19,3,58,0,5,''),(20,3,36,0,6,''),(21,3,39,0,6,''),(22,3,40,0,6,''),(23,3,55,0,6,''),(24,3,58,0,6,''),(25,3,36,0,7,''),(26,3,39,0,7,''),(27,3,40,0,7,''),(28,3,55,0,7,''),(29,3,58,0,7,''),(30,3,36,0,8,''),(31,3,39,0,8,''),(32,3,40,0,8,''),(33,3,55,0,8,''),(34,3,58,0,8,''),(35,3,36,0,9,''),(36,3,39,0,9,''),(37,3,40,0,9,''),(38,3,55,0,9,''),(39,3,58,0,9,''),(45,3,36,0,11,''),(46,3,39,0,11,''),(47,3,40,0,11,''),(48,3,55,0,11,''),(49,3,58,0,11,''),(50,3,36,0,12,''),(51,3,39,0,12,''),(52,3,40,0,12,''),(53,3,55,0,12,''),(54,3,58,0,12,''),(55,3,36,0,13,''),(56,3,39,0,13,''),(57,3,40,0,13,''),(58,3,55,0,13,''),(59,3,58,0,13,''),(60,3,36,0,14,''),(61,3,39,0,14,''),(62,3,40,0,14,''),(63,3,55,0,14,''),(64,3,58,0,14,''),(65,3,36,0,15,''),(66,3,39,0,15,''),(67,3,40,0,15,''),(68,3,55,0,15,''),(69,3,58,0,15,''),(70,3,36,0,16,''),(71,3,39,0,16,''),(72,3,40,0,16,''),(73,3,55,0,16,''),(74,3,58,0,16,''),(75,3,36,0,17,''),(76,3,39,0,17,''),(77,3,40,0,17,''),(78,3,55,0,17,''),(79,3,58,0,17,''),(90,3,36,0,2,'

Being completely prepared requires so much more than just purchasing products.

\r\n

The 3 Pillars of Preparedness are:
1. Education
2. Skills
3. Product
Tomorrow\'s Harvest is first & foremost an educational company, hosting 2 educational radio shows, Tomorrow\'s Harvest Insider Report & Survival Foods, with hundreds of thousands of listeners dedicated to better understanding the proper principles of preparedness as taught by educators and consumer advocates from around the industry.
We are very pleased with the unique partnerships from the authors & advocates, such as Barbara Salsbury & James Stevens, as they constantly serve the Tomorrow\'s Harvest family through teaching the skills necessary for your family\'s benefit.
The products provided by Tomorrow\'s Harvest are from the most trusted & proven manufacturers in freeze dry foods, dehydrated foods, as well as gear & accessories for total preparedness. Mountain House, Alpine Aire, Backpacker\'s Pantry, Wise Foods, Gerber Gear, Katadyn, Wonder-mill & Sun Oven are a few examples of the products Tomorrow\'s Harvest provides. There is no reason, to search endlessly across the internet for the most proven products. Its here at your fingertips, supported by the industry\'s professionals.  
The rest is up to you... enjoy shopping and we are just a phone call away for further support 800.573.3944.

'),(91,3,39,0,2,'freeze, dried, gluten free, food, storage, water, supply, family, emergency essentials, emergency preparedness, specialty, diet, lactose free, vegetarian, real milk, fruit, vegetables, desserts, bread, freeze dried food deals'),(92,3,40,0,2,'Tomorrow\'s Harvest smart food storage- be prepared for emergencies and natural disasters. Just add water. Long shelf life. Long shelf. Emergency preparedness. 72 hour supplies. 3 month food storage. 6 month food supply. 12 month (1year) food supply. 5 gallon mylar water storage bags in in boxes. Gluten free. Lactose free. Vegetarian.'),(93,3,55,0,2,''),(124,3,36,0,26,''),(125,3,39,0,26,''),(126,3,40,0,26,''),(127,3,55,0,26,''),(128,3,58,0,26,''),(134,3,36,0,28,''),(135,3,39,0,28,''),(136,3,40,0,28,''),(137,3,55,0,28,''),(138,3,58,0,28,''),(144,3,36,0,30,''),(145,3,39,0,30,''),(146,3,40,0,30,''),(147,3,55,0,30,''),(148,3,58,0,30,''),(149,3,36,0,31,''),(150,3,39,0,31,''),(151,3,40,0,31,''),(152,3,55,0,31,''),(153,3,58,0,31,''),(154,3,36,0,32,''),(155,3,39,0,32,''),(156,3,40,0,32,''),(157,3,55,0,32,''),(158,3,58,0,32,''),(159,3,36,0,33,''),(160,3,39,0,33,''),(161,3,40,0,33,''),(162,3,55,0,33,''),(163,3,58,0,33,''),(164,3,36,0,34,''),(165,3,39,0,34,''),(166,3,40,0,34,''),(167,3,55,0,34,''),(168,3,58,0,34,''),(169,3,36,0,35,''),(170,3,39,0,35,''),(171,3,40,0,35,''),(172,3,55,0,35,''),(173,3,58,0,35,''),(174,3,36,0,36,''),(175,3,39,0,36,''),(176,3,40,0,36,''),(177,3,55,0,36,''),(178,3,58,0,36,''),(180,3,36,0,37,'This family supply gives your family the nutritional values and the calories that you will need to stay healthy, and active. 2,000 calories per day is created from the most experienced and trusted freeze dried meals, freeze dried fruits, freeze dried desserts, and drinks. The meals are products are picked and plucked directly from farms and sent immediately to our freeze drying facilities. The recipes are from the chefs at Mountain House, Backpacker\'s Pantry, and Alpine Aire. All products are in a #10 can, and have a shelf-life of 25 years. Shipped right to your doorstep'),(181,3,39,0,37,'This family supply gives your family the nutritional values and the calories that you will need to stay healthy, and active. 2,000 calories per day is created from the most experienced and trusted freeze dried meals, freeze dried fruits, freeze dried desserts, and drinks. The meals are products are picked and plucked directly from farms and sent immediately to our freeze drying facilities. The recipes are from the chefs at Mountain House, Backpacker\'s Pantry, and Alpine Aire. All products are in a #10 can, and have a shelf-life of 25 years. Shipped right to your doorstep'),(182,3,40,0,37,'This family supply gives your family the nutritional values and the calories that you will need to stay healthy, and active. 2,000 calories per day is created from the most experienced and trusted freeze dried meals, freeze dried fruits, freeze dried desserts, and drinks. The meals are products are picked and plucked directly from farms and sent immediately to our freeze drying facilities. The recipes are from the chefs at Mountain House, Backpacker\'s Pantry, and Alpine Aire. All products are in a #10 can, and have a shelf-life of 25 years. Shipped right to your doorstep'),(183,3,55,0,37,''),(184,3,58,0,37,''),(187,3,36,0,38,'

                                                                                            TOMORROW\'S HARVEST is a PLATINUM DISTRIBUTOR for WISE COMPANY, which allows you to purchase at WHOLESALE

'),(188,3,39,0,38,'wise food storage, food storage, bucket food storage, freeze dried, dehydrated, dried foods, preparedness, survival, mylar pouches, '),(189,3,40,0,38,'Prepare your pantry\'s with Wise Food Storage. Wise Foods are the perfect product for the perfect storms of life. Use Wise Food Storage to save money, time and space, while achieving your self reliant and preparedness goals.'),(190,3,55,0,38,''),(191,3,58,0,38,''),(192,3,36,0,39,'Freeze dried food from Tomorrow\'s Harvest - Emergency essentials for your daily bread in an emergency.'),(193,3,39,0,39,'food, storage, freeze, dried, emergency, disaster, preparedness, be prepared, water storage'),(194,3,40,0,39,''),(195,3,55,0,39,''),(196,3,58,0,39,''),(197,3,36,0,40,'Specialty Diets in freeze dried food storage from tomorrowsharvest.com'),(198,3,39,0,40,'gluten free, lactose free, vegetarian, food storage, freeze dried'),(199,3,40,0,40,'gluten free, lactose free, vegetarian, food storage, freeze dried'),(200,3,55,0,40,''),(201,3,58,0,40,''),(202,3,36,0,41,'fruits and vegetables freeze dried food storage from tomorrowsharvest.com'),(203,3,39,0,41,'fruits and vegetables freeze dried food storage from tomorrowsharvest.com'),(204,3,40,0,41,'fruits and vegetables freeze dried food storage from tomorrowsharvest.com'),(205,3,55,0,41,''),(206,3,58,0,41,''),(207,3,36,0,42,'desserts freeze dried food storage from tomorrowsharvest.com'),(208,3,39,0,42,'desserts freeze dried food storage from tomorrowsharvest.com'),(209,3,40,0,42,'desserts freeze dried food storage from tomorrowsharvest.com'),(210,3,55,0,42,''),(211,3,58,0,42,''),(217,3,36,0,44,''),(218,3,39,0,44,''),(219,3,40,0,44,''),(220,3,55,0,44,''),(221,3,58,0,44,''),(245,3,58,0,49,''),(251,3,36,0,50,''),(252,3,39,0,50,''),(253,3,40,0,50,''),(254,3,55,0,50,''),(255,3,58,0,50,''),(256,3,36,0,51,''),(257,3,39,0,51,''),(258,3,40,0,51,''),(259,3,55,0,51,''),(260,3,58,0,51,''),(261,3,36,0,52,'Special discounts on freeze dried foods from Tomorrow\'s Harvest food supplies'),(262,3,39,0,52,''),(263,3,40,0,52,''),(264,3,55,0,52,''),(265,3,58,0,52,''),(266,3,36,0,53,''),(267,3,39,0,53,''),(268,3,40,0,53,''),(269,3,55,0,53,''),(270,3,58,0,53,''),(276,3,36,0,55,'All of your water needs...\r\n'),(277,3,39,0,55,'freeze dried, food storage, add water, water storage, store anywhere'),(278,3,40,0,55,'5 gallon mylar lined water box. Store water to add to freeze dried food supplies.'),(279,3,55,0,55,''),(280,3,58,0,55,''),(302,3,58,0,59,''),(303,3,36,1,59,'Get prepared one step at a time with expert - Barbara Salsbury.'),(304,3,39,1,59,'Barbara Salsbury, preparedness, 11, steps, step, program, food storage, '),(307,3,58,1,59,''),(314,3,58,0,61,''),(316,3,39,1,61,'knives, survival, backpacks, gear, tools, '),(319,3,58,1,61,''),(320,3,36,0,59,''),(321,3,39,0,59,''),(322,3,40,0,59,''),(323,3,55,0,59,''),(346,3,36,1,61,''),(347,3,58,0,65,''),(348,3,36,1,65,''),(349,3,39,1,65,'bear grylls gerber'),(352,3,58,1,65,''),(354,3,58,0,66,''),(356,3,39,1,66,'wise food storage backpack gear survival '),(359,3,58,1,66,''),(381,3,58,0,70,''),(383,3,39,1,70,'wondermill grinder, electric grinder, hand grinder, wheat grinder, wondermill wheat grinder, sunoven, sun, oven, '),(384,3,40,1,70,'Being prepared means to be self reliant whether we are grinding our wheat with or without electricity. Prepare the wheat by grinding it, and cook your meals with the power of the sunoven. Wondermills and Sun Ovens are the perfect accessory for the prepared family'),(386,3,58,1,70,''),(392,3,36,1,39,'
\r\n

Being completely prepared requires so much more than just purchasing products.

\r\n

The 3 Pillars of Preparedness are:
1. Education
2. Skills
3. Product

Tomorrow\'s Harvest is first & foremost an educational company, hosting 2 educational radio shows, Tomorrow\'s Harvest Insider Report & Survival Foods, with hundreds of thousands of listeners dedicated to better understanding the proper principles of preparedness as taught by educators and consumer advocates from around the industry. 
We are very pleased with the unique partnerships from the authors & advocates, such as Barbara Salsbury & James Stevens, as they constantly serve the Tomorrow\'s Harvest family through teaching the skills necessary for your family\'s benefit. 
The products provided by Tomorrow\'s Harvest are from the most trusted & proven manufacturers in freeze dry foods, dehydrated foods, as well as gear & accessories for total preparedness. Mountain House, Alpine Aire, Backpacker\'s Pantry, Wise Foods, Gerber Gear, Katadyn, Wonder-mill & Sun Oven are a few examples of the products Tomorrow\'s Harvest provides. There is no reason, to search endlessly across the internet for the most proven products. Its here at your fingertips, supported by the industry\'s professionals.  
The rest is up to you... enjoy shopping and we are just a phone call away for further support 800.573.3944.

\r\n
'),(403,3,36,1,38,'

 

\r\n

TOMORROW\'S HARVEST is a PLATINUM DISTRIBUTOR for WISE COMPANY, which allows you to purchase at DISCOUNT  WHOLESALE PRICING

'),(404,3,36,1,66,'

 

\r\n

TOMORROW\'S HARVEST is a PLATINUM DISTRIBUTOR for WISE COMPANY, which allows you to purchase at DISCOUNT  WHOLESALE PRICING

'),(416,3,36,1,5,'

MOUNTAIN HOUSE IS THE WINNER OF THE GOLDEN TASTE AWARD. YES, THEY ARE DELICIOUS MEALS!

'),(417,3,39,1,5,'mountain house, freeze dried meals, oregon freeze dry, food storage, emergency preparedness, #10 cans, breakfast, lunch, dinner, desserts, top rated freeze dried meals, best freeze dried meals, disaster, earthquake, tornado, hurricane, 72 hour kit, disaster relief, survival foods'),(418,3,40,1,5,'Mountain House is the holder of the Golden Taste Award for emergency preparedness freeze dried meals, breakfast, lunch, dinner, desserts and snacks. Prepare your pantry with Mountain House freeze dried meals in a #10 can for any emergency or disaster'),(421,3,36,0,70,'food preparation products from Tomorrow\'s Harvest.com'),(422,3,39,0,70,''),(423,3,40,0,70,''),(424,3,55,0,70,''),(432,3,58,0,72,''),(433,3,36,1,72,'

The World\'s #1 Rated Grain Mill.

\r\n'),(434,3,39,1,72,'wondermill, grain, wheat, grinders, food storage'),(437,3,58,1,72,''),(438,3,58,0,73,''),(439,3,36,1,73,'Emergency Use Ovens & Stoves'),(440,3,39,1,73,'solar power ovens sun cooking food storage disasters '),(443,3,58,1,73,''),(455,3,36,0,75,'

Tomorrow\'s Harvest has a unique criteria for selecting brands and meals that families across america trust and prefer. Tomorrow\'s Harvest only uses the Platinum Manufacturers from the Outdoor Industry. The freeze dried breakfasts, entrees, fruits & vegetables are all sold to backpacker\'s and adventurist, whom require great tasting and nutritious meals for long periods of time. Cabela\'s, Bass Pro Shop, Sportsman\'s Warehouse, REI, Walmart and other outdoor retailers provide meals from Platinum Manufacturers: Tomorrow\'s Harvest allows you to prepare for any emergency, disaster or crisis with the top rated and most trusted names in freeze drying & food storage.
\"backpackers\"alpine \"logo\"\"logo\"\"logo\"

'),(456,3,39,0,75,'mountain house, backpackers pantry, alpine aire, wise company, food storage, freeze dried food, dried food, emergency preparedness, survival foods, thrive to survive, 72 hour kits, disaster, beready, family preparedness, provident living, mormon food storage'),(457,3,40,0,75,'The freeze dried breakfasts, entrees, fruits & vegetables are all sold to backpacker\'s and adventurist, whom require great tasting and nutritious meals for long periods of time. Cabela\'s, Bass Pro Shop, Sportsman\'s Warehouse, REI, Walmart provide meals from Platinum Manufacturers; Prepare your pantry today with same Mountain House, Backpacker\'s Pantry, Wise Company & Alpine Aire.'),(458,3,55,0,75,''),(459,3,58,0,75,''),(460,3,36,0,76,'freeze dried fruits from Tomorrow\'s harvest food storage'),(461,3,39,0,76,''),(462,3,40,0,76,''),(463,3,55,0,76,''),(464,3,58,0,76,''),(465,3,36,0,77,'freeze dried vegetables from Tomorrow\'s Harvest food storage'),(466,3,39,0,77,''),(467,3,40,0,77,''),(468,3,55,0,77,''),(469,3,58,0,77,''),(470,3,36,0,78,'freeze dried fruits and vegetable in money saving packages from Tomorrow;s Harvest food storage'),(471,3,39,0,78,''),(472,3,40,0,78,''),(473,3,55,0,78,''),(474,3,58,0,78,''),(475,3,36,0,79,'water storage containers from Tomorrow\'s Harvest food storage'),(476,3,39,0,79,''),(477,3,40,0,79,''),(478,3,55,0,79,''),(479,3,58,0,79,''),(480,3,36,0,80,'Water Filters and purifiers from Tomorrow\'s Harvest food storage.\r\n\r\n\r\n\r\n'),(481,3,39,0,80,''),(482,3,40,0,80,''),(483,3,55,0,80,''),(484,3,58,0,80,''),(485,3,36,0,61,'survival supplies from Tomorrow\'s Harvest food storage'),(486,3,39,0,61,''),(487,3,40,0,61,''),(488,3,55,0,61,''),(491,3,36,0,66,'Wise grab-n-go freeze dried food supply buckets from Tomorrow\'s Harvest'),(492,3,39,0,66,''),(493,3,40,0,66,''),(494,3,55,0,66,''),(495,3,36,0,81,'Books on Preparedness '),(496,3,39,0,81,'books preparedness Barbra Salsbury'),(497,3,40,0,81,'Find the education you are looking for with great books by the best experts in the business of preparedness!'),(498,3,55,0,81,''),(499,3,58,0,81,''),(500,3,36,0,82,''),(501,3,39,0,82,'mountain house meals, freeze dried, dried foods, vegetables, fruits, entrees, food storage, survival food, emergency preparedness, self reliance, disaster'),(502,3,40,0,82,'Be prepared for any disaster or emergency with Mountain House meals. Packaged in a #10 can, and served in the camping industry for more than 50 years. All preparedness products have a 25 year shelf life and are home made recipes'),(503,3,55,0,82,''),(504,3,58,0,82,''),(505,3,36,0,83,''),(506,3,39,0,83,''),(507,3,40,0,83,''),(508,3,55,0,83,''),(509,3,58,0,83,''),(510,3,58,0,84,''),(511,3,36,1,84,'

\"tyry

'),(512,3,39,1,84,'alpine aire, freeze dried, dried foods, survival foods, emergency preparedness, food storage, mountain house, backpackers pantry, prepare,'),(513,3,40,1,84,'TyRy, Inc. produces the largest selection of the finest freeze-dried and dehydrated instant meals under the brands Natural High, Richmoor, AlpineAire Foods, & Gourmet Reserves. These products are designed perfectly for emergency family preparedness'),(515,3,58,1,84,''),(516,3,58,0,85,''),(517,3,36,1,85,'

\"backpackers

'),(518,3,39,1,85,'backpackers pantry, mountain house, alpine aire, wise company, food storage, dried foods, freeze dried foods, emergency preparedness, survival foods, prepare, '),(519,3,40,1,85,'60 YEARS of EXPERIENCE of creating freeze dried meals means that Backpacker\'s is the most sought after meals in the outdoor & emergency preparedness industry. Prepare your family with food storage in a #10 can for long term storage for any disaster'),(520,3,55,1,85,''),(521,3,58,1,85,''),(522,3,58,0,86,''),(523,3,36,1,86,'

\"basil\"beef\"cheesy\"honey

'),(524,3,39,1,86,'wise food storage, mountain house, backpackers pantry, mountain house, freeze dried, dried foods, meals, entree, bucket, mylar pouch, long term food storage, food storage, 25 year shelf life, shelf life, survival foods, emergency preparedness, food, disaster, 72 hour kit'),(525,3,40,1,86,'Wise Food Storage is the top rated food storage company that packages all of their products in mylar bags that are protected inside of buckets. Storage is now space saving, and your family will be better prepared for any emergency disaster with Wise Company'),(527,3,58,1,86,''),(539,3,36,0,85,''),(540,3,39,0,85,''),(541,3,40,0,85,''),(542,3,55,0,85,''),(543,3,36,0,87,'Every food storage supply needs drinks to go along with it. These drinks have a 25 year shelf life and mix up great in cold water.'),(544,3,39,0,87,'Food Storage Beverages #10 cans drinks milk juice chocolate'),(545,3,40,0,87,'Food storage beverages that come in #10 cans. These include milk and juice.'),(546,3,55,0,87,''),(547,3,58,0,87,''),(549,3,36,0,88,'Tomorrow\'s Harvest Food Storage'),(550,3,39,0,88,'Tomorrow\'s Harvest Food Storage'),(551,3,40,0,88,''),(552,3,55,0,88,''),(553,3,58,0,88,''),(554,3,36,0,89,''),(555,3,39,0,89,''),(556,3,40,0,89,''),(557,3,55,0,89,''),(558,3,58,0,89,''),(560,3,36,0,90,''),(561,3,39,0,90,''),(562,3,40,0,90,''),(563,3,55,0,90,''),(564,3,58,0,90,''); /*!40000 ALTER TABLE `catalog_category_entity_text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_varchar` -- DROP TABLE IF EXISTS `catalog_category_entity_varchar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_entity_varchar` ( `value_id` int(11) NOT NULL AUTO_INCREMENT, `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0', `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `entity_id` int(10) unsigned NOT NULL DEFAULT '0', `value` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`) USING BTREE, KEY `FK_ATTRIBUTE_VARCHAR_ENTITY` (`entity_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_STORE` (`store_id`), CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=913 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_entity_varchar` -- LOCK TABLES `catalog_category_entity_varchar` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_varchar` DISABLE KEYS */; INSERT INTO `catalog_category_entity_varchar` VALUES (1,3,33,0,1,'Root Catalog'),(2,3,33,1,1,'Root Catalog'),(3,3,35,0,1,'root-catalog'),(4,3,33,0,2,'Tomorrow\'s Harvest freeze dried food storage'),(6,3,41,1,2,'PRODUCTS'),(7,3,35,0,2,'default-category'),(8,3,33,0,3,'Package Deals'),(9,3,35,0,3,'products'),(10,3,38,0,3,''),(11,3,41,0,3,'PRODUCTS'),(12,3,50,0,3,''),(13,3,54,0,3,''),(14,3,49,1,3,'products-2/products-2.html'),(15,3,49,0,3,'products/products.html'),(16,3,33,0,4,'Premier Family Supply'),(17,3,35,0,4,'premier-family-supply'),(18,3,38,0,4,''),(19,3,41,0,4,'PRODUCTS'),(20,3,50,0,4,''),(21,3,54,0,4,''),(22,3,49,1,4,'products-2/products-2/premier-family-supply.html'),(23,3,49,0,4,'products/products/premier-family-supply.html'),(24,3,33,0,5,'Mountain House Family Supply'),(25,3,35,0,5,'mountain-house-family-supply'),(26,3,38,0,5,''),(27,3,41,0,5,'PRODUCTS'),(28,3,50,0,5,''),(29,3,54,0,5,''),(30,3,49,1,5,'products-2/products-2/mountain-house-family-supply.html'),(31,3,49,0,5,'products/products/mountain-house-family-supply.html'),(32,3,33,0,6,'Gluten Free Family Supply'),(33,3,35,0,6,'gluten-free-family-supply'),(34,3,38,0,6,''),(35,3,41,0,6,'PRODUCTS'),(36,3,50,0,6,''),(37,3,54,0,6,''),(38,3,49,1,6,'products-2/products-2/gluten-free-family-supply.html'),(39,3,49,0,6,'products-2/products-2/gluten-free-family-supply.html'),(40,3,33,0,7,'Lactose Free Family Supply'),(41,3,35,0,7,'lactose-free-family-supply'),(42,3,38,0,7,''),(43,3,41,0,7,'PRODUCTS'),(44,3,50,0,7,''),(45,3,54,0,7,''),(46,3,49,1,7,'products-2/products-2/lactose-free-family-supply.html'),(47,3,49,0,7,'products-2/products-2/lactose-free-family-supply.html'),(48,3,33,0,8,'Vegetarian Family Supply'),(49,3,35,0,8,'vegetarian-family-supply'),(50,3,38,0,8,''),(51,3,41,0,8,'PRODUCTS'),(52,3,50,0,8,''),(53,3,54,0,8,''),(54,3,49,1,8,'products-2/products-2/vegetarian-family-supply.html'),(55,3,49,0,8,'products-2/products-2/vegetarian-family-supply.html'),(56,3,33,0,9,'Traditional Family Supply'),(57,3,35,0,9,'traditional-family-supply'),(58,3,38,0,9,''),(59,3,41,0,9,'PRODUCTS'),(60,3,50,0,9,''),(61,3,54,0,9,''),(62,3,49,1,9,'products-2/products-2/traditional-family-supply.html'),(63,3,49,0,9,'products/products/traditional-family-supply-1.html'),(72,3,33,0,11,'72 Hour Kits'),(73,3,35,0,11,'72-hour-kits'),(74,3,38,0,11,''),(75,3,41,0,11,'PRODUCTS'),(76,3,50,0,11,''),(77,3,54,0,11,''),(78,3,49,1,11,'products-2/products-2/72-hour-kits.html'),(79,3,49,0,11,'products/products/72-hour-kits.html'),(80,3,33,0,12,'Build Your Own Supply'),(81,3,35,0,12,'build-your-own-supply'),(82,3,38,0,12,''),(83,3,41,0,12,'PRODUCTS'),(84,3,50,0,12,''),(85,3,54,0,12,''),(86,3,49,1,12,'products-2/products-2/build-your-own-supply.html'),(87,3,49,0,12,'products/products/build-your-own-supply.html'),(88,3,33,0,13,'Breakfast'),(89,3,35,0,13,'breakfast'),(90,3,38,0,13,''),(91,3,41,0,13,'PRODUCTS'),(92,3,50,0,13,''),(93,3,54,0,13,''),(94,3,49,1,13,'products-2/products-2/build-your-own-supply/breakfast.html'),(95,3,49,0,13,'products/products/build-your-own-supply/breakfast.html'),(96,3,33,0,14,'Lunch/Dinner'),(97,3,35,0,14,'lunch-dinner'),(98,3,38,0,14,''),(99,3,41,0,14,'PRODUCTS'),(100,3,50,0,14,''),(101,3,54,0,14,''),(102,3,49,1,14,'products-2/products-2/build-your-own-supply/lunch-dinner.html'),(103,3,49,0,14,'products/products/build-your-own-supply/lunch-dinner.html'),(104,3,33,0,15,'Mountain House'),(105,3,35,0,15,'mountain-house'),(106,3,38,0,15,''),(107,3,41,0,15,'PRODUCTS'),(108,3,50,0,15,''),(109,3,54,0,15,''),(110,3,49,1,15,'products-2/products-2/build-your-own-supply/mountain-house.html'),(111,3,49,0,15,'products/products/build-your-own-supply/mountain-house.html'),(112,3,33,0,16,'Freeze Dry Fruits'),(113,3,35,0,16,'freeze-dry-fruits'),(114,3,38,0,16,''),(115,3,41,0,16,'PRODUCTS'),(116,3,50,0,16,''),(117,3,54,0,16,''),(118,3,49,1,16,'products-2/products-2/build-your-own-supply/freeze-dry-fruits.html'),(119,3,49,0,16,'products/products/build-your-own-supply/freeze-dry-fruits.html'),(120,3,33,0,17,'Freeze Dry Vegetables'),(121,3,35,0,17,'freeze-dry-vegetables'),(122,3,38,0,17,''),(123,3,41,0,17,'PRODUCTS'),(124,3,50,0,17,''),(125,3,54,0,17,''),(126,3,49,1,17,'products-2/products-2/build-your-own-supply/freeze-dry-vegetables.html'),(127,3,49,0,17,'products/products/build-your-own-supply/freeze-dry-vegetables.html'),(144,3,38,0,2,'5 Gallon Water Box'),(145,3,50,0,2,''),(146,3,54,0,2,''),(196,3,33,0,26,'Dessert'),(197,3,35,0,26,'dessert'),(198,3,38,0,26,''),(199,3,41,0,26,'PRODUCTS'),(200,3,50,0,26,''),(201,3,54,0,26,''),(202,3,49,1,26,'products-2/products-2/dessert.html'),(203,3,49,0,26,'products/products/dessert.html'),(212,3,33,0,28,'Meat Pack'),(213,3,35,0,28,'meat-pack'),(214,3,38,0,28,''),(215,3,41,0,28,'PRODUCTS'),(216,3,50,0,28,''),(217,3,54,0,28,''),(218,3,49,1,28,'products-2/products-2/meat-pack.html'),(219,3,49,0,28,'products/products/meat-pack.html'),(226,3,33,0,30,'Packs'),(227,3,35,0,30,'packs'),(228,3,38,0,30,''),(229,3,41,0,30,'PRODUCTS'),(230,3,50,0,30,''),(231,3,54,0,30,''),(232,3,49,1,30,'products-2/products-2/packs.html'),(233,3,49,0,30,'products/products/packs.html'),(239,3,37,0,2,'tharvestbox.png'),(240,3,33,0,31,'1 Month Supply'),(241,3,35,0,31,'1-month-supply'),(242,3,38,0,31,''),(243,3,41,0,31,'PRODUCTS'),(244,3,50,0,31,''),(245,3,54,0,31,''),(246,3,49,1,31,'products-2/products-2/1-month-supply.html'),(247,3,49,0,31,'products/products/1-month-supply.html'),(248,3,33,0,32,'2 Month Supply'),(249,3,35,0,32,'2-month-supply'),(250,3,38,0,32,''),(251,3,41,0,32,'PRODUCTS'),(252,3,50,0,32,''),(253,3,54,0,32,''),(254,3,49,1,32,'products-2/products-2/2-month-supply.html'),(255,3,49,0,32,'products/products/2-month-supply.html'),(256,3,33,0,33,'3 Month Supply'),(257,3,35,0,33,'3-month-supply'),(258,3,38,0,33,''),(259,3,41,0,33,'PRODUCTS'),(260,3,50,0,33,''),(261,3,54,0,33,''),(262,3,49,1,33,'products-2/products-2/3-month-supply.html'),(263,3,49,0,33,'products/products/3-month-supply.html'),(264,3,33,0,34,'6 Month Supply'),(265,3,35,0,34,'6-month-supply'),(266,3,38,0,34,''),(267,3,41,0,34,'PRODUCTS'),(268,3,50,0,34,''),(269,3,54,0,34,''),(270,3,49,1,34,'products-2/products-2/6-month-supply.html'),(271,3,49,0,34,'products/products/6-month-supply.html'),(272,3,33,0,35,'12 Month Supply'),(273,3,35,0,35,'12-month-supply'),(274,3,38,0,35,''),(275,3,41,0,35,'PRODUCTS'),(276,3,50,0,35,''),(277,3,54,0,35,''),(278,3,49,1,35,'products-2/products-2/12-month-supply.html'),(279,3,49,0,35,'products/products/12-month-supply.html'),(281,3,33,0,36,'Ultimate Family Supply'),(282,3,35,0,36,'ultimate-family-supply'),(283,3,38,0,36,''),(284,3,41,0,36,'PRODUCTS'),(286,3,50,0,36,''),(287,3,54,0,36,''),(288,3,49,1,36,'products-2/products-2/ultimate-family-supply-1.html'),(289,3,49,0,36,'products/products/ultimate-family-supply.html'),(290,3,59,0,5,'price'),(291,3,59,0,6,'price'),(292,3,59,0,7,'price'),(293,3,59,0,8,'price'),(296,3,33,0,37,'2,000 Calorie Family Supply'),(297,3,35,0,37,'2000-calories-per-day'),(298,3,38,0,37,'2000 Calorie Family Supply'),(299,3,41,0,37,'PRODUCTS'),(300,3,50,0,37,''),(301,3,54,0,37,''),(302,3,49,1,37,'products-2/products-2/2000-calories-per-day.html'),(303,3,49,0,37,'products/products/2000-calories-per-day.html'),(306,3,33,0,38,'Wise Foods Family Supply '),(307,3,35,0,38,'buckets'),(308,3,38,0,38,'Wise Food Storage'),(309,3,41,0,38,'PRODUCTS'),(310,3,50,0,38,''),(311,3,54,0,38,''),(312,3,49,1,38,'products-2/products-2/buckets.html'),(313,3,49,0,38,'products/products/buckets.html'),(314,3,33,0,39,'Food'),(315,3,35,0,39,'products'),(316,3,38,0,39,'Freeze Dried Food Storage from Tomorrow\'s Harvest'),(317,3,41,0,39,'PRODUCTS'),(318,3,50,0,39,''),(319,3,54,0,39,''),(320,3,49,1,39,'products-2.html'),(321,3,49,0,39,'products.html'),(322,3,33,0,40,'Specialty Diets'),(323,3,35,0,40,'specialty-diets'),(324,3,38,0,40,''),(325,3,41,0,40,'PRODUCTS'),(326,3,50,0,40,''),(327,3,54,0,40,''),(328,3,49,1,40,'products-2/specialty-diets.html'),(329,3,49,0,40,'products/specialty-diets.html'),(330,3,33,0,41,'Fruits and Vegetables'),(331,3,35,0,41,'fruits-and-vegetables'),(332,3,38,0,41,'Fruits and Vegetables Freeze Dried Food Storage from tomorrowsharvest.com'),(333,3,41,0,41,'PRODUCTS'),(334,3,50,0,41,''),(335,3,54,0,41,''),(336,3,49,1,41,'products-2/fruits-and-vegetables-1.html'),(337,3,49,0,41,'products/fruits-and-vegetables-1.html'),(338,3,33,0,42,'Desserts'),(339,3,35,0,42,'desserts'),(340,3,38,0,42,'Desserts Freeze Dried Food storage from tomorrowsharvest.com'),(341,3,41,0,42,'PRODUCTS'),(342,3,50,0,42,''),(343,3,54,0,42,''),(344,3,49,1,42,'products-2/specialty-diets/desserts.html'),(345,3,49,0,42,'products/specialty-diets/desserts.html'),(385,3,33,0,44,'Miller\'s Grain House'),(386,3,35,0,44,'millersgrainhouse'),(387,3,38,0,44,''),(388,3,41,0,44,'PRODUCTS'),(389,3,50,0,44,'default/default'),(390,3,54,0,44,'two_columns_left'),(391,3,37,0,44,'millerlogo.png'),(436,3,33,0,49,'Specialty Diets'),(437,3,59,0,49,'price'),(445,3,33,0,50,'Entrees'),(446,3,35,0,50,'entrees'),(447,3,38,0,50,''),(448,3,41,0,50,'PRODUCTS'),(449,3,59,0,50,'price'),(450,3,50,0,50,''),(451,3,54,0,50,''),(452,3,49,1,50,'products-2/entrees.html'),(453,3,49,0,50,'products/entrees.html'),(454,3,33,0,51,'Breakfast'),(455,3,35,0,51,'breakfast'),(456,3,38,0,51,''),(457,3,41,0,51,'PRODUCTS'),(458,3,59,0,51,'price'),(459,3,50,0,51,''),(460,3,54,0,51,''),(461,3,49,1,51,'products-2/breakfast.html'),(462,3,49,0,51,'products/breakfast.html'),(463,3,33,0,52,'Specials!'),(464,3,35,0,52,'specials'),(465,3,38,0,52,'Special discounts on freeze dried foods from Tomorrow\'s Harvest food supplies'),(466,3,41,0,52,'PRODUCTS'),(467,3,50,0,52,'default/modern'),(468,3,54,0,52,'two_columns_left'),(469,3,49,1,52,'specials.html'),(470,3,49,0,52,'specials.html'),(471,3,33,0,53,'Traditional Family Supply'),(472,3,35,0,53,'traditional-family-supply'),(473,3,38,0,53,''),(474,3,41,0,53,'PRODUCTS'),(475,3,50,0,53,''),(476,3,54,0,53,''),(477,3,49,1,53,'products-2/products-2/traditional-family-supply-1.html'),(478,3,49,0,53,'products/products/traditional-family-supply.html'),(489,3,41,0,2,'PRODUCTS'),(490,3,33,0,55,'Water Supplies'),(491,3,35,0,55,'water-supplies'),(492,3,38,0,55,'water box'),(493,3,41,0,55,'PRODUCTS'),(494,3,50,0,55,''),(495,3,54,0,55,'two_columns_left'),(496,3,49,1,55,'water-supplies.html'),(497,3,49,0,55,'water-supplies.html'),(525,3,33,0,59,'11 Step Program'),(526,3,33,1,59,'11 Step Program'),(527,3,35,1,59,'11-step-program'),(528,3,38,1,59,'11 Step Program'),(529,3,41,1,59,'PRODUCTS'),(532,3,35,0,59,'11-step-program'),(533,3,49,1,59,'11-step-program.html'),(534,3,49,0,59,'11-step-program.html'),(545,3,33,0,61,'Survival Supplies'),(548,3,38,1,61,'Survival Suppliess'),(549,3,41,1,61,'PRODUCTS'),(552,3,35,0,61,'survival-supplies'),(553,3,49,1,61,'survival-supplies.html'),(554,3,49,0,61,'survival-supplies.html'),(555,3,38,0,59,''),(556,3,41,0,59,'PRODUCTS'),(557,3,50,0,59,''),(558,3,54,0,59,''),(599,3,33,0,65,'Bear Grylls Gear by Gerber'),(600,3,33,1,65,'Bear Grylls Gear by Gerber'),(601,3,35,1,65,'bear-grylls-gear-by-gerber'),(603,3,41,1,65,'PRODUCTS'),(606,3,35,0,65,'bear-grylls-gear-by-gerber'),(607,3,49,1,65,'survival-supplies/bear-grylls-gear-by-gerber.html'),(608,3,49,0,65,'survival-supplies/bear-grylls-gear-by-gerber.html'),(609,3,33,0,66,'Wise Grab N Go'),(610,3,33,1,66,'Wise Gear'),(611,3,35,1,66,'wise-gear'),(612,3,38,1,66,'Wise Gear'),(613,3,41,1,66,'PRODUCTS'),(616,3,35,0,66,'wise-grab-n-go'),(617,3,49,1,66,'survival-supplies/wise-gear.html'),(618,3,49,0,66,'survival-supplies/wise-grab-n-go.html'),(649,3,33,0,70,'Food Preparation'),(650,3,33,1,70,'Cooking Supplies'),(651,3,35,1,70,'cooking-supplies'),(652,3,38,1,70,'Wondermill & Sunoven'),(653,3,41,1,70,'PRODUCTS'),(657,3,35,0,70,'food-preparation-products'),(658,3,49,1,70,'cooking-supplies.html'),(659,3,49,0,70,'food-preparation-products.html'),(661,3,37,1,70,'TheWonderMillLogoHeader.jpg'),(677,3,38,1,5,'Mountain House Freeze Dried Food Storage'),(679,3,38,0,70,'food preparation products from Tomorrow\'s Harvest.com'),(680,3,41,0,70,'PRODUCTS'),(681,3,50,0,70,''),(682,3,54,0,70,''),(699,3,33,0,72,'Wondermill'),(700,3,33,1,72,'Wondermill'),(701,3,35,1,72,'wondermill'),(702,3,38,1,72,'Wondermill'),(703,3,41,1,72,'PRODUCTS'),(706,3,35,0,72,'wondermill'),(707,3,49,1,72,'cooking-supplies/wondermill.html'),(708,3,49,0,72,'food-preparation-products/wondermill.html'),(710,3,33,0,73,'Ovens'),(711,3,33,1,73,'Ovens & Stoves'),(712,3,35,1,73,'ovens'),(714,3,41,1,73,'PRODUCTS'),(717,3,35,0,73,'ovens'),(718,3,49,1,73,'cooking-supplies/ovens.html'),(719,3,49,0,73,'food-preparation-products/ovens.html'),(740,3,33,0,75,'A La Carte'),(741,3,35,0,75,'a-la-carte'),(742,3,38,0,75,'ALaCarte freeze dried food supplies from Tomorrow\'s Harvest'),(743,3,41,0,75,'PRODUCTS'),(744,3,50,0,75,''),(745,3,54,0,75,''),(746,3,49,1,75,'products-2/a-la-carte-1.html'),(747,3,49,0,75,'products/a-la-carte-1.html'),(751,3,33,0,76,'Fruits'),(752,3,35,0,76,'fruits'),(753,3,38,0,76,'freeze dried fruits from Tomorrow\'s harvest food storage'),(754,3,41,0,76,'PRODUCTS'),(755,3,50,0,76,''),(756,3,54,0,76,''),(757,3,49,1,76,'products-2/fruits-and-vegetables-1/fruits.html'),(758,3,49,0,76,'products/fruits-and-vegetables-1/fruits.html'),(760,3,33,0,77,'Vegetables'),(761,3,35,0,77,'vegetables'),(762,3,38,0,77,'freeze dried vegetables from Tomorrow\'s Harvest food storage'),(763,3,41,0,77,'PRODUCTS'),(764,3,50,0,77,''),(765,3,54,0,77,''),(766,3,49,1,77,'products-2/fruits-and-vegetables-1/vegetables.html'),(767,3,49,0,77,'products/fruits-and-vegetables-1/vegetables.html'),(769,3,33,0,78,'Fruit & Vegetable Packages'),(770,3,35,0,78,'fruit-and-vegetable-packages'),(771,3,38,0,78,'freeze dried fruits and vegetable in money saving packages from Tomorrow;s Harvest food storage'),(772,3,41,0,78,'PRODUCTS'),(773,3,50,0,78,''),(774,3,54,0,78,''),(775,3,49,1,78,'products-2/fruits-and-vegetables-1/fruit-and-vegetable-packages.html'),(776,3,49,0,78,'products/fruits-and-vegetables-1/fruit-and-vegetable-packages.html'),(778,3,33,0,79,'Containers'),(779,3,35,0,79,'water-containers'),(780,3,38,0,79,'water storage containers from Tomorrow\'s Harvest food storage'),(781,3,41,0,79,'PRODUCTS'),(782,3,50,0,79,''),(783,3,54,0,79,''),(784,3,49,1,79,'water-supplies/water-containers.html'),(785,3,49,0,79,'water-supplies/water-containers.html'),(786,3,33,0,80,'Filters & Purifiers'),(787,3,35,0,80,'water-filters-and-purifiers'),(788,3,38,0,80,'water filters and purifiers from Tomorrow\'s Harvest food storage'),(789,3,41,0,80,'PRODUCTS'),(790,3,50,0,80,''),(791,3,54,0,80,''),(792,3,49,1,80,'water-supplies/water-filters-and-purifiers.html'),(793,3,49,0,80,'water-supplies/water-filters-and-purifiers.html'),(794,3,38,0,61,'survival supplies from Tomorrow\'s Harvest food storage'),(795,3,41,0,61,'PRODUCTS'),(796,3,50,0,61,''),(797,3,54,0,61,''),(804,3,38,0,66,'Wise grab-n-go freeze dried food supply buckets from Tomorrow\'s Harvest'),(805,3,41,0,66,'PRODUCTS'),(806,3,50,0,66,''),(807,3,54,0,66,''),(811,3,33,0,81,'Books'),(812,3,35,0,81,'books'),(813,3,38,0,81,''),(814,3,41,0,81,'PRODUCTS'),(815,3,50,0,81,''),(816,3,54,0,81,''),(817,3,49,1,81,'survival-supplies/books.html'),(818,3,49,0,81,'survival-supplies/books.html'),(819,3,33,0,82,'Mountain House #10 Cans'),(820,3,35,0,82,'mountain-house-ala-carte'),(821,3,38,0,82,'Mountain House #10 Cans'),(822,3,41,0,82,'PRODUCTS'),(823,3,50,0,82,''),(824,3,54,0,82,''),(825,3,124,0,82,'MH_logo.gif'),(826,3,49,1,82,'products-2/a-la-carte-1/mountain-house-ala-carte.html'),(827,3,49,0,82,'products/a-la-carte-1/mountain-house-ala-carte.html'),(829,3,33,0,83,'Prepper Coupons'),(830,3,35,0,83,'prepper-coupons'),(831,3,38,0,83,''),(832,3,41,0,83,'PRODUCTS'),(833,3,50,0,83,''),(834,3,54,0,83,''),(835,3,33,0,84,'Alpine Aire #10 Can'),(836,3,33,1,84,'Alpine Aire #10 Can'),(837,3,35,1,84,'alpine-aire-10-can'),(838,3,38,1,84,'Alpine Aire, Natural High, Richmoor Foods'),(839,3,41,1,84,'PRODUCTS'),(842,3,124,1,84,'alpineaire-foods_logo_s.gif'),(844,3,35,0,84,'alpine-aire-10-can'),(845,3,49,1,84,'products-2/a-la-carte-1/alpine-aire-10-can.html'),(846,3,49,0,84,'products-2/a-la-carte-1/alpine-aire-10-can.html'),(847,3,33,0,85,'Backpacker\'s Pantry #10 Cans'),(848,3,33,1,85,'Backpacker\'s Pantry'),(849,3,35,1,85,'backpacker-s-pantry'),(850,3,38,1,85,'Backpacker\'s Pantry Food Storage'),(851,3,41,1,85,'PRODUCTS'),(852,3,50,1,85,''),(853,3,54,1,85,''),(854,3,124,1,85,'BPP-Logo60-glossy.jpeg'),(855,3,35,0,85,'backpacker-s-pantry'),(856,3,49,1,85,'products-2/a-la-carte-1/backpacker-s-pantry.html'),(857,3,49,0,85,'products-2/a-la-carte-1/backpacker-s-pantry.html'),(858,3,33,0,86,'Wise Food Storage'),(859,3,33,1,86,'Wise Food Storage'),(860,3,35,1,86,'wise-food-storage'),(861,3,38,1,86,'Wise Food Storage'),(862,3,41,1,86,'PRODUCTS'),(865,3,124,1,86,'wise_logo.png'),(867,3,35,0,86,'wise-food-storage'),(868,3,49,1,86,'products-2/a-la-carte-1/wise-food-storage.html'),(869,3,49,0,86,'products-2/a-la-carte-1/wise-food-storage.html'),(872,3,124,0,75,'logo.jpeg'),(873,3,38,0,85,''),(874,3,41,0,85,'PRODUCTS'),(875,3,50,0,85,''),(876,3,54,0,85,''),(878,3,124,0,3,'drinks200f_1.png'),(879,3,33,0,87,'Beverages'),(880,3,35,0,87,'beverages'),(881,3,38,0,87,'Food Storage Beverages'),(882,3,41,0,87,'PRODUCTS'),(883,3,50,0,87,''),(884,3,54,0,87,''),(885,3,49,1,87,'products-2/beverages-1.html'),(886,3,49,0,87,'products-2/beverages-1.html'),(887,3,33,0,88,'Tomorrow\'s Harvest'),(888,3,35,0,88,'th-food'),(889,3,38,0,88,''),(890,3,41,0,88,'PRODUCTS'),(891,3,50,0,88,''),(892,3,54,0,88,''),(893,3,49,1,88,'products-2/th-food.html'),(894,3,49,0,88,'products-2/th-food.html'),(895,3,33,0,89,'Lighting Gear'),(896,3,35,0,89,'lightening-gear'),(897,3,38,0,89,''),(898,3,41,0,89,'PRODUCTS'),(899,3,50,0,89,''),(900,3,54,0,89,''),(901,3,49,1,89,'survival-supplies/lightening-gear.html'),(902,3,49,0,89,'survival-supplies/lightening-gear.html'),(904,3,37,0,52,'sale_image.gif'),(905,3,33,0,90,'Solar Power'),(906,3,35,0,90,'solar'),(907,3,38,0,90,''),(908,3,41,0,90,'PRODUCTS'),(909,3,50,0,90,''),(910,3,54,0,90,''),(911,3,49,1,90,'survival-supplies/solar.html'),(912,3,49,0,90,'survival-supplies/solar.html'); /*!40000 ALTER TABLE `catalog_category_entity_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_flat_store_1` -- DROP TABLE IF EXISTS `catalog_category_flat_store_1`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_flat_store_1` ( `entity_id` int(11) unsigned NOT NULL, `parent_id` int(11) unsigned NOT NULL DEFAULT '0', `created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `path` varchar(255) NOT NULL, `position` int(11) NOT NULL, `level` int(11) NOT NULL, `children_count` int(11) NOT NULL, `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `all_children` text, `available_sort_by` text, `children` text, `custom_apply_to_products` int(10) NOT NULL DEFAULT '0', `custom_design` varchar(255) NOT NULL DEFAULT '', `custom_design_from` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `custom_design_to` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `custom_layout_update` text, `custom_use_parent_settings` int(10) NOT NULL DEFAULT '0', `default_sort_by` varchar(255) NOT NULL DEFAULT '', `description` text, `display_mode` varchar(255) NOT NULL DEFAULT '', `filter_price_range` int(10) NOT NULL DEFAULT '0', `image` varchar(255) NOT NULL DEFAULT '', `include_in_menu` int(10) NOT NULL DEFAULT '0', `is_active` int(10) NOT NULL DEFAULT '0', `is_anchor` int(10) NOT NULL DEFAULT '0', `landing_page` int(10) NOT NULL DEFAULT '0', `meta_description` text, `meta_keywords` text, `meta_title` varchar(255) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `page_layout` varchar(255) NOT NULL DEFAULT '', `path_in_store` text, `thumbnail` varchar(255) NOT NULL DEFAULT '', `url_key` varchar(255) NOT NULL DEFAULT '', `url_path` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`entity_id`), KEY `IDX_STORE` (`store_id`), KEY `IDX_PATH` (`path`), KEY `IDX_LEVEL` (`level`), CONSTRAINT `FK_CATEGORY_FLAT_CATEGORY_ID_STORE_1` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATEGORY_FLAT_STORE_ID_STORE_1` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_flat_store_1` -- LOCK TABLES `catalog_category_flat_store_1` WRITE; /*!40000 ALTER TABLE `catalog_category_flat_store_1` DISABLE KEYS */; INSERT INTO `catalog_category_flat_store_1` VALUES (1,0,'0000-00-00 00:00:00','2010-12-13 22:31:44','1',0,0,67,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','',0,'',1,0,0,0,'','','','Root Catalog','','','','root-catalog',''),(2,1,'2010-12-13 22:31:44','2011-11-08 04:17:56','1/2',1,1,64,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','

Being completely prepared requires so much more than just purchasing products.

\r\n

The 3 Pillars of Preparedness are:
1. Education
2. Skills
3. Product
Tomorrow\'s Harvest is first & foremost an educational company, hosting 2 educational radio shows, Tomorrow\'s Harvest Insider Report & Survival Foods, with hundreds of thousands of listeners dedicated to better understanding the proper principles of preparedness as taught by educators and consumer advocates from around the industry.
We are very pleased with the unique partnerships from the authors & advocates, such as Barbara Salsbury & James Stevens, as they constantly serve the Tomorrow\'s Harvest family through teaching the skills necessary for your family\'s benefit.
The products provided by Tomorrow\'s Harvest are from the most trusted & proven manufacturers in freeze dry foods, dehydrated foods, as well as gear & accessories for total preparedness. Mountain House, Alpine Aire, Backpacker\'s Pantry, Wise Foods, Gerber Gear, Katadyn, Wonder-mill & Sun Oven are a few examples of the products Tomorrow\'s Harvest provides. There is no reason, to search endlessly across the internet for the most proven products. Its here at your fingertips, supported by the industry\'s professionals.  
The rest is up to you... enjoy shopping and we are just a phone call away for further support 800.573.3944.

','PRODUCTS',0,'tharvestbox.png',1,1,0,0,'Tomorrow\'s Harvest smart food storage- be prepared for emergencies and natural disasters. Just add water. Long shelf life. Long shelf. Emergency preparedness. 72 hour supplies. 3 month food storage. 6 month food supply. 12 month (1year) food supply. 5 gallon mylar water storage bags in in boxes. Gluten free. Lactose free. Vegetarian.','freeze, dried, gluten free, food, storage, water, supply, family, emergency essentials, emergency preparedness, specialty, diet, lactose free, vegetarian, real milk, fruit, vegetables, desserts, daily, bread, freeze dried food deals','5 Gallon Water Box','Tomorrow\'s Harvest freeze dried food storage','','','','default-category',''),(3,39,'2010-12-23 17:05:28','2011-11-11 18:18:41','1/2/39/3',2,3,25,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',1,1,0,0,'','','','Package Deals','','','drinks200f_1.png','products','products-2/products-2.html'),(4,3,'2010-12-23 17:07:35','2011-09-19 22:15:11','1/2/39/3/4',1,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',0,0,0,0,'','','','Premier Family Supply','','','','premier-family-supply','products-2/products-2/premier-family-supply.html'),(5,3,'2010-12-23 17:13:57','2011-11-07 17:57:55','1/2/39/3/5',8,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'price','

MOUNTAIN HOUSE IS THE WINNER OF THE GOLDEN TASTE AWARD. YES, THEY ARE DELICIOUS MEALS!

','PRODUCTS',0,'',1,1,0,0,'Mountain House is the holder of the Golden Taste Award for emergency preparedness freeze dried meals, breakfast, lunch, dinner, desserts and snacks. Prepare your pantry with Mountain House freeze dried meals in a #10 can for any emergency or disaster','mountain house, freeze dried meals, oregon freeze dry, food storage, emergency preparedness, #10 cans, breakfast, lunch, dinner, desserts, top rated freeze dried meals, best freeze dried meals, disaster, earthquake, tornado, hurricane, 72 hour kit, disaster relief, survival foods','Mountain House Freeze Dried Food Storage','Mountain House Family Supply','','','','mountain-house-family-supply','products-2/products-2/mountain-house-family-supply.html'),(6,3,'2010-12-23 17:14:30','2011-09-22 01:26:51','1/2/39/3/6',4,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'price','','PRODUCTS',0,'',1,1,0,0,'','','','Gluten Free Family Supply','','','','gluten-free-family-supply','products-2/products-2/gluten-free-family-supply.html'),(7,3,'2010-12-23 17:14:52','2011-09-19 23:03:15','1/2/39/3/7',5,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'price','','PRODUCTS',0,'',1,1,0,0,'','','','Lactose Free Family Supply','','','','lactose-free-family-supply','products-2/products-2/lactose-free-family-supply.html'),(8,3,'2010-12-23 17:15:13','2011-10-05 17:52:37','1/2/39/3/8',3,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'price','','PRODUCTS',0,'',1,1,0,0,'','','','Vegetarian Family Supply','','','','vegetarian-family-supply','products-2/products-2/vegetarian-family-supply.html'),(9,3,'2010-12-23 17:15:34','2011-09-19 22:15:26','1/2/39/3/9',10,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',0,0,0,0,'','','','Traditional Family Supply','','','','traditional-family-supply','products-2/products-2/traditional-family-supply.html'),(11,3,'2010-12-23 17:17:34','2011-09-19 22:16:05','1/2/39/3/11',11,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',0,0,0,0,'','','','72 Hour Kits','','','','72-hour-kits','products-2/products-2/72-hour-kits.html'),(12,3,'2010-12-23 17:17:55','2011-09-19 22:17:47','1/2/39/3/12',12,4,5,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',0,0,0,0,'','','','Build Your Own Supply','','','','build-your-own-supply','products-2/products-2/build-your-own-supply.html'),(13,12,'2010-12-23 17:27:20','2010-12-23 17:27:20','1/2/39/3/12/13',1,5,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',1,1,0,0,'','','','Breakfast','','','','breakfast','products-2/products-2/build-your-own-supply/breakfast.html'),(14,12,'2010-12-23 17:27:47','2010-12-23 17:27:47','1/2/39/3/12/14',2,5,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',1,1,0,0,'','','','Lunch/Dinner','','','','lunch-dinner','products-2/products-2/build-your-own-supply/lunch-dinner.html'),(15,12,'2010-12-23 17:28:17','2010-12-23 17:28:17','1/2/39/3/12/15',3,5,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',1,1,0,0,'','','','Mountain House','','','','mountain-house','products-2/products-2/build-your-own-supply/mountain-house.html'),(16,12,'2010-12-23 17:29:19','2010-12-23 17:30:48','1/2/39/3/12/16',4,5,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',1,1,0,0,'','','','Freeze Dry Fruits','','','','freeze-dry-fruits','products-2/products-2/build-your-own-supply/freeze-dry-fruits.html'),(17,12,'2010-12-23 17:30:09','2010-12-23 17:30:09','1/2/39/3/12/17',5,5,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',1,1,0,0,'','','','Freeze Dry Vegetables','','','','freeze-dry-vegetables','products-2/products-2/build-your-own-supply/freeze-dry-vegetables.html'),(26,3,'2011-01-06 03:26:03','2011-09-19 22:16:36','1/2/39/3/26',13,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',0,0,0,0,'','','','Dessert','','','','dessert','products-2/products-2/dessert.html'),(28,3,'2011-01-06 03:27:58','2011-09-19 22:19:31','1/2/39/3/28',14,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',0,0,0,0,'','','','Meat Pack','','','','meat-pack','products-2/products-2/meat-pack.html'),(30,3,'2011-01-09 01:46:07','2011-09-19 22:19:46','1/2/39/3/30',15,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',0,0,0,0,'','','','Packs','','','','packs','products-2/products-2/packs.html'),(31,3,'2011-01-24 17:54:03','2011-09-19 22:20:05','1/2/39/3/31',16,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',0,0,0,0,'','','','1 Month Supply','','','','1-month-supply','products-2/products-2/1-month-supply.html'),(32,3,'2011-01-24 17:55:03','2011-09-19 22:20:23','1/2/39/3/32',17,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',0,0,0,0,'','','','2 Month Supply','','','','2-month-supply','products-2/products-2/2-month-supply.html'),(33,3,'2011-01-24 17:55:39','2011-09-19 22:20:37','1/2/39/3/33',18,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',0,0,0,0,'','','','3 Month Supply','','','','3-month-supply','products-2/products-2/3-month-supply.html'),(34,3,'2011-01-24 17:56:05','2011-09-19 22:21:04','1/2/39/3/34',19,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',0,0,0,0,'','','','6 Month Supply','','','','6-month-supply','products-2/products-2/6-month-supply.html'),(35,3,'2011-01-24 17:56:45','2011-09-19 22:21:16','1/2/39/3/35',20,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',1,0,0,0,'','','','12 Month Supply','','','','12-month-supply','products-2/products-2/12-month-supply.html'),(36,3,'2011-09-19 22:54:20','2011-09-24 21:27:18','1/2/39/3/36',2,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',1,1,0,0,'','','','Ultimate Family Supply','','','','ultimate-family-supply','products-2/products-2/ultimate-family-supply-1.html'),(37,3,'2011-09-23 23:46:34','2011-09-23 23:47:01','1/2/39/3/37',9,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','This family supply gives your family the nutritional values and the calories that you will need to stay healthy, and active. 2,000 calories per day is created from the most experienced and trusted freeze dried meals, freeze dried fruits, freeze dried desserts, and drinks. The meals are products are picked and plucked directly from farms and sent immediately to our freeze drying facilities. The recipes are from the chefs at Mountain House, Backpacker\'s Pantry, and Alpine Aire. All products are in a #10 can, and have a shelf-life of 25 years. Shipped right to your doorstep','PRODUCTS',0,'',1,1,0,0,'This family supply gives your family the nutritional values and the calories that you will need to stay healthy, and active. 2,000 calories per day is created from the most experienced and trusted freeze dried meals, freeze dried fruits, freeze dried desserts, and drinks. The meals are products are picked and plucked directly from farms and sent immediately to our freeze drying facilities. The recipes are from the chefs at Mountain House, Backpacker\'s Pantry, and Alpine Aire. All products are in a #10 can, and have a shelf-life of 25 years. Shipped right to your doorstep','This family supply gives your family the nutritional values and the calories that you will need to stay healthy, and active. 2,000 calories per day is created from the most experienced and trusted freeze dried meals, freeze dried fruits, freeze dried desserts, and drinks. The meals are products are picked and plucked directly from farms and sent immediately to our freeze drying facilities. The recipes are from the chefs at Mountain House, Backpacker\'s Pantry, and Alpine Aire. All products are in a #10 can, and have a shelf-life of 25 years. Shipped right to your doorstep','2000 Calorie Family Supply','2,000 Calorie Family Supply','','','','2000-calories-per-day','products-2/products-2/2000-calories-per-day.html'),(38,3,'2011-09-29 21:22:30','2011-11-09 00:18:18','1/2/39/3/38',7,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','

 

\r\n

TOMORROW\'S HARVEST is a PLATINUM DISTRIBUTOR for WISE COMPANY, which allows you to purchase at DISCOUNT  WHOLESALE PRICING

','PRODUCTS',0,'',1,1,0,0,'Prepare your pantry\'s with Wise Food Storage. Wise Foods are the perfect product for the perfect storms of life. Use Wise Food Storage to save money, time and space, while achieving your self reliant and preparedness goals.','wise food storage, food storage, bucket food storage, freeze dried, dehydrated, dried foods, preparedness, survival, mylar pouches, ','Wise Food Storage','Wise Foods Family Supply ','','','','buckets','products-2/products-2/buckets.html'),(39,2,'2011-09-30 16:41:37','2011-11-08 23:09:17','1/2/39',2,2,43,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','
\r\n

Being completely prepared requires so much more than just purchasing products.

\r\n

The 3 Pillars of Preparedness are:
1. Education
2. Skills
3. Product

Tomorrow\'s Harvest is first & foremost an educational company, hosting 2 educational radio shows, Tomorrow\'s Harvest Insider Report & Survival Foods, with hundreds of thousands of listeners dedicated to better understanding the proper principles of preparedness as taught by educators and consumer advocates from around the industry. 
We are very pleased with the unique partnerships from the authors & advocates, such as Barbara Salsbury & James Stevens, as they constantly serve the Tomorrow\'s Harvest family through teaching the skills necessary for your family\'s benefit. 
The products provided by Tomorrow\'s Harvest are from the most trusted & proven manufacturers in freeze dry foods, dehydrated foods, as well as gear & accessories for total preparedness. Mountain House, Alpine Aire, Backpacker\'s Pantry, Wise Foods, Gerber Gear, Katadyn, Wonder-mill & Sun Oven are a few examples of the products Tomorrow\'s Harvest provides. There is no reason, to search endlessly across the internet for the most proven products. Its here at your fingertips, supported by the industry\'s professionals.  
The rest is up to you... enjoy shopping and we are just a phone call away for further support 800.573.3944.

\r\n
','PRODUCTS',0,'',1,1,0,0,'','food, storage, freeze, dried, emergency, disaster, preparedness, be prepared, water storage','Freeze Dried Food Storage from Tomorrow\'s Harvest','Food','','','','products','products-2.html'),(40,39,'2011-09-30 17:16:34','2011-11-11 18:20:58','1/2/39/40',3,3,1,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','Specialty Diets in freeze dried food storage from tomorrowsharvest.com','PRODUCTS',0,'',1,0,0,0,'gluten free, lactose free, vegetarian, food storage, freeze dried','gluten free, lactose free, vegetarian, food storage, freeze dried','','Specialty Diets','','','','specialty-diets','products-2/specialty-diets.html'),(41,39,'2011-09-30 17:50:41','2011-10-05 19:10:03','1/2/39/41',11,3,3,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','fruits and vegetables freeze dried food storage from tomorrowsharvest.com','PRODUCTS',0,'',1,1,0,0,'fruits and vegetables freeze dried food storage from tomorrowsharvest.com','fruits and vegetables freeze dried food storage from tomorrowsharvest.com','Fruits and Vegetables Freeze Dried Food Storage from tomorrowsharvest.com','Fruits and Vegetables','','','','fruits-and-vegetables','products-2/fruits-and-vegetables-1.html'),(42,40,'2011-09-30 17:55:53','2011-09-30 18:47:23','1/2/39/40/42',1,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','desserts freeze dried food storage from tomorrowsharvest.com','PRODUCTS',0,'',0,0,0,0,'desserts freeze dried food storage from tomorrowsharvest.com','desserts freeze dried food storage from tomorrowsharvest.com','Desserts Freeze Dried Food storage from tomorrowsharvest.com','Desserts','','','','desserts','products-2/specialty-diets/desserts.html'),(49,0,'2011-10-03 19:26:32','2011-10-03 19:26:32','1/2/39//49',13,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'price','','',0,'',1,1,1,0,'','','','Specialty Diets','','','','',''),(50,39,'2011-10-05 17:47:24','2011-10-06 16:47:19','1/2/39/50',8,3,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'price','','PRODUCTS',0,'',0,0,1,0,'','','','Entrees','','','','entrees','products-2/entrees.html'),(51,39,'2011-10-05 17:51:18','2011-10-06 16:48:17','1/2/39/51',9,3,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'price','','PRODUCTS',0,'',0,0,1,0,'','','','Breakfast','','','','breakfast','products-2/breakfast.html'),(52,2,'2011-10-05 20:35:02','2011-11-12 11:31:26','1/2/52',12,2,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','Special discounts on freeze dried foods from Tomorrow\'s Harvest food supplies','PRODUCTS',0,'',1,1,1,0,'','','Special discounts on freeze dried foods from Tomorrow\'s Harvest food supplies','Specials!','','','','specials','specials.html'),(53,3,'2011-10-06 16:49:13','2011-10-06 16:49:13','1/2/39/3/53',6,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',1,1,1,0,'','','','Traditional Family Supply','','','','traditional-family-supply','products-2/products-2/traditional-family-supply-1.html'),(55,2,'2011-10-27 02:29:55','2011-11-15 19:21:06','1/2/55',4,2,2,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','All of your water needs...\r\n','PRODUCTS',0,'',1,1,1,0,'5 gallon mylar lined water box. Store water to add to freeze dried food supplies.','freeze dried, food storage, add water, water storage, store anywhere','water box','Water Supplies','two_columns_left','','','water-supplies','water-supplies.html'),(59,2,'2011-11-04 03:49:58','2011-11-05 19:41:45','1/2/59',10,2,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','Get prepared one step at a time with expert - Barbara Salsbury.','PRODUCTS',0,'',1,0,1,0,'','Barbara Salsbury, preparedness, 11, steps, step, program, food storage, ','11 Step Program','11 Step Program','','','','11-step-program','11-step-program.html'),(61,2,'2011-11-04 04:03:25','2011-11-09 00:17:27','1/2/61',9,2,3,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',1,1,1,0,'','knives, survival, backpacks, gear, tools, ','Survival Suppliess','Survival Supplies','','','','survival-supplies','survival-supplies.html'),(65,61,'2011-11-06 02:06:39','2011-11-07 17:17:22','1/2/61/65',2,3,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','',0,'',1,1,0,0,'','','','Bear Grylls Gear by Gerber','','','','bear-grylls-gear-by-gerber','survival-supplies/bear-grylls-gear-by-gerber.html'),(66,61,'2011-11-06 02:12:59','2011-11-09 00:24:53','1/2/61/66',3,3,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','

 

\r\n

TOMORROW\'S HARVEST is a PLATINUM DISTRIBUTOR for WISE COMPANY, which allows you to purchase at DISCOUNT  WHOLESALE PRICING

','PRODUCTS',0,'',1,1,1,0,'','wise food storage backpack gear survival ','Wise Gear','Wise Gear','','','','wise-gear','survival-supplies/wise-gear.html'),(70,2,'2011-11-06 22:42:28','2011-11-09 00:09:53','1/2/70',11,2,2,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','food preparation products from Tomorrow\'s Harvest.com','PRODUCTS',0,'',1,1,1,0,'Being prepared means to be self reliant whether we are grinding our wheat with or without electricity. Prepare the wheat by grinding it, and cook your meals with the power of the sunoven. Wondermills and Sun Ovens are the perfect accessory for the prepared family','wondermill grinder, electric grinder, hand grinder, wheat grinder, wondermill wheat grinder, sunoven, sun, oven, ','Wondermill & Sunoven','Cooking Supplies','','','','cooking-supplies','cooking-supplies.html'),(72,70,'2011-11-08 03:58:57','2011-11-08 04:10:33','1/2/70/72',1,3,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','',0,'',1,1,0,0,'','','','Wondermill','','','','wondermill','cooking-supplies/wondermill.html'),(73,70,'2011-11-08 04:01:11','2011-11-08 04:18:40','1/2/70/73',2,3,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','',0,'',1,1,0,0,'','','','Ovens & Stoves','','','','ovens','cooking-supplies/ovens.html'),(75,39,'2011-11-08 23:45:00','2011-11-11 16:56:25','1/2/39/75',10,3,4,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','

Tomorrow\'s Harvest has a unique criteria for selecting brands and meals that families across america trust and prefer. Tomorrow\'s Harvest only uses the Platinum Manufacturers from the Outdoor Industry. The freeze dried breakfasts, entrees, fruits & vegetables are all sold to backpacker\'s and adventurist, whom require great tasting and nutritious meals for long periods of time. Cabela\'s, Bass Pro Shop, Sportsman\'s Warehouse, REI, Walmart and other outdoor retailers provide meals from Platinum Manufacturers: Tomorrow\'s Harvest allows you to prepare for any emergency, disaster or crisis with the top rated and most trusted names in freeze drying & food storage.
\"backpackers\"alpine \"logo\"\"logo\"\"logo\"

','PRODUCTS',0,'',1,1,1,0,'The freeze dried breakfasts, entrees, fruits & vegetables are all sold to backpacker\'s and adventurist, whom require great tasting and nutritious meals for long periods of time. Cabela\'s, Bass Pro Shop, Sportsman\'s Warehouse, REI, Walmart provide meals from Platinum Manufacturers; Prepare your pantry today with same Mountain House, Backpacker\'s Pantry, Wise Company & Alpine Aire.','mountain house, backpackers pantry, alpine aire, wise company, food storage, freeze dried food, dried food, emergency preparedness, survival foods, thrive to survive, 72 hour kits, disaster, beready, family preparedness, provident living, mormon food storage','ALaCarte freeze dried food supplies from Tomorrow\'s Harvest','A La Carte','','','logo.jpeg','a-la-carte','products-2/a-la-carte-1.html'),(76,41,'2011-11-08 23:50:58','2011-11-08 23:50:58','1/2/39/41/76',1,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','freeze dried fruits from Tomorrow\'s harvest food storage','PRODUCTS',0,'',1,1,1,0,'','','freeze dried fruits from Tomorrow\'s harvest food storage','Fruits','','','','fruits','products-2/fruits-and-vegetables-1/fruits.html'),(77,41,'2011-11-08 23:53:46','2011-11-08 23:53:46','1/2/39/41/77',2,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','freeze dried vegetables from Tomorrow\'s Harvest food storage','PRODUCTS',0,'',1,1,1,0,'','','freeze dried vegetables from Tomorrow\'s Harvest food storage','Vegetables','','','','vegetables','products-2/fruits-and-vegetables-1/vegetables.html'),(78,41,'2011-11-08 23:56:31','2011-11-08 23:56:31','1/2/39/41/78',3,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','freeze dried fruits and vegetable in money saving packages from Tomorrow;s Harvest food storage','PRODUCTS',0,'',1,1,1,0,'','','freeze dried fruits and vegetable in money saving packages from Tomorrow;s Harvest food storage','Fruit & Vegetable Packages','','','','fruit-and-vegetable-packages','products-2/fruits-and-vegetables-1/fruit-and-vegetable-packages.html'),(79,55,'2011-11-08 23:59:25','2011-11-08 23:59:25','1/2/55/79',1,3,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','water storage containers from Tomorrow\'s Harvest food storage','PRODUCTS',0,'',1,1,1,0,'','','water storage containers from Tomorrow\'s Harvest food storage','Containers','','','','water-containers','water-supplies/water-containers.html'),(80,55,'2011-11-09 00:01:50','2011-11-15 00:32:00','1/2/55/80',2,3,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','Water Filters and purifiers from Tomorrow\'s Harvest food storage.\r\n\r\n\r\n\r\n','PRODUCTS',0,'',1,1,1,0,'','','water filters and purifiers from Tomorrow\'s Harvest food storage','Filters & Purifiers','','','','water-filters-and-purifiers','water-supplies/water-filters-and-purifiers.html'),(81,61,'2011-11-09 04:33:23','2011-11-09 04:33:37','1/2/61/81',1,3,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','Books on Preparedness ','PRODUCTS',0,'',1,1,0,0,'Find the education you are looking for with great books by the best experts in the business of preparedness!','books preparedness Barbra Salsbury','','Books','','','','books','survival-supplies/books.html'),(82,75,'2011-11-10 10:03:23','2011-11-10 10:03:23','1/2/39/75/82',1,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','PRODUCTS',0,'',1,1,0,0,'Be prepared for any disaster or emergency with Mountain House meals. Packaged in a #10 can, and served in the camping industry for more than 50 years. All preparedness products have a 25 year shelf life and are home made recipes','mountain house meals, freeze dried, dried foods, vegetables, fruits, entrees, food storage, survival food, emergency preparedness, self reliance, disaster','Mountain House #10 Cans','Mountain House #10 Cans','','','MH_logo.gif','mountain-house-ala-carte','products-2/a-la-carte-1/mountain-house-ala-carte.html'),(84,75,'2011-11-11 08:07:37','2011-11-11 08:46:43','1/2/39/75/84',2,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','',0,'',1,1,0,0,'','','','Alpine Aire #10 Can','','','','alpine-aire-10-can','products-2/a-la-carte-1/alpine-aire-10-can.html'),(85,75,'2011-11-11 08:22:55','2011-11-11 16:58:22','1/2/39/75/85',3,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','

\"backpackers

','PRODUCTS',0,'',1,1,0,0,'60 YEARS of EXPERIENCE of creating freeze dried meals means that Backpacker\'s is the most sought after meals in the outdoor & emergency preparedness industry. Prepare your family with food storage in a #10 can for long term storage for any disaster','backpackers pantry, mountain house, alpine aire, wise company, food storage, dried foods, freeze dried foods, emergency preparedness, survival foods, prepare, ','Backpacker\'s Pantry Food Storage','Backpacker\'s Pantry','','','','backpacker-s-pantry','products-2/a-la-carte-1/backpacker-s-pantry.html'),(86,75,'2011-11-11 08:39:04','2011-11-11 08:44:13','1/2/39/75/86',4,4,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','','',0,'',1,1,0,0,'','','','Wise Food Storage','','','','wise-food-storage','products-2/a-la-carte-1/wise-food-storage.html'),(87,39,'2011-11-12 22:44:23','2011-11-12 22:44:23','1/2/39/87',12,3,0,1,'','','',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'','Every food storage supply needs drinks to go along with it. These drinks have a 25 year shelf life and mix up great in cold water.','PRODUCTS',0,'',1,1,0,0,'Food storage beverages that come in #10 cans. These include milk and juice.','Food Storage Beverages #10 cans drinks milk juice chocolate','Food Storage Beverages','Beverages','','','','beverages','products-2/beverages-1.html'); /*!40000 ALTER TABLE `catalog_category_flat_store_1` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_flat_store_2` -- DROP TABLE IF EXISTS `catalog_category_flat_store_2`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_flat_store_2` ( `entity_id` int(11) unsigned NOT NULL, `parent_id` int(11) unsigned NOT NULL DEFAULT '0', `created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `path` varchar(255) NOT NULL, `position` int(11) NOT NULL, `level` int(11) NOT NULL, `children_count` int(11) NOT NULL, `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `all_children` text, `available_sort_by` text, `children` text, `custom_apply_to_products` int(10) NOT NULL DEFAULT '0', `custom_design` varchar(255) NOT NULL DEFAULT '', `custom_design_from` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `custom_design_to` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `custom_layout_update` text, `custom_use_parent_settings` int(10) NOT NULL DEFAULT '0', `default_sort_by` varchar(255) NOT NULL DEFAULT '', `description` text, `display_mode` varchar(255) NOT NULL DEFAULT '', `filter_price_range` int(10) NOT NULL DEFAULT '0', `image` varchar(255) NOT NULL DEFAULT '', `include_in_menu` int(10) NOT NULL DEFAULT '0', `is_active` int(10) NOT NULL DEFAULT '0', `is_anchor` int(10) NOT NULL DEFAULT '0', `landing_page` int(10) NOT NULL DEFAULT '0', `meta_description` text, `meta_keywords` text, `meta_title` varchar(255) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `page_layout` varchar(255) NOT NULL DEFAULT '', `path_in_store` text, `thumbnail` varchar(255) NOT NULL DEFAULT '', `url_key` varchar(255) NOT NULL DEFAULT '', `url_path` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`entity_id`), KEY `IDX_STORE` (`store_id`), KEY `IDX_PATH` (`path`), KEY `IDX_LEVEL` (`level`), CONSTRAINT `FK_CATEGORY_FLAT_CATEGORY_ID_STORE_2` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATEGORY_FLAT_STORE_ID_STORE_2` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_flat_store_2` -- LOCK TABLES `catalog_category_flat_store_2` WRITE; /*!40000 ALTER TABLE `catalog_category_flat_store_2` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_flat_store_2` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_flat_store_7` -- DROP TABLE IF EXISTS `catalog_category_flat_store_7`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_flat_store_7` ( `entity_id` int(11) unsigned NOT NULL, `parent_id` int(11) unsigned NOT NULL DEFAULT '0', `created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `path` varchar(255) NOT NULL, `position` int(11) NOT NULL, `level` int(11) NOT NULL, `children_count` int(11) NOT NULL, `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `all_children` text, `available_sort_by` text, `children` text, `custom_apply_to_products` int(10) NOT NULL DEFAULT '0', `custom_design` varchar(255) NOT NULL DEFAULT '', `custom_design_from` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `custom_design_to` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `custom_layout_update` text, `custom_use_parent_settings` int(10) NOT NULL DEFAULT '0', `default_sort_by` varchar(255) NOT NULL DEFAULT '', `description` text, `display_mode` varchar(255) NOT NULL DEFAULT '', `filter_price_range` int(10) NOT NULL DEFAULT '0', `image` varchar(255) NOT NULL DEFAULT '', `include_in_menu` int(10) NOT NULL DEFAULT '0', `is_active` int(10) NOT NULL DEFAULT '0', `is_anchor` int(10) NOT NULL DEFAULT '0', `landing_page` int(10) NOT NULL DEFAULT '0', `meta_description` text, `meta_keywords` text, `meta_title` varchar(255) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `page_layout` varchar(255) NOT NULL DEFAULT '', `path_in_store` text, `thumbnail` varchar(255) NOT NULL DEFAULT '', `url_key` varchar(255) NOT NULL DEFAULT '', `url_path` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`entity_id`), KEY `IDX_STORE` (`store_id`), KEY `IDX_PATH` (`path`), KEY `IDX_LEVEL` (`level`), CONSTRAINT `FK_CATEGORY_FLAT_CATEGORY_ID_STORE_7` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATEGORY_FLAT_STORE_ID_STORE_7` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_flat_store_7` -- LOCK TABLES `catalog_category_flat_store_7` WRITE; /*!40000 ALTER TABLE `catalog_category_flat_store_7` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_flat_store_7` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_flat_store_8` -- DROP TABLE IF EXISTS `catalog_category_flat_store_8`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_flat_store_8` ( `entity_id` int(11) unsigned NOT NULL, `parent_id` int(11) unsigned NOT NULL DEFAULT '0', `created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `path` varchar(255) NOT NULL, `position` int(11) NOT NULL, `level` int(11) NOT NULL, `children_count` int(11) NOT NULL, `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `all_children` text, `available_sort_by` text, `children` text, `custom_apply_to_products` int(10) NOT NULL DEFAULT '0', `custom_design` varchar(255) NOT NULL DEFAULT '', `custom_design_from` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `custom_design_to` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `custom_layout_update` text, `custom_use_parent_settings` int(10) NOT NULL DEFAULT '0', `default_sort_by` varchar(255) NOT NULL DEFAULT '', `description` text, `display_mode` varchar(255) NOT NULL DEFAULT '', `filter_price_range` int(10) NOT NULL DEFAULT '0', `image` varchar(255) NOT NULL DEFAULT '', `include_in_menu` int(10) NOT NULL DEFAULT '0', `is_active` int(10) NOT NULL DEFAULT '0', `is_anchor` int(10) NOT NULL DEFAULT '0', `landing_page` int(10) NOT NULL DEFAULT '0', `meta_description` text, `meta_keywords` text, `meta_title` varchar(255) NOT NULL DEFAULT '', `name` varchar(255) NOT NULL DEFAULT '', `page_layout` varchar(255) NOT NULL DEFAULT '', `path_in_store` text, `thumbnail` varchar(255) NOT NULL DEFAULT '', `url_key` varchar(255) NOT NULL DEFAULT '', `url_path` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`entity_id`), KEY `IDX_STORE` (`store_id`), KEY `IDX_PATH` (`path`), KEY `IDX_LEVEL` (`level`), CONSTRAINT `FK_CATEGORY_FLAT_CATEGORY_ID_STORE_8` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATEGORY_FLAT_STORE_ID_STORE_8` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_flat_store_8` -- LOCK TABLES `catalog_category_flat_store_8` WRITE; /*!40000 ALTER TABLE `catalog_category_flat_store_8` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_flat_store_8` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product` -- DROP TABLE IF EXISTS `catalog_category_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_product` ( `category_id` int(10) unsigned NOT NULL DEFAULT '0', `product_id` int(10) unsigned NOT NULL DEFAULT '0', `position` int(10) NOT NULL DEFAULT '0', UNIQUE KEY `UNQ_CATEGORY_PRODUCT` (`category_id`,`product_id`), KEY `CATALOG_CATEGORY_PRODUCT_CATEGORY` (`category_id`), KEY `CATALOG_CATEGORY_PRODUCT_PRODUCT` (`product_id`), CONSTRAINT `CATALOG_CATEGORY_PRODUCT_CATEGORY` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `CATALOG_CATEGORY_PRODUCT_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_product` -- LOCK TABLES `catalog_category_product` WRITE; /*!40000 ALTER TABLE `catalog_category_product` DISABLE KEYS */; INSERT INTO `catalog_category_product` VALUES (2,3,0),(2,4,0),(2,5,0),(2,6,0),(2,7,1),(2,8,0),(2,9,0),(2,10,0),(2,11,0),(2,12,0),(2,13,0),(2,14,0),(2,15,0),(2,16,0),(2,17,0),(2,18,0),(2,19,0),(2,20,0),(2,21,0),(2,22,0),(2,23,0),(2,24,0),(2,26,0),(2,27,0),(2,28,0),(2,29,0),(2,30,0),(2,31,0),(2,32,0),(2,33,0),(2,34,0),(2,35,0),(2,36,0),(2,37,0),(2,38,0),(2,39,0),(2,40,0),(2,41,0),(2,42,0),(2,43,0),(2,44,0),(2,45,0),(2,46,0),(2,47,0),(2,48,0),(2,49,0),(2,50,0),(2,51,0),(2,52,0),(2,53,0),(2,54,0),(2,55,0),(2,56,0),(2,57,0),(2,58,0),(2,59,0),(2,60,0),(2,61,0),(2,62,0),(2,63,0),(2,64,0),(2,65,0),(2,66,0),(2,67,0),(2,68,0),(2,70,0),(2,71,0),(2,73,0),(2,74,0),(2,75,0),(2,76,0),(2,77,0),(2,78,0),(2,79,0),(2,80,0),(2,81,0),(2,82,0),(2,83,0),(2,84,0),(2,85,0),(2,86,0),(2,87,0),(2,88,0),(2,89,0),(2,90,0),(2,91,0),(2,92,0),(2,93,0),(2,94,0),(2,95,0),(2,97,0),(2,98,0),(2,99,0),(2,100,0),(2,101,0),(2,102,0),(2,103,0),(2,104,0),(2,105,0),(2,106,0),(2,107,0),(2,108,0),(2,109,0),(2,110,0),(2,111,0),(2,112,0),(2,113,0),(2,114,0),(2,115,0),(2,116,0),(2,117,0),(2,118,0),(2,119,0),(2,120,0),(2,121,0),(2,122,1),(2,123,1),(2,124,1),(2,125,1),(2,126,1),(2,127,1),(2,128,1),(2,129,0),(2,130,0),(2,131,0),(2,132,0),(2,133,0),(2,134,0),(2,135,0),(2,136,0),(2,137,0),(2,138,0),(2,139,0),(2,140,0),(2,141,0),(2,142,0),(2,143,0),(2,144,0),(2,145,0),(2,146,0),(2,147,0),(2,148,0),(2,149,0),(2,150,0),(2,151,0),(2,152,0),(2,153,0),(2,154,0),(2,155,0),(2,156,0),(2,157,0),(2,158,0),(2,159,0),(2,160,0),(2,161,0),(2,162,0),(2,163,0),(2,164,0),(2,165,0),(2,166,0),(2,167,0),(2,168,0),(2,169,0),(2,170,0),(2,171,0),(2,172,1),(2,173,1),(2,174,1),(2,175,1),(2,176,1),(2,177,1),(2,178,1),(2,181,0),(2,182,1),(2,184,1),(2,190,1),(2,191,1),(2,192,1),(2,193,1),(2,195,1),(2,196,1),(2,197,1),(2,202,1),(2,204,1),(2,205,1),(2,206,1),(2,209,1),(2,210,1),(2,212,1),(2,217,1),(2,218,1),(2,219,1),(2,220,1),(2,221,1),(2,232,1),(2,237,1),(2,238,1),(2,240,1),(2,241,1),(2,243,1),(2,244,1),(3,97,1),(3,98,1),(3,99,1),(3,100,1),(3,101,1),(3,102,1),(3,104,1),(3,162,0),(3,163,0),(3,164,0),(3,165,0),(3,166,0),(3,167,0),(3,168,1),(3,169,0),(3,170,0),(3,171,0),(3,220,1),(4,105,1),(4,106,1),(4,107,1),(4,108,1),(4,109,1),(4,110,1),(4,111,1),(4,112,1),(5,97,0),(5,98,0),(5,99,0),(5,100,0),(5,101,0),(5,102,0),(5,104,0),(6,122,1),(6,123,1),(6,124,1),(6,125,1),(6,126,1),(6,127,1),(6,128,1),(7,130,1),(7,131,1),(7,132,1),(7,133,1),(7,134,1),(7,135,1),(7,136,1),(8,30,0),(8,36,0),(8,63,0),(8,65,0),(8,66,0),(8,70,0),(8,114,1),(8,115,1),(8,116,1),(8,117,1),(8,118,1),(8,119,1),(8,120,1),(9,137,1),(11,89,1),(11,90,1),(11,91,1),(11,92,1),(11,93,1),(11,94,1),(11,161,1),(12,3,1),(12,4,1),(12,8,1),(12,9,1),(12,10,1),(12,11,1),(12,12,1),(12,13,1),(12,14,1),(12,15,1),(12,16,1),(12,17,1),(12,18,1),(12,19,1),(12,20,1),(12,21,1),(12,22,1),(12,23,1),(12,24,1),(12,26,1),(12,27,1),(12,28,1),(12,29,1),(12,30,1),(12,31,1),(12,32,1),(12,33,1),(12,34,1),(12,35,1),(12,36,1),(12,37,1),(12,38,1),(12,39,1),(12,40,1),(12,41,1),(12,42,1),(12,43,1),(12,44,1),(12,45,1),(12,46,1),(12,47,1),(12,48,1),(12,49,1),(12,50,1),(12,51,1),(12,52,1),(12,53,1),(12,54,1),(12,55,1),(12,56,1),(12,57,1),(12,58,1),(12,59,1),(12,60,1),(12,61,1),(12,62,1),(12,63,1),(12,64,1),(12,65,1),(12,66,1),(12,68,1),(12,70,1),(12,71,1),(12,76,1),(12,77,1),(12,78,1),(12,80,1),(12,81,1),(12,82,1),(12,83,1),(12,84,1),(12,85,1),(12,86,1),(12,87,1),(12,88,1),(12,143,1),(12,159,1),(12,160,1),(12,194,1),(12,196,1),(12,200,1),(13,3,1),(13,4,1),(13,5,1),(13,6,1),(13,8,1),(13,195,1),(14,9,1),(14,10,1),(14,11,1),(14,12,1),(14,13,1),(14,14,1),(14,15,1),(14,16,1),(14,17,1),(14,18,1),(14,19,1),(14,20,1),(14,21,1),(14,22,1),(14,23,1),(14,24,1),(14,26,1),(14,27,1),(14,28,1),(14,29,1),(14,30,1),(14,31,1),(14,32,1),(14,33,1),(14,34,1),(14,35,1),(14,36,1),(14,62,1),(14,63,1),(14,64,1),(14,65,1),(14,66,1),(14,68,1),(14,70,1),(14,71,1),(14,194,1),(14,196,1),(14,200,1),(14,207,1),(14,208,1),(14,213,1),(15,9,1),(15,10,1),(15,11,1),(15,12,1),(15,13,1),(15,14,1),(15,15,1),(15,16,1),(15,17,1),(15,18,1),(15,19,1),(15,20,1),(15,21,1),(15,22,1),(15,23,1),(15,24,1),(15,26,1),(15,27,1),(15,77,1),(15,80,1),(15,81,1),(15,82,1),(15,94,1),(16,48,1),(16,49,1),(16,50,1),(16,51,1),(16,52,1),(16,53,1),(16,54,1),(16,55,1),(16,56,1),(16,57,1),(16,58,1),(16,59,1),(16,60,1),(16,61,1),(16,62,1),(16,83,1),(16,84,1),(16,85,1),(16,141,1),(16,143,1),(17,37,1),(17,38,1),(17,39,1),(17,40,1),(17,41,1),(17,42,1),(17,43,1),(17,44,1),(17,45,1),(17,46,1),(17,47,1),(17,86,1),(17,87,1),(17,88,1),(17,138,1),(17,141,1),(17,159,1),(17,160,1),(26,80,1),(26,81,1),(26,82,1),(26,142,1),(28,73,1),(28,74,1),(28,75,1),(28,76,1),(28,77,1),(28,139,1),(30,89,0),(30,90,1),(30,91,1),(30,92,1),(30,93,1),(30,95,1),(30,161,1),(31,104,0),(31,106,0),(31,122,0),(31,130,0),(32,97,0),(32,107,0),(32,115,0),(32,123,0),(32,131,0),(33,98,0),(33,108,0),(33,116,0),(33,124,0),(33,132,0),(34,99,0),(34,110,0),(34,118,0),(34,126,0),(34,134,0),(35,102,0),(35,112,0),(35,120,0),(35,128,0),(35,136,0),(35,137,0),(36,162,2),(36,163,1),(36,164,3),(36,165,4),(36,166,5),(36,167,6),(36,168,7),(37,169,1),(37,170,1),(37,171,1),(38,193,1),(38,201,1),(38,202,1),(38,203,1),(38,204,1),(38,205,1),(38,206,1),(38,220,1),(39,7,1),(39,14,1),(39,94,1),(39,127,0),(39,129,0),(39,130,0),(39,131,0),(39,132,0),(39,133,0),(39,134,0),(39,135,0),(39,136,0),(39,140,1),(39,162,0),(39,163,0),(39,164,0),(39,165,0),(39,166,0),(39,167,0),(39,168,0),(39,169,0),(39,170,0),(39,171,0),(39,181,1),(39,204,1),(39,205,1),(39,238,1),(39,242,1),(39,245,1),(40,113,0),(40,114,0),(40,115,0),(40,116,0),(40,117,0),(40,118,0),(40,119,0),(40,120,0),(40,121,0),(40,122,0),(40,123,0),(40,124,0),(40,125,0),(40,126,0),(40,127,0),(40,128,0),(40,129,0),(40,130,0),(40,131,0),(40,132,0),(40,133,0),(40,134,0),(40,135,0),(40,136,0),(41,37,0),(41,38,0),(41,39,0),(41,40,0),(41,41,0),(41,42,0),(41,43,0),(41,44,0),(41,45,0),(41,46,0),(41,47,0),(41,48,0),(41,49,0),(41,50,0),(41,51,0),(41,52,0),(41,53,0),(41,54,0),(41,55,0),(41,56,0),(41,57,0),(41,58,0),(41,59,0),(41,60,0),(41,61,0),(41,62,0),(41,83,0),(41,84,0),(41,85,0),(41,86,0),(41,87,0),(41,88,0),(41,138,0),(41,141,0),(41,143,0),(41,145,0),(41,146,0),(41,147,0),(41,149,0),(41,150,0),(41,151,0),(41,152,0),(41,155,0),(41,156,0),(41,157,0),(41,158,0),(41,159,0),(41,173,1),(41,174,1),(41,175,1),(41,176,1),(41,177,1),(41,178,1),(41,182,1),(42,82,0),(49,129,0),(49,130,0),(49,131,0),(49,132,0),(49,133,0),(49,134,0),(49,135,0),(49,136,0),(50,9,0),(50,10,0),(50,11,0),(50,12,0),(50,13,0),(50,14,0),(50,15,0),(50,16,0),(50,17,0),(50,18,0),(50,19,0),(50,20,0),(50,21,0),(50,22,0),(50,23,0),(50,24,0),(50,26,0),(50,27,0),(50,28,0),(50,32,0),(50,33,0),(50,34,0),(50,35,0),(50,64,0),(50,68,0),(50,194,1),(50,196,1),(50,198,1),(50,200,1),(50,207,1),(50,213,1),(51,3,0),(51,4,0),(51,144,0),(51,195,1),(52,3,1),(52,4,0),(52,5,0),(52,6,0),(52,11,0),(52,14,1),(52,28,0),(52,29,0),(52,30,0),(52,31,0),(52,32,0),(52,33,0),(52,34,0),(52,35,0),(52,36,0),(52,37,0),(52,39,0),(52,41,0),(52,42,0),(52,43,0),(52,44,0),(52,45,0),(52,46,0),(52,47,0),(52,48,0),(52,50,0),(52,51,0),(52,52,0),(52,63,0),(52,64,0),(52,65,0),(52,66,0),(52,67,0),(52,68,0),(52,70,1),(52,71,1),(52,78,0),(52,85,0),(52,87,0),(52,148,0),(52,150,0),(52,151,0),(52,152,0),(52,154,0),(52,156,0),(52,161,0),(52,184,0),(52,189,0),(52,190,0),(52,191,0),(52,192,0),(52,194,0),(52,195,0),(52,196,0),(52,198,0),(52,207,0),(52,208,0),(52,213,0),(52,214,1),(52,215,0),(52,216,0),(52,226,1),(52,227,0),(52,229,1),(52,232,1),(52,237,1),(52,238,1),(52,240,1),(52,241,1),(52,243,1),(52,244,1),(53,181,0),(55,172,1),(55,183,1),(55,185,1),(55,186,1),(55,187,1),(55,197,1),(55,199,1),(59,206,1),(59,219,1),(59,220,1),(61,89,0),(61,90,0),(61,91,0),(61,92,0),(61,94,0),(61,161,0),(61,183,0),(61,185,0),(61,186,0),(61,187,0),(61,209,0),(61,210,0),(61,212,0),(61,218,1),(61,219,1),(61,230,1),(61,231,1),(61,236,1),(61,243,1),(61,250,1),(61,251,1),(65,209,0),(65,210,0),(65,212,0),(66,193,0),(66,201,0),(66,202,0),(66,203,0),(66,206,0),(66,220,1),(70,217,1),(70,218,1),(70,219,1),(70,243,0),(72,217,0),(72,218,0),(73,219,0),(73,223,1),(73,243,1),(75,4,0),(75,5,0),(75,6,0),(75,7,1),(75,12,0),(75,24,0),(75,26,0),(75,28,0),(75,29,0),(75,31,1),(75,33,0),(75,34,0),(75,35,0),(75,64,0),(75,67,0),(75,68,0),(75,70,0),(75,81,0),(75,82,0),(75,87,0),(75,94,1),(75,140,1),(75,144,0),(75,184,0),(75,190,0),(75,191,0),(75,192,0),(75,194,0),(75,195,0),(75,196,0),(75,198,0),(75,200,0),(75,207,0),(75,208,0),(75,211,0),(75,213,0),(75,214,0),(75,215,0),(75,216,0),(75,221,0),(75,226,0),(75,227,0),(75,229,0),(75,232,1),(75,237,1),(75,238,1),(75,240,1),(75,241,1),(75,242,1),(75,244,1),(75,245,1),(76,48,0),(76,49,0),(76,50,0),(76,51,0),(76,52,0),(76,53,0),(76,54,0),(76,55,0),(76,56,0),(76,57,0),(76,58,0),(76,59,0),(76,60,0),(76,61,0),(76,62,0),(76,83,0),(76,84,0),(76,85,0),(76,141,0),(76,143,0),(76,145,0),(76,146,0),(76,147,0),(77,37,0),(77,38,0),(77,39,0),(77,40,0),(77,41,0),(77,42,0),(77,43,0),(77,44,0),(77,46,0),(77,47,0),(77,86,0),(77,87,0),(77,88,0),(77,138,0),(77,148,0),(77,149,0),(77,150,0),(77,151,0),(77,152,0),(77,153,0),(77,154,0),(77,155,0),(77,156,0),(77,157,0),(77,158,0),(77,159,0),(77,160,0),(78,48,0),(78,49,0),(78,50,0),(78,51,0),(78,52,0),(78,53,0),(78,54,0),(78,55,0),(78,56,0),(78,57,0),(78,58,0),(78,59,0),(78,60,0),(78,61,0),(78,62,0),(78,83,0),(78,84,0),(78,85,0),(78,141,1),(78,143,0),(78,145,0),(78,146,0),(78,147,0),(78,173,2),(78,174,3),(78,175,4),(78,176,5),(78,177,6),(78,178,7),(78,182,8),(79,91,3),(79,92,2),(79,172,1),(79,197,4),(80,183,1),(80,185,2),(80,186,3),(80,187,4),(81,230,0),(81,231,1),(82,9,0),(82,10,0),(82,12,0),(82,14,0),(82,15,0),(82,17,0),(82,18,0),(82,19,0),(82,20,0),(82,21,0),(82,22,0),(82,23,0),(82,26,0),(82,27,0),(82,77,0),(82,80,0),(82,81,0),(82,82,0),(82,94,0),(82,103,0),(82,144,0),(82,221,0),(82,240,1),(82,242,1),(84,6,0),(84,28,0),(84,29,0),(84,31,0),(84,32,0),(84,33,0),(84,34,0),(84,35,0),(84,64,0),(84,68,0),(84,194,0),(84,195,0),(84,196,0),(84,198,0),(84,200,0),(84,207,0),(84,208,0),(84,211,0),(84,213,0),(84,241,1),(85,30,0),(85,184,0),(85,190,0),(85,191,0),(85,192,0),(85,214,0),(85,215,0),(85,216,0),(85,237,1),(85,238,1),(86,193,0),(86,201,0),(86,202,0),(86,203,0),(86,204,0),(86,205,0),(86,206,0),(87,7,0),(87,8,0),(87,78,0),(87,79,0),(87,140,0),(88,3,0),(88,4,0),(88,5,0),(88,11,0),(88,36,0),(88,63,0),(88,67,0),(88,70,0),(88,71,0),(88,181,0),(88,226,0),(88,229,0),(88,244,1),(88,245,1),(89,234,0),(89,236,0),(90,250,0),(90,251,1); /*!40000 ALTER TABLE `catalog_category_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index` -- DROP TABLE IF EXISTS `catalog_category_product_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_product_index` ( `category_id` int(10) unsigned NOT NULL DEFAULT '0', `product_id` int(10) unsigned NOT NULL DEFAULT '0', `position` int(10) unsigned DEFAULT NULL, `is_parent` tinyint(1) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `visibility` tinyint(3) unsigned NOT NULL, UNIQUE KEY `UNQ_CATEGORY_PRODUCT` (`category_id`,`product_id`,`store_id`), KEY `FK_CATALOG_CATEGORY_PRODUCT_INDEX_CATEGORY_ENTITY` (`category_id`), KEY `IDX_JOIN` (`product_id`,`store_id`,`category_id`,`visibility`), KEY `IDX_BASE` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`), CONSTRAINT `FK_CATALOG_CATEGORY_PROD_IDX_CATEGORY_ENTITY` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_PROD_IDX_PROD_ENTITY` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATEGORY_PRODUCT_INDEX_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_product_index` -- LOCK TABLES `catalog_category_product_index` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index` DISABLE KEYS */; INSERT INTO `catalog_category_product_index` VALUES (2,242,90001,0,1,4),(2,245,90001,0,1,4),(2,223,120001,0,1,4),(2,183,150001,0,1,4),(2,185,150001,0,1,4),(2,186,150001,0,1,4),(2,187,150001,0,1,4),(2,199,150001,0,1,4),(2,207,180001,0,1,4),(2,208,180001,0,1,4),(2,213,180001,0,1,4),(2,234,200000,0,1,4),(2,230,300001,0,1,4),(2,231,300001,0,1,4),(2,236,300001,0,1,4),(2,250,300001,0,1,4),(2,251,300001,0,1,4),(2,198,360001,0,1,4),(2,215,390000,0,1,4),(2,216,390000,0,1,4),(2,227,390000,0,1,4),(2,214,390001,0,1,4),(2,226,390001,0,1,4),(2,229,390001,0,1,4),(2,201,400001,0,1,4),(2,203,400001,0,1,4),(2,211,440000,0,1,4),(2,194,650001,0,1,4),(2,200,650001,0,1,4),(2,3,0,1,1,4),(2,4,0,1,1,4),(2,5,0,1,1,4),(2,6,0,1,1,4),(2,8,0,1,1,4),(2,9,0,1,1,4),(2,10,0,1,1,4),(2,11,0,1,1,4),(2,12,0,1,1,4),(2,14,0,1,1,4),(2,15,0,1,1,4),(2,17,0,1,1,4),(2,18,0,1,1,4),(2,19,0,1,1,4),(2,20,0,1,1,4),(2,22,0,1,1,4),(2,26,0,1,1,4),(2,27,0,1,1,4),(2,28,0,1,1,4),(2,29,0,1,1,4),(2,30,0,1,1,4),(2,31,0,1,1,4),(2,33,0,1,1,4),(2,34,0,1,1,4),(2,35,0,1,1,4),(2,36,0,1,1,4),(2,37,0,1,1,4),(2,41,0,1,1,4),(2,43,0,1,1,4),(2,48,0,1,1,4),(2,50,0,1,1,4),(2,51,0,1,1,4),(2,52,0,1,1,4),(2,53,0,1,1,4),(2,58,0,1,1,4),(2,64,0,1,1,4),(2,67,0,1,1,4),(2,68,0,1,1,4),(2,70,0,1,1,4),(2,71,0,1,1,4),(2,77,0,1,1,4),(2,78,0,1,1,4),(2,79,0,1,1,4),(2,80,0,1,1,4),(2,82,0,1,1,4),(2,87,0,1,1,4),(2,89,0,1,1,4),(2,90,0,1,1,4),(2,93,0,1,1,4),(2,94,0,1,1,4),(2,95,0,1,1,4),(2,97,0,1,1,4),(2,98,0,1,1,4),(2,99,0,1,1,4),(2,100,0,1,1,4),(2,101,0,1,1,4),(2,102,0,1,1,4),(2,103,0,1,1,4),(2,104,0,1,1,4),(2,113,0,1,1,4),(2,114,0,1,1,4),(2,115,0,1,1,4),(2,116,0,1,1,4),(2,117,0,1,1,4),(2,118,0,1,1,4),(2,119,0,1,1,4),(2,120,0,1,1,4),(2,130,0,1,1,4),(2,131,0,1,1,4),(2,132,0,1,1,4),(2,133,0,1,1,4),(2,134,0,1,1,4),(2,135,0,1,1,4),(2,136,0,1,1,4),(2,140,0,1,1,4),(2,142,0,1,1,4),(2,144,0,1,1,4),(2,152,0,1,1,4),(2,156,0,1,1,4),(2,162,0,1,1,4),(2,163,0,1,1,4),(2,164,0,1,1,4),(2,165,0,1,1,4),(2,166,0,1,1,4),(2,167,0,1,1,4),(2,168,0,1,1,4),(2,169,0,1,1,4),(2,170,0,1,1,4),(2,171,0,1,1,4),(2,181,0,1,1,4),(2,228,0,1,1,4),(2,239,0,1,1,4),(2,249,0,1,1,4),(2,7,1,1,1,4),(2,122,1,1,1,4),(2,123,1,1,1,4),(2,124,1,1,1,4),(2,125,1,1,1,4),(2,126,1,1,1,4),(2,127,1,1,1,4),(2,128,1,1,1,4),(2,172,1,1,1,4),(2,173,1,1,1,4),(2,174,1,1,1,4),(2,175,1,1,1,4),(2,176,1,1,1,4),(2,177,1,1,1,4),(2,178,1,1,1,4),(2,182,1,1,1,4),(2,184,1,1,1,4),(2,190,1,1,1,4),(2,191,1,1,1,4),(2,192,1,1,1,4),(2,193,1,1,1,4),(2,195,1,1,1,4),(2,196,1,1,1,4),(2,197,1,1,1,4),(2,202,1,1,1,4),(2,204,1,1,1,4),(2,205,1,1,1,4),(2,206,1,1,1,4),(2,209,1,1,1,4),(2,210,1,1,1,4),(2,212,1,1,1,4),(2,217,1,1,1,4),(2,218,1,1,1,4),(2,219,1,1,1,4),(2,220,1,1,1,4),(2,221,1,1,1,4),(2,232,1,1,1,4),(2,237,1,1,1,4),(2,238,1,1,1,4),(2,240,1,1,1,4),(2,241,1,1,1,4),(2,243,1,1,1,4),(2,244,1,1,1,4),(3,162,0,1,1,4),(3,163,0,1,1,4),(3,164,0,1,1,4),(3,165,0,1,1,4),(3,166,0,1,1,4),(3,167,0,1,1,4),(3,169,0,1,1,4),(3,170,0,1,1,4),(3,171,0,1,1,4),(3,97,1,1,1,4),(3,98,1,1,1,4),(3,99,1,1,1,4),(3,100,1,1,1,4),(3,101,1,1,1,4),(3,102,1,1,1,4),(3,104,1,1,1,4),(3,168,1,1,1,4),(3,220,1,1,1,4),(5,97,0,1,1,4),(5,98,0,1,1,4),(5,99,0,1,1,4),(5,100,0,1,1,4),(5,101,0,1,1,4),(5,102,0,1,1,4),(5,104,0,1,1,4),(6,122,1,1,1,4),(6,123,1,1,1,4),(6,124,1,1,1,4),(6,125,1,1,1,4),(6,126,1,1,1,4),(6,127,1,1,1,4),(6,128,1,1,1,4),(7,130,1,1,1,4),(7,131,1,1,1,4),(7,132,1,1,1,4),(7,133,1,1,1,4),(7,134,1,1,1,4),(7,135,1,1,1,4),(7,136,1,1,1,4),(8,30,0,1,1,4),(8,36,0,1,1,4),(8,70,0,1,1,4),(8,114,1,1,1,4),(8,115,1,1,1,4),(8,116,1,1,1,4),(8,117,1,1,1,4),(8,118,1,1,1,4),(8,119,1,1,1,4),(8,120,1,1,1,4),(11,89,1,1,1,4),(11,90,1,1,1,4),(11,93,1,1,1,4),(11,94,1,1,1,4),(12,3,1,1,1,4),(12,4,1,1,1,4),(12,8,1,1,1,4),(12,9,1,1,1,4),(12,10,1,1,1,4),(12,11,1,1,1,4),(12,12,1,1,1,4),(12,14,1,1,1,4),(12,15,1,1,1,4),(12,17,1,1,1,4),(12,18,1,1,1,4),(12,19,1,1,1,4),(12,20,1,1,1,4),(12,22,1,1,1,4),(12,26,1,1,1,4),(12,27,1,1,1,4),(12,28,1,1,1,4),(12,29,1,1,1,4),(12,30,1,1,1,4),(12,31,1,1,1,4),(12,33,1,1,1,4),(12,34,1,1,1,4),(12,35,1,1,1,4),(12,36,1,1,1,4),(12,37,1,1,1,4),(12,41,1,1,1,4),(12,43,1,1,1,4),(12,48,1,1,1,4),(12,50,1,1,1,4),(12,51,1,1,1,4),(12,52,1,1,1,4),(12,53,1,1,1,4),(12,58,1,1,1,4),(12,64,1,1,1,4),(12,68,1,1,1,4),(12,70,1,1,1,4),(12,77,1,1,1,4),(12,78,1,1,1,4),(12,80,1,1,1,4),(12,82,1,1,1,4),(12,87,1,1,1,4),(12,194,1,1,1,4),(12,196,1,1,1,4),(12,200,1,1,1,4),(13,3,1,1,1,4),(13,4,1,1,1,4),(13,5,1,1,1,4),(13,6,1,1,1,4),(13,8,1,1,1,4),(13,195,1,1,1,4),(14,9,1,1,1,4),(14,10,1,1,1,4),(14,11,1,1,1,4),(14,12,1,1,1,4),(14,14,1,1,1,4),(14,15,1,1,1,4),(14,17,1,1,1,4),(14,18,1,1,1,4),(14,19,1,1,1,4),(14,20,1,1,1,4),(14,22,1,1,1,4),(14,26,1,1,1,4),(14,27,1,1,1,4),(14,28,1,1,1,4),(14,29,1,1,1,4),(14,30,1,1,1,4),(14,31,1,1,1,4),(14,33,1,1,1,4),(14,34,1,1,1,4),(14,35,1,1,1,4),(14,36,1,1,1,4),(14,64,1,1,1,4),(14,68,1,1,1,4),(14,70,1,1,1,4),(14,194,1,1,1,4),(14,196,1,1,1,4),(14,200,1,1,1,4),(14,207,1,1,1,4),(14,208,1,1,1,4),(14,213,1,1,1,4),(15,9,1,1,1,4),(15,10,1,1,1,4),(15,11,1,1,1,4),(15,12,1,1,1,4),(15,14,1,1,1,4),(15,15,1,1,1,4),(15,17,1,1,1,4),(15,18,1,1,1,4),(15,19,1,1,1,4),(15,20,1,1,1,4),(15,22,1,1,1,4),(15,26,1,1,1,4),(15,27,1,1,1,4),(15,77,1,1,1,4),(15,80,1,1,1,4),(15,82,1,1,1,4),(15,94,1,1,1,4),(16,48,1,1,1,4),(16,50,1,1,1,4),(16,51,1,1,1,4),(16,52,1,1,1,4),(16,53,1,1,1,4),(16,58,1,1,1,4),(17,37,1,1,1,4),(17,41,1,1,1,4),(17,43,1,1,1,4),(17,87,1,1,1,4),(26,80,1,1,1,4),(26,82,1,1,1,4),(26,142,1,1,1,4),(28,77,1,1,1,4),(30,89,0,1,1,4),(30,90,1,1,1,4),(30,93,1,1,1,4),(30,95,1,1,1,4),(31,104,0,1,1,4),(31,122,0,1,1,4),(31,130,0,1,1,4),(32,97,0,1,1,4),(32,115,0,1,1,4),(32,123,0,1,1,4),(32,131,0,1,1,4),(33,98,0,1,1,4),(33,116,0,1,1,4),(33,124,0,1,1,4),(33,132,0,1,1,4),(34,99,0,1,1,4),(34,118,0,1,1,4),(34,126,0,1,1,4),(34,134,0,1,1,4),(35,102,0,1,1,4),(35,120,0,1,1,4),(35,128,0,1,1,4),(35,136,0,1,1,4),(36,163,1,1,1,4),(36,162,2,1,1,4),(36,164,3,1,1,4),(36,165,4,1,1,4),(36,166,5,1,1,4),(36,167,6,1,1,4),(36,168,7,1,1,4),(37,169,1,1,1,4),(37,170,1,1,1,4),(37,171,1,1,1,4),(38,193,1,1,1,4),(38,201,1,1,1,4),(38,202,1,1,1,4),(38,203,1,1,1,4),(38,204,1,1,1,4),(38,205,1,1,1,4),(38,206,1,1,1,4),(38,220,1,1,1,4),(39,127,0,1,1,4),(39,130,0,1,1,4),(39,131,0,1,1,4),(39,132,0,1,1,4),(39,133,0,1,1,4),(39,134,0,1,1,4),(39,135,0,1,1,4),(39,136,0,1,1,4),(39,162,0,1,1,4),(39,163,0,1,1,4),(39,164,0,1,1,4),(39,165,0,1,1,4),(39,166,0,1,1,4),(39,167,0,1,1,4),(39,168,0,1,1,4),(39,169,0,1,1,4),(39,170,0,1,1,4),(39,171,0,1,1,4),(39,7,1,1,1,4),(39,14,1,1,1,4),(39,94,1,1,1,4),(39,140,1,1,1,4),(39,181,1,1,1,4),(39,204,1,1,1,4),(39,205,1,1,1,4),(39,238,1,1,1,4),(39,242,1,1,1,4),(39,245,1,1,1,4),(40,113,0,1,1,4),(40,114,0,1,1,4),(40,115,0,1,1,4),(40,116,0,1,1,4),(40,117,0,1,1,4),(40,118,0,1,1,4),(40,119,0,1,1,4),(40,120,0,1,1,4),(40,122,0,1,1,4),(40,123,0,1,1,4),(40,124,0,1,1,4),(40,125,0,1,1,4),(40,126,0,1,1,4),(40,127,0,1,1,4),(40,128,0,1,1,4),(40,130,0,1,1,4),(40,131,0,1,1,4),(40,132,0,1,1,4),(40,133,0,1,1,4),(40,134,0,1,1,4),(40,135,0,1,1,4),(40,136,0,1,1,4),(41,37,0,1,1,4),(41,41,0,1,1,4),(41,43,0,1,1,4),(41,48,0,1,1,4),(41,50,0,1,1,4),(41,51,0,1,1,4),(41,52,0,1,1,4),(41,53,0,1,1,4),(41,58,0,1,1,4),(41,87,0,1,1,4),(41,152,0,1,1,4),(41,156,0,1,1,4),(41,173,1,1,1,4),(41,174,1,1,1,4),(41,175,1,1,1,4),(41,176,1,1,1,4),(41,177,1,1,1,4),(41,178,1,1,1,4),(41,182,1,1,1,4),(42,82,0,1,1,4),(49,130,0,1,1,4),(49,131,0,1,1,4),(49,132,0,1,1,4),(49,133,0,1,1,4),(49,134,0,1,1,4),(49,135,0,1,1,4),(49,136,0,1,1,4),(50,9,0,1,1,4),(50,10,0,1,1,4),(50,11,0,1,1,4),(50,12,0,1,1,4),(50,14,0,1,1,4),(50,15,0,1,1,4),(50,17,0,1,1,4),(50,18,0,1,1,4),(50,19,0,1,1,4),(50,20,0,1,1,4),(50,22,0,1,1,4),(50,26,0,1,1,4),(50,27,0,1,1,4),(50,28,0,1,1,4),(50,33,0,1,1,4),(50,34,0,1,1,4),(50,35,0,1,1,4),(50,64,0,1,1,4),(50,68,0,1,1,4),(50,194,1,1,1,4),(50,196,1,1,1,4),(50,198,1,1,1,4),(50,200,1,1,1,4),(50,207,1,1,1,4),(50,213,1,1,1,4),(51,3,0,1,1,4),(51,4,0,1,1,4),(51,144,0,1,1,4),(51,195,1,1,1,4),(52,4,0,1,1,4),(52,5,0,1,1,4),(52,6,0,1,1,4),(52,11,0,1,1,4),(52,28,0,1,1,4),(52,29,0,1,1,4),(52,30,0,1,1,4),(52,31,0,1,1,4),(52,33,0,1,1,4),(52,34,0,1,1,4),(52,35,0,1,1,4),(52,36,0,1,1,4),(52,37,0,1,1,4),(52,41,0,1,1,4),(52,43,0,1,1,4),(52,48,0,1,1,4),(52,50,0,1,1,4),(52,51,0,1,1,4),(52,52,0,1,1,4),(52,64,0,1,1,4),(52,67,0,1,1,4),(52,68,0,1,1,4),(52,78,0,1,1,4),(52,87,0,1,1,4),(52,152,0,1,1,4),(52,156,0,1,1,4),(52,184,0,1,1,4),(52,190,0,1,1,4),(52,191,0,1,1,4),(52,192,0,1,1,4),(52,194,0,1,1,4),(52,195,0,1,1,4),(52,196,0,1,1,4),(52,198,0,1,1,4),(52,207,0,1,1,4),(52,208,0,1,1,4),(52,213,0,1,1,4),(52,215,0,1,1,4),(52,216,0,1,1,4),(52,227,0,1,1,4),(52,3,1,1,1,4),(52,14,1,1,1,4),(52,70,1,1,1,4),(52,214,1,1,1,4),(52,226,1,1,1,4),(52,229,1,1,1,4),(52,232,1,1,1,4),(52,237,1,1,1,4),(52,238,1,1,1,4),(52,240,1,1,1,4),(52,241,1,1,1,4),(52,243,1,1,1,4),(52,244,1,1,1,4),(53,181,0,1,1,4),(55,172,1,1,1,4),(55,183,1,1,1,4),(55,185,1,1,1,4),(55,186,1,1,1,4),(55,187,1,1,1,4),(55,197,1,1,1,4),(55,199,1,1,1,4),(59,206,1,1,1,4),(59,219,1,1,1,4),(59,220,1,1,1,4),(61,193,200000,0,1,4),(61,201,200000,0,1,4),(61,202,200000,0,1,4),(61,203,200000,0,1,4),(61,206,200000,0,1,4),(61,220,200001,0,1,4),(61,234,240000,0,1,4),(61,89,0,1,1,4),(61,90,0,1,1,4),(61,94,0,1,1,4),(61,183,0,1,1,4),(61,185,0,1,1,4),(61,186,0,1,1,4),(61,187,0,1,1,4),(61,209,0,1,1,4),(61,210,0,1,1,4),(61,212,0,1,1,4),(61,218,1,1,1,4),(61,219,1,1,1,4),(61,230,1,1,1,4),(61,231,1,1,1,4),(61,236,1,1,1,4),(61,243,1,1,1,4),(61,250,1,1,1,4),(61,251,1,1,1,4),(65,209,0,1,1,4),(65,210,0,1,1,4),(65,212,0,1,1,4),(66,193,0,1,1,4),(66,201,0,1,1,4),(66,202,0,1,1,4),(66,203,0,1,1,4),(66,206,0,1,1,4),(66,220,1,1,1,4),(70,223,120001,0,1,4),(70,243,0,1,1,4),(70,217,1,1,1,4),(70,218,1,1,1,4),(70,219,1,1,1,4),(72,217,0,1,1,4),(72,218,0,1,1,4),(73,219,0,1,1,4),(73,223,1,1,1,4),(73,243,1,1,1,4),(75,9,100000,0,1,4),(75,10,100000,0,1,4),(75,14,100000,0,1,4),(75,15,100000,0,1,4),(75,17,100000,0,1,4),(75,18,100000,0,1,4),(75,19,100000,0,1,4),(75,20,100000,0,1,4),(75,22,100000,0,1,4),(75,27,100000,0,1,4),(75,77,100000,0,1,4),(75,80,100000,0,1,4),(75,103,100000,0,1,4),(75,30,200000,0,1,4),(75,193,250000,0,1,4),(75,201,250000,0,1,4),(75,202,250000,0,1,4),(75,203,250000,0,1,4),(75,204,250000,0,1,4),(75,205,250000,0,1,4),(75,206,250000,0,1,4),(75,4,0,1,1,4),(75,5,0,1,1,4),(75,6,0,1,1,4),(75,12,0,1,1,4),(75,26,0,1,1,4),(75,28,0,1,1,4),(75,29,0,1,1,4),(75,33,0,1,1,4),(75,34,0,1,1,4),(75,35,0,1,1,4),(75,64,0,1,1,4),(75,67,0,1,1,4),(75,68,0,1,1,4),(75,70,0,1,1,4),(75,82,0,1,1,4),(75,87,0,1,1,4),(75,144,0,1,1,4),(75,184,0,1,1,4),(75,190,0,1,1,4),(75,191,0,1,1,4),(75,192,0,1,1,4),(75,194,0,1,1,4),(75,195,0,1,1,4),(75,196,0,1,1,4),(75,198,0,1,1,4),(75,200,0,1,1,4),(75,207,0,1,1,4),(75,208,0,1,1,4),(75,211,0,1,1,4),(75,213,0,1,1,4),(75,214,0,1,1,4),(75,215,0,1,1,4),(75,216,0,1,1,4),(75,221,0,1,1,4),(75,226,0,1,1,4),(75,227,0,1,1,4),(75,229,0,1,1,4),(75,7,1,1,1,4),(75,31,1,1,1,4),(75,94,1,1,1,4),(75,140,1,1,1,4),(75,232,1,1,1,4),(75,237,1,1,1,4),(75,238,1,1,1,4),(75,240,1,1,1,4),(75,241,1,1,1,4),(75,242,1,1,1,4),(75,244,1,1,1,4),(75,245,1,1,1,4),(76,48,0,1,1,4),(76,50,0,1,1,4),(76,51,0,1,1,4),(76,52,0,1,1,4),(76,53,0,1,1,4),(76,58,0,1,1,4),(77,37,0,1,1,4),(77,41,0,1,1,4),(77,43,0,1,1,4),(77,87,0,1,1,4),(77,152,0,1,1,4),(77,156,0,1,1,4),(78,48,0,1,1,4),(78,50,0,1,1,4),(78,51,0,1,1,4),(78,52,0,1,1,4),(78,53,0,1,1,4),(78,58,0,1,1,4),(78,173,2,1,1,4),(78,174,3,1,1,4),(78,175,4,1,1,4),(78,176,5,1,1,4),(78,177,6,1,1,4),(78,178,7,1,1,4),(78,182,8,1,1,4),(79,172,1,1,1,4),(79,197,4,1,1,4),(80,183,1,1,1,4),(80,185,2,1,1,4),(80,186,3,1,1,4),(80,187,4,1,1,4),(81,230,0,1,1,4),(81,231,1,1,1,4),(82,9,0,1,1,4),(82,10,0,1,1,4),(82,12,0,1,1,4),(82,14,0,1,1,4),(82,15,0,1,1,4),(82,17,0,1,1,4),(82,18,0,1,1,4),(82,19,0,1,1,4),(82,20,0,1,1,4),(82,22,0,1,1,4),(82,26,0,1,1,4),(82,27,0,1,1,4),(82,77,0,1,1,4),(82,80,0,1,1,4),(82,82,0,1,1,4),(82,94,0,1,1,4),(82,103,0,1,1,4),(82,144,0,1,1,4),(82,221,0,1,1,4),(82,240,1,1,1,4),(82,242,1,1,1,4),(84,6,0,1,1,4),(84,28,0,1,1,4),(84,29,0,1,1,4),(84,31,0,1,1,4),(84,33,0,1,1,4),(84,34,0,1,1,4),(84,35,0,1,1,4),(84,64,0,1,1,4),(84,68,0,1,1,4),(84,194,0,1,1,4),(84,195,0,1,1,4),(84,196,0,1,1,4),(84,198,0,1,1,4),(84,200,0,1,1,4),(84,207,0,1,1,4),(84,208,0,1,1,4),(84,211,0,1,1,4),(84,213,0,1,1,4),(84,241,1,1,1,4),(85,30,0,1,1,4),(85,184,0,1,1,4),(85,190,0,1,1,4),(85,191,0,1,1,4),(85,192,0,1,1,4),(85,214,0,1,1,4),(85,215,0,1,1,4),(85,216,0,1,1,4),(85,237,1,1,1,4),(85,238,1,1,1,4),(86,193,0,1,1,4),(86,201,0,1,1,4),(86,202,0,1,1,4),(86,203,0,1,1,4),(86,204,0,1,1,4),(86,205,0,1,1,4),(86,206,0,1,1,4),(87,7,0,1,1,4),(87,8,0,1,1,4),(87,78,0,1,1,4),(87,79,0,1,1,4),(87,140,0,1,1,4),(88,3,0,1,1,4),(88,4,0,1,1,4),(88,5,0,1,1,4),(88,11,0,1,1,4),(88,36,0,1,1,4),(88,67,0,1,1,4),(88,70,0,1,1,4),(88,181,0,1,1,4),(88,226,0,1,1,4),(88,229,0,1,1,4),(88,244,1,1,1,4),(88,245,1,1,1,4),(89,234,0,1,1,4),(89,236,0,1,1,4),(90,250,0,1,1,4),(90,251,1,1,1,4); /*!40000 ALTER TABLE `catalog_category_product_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index_enbl_idx` -- DROP TABLE IF EXISTS `catalog_category_product_index_enbl_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_product_index_enbl_idx` ( `product_id` int(10) unsigned NOT NULL DEFAULT '0', `visibility` int(11) unsigned NOT NULL DEFAULT '0', KEY `IDX_PRODUCT` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_product_index_enbl_idx` -- LOCK TABLES `catalog_category_product_index_enbl_idx` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index_enbl_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product_index_enbl_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index_enbl_tmp` -- DROP TABLE IF EXISTS `catalog_category_product_index_enbl_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_product_index_enbl_tmp` ( `product_id` int(10) unsigned NOT NULL DEFAULT '0', `visibility` int(11) unsigned NOT NULL DEFAULT '0', KEY `IDX_PRODUCT` (`product_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_product_index_enbl_tmp` -- LOCK TABLES `catalog_category_product_index_enbl_tmp` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index_enbl_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product_index_enbl_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index_idx` -- DROP TABLE IF EXISTS `catalog_category_product_index_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_product_index_idx` ( `category_id` int(10) unsigned NOT NULL DEFAULT '0', `product_id` int(10) unsigned NOT NULL DEFAULT '0', `position` int(10) NOT NULL DEFAULT '0', `is_parent` tinyint(1) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `visibility` tinyint(3) unsigned NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_product_index_idx` -- LOCK TABLES `catalog_category_product_index_idx` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product_index_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index_tmp` -- DROP TABLE IF EXISTS `catalog_category_product_index_tmp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_category_product_index_tmp` ( `category_id` int(10) unsigned NOT NULL DEFAULT '0', `product_id` int(10) unsigned NOT NULL DEFAULT '0', `position` int(10) NOT NULL DEFAULT '0', `is_parent` tinyint(1) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `visibility` tinyint(3) unsigned NOT NULL ) ENGINE=MEMORY DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_category_product_index_tmp` -- LOCK TABLES `catalog_category_product_index_tmp` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product_index_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_compare_item` -- DROP TABLE IF EXISTS `catalog_compare_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_compare_item` ( `catalog_compare_item_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `visitor_id` int(11) unsigned NOT NULL DEFAULT '0', `customer_id` int(11) unsigned DEFAULT NULL, `product_id` int(11) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned DEFAULT NULL, PRIMARY KEY (`catalog_compare_item_id`), KEY `FK_CATALOG_COMPARE_ITEM_CUSTOMER` (`customer_id`), KEY `FK_CATALOG_COMPARE_ITEM_PRODUCT` (`product_id`), KEY `IDX_VISITOR_PRODUCTS` (`visitor_id`,`product_id`), KEY `IDX_CUSTOMER_PRODUCTS` (`customer_id`,`product_id`), KEY `FK_CATALOG_COMPARE_ITEM_STORE` (`store_id`), CONSTRAINT `FK_CATALOG_COMPARE_ITEM_CUSTOMER` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_COMPARE_ITEM_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_COMPARE_ITEM_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4369 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_compare_item` -- LOCK TABLES `catalog_compare_item` WRITE; /*!40000 ALTER TABLE `catalog_compare_item` DISABLE KEYS */; INSERT INTO `catalog_compare_item` VALUES (3,916,NULL,26,1),(4,916,NULL,74,1),(6,946,NULL,18,1),(7,954,NULL,104,1),(8,954,NULL,137,1),(15,1045,NULL,18,1),(16,1537,NULL,17,1),(17,1535,NULL,77,1),(18,1537,NULL,6,1),(19,1535,NULL,76,1),(20,1537,NULL,23,1),(21,1537,NULL,27,1),(22,1537,NULL,19,1),(23,1535,NULL,82,1),(24,1535,NULL,74,1),(25,1537,NULL,26,1),(26,1537,NULL,13,1),(39,1549,NULL,94,1),(42,1549,NULL,7,1),(45,1550,NULL,82,1),(50,1550,NULL,20,1),(51,1547,NULL,20,1),(52,1547,NULL,4,1),(60,1547,NULL,56,1),(61,1547,NULL,95,1),(64,1550,NULL,3,1),(65,1549,NULL,86,1),(66,1547,NULL,19,1),(67,1549,NULL,71,1),(68,1549,NULL,120,1),(70,1549,NULL,32,1),(71,1550,NULL,12,1),(74,1550,NULL,8,1),(75,1548,NULL,6,1),(78,1549,NULL,36,1),(79,1548,NULL,74,1),(80,1548,NULL,76,1),(81,1548,NULL,77,1),(82,1548,NULL,82,1),(83,1549,NULL,48,1),(84,1548,NULL,142,1),(85,1547,NULL,23,1),(86,1549,NULL,57,1),(87,1549,NULL,116,1),(88,1547,NULL,45,1),(89,1547,NULL,51,1),(90,1550,NULL,16,1),(91,1547,NULL,6,1),(92,1547,NULL,8,1),(93,1547,NULL,46,1),(94,1628,NULL,74,1),(96,2022,NULL,49,1),(97,2173,NULL,74,1),(98,2173,NULL,77,1),(99,2173,NULL,23,1),(100,2173,NULL,26,1),(101,2175,NULL,13,1),(102,2175,NULL,19,1),(103,2175,NULL,27,1),(104,2175,NULL,6,1),(105,2175,NULL,76,1),(106,2175,NULL,73,1),(107,2175,NULL,82,1),(108,2202,NULL,93,1),(109,2342,NULL,137,1),(110,2342,NULL,98,1),(111,2511,NULL,94,1),(116,2799,NULL,104,1),(117,2799,NULL,106,1),(118,3718,NULL,61,1),(119,3718,NULL,54,1),(122,4232,NULL,76,1),(123,4232,NULL,79,1),(124,4251,NULL,104,1),(125,4251,NULL,106,1),(128,4451,NULL,106,1),(129,4457,NULL,106,1),(130,4457,NULL,104,1),(148,4595,NULL,5,1),(149,4595,NULL,6,1),(150,4595,NULL,9,1),(151,4595,NULL,27,1),(152,4595,NULL,17,1),(153,4595,NULL,18,1),(154,4595,NULL,21,1),(155,4595,NULL,14,1),(156,4595,NULL,26,1),(157,4595,NULL,11,1),(158,4595,NULL,34,1),(159,4595,NULL,30,1),(160,4595,NULL,45,1),(161,5104,NULL,139,1),(162,5104,NULL,73,1),(163,5103,NULL,74,1),(164,5103,NULL,76,1),(165,5103,NULL,73,1),(166,5103,NULL,77,1),(167,5103,NULL,139,1),(168,5123,NULL,103,1),(169,5123,NULL,104,1),(170,5123,NULL,114,1),(171,5123,NULL,115,1),(172,5123,NULL,7,1),(173,5123,NULL,139,1),(174,5231,NULL,98,1),(175,5231,NULL,108,1),(176,5231,NULL,110,1),(177,5276,NULL,73,1),(178,5276,NULL,76,1),(180,5308,NULL,5,1),(181,5337,NULL,82,1),(182,5402,NULL,74,1),(183,5402,NULL,73,1),(186,5689,NULL,109,1),(187,5689,NULL,137,1),(188,5689,NULL,100,1),(189,5734,NULL,7,1),(193,26929,NULL,104,1),(194,26929,NULL,163,1),(195,67759,NULL,104,1),(196,76180,NULL,79,1),(197,91242,19,163,1),(198,91242,19,104,1),(199,91262,NULL,104,1),(200,91262,NULL,163,1),(201,93361,NULL,174,1),(202,93430,NULL,173,1),(203,94277,NULL,7,1),(204,94277,NULL,78,1),(205,94277,NULL,8,1),(206,97488,NULL,177,1),(207,97656,NULL,178,1),(208,100526,NULL,172,1),(210,101316,NULL,79,1),(211,101586,NULL,163,1),(212,101586,NULL,175,1),(213,101620,NULL,172,1),(214,103505,NULL,141,1),(215,103995,NULL,163,1),(217,103995,NULL,95,1),(218,106136,NULL,141,1),(219,108231,NULL,163,1),(220,108231,NULL,104,1),(221,109200,NULL,164,1),(222,109200,NULL,169,1),(223,109200,NULL,98,1),(224,114387,NULL,130,1),(225,114387,NULL,122,1),(226,116433,NULL,163,1),(227,116433,NULL,164,1),(228,116433,NULL,165,1),(229,116433,NULL,169,1),(230,116433,NULL,97,1),(231,116433,NULL,98,1),(232,117273,NULL,162,1),(504,120709,NULL,60,1),(505,120709,NULL,131,1),(506,120709,NULL,75,1),(507,120709,NULL,37,1),(508,129309,NULL,163,1),(509,129309,NULL,104,1),(510,137625,NULL,156,1),(511,137625,NULL,48,1),(512,137625,NULL,55,1),(513,137625,NULL,7,1),(514,149913,NULL,51,1),(515,150094,NULL,166,1),(516,150094,NULL,99,1),(517,154970,NULL,52,1),(518,155929,NULL,168,1),(519,156407,NULL,79,1),(520,156407,NULL,95,1),(521,156407,NULL,78,1),(523,156407,NULL,8,1),(524,156407,NULL,7,1),(525,158622,NULL,100,1),(526,158622,NULL,165,1),(527,164378,NULL,172,1),(528,176903,NULL,116,1),(529,176944,NULL,168,1),(530,176944,NULL,101,1),(531,176903,NULL,175,1),(532,0,18,37,1),(533,180618,NULL,168,1),(534,180618,NULL,170,1),(535,180618,NULL,99,1),(536,180618,NULL,101,1),(537,197733,NULL,8,1),(538,197935,NULL,7,1),(539,197935,NULL,78,1),(540,198138,NULL,114,1),(541,198138,NULL,115,1),(542,198138,NULL,116,1),(543,198138,NULL,117,1),(544,198138,NULL,118,1),(545,198138,NULL,30,1),(546,198138,NULL,36,1),(547,198138,NULL,50,1),(549,198138,NULL,78,1),(550,199577,NULL,163,1),(551,199577,NULL,104,1),(552,199992,NULL,163,1),(553,199992,NULL,104,1),(554,201455,NULL,164,1),(555,201455,NULL,169,1),(556,209114,NULL,162,1),(557,209736,NULL,37,1),(558,209736,NULL,94,1),(559,209850,NULL,50,1),(560,210558,NULL,30,1),(561,210558,NULL,79,1),(562,210571,NULL,50,1),(563,210571,NULL,51,1),(564,213385,NULL,122,1),(565,213881,NULL,170,1),(566,213881,NULL,169,1),(567,213881,NULL,166,1),(568,214295,NULL,95,1),(569,214494,NULL,168,1),(570,214494,NULL,171,1),(571,214494,NULL,102,1),(572,214948,NULL,7,1),(573,215190,NULL,130,1),(574,215190,NULL,104,1),(576,215792,NULL,11,1),(577,218239,NULL,127,1),(578,218239,NULL,7,1),(579,218246,NULL,123,1),(580,218246,NULL,124,1),(581,218246,NULL,125,1),(582,218246,NULL,126,1),(583,218246,NULL,128,1),(584,223190,NULL,122,1),(585,224105,NULL,11,1),(586,231469,NULL,7,1),(587,232638,NULL,178,1),(588,234168,NULL,162,1),(589,242881,NULL,7,1),(590,243017,NULL,7,1),(591,249875,NULL,164,1),(592,249875,NULL,165,1),(593,249875,NULL,169,1),(594,249875,NULL,166,1),(598,252621,NULL,164,1),(600,253779,NULL,166,1),(601,256714,NULL,104,1),(602,256714,NULL,163,1),(603,261107,NULL,171,1),(604,262468,NULL,163,1),(605,263234,NULL,52,1),(606,265000,NULL,163,1),(607,265000,NULL,104,1),(608,266829,NULL,166,1),(609,273290,NULL,100,1),(610,273290,NULL,165,1),(611,273237,NULL,162,1),(612,273237,NULL,164,1),(613,273237,NULL,165,1),(616,273434,NULL,172,1),(617,273434,NULL,164,1),(618,273434,NULL,168,1),(619,275273,NULL,50,1),(620,281358,NULL,182,1),(621,284424,NULL,4,1),(622,285509,NULL,97,1),(623,291102,NULL,162,1),(624,291115,NULL,164,1),(625,291149,NULL,165,1),(626,291149,NULL,7,1),(629,304501,NULL,163,1),(630,307128,NULL,104,1),(631,307128,NULL,163,1),(632,313437,NULL,164,1),(633,313437,NULL,169,1),(634,319962,NULL,184,1),(635,321523,NULL,7,1),(636,321672,NULL,163,1),(637,321672,NULL,162,1),(638,321672,NULL,97,1),(639,321672,NULL,104,1),(640,323678,NULL,99,1),(641,323678,NULL,170,1),(642,325966,NULL,171,1),(643,325966,NULL,168,1),(644,325966,NULL,102,1),(645,330596,NULL,7,1),(1038,335710,NULL,27,1),(1040,335710,NULL,200,1),(1041,337601,NULL,165,1),(1042,337601,NULL,170,1),(1043,337601,NULL,7,1),(1044,337682,NULL,169,1),(1045,337682,NULL,171,1),(1046,340122,NULL,95,1),(1047,344225,NULL,94,1),(1048,344225,NULL,193,1),(1049,345453,NULL,162,1),(1050,345453,NULL,130,1),(1051,346361,NULL,220,1),(1052,347142,NULL,26,1),(1054,349658,NULL,166,1),(1056,349658,NULL,170,1),(1057,349658,NULL,118,1),(1058,349658,NULL,36,1),(1059,352353,NULL,11,1),(1061,352353,NULL,50,1),(1062,352353,NULL,51,1),(1063,352353,NULL,201,1),(1064,352353,NULL,220,1),(1065,352353,NULL,204,1),(1066,352848,NULL,7,1),(1069,357522,NULL,214,1),(1070,357522,NULL,30,1),(1071,357522,NULL,207,1),(1072,357522,NULL,70,1),(1073,357627,NULL,208,1),(1074,361940,NULL,124,1),(1075,361940,NULL,214,1),(1076,367397,NULL,165,1),(1077,367397,NULL,166,1),(1078,368106,NULL,165,1),(1079,368106,NULL,166,1),(1080,368111,NULL,165,1),(1081,368111,NULL,166,1),(1082,378879,NULL,5,1),(1083,382814,NULL,5,1),(1084,383228,NULL,181,1),(1085,383228,NULL,29,1),(1086,383228,NULL,7,1),(1087,383228,NULL,94,1),(1088,383228,NULL,164,1),(1089,383228,NULL,99,1),(1090,383305,NULL,185,1),(1091,383305,NULL,30,1),(1092,383305,NULL,211,1),(1093,383371,NULL,101,1),(1094,383371,NULL,213,1),(1095,383371,NULL,98,1),(1096,383427,NULL,197,1),(1097,383427,NULL,199,1),(1098,383501,NULL,104,1),(1099,383501,NULL,172,1),(1100,383501,NULL,206,1),(1101,383512,NULL,191,1),(1102,383561,NULL,209,1),(1103,383561,NULL,212,1),(1104,383599,NULL,100,1),(1105,383599,NULL,183,1),(1106,383599,NULL,4,1),(1107,383599,NULL,6,1),(1108,383625,NULL,220,1),(1109,383625,NULL,90,1),(1110,383654,NULL,168,1),(1111,383654,NULL,35,1),(1112,383654,NULL,70,1),(1113,392312,NULL,184,1),(1114,397679,NULL,5,1),(1115,397822,NULL,29,1),(1116,397822,NULL,87,1),(1117,397856,NULL,226,1),(1118,397856,NULL,50,1),(1119,397856,NULL,70,1),(1120,397856,NULL,87,1),(1121,397871,NULL,4,1),(1122,397871,NULL,50,1),(1123,397871,NULL,52,1),(1124,397871,NULL,70,1),(1125,397900,NULL,104,1),(1126,397900,NULL,156,1),(1127,397900,NULL,181,1),(1128,397900,NULL,197,1),(1129,397900,NULL,229,1),(1130,397900,NULL,29,1),(1131,397916,NULL,229,1),(1132,397916,NULL,5,1),(1133,397916,NULL,51,1),(1134,397916,NULL,6,1),(1135,397950,NULL,232,1),(1136,397950,NULL,53,1),(1137,397950,NULL,58,1),(1138,397950,NULL,6,1),(1139,398635,NULL,163,1),(1140,398635,NULL,140,1),(1141,408195,NULL,156,1),(1142,408195,NULL,87,1),(1143,408332,NULL,229,1),(1144,408332,NULL,87,1),(1145,408359,NULL,37,1),(1146,408359,NULL,50,1),(1147,408359,NULL,53,1),(1148,413962,NULL,133,1),(1149,413962,NULL,134,1),(1150,413962,NULL,136,1),(1151,413962,NULL,214,1),(1152,413962,NULL,43,1),(1153,413970,NULL,132,1),(1154,413970,NULL,195,1),(1155,413970,NULL,207,1),(1156,413970,NULL,43,1),(1157,418316,NULL,162,1),(1158,0,63,50,1),(1159,419606,NULL,70,1),(1160,420294,NULL,135,1),(1161,420294,NULL,232,1),(1162,420294,NULL,41,1),(1163,420294,NULL,70,1),(1164,423626,NULL,163,1),(1165,425088,NULL,185,1),(1166,425088,NULL,186,1),(1167,426429,NULL,51,1),(1168,426857,NULL,156,1),(1169,426857,NULL,37,1),(1170,426857,NULL,41,1),(1171,426857,NULL,43,1),(1172,426857,NULL,50,1),(1173,426857,NULL,51,1),(1174,426857,NULL,53,1),(1175,426857,NULL,87,1),(1176,426857,NULL,52,1),(1177,429665,NULL,51,1),(1178,429665,NULL,58,1),(1179,429665,NULL,173,1),(1180,429665,NULL,174,1),(1181,429665,NULL,175,1),(1182,429665,NULL,50,1),(1183,429665,NULL,52,1),(1184,429665,NULL,53,1),(1185,431531,NULL,140,1),(1186,431531,NULL,201,1),(1187,432636,NULL,226,1),(1191,432998,NULL,219,1),(1192,435355,NULL,58,1),(1193,440299,NULL,41,1),(1194,454774,NULL,171,1),(1195,454774,NULL,168,1),(1196,459041,NULL,51,1),(1197,459041,NULL,37,1),(1198,459041,NULL,53,1),(1199,461860,NULL,116,1),(1200,462766,NULL,8,1),(1201,462882,NULL,79,1),(1202,463357,NULL,162,1),(1203,464548,NULL,67,1),(1204,464610,NULL,4,1),(1205,464610,NULL,5,1),(1206,464610,NULL,70,1),(1210,469398,NULL,173,1),(1211,469398,NULL,174,1),(1212,469398,NULL,223,1),(1213,469468,NULL,77,1),(1214,469468,NULL,226,1),(1215,469468,NULL,227,1),(1216,469468,NULL,58,1),(1217,508801,NULL,164,1),(1218,508801,NULL,97,1),(1219,508801,NULL,165,1),(1220,508801,NULL,162,1),(1221,509797,NULL,169,1),(1222,509797,NULL,164,1),(1223,543432,NULL,130,1),(1224,543432,NULL,122,1),(1225,543432,NULL,206,1),(2834,570381,NULL,33,1),(2835,570381,NULL,226,1),(4349,577729,NULL,94,1),(4350,577729,NULL,78,1),(4351,577729,NULL,48,1),(4352,577729,NULL,27,1),(4353,577729,NULL,119,1),(4354,577729,NULL,19,1),(4355,577729,NULL,79,1),(4356,577729,NULL,169,1),(4357,577729,NULL,77,1),(4358,577729,NULL,229,1),(4359,577729,NULL,236,1),(4360,577729,NULL,152,1),(4361,577729,NULL,190,1),(4362,577729,NULL,124,1),(4363,577729,NULL,203,1),(4364,577729,NULL,156,1),(4365,583886,NULL,163,1),(4366,583886,NULL,104,1),(4367,614518,NULL,7,1),(4368,616279,NULL,212,1); /*!40000 ALTER TABLE `catalog_compare_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_eav_attribute` -- DROP TABLE IF EXISTS `catalog_eav_attribute`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_eav_attribute` ( `attribute_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `frontend_input_renderer` varchar(255) DEFAULT NULL, `is_global` tinyint(1) unsigned NOT NULL DEFAULT '1', `is_visible` tinyint(1) unsigned NOT NULL DEFAULT '1', `is_searchable` tinyint(1) unsigned NOT NULL DEFAULT '0', `is_filterable` tinyint(1) unsigned NOT NULL DEFAULT '0', `is_comparable` tinyint(1) unsigned NOT NULL DEFAULT '0', `is_visible_on_front` tinyint(1) unsigned NOT NULL DEFAULT '0', `is_html_allowed_on_front` tinyint(1) unsigned NOT NULL DEFAULT '0', `is_used_for_price_rules` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT 'deprecated after 1.4.0.1', `is_filterable_in_search` tinyint(1) unsigned NOT NULL DEFAULT '0', `used_in_product_listing` tinyint(1) unsigned NOT NULL DEFAULT '0', `used_for_sort_by` tinyint(1) unsigned NOT NULL DEFAULT '0', `is_configurable` tinyint(1) unsigned NOT NULL DEFAULT '1', `apply_to` varchar(255) NOT NULL, `is_visible_in_advanced_search` tinyint(1) unsigned NOT NULL DEFAULT '0', `position` int(11) NOT NULL, `is_wysiwyg_enabled` tinyint(1) unsigned NOT NULL DEFAULT '0', `is_used_for_promo_rules` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`attribute_id`), KEY `IDX_USED_FOR_SORT_BY` (`used_for_sort_by`), KEY `IDX_USED_IN_PRODUCT_LISTING` (`used_in_product_listing`) ) ENGINE=InnoDB AUTO_INCREMENT=128 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_eav_attribute` -- LOCK TABLES `catalog_eav_attribute` WRITE; /*!40000 ALTER TABLE `catalog_eav_attribute` DISABLE KEYS */; INSERT INTO `catalog_eav_attribute` VALUES (33,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(34,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(35,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(36,'',0,1,0,0,0,0,1,0,0,0,0,1,'',0,0,1,0),(37,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(38,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(39,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(40,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(41,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(42,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(43,'',1,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(44,'',1,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(45,'',1,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(46,'',1,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(47,'',1,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(48,'',1,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(49,'',0,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(50,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(51,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(52,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(53,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(54,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(55,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(56,'',1,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(57,'',1,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(58,'adminhtml/catalog_category_helper_sortby_available',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(59,'adminhtml/catalog_category_helper_sortby_default',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(60,'',0,1,1,0,0,0,0,0,0,1,1,1,'',1,0,0,0),(61,'',0,1,1,0,1,0,1,0,0,0,0,1,'',1,0,1,0),(62,'',0,1,1,0,1,0,1,0,0,1,0,1,'',1,0,1,0),(63,'',1,1,1,0,1,0,0,0,0,0,0,1,'',1,0,0,0),(64,'',2,1,1,1,0,0,0,0,0,1,1,1,'simple,configurable,virtual,bundle,downloadable',1,0,0,0),(65,'',2,1,0,0,0,0,0,0,0,1,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(66,'',2,1,0,0,0,0,0,0,0,1,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(67,'',2,1,0,0,0,0,0,0,0,1,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(68,'',2,1,0,0,0,0,0,0,0,0,0,1,'simple,virtual,downloadable',0,0,0,0),(69,'',1,1,0,0,0,0,0,0,0,0,0,1,'simple,bundle',0,0,0,0),(70,'',0,1,1,1,1,1,0,0,0,0,0,1,'simple,grouped',1,0,0,0),(71,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(72,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(73,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(74,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(75,'',0,1,0,0,0,0,0,0,0,1,0,1,'',0,0,0,0),(76,'',0,1,0,0,0,0,0,0,0,1,0,1,'',0,0,0,0),(77,'',1,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(78,'',1,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(79,'',2,1,0,0,0,0,0,0,0,0,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(80,'',1,1,1,1,1,0,0,0,0,0,0,1,'simple',1,0,0,0),(81,'',2,1,0,0,0,0,0,0,0,1,0,1,'',0,0,0,0),(82,'',2,1,0,0,0,0,0,0,0,1,0,1,'',0,0,0,0),(83,'',1,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(84,'',2,1,1,0,0,0,0,0,0,1,0,1,'',0,0,0,0),(85,'',2,1,1,0,0,0,0,0,0,1,0,1,'simple,configurable,virtual,bundle,downloadable',1,0,0,0),(86,'',0,1,0,0,0,0,0,0,0,1,0,1,'',0,0,0,0),(87,'',0,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(88,'',0,0,0,0,0,0,0,0,0,0,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(89,'',1,1,0,0,0,0,0,0,0,0,0,0,'simple,virtual',0,0,0,0),(90,'',1,1,0,0,0,0,0,0,0,0,0,0,'simple,virtual',0,0,0,0),(91,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(92,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(93,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(94,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(95,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(96,'',0,1,1,1,1,1,0,0,1,1,1,1,'',1,0,0,1),(97,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(98,'',1,0,0,0,0,0,0,0,0,1,0,1,'',0,0,0,0),(99,'',1,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(100,'',0,0,0,0,0,0,0,0,0,1,0,0,'',0,0,0,0),(101,'',0,0,0,0,0,0,0,0,0,1,0,0,'',0,0,0,0),(102,'',0,0,0,0,0,0,0,0,0,1,0,0,'',0,0,0,0),(103,'',1,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(104,'',1,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(105,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(106,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(107,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(108,'adminhtml/catalog_category_helper_pricestep',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(109,'',1,1,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0),(110,'giftmessage/adminhtml_product_helper_form_config',1,1,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0),(111,'',1,0,0,0,0,0,0,0,0,1,0,0,'bundle',0,0,0,0),(112,'',1,0,0,0,0,0,0,0,0,0,0,0,'bundle',0,0,0,0),(113,'',1,0,0,0,0,0,0,0,0,1,0,0,'bundle',0,0,0,0),(114,'',1,1,0,0,0,0,0,0,0,1,0,0,'bundle',0,0,0,0),(115,'',1,0,0,0,0,0,0,0,0,1,0,0,'bundle',0,0,0,0),(116,'',1,0,0,0,0,0,0,0,0,1,0,0,'downloadable',0,0,0,0),(117,'',0,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0),(118,'',0,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0),(119,'',1,0,0,0,0,0,0,0,0,1,0,0,'downloadable',0,0,0,0),(120,'',1,1,0,0,0,0,0,0,0,1,0,0,'',0,0,0,0),(121,NULL,1,1,1,0,1,0,1,0,0,0,0,0,'simple',1,0,0,0),(122,NULL,1,1,1,0,1,1,1,0,0,0,0,0,'',1,0,0,0),(123,NULL,0,1,0,0,0,1,1,0,0,1,0,0,'simple,grouped',0,0,0,0),(124,'',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(125,NULL,2,1,1,0,0,1,0,0,0,1,0,0,'',0,0,1,0),(126,NULL,2,1,1,0,1,1,0,0,0,1,0,0,'',1,0,1,0),(127,NULL,2,1,1,0,1,1,1,0,0,1,0,0,'simple',1,0,1,0); /*!40000 ALTER TABLE `catalog_eav_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_option` -- DROP TABLE IF EXISTS `catalog_product_bundle_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_bundle_option` ( `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(10) unsigned NOT NULL, `required` tinyint(1) unsigned NOT NULL DEFAULT '0', `position` int(10) unsigned NOT NULL DEFAULT '0', `type` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`option_id`), KEY `FK_CATALOG_PRODUCT_BUNDLE_OPTION_PARENT` (`parent_id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Bundle Options'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_bundle_option` -- LOCK TABLES `catalog_product_bundle_option` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_option` DISABLE KEYS */; INSERT INTO `catalog_product_bundle_option` VALUES (1,180,1,0,'multi'),(3,233,1,1,'select'),(4,233,1,0,'select'),(5,249,1,0,'select'); /*!40000 ALTER TABLE `catalog_product_bundle_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_option_value` -- DROP TABLE IF EXISTS `catalog_product_bundle_option_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_bundle_option_value` ( `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `option_id` int(10) unsigned NOT NULL, `store_id` smallint(5) unsigned NOT NULL, `title` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_OPTION_STORE` (`option_id`,`store_id`) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 COMMENT='Bundle Selections'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_bundle_option_value` -- LOCK TABLES `catalog_product_bundle_option_value` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_option_value` DISABLE KEYS */; INSERT INTO `catalog_product_bundle_option_value` VALUES (2,1,0,'1 Weak test'),(15,4,0,'Choose a FREE Water Purifier '),(16,3,0,'Choose a FREE Stove'),(19,5,0,'Choose your FREE Survival Item'); /*!40000 ALTER TABLE `catalog_product_bundle_option_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_price_index` -- DROP TABLE IF EXISTS `catalog_product_bundle_price_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_bundle_price_index` ( `entity_id` int(10) unsigned NOT NULL, `website_id` smallint(5) unsigned NOT NULL, `customer_group_id` smallint(3) unsigned NOT NULL, `min_price` decimal(12,4) NOT NULL, `max_price` decimal(12,4) NOT NULL, PRIMARY KEY (`entity_id`,`website_id`,`customer_group_id`), KEY `IDX_WEBSITE` (`website_id`), KEY `IDX_CUSTOMER_GROUP` (`customer_group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_bundle_price_index` -- LOCK TABLES `catalog_product_bundle_price_index` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_price_index` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_bundle_price_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_selection` -- DROP TABLE IF EXISTS `catalog_product_bundle_selection`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_bundle_selection` ( `selection_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `option_id` int(10) unsigned NOT NULL, `parent_product_id` int(10) unsigned NOT NULL, `product_id` int(10) unsigned NOT NULL, `position` int(10) unsigned NOT NULL DEFAULT '0', `is_default` tinyint(1) unsigned NOT NULL DEFAULT '0', `selection_price_type` tinyint(1) unsigned NOT NULL DEFAULT '0', `selection_price_value` decimal(12,4) NOT NULL DEFAULT '0.0000', `selection_qty` decimal(12,4) NOT NULL DEFAULT '0.0000', `selection_can_change_qty` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`selection_id`), KEY `FK_CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION` (`option_id`), KEY `FK_CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT` (`product_id`) ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COMMENT='Bundle Selections'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_bundle_selection` -- LOCK TABLES `catalog_product_bundle_selection` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_selection` DISABLE KEYS */; INSERT INTO `catalog_product_bundle_selection` VALUES (1,1,180,160,0,0,0,'0.0000','1.0000',1),(2,1,180,38,0,0,0,'0.0000','1.0000',1),(3,1,180,82,0,0,0,'0.0000','1.0000',1),(4,1,180,58,0,0,0,'0.0000','1.0000',1),(5,1,180,4,0,0,0,'0.0000','1.0000',1),(18,4,233,183,0,0,0,'0.0000','1.0000',0),(19,4,233,185,0,0,0,'0.0000','1.0000',0),(20,3,233,219,0,0,0,'0.0000','1.0000',0),(21,4,233,92,0,0,0,'0.0000','1.0000',0),(22,4,233,172,0,0,0,'0.0000','1.0000',0),(23,4,233,197,0,0,0,'0.0000','1.0000',0),(24,4,233,186,0,0,0,'0.0000','1.0000',0),(25,4,233,187,0,0,0,'0.0000','1.0000',0),(26,3,233,161,0,0,0,'0.0000','1.0000',0),(27,3,233,223,0,0,0,'0.0000','1.0000',1),(28,5,249,183,0,0,0,'0.0000','1.0000',0),(29,5,249,236,0,0,0,'0.0000','1.0000',0),(30,5,249,209,0,0,0,'0.0000','1.0000',0),(31,5,249,210,0,0,0,'0.0000','1.0000',0),(32,5,249,212,0,0,0,'0.0000','1.0000',0); /*!40000 ALTER TABLE `catalog_product_bundle_selection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_selection_price` -- DROP TABLE IF EXISTS `catalog_product_bundle_selection_price`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_bundle_selection_price` ( `selection_id` int(10) unsigned NOT NULL, `website_id` smallint(5) unsigned NOT NULL, `selection_price_type` tinyint(1) unsigned NOT NULL DEFAULT '0', `selection_price_value` decimal(12,4) NOT NULL DEFAULT '0.0000', PRIMARY KEY (`selection_id`,`website_id`), KEY `FK_BUNDLE_PRICE_SELECTION_WEBSITE` (`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_bundle_selection_price` -- LOCK TABLES `catalog_product_bundle_selection_price` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_selection_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_bundle_selection_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_stock_index` -- DROP TABLE IF EXISTS `catalog_product_bundle_stock_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_bundle_stock_index` ( `entity_id` int(10) unsigned NOT NULL, `website_id` smallint(5) unsigned NOT NULL, `stock_id` smallint(5) unsigned NOT NULL, `option_id` int(10) unsigned NOT NULL DEFAULT '0', `stock_status` tinyint(1) DEFAULT '0', PRIMARY KEY (`entity_id`,`stock_id`,`website_id`,`option_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_bundle_stock_index` -- LOCK TABLES `catalog_product_bundle_stock_index` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_stock_index` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_bundle_stock_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_enabled_index` -- DROP TABLE IF EXISTS `catalog_product_enabled_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_enabled_index` ( `product_id` int(10) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `visibility` smallint(5) unsigned NOT NULL DEFAULT '0', UNIQUE KEY `UNQ_PRODUCT_STORE` (`product_id`,`store_id`), KEY `IDX_PRODUCT_VISIBILITY_IN_STORE` (`product_id`,`store_id`,`visibility`), KEY `FK_CATALOG_PRODUCT_ENABLED_INDEX_STORE` (`store_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_enabled_index` -- LOCK TABLES `catalog_product_enabled_index` WRITE; /*!40000 ALTER TABLE `catalog_product_enabled_index` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_enabled_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity` -- DROP TABLE IF EXISTS `catalog_product_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_entity` ( `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entity_type_id` smallint(8) unsigned NOT NULL DEFAULT '0', `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT '0', `type_id` varchar(32) NOT NULL DEFAULT 'simple', `sku` varchar(64) DEFAULT NULL, `has_options` smallint(1) NOT NULL DEFAULT '0', `required_options` tinyint(1) unsigned NOT NULL DEFAULT '0', `created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`entity_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_ENTITY_TYPE` (`entity_type_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` (`attribute_set_id`), KEY `sku` (`sku`) ) ENGINE=InnoDB AUTO_INCREMENT=252 DEFAULT CHARSET=utf8 COMMENT='Product Entities'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity` -- LOCK TABLES `catalog_product_entity` WRITE; /*!40000 ALTER TABLE `catalog_product_entity` DISABLE KEYS */; INSERT INTO `catalog_product_entity` VALUES (3,4,4,'simple','brk-6-Grain Cereal',0,0,'2011-01-03 11:23:28','2011-12-07 22:02:56'),(4,4,4,'simple','brk-blueberry pancakes',0,0,'2011-01-03 11:49:04','2011-12-13 01:34:16'),(5,4,4,'simple','brk-hashbrown skillet',0,0,'2011-01-03 11:59:59','2011-12-07 19:13:28'),(6,4,4,'simple','brk-Granola with Bluberries & Milk',0,0,'2011-01-03 12:08:37','2011-11-12 12:32:25'),(7,4,4,'simple','real_milk',0,0,'2011-01-03 12:21:06','2011-12-08 00:29:09'),(8,4,4,'simple','bev-choc-breakfast-drink',0,0,'2011-01-03 12:28:09','2011-12-08 00:29:48'),(9,4,4,'simple','ent-rice & chicken',0,0,'2011-01-04 05:21:05','2011-10-05 17:37:29'),(10,4,4,'simple','ent-mh_spaghetti',0,0,'2011-01-04 05:30:34','2011-11-12 19:21:57'),(11,4,4,'simple','ent-mh_chicken_ala_king',0,0,'2011-01-04 05:34:09','2011-11-12 18:40:57'),(12,4,4,'simple','ent-mh_veg_stew_beef',0,0,'2011-01-04 05:37:31','2011-11-09 01:48:13'),(13,4,4,'simple','ent-mh_beef_teriyaki',0,0,'2011-01-04 05:41:07','2011-10-05 17:33:20'),(14,4,4,'simple','ent-mh_lasagna',0,0,'2011-01-04 05:43:57','2011-11-19 21:26:07'),(15,4,4,'simple','mh_noodles_chk',0,0,'2011-01-04 05:47:19','2011-11-12 12:29:44'),(16,4,4,'simple','ent-mh_Turkey_Tetrazinni',0,0,'2011-01-04 05:51:08','2011-10-05 17:31:47'),(17,4,4,'simple','ent-mh_beef_stroganoff',0,0,'2011-01-04 05:59:08','2011-11-12 19:32:02'),(18,4,4,'simple','ent-mh_mac_cheese',0,0,'2011-01-04 06:03:38','2011-10-05 17:30:06'),(19,4,4,'simple','ent-mh_teriyaki_rice',0,0,'2011-01-04 06:10:15','2011-10-05 17:29:09'),(20,4,4,'simple','ent-mh_sweet_pork',0,0,'2011-01-04 06:15:25','2011-10-05 17:28:13'),(21,4,4,'simple','ent-mh_pasta_primavera',0,0,'2011-01-04 06:20:03','2011-10-05 17:27:00'),(22,4,4,'simple','ent-mh_oriental_chicken',0,0,'2011-01-04 06:25:08','2011-11-12 19:13:34'),(23,4,4,'simple','ent-mh_chicken_stew',0,0,'2011-01-04 06:35:28','2011-11-07 20:30:13'),(24,4,4,'simple','ent-mh_beef_wrap',0,0,'2011-01-04 06:39:42','2011-10-05 17:24:17'),(26,4,4,'simple','mh_beef_stew',0,0,'2011-01-04 06:47:28','2011-11-22 06:01:16'),(27,4,4,'simple','ent-mh_chili_mac',0,0,'2011-01-04 06:50:11','2011-11-12 19:28:05'),(28,4,4,'simple','ent-Chicken_Primavera',0,0,'2011-01-05 20:49:49','2011-11-07 19:39:36'),(29,4,4,'simple','soup-corn_chowder',0,0,'2011-01-05 21:11:52','2011-11-12 12:38:04'),(30,4,4,'simple','santa_fe_black_beans_rice',0,0,'2011-01-05 21:19:21','2011-11-12 13:31:42'),(31,4,4,'simple','AA- Gumbo',0,0,'2011-01-05 21:29:22','2011-11-19 21:51:06'),(32,4,4,'simple','ent-texas_bbq_chicken',0,0,'2011-01-05 21:36:57','2011-10-05 17:12:55'),(33,4,4,'simple','ent-western_tamale_pie',0,0,'2011-01-05 21:48:17','2011-11-07 19:40:54'),(34,4,4,'simple','ent-turkey_mashed_potato',0,0,'2011-01-05 21:59:22','2011-11-07 19:52:38'),(35,4,4,'simple','ent_mountain_minestrone',0,0,'2011-01-05 22:07:41','2011-11-07 19:53:43'),(36,4,4,'simple','vegmeal-beef_fried_rice',0,0,'2011-01-05 22:18:42','2011-12-07 18:55:01'),(37,4,4,'simple','veg_broccoli_florets',0,0,'2011-01-05 22:45:32','2011-12-08 00:27:51'),(38,4,4,'simple','veg_red_cabbage',0,0,'2011-01-05 22:50:02','2011-10-04 16:31:24'),(39,4,4,'simple','veg_carrot_dices',0,0,'2011-01-05 22:53:48','2011-10-04 16:30:17'),(40,4,4,'simple','veg_celery',0,0,'2011-01-05 22:56:37','2011-10-04 16:28:47'),(41,4,4,'simple','veg_sweet_corn',0,0,'2011-01-05 22:59:17','2011-12-07 00:10:51'),(42,4,4,'simple','veg_mushrooms',0,0,'2011-01-05 23:02:29','2011-10-04 16:26:28'),(43,4,4,'simple','veg_chopped_onions',0,0,'2011-01-05 23:05:38','2011-11-12 11:48:10'),(44,4,4,'simple','veg_sweet_peas',0,0,'2011-01-05 23:09:03','2011-10-04 16:24:03'),(45,4,4,'simple','veg_asparagus',0,0,'2011-01-05 23:21:09','2011-10-04 16:22:50'),(46,4,4,'simple','veg_garden_peas',0,0,'2011-01-05 23:23:59','2011-11-08 23:13:04'),(47,4,4,'simple','veg_cauliflower',0,0,'2011-01-05 23:30:00','2011-10-04 16:19:42'),(48,4,4,'simple','fd banana',0,0,'2011-01-05 23:33:07','2011-12-07 22:35:52'),(49,4,4,'simple','fru_raspberries',0,0,'2011-01-05 23:35:55','2011-10-04 16:15:20'),(50,4,4,'simple','fru_strawberry',0,0,'2011-01-05 23:41:27','2011-12-07 22:20:30'),(51,4,4,'simple','fru_apples_cinnamon',0,0,'2011-01-05 23:49:03','2011-12-07 22:29:06'),(52,4,4,'simple','fru_peaches',0,0,'2011-01-05 23:51:48','2011-12-07 22:26:46'),(53,4,4,'simple','fru_pineapple',0,0,'2011-01-05 23:56:46','2011-12-06 20:40:33'),(54,4,4,'simple','fru_orange',0,0,'2011-01-06 00:00:07','2011-10-04 16:08:44'),(55,4,4,'simple','fru_cranberry',0,0,'2011-01-06 00:05:12','2011-10-04 16:07:29'),(56,4,4,'simple','fru_blackberry',0,0,'2011-01-06 00:09:29','2011-10-04 16:06:09'),(57,4,4,'simple','fru_boysenberry',0,0,'2011-01-06 00:18:26','2011-10-04 15:55:40'),(58,4,4,'simple','fru_blueberry',0,0,'2011-01-06 00:34:57','2011-12-07 22:30:24'),(59,4,4,'simple','fru_kiwi',0,0,'2011-01-06 00:49:55','2011-10-04 15:51:58'),(60,4,4,'simple','fru_mango',0,0,'2011-01-06 00:56:57','2011-10-04 15:50:40'),(61,4,4,'simple','fru_grapes',0,0,'2011-01-06 00:59:21','2011-10-04 15:49:13'),(62,4,4,'simple','fru_elderberry',0,0,'2011-01-06 01:03:52','2011-10-04 15:47:23'),(63,4,4,'simple','vegmeal-chicken_ala_king',0,0,'2011-01-06 01:18:33','2011-12-07 19:11:55'),(64,4,4,'simple','ent-cowboy_chili',0,0,'2011-01-06 01:37:03','2011-11-22 05:47:31'),(65,4,4,'simple','vegmeal-chili_mix',0,0,'2011-01-06 01:43:10','2011-10-05 17:02:52'),(66,4,4,'simple','vegmeal-chicken_teriyaki',0,0,'2011-01-06 01:49:30','2011-10-05 17:01:38'),(67,4,4,'simple','brk-maple_brown_sugar',0,0,'2011-01-06 01:54:40','2011-12-07 18:49:48'),(68,4,4,'simple','ent-beef_stroganoff',0,0,'2011-01-06 01:59:27','2011-11-09 18:44:09'),(70,4,4,'simple','vegmeal-capellini_al_pomodoro',0,0,'2011-01-06 02:14:22','2011-12-07 21:54:26'),(71,4,4,'simple','soup-baked_potato_cheese',0,0,'2011-01-06 02:21:06','2011-12-07 18:45:01'),(73,4,4,'simple','meat-ground_beef',0,0,'2011-01-06 03:24:49','2011-10-05 16:47:10'),(74,4,4,'simple','meat-cooked_chicken',0,0,'2011-01-06 03:33:55','2011-10-05 16:46:05'),(75,4,4,'simple','meat-white_turkey',0,0,'2011-01-06 03:41:19','2011-10-05 16:44:54'),(76,4,4,'simple','meat-diced_beef',0,0,'2011-01-06 03:44:53','2011-10-05 16:42:31'),(77,4,4,'simple','meat-gulf_shrimp',0,0,'2011-01-06 03:52:13','2011-10-05 16:41:24'),(78,4,4,'simple','bev-orange',0,0,'2011-01-06 18:09:47','2011-12-08 00:37:06'),(79,4,4,'simple','bev_cherry_lemonade',0,0,'2011-01-06 19:32:35','2011-10-05 16:35:36'),(80,4,4,'simple','des-raspberry_crumble',0,0,'2011-01-06 19:40:10','2011-10-05 16:38:40'),(81,4,4,'simple','des-pilot_crackers',0,0,'2011-01-06 19:45:15','2011-10-05 16:37:27'),(82,4,4,'simple','des_mh-blueberry_cheesecake',0,0,'2011-01-06 22:48:56','2011-11-05 19:05:18'),(83,4,4,'simple','fru_papaya',0,0,'2011-01-06 23:02:13','2011-10-04 15:44:22'),(84,4,4,'simple','fru_pear',0,0,'2011-01-06 23:08:37','2011-10-04 15:43:57'),(85,4,4,'simple','fru_raisins',0,0,'2011-01-06 23:13:45','2011-10-04 15:43:33'),(86,4,4,'simple','veg_artichoke',0,0,'2011-01-06 23:22:26','2011-10-04 15:42:50'),(87,4,4,'simple','veg_green_beans',0,0,'2011-01-06 23:51:57','2011-11-12 12:07:22'),(88,4,4,'simple','veg_cucumber',0,0,'2011-01-07 00:02:16','2011-10-05 16:35:07'),(89,4,4,'simple','BL2800pack',0,0,'2011-01-09 01:38:01','2011-11-06 01:57:50'),(90,4,4,'simple','BLUltra',0,0,'2011-01-09 01:52:17','2011-01-21 04:18:38'),(91,4,4,'simple','105oz Badlands Bladder',0,0,'2011-01-10 17:58:55','2011-10-05 16:33:41'),(92,4,4,'simple','96oz Badlands Water Bladder',0,0,'2011-01-10 18:01:12','2011-10-05 16:33:13'),(93,4,4,'simple','Badlands Bottle Holder',0,0,'2011-01-10 18:03:09','2011-11-06 02:02:20'),(94,4,4,'simple','Mountain House 72 Hour Meal',0,0,'2011-01-10 18:18:03','2011-11-29 18:37:36'),(95,4,4,'simple','bkt-2-week-bereadypantry',0,0,'2011-01-10 18:28:00','2011-11-05 04:45:41'),(97,4,4,'simple','MH2-3',0,0,'2011-01-10 18:51:25','2011-09-28 06:33:36'),(98,4,4,'simple','MH3-3',0,0,'2011-01-11 18:48:06','2011-09-28 06:33:11'),(99,4,4,'simple','MH6-3',0,0,'2011-01-11 19:17:26','2011-09-28 06:32:41'),(100,4,4,'simple','MH4-3',0,0,'2011-01-11 19:35:12','2011-09-28 06:32:16'),(101,4,4,'simple','MH8-3',0,0,'2011-01-11 19:45:50','2011-09-28 06:31:47'),(102,4,4,'simple','MH12-3',0,0,'2011-01-11 19:48:29','2011-09-28 06:31:19'),(103,4,4,'simple','MH1-2',0,0,'2011-01-11 19:50:22','2011-11-12 19:35:17'),(104,4,4,'simple','MH1-3',0,0,'2011-01-11 19:52:10','2011-09-28 06:38:39'),(105,4,4,'simple','PF1-2',0,0,'2011-01-11 19:53:45','2011-10-05 16:29:18'),(106,4,4,'simple','PF1-3',0,0,'2011-01-11 19:56:55','2011-10-05 16:28:50'),(107,4,4,'simple','PF3-2',0,0,'2011-01-11 20:03:33','2011-10-05 16:28:29'),(108,4,4,'simple','PF3-3',0,0,'2011-01-11 20:05:08','2011-10-05 16:28:07'),(109,4,4,'simple','PF6-2',0,0,'2011-01-11 20:10:52','2011-10-05 16:27:46'),(110,4,4,'simple','PF6-3',0,0,'2011-01-11 20:12:53','2011-10-05 16:27:24'),(111,4,4,'simple','PF12-2',0,0,'2011-01-11 20:14:02','2011-10-05 16:27:03'),(112,4,4,'simple','PF12-3',0,0,'2011-01-11 20:15:41','2011-10-05 16:26:41'),(113,4,4,'simple','V1-2',0,0,'2011-01-11 20:17:08','2011-01-21 02:03:33'),(114,4,4,'simple','V1-3',0,0,'2011-01-11 20:21:11','2011-10-06 17:18:29'),(115,4,4,'simple','V3-2',0,0,'2011-01-11 20:23:19','2011-10-06 17:19:07'),(116,4,4,'simple','V3-3',0,0,'2011-01-11 20:25:13','2011-10-06 17:19:52'),(117,4,4,'simple','V4-3',0,0,'2011-01-11 20:26:58','2011-10-06 17:20:45'),(118,4,4,'simple','V6-3',0,0,'2011-01-11 20:28:12','2011-10-06 17:21:16'),(119,4,4,'simple','V8-3',0,0,'2011-01-11 20:29:16','2011-11-22 04:11:03'),(120,4,4,'simple','V12-3',0,0,'2011-01-11 20:30:42','2011-10-06 17:22:49'),(121,4,4,'simple','GF1-2',0,0,'2011-01-11 20:38:03','2011-01-21 01:54:45'),(122,4,4,'simple','GF1-3',0,0,'2011-01-11 20:41:50','2011-10-11 15:58:15'),(123,4,4,'simple','GF2-3',0,0,'2011-01-11 20:44:14','2011-10-11 15:59:25'),(124,4,4,'simple','GF3-3',0,0,'2011-01-11 20:46:06','2011-10-11 16:00:43'),(125,4,4,'simple','GF4-3',0,0,'2011-01-11 20:47:54','2011-10-11 16:01:38'),(126,4,4,'simple','GF6-3',0,0,'2011-01-11 20:49:06','2011-10-11 16:20:15'),(127,4,4,'simple','GF12-2',0,0,'2011-01-11 20:50:14','2011-10-11 16:21:04'),(128,4,4,'simple','GF12-3',0,0,'2011-01-11 20:51:33','2011-10-11 16:22:08'),(129,4,4,'simple','LF1-2',0,0,'2011-01-11 20:52:35','2011-01-21 01:45:18'),(130,4,4,'simple','LF1-3',0,0,'2011-01-11 20:56:21','2011-09-28 06:23:32'),(131,4,4,'simple','LF2-3',0,0,'2011-01-11 20:57:28','2011-09-28 06:23:03'),(132,4,4,'simple','LF3-3',0,0,'2011-01-11 20:59:36','2011-10-06 17:28:18'),(133,4,4,'simple','LF6-2',0,0,'2011-01-11 21:00:38','2011-10-06 17:29:04'),(134,4,4,'simple','LF6-3',0,0,'2011-01-11 21:01:46','2011-10-06 17:29:46'),(135,4,4,'simple','LF12-2',0,0,'2011-01-11 21:02:47','2011-10-06 17:30:20'),(136,4,4,'simple','LF12-3',0,0,'2011-01-11 21:04:05','2011-10-06 17:30:44'),(137,4,4,'simple','T1',0,0,'2011-01-11 21:05:08','2011-10-05 16:25:57'),(138,4,4,'simple','veg-pack',0,0,'2011-01-11 22:11:46','2011-10-05 16:25:03'),(139,4,4,'simple','meat-pack',0,0,'2011-01-11 22:34:33','2011-10-05 16:23:58'),(140,4,4,'simple','bev-drink-pak',0,0,'2011-01-11 22:36:55','2011-11-12 14:02:11'),(141,4,4,'simple','fnv-fruit-n-veg pack',0,0,'2011-01-11 22:38:15','2011-10-05 16:22:15'),(142,4,4,'simple','des-dessert-pack',0,0,'2011-01-11 22:49:33','2011-10-05 16:20:46'),(143,4,4,'simple','fru_apricots',0,0,'2011-01-19 00:13:35','2011-10-04 15:41:33'),(144,4,4,'simple','brk-Scrambled-Eggs-Ham',0,0,'2011-01-21 21:47:14','2011-11-08 06:28:34'),(145,4,4,'simple','fru-coconut',0,0,'2011-01-25 00:41:15','2011-10-08 02:25:00'),(146,4,4,'simple','fru-lemon',0,0,'2011-01-25 00:43:41','2011-10-08 02:24:33'),(147,4,4,'simple','fru-lime',0,0,'2011-01-25 00:45:19','2011-10-08 02:24:00'),(148,4,4,'simple','veg-collardgreens',0,0,'2011-01-25 00:47:34','2011-10-08 02:23:26'),(149,4,4,'simple','veg-eggplant',0,0,'2011-01-25 00:51:10','2011-10-08 02:22:49'),(150,4,4,'simple','veg-kale',0,0,'2011-01-25 00:55:43','2011-10-08 02:22:23'),(151,4,4,'simple','veg-okra',0,0,'2011-01-25 00:58:15','2011-10-08 02:21:47'),(152,4,4,'simple','veg-blackolives',0,0,'2011-01-25 01:00:57','2011-11-16 21:19:37'),(153,4,4,'simple','veg-greenonions',0,0,'2011-01-25 01:02:57','2011-10-08 02:21:07'),(154,4,4,'simple','veg-whiteonions',0,0,'2011-01-25 01:08:39','2011-10-08 02:20:33'),(155,4,4,'simple','veg-jalapenos',0,0,'2011-01-25 01:12:06','2011-10-08 02:20:17'),(156,4,4,'simple','veg-potatoes',0,0,'2011-01-25 01:15:43','2011-11-21 22:53:33'),(157,4,4,'simple','veg-sweetpotatoes',0,0,'2011-01-25 01:18:16','2011-10-08 02:19:16'),(158,4,4,'simple','veg-greenpeppers',0,0,'2011-01-25 01:22:44','2011-10-08 02:19:35'),(159,4,4,'simple','veg-redpeppers',0,0,'2011-01-25 01:24:07','2011-10-08 02:18:56'),(160,4,4,'simple','veg-red-peppers',0,0,'2011-01-25 19:52:28','2011-10-05 16:13:54'),(161,4,4,'simple','G1_Stove',0,0,'2011-01-29 20:42:39','2011-10-05 16:12:24'),(162,4,4,'simple','UL2-3',0,0,'2011-09-19 22:50:35','2011-10-17 17:45:57'),(163,4,4,'simple','UL1-3',0,0,'2011-09-19 23:13:51','2011-12-12 19:45:20'),(164,4,4,'simple','UL3-3',0,0,'2011-09-19 23:19:20','2011-11-29 01:28:00'),(165,4,4,'simple','UL4-3',0,0,'2011-09-19 23:25:32','2011-11-29 01:27:20'),(166,4,4,'simple','UL6-3',0,0,'2011-09-19 23:31:14','2011-11-29 01:26:25'),(167,4,4,'simple','UL8-3',0,0,'2011-09-20 00:01:57','2011-11-29 01:24:38'),(168,4,4,'simple','UL12-3',0,0,'2011-09-21 22:28:36','2011-11-29 01:21:20'),(169,4,4,'simple','3month_2000cal',0,0,'2011-09-23 23:59:25','2011-10-06 17:52:30'),(170,4,4,'simple','6mo_2000cal',0,0,'2011-09-24 00:17:30','2011-10-06 17:53:02'),(171,4,4,'simple','12month_2000calories_familysupply',0,0,'2011-09-24 00:38:50','2011-10-06 17:53:31'),(172,4,4,'simple','WB-5G',0,0,'2011-09-29 17:53:52','2011-11-08 23:41:44'),(173,4,4,'simple','FNV1',0,0,'2011-09-30 19:06:18','2011-10-11 01:19:18'),(174,4,4,'simple','FNV2',0,0,'2011-09-30 21:19:12','2011-10-11 02:45:09'),(175,4,4,'simple','FNV3',0,0,'2011-09-30 21:24:48','2011-10-11 02:51:01'),(176,4,4,'simple','FNV4',0,0,'2011-09-30 21:28:23','2011-10-11 03:06:32'),(177,4,4,'simple','FNV6',0,0,'2011-09-30 21:31:33','2011-10-11 03:12:19'),(178,4,4,'simple','FNV8',0,0,'2011-09-30 21:34:39','2011-10-11 03:17:34'),(181,4,4,'simple','traditional_supply',0,0,'2011-10-05 21:42:15','2011-10-06 16:46:25'),(182,4,4,'simple','FNV12',0,0,'2011-10-07 23:26:42','2011-10-11 03:25:35'),(183,4,4,'simple','HIKER-PRO',0,0,'2011-10-31 19:11:29','2011-11-01 04:44:10'),(184,4,4,'simple','brk - bpgranola',0,0,'2011-10-31 19:12:28','2011-11-28 20:04:58'),(185,4,4,'simple','katadyn_combi_waterpurifier',0,0,'2011-11-01 05:14:58','2011-11-19 20:59:54'),(186,4,4,'simple','katadyn_pocketfilter',0,0,'2011-11-01 05:37:12','2011-11-01 05:43:29'),(187,4,4,'simple','katadyn_expedition',0,0,'2011-11-01 06:07:24','2011-11-01 06:11:33'),(189,4,4,'simple','prepperBucket',0,0,'2011-11-01 17:47:32','2011-11-04 21:01:24'),(190,4,4,'simple','vegmeal-pasta-veg-parmesan',0,0,'2011-11-02 21:55:31','2011-11-12 13:29:00'),(191,4,4,'simple','bp-risotto-chicken',0,0,'2011-11-02 22:21:04','2011-11-23 05:09:10'),(192,4,4,'simple','bp-beef-broccoli',0,0,'2011-11-02 22:40:16','2011-11-12 13:24:42'),(193,4,4,'simple','wise_72',0,0,'2011-11-03 22:24:17','2011-11-29 18:42:49'),(194,4,4,'simple','beef_rotini',0,0,'2011-11-04 18:20:09','2011-11-22 06:00:48'),(195,4,4,'simple','apple_crisp',0,0,'2011-11-04 20:59:00','2011-11-22 05:59:43'),(196,4,4,'simple','leonardo',0,0,'2011-11-04 21:14:31','2011-11-12 13:12:31'),(197,4,4,'simple','super_tanker_ 125',0,0,'2011-11-05 01:47:53','2011-11-05 02:22:16'),(198,4,4,'simple','Teriyaki Turkey',0,0,'2011-11-05 02:04:28','2011-11-22 05:54:51'),(199,4,4,'simple','tanker_250',0,0,'2011-11-05 02:19:01','2011-11-05 02:20:34'),(200,4,4,'simple','Texas BBQ',0,0,'2011-11-05 02:38:41','2011-11-22 06:02:25'),(201,4,4,'simple','wise_56',0,0,'2011-11-05 04:43:05','2011-11-05 04:43:05'),(202,4,4,'simple','wise_60',0,0,'2011-11-05 04:57:19','2011-11-05 05:05:54'),(203,4,4,'simple','wise_84',0,0,'2011-11-05 13:24:35','2011-11-05 13:24:35'),(204,4,4,'simple','wise_120_breakfast',0,0,'2011-11-05 13:46:42','2011-11-05 18:35:32'),(205,4,4,'simple','wise_120_entree',0,0,'2011-11-05 14:05:48','2011-11-05 14:05:48'),(206,4,4,'simple','wise_essential_ kit',0,0,'2011-11-05 14:17:34','2011-11-05 22:26:24'),(207,4,4,'simple','Chicken Rotelle',0,0,'2011-11-05 17:26:55','2011-11-07 19:34:58'),(208,4,4,'simple','Kung Fu',0,0,'2011-11-05 17:45:12','2011-11-22 05:52:16'),(209,4,4,'simple','bear_gerber_ultimate_knife',0,0,'2011-11-05 17:48:19','2011-11-07 17:36:42'),(210,4,4,'simple','bear_grylls_parang',0,0,'2011-11-05 18:10:17','2011-11-07 17:32:12'),(211,4,4,'simple','Bean Soup',0,0,'2011-11-05 18:18:42','2011-11-11 07:55:35'),(212,4,4,'simple','bear_ultimate_kit',0,0,'2011-11-05 18:25:39','2011-11-07 17:23:02'),(213,4,4,'simple','Mushroom_Pilaf',0,0,'2011-11-05 18:43:27','2011-11-12 12:34:54'),(214,4,4,'simple','cold pasta',0,0,'2011-11-05 21:01:37','2011-11-12 13:23:05'),(215,4,4,'simple','BP-potato-beef',0,0,'2011-11-06 00:51:16','2011-11-12 13:21:00'),(216,4,4,'simple','Louisiana-red ',0,0,'2011-11-06 00:54:29','2011-11-22 05:50:44'),(217,4,4,'simple','wondermill_electric_mill',0,0,'2011-11-06 23:19:10','2011-11-07 20:33:32'),(218,4,4,'simple','wondermill_junior',0,0,'2011-11-07 01:58:08','2011-11-08 04:17:01'),(219,4,4,'simple','sun_oven',0,0,'2011-11-07 02:53:28','2011-11-08 04:04:20'),(220,4,4,'simple','wise_meat',0,0,'2011-11-07 04:51:16','2011-12-06 20:52:55'),(221,4,4,'simple','mh-chicstew',0,0,'2011-11-07 18:29:38','2011-11-08 01:34:54'),(223,4,4,'simple','Jetboil',0,0,'2011-11-08 04:30:59','2011-11-08 05:03:56'),(226,4,4,'simple','eggs',0,0,'2011-11-08 06:26:27','2011-12-13 01:35:05'),(227,4,4,'simple','mac_cheese',0,0,'2011-11-08 21:07:03','2011-12-07 19:37:47'),(228,4,4,'simple','carrots',0,0,'2011-11-08 21:23:07','2011-11-19 21:54:44'),(229,4,4,'simple','buttermilk_pancake',0,0,'2011-11-08 23:04:12','2011-12-07 21:52:40'),(230,4,4,'simple','Preparedness_Principles',0,0,'2011-11-09 04:23:55','2011-11-09 04:46:08'),(231,4,4,'simple','plan_not_panic',0,0,'2011-11-09 04:42:07','2011-11-09 04:45:40'),(232,4,4,'simple','chikn noodle soup',0,0,'2011-11-10 08:40:32','2011-12-07 18:48:22'),(233,4,4,'bundle','test',1,1,'2011-11-16 01:29:46','2011-12-03 19:29:45'),(234,4,4,'simple','Flashlantern',0,0,'2011-11-18 18:33:41','2011-11-18 22:43:56'),(236,4,4,'simple','flashlantern_combo',0,0,'2011-11-19 00:17:46','2011-11-19 00:20:16'),(237,4,4,'simple','jamaican_jerk_chicken',0,0,'2011-11-19 20:56:03','2011-11-19 21:00:55'),(238,4,4,'simple','bp bacon mashed potatos',0,0,'2011-11-19 21:14:15','2011-11-19 21:14:15'),(239,4,4,'simple','sample',0,0,'2011-11-19 21:15:22','2011-11-19 21:15:22'),(240,4,4,'simple','mh scrambled eggs bacon',0,0,'2011-11-19 21:39:24','2011-11-19 21:52:38'),(241,4,4,'simple','AA Black Beans & Rice',0,0,'2011-11-20 00:40:01','2011-11-20 00:48:44'),(242,4,4,'simple','MHTeriyaki ',0,0,'2011-11-20 00:40:40','2011-11-20 00:40:55'),(243,4,4,'simple','quickstove',0,0,'2011-11-20 00:56:23','2011-11-21 22:37:21'),(244,4,4,'simple','TH beef stroganoff',0,0,'2011-11-20 01:38:43','2011-12-07 19:39:55'),(245,4,4,'simple','Teriyaki with Rice (Vegetarian) ',0,0,'2011-11-20 01:42:20','2011-12-07 19:41:31'),(246,4,4,'grouped','tes22',0,0,'2011-11-21 19:26:03','2011-11-21 19:27:23'),(249,4,4,'bundle','UL1-3_12',1,1,'2011-11-21 20:18:24','2011-12-03 19:31:05'),(250,4,4,'simple','Goal0_Escape 150',0,0,'2011-12-01 23:45:52','2011-12-02 00:10:46'),(251,4,4,'simple','Nomad 13.5',0,0,'2011-12-02 00:10:04','2011-12-02 00:10:04'); /*!40000 ALTER TABLE `catalog_product_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_datetime` -- DROP TABLE IF EXISTS `catalog_product_entity_datetime`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_entity_datetime` ( `value_id` int(11) NOT NULL AUTO_INCREMENT, `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0', `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `entity_id` int(10) unsigned NOT NULL DEFAULT '0', `value` datetime DEFAULT NULL, PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_DATETIME_STORE` (`store_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_DATETIME_PRODUCT_ENTITY` (`entity_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1610 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_datetime` -- LOCK TABLES `catalog_product_entity_datetime` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_datetime` DISABLE KEYS */; INSERT INTO `catalog_product_entity_datetime` VALUES (13,4,81,0,3,'2011-11-12 00:00:00'),(14,4,82,0,3,NULL),(15,4,66,0,3,'2011-11-12 00:00:00'),(16,4,67,0,3,'2011-12-31 00:00:00'),(17,4,93,0,3,NULL),(18,4,94,0,3,NULL),(19,4,81,0,4,NULL),(20,4,82,0,4,NULL),(21,4,66,0,4,'2011-11-07 00:00:00'),(22,4,67,0,4,'2012-01-01 00:00:00'),(23,4,93,0,4,NULL),(24,4,94,0,4,NULL),(25,4,81,0,5,NULL),(26,4,82,0,5,NULL),(27,4,66,0,5,'2011-11-07 00:00:00'),(28,4,67,0,5,'2013-01-01 00:00:00'),(29,4,93,0,5,NULL),(30,4,94,0,5,NULL),(31,4,81,0,6,NULL),(32,4,82,0,6,NULL),(33,4,66,0,6,'2011-11-04 00:00:00'),(34,4,67,0,6,NULL),(35,4,93,0,6,NULL),(36,4,94,0,6,NULL),(37,4,81,0,7,NULL),(38,4,82,0,7,NULL),(39,4,66,0,7,'2011-10-05 00:00:00'),(40,4,67,0,7,NULL),(41,4,93,0,7,NULL),(42,4,94,0,7,NULL),(43,4,81,0,8,NULL),(44,4,82,0,8,NULL),(45,4,66,0,8,'2011-11-12 00:00:00'),(46,4,67,0,8,NULL),(47,4,93,0,8,NULL),(48,4,94,0,8,NULL),(49,4,81,0,9,NULL),(50,4,82,0,9,NULL),(51,4,66,0,9,NULL),(52,4,67,0,9,NULL),(53,4,93,0,9,NULL),(54,4,94,0,9,NULL),(55,4,81,0,10,NULL),(56,4,82,0,10,NULL),(57,4,66,0,10,'2011-11-12 00:00:00'),(58,4,67,0,10,'2011-11-13 00:00:00'),(59,4,93,0,10,NULL),(60,4,94,0,10,NULL),(61,4,81,0,11,NULL),(62,4,82,0,11,NULL),(63,4,66,0,11,'2011-10-05 00:00:00'),(64,4,67,0,11,NULL),(65,4,93,0,11,NULL),(66,4,94,0,11,NULL),(67,4,81,0,12,NULL),(68,4,82,0,12,NULL),(69,4,66,0,12,'2011-11-08 00:00:00'),(70,4,67,0,12,'2012-01-01 00:00:00'),(71,4,93,0,12,NULL),(72,4,94,0,12,NULL),(73,4,81,0,13,NULL),(74,4,82,0,13,NULL),(75,4,66,0,13,NULL),(76,4,67,0,13,NULL),(77,4,93,0,13,NULL),(78,4,94,0,13,NULL),(79,4,81,0,14,'2011-11-19 00:00:00'),(80,4,82,0,14,NULL),(81,4,66,0,14,'2011-11-19 00:00:00'),(82,4,67,0,14,NULL),(83,4,93,0,14,NULL),(84,4,94,0,14,NULL),(85,4,81,0,15,'2011-11-12 00:00:00'),(86,4,82,0,15,NULL),(87,4,66,0,15,NULL),(88,4,67,0,15,NULL),(89,4,93,0,15,NULL),(90,4,94,0,15,NULL),(91,4,81,0,16,NULL),(92,4,82,0,16,NULL),(93,4,66,0,16,NULL),(94,4,67,0,16,NULL),(95,4,93,0,16,NULL),(96,4,94,0,16,NULL),(97,4,81,0,17,NULL),(98,4,82,0,17,NULL),(99,4,66,0,17,'2011-11-12 00:00:00'),(100,4,67,0,17,'2011-11-14 00:00:00'),(101,4,93,0,17,NULL),(102,4,94,0,17,NULL),(103,4,81,0,18,NULL),(104,4,82,0,18,NULL),(105,4,66,0,18,NULL),(106,4,67,0,18,NULL),(107,4,93,0,18,NULL),(108,4,94,0,18,NULL),(109,4,81,0,19,NULL),(110,4,82,0,19,NULL),(111,4,66,0,19,NULL),(112,4,67,0,19,NULL),(113,4,93,0,19,NULL),(114,4,94,0,19,NULL),(115,4,81,0,20,NULL),(116,4,82,0,20,NULL),(117,4,66,0,20,NULL),(118,4,67,0,20,NULL),(119,4,93,0,20,NULL),(120,4,94,0,20,NULL),(121,4,81,0,21,NULL),(122,4,82,0,21,NULL),(123,4,66,0,21,NULL),(124,4,67,0,21,NULL),(125,4,93,0,21,NULL),(126,4,94,0,21,NULL),(127,4,81,0,22,NULL),(128,4,82,0,22,NULL),(129,4,66,0,22,'2011-11-12 00:00:00'),(130,4,67,0,22,'2011-11-14 00:00:00'),(131,4,93,0,22,NULL),(132,4,94,0,22,NULL),(133,4,81,0,23,NULL),(134,4,82,0,23,NULL),(135,4,66,0,23,NULL),(136,4,67,0,23,NULL),(137,4,93,0,23,NULL),(138,4,94,0,23,NULL),(139,4,81,0,24,NULL),(140,4,82,0,24,NULL),(141,4,66,0,24,NULL),(142,4,67,0,24,NULL),(143,4,93,0,24,NULL),(144,4,94,0,24,NULL),(151,4,81,0,26,NULL),(152,4,82,0,26,NULL),(153,4,66,0,26,'2011-11-05 00:00:00'),(154,4,67,0,26,'2012-01-01 00:00:00'),(155,4,93,0,26,NULL),(156,4,94,0,26,NULL),(157,4,81,0,27,NULL),(158,4,82,0,27,NULL),(159,4,66,0,27,'2011-11-12 00:00:00'),(160,4,67,0,27,'2011-11-13 00:00:00'),(161,4,93,0,27,NULL),(162,4,94,0,27,NULL),(163,4,81,0,28,NULL),(164,4,82,0,28,NULL),(165,4,66,0,28,'2011-11-05 00:00:00'),(166,4,67,0,28,NULL),(167,4,93,0,28,NULL),(168,4,94,0,28,NULL),(169,4,81,0,29,NULL),(170,4,82,0,29,NULL),(171,4,66,0,29,'2011-11-04 00:00:00'),(172,4,67,0,29,'2011-12-31 00:00:00'),(173,4,93,0,29,NULL),(174,4,94,0,29,NULL),(175,4,81,0,30,NULL),(176,4,82,0,30,NULL),(177,4,66,0,30,'2011-10-05 00:00:00'),(178,4,67,0,30,NULL),(179,4,93,0,30,NULL),(180,4,94,0,30,NULL),(181,4,81,0,31,'2011-11-19 00:00:00'),(182,4,82,0,31,NULL),(183,4,66,0,31,'2011-11-19 00:00:00'),(184,4,67,0,31,'2011-12-31 00:00:00'),(185,4,93,0,31,NULL),(186,4,94,0,31,NULL),(187,4,81,0,32,NULL),(188,4,82,0,32,NULL),(189,4,66,0,32,NULL),(190,4,67,0,32,NULL),(191,4,93,0,32,NULL),(192,4,94,0,32,NULL),(193,4,81,0,33,NULL),(194,4,82,0,33,NULL),(195,4,66,0,33,'2011-11-04 00:00:00'),(196,4,67,0,33,'2012-01-01 00:00:00'),(197,4,93,0,33,NULL),(198,4,94,0,33,NULL),(199,4,81,0,34,NULL),(200,4,82,0,34,NULL),(201,4,66,0,34,'2011-11-04 00:00:00'),(202,4,67,0,34,'2012-01-01 00:00:00'),(203,4,93,0,34,NULL),(204,4,94,0,34,NULL),(205,4,81,0,35,NULL),(206,4,82,0,35,NULL),(207,4,66,0,35,'2011-11-04 00:00:00'),(208,4,67,0,35,NULL),(209,4,93,0,35,NULL),(210,4,94,0,35,NULL),(211,4,81,0,36,'2011-11-12 00:00:00'),(212,4,82,0,36,NULL),(213,4,66,0,36,'2011-10-05 00:00:00'),(214,4,67,0,36,'2011-12-31 00:00:00'),(215,4,93,0,36,NULL),(216,4,94,0,36,NULL),(217,4,81,0,37,NULL),(218,4,82,0,37,NULL),(219,4,66,0,37,'2011-10-05 00:00:00'),(220,4,67,0,37,NULL),(221,4,93,0,37,NULL),(222,4,94,0,37,NULL),(223,4,81,0,38,NULL),(224,4,82,0,38,NULL),(225,4,66,0,38,NULL),(226,4,67,0,38,NULL),(227,4,93,0,38,NULL),(228,4,94,0,38,NULL),(229,4,81,0,39,NULL),(230,4,82,0,39,NULL),(231,4,66,0,39,NULL),(232,4,67,0,39,NULL),(233,4,93,0,39,NULL),(234,4,94,0,39,NULL),(235,4,81,0,40,NULL),(236,4,82,0,40,NULL),(237,4,66,0,40,NULL),(238,4,67,0,40,NULL),(239,4,93,0,40,NULL),(240,4,94,0,40,NULL),(241,4,81,0,41,NULL),(242,4,82,0,41,NULL),(243,4,66,0,41,'2011-11-07 00:00:00'),(244,4,67,0,41,'2011-12-31 00:00:00'),(245,4,93,0,41,NULL),(246,4,94,0,41,NULL),(247,4,81,0,42,NULL),(248,4,82,0,42,NULL),(249,4,66,0,42,NULL),(250,4,67,0,42,NULL),(251,4,93,0,42,NULL),(252,4,94,0,42,NULL),(253,4,81,0,43,NULL),(254,4,82,0,43,NULL),(255,4,66,0,43,'2011-11-07 00:00:00'),(256,4,67,0,43,'2011-12-31 00:00:00'),(257,4,93,0,43,NULL),(258,4,94,0,43,NULL),(259,4,81,0,44,NULL),(260,4,82,0,44,NULL),(261,4,66,0,44,NULL),(262,4,67,0,44,NULL),(263,4,93,0,44,NULL),(264,4,94,0,44,NULL),(265,4,81,0,45,NULL),(266,4,82,0,45,NULL),(267,4,66,0,45,NULL),(268,4,67,0,45,NULL),(269,4,93,0,45,NULL),(270,4,94,0,45,NULL),(271,4,81,0,46,NULL),(272,4,82,0,46,NULL),(273,4,66,0,46,'2011-11-08 00:00:00'),(274,4,67,0,46,NULL),(275,4,93,0,46,NULL),(276,4,94,0,46,NULL),(277,4,81,0,47,NULL),(278,4,82,0,47,NULL),(279,4,66,0,47,NULL),(280,4,67,0,47,NULL),(281,4,93,0,47,NULL),(282,4,94,0,47,NULL),(283,4,81,0,48,'2011-11-28 00:00:00'),(284,4,82,0,48,NULL),(285,4,66,0,48,NULL),(286,4,67,0,48,NULL),(287,4,93,0,48,NULL),(288,4,94,0,48,NULL),(289,4,81,0,49,NULL),(290,4,82,0,49,NULL),(291,4,66,0,49,NULL),(292,4,67,0,49,NULL),(293,4,93,0,49,NULL),(294,4,94,0,49,NULL),(295,4,81,0,50,NULL),(296,4,82,0,50,NULL),(297,4,66,0,50,'2011-10-05 00:00:00'),(298,4,67,0,50,'2011-12-07 00:00:00'),(299,4,93,0,50,NULL),(300,4,94,0,50,NULL),(301,4,81,0,51,'2011-11-12 00:00:00'),(302,4,82,0,51,NULL),(303,4,66,0,51,'2011-10-05 00:00:00'),(304,4,67,0,51,NULL),(305,4,93,0,51,NULL),(306,4,94,0,51,NULL),(307,4,81,0,52,NULL),(308,4,82,0,52,NULL),(309,4,66,0,52,'2011-10-05 00:00:00'),(310,4,67,0,52,NULL),(311,4,93,0,52,NULL),(312,4,94,0,52,NULL),(313,4,81,0,53,NULL),(314,4,82,0,53,NULL),(315,4,66,0,53,'2011-11-10 00:00:00'),(316,4,67,0,53,NULL),(317,4,93,0,53,NULL),(318,4,94,0,53,NULL),(319,4,81,0,54,NULL),(320,4,82,0,54,NULL),(321,4,66,0,54,NULL),(322,4,67,0,54,NULL),(323,4,93,0,54,NULL),(324,4,94,0,54,NULL),(325,4,81,0,55,NULL),(326,4,82,0,55,NULL),(327,4,66,0,55,NULL),(328,4,67,0,55,NULL),(329,4,93,0,55,NULL),(330,4,94,0,55,NULL),(331,4,81,0,56,NULL),(332,4,82,0,56,NULL),(333,4,66,0,56,NULL),(334,4,67,0,56,NULL),(335,4,93,0,56,NULL),(336,4,94,0,56,NULL),(337,4,81,0,57,NULL),(338,4,82,0,57,NULL),(339,4,66,0,57,NULL),(340,4,67,0,57,NULL),(341,4,93,0,57,NULL),(342,4,94,0,57,NULL),(343,4,81,0,58,NULL),(344,4,82,0,58,NULL),(345,4,66,0,58,'2011-11-05 00:00:00'),(346,4,67,0,58,'2013-01-01 00:00:00'),(347,4,93,0,58,NULL),(348,4,94,0,58,NULL),(349,4,81,0,59,NULL),(350,4,82,0,59,NULL),(351,4,66,0,59,NULL),(352,4,67,0,59,NULL),(353,4,93,0,59,NULL),(354,4,94,0,59,NULL),(355,4,81,0,60,NULL),(356,4,82,0,60,NULL),(357,4,66,0,60,NULL),(358,4,67,0,60,NULL),(359,4,93,0,60,NULL),(360,4,94,0,60,NULL),(361,4,81,0,61,NULL),(362,4,82,0,61,NULL),(363,4,66,0,61,NULL),(364,4,67,0,61,NULL),(365,4,93,0,61,NULL),(366,4,94,0,61,NULL),(367,4,81,0,62,NULL),(368,4,82,0,62,NULL),(369,4,66,0,62,NULL),(370,4,67,0,62,NULL),(371,4,93,0,62,NULL),(372,4,94,0,62,NULL),(373,4,81,0,63,NULL),(374,4,82,0,63,NULL),(375,4,66,0,63,'2011-12-07 00:00:00'),(376,4,67,0,63,NULL),(377,4,93,0,63,NULL),(378,4,94,0,63,NULL),(379,4,81,0,64,NULL),(380,4,82,0,64,NULL),(381,4,66,0,64,'2011-11-04 00:00:00'),(382,4,67,0,64,NULL),(383,4,93,0,64,NULL),(384,4,94,0,64,NULL),(385,4,81,0,65,NULL),(386,4,82,0,65,NULL),(387,4,66,0,65,NULL),(388,4,67,0,65,NULL),(389,4,93,0,65,NULL),(390,4,94,0,65,NULL),(391,4,81,0,66,NULL),(392,4,82,0,66,NULL),(393,4,66,0,66,NULL),(394,4,67,0,66,NULL),(395,4,93,0,66,NULL),(396,4,94,0,66,NULL),(397,4,81,0,67,'2011-11-17 00:00:00'),(398,4,82,0,67,NULL),(399,4,66,0,67,'2011-11-17 00:00:00'),(400,4,67,0,67,NULL),(401,4,93,0,67,NULL),(402,4,94,0,67,NULL),(403,4,81,0,68,NULL),(404,4,82,0,68,NULL),(405,4,66,0,68,'2011-11-04 00:00:00'),(406,4,67,0,68,NULL),(407,4,93,0,68,NULL),(408,4,94,0,68,NULL),(415,4,81,0,70,NULL),(416,4,82,0,70,NULL),(417,4,66,0,70,'2011-11-05 00:00:00'),(418,4,67,0,70,'2011-12-31 00:00:00'),(419,4,93,0,70,NULL),(420,4,94,0,70,NULL),(421,4,81,0,71,NULL),(422,4,82,0,71,NULL),(423,4,66,0,71,'2011-10-05 00:00:00'),(424,4,67,0,71,'2011-11-13 00:00:00'),(425,4,93,0,71,NULL),(426,4,94,0,71,NULL),(433,4,81,0,73,NULL),(434,4,82,0,73,NULL),(435,4,66,0,73,NULL),(436,4,67,0,73,NULL),(437,4,93,0,73,NULL),(438,4,94,0,73,NULL),(439,4,81,0,74,NULL),(440,4,82,0,74,NULL),(441,4,66,0,74,NULL),(442,4,67,0,74,NULL),(443,4,93,0,74,NULL),(444,4,94,0,74,NULL),(445,4,81,0,75,NULL),(446,4,82,0,75,NULL),(447,4,66,0,75,NULL),(448,4,67,0,75,NULL),(449,4,93,0,75,NULL),(450,4,94,0,75,NULL),(451,4,81,0,76,NULL),(452,4,82,0,76,NULL),(453,4,66,0,76,NULL),(454,4,67,0,76,NULL),(455,4,93,0,76,NULL),(456,4,94,0,76,NULL),(457,4,81,0,77,NULL),(458,4,82,0,77,NULL),(459,4,66,0,77,NULL),(460,4,67,0,77,NULL),(461,4,93,0,77,NULL),(462,4,94,0,77,NULL),(463,4,81,0,78,'2011-11-12 00:00:00'),(464,4,82,0,78,NULL),(465,4,66,0,78,'2011-11-12 00:00:00'),(466,4,67,0,78,NULL),(467,4,93,0,78,'2011-10-12 00:00:00'),(468,4,94,0,78,NULL),(469,4,81,0,79,NULL),(470,4,82,0,79,NULL),(471,4,66,0,79,NULL),(472,4,67,0,79,NULL),(473,4,93,0,79,NULL),(474,4,94,0,79,NULL),(475,4,81,0,80,NULL),(476,4,82,0,80,NULL),(477,4,66,0,80,NULL),(478,4,67,0,80,NULL),(479,4,93,0,80,NULL),(480,4,94,0,80,NULL),(481,4,81,0,81,NULL),(482,4,82,0,81,NULL),(483,4,66,0,81,NULL),(484,4,67,0,81,NULL),(485,4,93,0,81,NULL),(486,4,94,0,81,NULL),(487,4,81,0,82,NULL),(488,4,82,0,82,NULL),(489,4,66,0,82,'2011-11-05 00:00:00'),(490,4,67,0,82,NULL),(491,4,93,0,82,NULL),(492,4,94,0,82,NULL),(493,4,81,0,83,NULL),(494,4,82,0,83,NULL),(495,4,66,0,83,NULL),(496,4,67,0,83,NULL),(497,4,93,0,83,NULL),(498,4,94,0,83,NULL),(499,4,81,0,84,NULL),(500,4,82,0,84,NULL),(501,4,66,0,84,NULL),(502,4,67,0,84,NULL),(503,4,93,0,84,NULL),(504,4,94,0,84,NULL),(505,4,81,0,85,NULL),(506,4,82,0,85,NULL),(507,4,66,0,85,NULL),(508,4,67,0,85,NULL),(509,4,93,0,85,NULL),(510,4,94,0,85,NULL),(511,4,81,0,86,NULL),(512,4,82,0,86,NULL),(513,4,66,0,86,NULL),(514,4,67,0,86,NULL),(515,4,93,0,86,NULL),(516,4,94,0,86,NULL),(517,4,81,0,87,NULL),(518,4,82,0,87,NULL),(519,4,66,0,87,'2011-11-08 00:00:00'),(520,4,67,0,87,NULL),(521,4,93,0,87,NULL),(522,4,94,0,87,NULL),(523,4,81,0,88,NULL),(524,4,82,0,88,NULL),(525,4,66,0,88,NULL),(526,4,67,0,88,NULL),(527,4,93,0,88,NULL),(528,4,94,0,88,NULL),(529,4,81,0,89,NULL),(530,4,82,0,89,NULL),(531,4,66,0,89,NULL),(532,4,67,0,89,NULL),(533,4,93,0,89,NULL),(534,4,94,0,89,NULL),(535,4,66,0,90,NULL),(536,4,67,0,90,NULL),(537,4,81,0,90,NULL),(538,4,82,0,90,NULL),(539,4,93,0,90,NULL),(540,4,94,0,90,NULL),(541,4,81,0,91,NULL),(542,4,82,0,91,NULL),(543,4,66,0,91,NULL),(544,4,67,0,91,NULL),(545,4,93,0,91,NULL),(546,4,94,0,91,NULL),(547,4,66,0,92,NULL),(548,4,67,0,92,NULL),(549,4,81,0,92,NULL),(550,4,82,0,92,NULL),(551,4,93,0,92,NULL),(552,4,94,0,92,NULL),(553,4,66,0,93,NULL),(554,4,67,0,93,NULL),(555,4,81,0,93,NULL),(556,4,82,0,93,NULL),(557,4,93,0,93,NULL),(558,4,94,0,93,NULL),(559,4,66,0,94,'2011-09-30 00:00:00'),(560,4,67,0,94,NULL),(561,4,81,0,94,'2011-09-30 00:00:00'),(562,4,82,0,94,NULL),(563,4,93,0,94,NULL),(564,4,94,0,94,NULL),(565,4,66,0,95,'2011-09-29 00:00:00'),(566,4,67,0,95,NULL),(567,4,81,0,95,NULL),(568,4,82,0,95,NULL),(569,4,93,0,95,NULL),(570,4,94,0,95,NULL),(577,4,66,0,97,NULL),(578,4,67,0,97,NULL),(579,4,81,0,97,NULL),(580,4,82,0,97,NULL),(581,4,93,0,97,NULL),(582,4,94,0,97,NULL),(583,4,66,0,98,NULL),(584,4,67,0,98,NULL),(585,4,81,0,98,NULL),(586,4,82,0,98,NULL),(587,4,93,0,98,NULL),(588,4,94,0,98,NULL),(589,4,66,0,99,NULL),(590,4,67,0,99,NULL),(591,4,81,0,99,NULL),(592,4,82,0,99,NULL),(593,4,93,0,99,NULL),(594,4,94,0,99,NULL),(595,4,66,0,100,NULL),(596,4,67,0,100,NULL),(597,4,81,0,100,NULL),(598,4,82,0,100,NULL),(599,4,93,0,100,NULL),(600,4,94,0,100,NULL),(601,4,66,0,101,NULL),(602,4,67,0,101,NULL),(603,4,81,0,101,NULL),(604,4,82,0,101,NULL),(605,4,93,0,101,NULL),(606,4,94,0,101,NULL),(607,4,66,0,102,NULL),(608,4,67,0,102,NULL),(609,4,81,0,102,NULL),(610,4,82,0,102,NULL),(611,4,93,0,102,NULL),(612,4,94,0,102,NULL),(613,4,66,0,103,NULL),(614,4,67,0,103,NULL),(615,4,81,0,103,NULL),(616,4,82,0,103,NULL),(617,4,93,0,103,NULL),(618,4,94,0,103,NULL),(619,4,66,0,104,NULL),(620,4,67,0,104,NULL),(621,4,81,0,104,NULL),(622,4,82,0,104,NULL),(623,4,93,0,104,NULL),(624,4,94,0,104,NULL),(625,4,66,0,105,NULL),(626,4,67,0,105,NULL),(627,4,81,0,105,NULL),(628,4,82,0,105,NULL),(629,4,93,0,105,NULL),(630,4,94,0,105,NULL),(631,4,66,0,106,NULL),(632,4,67,0,106,NULL),(633,4,81,0,106,NULL),(634,4,82,0,106,NULL),(635,4,93,0,106,NULL),(636,4,94,0,106,NULL),(637,4,66,0,107,NULL),(638,4,67,0,107,NULL),(639,4,81,0,107,NULL),(640,4,82,0,107,NULL),(641,4,93,0,107,NULL),(642,4,94,0,107,NULL),(643,4,66,0,108,NULL),(644,4,67,0,108,NULL),(645,4,81,0,108,NULL),(646,4,82,0,108,NULL),(647,4,93,0,108,NULL),(648,4,94,0,108,NULL),(649,4,66,0,109,NULL),(650,4,67,0,109,NULL),(651,4,81,0,109,NULL),(652,4,82,0,109,NULL),(653,4,93,0,109,NULL),(654,4,94,0,109,NULL),(655,4,66,0,110,NULL),(656,4,67,0,110,NULL),(657,4,81,0,110,NULL),(658,4,82,0,110,NULL),(659,4,93,0,110,NULL),(660,4,94,0,110,NULL),(661,4,66,0,111,NULL),(662,4,67,0,111,NULL),(663,4,81,0,111,NULL),(664,4,82,0,111,NULL),(665,4,93,0,111,NULL),(666,4,94,0,111,NULL),(667,4,66,0,112,NULL),(668,4,67,0,112,NULL),(669,4,81,0,112,NULL),(670,4,82,0,112,NULL),(671,4,93,0,112,NULL),(672,4,94,0,112,NULL),(673,4,66,0,113,NULL),(674,4,67,0,113,NULL),(675,4,81,0,113,NULL),(676,4,82,0,113,NULL),(677,4,93,0,113,NULL),(678,4,94,0,113,NULL),(679,4,66,0,114,'2011-10-06 00:00:00'),(680,4,67,0,114,NULL),(681,4,81,0,114,NULL),(682,4,82,0,114,NULL),(683,4,93,0,114,NULL),(684,4,94,0,114,NULL),(685,4,66,0,115,'2011-10-06 00:00:00'),(686,4,67,0,115,NULL),(687,4,81,0,115,NULL),(688,4,82,0,115,NULL),(689,4,93,0,115,NULL),(690,4,94,0,115,NULL),(691,4,66,0,116,'2011-10-06 00:00:00'),(692,4,67,0,116,NULL),(693,4,81,0,116,NULL),(694,4,82,0,116,NULL),(695,4,93,0,116,NULL),(696,4,94,0,116,NULL),(697,4,66,0,117,'2011-09-27 00:00:00'),(698,4,67,0,117,NULL),(699,4,81,0,117,NULL),(700,4,82,0,117,NULL),(701,4,93,0,117,NULL),(702,4,94,0,117,NULL),(703,4,66,0,118,'2011-09-27 00:00:00'),(704,4,67,0,118,NULL),(705,4,81,0,118,NULL),(706,4,82,0,118,NULL),(707,4,93,0,118,NULL),(708,4,94,0,118,NULL),(709,4,66,0,119,'2011-10-06 00:00:00'),(710,4,67,0,119,NULL),(711,4,81,0,119,NULL),(712,4,82,0,119,NULL),(713,4,93,0,119,NULL),(714,4,94,0,119,NULL),(715,4,66,0,120,'2011-10-06 00:00:00'),(716,4,67,0,120,NULL),(717,4,81,0,120,NULL),(718,4,82,0,120,NULL),(719,4,93,0,120,NULL),(720,4,94,0,120,NULL),(721,4,66,0,121,NULL),(722,4,67,0,121,NULL),(723,4,81,0,121,NULL),(724,4,82,0,121,NULL),(725,4,93,0,121,NULL),(726,4,94,0,121,NULL),(727,4,66,0,122,'2011-09-27 00:00:00'),(728,4,67,0,122,NULL),(729,4,81,0,122,NULL),(730,4,82,0,122,NULL),(731,4,93,0,122,NULL),(732,4,94,0,122,NULL),(733,4,66,0,123,'2011-09-27 00:00:00'),(734,4,67,0,123,NULL),(735,4,81,0,123,NULL),(736,4,82,0,123,NULL),(737,4,93,0,123,NULL),(738,4,94,0,123,NULL),(739,4,66,0,124,'2011-09-27 00:00:00'),(740,4,67,0,124,NULL),(741,4,81,0,124,NULL),(742,4,82,0,124,NULL),(743,4,93,0,124,NULL),(744,4,94,0,124,NULL),(745,4,66,0,125,'2011-09-27 00:00:00'),(746,4,67,0,125,NULL),(747,4,81,0,125,NULL),(748,4,82,0,125,NULL),(749,4,93,0,125,NULL),(750,4,94,0,125,NULL),(751,4,66,0,126,'2011-09-27 00:00:00'),(752,4,67,0,126,NULL),(753,4,81,0,126,NULL),(754,4,82,0,126,NULL),(755,4,93,0,126,NULL),(756,4,94,0,126,NULL),(757,4,66,0,127,'2011-09-27 00:00:00'),(758,4,67,0,127,NULL),(759,4,81,0,127,NULL),(760,4,82,0,127,NULL),(761,4,93,0,127,NULL),(762,4,94,0,127,NULL),(763,4,66,0,128,'2011-09-27 00:00:00'),(764,4,67,0,128,NULL),(765,4,81,0,128,NULL),(766,4,82,0,128,NULL),(767,4,93,0,128,NULL),(768,4,94,0,128,NULL),(769,4,66,0,129,NULL),(770,4,67,0,129,NULL),(771,4,81,0,129,NULL),(772,4,82,0,129,NULL),(773,4,93,0,129,NULL),(774,4,94,0,129,NULL),(775,4,66,0,130,'2011-09-27 00:00:00'),(776,4,67,0,130,NULL),(777,4,81,0,130,NULL),(778,4,82,0,130,NULL),(779,4,93,0,130,NULL),(780,4,94,0,130,NULL),(781,4,66,0,131,'2011-09-27 00:00:00'),(782,4,67,0,131,NULL),(783,4,81,0,131,NULL),(784,4,82,0,131,NULL),(785,4,93,0,131,NULL),(786,4,94,0,131,NULL),(787,4,66,0,132,'2011-10-06 00:00:00'),(788,4,67,0,132,NULL),(789,4,81,0,132,NULL),(790,4,82,0,132,NULL),(791,4,93,0,132,NULL),(792,4,94,0,132,NULL),(793,4,66,0,133,'2011-10-06 00:00:00'),(794,4,67,0,133,NULL),(795,4,81,0,133,NULL),(796,4,82,0,133,NULL),(797,4,93,0,133,NULL),(798,4,94,0,133,NULL),(799,4,66,0,134,'2011-10-06 00:00:00'),(800,4,67,0,134,NULL),(801,4,81,0,134,NULL),(802,4,82,0,134,NULL),(803,4,93,0,134,NULL),(804,4,94,0,134,NULL),(805,4,66,0,135,'2011-09-27 00:00:00'),(806,4,67,0,135,NULL),(807,4,81,0,135,NULL),(808,4,82,0,135,NULL),(809,4,93,0,135,NULL),(810,4,94,0,135,NULL),(811,4,66,0,136,'2011-09-27 00:00:00'),(812,4,67,0,136,NULL),(813,4,81,0,136,NULL),(814,4,82,0,136,NULL),(815,4,93,0,136,NULL),(816,4,94,0,136,NULL),(817,4,66,0,137,NULL),(818,4,67,0,137,NULL),(819,4,81,0,137,NULL),(820,4,82,0,137,NULL),(821,4,93,0,137,NULL),(822,4,94,0,137,NULL),(823,4,66,0,138,NULL),(824,4,67,0,138,NULL),(825,4,81,0,138,NULL),(826,4,82,0,138,NULL),(827,4,93,0,138,NULL),(828,4,94,0,138,NULL),(829,4,66,0,139,NULL),(830,4,67,0,139,NULL),(831,4,81,0,139,NULL),(832,4,82,0,139,NULL),(833,4,93,0,139,NULL),(834,4,94,0,139,NULL),(835,4,66,0,140,NULL),(836,4,67,0,140,NULL),(837,4,81,0,140,NULL),(838,4,82,0,140,NULL),(839,4,93,0,140,NULL),(840,4,94,0,140,NULL),(841,4,66,0,141,NULL),(842,4,67,0,141,NULL),(843,4,81,0,141,NULL),(844,4,82,0,141,NULL),(845,4,93,0,141,NULL),(846,4,94,0,141,NULL),(847,4,66,0,142,NULL),(848,4,67,0,142,NULL),(849,4,81,0,142,NULL),(850,4,82,0,142,NULL),(851,4,93,0,142,NULL),(852,4,94,0,142,NULL),(853,4,81,0,143,NULL),(854,4,82,0,143,NULL),(855,4,66,0,143,NULL),(856,4,67,0,143,NULL),(857,4,93,0,143,NULL),(858,4,94,0,143,NULL),(859,4,81,0,144,NULL),(860,4,82,0,144,NULL),(861,4,66,0,144,'2011-11-07 00:00:00'),(862,4,67,0,144,'2012-01-01 00:00:00'),(863,4,93,0,144,NULL),(864,4,94,0,144,NULL),(865,4,81,0,145,NULL),(866,4,82,0,145,NULL),(867,4,66,0,145,NULL),(868,4,67,0,145,NULL),(869,4,93,0,145,NULL),(870,4,94,0,145,NULL),(871,4,81,0,146,NULL),(872,4,82,0,146,NULL),(873,4,66,0,146,NULL),(874,4,67,0,146,NULL),(875,4,93,0,146,NULL),(876,4,94,0,146,NULL),(877,4,81,0,147,NULL),(878,4,82,0,147,NULL),(879,4,66,0,147,NULL),(880,4,67,0,147,NULL),(881,4,93,0,147,NULL),(882,4,94,0,147,NULL),(883,4,81,0,148,NULL),(884,4,82,0,148,NULL),(885,4,66,0,148,NULL),(886,4,67,0,148,NULL),(887,4,93,0,148,NULL),(888,4,94,0,148,NULL),(889,4,81,0,149,NULL),(890,4,82,0,149,NULL),(891,4,66,0,149,NULL),(892,4,67,0,149,NULL),(893,4,93,0,149,NULL),(894,4,94,0,149,NULL),(895,4,81,0,150,NULL),(896,4,82,0,150,NULL),(897,4,66,0,150,NULL),(898,4,67,0,150,NULL),(899,4,93,0,150,NULL),(900,4,94,0,150,NULL),(901,4,81,0,151,NULL),(902,4,82,0,151,NULL),(903,4,66,0,151,NULL),(904,4,67,0,151,NULL),(905,4,93,0,151,NULL),(906,4,94,0,151,NULL),(907,4,81,0,152,'2011-11-12 00:00:00'),(908,4,82,0,152,'2011-12-31 00:00:00'),(909,4,66,0,152,'2011-11-12 00:00:00'),(910,4,67,0,152,'2011-12-31 00:00:00'),(911,4,93,0,152,NULL),(912,4,94,0,152,NULL),(913,4,81,0,153,NULL),(914,4,82,0,153,NULL),(915,4,66,0,153,NULL),(916,4,67,0,153,NULL),(917,4,93,0,153,NULL),(918,4,94,0,153,NULL),(919,4,81,0,154,NULL),(920,4,82,0,154,NULL),(921,4,66,0,154,NULL),(922,4,67,0,154,NULL),(923,4,93,0,154,NULL),(924,4,94,0,154,NULL),(925,4,81,0,155,NULL),(926,4,82,0,155,NULL),(927,4,66,0,155,NULL),(928,4,67,0,155,NULL),(929,4,93,0,155,NULL),(930,4,94,0,155,NULL),(931,4,81,0,156,NULL),(932,4,82,0,156,NULL),(933,4,66,0,156,'2011-11-08 00:00:00'),(934,4,67,0,156,'2012-01-01 00:00:00'),(935,4,93,0,156,NULL),(936,4,94,0,156,NULL),(937,4,81,0,157,NULL),(938,4,82,0,157,NULL),(939,4,66,0,157,NULL),(940,4,67,0,157,NULL),(941,4,93,0,157,NULL),(942,4,94,0,157,NULL),(943,4,81,0,158,NULL),(944,4,82,0,158,NULL),(945,4,66,0,158,NULL),(946,4,67,0,158,NULL),(947,4,93,0,158,NULL),(948,4,94,0,158,NULL),(949,4,81,0,159,NULL),(950,4,82,0,159,NULL),(951,4,66,0,159,NULL),(952,4,67,0,159,NULL),(953,4,93,0,159,NULL),(954,4,94,0,159,NULL),(955,4,81,0,160,NULL),(956,4,82,0,160,NULL),(957,4,66,0,160,NULL),(958,4,67,0,160,NULL),(959,4,93,0,160,NULL),(960,4,94,0,160,NULL),(961,4,81,0,161,NULL),(962,4,82,0,161,NULL),(963,4,66,0,161,NULL),(964,4,67,0,161,NULL),(965,4,93,0,161,NULL),(966,4,94,0,161,NULL),(967,4,81,0,162,NULL),(968,4,82,0,162,NULL),(969,4,66,0,162,'2011-09-27 00:00:00'),(970,4,67,0,162,'2013-09-27 00:00:00'),(971,4,93,0,162,NULL),(972,4,94,0,162,NULL),(973,4,81,0,163,NULL),(974,4,82,0,163,NULL),(975,4,66,0,163,'2011-09-27 00:00:00'),(976,4,67,0,163,'2013-09-27 00:00:00'),(977,4,93,0,163,NULL),(978,4,94,0,163,NULL),(979,4,81,0,164,NULL),(980,4,82,0,164,NULL),(981,4,66,0,164,'2011-09-27 00:00:00'),(982,4,67,0,164,'2013-09-27 00:00:00'),(983,4,93,0,164,NULL),(984,4,94,0,164,NULL),(985,4,81,0,165,NULL),(986,4,82,0,165,NULL),(987,4,66,0,165,'2011-09-27 00:00:00'),(988,4,67,0,165,'2013-09-27 00:00:00'),(989,4,93,0,165,NULL),(990,4,94,0,165,NULL),(991,4,81,0,166,NULL),(992,4,82,0,166,NULL),(993,4,66,0,166,'2011-09-27 00:00:00'),(994,4,67,0,166,'2013-09-27 00:00:00'),(995,4,93,0,166,NULL),(996,4,94,0,166,NULL),(997,4,81,0,167,NULL),(998,4,82,0,167,NULL),(999,4,66,0,167,'2011-09-27 00:00:00'),(1000,4,67,0,167,'2013-09-27 00:00:00'),(1001,4,93,0,167,NULL),(1002,4,94,0,167,NULL),(1003,4,81,0,168,NULL),(1004,4,82,0,168,NULL),(1005,4,66,0,168,'2011-09-27 00:00:00'),(1006,4,67,0,168,'2013-09-27 00:00:00'),(1007,4,93,0,168,NULL),(1008,4,94,0,168,NULL),(1011,4,81,0,169,NULL),(1012,4,82,0,169,NULL),(1013,4,66,0,169,'2011-09-27 00:00:00'),(1014,4,67,0,169,'2013-10-27 00:00:00'),(1015,4,93,0,169,NULL),(1016,4,94,0,169,NULL),(1017,4,81,0,170,NULL),(1018,4,82,0,170,NULL),(1019,4,66,0,170,'2011-09-27 00:00:00'),(1020,4,67,0,170,'2013-10-27 00:00:00'),(1021,4,93,0,170,NULL),(1022,4,94,0,170,NULL),(1023,4,81,0,171,NULL),(1024,4,82,0,171,NULL),(1025,4,66,0,171,'2011-09-27 00:00:00'),(1026,4,67,0,171,'2013-10-27 00:00:00'),(1027,4,93,0,171,NULL),(1028,4,94,0,171,NULL),(1062,4,81,0,172,NULL),(1063,4,82,0,172,NULL),(1064,4,66,0,172,NULL),(1065,4,67,0,172,NULL),(1066,4,93,0,172,NULL),(1067,4,94,0,172,NULL),(1070,4,81,0,173,NULL),(1071,4,82,0,173,NULL),(1072,4,66,0,173,NULL),(1073,4,67,0,173,NULL),(1074,4,93,0,173,NULL),(1075,4,94,0,173,NULL),(1076,4,81,0,174,NULL),(1077,4,82,0,174,NULL),(1078,4,66,0,174,NULL),(1079,4,67,0,174,NULL),(1080,4,93,0,174,NULL),(1081,4,94,0,174,NULL),(1082,4,81,0,175,NULL),(1083,4,82,0,175,NULL),(1084,4,66,0,175,NULL),(1085,4,67,0,175,NULL),(1086,4,93,0,175,NULL),(1087,4,94,0,175,NULL),(1088,4,81,0,176,NULL),(1089,4,82,0,176,NULL),(1090,4,66,0,176,NULL),(1091,4,67,0,176,NULL),(1092,4,93,0,176,NULL),(1093,4,94,0,176,NULL),(1094,4,81,0,177,NULL),(1095,4,82,0,177,NULL),(1096,4,66,0,177,NULL),(1097,4,67,0,177,NULL),(1098,4,93,0,177,NULL),(1099,4,94,0,177,NULL),(1100,4,81,0,178,NULL),(1101,4,82,0,178,NULL),(1102,4,66,0,178,NULL),(1103,4,67,0,178,NULL),(1104,4,93,0,178,NULL),(1105,4,94,0,178,NULL),(1128,4,81,0,181,'2011-10-05 00:00:00'),(1129,4,82,0,181,NULL),(1130,4,66,0,181,NULL),(1131,4,67,0,181,NULL),(1132,4,93,0,181,NULL),(1133,4,94,0,181,NULL),(1142,4,81,0,182,NULL),(1143,4,82,0,182,NULL),(1144,4,66,0,182,NULL),(1145,4,67,0,182,NULL),(1146,4,93,0,182,NULL),(1147,4,94,0,182,NULL),(1148,4,81,0,183,'2011-10-31 00:00:00'),(1149,4,82,0,183,NULL),(1150,4,66,0,183,NULL),(1151,4,67,0,183,NULL),(1152,4,93,0,183,NULL),(1153,4,94,0,183,NULL),(1154,4,81,0,184,NULL),(1155,4,82,0,184,NULL),(1156,4,66,0,184,'2011-11-12 00:00:00'),(1157,4,67,0,184,'2011-12-31 00:00:00'),(1158,4,93,0,184,NULL),(1159,4,94,0,184,NULL),(1160,4,81,0,185,'2011-10-31 00:00:00'),(1161,4,82,0,185,NULL),(1162,4,66,0,185,NULL),(1163,4,67,0,185,NULL),(1164,4,93,0,185,NULL),(1165,4,94,0,185,NULL),(1166,4,81,0,186,'2011-10-31 00:00:00'),(1167,4,82,0,186,NULL),(1168,4,66,0,186,NULL),(1169,4,67,0,186,NULL),(1170,4,93,0,186,NULL),(1171,4,94,0,186,NULL),(1172,4,81,0,187,'2011-10-31 00:00:00'),(1173,4,82,0,187,NULL),(1174,4,66,0,187,NULL),(1175,4,67,0,187,NULL),(1176,4,93,0,187,NULL),(1177,4,94,0,187,NULL),(1184,4,81,0,189,NULL),(1185,4,82,0,189,NULL),(1186,4,66,0,189,'2011-11-01 00:00:00'),(1187,4,67,0,189,NULL),(1188,4,93,0,189,NULL),(1189,4,94,0,189,NULL),(1190,4,81,0,190,NULL),(1191,4,82,0,190,NULL),(1192,4,66,0,190,'2011-11-12 00:00:00'),(1193,4,67,0,190,NULL),(1194,4,93,0,190,NULL),(1195,4,94,0,190,NULL),(1196,4,81,0,191,NULL),(1197,4,82,0,191,NULL),(1198,4,66,0,191,'2011-11-12 00:00:00'),(1199,4,67,0,191,'2011-12-31 00:00:00'),(1200,4,93,0,191,NULL),(1201,4,94,0,191,NULL),(1202,4,81,0,192,NULL),(1203,4,82,0,192,NULL),(1204,4,66,0,192,'2011-11-12 00:00:00'),(1205,4,67,0,192,'2011-12-31 00:00:00'),(1206,4,93,0,192,NULL),(1207,4,94,0,192,NULL),(1208,4,81,0,193,'2011-11-03 00:00:00'),(1209,4,82,0,193,NULL),(1210,4,66,0,193,NULL),(1211,4,67,0,193,NULL),(1212,4,93,0,193,NULL),(1213,4,94,0,193,NULL),(1214,4,81,0,194,NULL),(1215,4,82,0,194,NULL),(1216,4,66,0,194,'2011-11-04 00:00:00'),(1217,4,67,0,194,'2012-01-01 00:00:00'),(1218,4,93,0,194,NULL),(1219,4,94,0,194,NULL),(1224,4,81,0,195,NULL),(1225,4,82,0,195,NULL),(1226,4,66,0,195,'2011-11-04 00:00:00'),(1227,4,67,0,195,'2011-12-31 00:00:00'),(1228,4,93,0,195,NULL),(1229,4,94,0,195,NULL),(1230,4,81,0,196,NULL),(1231,4,82,0,196,NULL),(1232,4,66,0,196,'2011-11-04 00:00:00'),(1233,4,67,0,196,'2011-12-31 00:00:00'),(1234,4,93,0,196,NULL),(1235,4,94,0,196,NULL),(1242,4,81,0,197,'2011-11-04 00:00:00'),(1243,4,82,0,197,NULL),(1244,4,66,0,197,NULL),(1245,4,67,0,197,NULL),(1246,4,93,0,197,NULL),(1247,4,94,0,197,NULL),(1250,4,81,0,198,NULL),(1251,4,82,0,198,NULL),(1252,4,66,0,198,'2011-11-04 00:00:00'),(1253,4,67,0,198,'2011-12-31 00:00:00'),(1254,4,93,0,198,NULL),(1255,4,94,0,198,NULL),(1256,4,81,0,199,'2011-11-04 00:00:00'),(1257,4,82,0,199,NULL),(1258,4,66,0,199,NULL),(1259,4,67,0,199,NULL),(1260,4,93,0,199,NULL),(1261,4,94,0,199,NULL),(1262,4,81,0,200,NULL),(1263,4,82,0,200,NULL),(1264,4,66,0,200,'2011-11-04 00:00:00'),(1265,4,67,0,200,'2012-01-01 00:00:00'),(1266,4,93,0,200,NULL),(1267,4,94,0,200,NULL),(1268,4,81,0,201,'2011-11-04 00:00:00'),(1269,4,82,0,201,NULL),(1270,4,66,0,201,'2011-11-04 00:00:00'),(1271,4,67,0,201,NULL),(1272,4,93,0,201,NULL),(1273,4,94,0,201,NULL),(1274,4,81,0,202,'2011-11-04 00:00:00'),(1275,4,82,0,202,NULL),(1276,4,66,0,202,NULL),(1277,4,67,0,202,NULL),(1278,4,93,0,202,NULL),(1279,4,94,0,202,NULL),(1280,4,81,0,203,'2011-11-05 00:00:00'),(1281,4,82,0,203,NULL),(1282,4,66,0,203,NULL),(1283,4,67,0,203,NULL),(1284,4,93,0,203,NULL),(1285,4,94,0,203,NULL),(1286,4,81,0,204,'2011-11-05 00:00:00'),(1287,4,82,0,204,NULL),(1288,4,66,0,204,NULL),(1289,4,67,0,204,NULL),(1290,4,93,0,204,NULL),(1291,4,94,0,204,NULL),(1292,4,81,0,205,'2011-11-05 00:00:00'),(1293,4,82,0,205,NULL),(1294,4,66,0,205,NULL),(1295,4,67,0,205,NULL),(1296,4,93,0,205,NULL),(1297,4,94,0,205,NULL),(1298,4,81,0,206,'2011-11-05 00:00:00'),(1299,4,82,0,206,NULL),(1300,4,66,0,206,NULL),(1301,4,67,0,206,NULL),(1302,4,93,0,206,NULL),(1303,4,94,0,206,NULL),(1304,4,81,0,207,NULL),(1305,4,82,0,207,NULL),(1306,4,66,0,207,'2011-11-05 00:00:00'),(1307,4,67,0,207,NULL),(1308,4,93,0,207,NULL),(1309,4,94,0,207,NULL),(1310,4,81,0,208,NULL),(1311,4,82,0,208,NULL),(1312,4,66,0,208,'2011-11-05 00:00:00'),(1313,4,67,0,208,NULL),(1314,4,93,0,208,NULL),(1315,4,94,0,208,NULL),(1316,4,81,0,209,'2011-11-05 00:00:00'),(1317,4,82,0,209,NULL),(1318,4,66,0,209,NULL),(1319,4,67,0,209,NULL),(1320,4,93,0,209,NULL),(1321,4,94,0,209,NULL),(1323,4,81,0,210,'2011-11-05 00:00:00'),(1324,4,82,0,210,NULL),(1325,4,66,0,210,NULL),(1326,4,67,0,210,NULL),(1327,4,93,0,210,NULL),(1328,4,94,0,210,NULL),(1329,4,81,0,211,NULL),(1330,4,82,0,211,NULL),(1331,4,66,0,211,'2011-11-10 00:00:00'),(1332,4,67,0,211,NULL),(1333,4,93,0,211,NULL),(1334,4,94,0,211,NULL),(1335,4,81,0,212,'2011-11-05 00:00:00'),(1336,4,82,0,212,NULL),(1337,4,66,0,212,NULL),(1338,4,67,0,212,NULL),(1339,4,93,0,212,NULL),(1340,4,94,0,212,NULL),(1341,4,81,0,213,NULL),(1342,4,82,0,213,NULL),(1343,4,66,0,213,'2011-11-05 00:00:00'),(1344,4,67,0,213,'2011-12-31 00:00:00'),(1345,4,93,0,213,NULL),(1346,4,94,0,213,NULL),(1350,4,81,0,214,NULL),(1351,4,82,0,214,NULL),(1352,4,66,0,214,'2011-11-05 00:00:00'),(1353,4,67,0,214,'2011-12-31 00:00:00'),(1354,4,93,0,214,NULL),(1355,4,94,0,214,NULL),(1356,4,81,0,215,NULL),(1357,4,82,0,215,NULL),(1358,4,66,0,215,'2011-11-05 00:00:00'),(1359,4,67,0,215,'2012-01-01 00:00:00'),(1360,4,93,0,215,NULL),(1361,4,94,0,215,NULL),(1362,4,81,0,216,NULL),(1363,4,82,0,216,NULL),(1364,4,66,0,216,'2011-11-05 00:00:00'),(1365,4,67,0,216,'2012-01-01 00:00:00'),(1366,4,93,0,216,NULL),(1367,4,94,0,216,NULL),(1371,4,81,0,217,'2011-11-06 00:00:00'),(1372,4,82,0,217,NULL),(1373,4,66,0,217,NULL),(1374,4,67,0,217,NULL),(1375,4,93,0,217,NULL),(1376,4,94,0,217,NULL),(1377,4,81,0,218,'2011-11-06 00:00:00'),(1378,4,82,0,218,NULL),(1379,4,66,0,218,NULL),(1380,4,67,0,218,NULL),(1381,4,93,0,218,NULL),(1382,4,94,0,218,NULL),(1383,4,81,0,219,'2011-11-06 00:00:00'),(1384,4,82,0,219,NULL),(1385,4,66,0,219,'2011-11-06 00:00:00'),(1386,4,67,0,219,NULL),(1387,4,93,0,219,NULL),(1388,4,94,0,219,NULL),(1389,4,81,0,220,'2011-11-06 00:00:00'),(1390,4,82,0,220,NULL),(1391,4,66,0,220,NULL),(1392,4,67,0,220,NULL),(1393,4,93,0,220,NULL),(1394,4,94,0,220,NULL),(1395,4,81,0,221,NULL),(1396,4,82,0,221,NULL),(1397,4,66,0,221,'2011-11-07 00:00:00'),(1398,4,67,0,221,'2012-01-01 00:00:00'),(1399,4,93,0,221,NULL),(1400,4,94,0,221,NULL),(1417,4,81,0,223,NULL),(1418,4,82,0,223,NULL),(1419,4,66,0,223,'2011-11-07 00:00:00'),(1420,4,67,0,223,'2012-01-01 00:00:00'),(1421,4,93,0,223,NULL),(1422,4,94,0,223,NULL),(1435,4,81,0,226,NULL),(1436,4,82,0,226,NULL),(1437,4,66,0,226,'2011-11-07 00:00:00'),(1438,4,67,0,226,'2012-01-01 00:00:00'),(1439,4,93,0,226,NULL),(1440,4,94,0,226,NULL),(1441,4,81,0,227,'2011-11-12 00:00:00'),(1442,4,82,0,227,NULL),(1443,4,66,0,227,'2011-11-08 00:00:00'),(1444,4,67,0,227,'2012-12-31 00:00:00'),(1445,4,93,0,227,NULL),(1446,4,94,0,227,NULL),(1447,4,81,0,228,NULL),(1448,4,82,0,228,NULL),(1449,4,66,0,228,'2011-11-19 00:00:00'),(1450,4,67,0,228,NULL),(1451,4,93,0,228,NULL),(1452,4,94,0,228,NULL),(1457,4,81,0,229,NULL),(1458,4,82,0,229,NULL),(1459,4,66,0,229,'2011-11-08 00:00:00'),(1460,4,67,0,229,'2011-12-31 00:00:00'),(1461,4,93,0,229,NULL),(1462,4,94,0,229,NULL),(1466,4,81,0,230,NULL),(1467,4,82,0,230,NULL),(1468,4,66,0,230,NULL),(1469,4,67,0,230,NULL),(1470,4,93,0,230,NULL),(1471,4,94,0,230,NULL),(1472,4,81,0,231,NULL),(1473,4,82,0,231,NULL),(1474,4,66,0,231,NULL),(1475,4,67,0,231,NULL),(1476,4,93,0,231,NULL),(1477,4,94,0,231,NULL),(1478,4,81,0,232,'2011-11-10 00:00:00'),(1479,4,82,0,232,NULL),(1480,4,66,0,232,'2011-11-10 00:00:00'),(1481,4,67,0,232,'2011-12-31 00:00:00'),(1482,4,93,0,232,NULL),(1483,4,94,0,232,NULL),(1484,4,81,0,233,NULL),(1485,4,82,0,233,NULL),(1486,4,66,0,233,NULL),(1487,4,67,0,233,NULL),(1488,4,93,0,233,NULL),(1489,4,94,0,233,NULL),(1492,4,81,0,234,NULL),(1493,4,82,0,234,NULL),(1494,4,66,0,234,NULL),(1495,4,67,0,234,NULL),(1496,4,93,0,234,NULL),(1497,4,94,0,234,NULL),(1504,4,81,0,236,NULL),(1505,4,82,0,236,NULL),(1506,4,66,0,236,NULL),(1507,4,67,0,236,NULL),(1508,4,93,0,236,NULL),(1509,4,94,0,236,NULL),(1510,4,81,0,237,'2011-11-19 00:00:00'),(1511,4,82,0,237,NULL),(1512,4,66,0,237,'2011-11-19 00:00:00'),(1513,4,67,0,237,'2011-12-31 00:00:00'),(1514,4,93,0,237,NULL),(1515,4,94,0,237,NULL),(1516,4,81,0,238,'2011-11-19 00:00:00'),(1517,4,82,0,238,NULL),(1518,4,66,0,238,'2011-11-19 00:00:00'),(1519,4,67,0,238,'2011-12-31 00:00:00'),(1520,4,93,0,238,NULL),(1521,4,94,0,238,NULL),(1522,4,81,0,239,NULL),(1523,4,82,0,239,NULL),(1524,4,66,0,239,NULL),(1525,4,67,0,239,NULL),(1526,4,93,0,239,NULL),(1527,4,94,0,239,NULL),(1530,4,81,0,240,'2011-11-19 00:00:00'),(1531,4,82,0,240,NULL),(1532,4,66,0,240,'2011-11-19 00:00:00'),(1533,4,67,0,240,'2011-12-31 00:00:00'),(1534,4,93,0,240,NULL),(1535,4,94,0,240,NULL),(1540,4,81,0,241,'2011-11-19 00:00:00'),(1541,4,82,0,241,NULL),(1542,4,66,0,241,'2011-11-19 00:00:00'),(1543,4,67,0,241,NULL),(1544,4,93,0,241,NULL),(1545,4,94,0,241,NULL),(1546,4,81,0,242,NULL),(1547,4,82,0,242,NULL),(1548,4,66,0,242,NULL),(1549,4,67,0,242,NULL),(1550,4,93,0,242,NULL),(1551,4,94,0,242,NULL),(1552,4,81,0,243,'2011-11-19 00:00:00'),(1553,4,82,0,243,NULL),(1554,4,66,0,243,'2011-11-19 00:00:00'),(1555,4,67,0,243,NULL),(1556,4,93,0,243,NULL),(1557,4,94,0,243,NULL),(1558,4,81,0,244,'2011-11-19 00:00:00'),(1559,4,82,0,244,NULL),(1560,4,66,0,244,'2011-11-19 00:00:00'),(1561,4,67,0,244,'2012-12-31 00:00:00'),(1562,4,93,0,244,NULL),(1563,4,94,0,244,NULL),(1564,4,81,0,245,NULL),(1565,4,82,0,245,NULL),(1566,4,66,0,245,'2011-11-19 00:00:00'),(1567,4,67,0,245,NULL),(1568,4,93,0,245,NULL),(1569,4,94,0,245,NULL),(1570,4,81,0,246,NULL),(1571,4,82,0,246,NULL),(1572,4,93,0,246,NULL),(1573,4,94,0,246,NULL),(1586,4,81,0,249,NULL),(1587,4,82,0,249,NULL),(1588,4,66,0,249,'2011-11-21 00:00:00'),(1589,4,67,0,249,NULL),(1590,4,93,0,249,NULL),(1591,4,94,0,249,NULL),(1593,4,81,0,250,NULL),(1594,4,82,0,250,NULL),(1595,4,66,0,250,NULL),(1596,4,67,0,250,NULL),(1597,4,93,0,250,NULL),(1598,4,94,0,250,NULL),(1599,4,81,0,251,NULL),(1600,4,82,0,251,NULL),(1601,4,66,0,251,NULL),(1602,4,67,0,251,NULL),(1603,4,93,0,251,NULL),(1604,4,94,0,251,NULL); /*!40000 ALTER TABLE `catalog_product_entity_datetime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_decimal` -- DROP TABLE IF EXISTS `catalog_product_entity_decimal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_entity_decimal` ( `value_id` int(11) NOT NULL AUTO_INCREMENT, `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0', `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `entity_id` int(10) unsigned NOT NULL DEFAULT '0', `value` decimal(12,4) DEFAULT NULL, PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_STORE` (`store_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_PRODUCT_ENTITY` (`entity_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE` (`attribute_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4168 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_decimal` -- LOCK TABLES `catalog_product_entity_decimal` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_decimal` DISABLE KEYS */; INSERT INTO `catalog_product_entity_decimal` VALUES (9,4,69,0,3,'2.4000'),(10,4,64,0,3,'30.0000'),(11,4,65,0,3,'28.5000'),(12,4,68,0,3,'9.5000'),(13,4,69,0,4,'5.0000'),(14,4,64,0,4,'19.9900'),(15,4,65,0,4,NULL),(16,4,68,0,4,'10.4000'),(17,4,69,0,5,'3.0000'),(18,4,64,0,5,'30.0000'),(19,4,65,0,5,'27.0000'),(20,4,68,0,5,'9.0000'),(21,4,69,0,6,'2.0000'),(22,4,64,0,6,'24.9900'),(23,4,65,0,6,'18.9800'),(24,4,68,0,6,'12.0800'),(25,4,69,0,7,'3.0000'),(26,4,64,0,7,'29.9900'),(27,4,65,0,7,'25.1100'),(28,4,68,0,7,NULL),(29,4,69,0,8,'6.0000'),(30,4,64,0,8,'29.9900'),(31,4,65,0,8,'26.9900'),(32,4,68,0,8,NULL),(33,4,69,0,9,'11.0000'),(34,4,64,0,9,'67.4900'),(35,4,65,0,9,NULL),(36,4,68,0,9,NULL),(37,4,69,0,10,'2.8500'),(38,4,64,0,10,'23.9900'),(39,4,65,0,10,'20.3900'),(40,4,68,0,10,NULL),(41,4,69,0,11,'2.8500'),(42,4,64,0,11,'26.9800'),(43,4,65,0,11,'24.9800'),(44,4,68,0,11,NULL),(45,4,69,0,12,'1.6600'),(46,4,64,0,12,'28.9900'),(47,4,65,0,12,'24.6400'),(48,4,68,0,12,NULL),(49,4,69,0,13,'11.0000'),(50,4,64,0,13,'104.9800'),(51,4,65,0,13,NULL),(52,4,68,0,13,NULL),(53,4,69,0,14,'2.0000'),(54,4,64,0,14,'34.9900'),(55,4,65,0,14,'32.9900'),(56,4,68,0,14,NULL),(57,4,69,0,15,'11.0000'),(58,4,64,0,15,'26.9900'),(59,4,65,0,15,NULL),(60,4,68,0,15,NULL),(61,4,69,0,16,'11.0000'),(62,4,64,0,16,'107.9800'),(63,4,65,0,16,NULL),(64,4,68,0,16,NULL),(65,4,69,0,17,'2.2000'),(66,4,64,0,17,'26.9900'),(67,4,65,0,17,'22.9400'),(68,4,68,0,17,NULL),(69,4,69,0,18,'11.0000'),(70,4,64,0,18,'83.9800'),(71,4,65,0,18,NULL),(72,4,68,0,18,NULL),(73,4,69,0,19,'11.0000'),(74,4,64,0,19,'89.9800'),(75,4,65,0,19,NULL),(76,4,68,0,19,NULL),(77,4,69,0,20,'11.0000'),(78,4,64,0,20,'112.9800'),(79,4,65,0,20,NULL),(80,4,68,0,20,NULL),(81,4,69,0,21,'11.0000'),(82,4,64,0,21,'93.6000'),(83,4,65,0,21,NULL),(84,4,68,0,21,NULL),(85,4,69,0,22,'2.1000'),(86,4,64,0,22,'35.2900'),(87,4,65,0,22,'30.2900'),(88,4,68,0,22,NULL),(89,4,69,0,23,'11.0000'),(90,4,64,0,23,'104.9700'),(91,4,65,0,23,NULL),(92,4,68,0,23,NULL),(93,4,69,0,24,'11.0000'),(94,4,64,0,24,'19.2000'),(95,4,65,0,24,NULL),(96,4,68,0,24,NULL),(101,4,69,0,26,'2.0000'),(102,4,64,0,26,'33.4900'),(103,4,65,0,26,'25.1200'),(104,4,68,0,26,'22.5200'),(105,4,69,0,27,'2.2000'),(106,4,64,0,27,'25.4900'),(107,4,65,0,27,'21.6700'),(108,4,68,0,27,NULL),(109,4,69,0,28,'2.5000'),(110,4,64,0,28,'39.9800'),(111,4,65,0,28,'32.9800'),(112,4,68,0,28,'19.9800'),(113,4,69,0,29,'2.1250'),(114,4,64,0,29,'25.1500'),(115,4,65,0,29,'19.9800'),(116,4,68,0,29,'11.9800'),(117,4,69,0,30,'3.1000'),(118,4,64,0,30,'83.9900'),(119,4,65,0,30,'62.9900'),(120,4,68,0,30,'42.0000'),(121,4,69,0,31,'2.0000'),(122,4,64,0,31,'36.9900'),(123,4,65,0,31,'26.9900'),(124,4,68,0,31,NULL),(125,4,69,0,32,'11.0000'),(126,4,64,0,32,'120.3900'),(127,4,65,0,32,NULL),(128,4,68,0,32,NULL),(129,4,69,0,33,'2.8750'),(130,4,64,0,33,'42.9700'),(131,4,65,0,33,'37.9800'),(132,4,68,0,33,'24.1800'),(133,4,69,0,34,'2.8750'),(134,4,64,0,34,'34.9800'),(135,4,65,0,34,'30.9800'),(136,4,68,0,34,'21.9800'),(137,4,69,0,35,'2.8125'),(138,4,64,0,35,'23.5000'),(139,4,65,0,35,'19.9800'),(140,4,68,0,35,'13.4900'),(141,4,69,0,36,'2.4000'),(142,4,64,0,36,'46.8800'),(143,4,65,0,36,'44.0700'),(144,4,68,0,36,'14.6900'),(145,4,69,0,37,'2.2000'),(146,4,64,0,37,'35.0000'),(147,4,65,0,37,'29.0300'),(148,4,68,0,37,'14.1600'),(149,4,69,0,38,'11.0000'),(150,4,64,0,38,'88.2000'),(151,4,65,0,38,NULL),(152,4,68,0,38,NULL),(153,4,69,0,39,'11.0000'),(154,4,64,0,39,'61.8900'),(155,4,65,0,39,NULL),(156,4,68,0,39,NULL),(157,4,69,0,40,'11.0000'),(158,4,64,0,40,'97.3200'),(159,4,65,0,40,NULL),(160,4,68,0,40,NULL),(161,4,69,0,41,'1.5000'),(162,4,64,0,41,'21.2600'),(163,4,65,0,41,'16.2400'),(164,4,68,0,41,'10.6300'),(165,4,69,0,42,'11.0000'),(166,4,64,0,42,'71.0700'),(167,4,65,0,42,NULL),(168,4,68,0,42,NULL),(169,4,69,0,43,'2.7700'),(170,4,64,0,43,'19.9800'),(171,4,65,0,43,'15.9800'),(172,4,68,0,43,'20.0000'),(173,4,69,0,44,'11.0000'),(174,4,64,0,44,'85.4700'),(175,4,65,0,44,NULL),(176,4,68,0,44,NULL),(177,4,69,0,45,'11.0000'),(178,4,64,0,45,'65.2500'),(179,4,65,0,45,NULL),(180,4,68,0,45,NULL),(181,4,69,0,46,'1.6600'),(182,4,64,0,46,'22.9800'),(183,4,65,0,46,'16.9800'),(184,4,68,0,46,'13.0000'),(185,4,69,0,47,'11.0000'),(186,4,64,0,47,'67.7700'),(187,4,65,0,47,NULL),(188,4,68,0,47,NULL),(189,4,69,0,48,'1.0000'),(190,4,64,0,48,'27.9900'),(191,4,65,0,48,NULL),(192,4,68,0,48,NULL),(193,4,69,0,49,'11.0000'),(194,4,64,0,49,'121.7700'),(195,4,65,0,49,NULL),(196,4,68,0,49,NULL),(197,4,69,0,50,'9.0000'),(198,4,64,0,50,'27.9900'),(199,4,65,0,50,'25.8300'),(200,4,68,0,50,'12.9800'),(201,4,69,0,51,'1.5000'),(202,4,64,0,51,'26.8500'),(203,4,65,0,51,'26.2200'),(204,4,68,0,51,'12.7900'),(205,4,69,0,52,'2.5000'),(206,4,64,0,52,'29.9900'),(207,4,65,0,52,'28.1700'),(208,4,68,0,52,'14.7000'),(209,4,69,0,53,'1.6400'),(210,4,64,0,53,'27.9800'),(211,4,65,0,53,'24.8700'),(212,4,68,0,53,'14.8800'),(213,4,69,0,54,'11.0000'),(214,4,64,0,54,'112.2000'),(215,4,65,0,54,NULL),(216,4,68,0,54,NULL),(217,4,69,0,55,'11.0000'),(218,4,64,0,55,'115.3500'),(219,4,65,0,55,NULL),(220,4,68,0,55,NULL),(221,4,69,0,56,'11.0000'),(222,4,64,0,56,'111.9900'),(223,4,65,0,56,NULL),(224,4,68,0,56,NULL),(225,4,69,0,57,'11.0000'),(226,4,64,0,57,'96.0000'),(227,4,65,0,57,NULL),(228,4,68,0,57,NULL),(229,4,69,0,58,'1.0000'),(230,4,64,0,58,'55.0000'),(231,4,65,0,58,'50.4900'),(232,4,68,0,58,'50.0000'),(233,4,69,0,59,'11.0000'),(234,4,64,0,59,'126.0000'),(235,4,65,0,59,NULL),(236,4,68,0,59,NULL),(237,4,69,0,60,'11.0000'),(238,4,64,0,60,'93.9900'),(239,4,65,0,60,NULL),(240,4,68,0,60,NULL),(241,4,69,0,61,'11.0000'),(242,4,64,0,61,'114.0000'),(243,4,65,0,61,NULL),(244,4,68,0,61,NULL),(245,4,69,0,62,'11.0000'),(246,4,64,0,62,'115.3500'),(247,4,65,0,62,NULL),(248,4,68,0,62,NULL),(249,4,69,0,63,'4.0000'),(250,4,64,0,63,'50.0000'),(251,4,65,0,63,'48.6400'),(252,4,68,0,63,NULL),(253,4,69,0,64,'2.8750'),(254,4,64,0,64,'50.3500'),(255,4,65,0,64,'38.9800'),(256,4,68,0,64,'23.9800'),(257,4,69,0,65,'11.0000'),(258,4,64,0,65,'118.7400'),(259,4,65,0,65,NULL),(260,4,68,0,65,NULL),(261,4,69,0,66,'11.0000'),(262,4,64,0,66,'104.9800'),(263,4,65,0,66,NULL),(264,4,68,0,66,NULL),(265,4,69,0,67,'6.0000'),(266,4,64,0,67,'25.9900'),(267,4,65,0,67,'22.4700'),(268,4,68,0,67,'7.4900'),(269,4,69,0,68,'2.0000'),(270,4,64,0,68,'39.9700'),(271,4,65,0,68,'30.9800'),(272,4,68,0,68,'62.9400'),(277,4,69,0,70,'2.8500'),(278,4,64,0,70,'37.0000'),(279,4,65,0,70,'35.3900'),(280,4,68,0,70,'11.8000'),(281,4,69,0,71,'2.8500'),(282,4,64,0,71,'45.9900'),(283,4,65,0,71,'40.8000'),(284,4,68,0,71,NULL),(289,4,69,0,73,'11.0000'),(290,4,64,0,73,'152.6700'),(291,4,65,0,73,NULL),(292,4,68,0,73,NULL),(293,4,69,0,74,'11.0000'),(294,4,64,0,74,'170.9700'),(295,4,65,0,74,NULL),(296,4,68,0,74,NULL),(297,4,69,0,75,'11.0000'),(298,4,64,0,75,'170.9700'),(299,4,65,0,75,NULL),(300,4,68,0,75,NULL),(301,4,69,0,76,'11.0000'),(302,4,64,0,76,'195.6000'),(303,4,65,0,76,NULL),(304,4,68,0,76,NULL),(305,4,69,0,77,'11.0000'),(306,4,64,0,77,'207.6000'),(307,4,65,0,77,NULL),(308,4,68,0,77,NULL),(309,4,69,0,78,'4.0000'),(310,4,64,0,78,'26.3200'),(311,4,65,0,78,'24.9900'),(312,4,68,0,78,'10.6300'),(313,4,69,0,79,'22.0000'),(314,4,64,0,79,'144.9800'),(315,4,65,0,79,NULL),(316,4,68,0,79,NULL),(317,4,69,0,80,'11.0000'),(318,4,64,0,80,'68.9800'),(319,4,65,0,80,NULL),(320,4,68,0,80,NULL),(321,4,69,0,81,'11.0000'),(322,4,64,0,81,'55.9500'),(323,4,65,0,81,NULL),(324,4,68,0,81,NULL),(325,4,69,0,82,'2.0000'),(326,4,64,0,82,'22.9800'),(327,4,65,0,82,'20.5600'),(328,4,68,0,82,'16.0800'),(329,4,69,0,83,'110000.0000'),(330,4,64,0,83,'117.5400'),(331,4,65,0,83,NULL),(332,4,68,0,83,NULL),(333,4,69,0,84,'11.0000'),(334,4,64,0,84,'108.4500'),(335,4,65,0,84,NULL),(336,4,68,0,84,NULL),(337,4,69,0,85,'11.0000'),(338,4,64,0,85,'90.0000'),(339,4,65,0,85,NULL),(340,4,68,0,85,NULL),(341,4,69,0,86,'11.0000'),(342,4,64,0,86,'86.2500'),(343,4,65,0,86,NULL),(344,4,68,0,86,NULL),(345,4,69,0,87,'1.5000'),(346,4,64,0,87,'37.2000'),(347,4,65,0,87,'27.9900'),(348,4,68,0,87,'18.6000'),(349,4,69,0,88,'11.0000'),(350,4,64,0,88,'115.3500'),(351,4,65,0,88,NULL),(352,4,68,0,88,NULL),(353,4,69,0,89,'4.0000'),(354,4,64,0,89,'229.9900'),(355,4,65,0,89,NULL),(356,4,68,0,89,NULL),(357,4,64,0,90,'139.9900'),(358,4,65,0,90,NULL),(359,4,68,0,90,NULL),(360,4,69,0,90,'3.0000'),(361,4,69,0,91,'0.7500'),(362,4,64,0,91,'24.9800'),(363,4,65,0,91,NULL),(364,4,68,0,91,NULL),(365,4,64,0,92,'24.9800'),(366,4,65,0,92,NULL),(367,4,68,0,92,NULL),(368,4,69,0,92,'0.7500'),(369,4,64,0,93,'12.9500'),(370,4,65,0,93,NULL),(371,4,68,0,93,NULL),(372,4,69,0,93,'0.5000'),(373,4,64,0,94,'54.0000'),(374,4,65,0,94,NULL),(375,4,68,0,94,NULL),(376,4,69,0,94,'3.0000'),(377,4,64,0,95,'249.9800'),(378,4,65,0,95,'188.8800'),(379,4,68,0,95,NULL),(380,4,69,0,95,'22.0000'),(385,4,64,0,97,'2999.9800'),(386,4,65,0,97,NULL),(387,4,68,0,97,NULL),(388,4,69,0,97,'264.0000'),(389,4,64,0,98,'4449.9800'),(390,4,65,0,98,NULL),(391,4,68,0,98,NULL),(392,4,69,0,98,'396.0000'),(393,4,64,0,99,'8699.9800'),(394,4,65,0,99,NULL),(395,4,68,0,99,NULL),(396,4,69,0,99,'792.0000'),(397,4,64,0,100,'5899.9800'),(398,4,65,0,100,NULL),(399,4,68,0,100,NULL),(400,4,69,0,100,'528.0000'),(401,4,64,0,101,'11499.9800'),(402,4,65,0,101,NULL),(403,4,68,0,101,NULL),(404,4,69,0,101,'1056.0000'),(405,4,64,0,102,'17199.9800'),(406,4,65,0,102,NULL),(407,4,68,0,102,NULL),(408,4,69,0,102,'1584.0000'),(409,4,64,0,103,'549.9900'),(410,4,65,0,103,NULL),(411,4,68,0,103,NULL),(412,4,69,0,103,'3.0000'),(413,4,64,0,104,'1499.9800'),(414,4,65,0,104,NULL),(415,4,68,0,104,NULL),(416,4,69,0,104,'132.0000'),(417,4,64,0,105,'549.9900'),(418,4,65,0,105,NULL),(419,4,68,0,105,NULL),(420,4,69,0,105,'3.0000'),(421,4,64,0,106,'849.9900'),(422,4,65,0,106,NULL),(423,4,68,0,106,NULL),(424,4,69,0,106,'3.0000'),(425,4,64,0,107,'1499.9900'),(426,4,65,0,107,NULL),(427,4,68,0,107,NULL),(428,4,69,0,107,'3.0000'),(429,4,64,0,108,'2499.9900'),(430,4,65,0,108,NULL),(431,4,68,0,108,NULL),(432,4,69,0,108,'3.0000'),(433,4,64,0,109,'2999.9900'),(434,4,65,0,109,NULL),(435,4,68,0,109,NULL),(436,4,69,0,109,'3.0000'),(437,4,64,0,110,'4799.9900'),(438,4,65,0,110,NULL),(439,4,68,0,110,NULL),(440,4,69,0,110,'3.0000'),(441,4,64,0,111,'5999.9900'),(442,4,65,0,111,NULL),(443,4,68,0,111,NULL),(444,4,69,0,111,'3.0000'),(445,4,64,0,112,'8999.9900'),(446,4,65,0,112,NULL),(447,4,68,0,112,NULL),(448,4,69,0,112,'3.0000'),(449,4,64,0,113,'549.9900'),(450,4,65,0,113,NULL),(451,4,68,0,113,NULL),(452,4,69,0,113,'3.0000'),(453,4,64,0,114,'949.9800'),(454,4,65,0,114,'849.9800'),(455,4,68,0,114,NULL),(456,4,69,0,114,'132.0000'),(457,4,64,0,115,'1699.9800'),(458,4,65,0,115,'1599.9800'),(459,4,68,0,115,NULL),(460,4,69,0,115,'264.0000'),(461,4,64,0,116,'2549.9800'),(462,4,65,0,116,'2349.9800'),(463,4,68,0,116,NULL),(464,4,69,0,116,'396.0000'),(465,4,64,0,117,'3399.9800'),(466,4,65,0,117,'3049.9800'),(467,4,68,0,117,NULL),(468,4,69,0,117,'528.0000'),(469,4,64,0,118,'5098.8800'),(470,4,65,0,118,'4499.9800'),(471,4,68,0,118,NULL),(472,4,69,0,118,'792.0000'),(473,4,64,0,119,'6799.9800'),(474,4,65,0,119,'5999.9800'),(475,4,68,0,119,NULL),(476,4,69,0,119,'106.0000'),(477,4,64,0,120,'10199.9800'),(478,4,65,0,120,'8999.9800'),(479,4,68,0,120,NULL),(480,4,69,0,120,'1584.0000'),(481,4,64,0,121,'549.9900'),(482,4,65,0,121,NULL),(483,4,68,0,121,NULL),(484,4,69,0,121,'3.0000'),(485,4,64,0,122,'949.9800'),(486,4,65,0,122,'849.9800'),(487,4,68,0,122,NULL),(488,4,69,0,122,'132.0000'),(489,4,64,0,123,'1699.9800'),(490,4,65,0,123,'1599.9800'),(491,4,68,0,123,NULL),(492,4,69,0,123,'264.0000'),(493,4,64,0,124,'2549.9800'),(494,4,65,0,124,'2349.9800'),(495,4,68,0,124,NULL),(496,4,69,0,124,'396.0000'),(497,4,64,0,125,'3399.9800'),(498,4,65,0,125,'3049.9800'),(499,4,68,0,125,NULL),(500,4,69,0,125,'528.0000'),(501,4,64,0,126,'5099.9800'),(502,4,65,0,126,'4499.9800'),(503,4,68,0,126,NULL),(504,4,69,0,126,'792.0000'),(505,4,64,0,127,'6799.8800'),(506,4,65,0,127,'5999.9800'),(507,4,68,0,127,NULL),(508,4,69,0,127,'1056.0000'),(509,4,64,0,128,'10199.9800'),(510,4,65,0,128,'8999.9800'),(511,4,68,0,128,NULL),(512,4,69,0,128,'1584.0000'),(513,4,64,0,129,'549.9900'),(514,4,65,0,129,NULL),(515,4,68,0,129,NULL),(516,4,69,0,129,'3.0000'),(517,4,64,0,130,'949.9900'),(518,4,65,0,130,'849.9800'),(519,4,68,0,130,NULL),(520,4,69,0,130,'132.0000'),(521,4,64,0,131,'1699.9900'),(522,4,65,0,131,'1599.9800'),(523,4,68,0,131,NULL),(524,4,69,0,131,'264.0000'),(525,4,64,0,132,'2549.9800'),(526,4,65,0,132,'2349.9800'),(527,4,68,0,132,NULL),(528,4,69,0,132,'396.0000'),(529,4,64,0,133,'3399.9800'),(530,4,65,0,133,'3049.9800'),(531,4,68,0,133,NULL),(532,4,69,0,133,'3.0000'),(533,4,64,0,134,'5099.9800'),(534,4,65,0,134,'4499.9800'),(535,4,68,0,134,NULL),(536,4,69,0,134,'792.0000'),(537,4,64,0,135,'6799.9800'),(538,4,65,0,135,'5999.9800'),(539,4,68,0,135,NULL),(540,4,69,0,135,'1056.0000'),(541,4,64,0,136,'10199.9800'),(542,4,65,0,136,'8999.9800'),(543,4,68,0,136,NULL),(544,4,69,0,136,'1584.0000'),(545,4,64,0,137,'1949.9900'),(546,4,65,0,137,NULL),(547,4,68,0,137,NULL),(548,4,69,0,137,'3.0000'),(549,4,64,0,138,'199.9900'),(550,4,65,0,138,NULL),(551,4,68,0,138,NULL),(552,4,69,0,138,'22.0000'),(553,4,64,0,139,'299.9500'),(554,4,65,0,139,NULL),(555,4,68,0,139,NULL),(556,4,69,0,139,'22.0000'),(557,4,64,0,140,'144.9800'),(558,4,65,0,140,NULL),(559,4,68,0,140,NULL),(560,4,69,0,140,'22.0000'),(561,4,64,0,141,'199.9900'),(562,4,65,0,141,NULL),(563,4,68,0,141,NULL),(564,4,69,0,141,'22.0000'),(565,4,64,0,142,'129.9900'),(566,4,65,0,142,NULL),(567,4,68,0,142,NULL),(568,4,69,0,142,'22.0000'),(569,4,69,0,143,'11.0000'),(570,4,64,0,143,'102.5700'),(571,4,65,0,143,NULL),(572,4,68,0,143,NULL),(573,4,69,0,144,'2.8500'),(574,4,64,0,144,'34.9900'),(575,4,65,0,144,'29.7400'),(576,4,68,0,144,NULL),(577,4,69,0,145,'22.0000'),(578,4,64,0,145,'199.9900'),(579,4,65,0,145,NULL),(580,4,68,0,145,NULL),(581,4,69,0,146,'22.0000'),(582,4,64,0,146,'199.9900'),(583,4,65,0,146,NULL),(584,4,68,0,146,NULL),(585,4,69,0,147,'22.0000'),(586,4,64,0,147,'199.9900'),(587,4,65,0,147,NULL),(588,4,68,0,147,NULL),(589,4,69,0,148,'22.0000'),(590,4,64,0,148,'199.9900'),(591,4,65,0,148,NULL),(592,4,68,0,148,NULL),(593,4,69,0,149,'22.0000'),(594,4,64,0,149,'199.9900'),(595,4,65,0,149,NULL),(596,4,68,0,149,NULL),(597,4,69,0,150,'22.0000'),(598,4,64,0,150,'199.9900'),(599,4,65,0,150,NULL),(600,4,68,0,150,NULL),(601,4,69,0,151,'22.0000'),(602,4,64,0,151,'199.9900'),(603,4,65,0,151,NULL),(604,4,68,0,151,NULL),(605,4,69,0,152,'2.0000'),(606,4,64,0,152,'44.9800'),(607,4,65,0,152,'35.9900'),(608,4,68,0,152,'20.0000'),(609,4,69,0,153,'22.0000'),(610,4,64,0,153,'199.9900'),(611,4,65,0,153,NULL),(612,4,68,0,153,NULL),(613,4,69,0,154,'22.0000'),(614,4,64,0,154,'199.9900'),(615,4,65,0,154,NULL),(616,4,68,0,154,NULL),(617,4,69,0,155,'22.0000'),(618,4,64,0,155,'199.9900'),(619,4,65,0,155,NULL),(620,4,68,0,155,NULL),(621,4,69,0,156,'3.0300'),(622,4,64,0,156,'13.9800'),(623,4,65,0,156,NULL),(624,4,68,0,156,NULL),(625,4,69,0,157,'22.0000'),(626,4,64,0,157,'199.9900'),(627,4,65,0,157,NULL),(628,4,68,0,157,NULL),(629,4,69,0,158,'22.0000'),(630,4,64,0,158,'199.9900'),(631,4,65,0,158,NULL),(632,4,68,0,158,NULL),(633,4,69,0,159,'22.0000'),(634,4,64,0,159,'199.9900'),(635,4,65,0,159,NULL),(636,4,68,0,159,NULL),(637,4,69,0,160,'11.0000'),(638,4,64,0,160,'74.9800'),(639,4,65,0,160,NULL),(640,4,68,0,160,NULL),(641,4,69,0,161,'2.0000'),(642,4,64,0,161,'49.9900'),(643,4,65,0,161,NULL),(644,4,68,0,161,'13.0000'),(645,4,69,0,162,'264.0000'),(646,4,64,0,162,'1699.9800'),(647,4,65,0,162,'1599.9800'),(648,4,68,0,162,NULL),(674,4,69,0,163,'71.0000'),(675,4,64,0,163,'949.9800'),(676,4,65,0,163,'849.9800'),(677,4,68,0,163,NULL),(684,4,69,0,164,'396.0000'),(685,4,64,0,164,'2549.9800'),(686,4,65,0,164,'2349.9800'),(687,4,68,0,164,NULL),(697,4,69,0,165,'528.0000'),(698,4,64,0,165,'3399.9800'),(699,4,65,0,165,'3049.9800'),(700,4,68,0,165,NULL),(707,4,69,0,166,'792.0000'),(708,4,64,0,166,'5099.9800'),(709,4,65,0,166,'4499.9800'),(710,4,68,0,166,NULL),(717,4,69,0,167,'1056.0000'),(718,4,64,0,167,'6799.9800'),(719,4,65,0,167,'5999.9800'),(720,4,68,0,167,NULL),(727,4,69,0,168,'900.0000'),(728,4,64,0,168,'10199.9800'),(729,4,65,0,168,'8999.9800'),(730,4,68,0,168,NULL),(1121,4,69,0,169,'475.0000'),(1122,4,64,0,169,'4398.9800'),(1123,4,65,0,169,'3999.9800'),(1124,4,68,0,169,NULL),(1134,4,69,0,170,'950.0000'),(1135,4,64,0,170,'9288.8800'),(1136,4,65,0,170,'8299.9800'),(1137,4,68,0,170,NULL),(1144,4,69,0,171,'1584.0000'),(1145,4,64,0,171,'18999.9800'),(1146,4,65,0,171,'16399.9800'),(1147,4,68,0,171,NULL),(1656,4,69,0,172,'3.0000'),(1657,4,64,0,172,'10.0000'),(1658,4,65,0,172,NULL),(1659,4,68,0,172,NULL),(1707,4,69,0,173,'88.0000'),(1708,4,64,0,173,'649.9900'),(1709,4,65,0,173,NULL),(1710,4,68,0,173,NULL),(1753,4,69,0,174,'176.0000'),(1754,4,64,0,174,'1299.9800'),(1755,4,65,0,174,NULL),(1756,4,68,0,174,NULL),(1760,4,69,0,175,'264.0000'),(1761,4,64,0,175,'1849.9900'),(1762,4,65,0,175,NULL),(1763,4,68,0,175,NULL),(1767,4,69,0,176,'352.0000'),(1768,4,64,0,176,'2499.9800'),(1769,4,65,0,176,NULL),(1770,4,68,0,176,NULL),(1771,4,69,0,177,'528.0000'),(1772,4,64,0,177,'3599.9800'),(1773,4,65,0,177,NULL),(1774,4,68,0,177,NULL),(1775,4,69,0,178,'704.0000'),(1776,4,64,0,178,'4699.9800'),(1777,4,65,0,178,NULL),(1778,4,68,0,178,NULL),(2165,4,69,0,181,'500.0000'),(2166,4,64,0,181,'1999.9800'),(2167,4,65,0,181,NULL),(2168,4,68,0,181,NULL),(2292,4,69,0,182,'1056.0000'),(2293,4,64,0,182,'6999.9800'),(2294,4,65,0,182,NULL),(2295,4,68,0,182,NULL),(2336,4,69,0,183,'1.0000'),(2337,4,64,0,183,'79.9500'),(2338,4,65,0,183,NULL),(2339,4,68,0,183,NULL),(2340,4,69,0,184,'3.0000'),(2341,4,64,0,184,'45.3600'),(2342,4,65,0,184,'34.0200'),(2343,4,68,0,184,'21.6000'),(2417,4,69,0,185,'1.3000'),(2418,4,64,0,185,'199.9500'),(2419,4,65,0,185,NULL),(2420,4,68,0,185,NULL),(2424,4,69,0,186,'1.2500'),(2425,4,64,0,186,'349.8800'),(2426,4,65,0,186,NULL),(2427,4,68,0,186,NULL),(2440,4,69,0,187,'11.4600'),(2441,4,64,0,187,'1199.8800'),(2442,4,65,0,187,NULL),(2443,4,68,0,187,NULL),(2460,4,69,0,189,'22.0000'),(2461,4,64,0,189,'249.9800'),(2462,4,65,0,189,'99.9900'),(2463,4,68,0,189,NULL),(2494,4,69,0,190,'2.0000'),(2495,4,64,0,190,'46.6200'),(2496,4,65,0,190,'34.9600'),(2497,4,68,0,190,'22.2000'),(2507,4,69,0,191,'3.0000'),(2508,4,64,0,191,'83.1600'),(2509,4,65,0,191,'62.3700'),(2510,4,68,0,191,'39.6000'),(2520,4,69,0,192,'2.4500'),(2521,4,64,0,192,'47.9900'),(2522,4,65,0,192,'35.9900'),(2523,4,68,0,192,'24.0000'),(2625,4,69,0,193,'3.0000'),(2626,4,64,0,193,'34.5000'),(2627,4,65,0,193,NULL),(2628,4,68,0,193,NULL),(2699,4,69,0,194,'22.0000'),(2700,4,64,0,194,'41.9700'),(2701,4,65,0,194,'31.9900'),(2702,4,68,0,194,'20.8800'),(2760,4,69,0,195,'2.0000'),(2761,4,64,0,195,'32.2900'),(2762,4,65,0,195,'24.9800'),(2763,4,68,0,195,'15.3800'),(2800,4,69,0,196,'2.6875'),(2801,4,64,0,196,'34.6000'),(2802,4,65,0,196,'25.9800'),(2803,4,68,0,196,'16.4800'),(2963,4,69,0,197,'45.0000'),(2964,4,64,0,197,'399.9800'),(2965,4,65,0,197,NULL),(2966,4,68,0,197,NULL),(2980,4,69,0,198,'2.6875'),(2981,4,64,0,198,'41.9700'),(2982,4,65,0,198,'33.9800'),(2983,4,68,0,198,'21.9800'),(2987,4,69,0,199,'100.0000'),(2988,4,64,0,199,'559.9800'),(2989,4,65,0,199,NULL),(2990,4,68,0,199,NULL),(3000,4,69,0,200,'3.2500'),(3001,4,64,0,200,'50.5600'),(3002,4,65,0,200,'39.9800'),(3003,4,68,0,200,'24.0800'),(3016,4,69,0,201,'11.0000'),(3017,4,64,0,201,'119.9800'),(3018,4,65,0,201,NULL),(3019,4,68,0,201,NULL),(3023,4,69,0,202,'12.0000'),(3024,4,64,0,202,'134.9800'),(3025,4,65,0,202,NULL),(3026,4,68,0,202,NULL),(3027,4,69,0,203,'15.0000'),(3028,4,64,0,203,'179.9800'),(3029,4,65,0,203,NULL),(3030,4,68,0,203,NULL),(3031,4,69,0,204,'18.0000'),(3032,4,64,0,204,'198.8800'),(3033,4,65,0,204,NULL),(3034,4,68,0,204,NULL),(3044,4,69,0,205,'20.0000'),(3045,4,64,0,205,'259.9800'),(3046,4,65,0,205,NULL),(3047,4,68,0,205,NULL),(3051,4,69,0,206,'16.0000'),(3052,4,64,0,206,'178.9800'),(3053,4,65,0,206,NULL),(3054,4,68,0,206,NULL),(3055,4,69,0,207,'2.8750'),(3056,4,64,0,207,'41.7700'),(3057,4,65,0,207,'35.9800'),(3058,4,68,0,207,'21.9800'),(3062,4,69,0,208,'2.8125'),(3063,4,64,0,208,'38.9700'),(3064,4,65,0,208,'34.9800'),(3065,4,68,0,208,'21.5600'),(3066,4,69,0,209,'1.6100'),(3067,4,64,0,209,'62.0000'),(3068,4,65,0,209,NULL),(3069,4,68,0,209,NULL),(3083,4,69,0,210,'1.5800'),(3084,4,64,0,210,'42.9800'),(3085,4,65,0,210,NULL),(3086,4,68,0,210,NULL),(3090,4,69,0,211,'2.8125'),(3091,4,64,0,211,'23.9600'),(3092,4,65,0,211,'22.0000'),(3093,4,68,0,211,'11.9800'),(3097,4,69,0,212,'0.4000'),(3098,4,64,0,212,'52.0000'),(3099,4,65,0,212,NULL),(3100,4,68,0,212,NULL),(3110,4,69,0,213,'3.2500'),(3111,4,64,0,213,'34.6000'),(3112,4,65,0,213,'25.9800'),(3113,4,68,0,213,'16.4800'),(3120,4,69,0,214,'2.5000'),(3121,4,64,0,214,'47.8800'),(3122,4,65,0,214,'35.9100'),(3123,4,68,0,214,'22.8000'),(3224,4,69,0,215,'2.4000'),(3225,4,64,0,215,'59.2200'),(3226,4,65,0,215,'45.0000'),(3227,4,68,0,215,'28.2000'),(3234,4,69,0,216,'2.4000'),(3235,4,64,0,216,'39.9800'),(3236,4,65,0,216,'29.9800'),(3237,4,68,0,216,'18.6000'),(3282,4,69,0,217,'8.0000'),(3283,4,64,0,217,'348.2500'),(3284,4,65,0,217,NULL),(3285,4,68,0,217,NULL),(3286,4,69,0,218,'10.0000'),(3287,4,64,0,218,'219.9800'),(3288,4,65,0,218,NULL),(3289,4,68,0,218,NULL),(3290,4,69,0,219,'21.0000'),(3291,4,64,0,219,'329.9900'),(3292,4,65,0,219,'284.9800'),(3293,4,68,0,219,NULL),(3300,4,69,0,220,'15.0000'),(3301,4,64,0,220,'119.9900'),(3302,4,65,0,220,NULL),(3303,4,68,0,220,NULL),(3325,4,69,0,221,'1.8500'),(3326,4,64,0,221,'35.9900'),(3327,4,65,0,221,'30.9800'),(3328,4,68,0,221,NULL),(3513,4,69,0,223,'0.6563'),(3514,4,64,0,223,'119.9500'),(3515,4,65,0,223,'109.9500'),(3516,4,68,0,223,NULL),(3532,4,69,0,226,'3.0000'),(3533,4,64,0,226,'26.9900'),(3534,4,65,0,226,NULL),(3535,4,68,0,226,'13.5000'),(3559,4,69,0,227,'5.0000'),(3560,4,64,0,227,'35.0000'),(3561,4,65,0,227,'31.2500'),(3562,4,68,0,227,'12.5000'),(3572,4,69,0,228,'3.0000'),(3573,4,64,0,228,'22.0000'),(3574,4,65,0,228,NULL),(3575,4,68,0,228,NULL),(3632,4,69,0,229,'5.0000'),(3633,4,64,0,229,'29.9900'),(3634,4,65,0,229,'27.8400'),(3635,4,68,0,229,'9.2800'),(3677,4,69,0,230,'1.5000'),(3678,4,64,0,230,'26.9900'),(3679,4,65,0,230,NULL),(3680,4,68,0,230,NULL),(3696,4,69,0,231,'1.5000'),(3697,4,64,0,231,'12.9900'),(3698,4,65,0,231,NULL),(3699,4,68,0,231,NULL),(3731,4,69,0,232,'4.1000'),(3732,4,64,0,232,'36.9900'),(3733,4,65,0,232,'33.0000'),(3734,4,68,0,232,'11.0000'),(3751,4,64,0,233,'800.0000'),(3752,4,65,0,233,NULL),(3805,4,69,0,234,'5.0000'),(3806,4,64,0,234,'49.9500'),(3807,4,65,0,234,NULL),(3808,4,68,0,234,NULL),(3875,4,69,0,236,'0.8000'),(3876,4,64,0,236,'69.9800'),(3877,4,65,0,236,NULL),(3878,4,68,0,236,NULL),(3882,4,69,0,237,'3.0000'),(3883,4,64,0,237,'49.9900'),(3884,4,65,0,237,'45.9000'),(3885,4,68,0,237,NULL),(3892,4,69,0,238,'2.5000'),(3893,4,64,0,238,'36.9900'),(3894,4,65,0,238,'32.0000'),(3895,4,68,0,238,NULL),(3896,4,69,0,239,'0.1000'),(3897,4,64,0,239,'9.9900'),(3898,4,65,0,239,NULL),(3899,4,68,0,239,NULL),(3904,4,69,0,240,'2.0000'),(3905,4,64,0,240,'32.0000'),(3906,4,65,0,240,'27.1100'),(3907,4,68,0,240,NULL),(3921,4,69,0,241,'3.0000'),(3922,4,64,0,241,'29.9900'),(3923,4,65,0,241,'23.9900'),(3924,4,68,0,241,NULL),(3925,4,69,0,242,'3.0000'),(3926,4,64,0,242,'29.9900'),(3927,4,65,0,242,NULL),(3928,4,68,0,242,NULL),(3938,4,69,0,243,'3.0000'),(3939,4,64,0,243,'39.9900'),(3940,4,65,0,243,'34.9900'),(3941,4,68,0,243,NULL),(3942,4,69,0,244,'5.0000'),(3943,4,64,0,244,'45.0000'),(3944,4,65,0,244,'42.7200'),(3945,4,68,0,244,'14.7200'),(3946,4,69,0,245,'6.0000'),(3947,4,64,0,245,'37.9800'),(3948,4,65,0,245,'35.6000'),(3949,4,68,0,245,'14.2400'),(3973,4,64,0,249,'849.9900'),(3974,4,65,0,249,NULL),(4026,4,69,0,250,'15.0000'),(4027,4,64,0,250,'359.9500'),(4028,4,65,0,250,NULL),(4029,4,68,0,250,NULL),(4030,4,69,0,251,'4.0000'),(4031,4,64,0,251,'199.9900'),(4032,4,65,0,251,NULL),(4033,4,68,0,251,NULL); /*!40000 ALTER TABLE `catalog_product_entity_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_gallery` -- DROP TABLE IF EXISTS `catalog_product_entity_gallery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_entity_gallery` ( `value_id` int(11) NOT NULL AUTO_INCREMENT, `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT '0', `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `entity_id` int(10) unsigned NOT NULL DEFAULT '0', `position` int(11) NOT NULL DEFAULT '0', `value` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `FK_ATTRIBUTE_GALLERY_ENTITY` (`entity_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_GALLERY_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_GALLERY_STORE` (`store_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_gallery` -- LOCK TABLES `catalog_product_entity_gallery` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_gallery` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_gallery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_int` -- DROP TABLE IF EXISTS `catalog_product_entity_int`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_entity_int` ( `value_id` int(11) NOT NULL AUTO_INCREMENT, `entity_type_id` mediumint(8) unsigned NOT NULL DEFAULT '0', `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `entity_id` int(10) unsigned NOT NULL DEFAULT '0', `value` int(11) DEFAULT NULL, PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_INT_STORE` (`store_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_INT_PRODUCT_ENTITY` (`entity_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1757 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_int` -- LOCK TABLES `catalog_product_entity_int` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_int` DISABLE KEYS */; INSERT INTO `catalog_product_entity_int` VALUES (13,4,84,0,3,1),(14,4,91,0,3,4),(15,4,120,0,3,1),(16,4,85,0,3,2),(17,4,109,0,3,1),(18,4,89,0,3,0),(19,4,84,0,4,1),(20,4,91,0,4,4),(21,4,120,0,4,1),(22,4,85,0,4,2),(23,4,109,0,4,1),(24,4,89,0,4,0),(25,4,84,0,5,1),(26,4,91,0,5,4),(27,4,120,0,5,1),(28,4,85,0,5,2),(29,4,109,0,5,1),(30,4,89,0,5,0),(31,4,84,0,6,1),(32,4,91,0,6,4),(33,4,120,0,6,1),(34,4,85,0,6,2),(35,4,109,0,6,1),(36,4,89,0,6,0),(37,4,84,0,7,1),(38,4,91,0,7,4),(39,4,120,0,7,1),(40,4,85,0,7,2),(41,4,109,0,7,1),(42,4,89,0,7,0),(43,4,84,0,8,1),(44,4,91,0,8,4),(45,4,120,0,8,1),(46,4,85,0,8,2),(47,4,109,0,8,1),(48,4,89,0,8,0),(49,4,84,0,9,1),(50,4,91,0,9,4),(51,4,120,0,9,1),(52,4,85,0,9,2),(53,4,109,0,9,1),(54,4,89,0,9,0),(55,4,84,0,10,1),(56,4,91,0,10,4),(57,4,120,0,10,1),(58,4,85,0,10,2),(59,4,109,0,10,1),(60,4,89,0,10,0),(61,4,84,0,11,1),(62,4,91,0,11,4),(63,4,120,0,11,1),(64,4,85,0,11,2),(65,4,109,0,11,1),(66,4,89,0,11,0),(67,4,84,0,12,1),(68,4,91,0,12,4),(69,4,120,0,12,1),(70,4,85,0,12,2),(71,4,109,0,12,1),(72,4,89,0,12,0),(73,4,84,0,13,2),(74,4,91,0,13,4),(75,4,120,0,13,1),(76,4,85,0,13,2),(77,4,109,0,13,1),(78,4,89,0,13,0),(79,4,84,0,14,1),(80,4,91,0,14,4),(81,4,120,0,14,1),(82,4,85,0,14,2),(83,4,109,0,14,1),(84,4,89,0,14,0),(85,4,84,0,15,1),(86,4,91,0,15,4),(87,4,120,0,15,1),(88,4,85,0,15,2),(89,4,109,0,15,1),(90,4,89,0,15,0),(91,4,84,0,16,2),(92,4,91,0,16,4),(93,4,120,0,16,1),(94,4,85,0,16,2),(95,4,109,0,16,1),(96,4,89,0,16,0),(97,4,84,0,17,1),(98,4,91,0,17,4),(99,4,120,0,17,1),(100,4,85,0,17,2),(101,4,109,0,17,1),(102,4,89,0,17,0),(103,4,84,0,18,1),(104,4,91,0,18,4),(105,4,120,0,18,1),(106,4,85,0,18,2),(107,4,109,0,18,1),(108,4,89,0,18,0),(109,4,84,0,19,1),(110,4,91,0,19,4),(111,4,120,0,19,1),(112,4,85,0,19,2),(113,4,109,0,19,1),(114,4,89,0,19,0),(115,4,84,0,20,1),(116,4,91,0,20,4),(117,4,120,0,20,1),(118,4,85,0,20,2),(119,4,109,0,20,1),(120,4,89,0,20,0),(121,4,84,0,21,2),(122,4,91,0,21,4),(123,4,120,0,21,1),(124,4,85,0,21,2),(125,4,109,0,21,1),(126,4,89,0,21,0),(127,4,84,0,22,1),(128,4,91,0,22,4),(129,4,120,0,22,1),(130,4,85,0,22,2),(131,4,109,0,22,1),(132,4,89,0,22,0),(133,4,84,0,23,2),(134,4,91,0,23,4),(135,4,120,0,23,1),(136,4,85,0,23,2),(137,4,109,0,23,1),(138,4,89,0,23,0),(139,4,84,0,24,2),(140,4,91,0,24,4),(141,4,120,0,24,1),(142,4,85,0,24,2),(143,4,109,0,24,1),(144,4,89,0,24,0),(151,4,84,0,26,1),(152,4,91,0,26,4),(153,4,120,0,26,1),(154,4,85,0,26,2),(155,4,109,0,26,1),(156,4,89,0,26,0),(157,4,84,0,27,1),(158,4,91,0,27,4),(159,4,120,0,27,1),(160,4,85,0,27,2),(161,4,109,0,27,1),(162,4,89,0,27,0),(163,4,84,0,28,1),(164,4,91,0,28,4),(165,4,120,0,28,1),(166,4,85,0,28,2),(167,4,109,0,28,1),(168,4,89,0,28,0),(169,4,84,0,29,1),(170,4,91,0,29,4),(171,4,120,0,29,1),(172,4,85,0,29,2),(173,4,109,0,29,1),(174,4,89,0,29,0),(175,4,84,0,30,1),(176,4,91,0,30,4),(177,4,120,0,30,1),(178,4,85,0,30,2),(179,4,109,0,30,1),(180,4,89,0,30,0),(181,4,84,0,31,1),(182,4,91,0,31,4),(183,4,120,0,31,1),(184,4,85,0,31,2),(185,4,109,0,31,1),(186,4,89,0,31,0),(187,4,84,0,32,2),(188,4,91,0,32,4),(189,4,120,0,32,1),(190,4,85,0,32,2),(191,4,109,0,32,1),(192,4,89,0,32,0),(193,4,84,0,33,1),(194,4,91,0,33,4),(195,4,120,0,33,1),(196,4,85,0,33,2),(197,4,109,0,33,1),(198,4,89,0,33,0),(199,4,84,0,34,1),(200,4,91,0,34,4),(201,4,120,0,34,1),(202,4,85,0,34,2),(203,4,109,0,34,1),(204,4,89,0,34,0),(205,4,84,0,35,1),(206,4,91,0,35,4),(207,4,120,0,35,1),(208,4,85,0,35,2),(209,4,109,0,35,1),(210,4,89,0,35,0),(211,4,84,0,36,1),(212,4,91,0,36,4),(213,4,120,0,36,1),(214,4,85,0,36,2),(215,4,109,0,36,1),(216,4,89,0,36,0),(217,4,84,0,37,1),(218,4,91,0,37,4),(219,4,120,0,37,1),(220,4,85,0,37,2),(221,4,109,0,37,1),(222,4,89,0,37,0),(223,4,84,0,38,2),(224,4,91,0,38,4),(225,4,120,0,38,1),(226,4,85,0,38,2),(227,4,109,0,38,1),(228,4,89,0,38,0),(229,4,84,0,39,2),(230,4,91,0,39,4),(231,4,120,0,39,1),(232,4,85,0,39,2),(233,4,109,0,39,1),(234,4,89,0,39,0),(235,4,84,0,40,2),(236,4,91,0,40,4),(237,4,120,0,40,1),(238,4,85,0,40,2),(239,4,109,0,40,1),(240,4,89,0,40,0),(241,4,84,0,41,1),(242,4,91,0,41,4),(243,4,120,0,41,1),(244,4,85,0,41,2),(245,4,109,0,41,1),(246,4,89,0,41,0),(247,4,84,0,42,2),(248,4,91,0,42,4),(249,4,120,0,42,1),(250,4,85,0,42,2),(251,4,109,0,42,1),(252,4,89,0,42,0),(253,4,84,0,43,1),(254,4,91,0,43,4),(255,4,120,0,43,1),(256,4,85,0,43,2),(257,4,109,0,43,1),(258,4,89,0,43,0),(259,4,84,0,44,2),(260,4,91,0,44,4),(261,4,120,0,44,1),(262,4,85,0,44,2),(263,4,109,0,44,1),(264,4,89,0,44,0),(265,4,84,0,45,2),(266,4,91,0,45,4),(267,4,120,0,45,1),(268,4,85,0,45,2),(269,4,109,0,45,1),(270,4,89,0,45,0),(271,4,84,0,46,2),(272,4,91,0,46,4),(273,4,120,0,46,1),(274,4,85,0,46,2),(275,4,109,0,46,1),(276,4,89,0,46,0),(277,4,84,0,47,2),(278,4,91,0,47,4),(279,4,120,0,47,1),(280,4,85,0,47,2),(281,4,109,0,47,1),(282,4,89,0,47,0),(283,4,84,0,48,1),(284,4,91,0,48,4),(285,4,120,0,48,1),(286,4,85,0,48,2),(287,4,109,0,48,1),(288,4,89,0,48,0),(289,4,84,0,49,2),(290,4,91,0,49,4),(291,4,120,0,49,1),(292,4,85,0,49,2),(293,4,109,0,49,1),(294,4,89,0,49,0),(295,4,84,0,50,1),(296,4,91,0,50,4),(297,4,120,0,50,1),(298,4,85,0,50,2),(299,4,109,0,50,1),(300,4,89,0,50,0),(301,4,84,0,51,1),(302,4,91,0,51,4),(303,4,120,0,51,1),(304,4,85,0,51,2),(305,4,109,0,51,1),(306,4,89,0,51,0),(307,4,84,0,52,1),(308,4,91,0,52,4),(309,4,120,0,52,1),(310,4,85,0,52,2),(311,4,109,0,52,1),(312,4,89,0,52,0),(313,4,84,0,53,1),(314,4,91,0,53,4),(315,4,120,0,53,1),(316,4,85,0,53,2),(317,4,109,0,53,1),(318,4,89,0,53,0),(319,4,84,0,54,2),(320,4,91,0,54,4),(321,4,120,0,54,1),(322,4,85,0,54,2),(323,4,109,0,54,1),(324,4,89,0,54,0),(325,4,84,0,55,2),(326,4,91,0,55,4),(327,4,120,0,55,1),(328,4,85,0,55,2),(329,4,109,0,55,1),(330,4,89,0,55,0),(331,4,84,0,56,2),(332,4,91,0,56,4),(333,4,120,0,56,1),(334,4,85,0,56,2),(335,4,109,0,56,1),(336,4,89,0,56,0),(337,4,84,0,57,2),(338,4,91,0,57,4),(339,4,120,0,57,1),(340,4,85,0,57,2),(341,4,109,0,57,1),(342,4,89,0,57,0),(343,4,84,0,58,1),(344,4,91,0,58,4),(345,4,120,0,58,1),(346,4,85,0,58,2),(347,4,109,0,58,1),(348,4,89,0,58,0),(349,4,84,0,59,2),(350,4,91,0,59,4),(351,4,120,0,59,1),(352,4,85,0,59,2),(353,4,109,0,59,1),(354,4,89,0,59,0),(355,4,84,0,60,2),(356,4,91,0,60,4),(357,4,120,0,60,1),(358,4,85,0,60,2),(359,4,109,0,60,1),(360,4,89,0,60,0),(361,4,84,0,61,2),(362,4,91,0,61,4),(363,4,120,0,61,1),(364,4,85,0,61,2),(365,4,109,0,61,1),(366,4,89,0,61,0),(367,4,84,0,62,2),(368,4,91,0,62,4),(369,4,120,0,62,1),(370,4,85,0,62,2),(371,4,109,0,62,1),(372,4,89,0,62,0),(373,4,84,0,63,2),(374,4,91,0,63,4),(375,4,120,0,63,1),(376,4,85,0,63,2),(377,4,109,0,63,1),(378,4,89,0,63,0),(379,4,84,0,64,1),(380,4,91,0,64,4),(381,4,120,0,64,1),(382,4,85,0,64,2),(383,4,109,0,64,1),(384,4,89,0,64,0),(385,4,84,0,65,2),(386,4,91,0,65,4),(387,4,120,0,65,1),(388,4,85,0,65,2),(389,4,109,0,65,1),(390,4,89,0,65,0),(391,4,84,0,66,2),(392,4,91,0,66,4),(393,4,120,0,66,1),(394,4,85,0,66,2),(395,4,109,0,66,1),(396,4,89,0,66,0),(397,4,84,0,67,1),(398,4,91,0,67,4),(399,4,120,0,67,1),(400,4,85,0,67,2),(401,4,109,0,67,1),(402,4,89,0,67,0),(403,4,84,0,68,1),(404,4,91,0,68,4),(405,4,120,0,68,1),(406,4,85,0,68,2),(407,4,109,0,68,1),(408,4,89,0,68,0),(415,4,84,0,70,1),(416,4,91,0,70,4),(417,4,120,0,70,1),(418,4,85,0,70,2),(419,4,109,0,70,1),(420,4,89,0,70,0),(421,4,84,0,71,2),(422,4,91,0,71,4),(423,4,120,0,71,1),(424,4,85,0,71,2),(425,4,109,0,71,1),(426,4,89,0,71,0),(433,4,84,0,73,2),(434,4,91,0,73,4),(435,4,120,0,73,1),(436,4,85,0,73,2),(437,4,109,0,73,1),(438,4,89,0,73,0),(439,4,84,0,74,2),(440,4,91,0,74,4),(441,4,120,0,74,1),(442,4,85,0,74,2),(443,4,109,0,74,1),(444,4,89,0,74,0),(445,4,84,0,75,2),(446,4,91,0,75,4),(447,4,120,0,75,1),(448,4,85,0,75,2),(449,4,109,0,75,1),(450,4,89,0,75,0),(451,4,84,0,76,2),(452,4,91,0,76,4),(453,4,120,0,76,1),(454,4,85,0,76,2),(455,4,109,0,76,1),(456,4,89,0,76,0),(457,4,84,0,77,1),(458,4,91,0,77,4),(459,4,120,0,77,1),(460,4,85,0,77,2),(461,4,109,0,77,1),(462,4,89,0,77,0),(463,4,84,0,78,1),(464,4,91,0,78,4),(465,4,120,0,78,1),(466,4,85,0,78,2),(467,4,109,0,78,1),(468,4,89,0,78,0),(469,4,84,0,79,1),(470,4,91,0,79,4),(471,4,120,0,79,0),(472,4,85,0,79,2),(473,4,109,0,79,1),(474,4,89,0,79,0),(475,4,84,0,80,1),(476,4,91,0,80,4),(477,4,120,0,80,1),(478,4,85,0,80,2),(479,4,109,0,80,1),(480,4,89,0,80,0),(481,4,84,0,81,2),(482,4,91,0,81,4),(483,4,120,0,81,1),(484,4,85,0,81,2),(485,4,109,0,81,1),(486,4,89,0,81,0),(487,4,84,0,82,1),(488,4,91,0,82,4),(489,4,120,0,82,1),(490,4,85,0,82,2),(491,4,109,0,82,1),(492,4,89,0,82,0),(493,4,84,0,83,2),(494,4,91,0,83,4),(495,4,120,0,83,1),(496,4,85,0,83,2),(497,4,109,0,83,1),(498,4,89,0,83,0),(499,4,84,0,84,2),(500,4,91,0,84,4),(501,4,120,0,84,1),(502,4,85,0,84,2),(503,4,109,0,84,1),(504,4,89,0,84,0),(505,4,84,0,85,2),(506,4,91,0,85,4),(507,4,120,0,85,1),(508,4,85,0,85,2),(509,4,109,0,85,1),(510,4,89,0,85,0),(511,4,84,0,86,2),(512,4,91,0,86,4),(513,4,120,0,86,1),(514,4,85,0,86,2),(515,4,109,0,86,1),(516,4,89,0,86,0),(517,4,84,0,87,1),(518,4,91,0,87,4),(519,4,120,0,87,1),(520,4,85,0,87,2),(521,4,109,0,87,1),(522,4,89,0,87,0),(523,4,84,0,88,2),(524,4,91,0,88,4),(525,4,120,0,88,1),(526,4,85,0,88,2),(527,4,109,0,88,1),(528,4,89,0,88,0),(529,4,84,0,89,1),(530,4,91,0,89,4),(531,4,120,0,89,0),(532,4,85,0,89,2),(533,4,109,0,89,1),(534,4,89,0,89,0),(535,4,84,0,90,1),(536,4,85,0,90,2),(537,4,89,0,90,0),(538,4,91,0,90,4),(539,4,109,0,90,1),(540,4,120,0,90,0),(541,4,84,0,91,2),(542,4,91,0,91,4),(543,4,120,0,91,0),(544,4,85,0,91,2),(545,4,109,0,91,1),(546,4,89,0,91,0),(547,4,84,0,92,2),(548,4,85,0,92,2),(549,4,89,0,92,0),(550,4,91,0,92,4),(551,4,109,0,92,1),(552,4,120,0,92,0),(553,4,84,0,93,1),(554,4,85,0,93,2),(555,4,89,0,93,0),(556,4,91,0,93,4),(557,4,109,0,93,1),(558,4,120,0,93,1),(559,4,84,0,94,1),(560,4,85,0,94,2),(561,4,89,0,94,0),(562,4,91,0,94,4),(563,4,109,0,94,1),(564,4,120,0,94,1),(565,4,84,0,95,1),(566,4,85,0,95,2),(567,4,89,0,95,0),(568,4,91,0,95,4),(569,4,109,0,95,1),(570,4,120,0,95,1),(577,4,84,0,97,1),(578,4,85,0,97,2),(579,4,89,0,97,0),(580,4,91,0,97,4),(581,4,109,0,97,1),(582,4,120,0,97,1),(583,4,84,0,98,1),(584,4,85,0,98,2),(585,4,89,0,98,0),(586,4,91,0,98,4),(587,4,109,0,98,1),(588,4,120,0,98,1),(589,4,84,0,99,1),(590,4,85,0,99,2),(591,4,89,0,99,0),(592,4,91,0,99,4),(593,4,109,0,99,1),(594,4,120,0,99,1),(595,4,84,0,100,1),(596,4,85,0,100,2),(597,4,89,0,100,0),(598,4,91,0,100,4),(599,4,109,0,100,1),(600,4,120,0,100,1),(601,4,84,0,101,1),(602,4,85,0,101,2),(603,4,89,0,101,0),(604,4,91,0,101,4),(605,4,109,0,101,1),(606,4,120,0,101,1),(607,4,84,0,102,1),(608,4,85,0,102,2),(609,4,89,0,102,0),(610,4,91,0,102,4),(611,4,109,0,102,1),(612,4,120,0,102,1),(613,4,84,0,103,1),(614,4,85,0,103,2),(615,4,89,0,103,0),(616,4,91,0,103,4),(617,4,109,0,103,1),(618,4,120,0,103,0),(619,4,84,0,104,1),(620,4,85,0,104,2),(621,4,89,0,104,0),(622,4,91,0,104,4),(623,4,109,0,104,1),(624,4,120,0,104,1),(625,4,84,0,105,2),(626,4,85,0,105,2),(627,4,89,0,105,0),(628,4,91,0,105,4),(629,4,109,0,105,1),(630,4,120,0,105,0),(631,4,84,0,106,2),(632,4,85,0,106,2),(633,4,89,0,106,0),(634,4,91,0,106,4),(635,4,109,0,106,1),(636,4,120,0,106,0),(637,4,84,0,107,2),(638,4,85,0,107,2),(639,4,89,0,107,0),(640,4,91,0,107,4),(641,4,109,0,107,1),(642,4,120,0,107,0),(643,4,84,0,108,2),(644,4,85,0,108,2),(645,4,89,0,108,0),(646,4,91,0,108,4),(647,4,109,0,108,1),(648,4,120,0,108,0),(649,4,84,0,109,2),(650,4,85,0,109,2),(651,4,89,0,109,0),(652,4,91,0,109,4),(653,4,109,0,109,1),(654,4,120,0,109,0),(655,4,84,0,110,2),(656,4,85,0,110,2),(657,4,89,0,110,0),(658,4,91,0,110,4),(659,4,109,0,110,1),(660,4,120,0,110,0),(661,4,84,0,111,2),(662,4,85,0,111,2),(663,4,89,0,111,0),(664,4,91,0,111,4),(665,4,109,0,111,1),(666,4,120,0,111,0),(667,4,84,0,112,2),(668,4,85,0,112,2),(669,4,89,0,112,0),(670,4,91,0,112,4),(671,4,109,0,112,1),(672,4,120,0,112,0),(673,4,84,0,113,1),(674,4,85,0,113,2),(675,4,89,0,113,0),(676,4,91,0,113,4),(677,4,109,0,113,1),(678,4,120,0,113,1),(679,4,84,0,114,1),(680,4,85,0,114,2),(681,4,89,0,114,0),(682,4,91,0,114,4),(683,4,109,0,114,1),(684,4,120,0,114,1),(685,4,84,0,115,1),(686,4,85,0,115,2),(687,4,89,0,115,0),(688,4,91,0,115,4),(689,4,109,0,115,1),(690,4,120,0,115,1),(691,4,84,0,116,1),(692,4,85,0,116,2),(693,4,89,0,116,0),(694,4,91,0,116,4),(695,4,109,0,116,1),(696,4,120,0,116,1),(697,4,84,0,117,1),(698,4,85,0,117,2),(699,4,89,0,117,0),(700,4,91,0,117,4),(701,4,109,0,117,1),(702,4,120,0,117,1),(703,4,84,0,118,1),(704,4,85,0,118,2),(705,4,89,0,118,0),(706,4,91,0,118,4),(707,4,109,0,118,1),(708,4,120,0,118,1),(709,4,84,0,119,1),(710,4,85,0,119,2),(711,4,89,0,119,0),(712,4,91,0,119,4),(713,4,109,0,119,1),(714,4,120,0,119,1),(715,4,84,0,120,1),(716,4,85,0,120,2),(717,4,89,0,120,0),(718,4,91,0,120,4),(719,4,109,0,120,1),(720,4,120,0,120,1),(721,4,84,0,121,2),(722,4,85,0,121,2),(723,4,89,0,121,0),(724,4,91,0,121,4),(725,4,109,0,121,1),(726,4,120,0,121,1),(727,4,84,0,122,1),(728,4,85,0,122,2),(729,4,89,0,122,0),(730,4,91,0,122,4),(731,4,109,0,122,1),(732,4,120,0,122,1),(733,4,84,0,123,1),(734,4,85,0,123,2),(735,4,89,0,123,0),(736,4,91,0,123,4),(737,4,109,0,123,1),(738,4,120,0,123,1),(739,4,84,0,124,1),(740,4,85,0,124,2),(741,4,89,0,124,0),(742,4,91,0,124,4),(743,4,109,0,124,1),(744,4,120,0,124,1),(745,4,84,0,125,1),(746,4,85,0,125,2),(747,4,89,0,125,0),(748,4,91,0,125,4),(749,4,109,0,125,1),(750,4,120,0,125,1),(751,4,84,0,126,1),(752,4,85,0,126,2),(753,4,89,0,126,0),(754,4,91,0,126,4),(755,4,109,0,126,1),(756,4,120,0,126,1),(757,4,84,0,127,1),(758,4,85,0,127,2),(759,4,89,0,127,0),(760,4,91,0,127,4),(761,4,109,0,127,1),(762,4,120,0,127,1),(763,4,84,0,128,1),(764,4,85,0,128,2),(765,4,89,0,128,0),(766,4,91,0,128,4),(767,4,109,0,128,1),(768,4,120,0,128,1),(769,4,84,0,129,2),(770,4,85,0,129,2),(771,4,89,0,129,0),(772,4,91,0,129,4),(773,4,109,0,129,1),(774,4,120,0,129,1),(775,4,84,0,130,1),(776,4,85,0,130,2),(777,4,89,0,130,0),(778,4,91,0,130,4),(779,4,109,0,130,1),(780,4,120,0,130,1),(781,4,84,0,131,1),(782,4,85,0,131,2),(783,4,89,0,131,0),(784,4,91,0,131,4),(785,4,109,0,131,1),(786,4,120,0,131,1),(787,4,84,0,132,1),(788,4,85,0,132,2),(789,4,89,0,132,0),(790,4,91,0,132,4),(791,4,109,0,132,1),(792,4,120,0,132,1),(793,4,84,0,133,1),(794,4,85,0,133,2),(795,4,89,0,133,0),(796,4,91,0,133,4),(797,4,109,0,133,1),(798,4,120,0,133,1),(799,4,84,0,134,1),(800,4,85,0,134,2),(801,4,89,0,134,0),(802,4,91,0,134,4),(803,4,109,0,134,1),(804,4,120,0,134,1),(805,4,84,0,135,1),(806,4,85,0,135,2),(807,4,89,0,135,0),(808,4,91,0,135,4),(809,4,109,0,135,1),(810,4,120,0,135,1),(811,4,84,0,136,1),(812,4,85,0,136,2),(813,4,89,0,136,0),(814,4,91,0,136,4),(815,4,109,0,136,1),(816,4,120,0,136,1),(817,4,84,0,137,2),(818,4,85,0,137,2),(819,4,89,0,137,0),(820,4,91,0,137,4),(821,4,109,0,137,1),(822,4,120,0,137,0),(823,4,84,0,138,2),(824,4,85,0,138,2),(825,4,89,0,138,0),(826,4,91,0,138,4),(827,4,109,0,138,1),(828,4,120,0,138,1),(829,4,84,0,139,2),(830,4,85,0,139,2),(831,4,89,0,139,0),(832,4,91,0,139,4),(833,4,109,0,139,1),(834,4,120,0,139,1),(835,4,84,0,140,1),(836,4,85,0,140,2),(837,4,89,0,140,0),(838,4,91,0,140,4),(839,4,109,0,140,1),(840,4,120,0,140,1),(841,4,84,0,141,2),(842,4,85,0,141,2),(843,4,89,0,141,0),(844,4,91,0,141,4),(845,4,109,0,141,1),(846,4,120,0,141,1),(847,4,84,0,142,1),(848,4,85,0,142,2),(849,4,89,0,142,0),(850,4,91,0,142,4),(851,4,109,0,142,1),(852,4,120,0,142,1),(853,4,84,0,143,2),(854,4,91,0,143,4),(855,4,120,0,143,1),(856,4,85,0,143,2),(857,4,109,0,143,1),(858,4,89,0,143,0),(859,4,84,0,144,1),(860,4,91,0,144,4),(861,4,120,0,144,1),(862,4,85,0,144,2),(863,4,109,0,144,1),(864,4,89,0,144,0),(865,4,84,0,145,2),(866,4,91,0,145,4),(867,4,120,0,145,1),(868,4,85,0,145,2),(869,4,109,0,145,1),(870,4,89,0,145,0),(871,4,84,0,146,2),(872,4,91,0,146,4),(873,4,120,0,146,1),(874,4,85,0,146,2),(875,4,109,0,146,1),(876,4,89,0,146,0),(877,4,84,0,147,2),(878,4,91,0,147,4),(879,4,120,0,147,1),(880,4,85,0,147,2),(881,4,109,0,147,1),(882,4,89,0,147,0),(883,4,84,0,148,2),(884,4,91,0,148,4),(885,4,120,0,148,1),(886,4,85,0,148,2),(887,4,109,0,148,1),(888,4,89,0,148,0),(889,4,84,0,149,2),(890,4,91,0,149,4),(891,4,120,0,149,1),(892,4,85,0,149,2),(893,4,109,0,149,1),(894,4,89,0,149,0),(895,4,84,0,150,2),(896,4,91,0,150,4),(897,4,120,0,150,1),(898,4,85,0,150,2),(899,4,109,0,150,1),(900,4,89,0,150,0),(901,4,84,0,151,2),(902,4,91,0,151,4),(903,4,120,0,151,1),(904,4,85,0,151,2),(905,4,109,0,151,1),(906,4,89,0,151,0),(907,4,84,0,152,1),(908,4,91,0,152,4),(909,4,120,0,152,1),(910,4,85,0,152,2),(911,4,109,0,152,1),(912,4,89,0,152,0),(913,4,84,0,153,2),(914,4,91,0,153,4),(915,4,120,0,153,1),(916,4,85,0,153,2),(917,4,109,0,153,1),(918,4,89,0,153,0),(919,4,84,0,154,2),(920,4,91,0,154,4),(921,4,120,0,154,1),(922,4,85,0,154,2),(923,4,109,0,154,1),(924,4,89,0,154,0),(925,4,84,0,155,2),(926,4,91,0,155,4),(927,4,120,0,155,1),(928,4,85,0,155,2),(929,4,109,0,155,1),(930,4,89,0,155,0),(931,4,84,0,156,1),(932,4,91,0,156,4),(933,4,120,0,156,1),(934,4,85,0,156,2),(935,4,109,0,156,1),(936,4,89,0,156,0),(937,4,84,0,157,2),(938,4,91,0,157,4),(939,4,120,0,157,1),(940,4,85,0,157,2),(941,4,109,0,157,1),(942,4,89,0,157,0),(943,4,84,0,158,2),(944,4,91,0,158,4),(945,4,120,0,158,1),(946,4,85,0,158,2),(947,4,109,0,158,1),(948,4,89,0,158,0),(949,4,84,0,159,2),(950,4,91,0,159,4),(951,4,120,0,159,1),(952,4,85,0,159,2),(953,4,109,0,159,1),(954,4,89,0,159,0),(955,4,84,0,160,2),(956,4,91,0,160,4),(957,4,120,0,160,1),(958,4,85,0,160,2),(959,4,109,0,160,1),(960,4,89,0,160,0),(961,4,84,0,161,2),(962,4,91,0,161,4),(963,4,120,0,161,0),(964,4,85,0,161,2),(965,4,109,0,161,1),(966,4,89,0,161,0),(967,4,84,0,162,1),(968,4,91,0,162,4),(969,4,120,0,162,1),(970,4,85,0,162,2),(971,4,109,0,162,1),(972,4,89,0,162,0),(973,4,84,0,163,1),(974,4,91,0,163,4),(975,4,120,0,163,1),(976,4,85,0,163,2),(977,4,109,0,163,1),(978,4,89,0,163,0),(979,4,84,0,164,1),(980,4,91,0,164,4),(981,4,120,0,164,1),(982,4,85,0,164,2),(983,4,109,0,164,1),(984,4,89,0,164,0),(985,4,84,0,165,1),(986,4,91,0,165,4),(987,4,120,0,165,1),(988,4,85,0,165,2),(989,4,109,0,165,1),(990,4,89,0,165,0),(991,4,84,0,166,1),(992,4,91,0,166,4),(993,4,120,0,166,1),(994,4,85,0,166,2),(995,4,109,0,166,1),(996,4,89,0,166,0),(997,4,84,0,167,1),(998,4,91,0,167,4),(999,4,120,0,167,1),(1000,4,85,0,167,2),(1001,4,109,0,167,1),(1002,4,89,0,167,0),(1003,4,84,0,168,1),(1004,4,91,0,168,4),(1005,4,120,0,168,1),(1006,4,85,0,168,2),(1007,4,109,0,168,1),(1008,4,89,0,168,0),(1019,4,84,0,169,1),(1020,4,91,0,169,4),(1021,4,120,0,169,1),(1022,4,85,0,169,2),(1023,4,109,0,169,1),(1024,4,89,0,169,0),(1025,4,84,0,170,1),(1026,4,91,0,170,4),(1027,4,120,0,170,1),(1028,4,85,0,170,2),(1029,4,109,0,170,1),(1030,4,89,0,170,0),(1031,4,84,0,171,1),(1032,4,91,0,171,4),(1033,4,120,0,171,1),(1034,4,85,0,171,2),(1035,4,109,0,171,1),(1036,4,89,0,171,0),(1039,4,84,0,172,1),(1040,4,91,0,172,4),(1041,4,120,0,172,1),(1042,4,85,0,172,2),(1043,4,109,0,172,1),(1044,4,89,0,172,0),(1045,4,84,0,173,1),(1046,4,91,0,173,4),(1047,4,120,0,173,1),(1048,4,85,0,173,2),(1049,4,109,0,173,1),(1050,4,89,0,173,0),(1051,4,84,0,174,1),(1052,4,91,0,174,4),(1053,4,120,0,174,1),(1054,4,85,0,174,2),(1055,4,109,0,174,1),(1056,4,89,0,174,0),(1057,4,84,0,175,1),(1058,4,91,0,175,4),(1059,4,120,0,175,1),(1060,4,85,0,175,2),(1061,4,109,0,175,1),(1062,4,89,0,175,0),(1063,4,84,0,176,1),(1064,4,91,0,176,4),(1065,4,120,0,176,1),(1066,4,85,0,176,2),(1067,4,109,0,176,1),(1068,4,89,0,176,0),(1069,4,84,0,177,1),(1070,4,91,0,177,4),(1071,4,120,0,177,1),(1072,4,85,0,177,2),(1073,4,109,0,177,1),(1074,4,89,0,177,0),(1075,4,84,0,178,1),(1076,4,91,0,178,4),(1077,4,120,0,178,1),(1078,4,85,0,178,2),(1079,4,109,0,178,1),(1080,4,89,0,178,0),(1184,4,84,0,181,1),(1185,4,91,0,181,4),(1186,4,120,0,181,0),(1187,4,85,0,181,2),(1188,4,109,0,181,1),(1189,4,89,0,181,0),(1268,4,84,0,182,1),(1269,4,91,0,182,4),(1270,4,120,0,182,1),(1271,4,85,0,182,2),(1272,4,109,0,182,1),(1273,4,89,0,182,0),(1275,4,84,0,183,1),(1276,4,91,0,183,4),(1277,4,120,0,183,1),(1278,4,85,0,183,2),(1279,4,109,0,183,1),(1280,4,89,0,183,0),(1281,4,84,0,184,1),(1282,4,91,0,184,4),(1283,4,120,0,184,1),(1284,4,85,0,184,2),(1285,4,109,0,184,1),(1286,4,89,0,184,0),(1288,4,84,0,185,1),(1289,4,91,0,185,4),(1290,4,120,0,185,0),(1291,4,85,0,185,2),(1292,4,109,0,185,1),(1293,4,89,0,185,0),(1294,4,84,0,186,1),(1295,4,91,0,186,4),(1296,4,120,0,186,0),(1297,4,85,0,186,2),(1298,4,109,0,186,1),(1299,4,89,0,186,0),(1300,4,84,0,187,1),(1301,4,91,0,187,4),(1302,4,120,0,187,0),(1303,4,85,0,187,2),(1304,4,109,0,187,1),(1305,4,89,0,187,0),(1312,4,84,0,189,1),(1313,4,91,0,189,2),(1314,4,120,0,189,1),(1315,4,85,0,189,2),(1316,4,109,0,189,1),(1317,4,89,0,189,0),(1318,4,84,0,190,1),(1319,4,91,0,190,4),(1320,4,120,0,190,1),(1321,4,85,0,190,2),(1322,4,109,0,190,1),(1323,4,89,0,190,0),(1324,4,84,0,191,1),(1325,4,91,0,191,4),(1326,4,120,0,191,1),(1327,4,85,0,191,2),(1328,4,109,0,191,1),(1329,4,89,0,191,0),(1330,4,84,0,192,1),(1331,4,91,0,192,4),(1332,4,120,0,192,1),(1333,4,85,0,192,2),(1334,4,109,0,192,1),(1335,4,89,0,192,0),(1342,4,84,0,193,1),(1343,4,91,0,193,4),(1344,4,120,0,193,1),(1345,4,85,0,193,2),(1346,4,109,0,193,1),(1347,4,89,0,193,0),(1348,4,84,0,194,1),(1349,4,91,0,194,4),(1350,4,120,0,194,0),(1351,4,85,0,194,2),(1352,4,109,0,194,1),(1353,4,89,0,194,0),(1355,4,84,0,195,1),(1356,4,91,0,195,4),(1357,4,120,0,195,1),(1358,4,85,0,195,2),(1359,4,109,0,195,1),(1360,4,89,0,195,0),(1362,4,84,0,196,1),(1363,4,91,0,196,4),(1364,4,120,0,196,1),(1365,4,85,0,196,2),(1366,4,109,0,196,1),(1367,4,89,0,196,0),(1373,4,84,0,197,1),(1374,4,91,0,197,4),(1375,4,120,0,197,1),(1376,4,85,0,197,2),(1377,4,109,0,197,1),(1378,4,89,0,197,0),(1380,4,84,0,198,1),(1381,4,91,0,198,4),(1382,4,120,0,198,0),(1383,4,85,0,198,2),(1384,4,109,0,198,1),(1385,4,89,0,198,0),(1386,4,84,0,199,1),(1387,4,91,0,199,4),(1388,4,120,0,199,1),(1389,4,85,0,199,2),(1390,4,109,0,199,1),(1391,4,89,0,199,0),(1392,4,84,0,200,1),(1393,4,91,0,200,4),(1394,4,120,0,200,0),(1395,4,85,0,200,2),(1396,4,109,0,200,1),(1397,4,89,0,200,0),(1416,4,84,0,201,1),(1417,4,91,0,201,4),(1418,4,120,0,201,1),(1419,4,85,0,201,2),(1420,4,109,0,201,1),(1421,4,89,0,201,0),(1422,4,84,0,202,1),(1423,4,91,0,202,4),(1424,4,120,0,202,1),(1425,4,85,0,202,2),(1426,4,109,0,202,1),(1427,4,89,0,202,0),(1428,4,84,0,203,1),(1429,4,91,0,203,4),(1430,4,120,0,203,0),(1431,4,85,0,203,2),(1432,4,109,0,203,1),(1433,4,89,0,203,0),(1434,4,84,0,204,1),(1435,4,91,0,204,4),(1436,4,120,0,204,1),(1437,4,85,0,204,2),(1438,4,109,0,204,1),(1439,4,89,0,204,0),(1443,4,84,0,205,1),(1444,4,91,0,205,4),(1445,4,120,0,205,1),(1446,4,85,0,205,2),(1447,4,109,0,205,1),(1448,4,89,0,205,0),(1449,4,84,0,206,1),(1450,4,91,0,206,4),(1451,4,120,0,206,1),(1452,4,85,0,206,2),(1453,4,109,0,206,1),(1454,4,89,0,206,0),(1455,4,84,0,207,1),(1456,4,91,0,207,4),(1457,4,120,0,207,0),(1458,4,85,0,207,2),(1459,4,109,0,207,1),(1460,4,89,0,207,0),(1461,4,84,0,208,1),(1462,4,91,0,208,4),(1463,4,120,0,208,0),(1464,4,85,0,208,2),(1465,4,109,0,208,1),(1466,4,89,0,208,0),(1467,4,84,0,209,1),(1468,4,91,0,209,4),(1469,4,120,0,209,1),(1470,4,85,0,209,2),(1471,4,109,0,209,1),(1472,4,89,0,209,0),(1474,4,84,0,210,1),(1475,4,91,0,210,4),(1476,4,120,0,210,1),(1477,4,85,0,210,2),(1478,4,109,0,210,1),(1479,4,89,0,210,0),(1480,4,84,0,211,1),(1481,4,91,0,211,4),(1482,4,120,0,211,0),(1483,4,85,0,211,2),(1484,4,109,0,211,1),(1485,4,89,0,211,0),(1486,4,84,0,212,1),(1487,4,91,0,212,4),(1488,4,120,0,212,1),(1489,4,85,0,212,2),(1490,4,109,0,212,1),(1491,4,89,0,212,0),(1492,4,84,0,213,1),(1493,4,91,0,213,4),(1494,4,120,0,213,0),(1495,4,85,0,213,2),(1496,4,109,0,213,1),(1497,4,89,0,213,0),(1498,4,84,0,214,1),(1499,4,91,0,214,4),(1500,4,120,0,214,0),(1501,4,85,0,214,2),(1502,4,109,0,214,1),(1503,4,89,0,214,0),(1505,4,84,0,215,1),(1506,4,91,0,215,4),(1507,4,120,0,215,0),(1508,4,85,0,215,2),(1509,4,109,0,215,1),(1510,4,89,0,215,0),(1511,4,84,0,216,1),(1512,4,91,0,216,4),(1513,4,120,0,216,0),(1514,4,85,0,216,2),(1515,4,109,0,216,1),(1516,4,89,0,216,0),(1520,4,84,0,217,1),(1521,4,91,0,217,4),(1522,4,120,0,217,1),(1523,4,85,0,217,2),(1524,4,109,0,217,1),(1525,4,89,0,217,0),(1526,4,84,0,218,1),(1527,4,91,0,218,4),(1528,4,120,0,218,1),(1529,4,85,0,218,2),(1530,4,109,0,218,1),(1531,4,89,0,218,0),(1532,4,84,0,219,1),(1533,4,91,0,219,4),(1534,4,120,0,219,1),(1535,4,85,0,219,2),(1536,4,109,0,219,1),(1537,4,89,0,219,0),(1538,4,84,0,220,1),(1539,4,91,0,220,4),(1540,4,120,0,220,1),(1541,4,85,0,220,2),(1542,4,109,0,220,1),(1543,4,89,0,220,0),(1544,4,84,0,221,1),(1545,4,91,0,221,4),(1546,4,120,0,221,1),(1547,4,85,0,221,2),(1548,4,109,0,221,1),(1549,4,89,0,221,0),(1561,4,84,0,223,1),(1562,4,91,0,223,4),(1563,4,120,0,223,0),(1564,4,85,0,223,2),(1565,4,109,0,223,1),(1566,4,89,0,223,0),(1581,4,84,0,226,1),(1582,4,91,0,226,4),(1583,4,120,0,226,0),(1584,4,85,0,226,2),(1585,4,109,0,226,1),(1586,4,89,0,226,0),(1588,4,84,0,227,1),(1589,4,91,0,227,4),(1590,4,120,0,227,1),(1591,4,85,0,227,2),(1592,4,109,0,227,1),(1593,4,89,0,227,0),(1594,4,84,0,228,1),(1595,4,91,0,228,4),(1596,4,120,0,228,0),(1597,4,85,0,228,2),(1598,4,109,0,228,1),(1599,4,89,0,228,0),(1603,4,84,0,229,1),(1604,4,91,0,229,4),(1605,4,120,0,229,0),(1606,4,85,0,229,2),(1607,4,109,0,229,1),(1608,4,89,0,229,0),(1611,4,84,0,230,1),(1612,4,91,0,230,4),(1613,4,120,0,230,0),(1614,4,85,0,230,2),(1615,4,109,0,230,1),(1616,4,89,0,230,0),(1617,4,84,0,231,1),(1618,4,91,0,231,4),(1619,4,120,0,231,0),(1620,4,85,0,231,2),(1621,4,109,0,231,1),(1622,4,89,0,231,0),(1623,4,84,0,232,1),(1624,4,91,0,232,4),(1625,4,120,0,232,1),(1626,4,85,0,232,2),(1627,4,109,0,232,1),(1628,4,89,0,232,0),(1629,4,112,0,233,0),(1630,4,113,0,233,0),(1631,4,84,0,233,2),(1632,4,91,0,233,4),(1633,4,120,0,233,0),(1634,4,111,0,233,1),(1635,4,85,0,233,2),(1636,4,109,0,233,1),(1637,4,114,0,233,0),(1638,4,115,0,233,0),(1640,4,84,0,234,1),(1641,4,91,0,234,4),(1642,4,120,0,234,0),(1643,4,85,0,234,2),(1644,4,109,0,234,1),(1645,4,89,0,234,0),(1654,4,84,0,236,1),(1655,4,91,0,236,4),(1656,4,120,0,236,0),(1657,4,85,0,236,2),(1658,4,109,0,236,1),(1659,4,89,0,236,0),(1660,4,84,0,237,1),(1661,4,91,0,237,4),(1662,4,120,0,237,1),(1663,4,85,0,237,2),(1664,4,109,0,237,1),(1665,4,89,0,237,0),(1666,4,84,0,238,1),(1667,4,91,0,238,4),(1668,4,120,0,238,1),(1669,4,85,0,238,2),(1670,4,109,0,238,1),(1671,4,89,0,238,0),(1672,4,84,0,239,1),(1673,4,91,0,239,4),(1674,4,120,0,239,0),(1675,4,85,0,239,2),(1676,4,109,0,239,1),(1677,4,89,0,239,0),(1678,4,84,0,240,1),(1679,4,91,0,240,4),(1680,4,120,0,240,1),(1681,4,85,0,240,2),(1682,4,109,0,240,1),(1683,4,89,0,240,0),(1685,4,84,0,241,1),(1686,4,91,0,241,4),(1687,4,120,0,241,1),(1688,4,85,0,241,2),(1689,4,109,0,241,1),(1690,4,89,0,241,0),(1691,4,84,0,242,1),(1692,4,91,0,242,4),(1693,4,120,0,242,0),(1694,4,85,0,242,2),(1695,4,109,0,242,1),(1696,4,89,0,242,0),(1697,4,84,0,243,1),(1698,4,91,0,243,4),(1699,4,120,0,243,0),(1700,4,85,0,243,2),(1701,4,109,0,243,1),(1702,4,89,0,243,0),(1703,4,84,0,244,1),(1704,4,91,0,244,4),(1705,4,120,0,244,1),(1706,4,85,0,244,2),(1707,4,109,0,244,1),(1708,4,89,0,244,0),(1709,4,84,0,245,1),(1710,4,91,0,245,4),(1711,4,120,0,245,0),(1712,4,85,0,245,2),(1713,4,109,0,245,1),(1714,4,89,0,245,0),(1715,4,84,0,246,2),(1716,4,91,0,246,4),(1717,4,120,0,246,0),(1718,4,109,0,246,1),(1732,4,112,0,249,1),(1733,4,113,0,249,0),(1734,4,84,0,249,1),(1735,4,91,0,249,4),(1736,4,120,0,249,1),(1737,4,111,0,249,1),(1738,4,85,0,249,2),(1739,4,109,0,249,1),(1740,4,114,0,249,0),(1741,4,115,0,249,0),(1743,4,84,0,250,1),(1744,4,91,0,250,4),(1745,4,120,0,250,0),(1746,4,85,0,250,2),(1747,4,109,0,250,1),(1748,4,89,0,250,0),(1749,4,84,0,251,1),(1750,4,91,0,251,4),(1751,4,120,0,251,0),(1752,4,85,0,251,2),(1753,4,109,0,251,1),(1754,4,89,0,251,0); /*!40000 ALTER TABLE `catalog_product_entity_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_media_gallery` -- DROP TABLE IF EXISTS `catalog_product_entity_media_gallery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_entity_media_gallery` ( `value_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0', `entity_id` int(10) unsigned NOT NULL DEFAULT '0', `value` varchar(255) DEFAULT NULL, PRIMARY KEY (`value_id`), KEY `FK_CATALOG_PRODUCT_MEDIA_GALLERY_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_PRODUCT_MEDIA_GALLERY_ENTITY` (`entity_id`) ) ENGINE=InnoDB AUTO_INCREMENT=512 DEFAULT CHARSET=utf8 COMMENT='Catalog product media gallery'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_media_gallery` -- LOCK TABLES `catalog_product_entity_media_gallery` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_media_gallery` DISABLE KEYS */; INSERT INTO `catalog_product_entity_media_gallery` VALUES (4,77,2,'/a/-/a-la-carte-can.png'),(6,77,24,'/w/r/wraps-mexbeef.jpg'),(8,77,89,'/b/a/badlands_2800_backpack.jpg'),(10,77,90,'/u/l/ultra_daypack.jpg'),(11,77,91,'/b/a/badlands_water_bladder_105_oz.jpg'),(12,77,92,'/b/a/badlands_water_bladder_105_oz_1.jpg'),(14,77,93,'/b/a/badlands_bottle_holder.jpg'),(16,77,94,'/m/o/mountain_house_72-hour_meal_kit.jpg'),(18,77,95,'/e/m/emergency_food_supply.jpg'),(19,77,96,'/e/m/emergency_food_supply_1.jpg'),(41,77,105,'/1/-/1-month_supply_2_meals_per_day.jpg'),(43,77,106,'/1/-/1-month_supply_3_meals_per_day.jpg'),(45,77,107,'/3/-/3-month_supply_2_meals_per_day_3.jpg'),(47,77,108,'/3/-/3-month_supply_3_meals_per_day.jpg'),(49,77,109,'/6/-/6-month_supply_2_meals_per_day.jpg'),(51,77,110,'/6/-/6-month_supply_3_meals_per_day.jpg'),(53,77,111,'/1/2/12-month_supply_2_meals_per_day.jpg'),(55,77,112,'/1/2/12-month_supply_3_meals_per_day.jpg'),(57,77,113,'/v/e/vegetarian_1-month_supply_2_meals_per_day.jpg'),(73,77,121,'/g/l/gluten_free_1-month_supply_2_meals_per_day.jpg'),(89,77,129,'/l/a/lactose_free_1-month_supply_2_meals_per_day.jpg'),(105,77,137,'/t/r/traditional_1-year_supply.jpg'),(107,77,82,'/b/l/blueberry_cheesecake2.jpg'),(109,77,81,'/c/r/crackers.jpg'),(110,77,80,'/r/a/rasp.crumble_1.jpg'),(111,77,78,'/o/r/orange.jpg'),(112,77,72,'/c/h/chicken_noodle_gma_.jpg'),(113,77,71,'/b/a/baked_potato_cheese.jpg'),(114,77,70,'/s/p/sphagetti.jpg'),(115,77,65,'/c/h/chili.jpg'),(116,77,64,'/c/h/chili_1.jpg'),(117,77,58,'/b/l/blueberries.jpg'),(118,77,55,'/c/r/cranberries.jpg'),(119,77,54,'/o/r/orange_1.jpg'),(120,77,53,'/p/i/pineapple.jpg'),(121,77,52,'/p/e/peach.jpg'),(122,77,51,'/a/p/apples.jpg'),(123,77,50,'/s/t/strawberry.jpg'),(124,77,49,'/r/a/raspberry.jpg'),(125,77,48,'/b/a/bananas.jpg'),(126,77,47,'/c/a/cauliflower.jpg'),(127,77,46,'/p/e/peas.jpg'),(128,77,43,'/r/e/red_onions.jpg'),(129,77,42,'/m/u/mushroom.jpg'),(130,77,41,'/c/o/corn2.jpg'),(131,77,40,'/c/e/celery.jpg'),(132,77,37,'/b/r/broccoli.jpg'),(133,77,35,'/i/s/istock_000012007530xsmall.jpg'),(134,77,34,'/t/u/turkey_gravy.jpg'),(135,77,31,'/g/u/gumbo.jpg'),(136,77,45,'/a/s/asparagus.jpg'),(138,77,29,'/c/o/corn_chowder.jpg'),(139,77,26,'/b/e/beef_stew.jpg'),(140,77,15,'/c/h/chicken_noodle.jpg'),(141,77,20,'/s/w/sweet_sour_pork.jpg'),(142,77,14,'/l/a/lasagna.jpg'),(143,77,18,'/m/a/mac_cheese.jpg'),(144,77,9,'/c/h/chicken_rice.jpg'),(145,77,8,'/c/h/choc_milk.jpg'),(146,77,7,'/g/l/glass_milk.jpg'),(147,77,4,'/b/l/blueberry_pancake.jpg'),(148,77,3,'/6/g/6grain_cereal.jpg'),(149,77,1,'/s/t/strawberry_1.jpg'),(150,77,142,'/b/a/bananas_foster.jpg'),(151,77,75,'/t/u/turkey.jpg'),(152,77,142,'/j/e/jello.jpg'),(153,77,139,'/c/o/cooked_chicken.jpg'),(154,77,139,'/d/i/diced_meat.jpg'),(155,77,139,'/s/h/shrimp.jpg'),(156,77,88,'/c/u/cucumbers.jpg'),(157,77,87,'/g/r/green_beans.jpg'),(158,77,86,'/a/r/artichoke.jpg'),(159,77,85,'/r/a/raisins.jpg'),(160,77,76,'/d/i/diced_meat_1.jpg'),(161,77,84,'/p/e/pear.jpg'),(162,77,83,'/p/a/papaya.jpg'),(163,77,77,'/s/h/shrimp_1.jpg'),(164,77,74,'/c/o/cooked_chicken_1.jpg'),(165,77,73,'/c/o/cooked_ground_beef.jpg'),(166,77,143,'/a/p/apricot.jpg'),(167,77,61,'/g/r/grapes.jpg'),(168,77,60,'/m/a/mangos.jpg'),(169,77,62,'/e/l/elderberries.jpg'),(170,77,6,'/b/l/blueberries_granola.jpg'),(171,77,21,'/p/a/pasta_primavera.jpg'),(172,77,59,'/k/i/kiwi.jpg'),(173,77,67,'/o/a/oatmeal.jpg'),(174,77,24,'/b/e/beef_wrap.jpg'),(175,77,38,'/c/a/cabbage.jpg'),(176,77,56,'/b/l/blackberries.jpg'),(177,77,19,'/c/h/chicken_teriyaki_w_rice.jpg'),(178,77,25,'/p/o/potato_n_cheddar.jpg'),(179,77,33,'/t/a/tamale_pie.jpg'),(180,77,16,'/t/u/turkey_tetrazinni.jpg'),(181,77,11,'/c/h/chicken_a_la_king.jpg'),(182,77,159,'/i/s/istock_000012953017xsmall.jpg'),(183,77,141,'/f/r/fruit_veggie_pack.jpg'),(184,77,160,'/r/e/red_pepper.jpg'),(193,77,104,'/1/y/1yr-ft2_4.jpg'),(194,77,97,'/1/y/1yr-ft2_5.jpg'),(195,77,98,'/1/y/1yr-ft2_6.jpg'),(196,77,100,'/1/y/1yr-ft2_7.jpg'),(197,77,99,'/1/y/1yr-ft2_8.jpg'),(198,77,101,'/1/y/1yr-ft2_9.jpg'),(199,77,102,'/1/y/1yr-ft2_10.jpg'),(200,77,122,'/g/f/gf1mof150x145_1.png'),(201,77,123,'/g/f/gf2mof150x145_1.png'),(203,77,124,'/g/f/gf3mof150x145_1.png'),(204,77,125,'/g/f/gf4mof150x145_2.png'),(205,77,126,'/g/f/gf6mof150x145_1.png'),(207,77,127,'/g/f/gf8mof150x145_1.png'),(208,77,128,'/g/f/gf12mof150x145_2.png'),(209,77,130,'/l/f/lf1mof150x145_1.png'),(210,77,131,'/l/f/lf2mof150x145_1.png'),(211,77,132,'/l/f/lf3mof150x145_1.png'),(212,77,133,'/l/f/lf4mof150x145_1.png'),(213,77,134,'/l/f/lf6mof150x145_1.png'),(214,77,135,'/l/f/lf8mof150x145_1.png'),(215,77,136,'/l/f/lf12mof150x145_2.png'),(216,77,114,'/v/e/veg1mof150x145_1.png'),(217,77,115,'/v/e/veg2mof150x145_1.png'),(218,77,116,'/v/e/veg3mof150x145_1.png'),(219,77,117,'/v/e/veg4mof150x145_1.png'),(220,77,118,'/v/e/veg6mof150x145_1.png'),(221,77,119,'/v/e/veg8mof150x145_1.png'),(222,77,120,'/v/e/veg12mof150x145_1.png'),(223,77,140,'/d/r/drinkpackf_1.png'),(224,77,79,'/c/h/cherrylemonade_1.jpg'),(242,77,163,'/u/l/ul1mof150x68_2.png'),(243,77,162,'/u/l/ul2mof150x68_2.png'),(244,77,164,'/u/l/ul3mof150x68_2.png'),(245,77,168,'/u/l/ul12mof150x68_2.png'),(246,77,167,'/u/l/ul8mof150x68_2.png'),(247,77,166,'/u/l/ul6mof150x68_2.png'),(248,77,165,'/u/l/ul4mof150x68_2.png'),(249,77,172,'/t/h/tharvestbox.png'),(250,77,173,'/f/r/fruitnveg1_2.jpg'),(251,77,174,'/f/r/fruitnveg2_2.jpg'),(252,77,175,'/f/r/fruitnveg3_1.jpg'),(253,77,176,'/f/r/fruitnveg4.jpg'),(254,77,177,'/f/r/fruitnveg6.jpg'),(255,77,178,'/f/r/fruitnveg8.jpg'),(256,77,179,'/f/r/fruitnveg12.jpg'),(257,77,182,'/f/r/fruitnveg1_2_1.jpg'),(260,77,8,'/c/h/chocmilkf225.png'),(261,77,169,'/2/0/2000cal3mof150x68.png'),(262,77,170,'/2/0/2000cal6mof150x68.png'),(263,77,171,'/2/0/2000cal12mof150x68.png'),(264,77,7,'/r/e/realmilk2f300.png'),(265,77,182,'/f/r/fruitnveg12.png'),(266,77,5,'/h/a/hashbrowns.png'),(267,77,183,'/t/3/t323_10410396b2e2ea823dc401ea78b829f7.jpg'),(268,77,183,'/t/2/t229_x1_10410396b2e2ea823dc401ea78b829f7.jpg'),(270,77,185,'/c/o/combi_cut_details.png'),(271,77,185,'/t/1/t182_21c2502137778b5943fe8ce944640200.jpg'),(272,77,186,'/t/8/t80_x1_26b1e724a1acc7eccbb0b551c7388682.jpg'),(273,77,186,'/t/1/t190_26b1e724a1acc7eccbb0b551c7388682.jpg'),(274,77,186,'/k/a/katadyn_pocket_rocks.png'),(275,77,186,'/k/a/katadyn_pocket_stream.png'),(276,77,186,'/k/a/katadyn_pocket_details.png'),(277,77,187,'/e/x/expedition.png'),(278,77,187,'/e/x/expedition_parts.png'),(279,77,187,'/e/x/expedition_raft.png'),(280,77,187,'/e/x/expedition_river.png'),(281,77,188,'/e/m/emergency_food_supply_2.jpg'),(282,77,189,'/1/w/1weekbucket2_1.png'),(283,77,190,'/p/a/pasta_primavera_1.jpg'),(284,77,191,'/c/h/chicken_rice_1.jpg'),(285,77,192,'/b/e/beefbroc.png'),(286,77,152,'/b/l/black-olives1.jpg'),(287,77,89,'/2/8/2800_2.png'),(288,77,89,'/w/j/wj_skull2.png'),(289,77,89,'/s/c/screen_shot_2011-11-03_at_3.40.28_pm.png'),(290,77,89,'/b/a/badlands_readers_choice_award.png'),(291,77,89,'/2/8/2800_3.png'),(292,77,89,'/2/8/2800_1.png'),(293,77,193,'/l/a/lasagna_retouch_72_dpi_16.jpg'),(294,77,193,'/c/h/chili_mac_retouch_72dpi_16.jpg'),(295,77,193,'/p/a/pasta_alfredo_retouch_72dpi_15.jpg'),(296,77,193,'/s/t/stroganoff_retouch_72dpi_17.jpg'),(297,77,193,'/t/e/teriyaki_and_rice_retouch_72dpi_15.jpg'),(298,77,193,'/a/l/ala_king_retouch_72dpi_13.jpg'),(299,77,193,'/7/2/72_hour_kit_retouch.jpg'),(301,77,6,'/b/b/bb_honey_w_milk_aa.jpg'),(302,77,68,'/b/e/beef_stroganoff_aa.jpg'),(303,77,194,'/b/e/beef_rotini.jpg'),(304,77,194,'/b/e/beef-rotini-01.jpg'),(305,77,68,'/b/e/beef-stroganoff.jpg'),(308,77,195,'/a/p/apple_almond_pic.jpg'),(309,77,195,'/a/p/apple_almond.jpg'),(311,77,196,'/l/e/leonardo_fettuccine_can.jpg'),(312,77,196,'/l/e/leonardo_fettuccine_2.jpg'),(313,77,64,'/b/a/bart_chili.jpg'),(314,77,29,'/c/o/corn_chowder_1.jpg'),(315,77,35,'/a/l/alpine_minestrone_soup.jpg'),(316,77,34,'/g/f/gf1mof150x145_1_1.png'),(317,77,197,'/1/_/1.0102_-_125_st_-_blue.jpg'),(318,77,197,'/s/u/supertanker.jpg'),(319,77,33,'/t/a/tamle_pie.jpg'),(320,77,198,'/t/u/turkey_teri.jpg'),(321,77,198,'/t/u/turkey_teri_can.jpg'),(322,77,199,'/s/u/supertanker_1.jpg'),(323,77,199,'/1/_/1.0103_-_250_st_-_natural__-_ss.jpg'),(324,77,200,'/r/e/real-bbq-chicken.jpg'),(325,77,200,'/t/e/texas_bbq_can.jpg'),(326,77,201,'/l/a/lasagna_retouch_72_dpi_1_1.jpg'),(327,77,201,'/a/p/apple_cinnamon_retouch_1_1.jpg'),(328,77,201,'/p/a/pasta_alfredo_retouch_72dpi_1_2.jpg'),(329,77,201,'/t/e/teriyaki_and_rice_retouch_72dpi_1_1.jpg'),(330,77,201,'/a/l/ala_king_retouch_72dpi_1_1.jpg'),(331,77,201,'/c/h/cheesy_mac_garnish_retouch_72dpi_1_1.jpg'),(332,77,201,'/m/u/multi-grain_retouch_2_1_1.jpg'),(333,77,201,'/g/r/granola_retouch_1.jpg'),(334,77,201,'/s/t/stroganoff_retouch_72dpi_1_1.jpg'),(335,77,201,'/t/o/tortilla_soup_retouch_72dpi_2.jpg'),(336,77,201,'/5/6/56_serving_bucket_retouch.jpg'),(337,77,202,'/l/a/lasagna_retouch_72_dpi_1_2.jpg'),(338,77,202,'/t/e/teriyaki_and_rice_retouch_72dpi_1_2.jpg'),(339,77,202,'/a/l/ala_king_retouch_72dpi_1_2.jpg'),(340,77,202,'/6/0/60_serving_bucket_retouch.jpg'),(341,77,202,'/t/o/tomato_basil_retouch_1_2.jpg'),(342,77,202,'/p/a/pasta_alfredo_retouch_72dpi_1_3.jpg'),(343,77,202,'/s/t/stroganoff_retouch_72dpi_1_2.jpg'),(344,77,202,'/c/r/creamy_pasta_retouch_72dpi_1_3.jpg'),(345,77,202,'/c/h/cheesy_mac_garnish_retouch_72dpi_1_2.jpg'),(346,77,203,'/g/r/granola_retouch_9.jpg'),(347,77,203,'/m/u/multi-grain_retouch_2_10.jpg'),(348,77,203,'/a/l/ala_king_retouch_72dpi_10.jpg'),(349,77,203,'/t/e/teriyaki_and_rice_retouch_72dpi_12.jpg'),(350,77,203,'/t/o/tortilla_soup_retouch_72dpi_1_10.jpg'),(351,77,203,'/a/p/apple_cinnamon_retouch_12.jpg'),(352,77,203,'/p/a/pasta_alfredo_retouch_72dpi_12.jpg'),(353,77,203,'/l/a/lasagna_retouch_72_dpi_13.jpg'),(354,77,203,'/c/h/chili_mac_retouch_72dpi_12.jpg'),(355,77,203,'/s/t/stroganoff_retouch_72dpi_14.jpg'),(356,77,203,'/8/4/84_serving_bucket_transparent_new.jpg'),(357,77,204,'/m/u/multi-grain_retouch_2_12.jpg'),(358,77,204,'/1/2/120_serving_breakfast_bucket_retouch.jpg'),(359,77,204,'/a/p/apple_cinnamon_retouch_14.jpg'),(360,77,204,'/g/r/granola_retouch_11.jpg'),(361,77,205,'/t/e/teriyaki_and_rice_retouch_72dpi_13.jpg'),(362,77,205,'/c/r/creamy_pasta_retouch_72dpi_13.jpg'),(363,77,205,'/l/a/lasagna_retouch_72_dpi_14.jpg'),(364,77,205,'/t/o/tortilla_soup_retouch_72dpi_1_11.jpg'),(365,77,205,'/1/2/120_serving_entree_bucket_retouch.jpg'),(366,77,205,'/a/l/ala_king_retouch_72dpi_11.jpg'),(367,77,205,'/p/a/pasta_alfredo_retouch_72dpi_13.jpg'),(368,77,205,'/t/o/tomato_basil_retouch_11.jpg'),(369,77,205,'/c/h/cheesy_mac_garnish_retouch_72dpi_12.jpg'),(370,77,205,'/s/t/stroganoff_retouch_72dpi_15.jpg'),(371,77,205,'/c/h/chili_mac_retouch_72dpi_13.jpg'),(372,77,206,'/e/s/essential-kit_1.jpg'),(373,77,207,'/1/8/1848_chicken_pasta_rotell.jpg'),(374,77,207,'/c/h/chicken_rotelle_can.jpg'),(375,77,208,'/k/u/kung_fu_chicken.jpg'),(376,77,208,'/k/u/kung_fu_chicken_can.jpg'),(377,77,209,'/b/g/bg_knife_advertise.jpg'),(378,77,209,'/g/e/gerberbeargryllssurvivalseriesultimateknife.jpg'),(379,77,209,'/b/g/bg_ultimate_knife.jpg'),(380,77,209,'/4/8/48356-default-m.jpg'),(381,77,209,'/b/g/bg_himself.jpg'),(382,77,209,'/g/7/g701_survivalguide2.jpg'),(383,77,209,'/b/e/bear_grylls_ultimate_knife_540.jpg'),(384,77,209,'/c/2/c26-b003r0lsmo-2-l.jpg'),(385,77,28,'/c/h/chicken_primavera_can.jpg'),(386,77,28,'/c/h/chicken_primavera.jpg'),(387,77,210,'/b/g/bgparang.jpg'),(388,77,210,'/g/e/gerber_bear_grylls_parang_machete.jpg'),(389,77,210,'/m/a/machete.jpg'),(390,77,210,'/b/g/bg_himself_1.jpg'),(391,77,210,'/g/7/g701_survivalguide2_1.jpg'),(392,77,210,'/b/e/bear-grylls-parang.jpg'),(393,77,210,'/g/e/gerber_bear_grylls_parang_machete_1.jpg'),(394,77,210,'/b/g/bg_parang.jpg'),(395,77,211,'/4/7/4785266-bean-soup-with-onion-carrot-and-parsley-isolated-on-white-background.jpg'),(396,77,211,'/b/e/bean_soup_can.jpg'),(397,77,212,'/b/g/bg_surivival_kit.jpg'),(398,77,212,'/g/7/g701_survivalguide2_2.jpg'),(399,77,212,'/g/e/gerber_bear_grylls_ultimate_survival_kit_1263958_2_og.jpg'),(400,77,213,'/m/u/mushroom_can.jpg'),(401,77,213,'/m/u/mushroom_dish.jpg'),(402,77,26,'/m/h/mh_beef_stew_can.jpg'),(403,77,82,'/m/f/mf_cheesecake.jpg'),(404,77,214,'/b/p/bp_cold_pasta_can.jpg'),(405,77,214,'/c/o/cold_pasta_salad_pic.jpg'),(406,77,36,'/c/h/chinese_fried_rice_1.jpg'),(407,77,184,'/b/a/banana_cereal.jpg'),(408,77,30,'/s/a/sante-fe-chicken-rice.jpg'),(409,77,30,'/s/a/santa_fe_chicken_can.jpg'),(410,77,215,'/b/p/bp_beef_potatos.jpg'),(411,77,215,'/b/p/bp_beef_potatos_can.jpg'),(414,77,216,'/l/o/louis_redbean.jpg'),(415,77,216,'/l/o/louis_redbean_pic.jpg'),(416,77,70,'/t/h/th_can.jpg'),(417,77,217,'/w/o/wondermill-electric-grain-mill.jpg'),(418,77,217,'/m/i/mills_grains.jpg'),(419,77,217,'/t/h/thewondermilllogoheader.jpg'),(420,77,218,'/w/o/wondermill-wonder-junior-hand-mill.jpg'),(421,77,218,'/t/h/thewondermilllogoheader_1.jpg'),(422,77,218,'/m/i/mills_grains_1.jpg'),(423,77,219,'/m/t/mt_everest_sun_oven.jpg'),(424,77,219,'/s/r/sri-lanka_sun_oven.jpg'),(425,77,219,'/s/r/sri-lanka_sun_oven_2.jpg'),(426,77,219,'/s/r/sri-lanka_sun_oven_3.jpg'),(427,77,219,'/s/u/sun_oven.jpg'),(428,77,219,'/s/n/snow_sun_oven.png'),(429,77,219,'/s/u/sun_oven_pulled_pork.jpg'),(430,77,219,'/t/u/turkey_sun_oven.jpg'),(431,77,220,'/w/i/wise_fd_meat.jpg'),(432,77,220,'/w/i/wise-food-storage-_free_sample.jpg'),(433,77,220,'/w/i/wise_peace_of_mind.jpg'),(434,77,220,'/f/d/fdg_wise_meat.jpg'),(435,77,221,'/c/h/chicstew.jpg'),(436,77,222,'/c/h/chicstew_1.jpg'),(437,77,221,'/m/h/mh_chicken_stew_can_1.jpg'),(438,77,43,'/t/h/th_can_1.jpg'),(439,77,3,'/t/h/th_can_2.jpg'),(440,77,5,'/t/h/th_can_3.jpg'),(441,77,41,'/t/h/th_can_1_1.jpg'),(442,77,144,'/m/h/mh_eggs_skillet.jpg'),(443,77,144,'/m/h/mh_eggs_and_ham_can.jpg'),(444,77,223,'/s/o/solccup.jpg'),(445,77,223,'/s/o/sol_psupport_1_1.jpg'),(446,77,223,'/s/o/sol_base.jpg'),(447,77,4,'/t/h/th_can_1_2.jpg'),(448,77,226,'/t/h/th_can_1_3.jpg'),(449,77,226,'/s/c/scrambled-eggs1.jpg'),(450,77,227,'/t/h/th_can_2_1.jpg'),(451,77,227,'/c/r/creamy-mac-and-cheese_1.jpg'),(456,77,228,'/c/a/carrots_2.jpg'),(457,77,228,'/t/h/th_can_2_4.jpg'),(458,77,87,'/t/h/th_can_3_1.jpg'),(459,77,156,'/p/o/potatoes-1.jpg'),(460,77,156,'/t/h/th_can_3_2.jpg'),(461,77,53,'/t/h/th_can_3_3.jpg'),(462,77,229,'/t/h/th_can_3_4.jpg'),(463,77,229,'/b/u/buttermilk_pancakes_1_1.jpg'),(464,77,12,'/m/h/mh_vegetble_stew_can.jpg'),(465,77,12,'/l/r/lrvegbeefsoup1.jpg'),(466,77,230,'/p/r/preparedness_principles.jpg'),(467,77,231,'/p/l/plan_not_panic.jpg'),(468,77,232,'/c/h/chik_n_noodle_soup.jpg'),(469,77,72,'/c/h/chicken-noodle-soup.jpg'),(470,77,232,'/c/h/chicken-noodle-soup_1.jpg'),(471,77,233,'/c/h/chicken-pasta-primavera-carbs-122x122.jpg'),(472,77,233,'/c/h/chicken_primavera_1.jpg'),(473,77,15,'/m/o/mountain-house-noodles-and-chicken-base.jpg'),(474,77,22,'/m/h/mh_can_spicy_chicken.jpg'),(475,77,22,'/m/h/mh_spicy_chicken.jpg'),(476,77,10,'/m/h/mh_can_spagetti.jpg'),(477,77,10,'/m/h/mh_spagetti.jpg'),(478,77,27,'/c/h/chili_mac.jpg'),(479,77,27,'/m/h/mh_can-chilimac.jpg'),(480,77,17,'/b/e/beef-stroganoff_1.jpg'),(481,77,17,'/m/h/mh_can-beefstrog.jpg'),(482,77,103,'/m/o/mountain_house_cans.jpg'),(483,77,234,'/s/t/step4_big.jpg'),(484,77,234,'/s/t/step3_big.jpg'),(485,77,234,'/s/t/step2_big.jpg'),(486,77,234,'/s/t/step1_big.jpg'),(487,77,234,'/f/l/flash-lantern-hang.jpg'),(488,77,234,'/f/l/flashlantern_hand.jpg'),(489,77,234,'/f/l/flashlantern.jpg'),(490,77,235,'/u/l/ul3mof150x68_2_1.png'),(491,77,236,'/f/l/flash-lantern-hang_1.jpg'),(492,77,236,'/f/l/flashlantern_1.jpg'),(493,77,237,'/b/p/bp_jam_jerk_chicken.jpg'),(494,77,238,'/b/p/bp_cheddar_mashed_potato.jpg'),(495,77,14,'/m/o/mountain-house-lasagna-with-meat-sauce-base.jpg'),(496,77,240,'/m/o/mountain-house-scrambled-eggs--with-bacon-base.jpg'),(497,77,31,'/c/h/chicken_gumbo.jpg'),(498,77,241,'/a/a/aa_santa_fe_black_beans_rice.jpg'),(499,77,242,'/t/e/teriyaki_chicken_1.jpg'),(500,77,242,'/m/h/mh_teriyaki.jpg'),(501,77,241,'/s/i/simple-spanish-cooking.jpg'),(502,77,243,'/q/u/quickstove_1_week.png'),(503,77,243,'/q/u/quickstove_how_it_works.png'),(504,77,243,'/q/u/quickstove_single.png'),(505,77,245,'/t/h/th_can_3_5.jpg'),(506,77,245,'/t/e/teriyaki_rice_bowl_img_0378.jpg'),(508,77,249,'/p/a/package_deals_1.jpg'),(509,77,250,'/s/o/solar.jpg'),(510,77,251,'/s/o/solar2.jpg'),(511,77,251,'/s/o/solar1.jpg'); /*!40000 ALTER TABLE `catalog_product_entity_media_gallery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_media_gallery_value` -- DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_entity_media_gallery_value` ( `value_id` int(11) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `label` varchar(255) DEFAULT NULL, `position` int(11) unsigned DEFAULT NULL, `disabled` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`value_id`,`store_id`), KEY `FK_CATALOG_PRODUCT_MEDIA_GALLERY_VALUE_STORE` (`store_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog product media gallery values'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_media_gallery_value` -- LOCK TABLES `catalog_product_entity_media_gallery_value` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` DISABLE KEYS */; INSERT INTO `catalog_product_entity_media_gallery_value` VALUES (4,0,'Mountain House Scrambled Eggs w Bacon',1,0),(6,0,'',1,0),(7,0,'',2,0),(8,0,'Badlands 2800 Backpack',1,0),(10,0,'',2,0),(11,0,'',1,0),(12,0,'',1,0),(14,0,'',2,0),(16,0,'',3,0),(18,0,'',4,0),(19,0,'',4,0),(26,0,'',9,0),(29,0,'',10,0),(30,0,'',10,0),(31,0,'',8,0),(33,0,'',11,0),(35,0,'',12,0),(37,0,'',13,0),(39,0,'',14,0),(41,0,'',15,0),(43,0,'',16,0),(45,0,'',17,0),(47,0,'',18,0),(49,0,'',19,0),(51,0,'',20,0),(53,0,'',21,0),(55,0,'',22,0),(57,0,'',23,0),(59,0,'',24,0),(61,0,'',25,0),(63,0,'',26,0),(65,0,'',27,0),(67,0,'',28,0),(69,0,'',29,0),(71,0,'',30,0),(73,0,'',31,0),(75,0,'',32,0),(77,0,'',33,0),(79,0,'',34,0),(81,0,'',35,0),(83,0,'',36,0),(85,0,'',37,0),(87,0,'',38,0),(89,0,'',39,0),(91,0,'',40,0),(93,0,'',41,0),(95,0,'',42,0),(97,0,'',43,0),(99,0,'',44,0),(101,0,'',45,0),(103,0,'',46,0),(105,0,'',47,0),(107,0,'Blueberry Cheesecake',1,0),(109,0,'Pilot Crackers',1,0),(110,0,'Raspberry Crumble',1,0),(111,0,'Oranges',1,0),(112,0,'Chicken & Noodle Soup',1,0),(113,0,'Baked Potato Cheese Soup',1,0),(114,0,'Cappellini Al Pomodoro',1,0),(115,0,'Vegetarian Chili',1,0),(116,0,'Chili w Real Meat',1,0),(117,0,'Blueberries',1,0),(118,0,'Cranberries',1,0),(119,0,'Oranges',1,0),(120,0,'Pineapple',1,0),(121,0,'Peaches',1,0),(122,0,'Apples',1,0),(123,0,'Strawberry',1,0),(124,0,'Raspberries',1,0),(125,0,'Bananas',1,0),(126,0,'Cauliflower',1,0),(127,0,'Peas',1,0),(128,0,'Red Onions',1,0),(129,0,'mushrooms',1,0),(130,0,'Corn',1,0),(131,0,'celery',1,0),(132,0,'broccoli',1,0),(133,0,'Minestrone',1,0),(134,0,'Turkey & Mashed Potatos',1,0),(135,0,'Gumbo',1,0),(136,0,'Asparagus',1,0),(137,0,'Black Beans & Rice',1,0),(138,0,'Corn Chowder',1,0),(139,0,'Beef Stew Mountain House',3,0),(140,0,'Mountain House Noodle & Chicken',1,0),(141,0,'Sweet & Sour Pork Mountain House',1,0),(142,0,'Mountain House Lasagna w/ Meat Sauce',1,0),(143,0,'Mountain House Macaroni and Cheese',1,0),(144,0,'Rice and Chicken Mountain House',1,0),(145,0,'Real Chocolate Milk',1,0),(146,0,'Real Milk',1,0),(147,0,'Blueberry Pancake',1,0),(148,0,'6-Grain Cereal ',1,0),(149,0,'Freeze Dried Strawberries',1,0),(150,0,'Bananas Foster',1,0),(151,0,'Turkey',1,0),(152,0,'Jello',2,0),(153,0,'Cooked Chicken',1,0),(154,0,'Cooked Diced Meat',2,0),(155,0,'Shrimp',3,0),(156,0,'cucumbers',1,0),(157,0,'Green Beans',1,0),(158,0,'Artichoke',1,0),(159,0,'Raisins',1,0),(160,0,'Diced Meat',1,0),(161,0,'Pear',1,0),(162,0,'Papaya',1,0),(163,0,'Gulf Shrimp',1,0),(164,0,'Cooked Chicken',1,0),(165,0,'Ground Beef',1,0),(166,0,'Apricots',1,0),(167,0,'Grapes',1,0),(168,0,'Mangos',1,0),(169,0,'Elderberries',1,0),(170,0,'Granola & Blueberries',1,0),(171,0,'Pasta Primavera',1,0),(172,0,'Kiwi',1,0),(173,0,'Oatmeal & Brown Sugar',1,0),(174,0,'Beef Wrap',2,0),(175,0,'Cabbage',1,0),(176,0,'Blackberries',1,0),(177,0,'Chicken Teriyaki w Rice',1,0),(178,0,'Potato and cheddar',1,0),(179,0,'Western Beef tamale Pie',1,0),(180,0,'Turkey Tetrazinni',1,0),(181,0,'Chicken A La King',1,0),(182,0,'Red Peppers',1,0),(183,0,'Fruit&Veggie Pack',1,0),(184,0,'red peppers',1,0),(185,0,'',1,0),(186,0,'',2,0),(187,0,'',1,0),(188,0,'',1,0),(189,0,'',1,0),(190,0,'',1,0),(191,0,'',1,0),(192,0,'',1,0),(193,0,'',15,0),(194,0,'',9,0),(195,0,'',10,0),(196,0,'',11,0),(197,0,'',11,0),(198,0,'',12,0),(199,0,'',13,0),(200,0,'',33,0),(201,0,'',34,0),(202,0,'',35,0),(203,0,'',36,0),(204,0,'',36,0),(205,0,'',37,0),(206,0,'',38,0),(207,0,'',39,0),(208,0,'',39,0),(209,0,'',41,0),(210,0,'',42,0),(211,0,'',43,0),(212,0,'',44,0),(213,0,'',45,0),(214,0,'',46,0),(215,0,'',47,0),(216,0,'',25,0),(217,0,'',26,0),(218,0,'',27,0),(219,0,'',28,0),(220,0,'',29,0),(221,0,'',30,0),(222,0,'',31,0),(223,0,'',1,0),(224,0,'',1,0),(225,0,'',2,0),(226,0,'',3,0),(227,0,'',2,0),(228,0,'',2,0),(229,0,'',2,0),(230,0,'',2,0),(231,0,'',2,0),(232,0,'',3,0),(233,0,'',4,0),(234,0,'',4,0),(235,0,'',5,0),(236,0,'',3,0),(237,0,'',3,0),(238,0,'',3,0),(239,0,'',3,0),(240,0,'',3,0),(241,0,'',4,0),(242,0,'',5,0),(243,0,'',6,0),(244,0,'',4,0),(245,0,'',5,0),(246,0,'',4,0),(247,0,'',4,0),(248,0,'',4,0),(249,0,'',1,0),(250,0,'',1,0),(251,0,'',1,0),(252,0,'',1,0),(253,0,'',1,0),(254,0,'',1,0),(255,0,'',1,0),(256,0,'',1,0),(256,2,'',1,0),(257,0,'',1,0),(257,2,'',1,0),(258,0,'Real Milk2',2,0),(259,0,'Choc milk',2,0),(260,0,'',3,0),(261,0,'',1,0),(262,0,'',1,0),(263,0,'',1,0),(264,0,'',3,0),(265,0,'',1,0),(266,0,'',1,0),(267,0,'Hiker Pro',1,0),(268,0,'Hiker Pro [interior]',2,0),(269,0,'',1,0),(270,0,'combi cut',1,0),(271,0,'combi',2,0),(272,0,'',1,0),(273,0,'',2,0),(274,0,'',3,0),(275,0,'',4,0),(276,0,'',5,0),(277,0,'katadyn expedition',1,0),(278,0,'katadyn expedition spare parts graphic',2,0),(279,0,'',3,0),(280,0,'',4,0),(281,0,'',4,0),(282,0,'',1,0),(283,0,'',1,0),(284,0,'',1,0),(285,0,'',1,0),(286,0,'olives',1,0),(287,0,'',2,0),(288,0,'',3,0),(289,0,'',4,0),(290,0,'',5,0),(291,0,'',6,0),(292,0,'',7,0),(293,0,'lasagna',1,0),(294,0,'chili mac',2,0),(295,0,'pasta alfredo',3,0),(296,0,'stroganoff',4,0),(297,0,'chicken teriyaki',5,0),(298,0,'pasta veg rotini',6,0),(299,0,'main image',7,0),(300,0,'#10 Can',2,0),(301,0,'',2,0),(302,0,'',1,0),(303,0,'',1,0),(304,0,'',2,0),(305,0,'',2,0),(306,0,'Granola & Blueberries',1,0),(307,0,'',2,0),(308,0,'',3,0),(309,0,'',4,0),(310,0,'Chili w Real Meat',1,0),(311,0,'',1,0),(312,0,'',2,0),(313,0,'',2,0),(314,0,'',2,0),(315,0,'',2,0),(316,0,'',2,0),(317,0,'125 gallon',1,0),(318,0,'super tanker',2,0),(319,0,'',2,0),(320,0,'',1,0),(321,0,'',2,0),(322,0,'super tanker ',1,0),(323,0,'250 gallon tanker',2,0),(324,0,'',1,0),(325,0,'',2,0),(326,0,'lasagna',1,0),(327,0,'apple cinnamon',2,0),(328,0,'pasta alfredo',3,0),(329,0,'teriyaki w rice',4,0),(330,0,'pasta vegetables rotini',5,0),(331,0,'cheesy mac',6,0),(332,0,'multi-grain cereal',7,0),(333,0,'honey granola',8,0),(334,0,'savory stroganoff',9,0),(335,0,'chili',10,0),(336,0,'home image',11,0),(337,0,'lasagna',1,0),(338,0,'teriyaki with rice',2,0),(339,0,'pasta vegetable rotini',3,0),(340,0,'',4,0),(341,0,'tortilla soup',5,0),(342,0,'pasta alfredo',6,0),(343,0,'stroganoff',7,0),(344,0,'creamy a la king and rice',8,0),(345,0,'cheesy mac',9,0),(346,0,'Honey Granola',1,0),(347,0,'Multi- Grain Cereal',2,0),(348,0,'Pasta Vegetable Rotini',3,0),(349,0,'Teriyaki & Rice',4,0),(350,0,'Chili',5,0),(351,0,'Apple Cinnamon',6,0),(352,0,'Pasta Alfredo',7,0),(353,0,'Lasagna',8,0),(354,0,'Cheesy Mac',9,0),(355,0,'Stroganoff',10,0),(356,0,'84 Main',11,0),(357,0,'Multi Grain',1,0),(358,0,'120 Bfast Main',2,0),(359,0,'Apple Cinnamon',3,0),(360,0,'Honey Granola w Yogurt',4,0),(361,0,'teriyaki & rice',1,0),(362,0,'vegetable pasta rotini',2,0),(363,0,'lasagna',3,0),(364,0,'chili',4,0),(365,0,'120 entree main',5,0),(366,0,'pasta rotini',6,0),(367,0,'pasta alfredo',7,0),(368,0,'Tomato Basil soup',8,0),(369,0,'Cheesy mac',9,0),(370,0,'stroganoff',10,0),(371,0,'Chili mac',11,0),(372,0,'Essential Kit',1,0),(373,0,'',1,0),(374,0,'',2,0),(375,0,'',1,0),(376,0,'',2,0),(377,0,'',1,0),(378,0,'wood knife',2,0),(379,0,'black knife',3,0),(380,0,'white knife',4,0),(381,0,'bear',5,0),(382,0,'survival guide 2',6,0),(383,0,'complete knife',7,0),(384,0,'survival guide',8,0),(385,0,'',1,0),(386,0,'',2,0),(387,0,'parang 1',1,0),(388,0,'parang + sheath 1',2,0),(389,0,'parang + sheath 2',3,0),(390,0,'bear',4,0),(391,0,'survival guide',5,0),(392,0,'parang + gerber logo',6,0),(393,0,'parang + sheath 3',7,0),(394,0,'black parang',8,0),(395,0,'',1,0),(396,0,'',2,0),(397,0,'black kit',3,0),(398,0,'survival guide',4,0),(399,0,'sheathed kit',5,0),(400,0,'',1,0),(401,0,'',2,0),(402,0,'',4,0),(403,0,'',2,0),(404,0,'',1,0),(405,0,'',2,0),(406,0,'',1,0),(407,0,'',2,0),(408,0,'',2,0),(409,0,'',3,0),(410,0,'',1,0),(411,0,'',2,0),(412,0,'',1,0),(413,0,'',2,0),(414,0,'',3,0),(415,0,'',4,0),(416,0,'',2,0),(417,0,'Wondermill Electric',1,0),(418,0,'generic grain and mill',2,0),(419,0,'Wondermill Logo',3,0),(420,0,'Junior WonderMill',1,0),(421,0,'WonderMill Logo',2,0),(422,0,'generic mill w wheat',3,0),(423,0,'Mount Everest ',1,0),(424,0,'Sri lanka 3',2,0),(425,0,'sri lanka 2',3,0),(426,0,'sri lanka 1',4,0),(427,0,'sun oven',5,0),(428,0,'sun oven in snow',6,0),(429,0,'pulled pork',7,0),(430,0,'Turkey',8,0),(431,0,'wise meat',1,0),(432,0,'wise sample',2,0),(433,0,'wise peace of mind',3,0),(434,0,'pre order wise meat',5,0),(435,0,'',1,0),(436,0,'',1,0),(437,0,'',2,0),(438,0,'',2,0),(439,0,'',2,0),(440,0,'',2,0),(441,0,'',2,0),(442,0,'',1,0),(443,0,'',2,0),(444,0,'',1,0),(445,0,'',2,0),(446,0,'',3,0),(447,0,'',2,0),(448,0,'',1,0),(449,0,'',2,0),(450,0,'',1,0),(451,0,'',2,0),(452,0,'',2,0),(453,0,'Carrots',1,0),(454,0,'',1,0),(455,0,'',2,0),(456,0,'',1,0),(457,0,'',2,0),(458,0,'',2,0),(459,0,'',1,0),(460,0,'',2,0),(461,0,'',2,0),(462,0,'',1,0),(463,0,'',2,0),(464,0,'',1,0),(465,0,'',2,0),(466,0,'',1,0),(467,0,'',1,0),(468,0,'chikn noodle soup',1,0),(469,0,'Chicken & Noodle Soup 2',2,0),(470,0,'chk nood 2',2,0),(471,0,'',1,0),(472,0,'',2,0),(473,0,'',2,0),(474,0,'',1,0),(475,0,'',2,0),(476,0,'',1,0),(477,0,'',2,0),(478,0,'',1,0),(479,0,'',2,0),(480,0,'',1,0),(481,0,'',2,0),(482,0,'',14,0),(483,0,'',1,0),(484,0,'',2,0),(485,0,'',3,0),(486,0,'',4,0),(487,0,'',5,0),(488,0,'',6,0),(489,0,'',7,0),(490,0,'',4,0),(491,0,'',1,0),(492,0,'',2,0),(493,0,'backpackers pantry Jamaican Jerk ',1,0),(494,0,'backpackers pantry cheddar mashed potatos',1,0),(495,0,'Mountain House can',2,0),(496,0,'',1,0),(497,0,'',2,0),(498,0,'alpine aire black beans & rice',1,0),(499,0,'',1,0),(500,0,'',2,0),(501,0,'alpine aire black beans & rice',2,0),(502,0,'1 week supply',1,0),(503,0,'How it Works',2,0),(504,0,'Stove In A Can',3,0),(505,0,'',1,0),(506,0,'',2,0),(507,0,'',1,0),(508,0,'',2,0),(509,0,'',1,0),(510,0,'',1,0),(511,0,'',2,0); /*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_text` -- DROP TABLE IF EXISTS `catalog_product_entity_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `catalog_product_entity_text` ( `value_id` int(11) NOT NULL AUTO_INCREMENT, `entity_type_id` mediumint(8) unsigned NOT NULL DEFAULT '0', `attribute_id` smallint(5) unsigned NOT NULL DEFAULT '0', `store_id` smallint(5) unsigned NOT NULL DEFAULT '0', `entity_id` int(10) unsigned NOT NULL DEFAULT '0', `value` text NOT NULL, PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_TEXT_STORE` (`store_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_TEXT_PRODUCT_ENTITY` (`entity_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1688 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `catalog_product_entity_text` -- LOCK TABLES `catalog_product_entity_text` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_text` DISABLE KEYS */; INSERT INTO `catalog_product_entity_text` VALUES (9,4,61,0,3,'Made with whole grains, well, six whole grains to be exact. '),(10,4,62,0,3,'6-Grain Cereal\r\n• Net wt. 2 lbs. 4 oz\r\n• 12 servings per can\r\n• #10 can\r\n'),(11,4,72,0,3,'freeze dried foods, survival foods, freeze dried breakfast, mountain house'),(12,4,95,0,3,''),(13,4,61,0,4,'

Preparation Instructions -
1- In a bowl, Combine 1 C mix and 2/3 C water
2- Mix until powder is moistened. Batter will be lumpy. Do not overmix
3- Preheat an oiled skillet to 375 degrees
4- Pour about 1/4 C batter for each pancake
5- Cook until brown, turning once
6- Serve with syrup

'),(14,4,62,0,4,'The perfect batter for moist, golden brown blueberry pancakes\r\n• Net wt. 4.5 lbs.\r\n• 39 servings per can'),(15,4,72,0,4,'survival foods, freeze dried, food storage, blueberry pancakes, comfort food'),(16,4,95,0,4,''),(17,4,61,0,5,'A wonderful hashbrown skillet that the whole family will love. This product is so easy to prepare and comes in a #10 can. No need to rotate, these hashbrowns have a shelf life of 25 years!'),(18,4,62,0,5,'Homestyle hashbrowns with chopped onions and spices\r\n• Net wt. 3 lbs.\r\n• 12 servings per can'),(19,4,72,0,5,''),(20,4,95,0,5,''),(21,4,61,0,6,'

*NO COOKING REQUIRED DIRECTIONS:

\r\n

Just add 8oz of water per serving.

'),(22,4,62,0,6,'Granola with Blueberries & Milk is made to be a sweet and crunchy flavor for an irresistible breakfast!\r\n• Net wt. 1lb 10 oz\r\n• 8 servings per can'),(23,4,72,0,6,'Food storage, freeze dried foods, mountain house, survival foods'),(24,4,95,0,6,''),(25,4,61,0,7,'

Tomorrow\'s Harvest Real Milk is the only milk to qualify under the Food and Drug Administration [FDA] Real Seal. Tomorrow\'s Harvest using a low heat process to \"spray dry\" our real milk right from the dairy farm. Just add water to our real milk and you will be drinking the same milk that is in your refrigerator, that is nutritionally and tastefully speaking. The emergency preparedness industry is known for evaporated milk, dehydrated milk & powdered milk, but there is only one milk that qualifies under the real seal- Tomorrow\'s Harvest Real Milk We do not know what tomorrow will bring, but we can have peace of mind knowing what Tomorrow\'s Harvest has delivered... Real Milk!

'),(26,4,62,0,7,'• 100% real instant nonfat milk\r\n• Buy it by the case for a discount\r\n• Makes up to 5 gallons per can\r\n• Just add water'),(27,4,72,0,7,'Real milk, powdered milk, survival food, freeze dried foods, just add water, food supply, food storage companies, add water'),(28,4,95,0,7,''),(29,4,61,0,8,'

\"\"\r\nTomorrow\'s Harvest Real Milk is the only milk to qualify under the Food and Drug Administration [FDA] Real Seal, now we have added dutch chocolate and whey protein to give you the nutritional and essential proteins to continue through the day. Tomorrow\'s Harvest using a low heat process to \"spray dry\" our real milk right from the dairy farm. Just add water to our real milk and you will be drinking the same milk that is in your refrigerator, that is nutritionally and tastefully speaking. The emergency preparedness industry is known for evaporated milk, dehydrated milk & powdered milk, but there is only one milk that qualifies under the real seal- Tomorrow\'s Harvest Real Milk We do not know what tomorrow will bring, but we can have peace of mind knowing what Tomorrow\'s Harvest has delivered... Real Milk!

\r\n'),(30,4,62,0,8,'Tomorrow\'s Harvest Real Chocolate Breakfast Drink now fortified with whey protein and dutch chocolate'),(31,4,72,0,8,'real milk, powdered milk, freeze dried milk, '),(32,4,95,0,8,''),(33,4,61,0,9,'Mountain House Rice & Chicken'),(34,4,62,0,9,'Real Rice, Real Chicken, Real Rice & Chicken'),(35,4,72,0,9,'mountain house, freeze dried meals, survival food'),(36,4,95,0,9,''),(37,4,61,0,10,'

Spaghetti with Meatballs

\r\n

Preparation Instructions

\r\n

Preparing 1 Cup dry mix

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 1 1/4 Cup (300mL) of boiling water to 1 cup of dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

\r\n

 Preparing the entire can

\r\n

 

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 13 3/4 Cups (3.2L) of boiling water to dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

'),(38,4,62,0,10,'

Spaghetti with Meatballs

\r\n\r\n\r\n'),(39,4,72,0,10,''),(40,4,95,0,10,''),(41,4,61,0,11,'Enjoy chicken, mushrooms, and noodles in a rice white sauce. Makes 11 1-cup servings. Mountain House® foods have excellent flavor, convenience, and storability. The Mountain House® name is your assurance of premium quality foods that may be stored for years. The exclusive Mountain House® freeze drying process locks in the natural flavors and colors of our premium-quality foods. Mountain House® freeze dried foods have the flavor appeal of freshly frozen foods, with added energey saving advantages so important every day, and especially during emergencies. '),(42,4,62,0,11,'• Vegetarian meal. \r\n• Chicken(TVP) ala King\r\n• #10 Cans\r\n'),(43,4,72,0,11,'mountain house, freeze dried foods, food storage, survival foods'),(44,4,95,0,11,''),(45,4,61,0,12,'Vegetable Stew w/ Beef'),(46,4,62,0,12,'Vegetable Stew w/ Beef\r\n• Net wt. 2 lbs. 4 oz\r\n• 12 servings per can\r\n• #10 can\r\n'),(47,4,72,0,12,''),(48,4,95,0,12,''),(49,4,61,0,13,'Beef Teriyaki w/ Rice'),(50,4,62,0,13,'Beef Teriyaki w/ Rice'),(51,4,72,0,13,''),(52,4,95,0,13,''),(53,4,61,0,14,'An savory home-style blend of gourmet lasagna pasta noodles cooked in a zesty tomato sauce flavored with Italian-style herbs & spices, tender chunks of real beef, and a blend of mozarella, parmesan, & romano cheeses. \r\n'),(54,4,62,0,14,'Real Home-Made Lasagna\r\nFreshTomatos\r\nPasta Noodles\r\nItalian Herbs & Spices\r\nUSDA ground beef\r\nMozarella Cheese\r\nParmesan Cheese\r\nRomana Cheese\r\n\r\n10 Servings\r\n'),(55,4,72,0,14,'lasagna, freeze dried foods, mountain house lasagna, wise company, backpackers pantry, alpine aire, dried foods, survival foods, food storage, emergency preparedness, emergency food supplies, '),(56,4,95,0,14,''),(57,4,61,0,15,'

Creamy white sauce, with USDA Chicken

\r\n

 

\r\n

\"As you stock food, take into account your family’s unique needs and tastes. Familiar foods are important. They lift morale and give a feeling of security in times of stress. Try to include foods that they will enjoy and that are also high in calories and nutrition.\"
--FEMA

\r\n

 

\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Dimensions:6.25\" x 7\" x 6.25\"
Estimated Shelf Life (Opened Container):15-30 Days
Total Calories:2760
Allergen & Specialty:Pork Free, Shellfish Free, Peanut Free
Water Required (gal):0.75
Food Type:Main Entrees
Storage Requirements:To achieve maximum shelf life, store in an environment with a temperature of 60°F or lower and humidity of 10% or less. Shelf life statements are based on industry standards and relevant studies from reliable sources. The Ready Store disclaims any liability or warranty as actual shelf life results may vary depending on individual storage conditions.
Total Servings:12
'),(58,4,62,0,15,'This fully freeze dried meal is perfect for a lunch or dinner. USDA chicken, mushrooms, vegetables and noodles in a rich and creamy white sauce.'),(59,4,72,0,15,'freeze dried foods, mountain house, freeze dried chicken'),(60,4,95,0,15,''),(61,4,61,0,16,'ith the Mountain House Turkey Tetrazzini you can enjoy the taste of turkey, asparagus, and noodles in a flavorful sauce in your home food storage. Outdoor enthusiasts have made Mountain House® freeze-dried food their first choice for 35 years. Why? Because Mountain House® tastes better than other brands! Other backpacking food brands consist of only a few freeze-dried ingredients, mixed with dried seasonings and ingredients, which are then blended, not cooked. Mountain House® meals are cooked to give you the delicious homemade flavor you deserve. All you need to add is boiling water, and in just a few minutes, they are ready to eat!\r\n'),(62,4,62,0,16,'Turkey Tetrazinni'),(63,4,72,0,16,''),(64,4,95,0,16,''),(65,4,61,0,17,'

Beef, mushrooms, and noodles smothered in a rich sour cream sauce.

\r\n

Preparation Instructions

\r\n

Preparing 1 Cup dry mix

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 1 1/4 Cup (300mL) of boiling water to 1 cup of dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

\r\n

 Preparing the entire can

\r\n

 

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 13 3/4 Cups (3.2L) of boiling water to dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

'),(66,4,62,0,17,'

Beef, mushrooms, and noodles smothered in a rich sour cream sauce.

\r\n'),(67,4,72,0,17,''),(68,4,95,0,17,''),(69,4,61,0,18,'mh_mac_cheese'),(70,4,62,0,18,'mh_mac_cheese'),(71,4,72,0,18,'mountain house, freeze dried foods, survival food'),(72,4,95,0,18,''),(73,4,61,0,19,'Enjoy chicken and rice with a sweet combination of oriental flavors. Makes 9 1-cup servings. Mountain House® foods have excellent flavor, convenience, and storability. The Mountain House® name is your assurance of premium quality foods that may be stored for years. The exclusive Mountain House® freeze drying process locks in the natural flavors and colors of our premium-quality foods. Mountain House® freeze dried foods have the flavor appeal of freshly frozen foods, with added energey saving advantages so important every day, and especially during emergencies.\r\n'),(74,4,62,0,19,'mh_teriyaki_rice'),(75,4,72,0,19,'mountain house, freeze dried foods, survival foods, food storage'),(76,4,95,0,19,''),(77,4,61,0,20,'mh_sweet_pork'),(78,4,62,0,20,'mh_sweet_pork'),(79,4,72,0,20,'mountain house, freeze dried foods, freeze dried pork'),(80,4,95,0,20,''),(81,4,61,0,21,'The Mountain House Pasta Primavera combines zucchini, spiral macaroni, cauliflower, broccoli, red & yellow peppers, and green peas in a parmesan cheese sauce. The Pasta Primavera makes about 9 1-cup servings. Mountain House® foods have excellent flavor, convenience, and storability. The Mountain House® name is your assurance of premium quality foods that may be stored for years. The exclusive Mountain House® freeze drying process locks in the natural flavors and colors of our premium-quality foods. Mountain House® freeze dried foods have the flavor appeal of freshly frozen foods, with added energey saving advantages so important every day, and especially during emergencies. '),(82,4,62,0,21,'Mountain House Pasta Primavera with fresh freeze dried vegetables, and parmesan cheese sauce'),(83,4,72,0,21,'freeze dried vegetables, freeze dried foods, mountain house, food storage '),(84,4,95,0,21,''),(85,4,61,0,22,'

Preparation Instructions

\r\n

Preparing 1 Cup dry mix

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 1 1/4 Cup (300mL) of boiling water to 1 cup of dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

\r\n

 Preparing the entire can

\r\n

 

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 13 3/4 Cups (3.2L) of boiling water to dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

'),(86,4,62,0,22,'

Oriental Style Spicy Chicken

\r\n

• Net wt. 2 lb 4 oz.
• 12 servings per can
• #10 cans

'),(87,4,72,0,22,''),(88,4,95,0,22,''),(89,4,61,0,23,'MH Chicken Stew'),(90,4,62,0,23,'MH Chicken Stew'),(91,4,72,0,23,''),(92,4,95,0,23,''),(93,4,61,0,24,'Mexican Style Beef Wrap'),(94,4,62,0,24,'Mexican Style Beef Wrap'),(95,4,72,0,24,'Survival Foods, freeze dried foods, mountain house, food storage '),(96,4,95,0,24,''),(101,4,61,0,26,'With our Mountain House Hearty Beef Stew you can enjoy the taste of potatoes, peas, carrots and beef in a thick stew. Each can of Mountain House Hearty Beef Stew makes approximately 10 1-cup servings. Mountain House® foods have excellent flavor, convenience, and storability. The Mountain House® name is your assurance of premium quality foods that may be stored for years. The exclusive Mountain House® freeze drying process locks in the natural flavors and colors of our premium-quality foods. Mountain House® freeze dried foods have the flavor appeal of freshly frozen foods, with added energey saving advantages so important every day, and especially during emergencies. '),(102,4,62,0,26,'Freeze Dried Beef Stew\r\n• Net wt. 1 lb. 1.2 oz.\r\n• 10 servings per can\r\n• 6 #10 cans per case\r\n'),(103,4,72,0,26,'freeze dried foods, mountain house, freeze dried survival foods'),(104,4,95,0,26,''),(105,4,61,0,27,'

Chili Mac w/ Beef

\r\n

Preparation Instructions

\r\n

Preparing 1 Cup dry mix

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 1 1/4 Cup (300mL) of boiling water to 1 cup of dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

\r\n

 Preparing the entire can

\r\n

 

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 13 3/4 Cups (3.2L) of boiling water to dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

'),(106,4,62,0,27,'

Spicy chili sauce with beef, macaroni noodles, and beans

\r\n'),(107,4,72,0,27,''),(108,4,95,0,27,''),(109,4,61,0,28,'

Preparation Instructions

\r\n

Preparing 1 Cup dry mix:

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 1 1/4 Cup (300mL) of boiling water to 1 cup of dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

\r\n

 Preparing the entire can:

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 13 3/4 Cups (3.2L) of boiling water to dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

'),(110,4,62,0,28,'An elegant entrée of pasta, chicken & vegetables.\r\n• Net wt. 2 lbs. 4 oz\r\n• 12 servings per can\r\n• #10 can\r\n'),(111,4,72,0,28,'Survival Foods, freeze dried foods, mountain house, food storage chicken'),(112,4,95,0,28,''),(113,4,61,0,29,'

Corn, yellow peas, carrots, and spices make up this delicious chowder.

\r\n

Preparation Instructions

\r\n

Preparing 1 Cup dry mix

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 1 1/4 Cup (300mL) of boiling water to 1 cup of dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

\r\n

 

\r\n

Preparing the entire can

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 13 3/4 Cups (3.2L) of boiling water to dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

\r\n

 

'),(114,4,62,0,29,'A flavorful combination of yellow peas, corn, carrots, and spices make up this thick chowder.\r\n• Net wt. 1 lb. 8oz.\r\n• 12 servings per can\r\n• #10 can\r\n• Gluten-Free\r\n'),(115,4,72,0,29,'freeze dried foods, freeze dried meals, freeze dried corn\r\nchowder'),(116,4,95,0,29,''),(117,4,61,0,30,'

Preparation Instructions

\r\n

Preparing 1 Cup dry mix

\r\n

1. Remove oxygen absorber from contents and discard
\r\n2. Thoroughly mix contents
\r\n3. Add 1/4 Cup (300mL) of boiling water to 1 cup of dry ingredients
\r\n4. Stir well, fully submerging ingredients
\r\n5. Cover and let sit for 13 minutes
\r\n6. Stir and serve

\r\n

Preparing the entire can

\r\n

1. Remove oxygen absorber from contents and discard
\r\n2. Thoroughly mix contents
\r\n3. Add 18 Cups (4.2L) of boiling water to dry ingredients\r\n4. Stir well, fully submerging ingredients
\r\n5. Cover and let sit for 13 minutes
\r\n6. Stir and serve

\r\n'),(118,4,62,0,30,'New Mexican green chili, chicken and cheese served over rice and black beans\r\n• Net wt. 2 lbs. 14 oz.\r\n• 18 servings per can\r\n• #10 can'),(119,4,72,0,30,'Santa Fe Chicken chicken Freeze dried foods, freeze dried rice, freeze dried beans, '),(120,4,95,0,30,''),(121,4,61,0,31,'Traditional Chicken Gumbo that will add some kick to your emergency food storage. Spicy chicken gumbo with rice, corn, bell peppers, okra, onion, celery and chicken create a flavorful high protein & low fat entree.'),(122,4,62,0,31,'Heaps of freeze dried USDA Chicken \r\nDried Vegetables\r\nOkra\r\nRed Bell Peppers\r\nGreen Bell Peppers\r\nOnions\r\nCorn\r\nTomatoes\r\n10 Servings'),(123,4,72,0,31,'Freeze dried chicken, freeze dried foods, emergency food storage, alpine aire, freeze dried foods, survival foods, emergency preparedness, mountain house freeze dried meals, backpackers pantry freeze dried food, '),(124,4,95,0,31,''),(125,4,61,0,32,'Hickory smoked barbecue sauce mixes sweetly with freeze dried white meat chicken & rice. '),(126,4,62,0,32,'Freeze dried chicken saturated in BBQ sauces and spices. '),(127,4,72,0,32,''),(128,4,95,0,32,''),(129,4,61,0,33,'

Preparation Instructions

\r\n

Preparing 1 Cup dry mix:

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 1 1/4 Cup (300mL) of boiling water to 1 cup of dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

\r\n

Preparing the entire can:

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 13 3/4 Cups (3.2L) of boiling water to dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

'),(130,4,62,0,33,'Beef with pintos & black beans, corn meal, cheddar cheese, brown rice and vegetables including corn, onion, spinach & carrots with Tex-Mex seasonings.\r\n\r\n• Net wt. 2 lbs. 4 oz\r\n• 12 servings per can\r\n• #10 can\r\n• Gluten-Free \r\n'),(131,4,72,0,33,'mountain house, alpine aire, food storage, survival foods Western Beef Tamale Pie freeze dried'),(132,4,95,0,33,''),(133,4,61,0,34,'

Preparation Instructions

\r\n

 Preparing 1 Cup dry mix:

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 1 1/4 Cup (300mL) of boiling water to 1 cup of dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

\r\n

Preparing the entire can:

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 13 3/4 Cups (3.2L) of boiling water to dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

\r\n


'),(134,4,62,0,34,'Mashed potatoes topped with turkey and creamy gravy.\r\n\r\n• Net wt. 2 lbs. 4 oz\r\n• 12 servings per can\r\n• #10 can\r\n• Gluten-Free \r\n'),(135,4,72,0,34,'Freeze dried turkey, alpine aire turkey and mashed potatoes, food storage freeze dried'),(136,4,95,0,34,''),(137,4,61,0,35,'This meal is filled with dried pasta combined with a copious amount of dehydrated vegetables (tomatoes, pinto beans, white beans, onions, carrots, cabbage, potatoes, peas, peppers & celery). Great tasting dried vegetables.'),(138,4,62,0,35,'• Net wt. 2 lb. 3 oz.\r\n• 14 servings per can\r\n• #10 cans per case'),(139,4,72,0,35,'Alpine Minestrone Soup #10 can food storage'),(140,4,95,0,35,''),(141,4,61,0,36,'Traditional fried rice enriched with the beef flavored soy protein. '),(142,4,62,0,36,'• Vegetarian meal\r\n• Pre-cooked beef flavored soy protein with instant rice. \r\nRated as one of the top vegetarian meals at the Self Reliant Expo 2010'),(143,4,72,0,36,''),(144,4,95,0,36,''),(145,4,61,0,37,'Freeze dried Broccoli Florets'),(146,4,62,0,37,'• Freeze dried vegetables.\r\n• Whole freeze dried broccoli. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• #10 cans'),(147,4,72,0,37,''),(148,4,95,0,37,''),(149,4,61,0,38,'Freeze dried red cabbage. '),(150,4,62,0,38,'• Freeze dried vegetables.\r\n• Whole freeze dried cabbage. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(151,4,72,0,38,'Survival Foods, freeze dried foods, mountain house, food storage '),(152,4,95,0,38,''),(153,4,61,0,39,'Freeze Dried Carrot (diced).'),(154,4,62,0,39,'• Freeze dried vegetables.\r\n• Whole freeze dried carrots. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(155,4,72,0,39,''),(156,4,95,0,39,''),(157,4,61,0,40,'Freeze Dried Celery'),(158,4,62,0,40,'• Freeze dried vegetables.\r\n• Whole freeze dried celery. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(159,4,72,0,40,''),(160,4,95,0,40,''),(161,4,61,0,41,'Freeze Dried Sweet Corn'),(162,4,62,0,41,'• Freeze dried vegetables.\r\n• Whole freeze dried corn. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• #10 Can'),(163,4,72,0,41,'Freeze Dried Sweet Corn #10 cans'),(164,4,95,0,41,''),(165,4,61,0,42,'Freeze Dried Mushrooms, diced. '),(166,4,62,0,42,'• Freeze dried vegetables.\r\n• Whole freeze dried mushrooms. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(167,4,72,0,42,''),(168,4,95,0,42,''),(169,4,61,0,43,'Freeze Dried Chopped Onions(White)'),(170,4,62,0,43,'• Freeze dried vegetables.\r\n• Whole freeze dried white onions. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• #10 Cans '),(171,4,72,0,43,'Freeze Dried White Onions food storage #10 can'),(172,4,95,0,43,''),(173,4,61,0,44,'Freeze Dried Sweet Peas'),(174,4,62,0,44,'• Freeze dried vegetables.\r\n• Whole freeze dried sweet peas. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(175,4,72,0,44,''),(176,4,95,0,44,''),(177,4,61,0,45,'Freeze Dried Asparagus (Cut)'),(178,4,62,0,45,'• Freeze dried vegetables.\r\n• Whole freeze dried asparagus. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(179,4,72,0,45,'farm fresh asparagus, freeze dried asparagus, freeze dried foods'),(180,4,95,0,45,''),(181,4,61,0,46,'Freeze Dried Garden Peas'),(182,4,62,0,46,'• Freeze dried vegetables.\r\n• Whole freeze dried garden peas. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• #10 Can'),(183,4,72,0,46,'Freeze-Dried Green Peas #10 Can'),(184,4,95,0,46,''),(185,4,61,0,47,'Freeze Dried Cauliflower Pearls'),(186,4,62,0,47,'• Freeze dried fruit.\r\n• Whole freeze dried cauliflower. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(187,4,72,0,47,''),(188,4,95,0,47,''),(189,4,61,0,48,'Freeze Dried Banana Slices. '),(190,4,62,0,48,'• Freeze dried fruit.\r\n• Whole freeze dried bananas. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(191,4,72,0,48,''),(192,4,95,0,48,''),(193,4,61,0,49,'Whole freeze dried raspberries.'),(194,4,62,0,49,'• Freeze dried fruit.\r\n• Whole freeze dried raspberries. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(195,4,72,0,49,''),(196,4,95,0,49,''),(197,4,61,0,50,'Freeze Dried Strawberries'),(198,4,62,0,50,'• Freeze dried fruit.\r\n• Whole freeze dried strawberries. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• #10 Can'),(199,4,72,0,50,'Freeze Dried Strawberries #10 cans food storage'),(200,4,95,0,50,''),(201,4,61,0,51,'Freeze Dried Sliced Apples with cinnamon flavor.'),(202,4,62,0,51,'•100% Freeze dried sliced apples.\r\n• Freeze dried apples with cinnamon. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• #10 cans per case\r\n• 25-year shelf life\r\nVOTED #1 FREEZE DRIED FRUIT FOR FOOD STORAGE!'),(203,4,72,0,51,''),(204,4,95,0,51,''),(205,4,61,0,52,'Freeze Dried Sliced Peaches'),(206,4,62,0,52,'• Freeze dried fruit.\r\n• Whole freeze dried peaches. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• #10 cans per case'),(207,4,72,0,52,''),(208,4,95,0,52,''),(209,4,61,0,53,'Chunks of freeze dried pineapple. '),(210,4,62,0,53,'• Freeze dried fruit.\r\n• Whole freeze dried pineapple. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• #10 Can'),(211,4,72,0,53,'Freeze Dried Diced Pineapple #10 can food storage '),(212,4,95,0,53,''),(213,4,61,0,54,'Freeze Dried Orange segments.'),(214,4,62,0,54,'• Freeze dried fruit.\r\n• Whole freeze dried oranges. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(215,4,72,0,54,''),(216,4,95,0,54,''),(217,4,61,0,55,'Freeze Dried Cranberries'),(218,4,62,0,55,'• Freeze dried fruit.\r\n• Whole freeze dried cranberries. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(219,4,72,0,55,''),(220,4,95,0,55,''),(221,4,61,0,56,'Freeze Dried Blackberry'),(222,4,62,0,56,'• Freeze dried fruit.\r\n• Whole freeze dried blackberries. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(223,4,72,0,56,'Survival Foods, freeze dried foods, mountain house, food storage, freeze dried fruits'),(224,4,95,0,56,''),(225,4,61,0,57,'Freeze Dried Boysenberry'),(226,4,62,0,57,'• Freeze dried fruit.\r\n• Whole freeze dried boysenberries. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(227,4,72,0,57,''),(228,4,95,0,57,''),(229,4,61,0,58,'

Directions:
Mix 1/2 cup of Freeze-Dried Whole Blueberries to 1 cup of water. Let sit 5 minutes and drain off excess liquid. Yields apx. 1/2 cup of delicious blueberries for your favorite recipes, desserts, fruit smoothies, or for a wonderful snack by itself.

\r\n
\r\n

Ingredients:
Whole Blueberries. No additives or preservatives. 
Allergens: Processed in a plant that handles milk, wheat, egg, soybean, peanut and tree nut products.

'),(230,4,62,0,58,' Whole freeze dried blueberries\r\n• Freeze dried fruit.\r\n•.16 1/2 cup servings\r\n• # 10 Can'),(231,4,72,0,58,'Freeze Dried Blueberry food storage survival'),(232,4,95,0,58,''),(233,4,61,0,59,'

As naturally grown and deliciously tasting as the kiwi you picked fresh during your trip through the tropical islands... wait, what?? You have never been through the tropical islands. Well, this is about being prepared for an emergency anyways, but who wants to eat disgusting food - even when there is no food... no one, that\'s why you will be delightfully pleased eating Tomorrow\'s Harvest Freeze Dried Kiwi\'s. Oh, and did we mention that you will also be plentifully nourished with vitamins and all the awesomeness that comes from Mother Nature!

'),(234,4,62,0,59,'• Freeze dried fruit.\r\n• Whole freeze dried kiwi . \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(235,4,72,0,59,''),(236,4,95,0,59,''),(237,4,61,0,60,'Perfect for a snack after school, at work, or to assist you in getting all the nutrients and vitamins needed during a food shortage. The economy may not have got to you yet, but if times worsen, freeze dried mangos will keep your spirits high as a great source of nutrition and comfort food.'),(238,4,62,0,60,'• Freeze dried fruit.\r\n• Whole freeze dried mango chunks. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(239,4,72,0,60,'Food storage, freeze dried foods, mountain house, survival foods, freeze dried fruits'),(240,4,95,0,60,''),(241,4,61,0,61,'

Freeze Dried Grapes. What can we say? They\'re 100% real grapes

'),(242,4,62,0,61,'• Freeze dried fruit.\r\n• Whole freeze dried grapes. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(243,4,72,0,61,'Freeze dried fruits, freeze dried foods, food storage, emergency foods'),(244,4,95,0,61,''),(245,4,61,0,62,'Freeze dried Elderberries are amazing. Have you ever gone horseback riding through the northern panhandle of Idaho, and stumbled across a patch of elderberries? Well you should! But if you don\'t have a horse, and prefer to not fight a bear for a quick wilderness snack, then remember this: A can of Tomorrow\'s Harvest Freeze Dried Elderberries in the hand is worth two in the bush!\r\n\r\nThese elderberries are naturally grown, and are available in USDA Organic.'),(246,4,62,0,62,'• Freeze dried fruit.\r\n• Whole freeze dried elderberry . \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(247,4,72,0,62,'Food storage, freeze dried foods, mountain house, survival foods, freeze dried fruits'),(248,4,95,0,62,''),(249,4,61,0,63,'A delicious chicken(TVP) and vegetable meal.'),(250,4,62,0,63,'Dehydrated chicken(TVP) with freeze dried vegetables. Vegetarian meal. '),(251,4,72,0,63,''),(252,4,95,0,63,''),(253,4,61,0,64,'

Preparation Instructions

\r\n
    \r\n
  1. Open can and remove oxygen absorber and spice packets
  2. \r\n
  3. Reseal can with plastic lid (provided) and shake vigorously in order to re-distribute dry mix.
  4. \r\n
  5. Boil Two [2] cups of water in a pot or suitable container.
  6. \r\n
  7. Add One [1] spice packet and One [1] cup dry mix (Please note: combining One [1] Spice Packet and One [1] cup dry mix = Two [2] Servings)
  8. \r\n
  9. Stir well, cover and remove from heat.
  10. \r\n
  11. Allow to stand 15 minutes.
  12. \r\n
  13. Stir and serve.
  14. \r\n
  15. May be prepared hot or cold*.
  16. \r\n
  17. Cover can with plastic lid to preserve remaining unused mix (Product good for 90 days from time of opening (stored in a cool, dry environment).
  18. \r\n
\r\n

*Cold water preparation will take up to two (2) hours to re-hydrate.

'),(254,4,62,0,64,'Black beans, kidney beans & beef with a spirited classic chili taste reminiscent of the Wild West.\r\n• Net wt. 2 lb. 4 oz.\r\n• 12 servings per can\r\n• Gluten-Free\r\n• #10 cans\r\n'),(255,4,72,0,64,'Black Bart Chili Beans food storage freeze dried cans #10'),(256,4,95,0,64,''),(257,4,61,0,65,'A delicious meatless chili mix. '),(258,4,62,0,65,'Dehydrated beans. '),(259,4,72,0,65,''),(260,4,95,0,65,''),(261,4,61,0,66,'Chicken Teriyaki with Rice'),(262,4,62,0,66,'Dehydrated Chicken(TVP) Teriyaki with instant rice. Vegetarian meal. '),(263,4,72,0,66,''),(264,4,95,0,66,''),(265,4,61,0,67,'Made with dried maple syrup, real brown sugar & dried honey powder. This meal will serve as an excellent breakfast to get the day started with the food to fuel your body and your family. \r\n\r\nPreparedness Tip: \r\nKeeping yourself & your family\'s belly\'s filled with healthy food will not only fuel you throughout the day to accomplish things like hiking to your water source, helping your neighbors, and anything else that enables you to be a part of the solution, but will also help keep the morale high and will allow you to keep your patience and wits about you.'),(266,4,62,0,67,'Made with dried maple syrup, real brown sugar & dried honey powder. This meal will serve as an excellent breakfast to get the day started with the food to fuel your body and your family. '),(267,4,72,0,67,'Survival Foods, freeze dried foods, mountain house, food storage '),(268,4,95,0,67,''),(269,4,61,0,68,'

An old-world recipe of pasta, beef, mushrooms & tomatoes in a rich sour cream sauce.

\r\n

Preparation Instructions

\r\n

Preparing 1 Cup dry mix

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 1 1/4 Cup (300mL) of boiling water to 1 cup of dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

\r\n

Preparing the entire can

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 13 3/4 Cups (3.2L) of boiling water to dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

'),(270,4,62,0,68,'

Beef Stroganoff and noodles\r\n• Net Weight 2 lbs. 1 oz\r\n•\r\n• #10 Can\r\n• Real beef

\r\n'),(271,4,72,0,68,'Stroganoff Beef Noodles freeze dried entree'),(272,4,95,0,68,''),(277,4,61,0,70,'Italian dish of Capellini pasta with a tomato sauce. '),(278,4,62,0,70,'•Vegetarian Dish\r\n• Net wt. 2 lbs. 4 oz\r\n• 12 servings per can\r\n• #10 can\r\n'),(279,4,72,0,70,'pasta marinara freeze dried food storage'),(280,4,95,0,70,''),(281,4,61,0,71,'

Tomorrow\'s Harvest Baked Potato Cheese Soup is a delicious meal that only requires water to cook! . This dry soup mix contains no trans fat or autolyzed yeast extract.

\r\n

Product is sent to you in a #10 can.

\r\n

 

\r\n

Preparation: (makes 2 servings)
1 - In a pot, combine 1 cup mix and 4 cups of water
2 - Turn heat up to high and bring to a boil
3 - Reduce heat to low and simmer about 15 minutes,
     or until ingredients are tender.
4 - Stir occassionally
5 - Ready to serve!

'),(282,4,62,0,71,'A creamy dish of chunky real potatoes, vegetables and cheese\r\n• Net wt. 4 lbs/can\r\n• 33 servings per can\r\n• #10 cans\r\n'),(283,4,72,0,71,'survival food supplies, freeze dried, food storage, easy to prepare, add water, self reliance'),(284,4,95,0,71,''),(289,4,61,0,73,'Cooked Ground Beef'),(290,4,62,0,73,'Freeze dried cooked ground beef. '),(291,4,72,0,73,'freeze dried meat, freeze dried foods, food storage, mountain house'),(292,4,95,0,73,''),(293,4,61,0,74,'Cooked Diced Chicken'),(294,4,62,0,74,'Freeze dried cooked chicken. '),(295,4,72,0,74,'freeze dried chicken, freeze dried foods, mountain house, food storage'),(296,4,95,0,74,''),(297,4,61,0,75,'White Turkey'),(298,4,62,0,75,'Freeze dried white turkey. Real white turkey. '),(299,4,72,0,75,'freeze dried meat, freeze dried meals, freeze dried turkey, mountain house'),(300,4,95,0,75,''),(301,4,61,0,76,'USDA approved Beef that has been diced.'),(302,4,62,0,76,'Freeze dried beef that has been diced.'),(303,4,72,0,76,'freeze dried foods, survival foods, food storage, mountain house'),(304,4,95,0,76,''),(305,4,61,0,77,'Gulf Shrimp'),(306,4,62,0,77,'Freeze dried gulf shrimp. '),(307,4,72,0,77,'freeze dried shrimp, freeze dried foods, food storage, mountain house'),(308,4,95,0,77,''),(309,4,61,0,78,'\"\"\r\n

Powdered Orange (imitation) Drink.

'),(310,4,62,0,78,'Powdered Orange Drink. \r\n*contains no real juice'),(311,4,72,0,78,''),(312,4,95,0,78,''),(313,4,61,0,79,'\"\"\r\n

Powdered cherry lemonade drink.

'),(314,4,62,0,79,'Powdered cherry lemonade beverage that will be quick and easy while you are hiking the trail, or will flavor your water while you are in survival mode. '),(315,4,72,0,79,''),(316,4,95,0,79,''),(317,4,61,0,80,'Raspberry Crumble'),(318,4,62,0,80,'Freeze Dried dessert. Premium raspberry sauce topped with chocolate cookie crumbs.'),(319,4,72,0,80,''),(320,4,95,0,80,''),(321,4,61,0,81,'Pilot crackers.'),(322,4,62,0,81,'Pilot crackers. Great easy snack for hiking or to go with one of your freeze dried meals. Food storage, survival food, 72 hour kit. '),(323,4,72,0,81,''),(324,4,95,0,81,''),(325,4,61,0,82,'

Preparation Instructions:

\r\n

To prepare 4 servings:

\r\n1. Open can
\r\n2. Discard Oxygen absorber packet
\r\n3. To make bluberry topping
\r\n     a. Empty contents of blueberry topping pouch into small bowl
\r\n     b. Add 1/4 cup hot water, and stir thoroughly
\r\n4. To make cheescake:
\r\n     a. Combine cheesecake mix and 1 Cup cold water in serving dish
\r\n     b. Stir in wet ingredients
\r\n     c. Let stand 10 minutes
\r\n5. To serve:
\r\n     a. Sprinkle graham cracker crumbs over top of cheesecake
\r\n     b. Drizzle bluberry topping over graham cracker crumbs

'),(326,4,62,0,82,'Smooth, creamy cheesecake, real blueberry sauce, and graham cracker.\r\n• Net wt. 1 lb 4.7 oz.\r\n• 12 servings per can\r\n• 6 #10 cans per case\r\n'),(327,4,72,0,82,'Mountain House Blueberry Cheese Cake food storage freeze dried'),(328,4,95,0,82,''),(329,4,61,0,83,'Freeze Dried Papaya'),(330,4,62,0,83,'• Freeze dried fruit.\r\n• Whole freeze dried papaya. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(331,4,72,0,83,'freeze dried fruit, food storage, mountain house, freeze dried foods'),(332,4,95,0,83,''),(333,4,61,0,84,'Freeze Dried Pear, diced. '),(334,4,62,0,84,'• Freeze dried fruit.\r\n• Whole freeze dried diced pears. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(335,4,72,0,84,'freeze dried fruit, food storage, mountain house, freeze dried foods'),(336,4,95,0,84,''),(337,4,61,0,85,'Freeze Dried Raisins. '),(338,4,62,0,85,'• Freeze dried fruit.\r\n• Whole freeze dried raisins. \r\n• Great for hiking, camping, food storage, emergency preparedness kits, 72 hour kits\r\n• 3 cans per order '),(339,4,72,0,85,'freeze dried fruit, freeze dried foods, survival foods, mountain house'),(340,4,95,0,85,''),(341,4,61,0,86,'Diced pieces of freeze dried artichoke. '),(342,4,62,0,86,'•Freeze dried vegetables.\r\n• Freeze dried artichoke diced to use for a snack or an addition to any meal. \r\n• 3 cans per order'),(343,4,72,0,86,'freeze dried vegetables, freeze dried foods, survival foods, mountain house'),(344,4,95,0,86,''),(345,4,61,0,87,'Freeze Dried Green Beans'),(346,4,62,0,87,'• Net wt. 2 lbs. 4 oz\r\n• Freeze dried green beans. \r\n• #10 can'),(347,4,72,0,87,'freeze dried vegetables, freeze dried foods, mountain house, survival foods green beans'),(348,4,95,0,87,''),(349,4,61,0,88,'Freeze Dried Cucumbers, diced. For all of you cucumber lovers who want this great vegetable even when they are nowhere to be found. '),(350,4,62,0,88,'• Diced freeze dried cucumbers\r\n• Hiking/camping food. \r\n• 3 cans per order'),(351,4,72,0,88,'freeze dried vegetables, freeze dried foods, mountain house, survival foods'),(352,4,95,0,88,''),(353,4,61,0,89,'

This pack is “evolution in progress” and every generation just gets better. It started out years ago with some guides from Alaska that were smart enough to realize the benefits of carrying internal frames instead of those heinous and heavy externals. The issue was how could they carry out more than they came in with, without having to leave THE GENESIS gear behind. Well here’s your answer.

\r\n

 

\r\n

\r\n
\"badlands \"badlands                             
\r\n

WEIGHT : 4 lbs 15 oz
DIMENSIONS :25 x 14 x 8
CAPACITY : 2875 ci 
COMPARTMENTS :4
POCKETS :5
RIFLE YES 
BOW :YES 
CAMO : Max-1 & AP

'),(354,4,62,0,89,'

This pack is “evolution in progress” and every generation just gets better. It started out years ago with some guides from Alaska that were smart enough to realize the benefits of carrying internal frames instead of those heinous and heavy externals. The issue was how could they carry out more than they came in with, without having to leave THE GENESIS gear behind. Well here’s your answer.

\r\n

 

\r\n

\"badlands\"badlands\"badlands

'),(355,4,72,0,89,''),(356,4,95,0,89,''),(357,4,61,0,90,'The Ultra Day is just what the name implies. There are a bajillion pockets for everything. The rear of the pack also features a possibles pouch with a water proof zipper, as well as a Hypalon handsfree bow belt, which is strong enough to hang from (but don’t). This pack also includes our ‘Bottom Glove Box Pocket’ for the ultimate in organization capabilities.\r\n\r\nPACK DETAILS\r\nWEIGHT: 3 lbs 1 oz\r\nDIMENSIONS: 22” x 12” x 8”\r\nCAPACITY: 1800 ci\r\nCOMPARTMENTS: 4\r\nPOCKETS: 6\r\nRIFLE: NO\r\nBOW: YES\r\nCAMO: MAX-1 & AP'),(358,4,62,0,90,'The Ultra Day is just what the name implies. There are a bajillion pockets for everything. The rear of the pack also features a possibles pouch with a water proof zipper, as well as a Hypalon handsfree bow belt, which is strong enough to hang from (but don’t). This pack also includes our ‘Bottom Glove Box Pocket’ for the ultimate in organization capabilities.'),(359,4,72,0,90,''),(360,4,95,0,90,''),(361,4,61,0,91,'Hydration System: Drinking is part of living. \"Still and motionless\" is part of hunting. Now Badlands lets you combine the two with our hands-free bladder. It allows you to carry up to 105 ounces of drinking pleasure in any Badlands pack.'),(362,4,62,0,91,'Hydration System: Drinking is part of living. \"Still and motionless\" is part of hunting. Now Badlands lets you combine the two with our hands-free bladder. It allows you to carry up to 105 ounces of drinking pleasure in any Badlands pack.'),(363,4,72,0,91,''),(364,4,95,0,91,''),(365,4,61,0,92,'Hydration System: Drinking is part of living. \"Still and motionless\" is part of hunting. Now Badlands lets you combine the two with our hands-free bladder. It allows you to carry up to 96 ounces of drinking pleasure in any Badlands pack.'),(366,4,62,0,92,'Hydration System: Drinking is part of living. \"Still and motionless\" is part of hunting. Now Badlands lets you combine the two with our hands-free bladder. It allows you to carry up to 96 ounces of drinking pleasure in any Badlands pack.'),(367,4,72,0,92,''),(368,4,95,0,92,''),(369,4,61,0,93,'This is not just a bottle holder. This is living proof that we can over engineer anything on the planet. If you like this, you should see our new line of toothpicks. Each one has a cool mirror so you can see what you are picking, a couple of shock absorbing springs, anyway....'),(370,4,62,0,93,'This is not just a bottle holder. This is living proof that we can over engineer anything on the planet. If you like this, you should see our new line of toothpicks. Each one has a cool mirror so you can see what you are picking, a couple of shock absorbing springs, anyway....'),(371,4,72,0,93,''),(372,4,95,0,93,''),(373,4,61,0,94,'

Menu Items

\r\n

 

\r\n

Breakfast & Vegetables

\r\n\r\n

10 Ounce Lunch & Dinner

\r\n'),(374,4,62,0,94,'A complete 3-day food unit of Mountain House freeze-dried foods consisting of three (3) full meals per day.'),(375,4,72,0,94,'Mountain house emergency family preparedness freeze dried food storage, emergency preparedness, hurricane kit, tornado kit, 72 hour kit, 72hr kit, freeze dried 72 hour kit'),(376,4,95,0,94,''),(377,4,61,0,95,'

This bucket contains 42 great-tasting, nutritious meals that only need water and a few minutes to prepare. With a 10-year shelf life, it’s the perfect solution for 72-Hour kits, camping, or just feeding 2 people for a week when you don’t feel like cooking.

\r\n

\"\"

'),(378,4,62,0,95,'ASK ABOUT our 48hr Special Discount 1.800.573.3994\r\n• Long-term food storage\r\n• 42 meals total\r\n• Just add hot water\r\n• One week supply for 2 people\r\n• Great for emergencies\r\n• 10-year shelf life\r\n• Vitamin & Mineral Fortified\r\n• 2000 calories a day\r\n\r\nApprox. Dimensions: 14\"L X 12\"W X 14\"H'),(379,4,72,0,95,''),(380,4,95,0,95,''),(385,4,61,0,97,'

\"\"

'),(386,4,62,0,97,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 2 months supply\r\n• 3 meals per day\r\n• 736 servings\r\n• $4.08 per serving\r\n• 14 meal varieties\r\n• 12 boxes'),(387,4,72,0,97,''),(388,4,95,0,97,''),(389,4,61,0,98,'

\"\"

'),(390,4,62,0,98,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 3 months supply\r\n• 3 meals per day\r\n• 1104 servings\r\n• $4.03 per serving\r\n• 14 meal varieties\r\n• 18 boxes'),(391,4,72,0,98,''),(392,4,95,0,98,''),(393,4,61,0,99,'

\"\"

'),(394,4,62,0,99,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults \r\n• 6 months supply\r\n• 3 meals per day\r\n• 2208 servings\r\n• $3.94 per serving\r\n• 14 meal varieties\r\n• 36 boxes'),(395,4,72,0,99,''),(396,4,95,0,99,''),(397,4,61,0,100,'

\"\"

'),(398,4,62,0,100,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults \r\n• 4 months supply\r\n• 3 meals per day\r\n• 1472 servings\r\n• $4.01 per serving\r\n• 14 meal varieties\r\n• 24 boxes'),(399,4,72,0,100,''),(400,4,95,0,100,''),(401,4,61,0,101,'

\"\"

'),(402,4,62,0,101,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults \r\n• 8 months supply\r\n• 3 meals per day\r\n• 2944 servings\r\n• $3.91 per serving\r\n• 14 meal varieties\r\n• 48 boxes'),(403,4,72,0,101,''),(404,4,95,0,101,''),(405,4,61,0,102,'\"\"'),(406,4,62,0,102,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults \r\n• 12 months supply\r\n• 3 meals per day\r\n• 4416 servings\r\n• $3.89 per serving\r\n• 14 meal varieties\r\n• 72 boxes'),(407,4,72,0,102,''),(408,4,95,0,102,''),(409,4,61,0,103,'

\"1\"\"

'),(414,4,62,0,104,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 1 month supply\r\n• 3 meals per day\r\n• 368 servings\r\n• $4.08 per serving\r\n• 14 meal varieties\r\n• 6 boxes'),(415,4,72,0,104,'mountain house, freeze dried, freeze dry, dehydrated, just add water, daily bread, emergency essentials, shelf reliance, thrive'),(416,4,95,0,104,''),(417,4,61,0,105,'

\"1\"1\"3\"3\"6\"6\"12\"12\"1\"\"

'),(454,4,62,0,114,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults \r\n• 1 month supply\r\n• 3 meals per day\r\n• 414 servings\r\n• $2.05 per serving\r\n• 13 meal varieties\r\n• 6 boxes\r\n\r\n'),(455,4,72,0,114,''),(456,4,95,0,114,''),(457,4,61,0,115,'

\"\"

'),(458,4,62,0,115,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults \r\n• 2 months supply\r\n• 3 meals per day\r\n• 828 servings\r\n• $1.93 per serving\r\n• 13 meal varieties\r\n• 12 boxes\r\n\r\n'),(459,4,72,0,115,''),(460,4,95,0,115,''),(461,4,61,0,116,'

\"\"

\"\"'),(462,4,62,0,116,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 3 months supply\r\n• 3 meals per day\r\n• 1242 servings\r\n• $1.89 per serving\r\n• 13 meal varieties\r\n• 18 boxes\r\n\r\n'),(463,4,72,0,116,''),(464,4,95,0,116,''),(465,4,61,0,117,'

\"\"

'),(466,4,62,0,117,'• 4 Adults or 2 Adults and 3 Children\r\n• 4 months supply\r\n• 3 meals per day\r\n• 1656 servings\r\n• $1.87 per serving\r\n• 13 meal varieties\r\n• 24 boxes\r\n\r\n'),(467,4,72,0,117,''),(468,4,95,0,117,''),(469,4,61,0,118,'

\"\"

\"\"'),(470,4,62,0,118,'• 4 Adults or 2 Adults and 3 Children\r\n• 6 months supply\r\n• 3 meals per day\r\n• 2484 servings\r\n• $1.85 per serving\r\n• 13 meal varieties\r\n• 36 boxes\r\n\r\n'),(471,4,72,0,118,''),(472,4,95,0,118,''),(473,4,61,0,119,'

\"\"

'),(474,4,62,0,119,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 8 months supply\r\n• 3 meals per day\r\n• 3312 servings\r\n• $1.84 per serving\r\n• 13 meal varieties\r\n• 48 boxes\r\n\r\n'),(475,4,72,0,119,''),(476,4,95,0,119,''),(477,4,61,0,120,'

\"\"

'),(478,4,62,0,120,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults \r\n• 12 months supply\r\n• 3 meals per day\r\n• 4968 servings\r\n• $1.81 per serving\r\n• 13 meal varieties\r\n• 72 boxes\r\n\r\n'),(479,4,72,0,120,''),(480,4,95,0,120,''),(481,4,61,0,121,'

\"1\"\"

'),(486,4,62,0,122,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 1 month supply\r\n• 3 meals per day\r\n• 365 servings\r\n• $2.33 per serving\r\n• 14 meal varieties\r\n• 6 boxes'),(487,4,72,0,122,'freeze, dried, gluten, free, special, diet, 1 month supply, food, storage, just add water, '),(488,4,95,0,122,''),(489,4,61,0,123,'

\"\"

'),(490,4,62,0,123,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 2 months supply\r\n• 3 meals per day\r\n• 730 servings\r\n• $2.19 per serving\r\n• 14 meal varieties\r\n• 12 boxes'),(491,4,72,0,123,'freeze, dried, gluten, free, special, diet, 1 month supply, food, storage, just add water, '),(492,4,95,0,123,''),(493,4,61,0,124,'

\"\"

'),(494,4,62,0,124,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 3 months supply\r\n• 3 meals per day\r\n• 1095 servings\r\n• $2.10 per serving\r\n• 14 meal varieties\r\n• 18 boxes'),(495,4,72,0,124,'freeze, dried, gluten, free, special, diet, 1 month supply, food, storage, just add water, '),(496,4,95,0,124,''),(497,4,61,0,125,'

\"\"

'),(498,4,62,0,125,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 4 months supply\r\n• 3 meals per day\r\n• 1460 servings\r\n• $2.05 per serving\r\n• 14 meal varieties\r\n• 24 boxes'),(499,4,72,0,125,'freeze, dried, gluten, free, special, diet, 1 month supply, food, storage, just add water, '),(500,4,95,0,125,''),(501,4,61,0,126,'

\"\"

'),(502,4,62,0,126,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 6 months supply\r\n• 3 meals per day\r\n• 2190 servings\r\n• $2.05 per serving\r\n• 14 meal varieties\r\n• 36 boxes'),(503,4,72,0,126,'freeze, dried, gluten, free, special, diet, 1 month supply, food, storage, just add water, \r\n'),(504,4,95,0,126,''),(505,4,61,0,127,'

\"\"

'),(506,4,62,0,127,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 8 months supply\r\n• 3 meals per day\r\n• 2920 servings\r\n• $2.05 per serving\r\n• 14 meal varieties\r\n• 48 boxes'),(507,4,72,0,127,'freeze, dried, gluten, free, special, diet, 1 month supply, food, storage, just add water, '),(508,4,95,0,127,''),(509,4,61,0,128,'

\"\"

'),(510,4,62,0,128,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 12 months supply\r\n• 3 meals per day\r\n• 4380 servings\r\n• $2.05 per serving\r\n• 14 meal varieties\r\n• 72 boxes'),(511,4,72,0,128,'freeze, dried, gluten, free, special, diet, 1 month supply, food, storage, just add water, '),(512,4,95,0,128,''),(513,4,61,0,129,'

\"1\"\"

'),(518,4,62,0,130,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults \r\n• 1 month supply\r\n• 3 meals per day\r\n• 401 servings\r\n• $2.12 per serving\r\n• 11 meal varieties\r\n• 6 boxes'),(519,4,72,0,130,'Food storage, freeze dried foods, mountain house, survival foods, lactose free food storage'),(520,4,95,0,130,''),(521,4,61,0,131,'

\"\"

'),(522,4,62,0,131,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 2 months supply\r\n• 3 meals per day\r\n• 802 servings\r\n• $1.99 per serving\r\n• 11 meal varieties\r\n• 12 boxes'),(523,4,72,0,131,'Food storage, freeze dried foods, mountain house, survival foods, lactose free food storage'),(524,4,95,0,131,''),(525,4,61,0,132,'

\"\"

'),(526,4,62,0,132,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults \r\n• 3 months supply\r\n• 3 meals per day\r\n• 1203 servings\r\n• $1.95 per serving\r\n• 11 meal varieties\r\n• 18 boxes'),(527,4,72,0,132,'Food storage, freeze dried foods, mountain house, survival foods, lactose free food storage'),(528,4,95,0,132,''),(529,4,61,0,133,'

\"\"

'),(530,4,62,0,133,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults or 2 Adults and 3 Children\r\n• 4 months supply\r\n• 3 meals per day\r\n• 1604 servings\r\n• $1.93 per serving\r\n• 11 meal varieties\r\n• 24 boxes'),(531,4,72,0,133,'Food storage, freeze dried foods, mountain house, survival foods, lactose free food storage'),(532,4,95,0,133,''),(533,4,61,0,134,'

\"\"

'),(534,4,62,0,134,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults or 2 Adults and 3 Children\r\n• 6 months supply\r\n• 3 meals per day\r\n• 2406 servings\r\n• $1.91 per serving\r\n• 11 meal varieties\r\n• 36 boxes'),(535,4,72,0,134,'Food storage, freeze dried foods, mountain house, survival foods'),(536,4,95,0,134,''),(537,4,61,0,135,'

\"\"

'),(538,4,62,0,135,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 8 months supply\r\n• 3 meals per day\r\n• 3208 servings\r\n• $1.90 per serving\r\n• 11 meal varieties\r\n• 48 boxes'),(539,4,72,0,135,'Food storage, freeze dried foods, mountain house, survival foods'),(540,4,95,0,135,''),(541,4,61,0,136,'

\"\"

'),(542,4,62,0,136,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults or 2 Adults and 3 Children\r\n• 12 months supply\r\n• 3 meals per day\r\n• 4812 servings\r\n• $1.87 per serving\r\n• 11 meal varieties\r\n• 72 boxes'),(543,4,72,0,136,'Food storage, freeze dried foods, mountain house, survival foods'),(544,4,95,0,136,''),(545,4,61,0,137,'

\"1\"Veggie\"Meat\"\"

\r\n\"\"'),(558,4,62,0,140,'• High caloric value- ideal for emergencies\r\n• 480 servings\r\n• 6 cans'),(559,4,72,0,140,'Drink Pack'),(560,4,95,0,140,''),(561,4,61,0,141,'

\"Fruit

'),(562,4,62,0,141,'Fruit / Veggie Pack\r\n300 Servings'),(563,4,72,0,141,'freeze dried, freeze dried foods, freeze dried food, freeze dried fruit, freeze dried vegetables, freeze dried fruits, mountain house, food storage'),(564,4,95,0,141,''),(565,4,61,0,142,'

\"DessertFreeze dried black olives.

\r\n


Rehydrating Instructions: Rehydrate in cool water for 1-2 minutes, hot water instantly or enjoy without rehydrating as a crunchy, tasty snack. Use 4 parts olives to 1 part water.

\r\n


* 1oz of freeze dried olives is approximately equivalent to 5oz (1/3 lbs) of fresh olives.

'),(606,4,62,0,152,'• Freeze dried black olives
• Net wt. 2 lbs. 4 oz
• #10 can

'),(607,4,72,0,152,''),(608,4,95,0,152,''),(609,4,61,0,153,'6 cans of Freeze-Dried Green Onions.'),(610,4,62,0,153,'6 cans of freeze dried green onions.'),(611,4,72,0,153,''),(612,4,95,0,153,''),(613,4,61,0,154,'6 cans of freeze dried white onions'),(614,4,62,0,154,'6 cans of freeze dried white onions.'),(615,4,72,0,154,''),(616,4,95,0,154,''),(617,4,61,0,155,'6 cans of freeze dried jalapenos.'),(618,4,62,0,155,'6 cans of freeze dried jalapenos.'),(619,4,72,0,155,''),(620,4,95,0,155,''),(621,4,61,0,156,'Potato Dices: These lightweight potato dices are handy to pack around in the great outdoors. You can also add them to any soup to make a hearty meal for the whole family. '),(622,4,62,0,156,'• Net wt. 2 lbs. 4 oz\r\n• 53 servings per can\r\n• #10 can\r\n• Gluten-Free \r\n'),(623,4,72,0,156,'Dehydated Potatoes #10 can food storage '),(624,4,95,0,156,''),(625,4,61,0,157,'6 cans of freeze dried sweet potatoes.'),(626,4,62,0,157,'6 cans of freeze dried sweet potatoes.'),(627,4,72,0,157,''),(628,4,95,0,157,''),(629,4,61,0,158,'6 cans of freeze dried green peppers.'),(630,4,62,0,158,'6 cans of freeze dried green peppers.'),(631,4,72,0,158,''),(632,4,95,0,158,''),(633,4,61,0,159,'6 cans of freeze dried red peppers.'),(634,4,62,0,159,'6 cans of freeze dried red peppers.'),(635,4,72,0,159,'food storage, freeze dried foods, freeze dry food, mountain house, freeze dried vegetables'),(636,4,95,0,159,''),(637,4,61,0,160,'awesome wholesome red peppers, simply freeze dried'),(638,4,62,0,160,'red peppers for salads and meals'),(639,4,72,0,160,'food storage'),(640,4,95,0,160,''),(641,4,61,0,161,'This stove is a camp-site favorite amongst the cowboys and rodeo Queens. It\'s super light weight and comes with a durable case to tote around on your 4-wheeler without damaging your precious outdoor kitchen.\r\n\r\nThis stove lights with butane canisters which can be purchased at any outdoor retail store.\r\n\r\nTurn the ignitor-knob till it clicks and viola you got flame!'),(642,4,62,0,161,'This stove is a camp-site favorite amongst the cowboys and rodeo Queens. It\'s super light weight and comes with a durable case to tote around on your 4-wheeler without damaging your precious outdoor kitchen'),(643,4,72,0,161,''),(644,4,95,0,161,''),(645,4,61,0,162,'

\"\"

\r\n\"\"\"\"'),(646,4,62,0,162,'ASK about our 48hr SPECIAL: 800.573.3944\r\n

\r\n• 4 Adults\r\n• 2 months supply\r\n• 3 meals per day\r\n• 723 servings\r\n• $2.21 per serving\r\n• 22 meal varieties\r\n• 12 boxes\r\n

'),(647,4,72,0,162,'freeze, dried, food, storage, water, supply, family, emergency essentials, emergency preparedness, real milk, fruit, vegetables, desserts, daily, bread, freeze dried food deals, long term food supply'),(648,4,95,0,162,''),(651,4,61,0,163,'

\"\"

\r\n\"\"\"\"'),(652,4,62,0,163,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 1 month supply\r\n• 3 meals per day\r\n• 372 servings\r\n• $2.28 per serving\r\n• 18 meal varieties\r\n• 6 boxes'),(653,4,72,0,163,'freeze dried food supply, food storage, food storage companies, emergency essentials, self reliance, '),(654,4,95,0,163,''),(655,4,61,0,164,'

\"\"

\r\n\"\"\"\"'),(656,4,62,0,164,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 3 months supply\r\n• 3 meals per day\r\n• 1085 servings\r\n• $2.17 per serving\r\n• 22 meal varieties\r\n• 18 boxes'),(657,4,72,0,164,'freeze dried food supply, food storage, food storage companies, emergency essentials, self reliance, '),(658,4,95,0,164,''),(659,4,61,0,165,'

\"\"

\r\n\"\"\"\"'),(660,4,62,0,165,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 4 months supply\r\n• 3 meals per day\r\n• 1446 servings\r\n• $2.11 per serving\r\n• 22 meal varieties\r\n• 24 boxes'),(661,4,72,0,165,'freeze dried food supply, food storage, food storage companies, emergency essentials, self reliance, \r\n'),(662,4,95,0,165,''),(663,4,61,0,166,'

\"\"

\r\n\"\"\"\"'),(664,4,62,0,166,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 6 months supply\r\n• 3 meals per day\r\n• 2161 servings\r\n• $2.08 per serving\r\n• 22 meal varieties\r\n• 36 boxes'),(665,4,72,0,166,'freeze dried food supply, food storage, food storage companies, emergency essentials, self reliance, \r\n'),(666,4,95,0,166,''),(667,4,61,0,167,'

\"\"

\r\n\"\"\"\"'),(668,4,62,0,167,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 8 months supply\r\n• 3 meals per day\r\n• 2884 servings\r\n• $2.08 per serving\r\n• 22 meal varieties\r\n• 48 boxes'),(669,4,72,0,167,'freeze dried food supply, food storage, food storage companies, self reliance,'),(670,4,95,0,167,''),(671,4,61,0,168,'\"\"\r\n\"\"\"\"'),(672,4,62,0,168,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4 Adults\r\n• 12 months supply\r\n• 3 meals per day\r\n• 4322 servings\r\n• $2.08 per serving\r\n• 22 meal varieties\r\n• 72 boxes'),(673,4,72,0,168,'freeze dried food supply, food storage, food storage companies, emergency essentials, self reliance, \r\n'),(674,4,95,0,168,''),(752,4,61,0,169,'

This family supply gives your family the nutritional values and the calories that you will need to stay healthy, and active. 2,000 calories per day is created from the most experienced and trusted freeze dried meals, freeze dried fruits, freeze dried desserts, and drinks. The meals are products are picked and plucked directly from farms and sent immediately to our freeze drying facilities. The recipes are from the chefs at Mountain House, Backpacker\'s Pantry, and Alpine Aire. All products are in a #10 can, and have a shelf-life of 25 years. Shipped right to your doorstep

\r\n\"\"'),(753,4,62,0,169,'ASK about our 48hr SPECIAL: 800.573.3944\r\n2,000 Calories p/day\r\nFreeze Dried \r\nMountain House/Backpacker\'s Pantry/ Alpine Aire\r\n25-yr Shelf Life\r\n'),(754,4,72,0,169,'This family supply gives your family the nutritional values and the calories that you will need to stay healthy, and active. 2,000 calories per day is created from the most experienced and trusted freeze dried meals, freeze dried fruits, freeze dried desserts, and drinks. The meals are products are picked and plucked directly from farms and sent immediately to our freeze drying facilities. The recipes are from the chefs at Mountain House, Backpacker\'s Pantry, and Alpine Aire. All products are in a #10 can, and have a shelf-life of 25 years. Shipped right to your doorstep'),(755,4,95,0,169,''),(756,4,61,0,170,'

This family supply gives your family the nutritional values and the calories that you will need to stay healthy, and active. 2,000 calories per day is created from the most experienced and trusted freeze dried meals, freeze dried fruits, freeze dried desserts, and drinks. The meals are products are picked and plucked directly from farms and sent immediately to our freeze drying facilities. The recipes are from the chefs at Mountain House, Backpacker\'s Pantry, and Alpine Aire. All products are in a #10 can, and have a shelf-life of 25 years. Shipped right to your doorstep!

\r\n\"\"'),(757,4,62,0,170,'ASK about our 48hr SPECIAL: 800.573.3944\r\n2,000 Calories p/day\r\nFreeze Dried \r\nMountain House/Backpacker\'s Pantry/ Alpine Aire\r\n25-yr Shelf Life\r\n'),(758,4,72,0,170,'This family supply gives your family the nutritional values and the calories that you will need to stay healthy, and active. 2,000 calories per day is created from the most experienced and trusted freeze dried meals, freeze dried fruits, freeze dried desserts, and drinks. The meals are products are picked and plucked directly from farms and sent immediately to our freeze drying facilities. The recipes are from the chefs at Mountain House, Backpacker\'s Pantry, and Alpine Aire. All products are in a #10 can, and have a shelf-life of 25 years. Shipped right to your doorstep'),(759,4,95,0,170,''),(761,4,61,0,171,'

This family supply gives your family the nutritional values and the calories that you will need to stay healthy, and active. 2,000 calories per day is created from the most experienced and trusted freeze dried meals, freeze dried fruits, freeze dried desserts, and drinks. The meals are products are picked and plucked directly from farms and sent immediately to our freeze drying facilities. The recipes are from the chefs at Mountain House, Backpacker\'s Pantry, and Alpine Aire. All products are in a #10 can, and have a shelf-life of 25 years. Shipped right to your doorstep

\r\n\"\"'),(762,4,62,0,171,'ASK about our 48hr SPECIAL: 800.573.3944\r\n2,000 Calories p/day\r\nFreeze Dried \r\nMountain House/Backpacker\'s Pantry/ Alpine Aire\r\n25-yr Shelf Life\r\n'),(763,4,72,0,171,'This family supply gives your family the nutritional values and the calories that you will need to stay healthy, and active. 2,000 calories per day is created from the most experienced and trusted freeze dried meals, freeze dried fruits, freeze dried desserts, and drinks. The meals are products are picked and plucked directly from farms and sent immediately to our freeze drying facilities. The recipes are from the chefs at Mountain House, Backpacker\'s Pantry, and Alpine Aire. All products are in a #10 can, and have a shelf-life of 25 years. Shipped right to your doorstep'),(764,4,95,0,171,''),(826,4,61,0,172,'Now you don\'t have to worry about where you\'re going to store your water. With Tomorrow\'s Harvest 5 gallon water boxes, you can store your water on the shelf, under the bed, in a closet; right along with the rest of your food storage.'),(827,4,62,0,172,'Ask about our 48 hour special! Call 800~573~3944\r\n• 5 gallon mylar bag in box\r\n• Easily stored anywhere\r\n• Pour spout included \r\n'),(828,4,72,0,172,'water, box, just add water, food storage accessories'),(829,4,95,0,172,''),(839,4,61,0,173,'

\"\"

'),(840,4,62,0,173,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 1200 servings\r\n• 24 cans\r\n• 4 boxes\r\n'),(841,4,72,0,173,'fruit, vegetables, strawberries, bananas, cinnamon apples, peaches, pineapple, berries, carrots, potatoes, green beans, corn, peas, broccoli, freeze dried food storage'),(842,4,95,0,173,''),(843,4,61,0,174,'\"\"'),(844,4,62,0,174,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 2400 servings\r\n• 48 cans\r\n• 8 boxes\r\n'),(845,4,72,0,174,''),(846,4,95,0,174,''),(847,4,61,0,175,'\"\"'),(848,4,62,0,175,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 3600 servings\r\n• 72 cans\r\n• 12 boxes\r\n'),(849,4,72,0,175,''),(850,4,95,0,175,''),(851,4,61,0,176,'\"\"'),(852,4,62,0,176,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 4800 servings\r\n• 96 cans\r\n• 16 boxes\r\n'),(853,4,72,0,176,''),(854,4,95,0,176,''),(855,4,61,0,177,'\"\"'),(856,4,62,0,177,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 7200 servings\r\n• 144 cans\r\n• 24 boxes\r\n'),(857,4,72,0,177,''),(858,4,95,0,177,''),(859,4,61,0,178,'\"\"'),(860,4,62,0,178,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 9600 servings\r\n• 192 cans\r\n• 32 boxes\r\n'),(861,4,72,0,178,''),(862,4,95,0,178,''),(891,4,61,0,181,'\"\"

We highly recommend that you add this to your pantry of freeze dried food storage! Traditional food storage is perfect for being able to create your meals, and extend your freeze dried meals calories & nutrition! Add this supply to your freeze dried family supply and receive a discount! This year supply of food storage provides the versatility of cooking your own meals by including baking and cooking essentials. It also includes dehydrated and freeze dried foods under the following categories: fruits, vegetables, milk, garden seeds, and more!

'),(892,4,62,0,181,'

Ask about our Add-on discount 800.573.3944
Wheat
Beans
Rice
Fruits & Vegetables

'),(893,4,72,0,181,'This year supply of food storage provides the versatility of cooking your own meals by including baking and cooking essentials. It also includes dehydrated and freeze dried foods under the following categories: fruits, vegetables, milk, garden seeds, and more!'),(894,4,95,0,181,''),(904,4,61,0,182,'\"\"'),(905,4,62,0,182,'ASK about our 48hr SPECIAL: 800.573.3944\r\n• 14,400 servings\r\n• 288 cans\r\n• 48 boxes\r\n'),(906,4,72,0,182,''),(907,4,95,0,182,''),(911,4,126,0,122,'\"\"'),(912,4,126,0,123,'\"\"'),(913,4,126,0,174,'\"\"'),(914,4,126,0,124,'\"\"'),(915,4,126,0,175,'\"\"'),(916,4,126,0,125,'\"\"'),(917,4,126,0,176,'\"\"'),(918,4,126,0,126,'\"\"'),(919,4,126,0,177,'\"\"'),(920,4,126,0,127,'\"\"'),(921,4,126,0,178,'\"\"'),(922,4,126,0,128,'\"\"'),(923,4,126,0,182,'\"\"'),(931,4,126,0,162,'\"\"\"\"'),(933,4,126,0,95,'

\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"

'),(934,4,126,0,163,'

\"\"\"\"

'),(938,4,126,0,164,'\"\"\"\"'),(940,4,126,0,165,'\"\"\"\"'),(942,4,126,0,166,'\"\"\"\"'),(944,4,126,0,167,'\"\"\"\"\r\n\r\n###'),(946,4,126,0,168,'\"\"\"\"\r\n\r\n##'),(948,4,126,0,7,'\"\"'),(949,4,126,0,71,'\"Baked'),(954,4,126,0,4,'\"\"'),(958,4,126,0,172,'

!00 % water

'),(961,4,126,0,5,'\"\"'),(964,4,61,0,183,'\r\n
PRODUCT CHARACTERISTICS > BENEFITS
\r\n\r\n
\r\n

\"Katadyn

\r\n'),(965,4,62,0,183,'

The Katadyn Hiker PRO comes with a removable filter protector to extend cartridge life in challenging conditions. Thanks to quick connect fittings the installation and removal of input and output hoses is easy! It also connects directly to hydration packs with 1/4” drink tubes (ie Camelbak). Includes: Prefilter, bottle adapter and carry bag.

\r\n

 

\r\n

Removes bacteria, protozoa, cysts, algae, spores, sediments. Reduces bad tastes and odors.

'),(966,4,126,0,183,'This will allow you to hydrate your body, but it is wielded from awesomeness, but we do not recommend eating awesomeness... because it won\'t nourish your body.'),(967,4,72,0,183,'hiker purifier, katadyn, water filter, water purifier, backpacking purifying, survival water supply, survival water purifier, survival water filter'),(968,4,95,0,183,''),(969,4,61,0,184,'

Preparation Instructions -
\r\nPreparing 1 Cup -  
\r\n1- Remove oxygen absorber from contents and discard
2- Thoroughly mix contents
\r\n3- Add 1 Cup (240mL) of cold or hot water to 1 Cup of dry ingredients
\r\n4- Stir and serve

\r\n

Preparing the Entire Can -
\r\n1- Remove oxygen absorber from contents and discard
\r\n2- Thoroughly mix contents
\r\n3- Add 11 Cup (2.6L) of cold or hot water to dry ingredients
\r\n4- Stir and serve

\r\n

Please note: Rehydration time doubles every 5,000 feet of elevation gain. Our directions are set for 5,000 feet

'),(970,4,62,0,184,'Use as a quick, just add water meal for the family\r\n• Net wt. 2 lbs. 12 oz.\r\n• 32 servings per can'),(971,4,126,0,184,'\"\"'),(972,4,72,0,184,''),(973,4,95,0,184,''),(980,4,126,0,6,'\"\"'),(987,4,61,0,185,'
\"Katadyn \"Katadyn
\r\n\r\n

PRODUCT BENEFITS

\r\n
\r\n\r\n
\r\n'),(988,4,62,0,185,'

The Katadyn Combi combines a silver impregnated ceramic element and a refillable, activated carbon cartridge. It is effective against bacteria and protozoa and also reduces chemicals and bad taste. With the optional “PLUS” the Combi can be connected to a water faucet for multifunctional use in campers, cottages or boats. Includes: Prefilter, bottle adaptor and carry bag.

\r\n

All-round filter with many useful features.

\r\n'),(989,4,126,0,185,'Do Not Eat paint chips... or this combi'),(990,4,72,0,185,'katadyn water purifier combi clean water pure water '),(991,4,95,0,185,''),(993,4,61,0,186,'\r\n

PRODUCT BENEFITS

\r\n
\r\n\r\n
\r\n

 

\r\n'),(994,4,62,0,186,'

The classic. This robust water filter made of heavy duty materials is ideal for long lasting continuous use even under extreme circumstances. The silver impregnated ceramic element is effective against bacteria and protozoa. The Katadyn Pocket is the only water filter with a 20 year warranty. Includes: Prefilter, bottle clip and carry bag.

\r\n

Eliminates bacteria, protozoa, cysts, algae, spores, sediments and viruses in combination with particles greater than 0.2 microns.

\r\n

Up to 13,000 gallons depending on water quality

'),(995,4,126,0,186,'definitely not recommended'),(996,4,72,0,186,'katadyn micro water filter pocket purifier purify water clean clear water'),(997,4,95,0,186,''),(1000,4,61,0,187,'

SPECIFICATIONS:

\r\n\r\n

 

\r\n

\"expedition\"katadyn

\r\n'),(1001,4,62,0,187,'

The Katadyn Expedition is ideal for large groups and relief organizations. It is indestructible and easy to use. The best choice for expeditions, River Raftings, Camps, etc. Includes: Prefilter and carry bag.

\r\n

Eliminates bacteria, protozoa, cysts, algae, spores, sediments and viruses in combination with particles greater than 0.2 microns.

\r\n

Purifies 26,000+ gallons

\r\n

Material: Nickel-plated brass, stainless steel, ceramic    

'),(1002,4,126,0,187,'Nutrition Information'),(1003,4,72,0,187,'group water purification system, katadyn water purifier expedition'),(1004,4,95,0,187,''),(1011,4,61,0,189,'

This bucket contains 42 great-tasting, nutritious meals that only need water and a few minutes to prepare. With a 10-year shelf life, it’s the perfect solution for 72-Hour kits, camping, or just feeding 2 people for a week when you don’t feel like cooking.

\r\n

\"\"

'),(1012,4,62,0,189,'• Long-term food storage\r\n• 42 meals total\r\n• Just add hot water\r\n• One week supply for 2 people\r\n• Great for emergencies\r\n• 10-year shelf life\r\n• Vitamin & Mineral Fortified\r\n• 2000 calories a day\r\n\r\nApprox. Dimensions: 14\"L X 12\"W X 14\"H'),(1013,4,126,0,189,'

\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"|

'),(1014,4,72,0,189,''),(1015,4,95,0,189,''),(1016,4,126,0,30,'\"\"'),(1019,4,61,0,190,'

Preparation Instructions

\r\n

Preparing 1 Cup dry mix

\r\n

1. Remove oxygen absorber from contents and discard
\r\n2. Thoroughly mix contents
\r\n3. Add 1 Cup (240mL) of boiling water to 1 cup of dry ingredients
\r\n4. Stir well, fully submerging ingredients
\r\n5. Cover and let sit for 13 minutes
\r\n6. Stir and serve

\r\n

Preparing the entire can

\r\n

1. Remove oxygen absorber from contents and discard
\r\n2. Thoroughly mix contents
\r\n3. Add 11 Cups (2.6L) of boiling water to dry ingredients\r\n4. Stir well, fully submerging ingredients
\r\n5. Cover and let sit for 13 minutes
\r\n6. Stir and serve

'),(1020,4,62,0,190,'Vegetables in a creamy herb and parmesan cheese sauce over pasta\r\n• Vegetarian meal\r\n• Net wt. 2 lbs. 1 oz.\r\n• 15 servings per can\r\n• 6 #10 cans per case'),(1021,4,126,0,190,'\"\"'),(1022,4,72,0,190,''),(1023,4,95,0,190,''),(1024,4,61,0,191,'

Preparation Instructions

\r\n

Preparing 1 Cup dry mix

\r\n

1. Remove oxygen absorber from contents and discard
\r\n2. Thoroughly mix contents
\r\n3. Add 17 1/2 Cup (4.1L) of boiling water to 1 cup of dry ingredients
\r\n4. Stir well, fully submerging ingredients
\r\n5. Cover and let sit for 13 minutes
\r\n6. Stir and serve

\r\n

Preparing the entire can

\r\n

1. Remove oxygen absorber from contents and discard
\r\n2. Thoroughly mix contents
\r\n3. Add 18 Cups (4.2L) of boiling water to dry ingredients\r\n4. Stir well, fully submerging ingredients
\r\n5. Cover and let sit for 13 minutes
\r\n6. Stir and serve

'),(1025,4,62,0,191,'Italian style rice dish with chicken, vegetables and parmesan cheese\r\n• Real chicken\r\n• Net wt. 3 lbs. 1.8 oz.\r\n• 21 servings per can\r\n• 6 #10 cans per case'),(1026,4,126,0,191,'\"\"'),(1027,4,72,0,191,''),(1028,4,95,0,191,''),(1029,4,61,0,192,'

Preparation Instructions

\r\n

Preparing 1 Cup dry mix

\r\n

1. Remove oxygen absorber from contents and discard
\r\n2. Thoroughly mix contents
\r\n3. Add 1 1/4 Cup (300mL) of boiling water to 1 cup of dry ingredients
\r\n4. Stir well, fully submerging ingredients
\r\n5. Cover and let sit for 13 minutes
\r\n6. Stir and serve

\r\n

Preparing the entire can

\r\n

1. Remove oxygen absorber from contents and discard
\r\n2. Thoroughly mix contents
\r\n3. Add 13 3/4 Cups (3.2L) of boiling water to dry ingredients\r\n4. Stir well, fully submerging ingredients
\r\n5. Cover and let sit for 13 minutes
\r\n6. Stir and serve

'),(1030,4,62,0,192,'A flavorful mix of beef, broccoli, carrots, and rice in a garlic soy sauce\r\n• Net wt. 1 lb. 12.5 oz.\r\n• 14 servings per can\r\n• #10 cans per case'),(1031,4,126,0,192,'\"\"'),(1032,4,72,0,192,''),(1033,4,95,0,192,''),(1034,4,126,0,152,'\"\"'),(1035,4,126,0,26,'\"\"'),(1037,4,126,0,89,''),(1041,4,126,0,82,'\"\"'),(1056,4,126,0,94,''),(1057,4,61,0,193,'Be prepared for any emergency. Each 72 Hour Emergency Entrée Kit includes 4 servings per day (total of 12 servings) of 20 ounce lunch and dinner entrée’s shown in the following schedule:'),(1058,4,62,0,193,'Be prepared for any emergency. Each 72 Hour Emergency Entrée Kit includes 4 servings per day (total of 12 servings) of 20 ounce lunch and dinner entrée’s shown in the following schedule:'),(1059,4,126,0,193,'

\"wise

\r\n

\"wise

'),(1060,4,72,0,193,'72 hour kit'),(1061,4,95,0,193,''),(1068,4,126,0,68,'

\"\"

'),(1072,4,61,0,194,'

Preparation Instructions

\r\n


Preparing 1 Cup dry mix

\r\n


1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 1 1/4 Cup (300mL) of boiling water to 1 cup of dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

\r\n


Preparing the entire can:

\r\n


1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 13 3/4 Cups (3.2L) of boiling water to dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

'),(1073,4,62,0,194,'
Beef, Vegetables, & Pasta flavored with a zesty tomato sauce.
\r\n'),(1074,4,126,0,194,'

\"\"

'),(1075,4,72,0,194,'Beef, Vegetables, Pasta, zesty, tomato, sauce'),(1076,4,95,0,194,''),(1083,4,61,0,195,'

NO COOKING REQUIRED DIRECTIONS

\r\n

Just add 8oz of water per serving

'),(1084,4,62,0,195,'A delicious breakfast dish made with cinnamon granola, dates, apples, almonds, and honey.\r\n• Net wt. 3lb 2 oz\r\n• 20 servings per can'),(1085,4,72,0,195,'Apple Almond Crisp cereal food storage alpine aire'),(1086,4,95,0,195,''),(1087,4,126,0,195,'

\"\"

'),(1093,4,61,0,196,'

 

\r\n

Preparation Instructions

\r\n

Preparing 1 Cup dry mix

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 1 1/4 Cup (300mL) of boiling water to 1 cup of dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

\r\n

 Preparing the entire can

\r\n

 

\r\n

1. Remove oxygen absorber from contents and discard

\r\n

2. Thoroughly mix contents

\r\n

3. Add 13 3/4 Cups (3.2L) of boiling water to dry ingredients

\r\n

4. Stir well, fully submerging ingredients

\r\n

5. Cover and let sit for 13 minutes

\r\n

6. Stir and serve

'),(1094,4,62,0,196,'