0byt3m1n1
Path:
/
data
/
18
/
3
/
22
/
42
/
3185694
/
meta
/
3558209
/
mysql.backup
/
[
Home
]
File: aa1_0332c8e_3.mysqlv110.bak.sql
-- MySQL dump 10.11 -- -- Host: mysqlv110 Database: aa1_0332c8e_3 -- ------------------------------------------------------ -- Server version 5.0.91 /*!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 `action_recorder` -- DROP TABLE IF EXISTS `action_recorder`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `action_recorder` ( `id` int(11) NOT NULL auto_increment, `module` varchar(255) NOT NULL, `user_id` int(11) default NULL, `user_name` varchar(255) default NULL, `identifier` varchar(255) NOT NULL, `success` char(1) default NULL, `date_added` datetime NOT NULL, PRIMARY KEY (`id`), KEY `idx_action_recorder_module` (`module`), KEY `idx_action_recorder_user_id` (`user_id`), KEY `idx_action_recorder_identifier` (`identifier`), KEY `idx_action_recorder_date_added` (`date_added`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `action_recorder` -- LOCK TABLES `action_recorder` WRITE; /*!40000 ALTER TABLE `action_recorder` DISABLE KEYS */; INSERT INTO `action_recorder` VALUES (1,'ar_admin_login',1,'','','1','2013-10-23 16:04:35'),(2,'ar_admin_login',1,'','','1','2013-10-23 16:26:38'); /*!40000 ALTER TABLE `action_recorder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `address_book` -- DROP TABLE IF EXISTS `address_book`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `address_book` ( `address_book_id` int(11) NOT NULL auto_increment, `customers_id` int(11) NOT NULL, `entry_gender` char(1) default NULL, `entry_company` varchar(255) default NULL, `entry_firstname` varchar(255) NOT NULL, `entry_lastname` varchar(255) NOT NULL, `entry_street_address` varchar(255) NOT NULL, `entry_suburb` varchar(255) default NULL, `entry_postcode` varchar(255) NOT NULL, `entry_city` varchar(255) NOT NULL, `entry_state` varchar(255) default NULL, `entry_country_id` int(11) NOT NULL default '0', `entry_zone_id` int(11) NOT NULL default '0', PRIMARY KEY (`address_book_id`), KEY `idx_address_book_customers_id` (`customers_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `address_book` -- LOCK TABLES `address_book` WRITE; /*!40000 ALTER TABLE `address_book` DISABLE KEYS */; /*!40000 ALTER TABLE `address_book` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `address_format` -- DROP TABLE IF EXISTS `address_format`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `address_format` ( `address_format_id` int(11) NOT NULL auto_increment, `address_format` varchar(128) NOT NULL, `address_summary` varchar(48) NOT NULL, PRIMARY KEY (`address_format_id`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `address_format` -- LOCK TABLES `address_format` WRITE; /*!40000 ALTER TABLE `address_format` DISABLE KEYS */; INSERT INTO `address_format` VALUES (1,'$firstname $lastname$cr$streets$cr$city, $postcode$cr$statecomma$country','$city / $country'),(2,'$firstname $lastname$cr$streets$cr$city, $state $postcode$cr$country','$city, $state / $country'),(3,'$firstname $lastname$cr$streets$cr$city$cr$postcode - $statecomma$country','$state / $country'),(4,'$firstname $lastname$cr$streets$cr$city ($postcode)$cr$country','$postcode / $country'),(5,'$firstname $lastname$cr$streets$cr$postcode $city$cr$country','$city / $country'); /*!40000 ALTER TABLE `address_format` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `administrators` -- DROP TABLE IF EXISTS `administrators`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `administrators` ( `id` int(11) NOT NULL auto_increment, `user_name` varchar(255) character set utf8 collate utf8_bin NOT NULL, `user_password` varchar(60) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `administrators` -- LOCK TABLES `administrators` WRITE; /*!40000 ALTER TABLE `administrators` DISABLE KEYS */; /*!40000 ALTER TABLE `administrators` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `banners` -- DROP TABLE IF EXISTS `banners`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `banners` ( `banners_id` int(11) NOT NULL auto_increment, `banners_title` varchar(64) NOT NULL, `banners_url` varchar(255) NOT NULL, `banners_image` varchar(64) NOT NULL, `banners_group` varchar(10) NOT NULL, `banners_html_text` text, `expires_impressions` int(7) default '0', `expires_date` datetime default NULL, `date_scheduled` datetime default NULL, `date_added` datetime NOT NULL, `date_status_change` datetime default NULL, `status` int(1) NOT NULL default '1', PRIMARY KEY (`banners_id`), KEY `idx_banners_group` (`banners_group`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `banners` -- LOCK TABLES `banners` WRITE; /*!40000 ALTER TABLE `banners` DISABLE KEYS */; INSERT INTO `banners` VALUES (1,'osCommerce','http://www.oscommerce.com','banners/oscommerce.gif','468x50','',0,NULL,NULL,'2013-10-23 16:04:25',NULL,1); /*!40000 ALTER TABLE `banners` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `banners_history` -- DROP TABLE IF EXISTS `banners_history`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `banners_history` ( `banners_history_id` int(11) NOT NULL auto_increment, `banners_id` int(11) NOT NULL, `banners_shown` int(5) NOT NULL default '0', `banners_clicked` int(5) NOT NULL default '0', `banners_history_date` datetime NOT NULL, PRIMARY KEY (`banners_history_id`), KEY `idx_banners_history_banners_id` (`banners_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `banners_history` -- LOCK TABLES `banners_history` WRITE; /*!40000 ALTER TABLE `banners_history` DISABLE KEYS */; INSERT INTO `banners_history` VALUES (1,1,1,0,'2013-10-23 16:28:49'); /*!40000 ALTER TABLE `banners_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categories` -- DROP TABLE IF EXISTS `categories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `categories` ( `categories_id` int(11) NOT NULL auto_increment, `categories_image` varchar(64) default NULL, `parent_id` int(11) NOT NULL default '0', `sort_order` int(3) default NULL, `date_added` datetime default NULL, `last_modified` datetime default NULL, PRIMARY KEY (`categories_id`), KEY `idx_categories_parent_id` (`parent_id`) ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `categories` -- LOCK TABLES `categories` WRITE; /*!40000 ALTER TABLE `categories` DISABLE KEYS */; INSERT INTO `categories` VALUES (1,'category_hardware.gif',0,1,'2013-10-23 16:04:25',NULL),(2,'category_software.gif',0,2,'2013-10-23 16:04:25',NULL),(3,'category_dvd_movies.gif',0,3,'2013-10-23 16:04:25',NULL),(4,'subcategory_graphic_cards.gif',1,0,'2013-10-23 16:04:25',NULL),(5,'subcategory_printers.gif',1,0,'2013-10-23 16:04:25',NULL),(6,'subcategory_monitors.gif',1,0,'2013-10-23 16:04:25',NULL),(7,'subcategory_speakers.gif',1,0,'2013-10-23 16:04:25',NULL),(8,'subcategory_keyboards.gif',1,0,'2013-10-23 16:04:25',NULL),(9,'subcategory_mice.gif',1,0,'2013-10-23 16:04:25',NULL),(10,'subcategory_action.gif',3,0,'2013-10-23 16:04:25',NULL),(11,'subcategory_science_fiction.gif',3,0,'2013-10-23 16:04:25',NULL),(12,'subcategory_comedy.gif',3,0,'2013-10-23 16:04:25',NULL),(13,'subcategory_cartoons.gif',3,0,'2013-10-23 16:04:25',NULL),(14,'subcategory_thriller.gif',3,0,'2013-10-23 16:04:25',NULL),(15,'subcategory_drama.gif',3,0,'2013-10-23 16:04:25',NULL),(16,'subcategory_memory.gif',1,0,'2013-10-23 16:04:25',NULL),(17,'subcategory_cdrom_drives.gif',1,0,'2013-10-23 16:04:25',NULL),(18,'subcategory_simulation.gif',2,0,'2013-10-23 16:04:25',NULL),(19,'subcategory_action_games.gif',2,0,'2013-10-23 16:04:25',NULL),(20,'subcategory_strategy.gif',2,0,'2013-10-23 16:04:25',NULL),(21,'category_gadgets.png',0,4,'2013-10-23 16:04:25',NULL),(22,NULL,0,1,'2013-10-23 16:24:04',NULL); /*!40000 ALTER TABLE `categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categories_description` -- DROP TABLE IF EXISTS `categories_description`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `categories_description` ( `categories_id` int(11) NOT NULL default '0', `language_id` int(11) NOT NULL default '1', `categories_name` varchar(32) NOT NULL, `categories_description` text, `categories_htc_title_tag` text, `categories_htc_desc_tag` text, `categories_htc_keywords_tag` text, `categories_seo_url` text, PRIMARY KEY (`categories_id`,`language_id`), KEY `idx_categories_name` (`categories_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `categories_description` -- LOCK TABLES `categories_description` WRITE; /*!40000 ALTER TABLE `categories_description` DISABLE KEYS */; INSERT INTO `categories_description` VALUES (1,1,'Hardware','',NULL,NULL,NULL,NULL),(2,1,'Software','',NULL,NULL,NULL,NULL),(3,1,'DVD Movies','',NULL,NULL,NULL,NULL),(4,1,'Graphics Cards','',NULL,NULL,NULL,NULL),(5,1,'Printers','',NULL,NULL,NULL,NULL),(6,1,'Monitors','',NULL,NULL,NULL,NULL),(7,1,'Speakers','',NULL,NULL,NULL,NULL),(8,1,'Keyboards','',NULL,NULL,NULL,NULL),(9,1,'Mice','',NULL,NULL,NULL,NULL),(10,1,'Action','',NULL,NULL,NULL,NULL),(11,1,'Science Fiction','',NULL,NULL,NULL,NULL),(12,1,'Comedy','',NULL,NULL,NULL,NULL),(13,1,'Cartoons','',NULL,NULL,NULL,NULL),(14,1,'Thriller','',NULL,NULL,NULL,NULL),(15,1,'Drama','',NULL,NULL,NULL,NULL),(16,1,'Memory','',NULL,NULL,NULL,NULL),(17,1,'CDROM Drives','',NULL,NULL,NULL,NULL),(18,1,'Simulation','',NULL,NULL,NULL,NULL),(19,1,'Action','',NULL,NULL,NULL,NULL),(20,1,'Strategy','',NULL,NULL,NULL,NULL),(21,1,'Gadgets','',NULL,NULL,NULL,NULL),(22,1,'Musical Instruments','Musical Instruments old and new','Musical Instruments','Musical Instruments','Musical Instruments',NULL); /*!40000 ALTER TABLE `categories_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `configuration` -- DROP TABLE IF EXISTS `configuration`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `configuration` ( `configuration_id` int(11) NOT NULL auto_increment, `configuration_title` varchar(255) NOT NULL, `configuration_key` varchar(255) NOT NULL, `configuration_value` text NOT NULL, `configuration_description` varchar(255) NOT NULL, `configuration_group_id` int(11) NOT NULL, `sort_order` int(5) default NULL, `last_modified` datetime default NULL, `date_added` datetime NOT NULL, `use_function` varchar(255) default NULL, `set_function` varchar(255) default NULL, PRIMARY KEY (`configuration_id`) ) ENGINE=MyISAM AUTO_INCREMENT=339 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `configuration` -- LOCK TABLES `configuration` WRITE; /*!40000 ALTER TABLE `configuration` DISABLE KEYS */; INSERT INTO `configuration` VALUES (1,'Store Name','STORE_NAME','Earth Hertz Vault','The name of my store',1,1,'2013-10-23 16:17:44','2013-10-23 16:04:25',NULL,NULL),(2,'Store Owner','STORE_OWNER','Robert Xeno','The name of my store owner',1,2,'2013-10-23 16:08:16','2013-10-23 16:04:25',NULL,NULL),(3,'E-Mail Address','STORE_OWNER_EMAIL_ADDRESS','support@earthhertz.com','The e-mail address of my store owner',1,3,'2013-10-23 16:08:48','2013-10-23 16:04:25',NULL,NULL),(4,'E-Mail From','EMAIL_FROM','Earth Hertz Vault <support@earthhertz.com>','The e-mail address used in (sent) e-mails',1,4,'2013-10-23 16:17:27','2013-10-23 16:04:25',NULL,NULL),(5,'Country','STORE_COUNTRY','223','The country my store is located in <br /><br /><strong>Note: Please remember to update the store zone.</strong>',1,6,NULL,'2013-10-23 16:04:25','tep_get_country_name','tep_cfg_pull_down_country_list('),(6,'Zone','STORE_ZONE','56','The zone my store is located in',1,7,'2013-10-23 16:18:03','2013-10-23 16:04:25','tep_cfg_get_zone_name','tep_cfg_pull_down_zone_list('),(7,'Expected Sort Order','EXPECTED_PRODUCTS_SORT','desc','This is the sort order used in the expected products box.',1,8,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'asc\', \'desc\'), '),(8,'Expected Sort Field','EXPECTED_PRODUCTS_FIELD','date_expected','The column to sort by in the expected products box.',1,9,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'products_name\', \'date_expected\'), '),(9,'Switch To Default Language Currency','USE_DEFAULT_LANGUAGE_CURRENCY','false','Automatically switch to the language\'s currency when it is changed',1,10,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(10,'Send Extra Order Emails To','SEND_EXTRA_ORDER_EMAILS_TO','Eloa Xeno <exeno@earthhertz.com>','Send extra order emails to the following email addresses, in this format: Name 1 <email@address1>, Name 2 <email@address2>',1,11,'2013-10-23 16:18:47','2013-10-23 16:04:25',NULL,NULL),(11,'Use Search-Engine Safe URLs','SEARCH_ENGINE_FRIENDLY_URLS','false','Use search-engine safe urls for all site links',1,12,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(12,'Display Cart After Adding Product','DISPLAY_CART','true','Display the shopping cart after adding a product (or return back to their origin)',1,14,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(13,'Allow Guest To Tell A Friend','ALLOW_GUEST_TO_TELL_A_FRIEND','true','Allow guests to tell a friend about a product',1,15,'2013-10-23 16:19:05','2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(14,'Default Search Operator','ADVANCED_SEARCH_DEFAULT_OPERATOR','and','Default search operators',1,17,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'and\', \'or\'), '),(15,'Store Address and Phone','STORE_NAME_ADDRESS','Earth Hertz Vault\r\nNashville. TN\r\nUSA\r\n(615) 824-8649','This is the Store Name, Address and Phone used on printable documents and displayed online',1,18,'2013-10-23 16:19:44','2013-10-23 16:04:25',NULL,'tep_cfg_textarea('),(16,'Show Category Counts','SHOW_COUNTS','true','Count recursively how many products are in each category',1,19,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(17,'Tax Decimal Places','TAX_DECIMAL_PLACES','0','Pad the tax value this amount of decimal places',1,20,NULL,'2013-10-23 16:04:25',NULL,NULL),(18,'Display Prices with Tax','DISPLAY_PRICE_WITH_TAX','false','Display prices with tax included (true) or add the tax at the end (false)',1,21,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(19,'First Name','ENTRY_FIRST_NAME_MIN_LENGTH','2','Minimum length of first name',2,1,NULL,'2013-10-23 16:04:25',NULL,NULL),(20,'Last Name','ENTRY_LAST_NAME_MIN_LENGTH','2','Minimum length of last name',2,2,NULL,'2013-10-23 16:04:25',NULL,NULL),(21,'Date of Birth','ENTRY_DOB_MIN_LENGTH','10','Minimum length of date of birth',2,3,NULL,'2013-10-23 16:04:25',NULL,NULL),(22,'E-Mail Address','ENTRY_EMAIL_ADDRESS_MIN_LENGTH','6','Minimum length of e-mail address',2,4,NULL,'2013-10-23 16:04:25',NULL,NULL),(23,'Street Address','ENTRY_STREET_ADDRESS_MIN_LENGTH','5','Minimum length of street address',2,5,NULL,'2013-10-23 16:04:25',NULL,NULL),(24,'Company','ENTRY_COMPANY_MIN_LENGTH','2','Minimum length of company name',2,6,NULL,'2013-10-23 16:04:25',NULL,NULL),(25,'Post Code','ENTRY_POSTCODE_MIN_LENGTH','4','Minimum length of post code',2,7,NULL,'2013-10-23 16:04:25',NULL,NULL),(26,'City','ENTRY_CITY_MIN_LENGTH','3','Minimum length of city',2,8,NULL,'2013-10-23 16:04:25',NULL,NULL),(27,'State','ENTRY_STATE_MIN_LENGTH','2','Minimum length of state',2,9,NULL,'2013-10-23 16:04:25',NULL,NULL),(28,'Telephone Number','ENTRY_TELEPHONE_MIN_LENGTH','3','Minimum length of telephone number',2,10,NULL,'2013-10-23 16:04:25',NULL,NULL),(29,'Password','ENTRY_PASSWORD_MIN_LENGTH','5','Minimum length of password',2,11,NULL,'2013-10-23 16:04:25',NULL,NULL),(30,'Credit Card Owner Name','CC_OWNER_MIN_LENGTH','3','Minimum length of credit card owner name',2,12,NULL,'2013-10-23 16:04:25',NULL,NULL),(31,'Credit Card Number','CC_NUMBER_MIN_LENGTH','10','Minimum length of credit card number',2,13,NULL,'2013-10-23 16:04:25',NULL,NULL),(32,'Review Text','REVIEW_TEXT_MIN_LENGTH','50','Minimum length of review text',2,14,NULL,'2013-10-23 16:04:25',NULL,NULL),(33,'Best Sellers','MIN_DISPLAY_BESTSELLERS','1','Minimum number of best sellers to display',2,15,NULL,'2013-10-23 16:04:25',NULL,NULL),(34,'Also Purchased','MIN_DISPLAY_ALSO_PURCHASED','1','Minimum number of products to display in the \'This Customer Also Purchased\' box',2,16,NULL,'2013-10-23 16:04:25',NULL,NULL),(35,'Address Book Entries','MAX_ADDRESS_BOOK_ENTRIES','5','Maximum address book entries a customer is allowed to have',3,1,NULL,'2013-10-23 16:04:25',NULL,NULL),(36,'Search Results','MAX_DISPLAY_SEARCH_RESULTS','20','Amount of products to list',3,2,NULL,'2013-10-23 16:04:25',NULL,NULL),(37,'Page Links','MAX_DISPLAY_PAGE_LINKS','5','Number of \'number\' links use for page-sets',3,3,NULL,'2013-10-23 16:04:25',NULL,NULL),(38,'Special Products','MAX_DISPLAY_SPECIAL_PRODUCTS','9','Maximum number of products on special to display',3,4,NULL,'2013-10-23 16:04:25',NULL,NULL),(39,'New Products Module','MAX_DISPLAY_NEW_PRODUCTS','9','Maximum number of new products to display in a category',3,5,NULL,'2013-10-23 16:04:25',NULL,NULL),(40,'Products Expected','MAX_DISPLAY_UPCOMING_PRODUCTS','10','Maximum number of products expected to display',3,6,NULL,'2013-10-23 16:04:25',NULL,NULL),(41,'Manufacturers List','MAX_DISPLAY_MANUFACTURERS_IN_A_LIST','0','Used in manufacturers box; when the number of manufacturers exceeds this number, a drop-down list will be displayed instead of the default list',3,7,NULL,'2013-10-23 16:04:25',NULL,NULL),(42,'Manufacturers Select Size','MAX_MANUFACTURERS_LIST','1','Used in manufacturers box; when this value is \'1\' the classic drop-down list will be used for the manufacturers box. Otherwise, a list-box with the specified number of rows will be displayed.',3,7,NULL,'2013-10-23 16:04:25',NULL,NULL),(43,'Length of Manufacturers Name','MAX_DISPLAY_MANUFACTURER_NAME_LEN','15','Used in manufacturers box; maximum length of manufacturers name to display',3,8,NULL,'2013-10-23 16:04:25',NULL,NULL),(44,'New Reviews','MAX_DISPLAY_NEW_REVIEWS','6','Maximum number of new reviews to display',3,9,NULL,'2013-10-23 16:04:25',NULL,NULL),(45,'Selection of Random Reviews','MAX_RANDOM_SELECT_REVIEWS','10','How many records to select from to choose one random product review',3,10,NULL,'2013-10-23 16:04:25',NULL,NULL),(46,'Selection of Random New Products','MAX_RANDOM_SELECT_NEW','10','How many records to select from to choose one random new product to display',3,11,NULL,'2013-10-23 16:04:25',NULL,NULL),(47,'Selection of Products on Special','MAX_RANDOM_SELECT_SPECIALS','10','How many records to select from to choose one random product special to display',3,12,NULL,'2013-10-23 16:04:25',NULL,NULL),(48,'Categories To List Per Row','MAX_DISPLAY_CATEGORIES_PER_ROW','3','How many categories to list per row',3,13,NULL,'2013-10-23 16:04:25',NULL,NULL),(49,'New Products Listing','MAX_DISPLAY_PRODUCTS_NEW','10','Maximum number of new products to display in new products page',3,14,NULL,'2013-10-23 16:04:25',NULL,NULL),(50,'Best Sellers','MAX_DISPLAY_BESTSELLERS','10','Maximum number of best sellers to display',3,15,NULL,'2013-10-23 16:04:25',NULL,NULL),(51,'Also Purchased','MAX_DISPLAY_ALSO_PURCHASED','6','Maximum number of products to display in the \'This Customer Also Purchased\' box',3,16,NULL,'2013-10-23 16:04:25',NULL,NULL),(52,'Customer Order History Box','MAX_DISPLAY_PRODUCTS_IN_ORDER_HISTORY_BOX','6','Maximum number of products to display in the customer order history box',3,17,NULL,'2013-10-23 16:04:25',NULL,NULL),(53,'Order History','MAX_DISPLAY_ORDER_HISTORY','10','Maximum number of orders to display in the order history page',3,18,NULL,'2013-10-23 16:04:25',NULL,NULL),(54,'Product Quantities In Shopping Cart','MAX_QTY_IN_CART','99','Maximum number of product quantities that can be added to the shopping cart (0 for no limit)',3,19,NULL,'2013-10-23 16:04:25',NULL,NULL),(55,'Small Image Width','SMALL_IMAGE_WIDTH','100','The pixel width of small images',4,1,NULL,'2013-10-23 16:04:25',NULL,NULL),(56,'Small Image Height','SMALL_IMAGE_HEIGHT','80','The pixel height of small images',4,2,NULL,'2013-10-23 16:04:25',NULL,NULL),(57,'Heading Image Width','HEADING_IMAGE_WIDTH','57','The pixel width of heading images',4,3,NULL,'2013-10-23 16:04:25',NULL,NULL),(58,'Heading Image Height','HEADING_IMAGE_HEIGHT','40','The pixel height of heading images',4,4,NULL,'2013-10-23 16:04:25',NULL,NULL),(59,'Subcategory Image Width','SUBCATEGORY_IMAGE_WIDTH','100','The pixel width of subcategory images',4,5,NULL,'2013-10-23 16:04:25',NULL,NULL),(60,'Subcategory Image Height','SUBCATEGORY_IMAGE_HEIGHT','57','The pixel height of subcategory images',4,6,NULL,'2013-10-23 16:04:25',NULL,NULL),(61,'Calculate Image Size','CONFIG_CALCULATE_IMAGE_SIZE','true','Calculate the size of images?',4,7,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(62,'Image Required','IMAGE_REQUIRED','true','Enable to display broken images. Good for development.',4,8,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(63,'Gender','ACCOUNT_GENDER','true','Display gender in the customers account',5,1,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(64,'Date of Birth','ACCOUNT_DOB','true','Display date of birth in the customers account',5,2,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(65,'Company','ACCOUNT_COMPANY','true','Display company in the customers account',5,3,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(66,'Suburb','ACCOUNT_SUBURB','true','Display suburb in the customers account',5,4,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(67,'State','ACCOUNT_STATE','true','Display state in the customers account - disabling this may affect shipping and payment modules',5,5,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(68,'Installed Modules','MODULE_PAYMENT_INSTALLED','cod.php;paypal_express.php;paypal_standard.php','List of payment module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: cod.php;paypal_express.php)',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(69,'Installed Modules','MODULE_ORDER_TOTAL_INSTALLED','ot_subtotal.php;ot_tax.php;ot_shipping.php;ot_total.php','List of order_total module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ot_subtotal.php;ot_tax.php;ot_shipping.php;ot_total.php)',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(70,'Installed Modules','MODULE_SHIPPING_INSTALLED','flat.php;table.php','List of shipping module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ups.php;flat.php;item.php)',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(71,'Installed Modules','MODULE_ACTION_RECORDER_INSTALLED','ar_admin_login.php;ar_contact_us.php;ar_tell_a_friend.php','List of action recorder module filenames separated by a semi-colon. This is automatically updated. No need to edit.',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(72,'Installed Modules','MODULE_SOCIAL_BOOKMARKS_INSTALLED','sb_email.php;sb_facebook.php;sb_twitter.php;sb_google_buzz.php;sb_digg.php','List of social bookmark module filenames separated by a semi-colon. This is automatically updated. No need to edit.',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(73,'Enable Cash On Delivery Module','MODULE_PAYMENT_COD_STATUS','True','Do you want to accept Cash On Delevery payments?',6,1,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(74,'Payment Zone','MODULE_PAYMENT_COD_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,2,NULL,'2013-10-23 16:04:25','tep_get_zone_class_title','tep_cfg_pull_down_zone_classes('),(75,'Sort order of display.','MODULE_PAYMENT_COD_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(76,'Set Order Status','MODULE_PAYMENT_COD_ORDER_STATUS_ID','0','Set the status of orders made with this payment module to this value',6,0,NULL,'2013-10-23 16:04:25','tep_get_order_status_name','tep_cfg_pull_down_order_statuses('),(77,'Enable Flat Shipping','MODULE_SHIPPING_FLAT_STATUS','True','Do you want to offer flat rate shipping?',6,0,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(78,'Shipping Cost','MODULE_SHIPPING_FLAT_COST','5.00','The shipping cost for all orders using this shipping method.',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(79,'Tax Class','MODULE_SHIPPING_FLAT_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,0,NULL,'2013-10-23 16:04:25','tep_get_tax_class_title','tep_cfg_pull_down_tax_classes('),(80,'Shipping Zone','MODULE_SHIPPING_FLAT_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2013-10-23 16:04:25','tep_get_zone_class_title','tep_cfg_pull_down_zone_classes('),(81,'Sort Order','MODULE_SHIPPING_FLAT_SORT_ORDER','0','Sort order of display.',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(82,'Default Currency','DEFAULT_CURRENCY','USD','Default Currency',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(83,'Default Language','DEFAULT_LANGUAGE','en','Default Language',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(84,'Default Order Status For New Orders','DEFAULT_ORDERS_STATUS_ID','1','When a new order is created, this order status will be assigned to it.',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(85,'Display Shipping','MODULE_ORDER_TOTAL_SHIPPING_STATUS','true','Do you want to display the order shipping cost?',6,1,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(86,'Sort Order','MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER','2','Sort order of display.',6,2,NULL,'2013-10-23 16:04:25',NULL,NULL),(87,'Allow Free Shipping','MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING','false','Do you want to allow free shipping?',6,3,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(88,'Free Shipping For Orders Over','MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER','50','Provide free shipping for orders over the set amount.',6,4,NULL,'2013-10-23 16:04:25','currencies->format',NULL),(89,'Provide Free Shipping For Orders Made','MODULE_ORDER_TOTAL_SHIPPING_DESTINATION','national','Provide free shipping for orders sent to the set destination.',6,5,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'national\', \'international\', \'both\'), '),(90,'Display Sub-Total','MODULE_ORDER_TOTAL_SUBTOTAL_STATUS','true','Do you want to display the order sub-total cost?',6,1,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(91,'Sort Order','MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER','1','Sort order of display.',6,2,NULL,'2013-10-23 16:04:25',NULL,NULL),(92,'Display Tax','MODULE_ORDER_TOTAL_TAX_STATUS','true','Do you want to display the order tax value?',6,1,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(93,'Sort Order','MODULE_ORDER_TOTAL_TAX_SORT_ORDER','3','Sort order of display.',6,2,NULL,'2013-10-23 16:04:25',NULL,NULL),(94,'Display Total','MODULE_ORDER_TOTAL_TOTAL_STATUS','true','Do you want to display the total order value?',6,1,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(95,'Sort Order','MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER','4','Sort order of display.',6,2,NULL,'2013-10-23 16:04:25',NULL,NULL),(96,'Minimum Minutes Per E-Mail','MODULE_ACTION_RECORDER_CONTACT_US_EMAIL_MINUTES','15','Minimum number of minutes to allow 1 e-mail to be sent (eg, 15 for 1 e-mail every 15 minutes)',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(97,'Minimum Minutes Per E-Mail','MODULE_ACTION_RECORDER_TELL_A_FRIEND_EMAIL_MINUTES','15','Minimum number of minutes to allow 1 e-mail to be sent (eg, 15 for 1 e-mail every 15 minutes)',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(98,'Allowed Minutes','MODULE_ACTION_RECORDER_ADMIN_LOGIN_MINUTES','5','Number of minutes to allow login attempts to occur.',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(99,'Allowed Attempts','MODULE_ACTION_RECORDER_ADMIN_LOGIN_ATTEMPTS','3','Number of login attempts to allow within the specified period.',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(100,'Enable E-Mail Module','MODULE_SOCIAL_BOOKMARKS_EMAIL_STATUS','True','Do you want to allow products to be shared through e-mail?',6,1,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(101,'Sort Order','MODULE_SOCIAL_BOOKMARKS_EMAIL_SORT_ORDER','10','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(102,'Enable Facebook Module','MODULE_SOCIAL_BOOKMARKS_FACEBOOK_STATUS','True','Do you want to allow products to be shared through Facebook?',6,1,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(103,'Sort Order','MODULE_SOCIAL_BOOKMARKS_FACEBOOK_SORT_ORDER','20','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(104,'Enable Twitter Module','MODULE_SOCIAL_BOOKMARKS_TWITTER_STATUS','True','Do you want to allow products to be shared through Twitter?',6,1,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(105,'Sort Order','MODULE_SOCIAL_BOOKMARKS_TWITTER_SORT_ORDER','30','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(106,'Enable Google Buzz Module','MODULE_SOCIAL_BOOKMARKS_GOOGLE_BUZZ_STATUS','True','Do you want to allow products to be shared through Google Buzz?',6,1,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(107,'Sort Order','MODULE_SOCIAL_BOOKMARKS_GOOGLE_BUZZ_SORT_ORDER','40','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(108,'Enable Digg Module','MODULE_SOCIAL_BOOKMARKS_DIGG_STATUS','True','Do you want to allow products to be shared through Digg?',6,1,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(109,'Sort Order','MODULE_SOCIAL_BOOKMARKS_DIGG_SORT_ORDER','50','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:25',NULL,NULL),(110,'Country of Origin','SHIPPING_ORIGIN_COUNTRY','223','Select the country of origin to be used in shipping quotes.',7,1,NULL,'2013-10-23 16:04:25','tep_get_country_name','tep_cfg_pull_down_country_list('),(111,'Postal Code','SHIPPING_ORIGIN_ZIP','NONE','Enter the Postal Code (ZIP) of the Store to be used in shipping quotes.',7,2,NULL,'2013-10-23 16:04:25',NULL,NULL),(112,'Enter the Maximum Package Weight you will ship','SHIPPING_MAX_WEIGHT','50','Carriers have a max weight limit for a single package. This is a common one for all.',7,3,NULL,'2013-10-23 16:04:25',NULL,NULL),(113,'Package Tare weight.','SHIPPING_BOX_WEIGHT','3','What is the weight of typical packaging of small to medium packages?',7,4,NULL,'2013-10-23 16:04:25',NULL,NULL),(114,'Larger packages - percentage increase.','SHIPPING_BOX_PADDING','10','For 10% enter 10',7,5,NULL,'2013-10-23 16:04:25',NULL,NULL),(115,'Display Product Image','PRODUCT_LIST_IMAGE','1','Do you want to display the Product Image?',8,1,NULL,'2013-10-23 16:04:25',NULL,NULL),(116,'Display Product Manufaturer Name','PRODUCT_LIST_MANUFACTURER','0','Do you want to display the Product Manufacturer Name?',8,2,NULL,'2013-10-23 16:04:25',NULL,NULL),(117,'Display Product Model','PRODUCT_LIST_MODEL','0','Do you want to display the Product Model?',8,3,NULL,'2013-10-23 16:04:25',NULL,NULL),(118,'Display Product Name','PRODUCT_LIST_NAME','2','Do you want to display the Product Name?',8,4,NULL,'2013-10-23 16:04:25',NULL,NULL),(119,'Display Product Price','PRODUCT_LIST_PRICE','3','Do you want to display the Product Price',8,5,NULL,'2013-10-23 16:04:25',NULL,NULL),(120,'Display Product Quantity','PRODUCT_LIST_QUANTITY','0','Do you want to display the Product Quantity?',8,6,NULL,'2013-10-23 16:04:25',NULL,NULL),(121,'Display Product Weight','PRODUCT_LIST_WEIGHT','0','Do you want to display the Product Weight?',8,7,NULL,'2013-10-23 16:04:25',NULL,NULL),(122,'Display Buy Now column','PRODUCT_LIST_BUY_NOW','4','Do you want to display the Buy Now column?',8,8,NULL,'2013-10-23 16:04:25',NULL,NULL),(123,'Display Category/Manufacturer Filter (0=disable; 1=enable)','PRODUCT_LIST_FILTER','1','Do you want to display the Category/Manufacturer Filter?',8,9,NULL,'2013-10-23 16:04:25',NULL,NULL),(124,'Location of Prev/Next Navigation Bar (1-top, 2-bottom, 3-both)','PREV_NEXT_BAR_LOCATION','2','Sets the location of the Prev/Next Navigation Bar (1-top, 2-bottom, 3-both)',8,10,NULL,'2013-10-23 16:04:25',NULL,NULL),(125,'Check stock level','STOCK_CHECK','true','Check to see if sufficent stock is available',9,1,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(126,'Subtract stock','STOCK_LIMITED','true','Subtract product in stock by product orders',9,2,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(127,'Allow Checkout','STOCK_ALLOW_CHECKOUT','true','Allow customer to checkout even if there is insufficient stock',9,3,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(128,'Mark product out of stock','STOCK_MARK_PRODUCT_OUT_OF_STOCK','***','Display something on screen so customer can see which product has insufficient stock',9,4,NULL,'2013-10-23 16:04:25',NULL,NULL),(129,'Stock Re-order level','STOCK_REORDER_LEVEL','5','Define when stock needs to be re-ordered',9,5,NULL,'2013-10-23 16:04:25',NULL,NULL),(130,'Store Page Parse Time','STORE_PAGE_PARSE_TIME','false','Store the time it takes to parse a page',10,1,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(131,'Log Destination','STORE_PAGE_PARSE_TIME_LOG','/var/log/www/tep/page_parse_time.log','Directory and filename of the page parse time log',10,2,NULL,'2013-10-23 16:04:25',NULL,NULL),(132,'Log Date Format','STORE_PARSE_DATE_TIME_FORMAT','%d/%m/%Y %H:%M:%S','The date format',10,3,NULL,'2013-10-23 16:04:25',NULL,NULL),(133,'Display The Page Parse Time','DISPLAY_PAGE_PARSE_TIME','true','Display the page parse time (store page parse time must be enabled)',10,4,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(134,'Store Database Queries','STORE_DB_TRANSACTIONS','false','Store the database queries in the page parse time log',10,5,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(135,'Use Cache','USE_CACHE','false','Use caching features',11,1,NULL,'2013-10-23 16:04:25',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(136,'Cache Directory','DIR_FS_CACHE','/tmp/','The directory where the cached files are saved',11,2,NULL,'2013-10-23 16:04:25',NULL,NULL),(137,'E-Mail Transport Method','EMAIL_TRANSPORT','sendmail','Defines if this server uses a local connection to sendmail or uses an SMTP connection via TCP/IP. Servers running on Windows and MacOS should change this setting to SMTP.',12,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'sendmail\', \'smtp\'),'),(138,'E-Mail Linefeeds','EMAIL_LINEFEED','LF','Defines the character sequence used to separate mail headers.',12,2,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'LF\', \'CRLF\'),'),(139,'Use MIME HTML When Sending Emails','EMAIL_USE_HTML','false','Send e-mails in HTML format',12,3,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'true\', \'false\'),'),(140,'Verify E-Mail Addresses Through DNS','ENTRY_EMAIL_ADDRESS_CHECK','false','Verify e-mail address through a DNS server',12,4,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(141,'Send E-Mails','SEND_EMAILS','true','Send out e-mails',12,5,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(142,'Enable download','DOWNLOAD_ENABLED','false','Enable the products download functions.',13,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(143,'Download by redirect','DOWNLOAD_BY_REDIRECT','false','Use browser redirection for download. Disable on non-Unix systems.',13,2,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(144,'Expiry delay (days)','DOWNLOAD_MAX_DAYS','7','Set number of days before the download link expires. 0 means no limit.',13,3,NULL,'2013-10-23 16:04:26',NULL,''),(145,'Maximum number of downloads','DOWNLOAD_MAX_COUNT','5','Set the maximum number of downloads. 0 means no download authorized.',13,4,NULL,'2013-10-23 16:04:26',NULL,''),(146,'Enable GZip Compression','GZIP_COMPRESSION','false','Enable HTTP GZip compression.',14,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(147,'Compression Level','GZIP_LEVEL','5','Use this compression level 0-9 (0 = minimum, 9 = maximum).',14,2,NULL,'2013-10-23 16:04:26',NULL,NULL),(148,'Session Directory','SESSION_WRITE_DIRECTORY','/tmp','If sessions are file based, store them in this directory.',15,1,NULL,'2013-10-23 16:04:26',NULL,NULL),(149,'Force Cookie Use','SESSION_FORCE_COOKIE_USE','False','Force the use of sessions when cookies are only enabled.',15,2,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(150,'Check SSL Session ID','SESSION_CHECK_SSL_SESSION_ID','False','Validate the SSL_SESSION_ID on every secure HTTPS page request.',15,3,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(151,'Check User Agent','SESSION_CHECK_USER_AGENT','False','Validate the clients browser user agent on every page request.',15,4,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(152,'Check IP Address','SESSION_CHECK_IP_ADDRESS','False','Validate the clients IP address on every page request.',15,5,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(153,'Prevent Spider Sessions','SESSION_BLOCK_SPIDERS','True','Prevent known spiders from starting a session.',15,6,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(154,'Recreate Session','SESSION_RECREATE','True','Recreate the session to generate a new session ID when the customer logs on or creates an account (PHP >=4.1 needed).',15,7,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(155,'Last Update Check Time','LAST_UPDATE_CHECK_TIME','','Last time a check for new versions of osCommerce was run',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(156,'Enable PayPal Express Checkout','MODULE_PAYMENT_PAYPAL_EXPRESS_STATUS','True','Do you want to accept PayPal Express Checkout payments?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(157,'Seller Account','MODULE_PAYMENT_PAYPAL_EXPRESS_SELLER_ACCOUNT','','The email address of the seller account if no API credentials has been setup.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(158,'API Username','MODULE_PAYMENT_PAYPAL_EXPRESS_API_USERNAME','','The username to use for the PayPal API service',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(159,'API Password','MODULE_PAYMENT_PAYPAL_EXPRESS_API_PASSWORD','','The password to use for the PayPal API service',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(160,'API Signature','MODULE_PAYMENT_PAYPAL_EXPRESS_API_SIGNATURE','','The signature to use for the PayPal API service',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(161,'Transaction Server','MODULE_PAYMENT_PAYPAL_EXPRESS_TRANSACTION_SERVER','Live','Use the live or testing (sandbox) gateway server to process transactions?',6,0,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Live\', \'Sandbox\'), '),(162,'Transaction Method','MODULE_PAYMENT_PAYPAL_EXPRESS_TRANSACTION_METHOD','Sale','The processing method to use for each transaction.',6,0,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Authorization\', \'Sale\'), '),(163,'PayPal Account Optional','MODULE_PAYMENT_PAYPAL_EXPRESS_ACCOUNT_OPTIONAL','False','This must also be enabled in your PayPal account, in Profile > Website Payment Preferences.',6,0,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(164,'PayPal Instant Update','MODULE_PAYMENT_PAYPAL_EXPRESS_INSTANT_UPDATE','True','Support PayPal shipping and tax calculations on the PayPal.com site during Express Checkout.',6,0,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(165,'PayPal Checkout Image','MODULE_PAYMENT_PAYPAL_EXPRESS_CHECKOUT_IMAGE','Static','Use static or dynamic Express Checkout image buttons. Dynamic images are used with PayPal campaigns.',6,0,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Static\', \'Dynamic\'), '),(166,'Debug E-Mail Address','MODULE_PAYMENT_PAYPAL_EXPRESS_DEBUG_EMAIL','','All parameters of an invalid transaction will be sent to this email address.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(167,'Payment Zone','MODULE_PAYMENT_PAYPAL_EXPRESS_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,2,NULL,'2013-10-23 16:04:26','tep_get_zone_class_title','tep_cfg_pull_down_zone_classes('),(168,'Sort order of display.','MODULE_PAYMENT_PAYPAL_EXPRESS_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(169,'Set Order Status','MODULE_PAYMENT_PAYPAL_EXPRESS_ORDER_STATUS_ID','0','Set the status of orders made with this payment module to this value',6,0,NULL,'2013-10-23 16:04:26','tep_get_order_status_name','tep_cfg_pull_down_order_statuses('),(170,'PayPal Transactions Order Status Level','MODULE_PAYMENT_PAYPAL_EXPRESS_TRANSACTIONS_ORDER_STATUS_ID','4','Include PayPal transaction information in this order status level',6,0,NULL,'2013-10-23 16:04:26','tep_get_order_status_name','tep_cfg_pull_down_order_statuses('),(171,'cURL Program Location','MODULE_PAYMENT_PAYPAL_EXPRESS_CURL','/usr/bin/curl','The location to the cURL program application.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(172,'Enable PayPal Website Payments Standard','MODULE_PAYMENT_PAYPAL_STANDARD_STATUS','False','Do you want to accept PayPal Website Payments Standard payments?',6,3,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(173,'E-Mail Address','MODULE_PAYMENT_PAYPAL_STANDARD_ID','','The PayPal seller e-mail address to accept payments for',6,4,NULL,'2013-10-23 16:04:26',NULL,NULL),(174,'Sort order of display.','MODULE_PAYMENT_PAYPAL_STANDARD_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(175,'Payment Zone','MODULE_PAYMENT_PAYPAL_STANDARD_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,2,NULL,'2013-10-23 16:04:26','tep_get_zone_class_title','tep_cfg_pull_down_zone_classes('),(176,'Set Preparing Order Status','MODULE_PAYMENT_PAYPAL_STANDARD_PREPARE_ORDER_STATUS_ID','\" . $status_id . \"','Set the status of prepared orders made with this payment module to this value',6,0,NULL,'2013-10-23 16:04:26','tep_get_order_status_name','tep_cfg_pull_down_order_statuses('),(177,'Set PayPal Acknowledged Order Status','MODULE_PAYMENT_PAYPAL_STANDARD_ORDER_STATUS_ID','0','Set the status of orders made with this payment module to this value',6,0,NULL,'2013-10-23 16:04:26','tep_get_order_status_name','tep_cfg_pull_down_order_statuses('),(178,'Gateway Server','MODULE_PAYMENT_PAYPAL_STANDARD_GATEWAY_SERVER','Live','Use the testing (sandbox) or live gateway server for transactions?',6,6,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Live\', \'Sandbox\'), '),(179,'Transaction Method','MODULE_PAYMENT_PAYPAL_STANDARD_TRANSACTION_METHOD','Sale','The processing method to use for each transaction.',6,0,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Authorization\', \'Sale\'), '),(180,'Page Style','MODULE_PAYMENT_PAYPAL_STANDARD_PAGE_STYLE','','The page style to use for the transaction procedure (defined at your PayPal Profile page)',6,4,NULL,'2013-10-23 16:04:26',NULL,NULL),(181,'Debug E-Mail Address','MODULE_PAYMENT_PAYPAL_STANDARD_DEBUG_EMAIL','','All parameters of an Invalid IPN notification will be sent to this email address if one is entered.',6,4,NULL,'2013-10-23 16:04:26',NULL,NULL),(182,'Enable Encrypted Web Payments','MODULE_PAYMENT_PAYPAL_STANDARD_EWP_STATUS','False','Do you want to enable Encrypted Web Payments?',6,3,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(183,'Your Private Key','MODULE_PAYMENT_PAYPAL_STANDARD_EWP_PRIVATE_KEY','','The location of your Private Key to use for signing the data. (*.pem)',6,4,NULL,'2013-10-23 16:04:26',NULL,NULL),(184,'Your Public Certificate','MODULE_PAYMENT_PAYPAL_STANDARD_EWP_PUBLIC_KEY','','The location of your Public Certificate to use for signing the data. (*.pem)',6,4,NULL,'2013-10-23 16:04:26',NULL,NULL),(185,'PayPals Public Certificate','MODULE_PAYMENT_PAYPAL_STANDARD_EWP_PAYPAL_KEY','','The location of the PayPal Public Certificate for encrypting the data.',6,4,NULL,'2013-10-23 16:04:26',NULL,NULL),(186,'Your PayPal Public Certificate ID','MODULE_PAYMENT_PAYPAL_STANDARD_EWP_CERT_ID','','The Certificate ID to use from your PayPal Encrypted Payment Settings Profile.',6,4,NULL,'2013-10-23 16:04:26',NULL,NULL),(187,'Working Directory','MODULE_PAYMENT_PAYPAL_STANDARD_EWP_WORKING_DIRECTORY','','The working directory to use for temporary files. (trailing slash needed)',6,4,NULL,'2013-10-23 16:04:26',NULL,NULL),(188,'OpenSSL Location','MODULE_PAYMENT_PAYPAL_STANDARD_EWP_OPENSSL','/usr/bin/openssl','The location of the openssl binary file.',6,4,NULL,'2013-10-23 16:04:26',NULL,NULL),(189,'Enable Table Method','MODULE_SHIPPING_TABLE_STATUS','True','Do you want to offer table rate shipping?',6,0,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(190,'Shipping Table','MODULE_SHIPPING_TABLE_COST','25:8.50,50:5.50,10000:0.00','The shipping cost is based on the total cost or weight of items. Example: 25:8.50,50:5.50,etc.. Up to 25 charge 8.50, from there to 50 charge 5.50, etc',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(191,'Table Method','MODULE_SHIPPING_TABLE_MODE','weight','The shipping cost is based on the order total or the total weight of the items ordered.',6,0,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'weight\', \'price\'), '),(192,'Handling Fee','MODULE_SHIPPING_TABLE_HANDLING','0','Handling fee for this shipping method.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(193,'Tax Class','MODULE_SHIPPING_TABLE_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,0,NULL,'2013-10-23 16:04:26','tep_get_tax_class_title','tep_cfg_pull_down_tax_classes('),(194,'Shipping Zone','MODULE_SHIPPING_TABLE_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2013-10-23 16:04:26','tep_get_zone_class_title','tep_cfg_pull_down_zone_classes('),(195,'Sort Order','MODULE_SHIPPING_TABLE_SORT_ORDER','0','Sort order of display.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(196,'Installed Modules','MODULE_HEADER_TAGS_INSTALLED','ht_manufacturer_title.php;ht_category_title.php;ht_product_title.php','List of header tag module filenames separated by a semi-colon. This is automatically updated. No need to edit.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(197,'Enable Category Title Module','MODULE_HEADER_TAGS_CATEGORY_TITLE_STATUS','True','Do you want to allow category titles to be added to the page title?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(198,'Sort Order','MODULE_HEADER_TAGS_CATEGORY_TITLE_SORT_ORDER','200','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(199,'Enable Manufacturer Title Module','MODULE_HEADER_TAGS_MANUFACTURER_TITLE_STATUS','True','Do you want to allow manufacturer titles to be added to the page title?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(200,'Sort Order','MODULE_HEADER_TAGS_MANUFACTURER_TITLE_SORT_ORDER','100','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(201,'Enable Product Title Module','MODULE_HEADER_TAGS_PRODUCT_TITLE_STATUS','True','Do you want to allow product titles to be added to the page title?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(202,'Sort Order','MODULE_HEADER_TAGS_PRODUCT_TITLE_SORT_ORDER','300','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(203,'Installed Modules','MODULE_ADMIN_DASHBOARD_INSTALLED','d_total_revenue.php;d_total_customers.php;d_orders.php;d_latest_news.php;d_user_stuff.php;d_newsletter.php;d_at_a_glance.php','List of Administration Tool Dashboard module filenames separated by a semi-colon. This is automatically updated. No need to edit.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(204,'Enable Orders Module','MODULE_ADMIN_DASHBOARD_ORDERS_STATUS','True','Do you want to show the latest orders on the dashboard?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(205,'Enable Total Customers Module','MODULE_ADMIN_DASHBOARD_TOTAL_CUSTOMERS_STATUS','True','Do you want to show the total customers chart on the dashboard?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(206,'Enable Total Revenue Module','MODULE_ADMIN_DASHBOARD_TOTAL_REVENUE_STATUS','True','Do you want to show the total revenue chart on the dashboard?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(207,'Enable Newsletter Module','MODULE_ADMIN_DASHBOARD_NEWSLETTER_STATUS','True','Do you want to show the Newsletter on the dashboard?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(208,'Enable At a Glance Module','MODULE_ADMIN_DASHBOARD_ATA_GLANCE_STATUS','True','Do you want to show the at a glance on the dashboard?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(209,'Enable User Stuff Module','MODULE_ADMIN_DASHBOARD_USER_STUFF_STATUS','True','Do you want to show the user stuff on the dashboard?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(210,'Enable Latest News Module','MODULE_ADMIN_DASHBOARD_LATEST_NEWS_STATUS','True','Do you want to show the latest News on the dashboard?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(211,'Installed Modules','MODULE_BOXES_INSTALLED','bm_categories.php;bm_manufacturers.php;bm_search.php;bm_whats_new.php;bm_information.php;bm_shopping_cart.php;bm_manufacturer_info.php;bm_order_history.php;bm_best_sellers.php;bm_product_notifications.php;bm_product_social_bookmarks.php;bm_specials.php;bm_reviews.php;bm_languages.php;bm_currencies.php;bm_loginradius.php','List of box module filenames separated by a semi-colon. This is automatically updated. No need to edit.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(212,'Enable Best Sellers Module','MODULE_BOXES_BEST_SELLERS_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(213,'Content Placement','MODULE_BOXES_BEST_SELLERS_CONTENT_PLACEMENT','Right Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(214,'Sort Order','MODULE_BOXES_BEST_SELLERS_SORT_ORDER','5030','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(215,'Enable Categories Module','MODULE_BOXES_CATEGORIES_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(216,'Content Placement','MODULE_BOXES_CATEGORIES_CONTENT_PLACEMENT','Left Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(217,'Sort Order','MODULE_BOXES_CATEGORIES_SORT_ORDER','1000','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(218,'Enable Currencies Module','MODULE_BOXES_CURRENCIES_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(219,'Content Placement','MODULE_BOXES_CURRENCIES_CONTENT_PLACEMENT','Right Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(220,'Sort Order','MODULE_BOXES_CURRENCIES_SORT_ORDER','5090','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(221,'Enable Information Module','MODULE_BOXES_INFORMATION_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(222,'Content Placement','MODULE_BOXES_INFORMATION_CONTENT_PLACEMENT','Left Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(223,'Sort Order','MODULE_BOXES_INFORMATION_SORT_ORDER','1050','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(224,'Enable Languages Module','MODULE_BOXES_LANGUAGES_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(225,'Content Placement','MODULE_BOXES_LANGUAGES_CONTENT_PLACEMENT','Right Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(226,'Sort Order','MODULE_BOXES_LANGUAGES_SORT_ORDER','5080','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(227,'Enable Manufacturer Info Module','MODULE_BOXES_MANUFACTURER_INFO_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(228,'Content Placement','MODULE_BOXES_MANUFACTURER_INFO_CONTENT_PLACEMENT','Right Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(229,'Sort Order','MODULE_BOXES_MANUFACTURER_INFO_SORT_ORDER','5010','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(230,'Enable Manufacturers Module','MODULE_BOXES_MANUFACTURERS_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(231,'Content Placement','MODULE_BOXES_MANUFACTURERS_CONTENT_PLACEMENT','Left Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(232,'Sort Order','MODULE_BOXES_MANUFACTURERS_SORT_ORDER','1020','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(233,'Enable Order History Module','MODULE_BOXES_ORDER_HISTORY_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(234,'Content Placement','MODULE_BOXES_ORDER_HISTORY_CONTENT_PLACEMENT','Right Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(235,'Sort Order','MODULE_BOXES_ORDER_HISTORY_SORT_ORDER','5020','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(236,'Enable Product Notifications Module','MODULE_BOXES_PRODUCT_NOTIFICATIONS_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(237,'Content Placement','MODULE_BOXES_PRODUCT_NOTIFICATIONS_CONTENT_PLACEMENT','Right Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(238,'Sort Order','MODULE_BOXES_PRODUCT_NOTIFICATIONS_SORT_ORDER','5040','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(239,'Enable Product Social Bookmarks Module','MODULE_BOXES_PRODUCT_SOCIAL_BOOKMARKS_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(240,'Content Placement','MODULE_BOXES_PRODUCT_SOCIAL_BOOKMARKS_CONTENT_PLACEMENT','Right Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(241,'Sort Order','MODULE_BOXES_PRODUCT_SOCIAL_BOOKMARKS_SORT_ORDER','5050','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(242,'Enable Reviews Module','MODULE_BOXES_REVIEWS_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(243,'Content Placement','MODULE_BOXES_REVIEWS_CONTENT_PLACEMENT','Right Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(244,'Sort Order','MODULE_BOXES_REVIEWS_SORT_ORDER','5070','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(245,'Enable Search Module','MODULE_BOXES_SEARCH_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(246,'Content Placement','MODULE_BOXES_SEARCH_CONTENT_PLACEMENT','Left Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(247,'Sort Order','MODULE_BOXES_SEARCH_SORT_ORDER','1030','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(248,'Enable Shopping Cart Module','MODULE_BOXES_SHOPPING_CART_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(249,'Content Placement','MODULE_BOXES_SHOPPING_CART_CONTENT_PLACEMENT','Right Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(250,'Sort Order','MODULE_BOXES_SHOPPING_CART_SORT_ORDER','5000','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(251,'Enable Specials Module','MODULE_BOXES_SPECIALS_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(252,'Content Placement','MODULE_BOXES_SPECIALS_CONTENT_PLACEMENT','Right Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(253,'Sort Order','MODULE_BOXES_SPECIALS_SORT_ORDER','5060','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(254,'Enable What\'s New Module','MODULE_BOXES_WHATS_NEW_STATUS','True','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(255,'Content Placement','MODULE_BOXES_WHATS_NEW_CONTENT_PLACEMENT','Left Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(256,'Sort Order','MODULE_BOXES_WHATS_NEW_SORT_ORDER','1040','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(257,'Installed Template Block Groups','TEMPLATE_BLOCK_GROUPS','boxes;header_tags','This is automatically updated. No need to edit.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(300,'Show Reviews on Site?','SHOW_REVIEWS','True','Do you want the Reviews to show on the site?',20,300,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'),'),(301,'Display the Create Account and Log in Page?','SHOW_LOGIN','True','Do you want the Create an account and Login pages to show?<br>This will also prevent the buttons from displaying',20,301,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'),'),(302,'Display the Prices on your site?','SHOW_PRICE','True','Do you want the Prices to show on your site?',20,302,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'),'),(303,'Display the Buy now Button on Product info page?','SHOW_BUTTON','True','Do you want the Add to Cart Button to show?<br />The Buy Now button for the products listing page is controlled from the Products Listing menu and has to be turned off seperately',20,302,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'),'),(304,'Display the Shopping cart box?','SHOW_CART','True','Do you want the Shopping cart BOX to show?',20,304,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'),'),(305,'Display the Currencies box?','SHOW_CURRENCIES','True','Do you want the Currencies BOX to show?',20,305,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'),'),(306,'Enable Information Module','MODULE_BOXES_LOGINRADIUS_STATUS','False','Do you want to add the module to your shop?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(307,'Content Placement','MODULE_BOXES_LOGINRADIUS_CONTENT_PLACEMENT','Left Column','Should the module be loaded in the left or right column?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), '),(308,'Sort Order','MODULE_BOXES_LOGINRADIUS_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(309,'LoginRadius API Key','MODULE_BOXES_LOGINRADIUS_API_KEY','0','Paste LoginRadius API Key here',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(310,'LoginRadius API Secret','MODULE_BOXES_LOGINRADIUS_API_SECRET_KEY','0','Paste LoginRadius API Secret here',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(311,'Email Required','MODULE_BOXES_LOGINRADIUS_EMAIL_REQUIRED','True','Is Email Required?',6,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(312,'Title','MODULE_BOXES_LOGINRADIUS_TITLE','Social Login','Enter the Module Title of your choice',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(313,'Text on Login page','MODULE_BOXES_LOGINRADIUS_LOGINTEXT','You do not have to create a new account, login with your existing account using any of the following Providers:','Enter the text which you want to be appeared on Login page',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(314,'Text on Registration page','MODULE_BOXES_LOGINRADIUS_ACCTEXT','You do not have to create a new account, login with your existing account using any of the following Providers:','Enter the text which you want to be appeared on Registration page',6,0,NULL,'2013-10-23 16:04:26',NULL,NULL),(315,'QuickSearch searches in description','QUICKSEARCH_IN_DESCRIPTION','true','If set to TRUE the customer can quick search in descriptions otherwise the search is limited to the product name',1,113,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'true\', \'false\'),'),(316,'Purchase without account','PURCHASE_WITHOUT_ACCOUNT','yes','Do you allow customers to purchase without an account?',5,10,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'yes\', \'no\'), '),(317,'Purchase without account shippingaddress','PURCHASE_WITHOUT_ACCOUNT_SEPARATE_SHIPPING','yes','Do you allow customers without account to create separately shipping address?',5,11,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'yes\', \'no\'), '),(263,'Display Product Sort Order','PRODUCT_SORT_ORDER','0','Do you want to display the Product Sort Order column?',8,29,'0000-00-00 00:00:00','0000-00-00 00:00:00',NULL,NULL),(318,'Product Listing Style','PRODUCT_LIST_CONTENT_LISTING','both','Product list should be in Rows (with one product per row) or Grid (Multiple products per row',21,318,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'list\', \'grid\',\'both\'),'),(319,'Product Listing Columns','COLUMN_COUNT','4','If Product Listing is Columns, How many Columns to show. (# of products in a row)',21,319,NULL,'2013-10-23 16:04:26',NULL,''),(320,'Default layout','PRODUCT_LIST_CONTENT_LISTING_DEFAULT','grid','Default setting',21,320,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'list\', \'grid\'),'),(321,'','GOOGLE_ON','true','',0,NULL,NULL,'0000-00-00 00:00:00',NULL,NULL),(322,'','SLIDESHOW_ON','1','',0,NULL,NULL,'0000-00-00 00:00:00',NULL,NULL),(323,'Display the Payment Method dropdown?','ORDER_EDITOR_PAYMENT_DROPDOWN','true','Based on this selection Order Editor will display the payment method as a dropdown menu (true) or as an input field (false).',22,1,'2013-10-23 16:04:26','2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'true\', \'false\'),'),(324,'Display the Payment Method dropdown?','ORDER_EDITOR_PAYMENT_DROPDOWN','true','Based on this selection Order Editor will display the payment method as a dropdown menu (true) or as an input field (false).',22,1,'2013-10-23 16:04:26','2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'true\', \'false\'),'),(325,'Use prices from Separate Pricing Per Customer?','ORDER_EDITOR_USE_SPPC','false','Leave this set to false unless SPPC is installed.',22,3,'2013-10-23 16:04:26','2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'true\', \'false\'),'),(326,'Use QTPro contribution?','ORDER_EDITOR_USE_QTPRO','false','Leave this set to false unless you have QTPro Installed.',22,4,'2013-10-23 16:04:26','2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'true\', \'false\'),'),(327,'Allow the use of AJAX to update order information?','ORDER_EDITOR_USE_AJAX','true','This must be set to false if using a browser on which JavaScript is disabled or not available.',22,5,'2013-10-23 16:04:26','2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'true\', \'false\'),'),(328,'Select your credit card payment method','ORDER_EDITOR_CREDIT_CARD','Credit Card','Order Editor will display the credit card fields when this payment method is selected.',22,6,'2013-10-23 16:04:26','2013-10-23 16:04:26',NULL,'tep_cfg_pull_down_payment_methods('),(329,'Attach PDF Invoice to New Order Email','ORDER_EDITOR_ADD_PDF_INVOICE_EMAIL','false','When you send a new Order Email a PDF Invoice kan be attach to your email. This function only works if the contribution PDF Invoice is installed.',22,15,'2013-10-23 16:04:26','2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'true\', \'false\'),'),(330,'Indiv Ship Home Country','INDIVIDUAL_SHIP_HOME_COUNTRY','223','Individual ship home country ID (other countries will have extra freight)',7,NULL,'0000-00-00 00:00:00','0000-00-00 00:00:00',NULL,NULL),(331,'Indiv Ship Outside Home Increase','INDIVIDUAL_SHIP_INCREASE','3','Individual ship x increase for shipping outside home country. For example: If you set your item ship price to $50 and this value to 3 and ship outside your home country they will pay $150, and if this value was 2, they would pay $100.',7,NULL,'0000-00-00 00:00:00','0000-00-00 00:00:00',NULL,NULL),(332,'Product Info Attribute Display Plugin','PRODINFO_ATTRIBUTE_PLUGIN','multiple_dropdowns','The plugin used for displaying attributes on the product information page.',888001,1,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_pull_down_class_files(\'pad_\','),(333,'Show Out of Stock Attributes','PRODINFO_ATTRIBUTE_SHOW_OUT_OF_STOCK','True','<b>If True:</b> Attributes that are out of stock will be displayed.<br /><br /><b>If False:</b> Attributes that are out of stock will <b><em>not</em></b> be displayed.</b><br /><br /><b>Default is True.</b>',888001,10,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'),'),(334,'Mark Out of Stock Attributes','PRODINFO_ATTRIBUTE_MARK_OUT_OF_STOCK','Right','Controls how out of stock attributes are marked as out of stock.',888001,20,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'None\', \'Right\', \'Left\'),'),(335,'Display Out of Stock Message Line','PRODINFO_ATTRIBUTE_OUT_OF_STOCK_MSGLINE','True','<b>If True:</b> If an out of stock attribute combination is selected by the customer, a message line informing on this will displayed.',888001,30,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'),'),(336,'Prevent Adding Out of Stock to Cart','PRODINFO_ATTRIBUTE_NO_ADD_OUT_OF_STOCK','True','<b>If True:</b> Customer will not be able to ad a product with an out of stock attribute combination to the cart. A javascript form will be displayed.',888001,40,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'),'),(337,'Use Actual Price Pull Downs','PRODINFO_ATTRIBUTE_ACTUAL_PRICE_PULL_DOWN','False','<font color=\"red\"><b>NOTE:</b></font> This can only be used with a satisfying result if you have only one option per product.<br /><br /><b>If True:</b> Option prices will displayed as a final product price.<br /><br /><b>Default is false.</b>',888001,40,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'),'),(338,'Display table with stock information','PRODINFO_ATTRIBUTE_DISPLAY_STOCK_LIST','True','<b>If True:</b> A table with information on whats on stock will be displayed to the customer. If product doesn\'t have any attributes with tracked stock; the table won\'t be displayed.<br /><br /><b>Default is true.</b>',888001,50,NULL,'2013-10-23 16:04:26',NULL,'tep_cfg_select_option(array(\'True\', \'False\'),'); /*!40000 ALTER TABLE `configuration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `configuration_group` -- DROP TABLE IF EXISTS `configuration_group`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `configuration_group` ( `configuration_group_id` int(11) NOT NULL auto_increment, `configuration_group_title` varchar(64) NOT NULL, `configuration_group_description` varchar(255) NOT NULL, `sort_order` int(5) default NULL, `visible` int(1) default '1', PRIMARY KEY (`configuration_group_id`) ) ENGINE=MyISAM AUTO_INCREMENT=888002 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `configuration_group` -- LOCK TABLES `configuration_group` WRITE; /*!40000 ALTER TABLE `configuration_group` DISABLE KEYS */; INSERT INTO `configuration_group` VALUES (1,'My Store','General information about my store',1,1),(2,'Minimum Values','The minimum values for functions / data',2,1),(3,'Maximum Values','The maximum values for functions / data',3,1),(4,'Images','Image parameters',4,1),(5,'Customer Details','Customer account configuration',5,1),(6,'Module Options','Hidden from configuration',6,0),(7,'Shipping/Packaging','Shipping options available at my store',7,1),(8,'Product Listing','Product Listing configuration options',8,1),(9,'Stock','Stock configuration options',9,1),(10,'Logging','Logging configuration options',10,1),(11,'Cache','Caching configuration options',11,1),(12,'E-Mail Options','General setting for E-Mail transport and HTML E-Mails',12,1),(13,'Downloadable Products','Downloadable products options',13,1),(14,'GZip Compression','GZip compression options',14,1),(15,'Sessions','Session options',15,1),(20,'Deactivate store features','Toggle between full store or catalog',20,1),(21,'Product Listing Style','Product list should be in Rows (with one product per row) or Grid (Multiple products per row)',21,1),(22,'Order Editor','Configuration options for Order Editor',22,1),(888001,'Prod Info (QTPro)','Configuration options for the Product Information page. This configuration menu is acctually the menu for the contribution QTPro.',8,1); /*!40000 ALTER TABLE `configuration_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `counter` -- DROP TABLE IF EXISTS `counter`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `counter` ( `startdate` char(8) default NULL, `counter` int(12) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `counter` -- LOCK TABLES `counter` WRITE; /*!40000 ALTER TABLE `counter` DISABLE KEYS */; INSERT INTO `counter` VALUES ('20131023',1); /*!40000 ALTER TABLE `counter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `counter_history` -- DROP TABLE IF EXISTS `counter_history`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `counter_history` ( `month` char(8) default NULL, `counter` int(12) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `counter_history` -- LOCK TABLES `counter_history` WRITE; /*!40000 ALTER TABLE `counter_history` DISABLE KEYS */; /*!40000 ALTER TABLE `counter_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `countries` -- DROP TABLE IF EXISTS `countries`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `countries` ( `countries_id` int(11) NOT NULL auto_increment, `countries_name` varchar(255) NOT NULL, `countries_iso_code_2` char(2) NOT NULL, `countries_iso_code_3` char(3) NOT NULL, `address_format_id` int(11) NOT NULL, PRIMARY KEY (`countries_id`), KEY `IDX_COUNTRIES_NAME` (`countries_name`) ) ENGINE=MyISAM AUTO_INCREMENT=240 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `countries` -- LOCK TABLES `countries` WRITE; /*!40000 ALTER TABLE `countries` DISABLE KEYS */; INSERT INTO `countries` VALUES (1,'Afghanistan','AF','AFG',1),(2,'Albania','AL','ALB',1),(3,'Algeria','DZ','DZA',1),(4,'American Samoa','AS','ASM',1),(5,'Andorra','AD','AND',1),(6,'Angola','AO','AGO',1),(7,'Anguilla','AI','AIA',1),(8,'Antarctica','AQ','ATA',1),(9,'Antigua and Barbuda','AG','ATG',1),(10,'Argentina','AR','ARG',1),(11,'Armenia','AM','ARM',1),(12,'Aruba','AW','ABW',1),(13,'Australia','AU','AUS',1),(14,'Austria','AT','AUT',5),(15,'Azerbaijan','AZ','AZE',1),(16,'Bahamas','BS','BHS',1),(17,'Bahrain','BH','BHR',1),(18,'Bangladesh','BD','BGD',1),(19,'Barbados','BB','BRB',1),(20,'Belarus','BY','BLR',1),(21,'Belgium','BE','BEL',1),(22,'Belize','BZ','BLZ',1),(23,'Benin','BJ','BEN',1),(24,'Bermuda','BM','BMU',1),(25,'Bhutan','BT','BTN',1),(26,'Bolivia','BO','BOL',1),(27,'Bosnia and Herzegowina','BA','BIH',1),(28,'Botswana','BW','BWA',1),(29,'Bouvet Island','BV','BVT',1),(30,'Brazil','BR','BRA',1),(31,'British Indian Ocean Territory','IO','IOT',1),(32,'Brunei Darussalam','BN','BRN',1),(33,'Bulgaria','BG','BGR',1),(34,'Burkina Faso','BF','BFA',1),(35,'Burundi','BI','BDI',1),(36,'Cambodia','KH','KHM',1),(37,'Cameroon','CM','CMR',1),(38,'Canada','CA','CAN',1),(39,'Cape Verde','CV','CPV',1),(40,'Cayman Islands','KY','CYM',1),(41,'Central African Republic','CF','CAF',1),(42,'Chad','TD','TCD',1),(43,'Chile','CL','CHL',1),(44,'China','CN','CHN',1),(45,'Christmas Island','CX','CXR',1),(46,'Cocos (Keeling) Islands','CC','CCK',1),(47,'Colombia','CO','COL',1),(48,'Comoros','KM','COM',1),(49,'Congo','CG','COG',1),(50,'Cook Islands','CK','COK',1),(51,'Costa Rica','CR','CRI',1),(52,'Cote D\'Ivoire','CI','CIV',1),(53,'Croatia','HR','HRV',1),(54,'Cuba','CU','CUB',1),(55,'Cyprus','CY','CYP',1),(56,'Czech Republic','CZ','CZE',1),(57,'Denmark','DK','DNK',1),(58,'Djibouti','DJ','DJI',1),(59,'Dominica','DM','DMA',1),(60,'Dominican Republic','DO','DOM',1),(61,'East Timor','TP','TMP',1),(62,'Ecuador','EC','ECU',1),(63,'Egypt','EG','EGY',1),(64,'El Salvador','SV','SLV',1),(65,'Equatorial Guinea','GQ','GNQ',1),(66,'Eritrea','ER','ERI',1),(67,'Estonia','EE','EST',1),(68,'Ethiopia','ET','ETH',1),(69,'Falkland Islands (Malvinas)','FK','FLK',1),(70,'Faroe Islands','FO','FRO',1),(71,'Fiji','FJ','FJI',1),(72,'Finland','FI','FIN',1),(73,'France','FR','FRA',1),(74,'France, Metropolitan','FX','FXX',1),(75,'French Guiana','GF','GUF',1),(76,'French Polynesia','PF','PYF',1),(77,'French Southern Territories','TF','ATF',1),(78,'Gabon','GA','GAB',1),(79,'Gambia','GM','GMB',1),(80,'Georgia','GE','GEO',1),(81,'Germany','DE','DEU',5),(82,'Ghana','GH','GHA',1),(83,'Gibraltar','GI','GIB',1),(84,'Greece','GR','GRC',1),(85,'Greenland','GL','GRL',1),(86,'Grenada','GD','GRD',1),(87,'Guadeloupe','GP','GLP',1),(88,'Guam','GU','GUM',1),(89,'Guatemala','GT','GTM',1),(90,'Guinea','GN','GIN',1),(91,'Guinea-bissau','GW','GNB',1),(92,'Guyana','GY','GUY',1),(93,'Haiti','HT','HTI',1),(94,'Heard and Mc Donald Islands','HM','HMD',1),(95,'Honduras','HN','HND',1),(96,'Hong Kong','HK','HKG',1),(97,'Hungary','HU','HUN',1),(98,'Iceland','IS','ISL',1),(99,'India','IN','IND',1),(100,'Indonesia','ID','IDN',1),(101,'Iran (Islamic Republic of)','IR','IRN',1),(102,'Iraq','IQ','IRQ',1),(103,'Ireland','IE','IRL',1),(104,'Israel','IL','ISR',1),(105,'Italy','IT','ITA',1),(106,'Jamaica','JM','JAM',1),(107,'Japan','JP','JPN',1),(108,'Jordan','JO','JOR',1),(109,'Kazakhstan','KZ','KAZ',1),(110,'Kenya','KE','KEN',1),(111,'Kiribati','KI','KIR',1),(112,'Korea, Democratic People\'s Republic of','KP','PRK',1),(113,'Korea, Republic of','KR','KOR',1),(114,'Kuwait','KW','KWT',1),(115,'Kyrgyzstan','KG','KGZ',1),(116,'Lao People\'s Democratic Republic','LA','LAO',1),(117,'Latvia','LV','LVA',1),(118,'Lebanon','LB','LBN',1),(119,'Lesotho','LS','LSO',1),(120,'Liberia','LR','LBR',1),(121,'Libyan Arab Jamahiriya','LY','LBY',1),(122,'Liechtenstein','LI','LIE',1),(123,'Lithuania','LT','LTU',1),(124,'Luxembourg','LU','LUX',1),(125,'Macau','MO','MAC',1),(126,'Macedonia, The Former Yugoslav Republic of','MK','MKD',1),(127,'Madagascar','MG','MDG',1),(128,'Malawi','MW','MWI',1),(129,'Malaysia','MY','MYS',1),(130,'Maldives','MV','MDV',1),(131,'Mali','ML','MLI',1),(132,'Malta','MT','MLT',1),(133,'Marshall Islands','MH','MHL',1),(134,'Martinique','MQ','MTQ',1),(135,'Mauritania','MR','MRT',1),(136,'Mauritius','MU','MUS',1),(137,'Mayotte','YT','MYT',1),(138,'Mexico','MX','MEX',1),(139,'Micronesia, Federated States of','FM','FSM',1),(140,'Moldova, Republic of','MD','MDA',1),(141,'Monaco','MC','MCO',1),(142,'Mongolia','MN','MNG',1),(143,'Montserrat','MS','MSR',1),(144,'Morocco','MA','MAR',1),(145,'Mozambique','MZ','MOZ',1),(146,'Myanmar','MM','MMR',1),(147,'Namibia','NA','NAM',1),(148,'Nauru','NR','NRU',1),(149,'Nepal','NP','NPL',1),(150,'Netherlands','NL','NLD',1),(151,'Netherlands Antilles','AN','ANT',1),(152,'New Caledonia','NC','NCL',1),(153,'New Zealand','NZ','NZL',1),(154,'Nicaragua','NI','NIC',1),(155,'Niger','NE','NER',1),(156,'Nigeria','NG','NGA',1),(157,'Niue','NU','NIU',1),(158,'Norfolk Island','NF','NFK',1),(159,'Northern Mariana Islands','MP','MNP',1),(160,'Norway','NO','NOR',1),(161,'Oman','OM','OMN',1),(162,'Pakistan','PK','PAK',1),(163,'Palau','PW','PLW',1),(164,'Panama','PA','PAN',1),(165,'Papua New Guinea','PG','PNG',1),(166,'Paraguay','PY','PRY',1),(167,'Peru','PE','PER',1),(168,'Philippines','PH','PHL',1),(169,'Pitcairn','PN','PCN',1),(170,'Poland','PL','POL',1),(171,'Portugal','PT','PRT',1),(172,'Puerto Rico','PR','PRI',1),(173,'Qatar','QA','QAT',1),(174,'Reunion','RE','REU',1),(175,'Romania','RO','ROM',1),(176,'Russian Federation','RU','RUS',1),(177,'Rwanda','RW','RWA',1),(178,'Saint Kitts and Nevis','KN','KNA',1),(179,'Saint Lucia','LC','LCA',1),(180,'Saint Vincent and the Grenadines','VC','VCT',1),(181,'Samoa','WS','WSM',1),(182,'San Marino','SM','SMR',1),(183,'Sao Tome and Principe','ST','STP',1),(184,'Saudi Arabia','SA','SAU',1),(185,'Senegal','SN','SEN',1),(186,'Seychelles','SC','SYC',1),(187,'Sierra Leone','SL','SLE',1),(188,'Singapore','SG','SGP',4),(189,'Slovakia (Slovak Republic)','SK','SVK',1),(190,'Slovenia','SI','SVN',1),(191,'Solomon Islands','SB','SLB',1),(192,'Somalia','SO','SOM',1),(193,'South Africa','ZA','ZAF',1),(194,'South Georgia and the South Sandwich Islands','GS','SGS',1),(195,'Spain','ES','ESP',3),(196,'Sri Lanka','LK','LKA',1),(197,'St. Helena','SH','SHN',1),(198,'St. Pierre and Miquelon','PM','SPM',1),(199,'Sudan','SD','SDN',1),(200,'Suriname','SR','SUR',1),(201,'Svalbard and Jan Mayen Islands','SJ','SJM',1),(202,'Swaziland','SZ','SWZ',1),(203,'Sweden','SE','SWE',1),(204,'Switzerland','CH','CHE',1),(205,'Syrian Arab Republic','SY','SYR',1),(206,'Taiwan','TW','TWN',1),(207,'Tajikistan','TJ','TJK',1),(208,'Tanzania, United Republic of','TZ','TZA',1),(209,'Thailand','TH','THA',1),(210,'Togo','TG','TGO',1),(211,'Tokelau','TK','TKL',1),(212,'Tonga','TO','TON',1),(213,'Trinidad and Tobago','TT','TTO',1),(214,'Tunisia','TN','TUN',1),(215,'Turkey','TR','TUR',1),(216,'Turkmenistan','TM','TKM',1),(217,'Turks and Caicos Islands','TC','TCA',1),(218,'Tuvalu','TV','TUV',1),(219,'Uganda','UG','UGA',1),(220,'Ukraine','UA','UKR',1),(221,'United Arab Emirates','AE','ARE',1),(222,'United Kingdom','GB','GBR',1),(223,'United States','US','USA',2),(224,'United States Minor Outlying Islands','UM','UMI',1),(225,'Uruguay','UY','URY',1),(226,'Uzbekistan','UZ','UZB',1),(227,'Vanuatu','VU','VUT',1),(228,'Vatican City State (Holy See)','VA','VAT',1),(229,'Venezuela','VE','VEN',1),(230,'Viet Nam','VN','VNM',1),(231,'Virgin Islands (British)','VG','VGB',1),(232,'Virgin Islands (U.S.)','VI','VIR',1),(233,'Wallis and Futuna Islands','WF','WLF',1),(234,'Western Sahara','EH','ESH',1),(235,'Yemen','YE','YEM',1),(236,'Yugoslavia','YU','YUG',1),(237,'Zaire','ZR','ZAR',1),(238,'Zambia','ZM','ZMB',1),(239,'Zimbabwe','ZW','ZWE',1); /*!40000 ALTER TABLE `countries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `currencies` -- DROP TABLE IF EXISTS `currencies`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `currencies` ( `currencies_id` int(11) NOT NULL auto_increment, `title` varchar(32) NOT NULL, `code` char(3) NOT NULL, `symbol_left` varchar(12) default NULL, `symbol_right` varchar(12) default NULL, `decimal_point` char(1) default NULL, `thousands_point` char(1) default NULL, `decimal_places` char(1) default NULL, `value` float(13,8) default NULL, `last_updated` datetime default NULL, PRIMARY KEY (`currencies_id`), KEY `idx_currencies_code` (`code`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `currencies` -- LOCK TABLES `currencies` WRITE; /*!40000 ALTER TABLE `currencies` DISABLE KEYS */; INSERT INTO `currencies` VALUES (1,'U.S. Dollar','USD','$','','.',',','2',1.00000000,'2013-10-23 16:04:26'),(2,'Euro','EUR','','','.',',','2',1.00000000,'2013-10-23 16:04:26'); /*!40000 ALTER TABLE `currencies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customers` -- DROP TABLE IF EXISTS `customers`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customers` ( `customers_id` int(11) NOT NULL auto_increment, `customers_gender` char(1) default NULL, `customers_firstname` varchar(255) NOT NULL, `customers_lastname` varchar(255) NOT NULL, `customers_dob` datetime NOT NULL default '0000-00-00 00:00:00', `customers_email_address` varchar(255) NOT NULL, `customers_default_address_id` int(11) default NULL, `customers_telephone` varchar(255) default NULL, `customers_fax` varchar(255) default NULL, `customers_password` varchar(40) default NULL, `customers_newsletter` char(1) default NULL, `guest_account` tinyint(4) NOT NULL default '0', `customers_created` timestamp NOT NULL default CURRENT_TIMESTAMP, PRIMARY KEY (`customers_id`), KEY `idx_customers_email_address` (`customers_email_address`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customers` -- LOCK TABLES `customers` WRITE; /*!40000 ALTER TABLE `customers` DISABLE KEYS */; /*!40000 ALTER TABLE `customers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customers_basket` -- DROP TABLE IF EXISTS `customers_basket`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customers_basket` ( `customers_basket_id` int(11) NOT NULL auto_increment, `customers_id` int(11) NOT NULL, `products_id` tinytext NOT NULL, `customers_basket_quantity` int(2) NOT NULL, `final_price` decimal(15,4) default NULL, `customers_basket_date_added` char(8) default NULL, PRIMARY KEY (`customers_basket_id`), KEY `idx_customers_basket_customers_id` (`customers_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customers_basket` -- LOCK TABLES `customers_basket` WRITE; /*!40000 ALTER TABLE `customers_basket` DISABLE KEYS */; /*!40000 ALTER TABLE `customers_basket` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customers_basket_attributes` -- DROP TABLE IF EXISTS `customers_basket_attributes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customers_basket_attributes` ( `customers_basket_attributes_id` int(11) NOT NULL auto_increment, `customers_id` int(11) NOT NULL, `products_id` tinytext NOT NULL, `products_options_id` int(11) NOT NULL, `products_options_value_id` int(11) NOT NULL, `products_options_value_text` text, PRIMARY KEY (`customers_basket_attributes_id`), KEY `idx_customers_basket_att_customers_id` (`customers_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customers_basket_attributes` -- LOCK TABLES `customers_basket_attributes` WRITE; /*!40000 ALTER TABLE `customers_basket_attributes` DISABLE KEYS */; /*!40000 ALTER TABLE `customers_basket_attributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customers_info` -- DROP TABLE IF EXISTS `customers_info`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customers_info` ( `customers_info_id` int(11) NOT NULL, `customers_info_date_of_last_logon` datetime default NULL, `customers_info_number_of_logons` int(5) default NULL, `customers_info_date_account_created` datetime default NULL, `customers_info_date_account_last_modified` datetime default NULL, `global_product_notifications` int(1) default '0', PRIMARY KEY (`customers_info_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customers_info` -- LOCK TABLES `customers_info` WRITE; /*!40000 ALTER TABLE `customers_info` DISABLE KEYS */; /*!40000 ALTER TABLE `customers_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customers_to_discount_codes` -- DROP TABLE IF EXISTS `customers_to_discount_codes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customers_to_discount_codes` ( `customers_id` int(11) NOT NULL default '0', `discount_codes_id` int(11) NOT NULL default '0', KEY `customers_id` (`customers_id`), KEY `discount_codes_id` (`discount_codes_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customers_to_discount_codes` -- LOCK TABLES `customers_to_discount_codes` WRITE; /*!40000 ALTER TABLE `customers_to_discount_codes` DISABLE KEYS */; /*!40000 ALTER TABLE `customers_to_discount_codes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `discount_codes` -- DROP TABLE IF EXISTS `discount_codes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `discount_codes` ( `discount_codes_id` int(11) NOT NULL auto_increment, `products_id` text, `categories_id` text, `manufacturers_id` text, `excluded_products_id` text, `customers_id` text, `orders_total` tinyint(1) NOT NULL default '0', `order_info` tinyint(1) NOT NULL default '0', `discount_codes` varchar(8) NOT NULL default '', `discount_values` varchar(8) NOT NULL default '', `minimum_order_amount` decimal(15,4) NOT NULL default '0.0000', `expires_date` date NOT NULL default '0000-00-00', `number_of_orders` int(4) NOT NULL default '0', `number_of_use` int(4) NOT NULL default '0', `number_of_products` int(4) NOT NULL default '0', `status` tinyint(1) NOT NULL default '1', PRIMARY KEY (`discount_codes_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `discount_codes` -- LOCK TABLES `discount_codes` WRITE; /*!40000 ALTER TABLE `discount_codes` DISABLE KEYS */; /*!40000 ALTER TABLE `discount_codes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `extra_field_labels` -- DROP TABLE IF EXISTS `extra_field_labels`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `extra_field_labels` ( `epf_id` int(10) unsigned NOT NULL, `languages_id` int(11) NOT NULL, `epf_label` varchar(64) default NULL, `epf_active_for_language` tinyint(1) NOT NULL default '1', PRIMARY KEY (`epf_id`,`languages_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `extra_field_labels` -- LOCK TABLES `extra_field_labels` WRITE; /*!40000 ALTER TABLE `extra_field_labels` DISABLE KEYS */; /*!40000 ALTER TABLE `extra_field_labels` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `extra_field_values` -- DROP TABLE IF EXISTS `extra_field_values`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `extra_field_values` ( `value_id` int(10) unsigned NOT NULL auto_increment, `epf_id` int(10) unsigned NOT NULL, `languages_id` int(11) NOT NULL, `parent_id` int(10) unsigned NOT NULL default '0', `sort_order` int(11) NOT NULL default '0', `epf_value` varchar(64) default NULL, `value_depends_on` int(10) unsigned NOT NULL default '0', `value_image` varchar(255) default NULL, PRIMARY KEY (`value_id`), KEY `IDX_EPF` (`epf_id`,`languages_id`), KEY `IDX_LINK` (`value_depends_on`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `extra_field_values` -- LOCK TABLES `extra_field_values` WRITE; /*!40000 ALTER TABLE `extra_field_values` DISABLE KEYS */; /*!40000 ALTER TABLE `extra_field_values` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `extra_product_fields` -- DROP TABLE IF EXISTS `extra_product_fields`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `extra_product_fields` ( `epf_id` int(10) unsigned NOT NULL auto_increment, `epf_order` int(11) NOT NULL default '0', `epf_status` tinyint(1) NOT NULL default '1', `epf_uses_value_list` tinyint(1) NOT NULL default '0', `epf_advanced_search` tinyint(1) NOT NULL default '1', `epf_show_in_listing` tinyint(1) NOT NULL default '0', `epf_size` tinyint(3) unsigned NOT NULL default '64', `epf_use_as_meta_keyword` tinyint(1) NOT NULL default '0', `epf_use_to_restrict_listings` tinyint(1) NOT NULL default '0', `epf_show_parent_chain` tinyint(1) NOT NULL default '0', `epf_quick_search` tinyint(1) NOT NULL default '0', `epf_multi_select` tinyint(1) NOT NULL default '0', `epf_checked_entry` tinyint(1) NOT NULL default '0', `epf_value_display_type` tinyint(1) NOT NULL default '0', `epf_num_columns` tinyint(3) unsigned NOT NULL default '1', `epf_has_linked_field` tinyint(1) NOT NULL default '0', `epf_links_to` int(10) unsigned NOT NULL default '0', `epf_textarea` tinyint(1) NOT NULL default '0', `epf_show_in_admin` tinyint(1) NOT NULL default '1', `epf_all_categories` tinyint(1) NOT NULL default '1', `epf_category_ids` text, PRIMARY KEY (`epf_id`), KEY `IDX_ORDER` (`epf_order`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `extra_product_fields` -- LOCK TABLES `extra_product_fields` WRITE; /*!40000 ALTER TABLE `extra_product_fields` DISABLE KEYS */; /*!40000 ALTER TABLE `extra_product_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `extra_value_exclude` -- DROP TABLE IF EXISTS `extra_value_exclude`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `extra_value_exclude` ( `value_id1` int(10) unsigned NOT NULL, `value_id2` int(10) unsigned NOT NULL, PRIMARY KEY (`value_id1`,`value_id2`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `extra_value_exclude` -- LOCK TABLES `extra_value_exclude` WRITE; /*!40000 ALTER TABLE `extra_value_exclude` DISABLE KEYS */; /*!40000 ALTER TABLE `extra_value_exclude` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `geo_zones` -- DROP TABLE IF EXISTS `geo_zones`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `geo_zones` ( `geo_zone_id` int(11) NOT NULL auto_increment, `geo_zone_name` varchar(32) NOT NULL, `geo_zone_description` varchar(255) NOT NULL, `last_modified` datetime default NULL, `date_added` datetime NOT NULL, PRIMARY KEY (`geo_zone_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `geo_zones` -- LOCK TABLES `geo_zones` WRITE; /*!40000 ALTER TABLE `geo_zones` DISABLE KEYS */; INSERT INTO `geo_zones` VALUES (1,'Florida','Florida local sales tax zone',NULL,'2013-10-23 16:04:26'); /*!40000 ALTER TABLE `geo_zones` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `information` -- DROP TABLE IF EXISTS `information`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `information` ( `information_id` tinyint(3) unsigned NOT NULL auto_increment, `information_group_id` int(11) unsigned NOT NULL default '0', `information_title` varchar(255) NOT NULL default '', `information_description` text NOT NULL, `parent_id` int(11) default NULL, `sort_order` tinyint(3) unsigned NOT NULL default '0', `visible` enum('1','0') NOT NULL default '1', `language_id` int(11) NOT NULL default '0', PRIMARY KEY (`information_id`,`language_id`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `information` -- LOCK TABLES `information` WRITE; /*!40000 ALTER TABLE `information` DISABLE KEYS */; INSERT INTO `information` VALUES (1,2,'HEADING_TITLE','What\'s New Here?',0,1,'1',1),(2,2,'TEXT_GREETING_PERSONAL','Welcome back <span class=\"greetUser\">%s!</span> Would you like to see which <a href=\"%s\"><u>new products</u></a> are available to purchase?',0,2,'1',1),(3,2,'TEXT_GREETING_PERSONAL_RELOGON','<small>If you are not %s, please <a href=\"%s\"><u>log yourself in</u></a> with your account information.</small>',0,3,'1',1),(4,2,'TEXT_GREETING_GUEST','Welcome <span class=\"greetUser\">Guest!</span> Would you like to <a href=\"%s\"><u>log yourself in</u></a>? Or would you prefer to <a href=\"%s\"><u>create an account</u></a>?',0,4,'1',1),(5,2,'TEXT_MAIN','This is a default text. Please go to visit the admin and change it.',0,5,'1',1); /*!40000 ALTER TABLE `information` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `information_group` -- DROP TABLE IF EXISTS `information_group`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `information_group` ( `information_group_id` int(11) NOT NULL auto_increment, `information_group_title` varchar(64) NOT NULL default '', `information_group_description` varchar(255) NOT NULL default '', `sort_order` int(5) default NULL, `visible` int(1) default '1', `locked` varchar(255) NOT NULL default '', PRIMARY KEY (`information_group_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `information_group` -- LOCK TABLES `information_group` WRITE; /*!40000 ALTER TABLE `information_group` DISABLE KEYS */; INSERT INTO `information_group` VALUES (1,'Information pages','Information pages',1,1,''),(2,'Welcome message','Welcome message',2,1,'information_title, sort_order, parent_id, visible'); /*!40000 ALTER TABLE `information_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `languages` -- DROP TABLE IF EXISTS `languages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `languages` ( `languages_id` int(11) NOT NULL auto_increment, `name` varchar(32) NOT NULL, `code` char(2) NOT NULL, `image` varchar(64) default NULL, `directory` varchar(32) default NULL, `sort_order` int(3) default NULL, PRIMARY KEY (`languages_id`), KEY `IDX_LANGUAGES_NAME` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `languages` -- LOCK TABLES `languages` WRITE; /*!40000 ALTER TABLE `languages` DISABLE KEYS */; INSERT INTO `languages` VALUES (1,'English','en','icon.gif','english',1); /*!40000 ALTER TABLE `languages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `manufacturers` -- DROP TABLE IF EXISTS `manufacturers`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `manufacturers` ( `manufacturers_id` int(11) NOT NULL auto_increment, `manufacturers_name` varchar(32) NOT NULL, `manufacturers_image` varchar(64) default NULL, `date_added` datetime default NULL, `last_modified` datetime default NULL, PRIMARY KEY (`manufacturers_id`), KEY `IDX_MANUFACTURERS_NAME` (`manufacturers_name`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `manufacturers` -- LOCK TABLES `manufacturers` WRITE; /*!40000 ALTER TABLE `manufacturers` DISABLE KEYS */; INSERT INTO `manufacturers` VALUES (1,'Matrox','manufacturer_matrox.gif','2013-10-23 16:04:26',NULL),(2,'Microsoft','manufacturer_microsoft.gif','2013-10-23 16:04:26',NULL),(3,'Warner','manufacturer_warner.gif','2013-10-23 16:04:26',NULL),(4,'Fox','manufacturer_fox.gif','2013-10-23 16:04:26',NULL),(5,'Logitech','manufacturer_logitech.gif','2013-10-23 16:04:26',NULL),(6,'Canon','manufacturer_canon.gif','2013-10-23 16:04:26',NULL),(7,'Sierra','manufacturer_sierra.gif','2013-10-23 16:04:26',NULL),(8,'GT Interactive','manufacturer_gt_interactive.gif','2013-10-23 16:04:26',NULL),(9,'Hewlett Packard','manufacturer_hewlett_packard.gif','2013-10-23 16:04:26',NULL),(10,'Samsung','manufacturer_samsung.png','2013-10-23 16:04:26',NULL); /*!40000 ALTER TABLE `manufacturers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `manufacturers_info` -- DROP TABLE IF EXISTS `manufacturers_info`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `manufacturers_info` ( `manufacturers_id` int(11) NOT NULL, `languages_id` int(11) NOT NULL, `manufacturers_url` varchar(255) NOT NULL, `url_clicked` int(5) NOT NULL default '0', `date_last_click` datetime default NULL, PRIMARY KEY (`manufacturers_id`,`languages_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `manufacturers_info` -- LOCK TABLES `manufacturers_info` WRITE; /*!40000 ALTER TABLE `manufacturers_info` DISABLE KEYS */; INSERT INTO `manufacturers_info` VALUES (1,1,'http://www.matrox.com',0,NULL),(2,1,'http://www.microsoft.com',0,NULL),(3,1,'http://www.warner.com',0,NULL),(4,1,'http://www.fox.com',0,NULL),(5,1,'http://www.logitech.com',0,NULL),(6,1,'http://www.canon.com',0,NULL),(7,1,'http://www.sierra.com',0,NULL),(8,1,'http://www.infogrames.com',0,NULL),(9,1,'http://www.hewlettpackard.com',0,NULL),(10,1,'http://www.samsung.com',0,NULL); /*!40000 ALTER TABLE `manufacturers_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletters` -- DROP TABLE IF EXISTS `newsletters`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `newsletters` ( `newsletters_id` int(11) NOT NULL auto_increment, `title` varchar(255) NOT NULL, `content` text NOT NULL, `module` varchar(255) NOT NULL, `date_added` datetime NOT NULL, `date_sent` datetime default NULL, `status` int(1) default NULL, `locked` int(1) default '0', PRIMARY KEY (`newsletters_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `newsletters` -- LOCK TABLES `newsletters` WRITE; /*!40000 ALTER TABLE `newsletters` DISABLE KEYS */; /*!40000 ALTER TABLE `newsletters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orders` -- DROP TABLE IF EXISTS `orders`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `orders` ( `orders_id` int(11) NOT NULL auto_increment, `customers_id` int(11) NOT NULL, `customers_name` varchar(255) NOT NULL, `customers_company` varchar(255) default NULL, `customers_street_address` varchar(255) NOT NULL, `customers_suburb` varchar(255) default NULL, `customers_city` varchar(255) NOT NULL, `customers_postcode` varchar(255) NOT NULL, `customers_state` varchar(255) default NULL, `customers_country` varchar(255) NOT NULL, `customers_telephone` varchar(255) default NULL, `customers_email_address` varchar(255) NOT NULL, `customers_address_format_id` int(5) NOT NULL, `customers_dummy_account` tinyint(3) unsigned NOT NULL, `delivery_name` varchar(255) NOT NULL, `delivery_company` varchar(255) default NULL, `delivery_street_address` varchar(255) NOT NULL, `delivery_suburb` varchar(255) default NULL, `delivery_city` varchar(255) NOT NULL, `delivery_postcode` varchar(255) NOT NULL, `delivery_state` varchar(255) default NULL, `delivery_country` varchar(255) NOT NULL, `delivery_address_format_id` int(5) NOT NULL, `billing_name` varchar(255) NOT NULL, `billing_company` varchar(255) default NULL, `billing_street_address` varchar(255) NOT NULL, `billing_suburb` varchar(255) default NULL, `billing_city` varchar(255) NOT NULL, `billing_postcode` varchar(255) NOT NULL, `billing_state` varchar(255) default NULL, `billing_country` varchar(255) NOT NULL, `billing_address_format_id` int(5) NOT NULL, `payment_method` varchar(255) NOT NULL, `cc_type` varchar(20) default NULL, `cc_owner` varchar(255) default NULL, `cc_number` varchar(32) default NULL, `cc_expires` varchar(4) default NULL, `last_modified` datetime default NULL, `date_purchased` datetime default NULL, `orders_status` int(5) NOT NULL, `orders_date_finished` datetime default NULL, `currency` char(3) default NULL, `currency_value` decimal(14,6) default NULL, `shipping_module` varchar(255) default NULL, PRIMARY KEY (`orders_id`), KEY `idx_orders_customers_id` (`customers_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `orders` -- LOCK TABLES `orders` WRITE; /*!40000 ALTER TABLE `orders` DISABLE KEYS */; /*!40000 ALTER TABLE `orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orders_products` -- DROP TABLE IF EXISTS `orders_products`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `orders_products` ( `orders_products_id` int(11) NOT NULL auto_increment, `orders_id` int(11) NOT NULL, `products_id` int(11) NOT NULL, `products_model` varchar(12) default NULL, `products_name` varchar(64) NOT NULL, `products_price` decimal(15,4) NOT NULL, `final_price` decimal(15,4) NOT NULL, `products_tax` decimal(7,4) NOT NULL, `products_quantity` int(2) NOT NULL, `products_stock_attributes` varchar(255) default NULL, PRIMARY KEY (`orders_products_id`), KEY `idx_orders_products_orders_id` (`orders_id`), KEY `idx_orders_products_products_id` (`products_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `orders_products` -- LOCK TABLES `orders_products` WRITE; /*!40000 ALTER TABLE `orders_products` DISABLE KEYS */; /*!40000 ALTER TABLE `orders_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orders_products_attributes` -- DROP TABLE IF EXISTS `orders_products_attributes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `orders_products_attributes` ( `orders_products_attributes_id` int(11) NOT NULL auto_increment, `orders_id` int(11) NOT NULL, `orders_products_id` int(11) NOT NULL, `products_options` varchar(32) NOT NULL, `products_options_values` varchar(32) NOT NULL, `options_values_price` decimal(15,4) NOT NULL, `price_prefix` char(1) NOT NULL, PRIMARY KEY (`orders_products_attributes_id`), KEY `idx_orders_products_att_orders_id` (`orders_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `orders_products_attributes` -- LOCK TABLES `orders_products_attributes` WRITE; /*!40000 ALTER TABLE `orders_products_attributes` DISABLE KEYS */; /*!40000 ALTER TABLE `orders_products_attributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orders_products_download` -- DROP TABLE IF EXISTS `orders_products_download`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `orders_products_download` ( `orders_products_download_id` int(11) NOT NULL auto_increment, `orders_id` int(11) NOT NULL default '0', `orders_products_id` int(11) NOT NULL default '0', `orders_products_filename` varchar(255) NOT NULL default '', `download_maxdays` int(2) NOT NULL default '0', `download_count` int(2) NOT NULL default '0', PRIMARY KEY (`orders_products_download_id`), KEY `idx_orders_products_download_orders_id` (`orders_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `orders_products_download` -- LOCK TABLES `orders_products_download` WRITE; /*!40000 ALTER TABLE `orders_products_download` DISABLE KEYS */; /*!40000 ALTER TABLE `orders_products_download` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orders_status` -- DROP TABLE IF EXISTS `orders_status`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `orders_status` ( `orders_status_id` int(11) NOT NULL default '0', `language_id` int(11) NOT NULL default '1', `orders_status_name` varchar(32) NOT NULL, `public_flag` int(11) default '1', `downloads_flag` int(11) default '0', PRIMARY KEY (`orders_status_id`,`language_id`), KEY `idx_orders_status_name` (`orders_status_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `orders_status` -- LOCK TABLES `orders_status` WRITE; /*!40000 ALTER TABLE `orders_status` DISABLE KEYS */; INSERT INTO `orders_status` VALUES (1,1,'Pending',1,0),(2,1,'Processing',1,1),(3,1,'Delivered',1,1),(4,1,'PayPal [Transactions]',0,0),(5,1,'Preparing [PayPal Standard]',0,0); /*!40000 ALTER TABLE `orders_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orders_status_history` -- DROP TABLE IF EXISTS `orders_status_history`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `orders_status_history` ( `orders_status_history_id` int(11) NOT NULL auto_increment, `orders_id` int(11) NOT NULL, `orders_status_id` int(5) NOT NULL, `date_added` datetime NOT NULL, `customer_notified` int(1) default '0', `comments` text, PRIMARY KEY (`orders_status_history_id`), KEY `idx_orders_status_history_orders_id` (`orders_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `orders_status_history` -- LOCK TABLES `orders_status_history` WRITE; /*!40000 ALTER TABLE `orders_status_history` DISABLE KEYS */; /*!40000 ALTER TABLE `orders_status_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orders_total` -- DROP TABLE IF EXISTS `orders_total`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `orders_total` ( `orders_total_id` int(10) unsigned NOT NULL auto_increment, `orders_id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `text` varchar(255) NOT NULL, `value` decimal(15,4) NOT NULL, `class` varchar(32) NOT NULL, `sort_order` int(11) NOT NULL, PRIMARY KEY (`orders_total_id`), KEY `idx_orders_total_orders_id` (`orders_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `orders_total` -- LOCK TABLES `orders_total` WRITE; /*!40000 ALTER TABLE `orders_total` DISABLE KEYS */; /*!40000 ALTER TABLE `orders_total` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products` -- DROP TABLE IF EXISTS `products`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `products` ( `products_id` int(11) NOT NULL auto_increment, `products_quantity` int(4) NOT NULL, `products_model` varchar(12) default NULL, `products_image` varchar(64) default NULL, `products_price` decimal(15,4) NOT NULL, `products_date_added` datetime NOT NULL, `products_last_modified` datetime default NULL, `products_date_available` datetime default NULL, `products_weight` decimal(5,2) NOT NULL, `products_status` tinyint(1) NOT NULL, `products_tax_class_id` int(11) NOT NULL, `manufacturers_id` int(11) default NULL, `products_ordered` int(11) NOT NULL default '0', `products_sort_order` int(11) default NULL, `products_seo_url` text, PRIMARY KEY (`products_id`), KEY `idx_products_model` (`products_model`), KEY `idx_products_date_added` (`products_date_added`) ) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `products` -- LOCK TABLES `products` WRITE; /*!40000 ALTER TABLE `products` DISABLE KEYS */; INSERT INTO `products` VALUES (1,32,'MG200MMS','matrox/mg200mms.gif','299.9900','2013-10-23 16:04:26',NULL,NULL,'23.00',1,1,1,0,NULL,NULL),(2,32,'MG400-32MB','matrox/mg400-32mb.gif','499.9900','2013-10-23 16:04:26',NULL,NULL,'23.00',1,1,1,0,NULL,NULL),(3,2,'MSIMPRO','microsoft/msimpro.gif','49.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,3,0,NULL,NULL),(4,13,'DVD-RPMK','dvd/replacement_killers.gif','42.0000','2013-10-23 16:04:26',NULL,NULL,'23.00',1,1,2,0,NULL,NULL),(5,17,'DVD-BLDRNDC','dvd/blade_runner.gif','35.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,3,0,NULL,NULL),(6,10,'DVD-MATR','dvd/the_matrix.gif','39.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,3,0,NULL,NULL),(7,10,'DVD-YGEM','dvd/youve_got_mail.gif','34.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,3,0,NULL,NULL),(8,10,'DVD-ABUG','dvd/a_bugs_life.gif','35.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,3,0,NULL,NULL),(9,10,'DVD-UNSG','dvd/under_siege.gif','29.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,3,0,NULL,NULL),(10,10,'DVD-UNSG2','dvd/under_siege2.gif','29.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,3,0,NULL,NULL),(11,10,'DVD-FDBL','dvd/fire_down_below.gif','29.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,3,0,NULL,NULL),(12,10,'DVD-DHWV','dvd/die_hard_3.gif','39.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,4,0,NULL,NULL),(13,10,'DVD-LTWP','dvd/lethal_weapon.gif','34.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,3,0,NULL,NULL),(14,10,'DVD-REDC','dvd/red_corner.gif','32.0000','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,3,0,NULL,NULL),(15,10,'DVD-FRAN','dvd/frantic.gif','35.0000','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,3,0,NULL,NULL),(16,10,'DVD-CUFI','dvd/courage_under_fire.gif','38.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,4,0,NULL,NULL),(17,10,'DVD-SPEED','dvd/speed.gif','39.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,4,0,NULL,NULL),(18,10,'DVD-SPEED2','dvd/speed_2.gif','42.0000','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,4,0,NULL,NULL),(19,10,'DVD-TSAB','dvd/theres_something_about_mary.gif','49.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,4,0,NULL,NULL),(20,10,'DVD-BELOVED','dvd/beloved.gif','54.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,3,0,NULL,NULL),(21,16,'PC-SWAT3','sierra/swat_3.gif','79.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,7,0,NULL,NULL),(22,13,'PC-UNTM','gt_interactive/unreal_tournament.gif','89.9900','2013-10-23 16:04:26',NULL,NULL,'7.00',1,1,8,0,NULL,NULL),(23,16,'PC-TWOF','gt_interactive/wheel_of_time.gif','99.9900','2013-10-23 16:04:26',NULL,NULL,'10.00',1,1,8,0,NULL,NULL),(24,17,'PC-DISC','gt_interactive/disciples.gif','90.0000','2013-10-23 16:04:26',NULL,NULL,'8.00',1,1,8,0,NULL,NULL),(25,16,'MSINTKB','microsoft/intkeyboardps2.gif','69.9900','2013-10-23 16:04:26',NULL,NULL,'8.00',1,1,2,0,NULL,NULL),(26,10,'MSIMEXP','microsoft/imexplorer.gif','64.9500','2013-10-23 16:04:26',NULL,NULL,'8.00',1,1,2,0,NULL,NULL),(27,8,'HPLJ1100XI','hewlett_packard/lj1100xi.gif','499.9900','2013-10-23 16:04:26',NULL,NULL,'45.00',1,1,9,0,NULL,NULL),(28,100,'GT-P1000','samsung/galaxy_tab.gif','749.9900','2013-10-23 16:04:26',NULL,NULL,'1.00',1,1,10,0,NULL,NULL); /*!40000 ALTER TABLE `products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products_attributes` -- DROP TABLE IF EXISTS `products_attributes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `products_attributes` ( `products_attributes_id` int(11) NOT NULL auto_increment, `products_id` int(11) NOT NULL, `options_id` int(11) NOT NULL, `options_values_id` int(11) NOT NULL, `options_values_price` decimal(15,4) NOT NULL, `price_prefix` char(1) NOT NULL, `products_options_sort_order` int(10) default '0', PRIMARY KEY (`products_attributes_id`), KEY `idx_products_attributes_products_id` (`products_id`) ) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `products_attributes` -- LOCK TABLES `products_attributes` WRITE; /*!40000 ALTER TABLE `products_attributes` DISABLE KEYS */; INSERT INTO `products_attributes` VALUES (1,1,4,1,'0.0000','+',0),(2,1,4,2,'50.0000','+',0),(3,1,4,3,'70.0000','+',0),(4,1,3,5,'0.0000','+',0),(5,1,3,6,'100.0000','+',0),(6,2,4,3,'10.0000','-',0),(7,2,4,4,'0.0000','+',0),(8,2,3,6,'0.0000','+',0),(9,2,3,7,'120.0000','+',0),(10,26,3,8,'0.0000','+',0),(11,26,3,9,'6.0000','+',0),(26,22,5,10,'0.0000','+',0),(27,22,5,13,'0.0000','+',0); /*!40000 ALTER TABLE `products_attributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products_attributes_download` -- DROP TABLE IF EXISTS `products_attributes_download`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `products_attributes_download` ( `products_attributes_id` int(11) NOT NULL, `products_attributes_filename` varchar(255) NOT NULL default '', `products_attributes_maxdays` int(2) default '0', `products_attributes_maxcount` int(2) default '0', PRIMARY KEY (`products_attributes_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `products_attributes_download` -- LOCK TABLES `products_attributes_download` WRITE; /*!40000 ALTER TABLE `products_attributes_download` DISABLE KEYS */; INSERT INTO `products_attributes_download` VALUES (26,'unreal.zip',7,3); /*!40000 ALTER TABLE `products_attributes_download` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products_description` -- DROP TABLE IF EXISTS `products_description`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `products_description` ( `products_id` int(11) NOT NULL auto_increment, `language_id` int(11) NOT NULL default '1', `products_name` varchar(64) NOT NULL default '', `products_description` text, `products_url` varchar(255) default NULL, `products_viewed` int(5) default '0', `products_head_title_tag` text, `products_head_desc_tag` text, `products_head_keywords_tag` text, PRIMARY KEY (`products_id`,`language_id`), KEY `products_name` (`products_name`) ) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `products_description` -- LOCK TABLES `products_description` WRITE; /*!40000 ALTER TABLE `products_description` DISABLE KEYS */; INSERT INTO `products_description` VALUES (1,1,'Matrox G200 MMS','Reinforcing its position as a multi-monitor trailblazer, Matrox Graphics Inc. has once again developed the most flexible and highly advanced solution in the industry. Introducing the new Matrox G200 Multi-Monitor Series; the first graphics card ever to support up to four DVI digital flat panel displays on a single 8" PCI board.<br /><br />With continuing demand for digital flat panels in the financial workplace, the Matrox G200 MMS is the ultimate in flexible solutions. The Matrox G200 MMS also supports the new digital video interface (DVI) created by the Digital Display Working Group (DDWG) designed to ease the adoption of digital flat panels. Other configurations include composite video capture ability and onboard TV tuner, making the Matrox G200 MMS the complete solution for business needs.<br /><br />Based on the award-winning MGA-G200 graphics chip, the Matrox G200 Multi-Monitor Series provides superior 2D/3D graphics acceleration to meet the demanding needs of business applications such as real-time stock quotes (Versus), live video feeds (Reuters & Bloombergs), multiple windows applications, word processing, spreadsheets and CAD.','www.matrox.com/mga/products/g200_mms/home.cfm',0,NULL,NULL,NULL),(2,1,'Matrox G400 32MB','<strong>Dramatically Different High Performance Graphics</strong><br /><br />Introducing the Millennium G400 Series - a dramatically different, high performance graphics experience. Armed with the industry\'s fastest graphics chip, the Millennium G400 Series takes explosive acceleration two steps further by adding unprecedented image quality, along with the most versatile display options for all your 3D, 2D and DVD applications. As the most powerful and innovative tools in your PC\'s arsenal, the Millennium G400 Series will not only change the way you see graphics, but will revolutionize the way you use your computer.<br /><br /><strong>Key features:</strong><ul><li>New Matrox G400 256-bit DualBus graphics chip</li><li>Explosive 3D, 2D and DVD performance</li><li>DualHead Display</li><li>Superior DVD and TV output</li><li>3D Environment-Mapped Bump Mapping</li><li>Vibrant Color Quality rendering </li><li>UltraSharp DAC of up to 360 MHz</li><li>3D Rendering Array Processor</li><li>Support for 16 or 32 MB of memory</li></ul>','www.matrox.com/mga/products/mill_g400/home.htm',0,NULL,NULL,NULL),(3,1,'Microsoft IntelliMouse Pro','Every element of IntelliMouse Pro - from its unique arched shape to the texture of the rubber grip around its base - is the product of extensive customer and ergonomic research. Microsoft\'s popular wheel control, which now allows zooming and universal scrolling functions, gives IntelliMouse Pro outstanding comfort and efficiency.','www.microsoft.com/hardware/mouse/intellimouse.asp',0,NULL,NULL,NULL),(4,1,'The Replacement Killers','Regional Code: 2 (Japan, Europe, Middle East, South Africa).<br />Languages: English, Deutsch.<br />Subtitles: English, Deutsch, Spanish.<br />Audio: Dolby Surround 5.1.<br />Picture Format: 16:9 Wide-Screen.<br />Length: (approx) 80 minutes.<br />Other: Interactive Menus, Chapter Selection, Subtitles (more languages).','www.replacement-killers.com',0,NULL,NULL,NULL),(5,1,'Blade Runner - Director\'s Cut','Regional Code: 2 (Japan, Europe, Middle East, South Africa).<br />Languages: English, Deutsch.<br />Subtitles: English, Deutsch, Spanish.<br />Audio: Dolby Surround 5.1.<br />Picture Format: 16:9 Wide-Screen.<br />Length: (approx) 112 minutes.<br />Other: Interactive Menus, Chapter Selection, Subtitles (more languages).','www.bladerunner.com',0,NULL,NULL,NULL),(6,1,'The Matrix','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch.\r<br />\nSubtitles: English, Deutsch.\r<br />\nAudio: Dolby Surround.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 131 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Making Of.','www.thematrix.com',0,NULL,NULL,NULL),(7,1,'You\'ve Got Mail','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch, Spanish.\r<br />\nSubtitles: English, Deutsch, Spanish, French, Nordic, Polish.\r<br />\nAudio: Dolby Digital 5.1.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 115 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Subtitles (more languages).','www.youvegotmail.com',0,NULL,NULL,NULL),(8,1,'A Bug\'s Life','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch.\r<br />\nSubtitles: English, Deutsch, Spanish.\r<br />\nAudio: Dolby Digital 5.1 / Dobly Surround Stereo.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 91 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Subtitles (more languages).','www.abugslife.com',0,NULL,NULL,NULL),(9,1,'Under Siege','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch.\r<br />\nSubtitles: English, Deutsch, Spanish.\r<br />\nAudio: Dolby Surround 5.1.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 98 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Subtitles (more languages).','',0,NULL,NULL,NULL),(10,1,'Under Siege 2 - Dark Territory','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch.\r<br />\nSubtitles: English, Deutsch, Spanish.\r<br />\nAudio: Dolby Surround 5.1.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 98 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Subtitles (more languages).','',0,NULL,NULL,NULL),(11,1,'Fire Down Below','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch.\r<br />\nSubtitles: English, Deutsch, Spanish.\r<br />\nAudio: Dolby Surround 5.1.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 100 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Subtitles (more languages).','',0,NULL,NULL,NULL),(12,1,'Die Hard With A Vengeance','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch.\r<br />\nSubtitles: English, Deutsch, Spanish.\r<br />\nAudio: Dolby Surround 5.1.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 122 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Subtitles (more languages).','',0,NULL,NULL,NULL),(13,1,'Lethal Weapon','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch.\r<br />\nSubtitles: English, Deutsch, Spanish.\r<br />\nAudio: Dolby Surround 5.1.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 100 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Subtitles (more languages).','',0,NULL,NULL,NULL),(14,1,'Red Corner','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch.\r<br />\nSubtitles: English, Deutsch, Spanish.\r<br />\nAudio: Dolby Surround 5.1.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 117 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Subtitles (more languages).','',0,NULL,NULL,NULL),(15,1,'Frantic','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch.\r<br />\nSubtitles: English, Deutsch, Spanish.\r<br />\nAudio: Dolby Surround 5.1.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 115 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Subtitles (more languages).','',0,NULL,NULL,NULL),(16,1,'Courage Under Fire','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch.\r<br />\nSubtitles: English, Deutsch, Spanish.\r<br />\nAudio: Dolby Surround 5.1.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 112 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Subtitles (more languages).','',0,NULL,NULL,NULL),(17,1,'Speed','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch.\r<br />\nSubtitles: English, Deutsch, Spanish.\r<br />\nAudio: Dolby Surround 5.1.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 112 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Subtitles (more languages).','',0,NULL,NULL,NULL),(18,1,'Speed 2: Cruise Control','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch.\r<br />\nSubtitles: English, Deutsch, Spanish.\r<br />\nAudio: Dolby Surround 5.1.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 120 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Subtitles (more languages).','',0,NULL,NULL,NULL),(19,1,'There\'s Something About Mary','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch.\r<br />\nSubtitles: English, Deutsch, Spanish.\r<br />\nAudio: Dolby Surround 5.1.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 114 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Subtitles (more languages).','',0,NULL,NULL,NULL),(20,1,'Beloved','Regional Code: 2 (Japan, Europe, Middle East, South Africa).\r<br />\nLanguages: English, Deutsch.\r<br />\nSubtitles: English, Deutsch, Spanish.\r<br />\nAudio: Dolby Surround 5.1.\r<br />\nPicture Format: 16:9 Wide-Screen.\r<br />\nLength: (approx) 164 minutes.\r<br />\nOther: Interactive Menus, Chapter Selection, Subtitles (more languages).','',0,NULL,NULL,NULL),(21,1,'SWAT 3: Close Quarters Battle','<strong>Windows 95/98</strong><br /><br />211 in progress with shots fired. Officer down. Armed suspects with hostages. Respond Code 3! Los Angles, 2005, In the next seven days, representatives from every nation around the world will converge on Las Angles to witness the signing of the United Nations Nuclear Abolishment Treaty. The protection of these dignitaries falls on the shoulders of one organization, LAPD SWAT. As part of this elite tactical organization, you and your team have the weapons and all the training necessary to protect, to serve, and \"When needed\" to use deadly force to keep the peace. It takes more than weapons to make it through each mission. Your arsenal includes C2 charges, flashbangs, tactical grenades. opti-Wand mini-video cameras, and other devices critical to meeting your objectives and keeping your men free of injury. Uncompromised Duty, Honor and Valor!','www.swat3.com',0,NULL,NULL,NULL),(22,1,'Unreal Tournament','From the creators of the best-selling Unreal, comes Unreal Tournament. A new kind of single player experience. A ruthless multiplayer revolution.<br /><br />This stand-alone game showcases completely new team-based gameplay, groundbreaking multi-faceted single player action or dynamic multi-player mayhem. It\'s a fight to the finish for the title of Unreal Grand Master in the gladiatorial arena. A single player experience like no other! Guide your team of \'bots\' (virtual teamates) against the hardest criminals in the galaxy for the ultimate title - the Unreal Grand Master.','www.unrealtournament.net',0,NULL,NULL,NULL),(23,1,'The Wheel Of Time','The world in which The Wheel of Time takes place is lifted directly out of Jordan\'s pages; it\'s huge and consists of many different environments. How you navigate the world will depend largely on which game - single player or multipayer - you\'re playing. The single player experience, with a few exceptions, will see Elayna traversing the world mainly by foot (with a couple notable exceptions). In the multiplayer experience, your character will have more access to travel via Ter\'angreal, Portal Stones, and the Ways. However you move around, though, you\'ll quickly discover that means of locomotion can easily become the least of the your worries...<br /><br />During your travels, you quickly discover that four locations are crucial to your success in the game. Not surprisingly, these locations are the homes of The Wheel of Time\'s main characters. Some of these places are ripped directly from the pages of Jordan\'s books, made flesh with Legend\'s unparalleled pixel-pushing ways. Other places are specific to the game, conceived and executed with the intent of expanding this game world even further. Either way, they provide a backdrop for some of the most intense first person action and strategy you\'ll have this year.','www.wheeloftime.com',0,NULL,NULL,NULL),(24,1,'Disciples: Sacred Lands','A new age is dawning...<br /><br />Enter the realm of the Sacred Lands, where the dawn of a New Age has set in motion the most momentous of wars. As the prophecies long foretold, four races now clash with swords and sorcery in a desperate bid to control the destiny of their gods. Take on the quest as a champion of the Empire, the Mountain Clans, the Legions of the Damned, or the Undead Hordes and test your faith in battles of brute force, spellbinding magic and acts of guile. Slay demons, vanquish giants and combat merciless forces of the dead and undead. But to ensure the salvation of your god, the hero within must evolve.<br /><br />The day of reckoning has come... and only the chosen will survive.','',0,NULL,NULL,NULL),(25,1,'Microsoft Internet Keyboard PS/2','The Internet Keyboard has 10 Hot Keys on a comfortable standard keyboard design that also includes a detachable palm rest. The Hot Keys allow you to browse the web, or check e-mail directly from your keyboard. The IntelliType Pro software also allows you to customize your hot keys - make the Internet Keyboard work the way you want it to!','',0,NULL,NULL,NULL),(26,1,'Microsoft IntelliMouse Explorer','Microsoft introduces its most advanced mouse, the IntelliMouse Explorer! IntelliMouse Explorer features a sleek design, an industrial-silver finish, a glowing red underside and taillight, creating a style and look unlike any other mouse. IntelliMouse Explorer combines the accuracy and reliability of Microsoft IntelliEye optical tracking technology, the convenience of two new customizable function buttons, the efficiency of the scrolling wheel and the comfort of expert ergonomic design. All these great features make this the best mouse for the PC!','www.microsoft.com/hardware/mouse/explorer.asp',0,NULL,NULL,NULL),(27,1,'Hewlett Packard LaserJet 1100Xi','HP has always set the pace in laser printing technology. The new generation HP LaserJet 1100 series sets another impressive pace, delivering a stunning 8 pages per minute print speed. The 600 dpi print resolution with HP\'s Resolution Enhancement technology (REt) makes every document more professional.<br /><br />Enhanced print speed and laser quality results are just the beginning. With 2MB standard memory, HP LaserJet 1100xi users will be able to print increasingly complex pages. Memory can be increased to 18MB to tackle even more complex documents with ease. The HP LaserJet 1100xi supports key operating systems including Windows 3.1, 3.11, 95, 98, NT 4.0, OS/2 and DOS. Network compatibility available via the optional HP JetDirect External Print Servers.<br /><br />HP LaserJet 1100xi also features The Document Builder for the Web Era from Trellix Corp. (featuring software to create Web documents).','www.pandi.hp.com/pandi-db/prodinfo.main?product=laserjet1100',0,NULL,NULL,NULL),(28,1,'Samsung Galaxy Tab','<p>Powered by a Cortex A8 1.0GHz application processor, the Samsung GALAXY Tab is designed to deliver high performance whenever and wherever you are. At the same time, HD video contents are supported by a wide range of multimedia formats (DivX, XviD, MPEG4, H.263, H.264 and more), which maximizes the joy of entertainment.</p><p>With 3G HSPA connectivity, 802.11n Wi-Fi, and Bluetooth 3.0, the Samsung GALAXY Tab enhances users\' mobile communication on a whole new level. Video conferencing and push email on the large 7-inch display make communication more smooth and efficient. For voice telephony, the Samsung GALAXY Tab turns out to be a perfect speakerphone on the desk, or a mobile phone on the move via Bluetooth headset.</p>','http://galaxytab.samsungmobile.com',0,NULL,NULL,NULL); /*!40000 ALTER TABLE `products_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products_images` -- DROP TABLE IF EXISTS `products_images`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `products_images` ( `id` int(11) NOT NULL auto_increment, `products_id` int(11) NOT NULL, `image` varchar(64) default NULL, `htmlcontent` text, `sort_order` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `products_images_prodid` (`products_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `products_images` -- LOCK TABLES `products_images` WRITE; /*!40000 ALTER TABLE `products_images` DISABLE KEYS */; INSERT INTO `products_images` VALUES (1,28,'samsung/galaxy_tab_1.jpg',NULL,1),(2,28,'samsung/galaxy_tab_2.jpg',NULL,2),(3,28,'samsung/galaxy_tab_3.jpg',NULL,3),(4,28,'samsung/galaxy_tab_4.jpg','<object type=\"application/x-shockwave-flash\" width=\"640\" height=\"385\" data=\"http://www.youtube.com/v/tAbsmHMAhrQ?fs=1&autoplay=1\"><param name=\"movie\" value=\"http://www.youtube.com/v/tAbsmHMAhrQ?fs=1&autoplay=1\" /><param name=\"allowFullScreen\" value=\"true\" /><param name=\"allowscriptaccess\" value=\"always\" /><param name=\"wmode\" value=\"transparent\" /></object>',4); /*!40000 ALTER TABLE `products_images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products_notifications` -- DROP TABLE IF EXISTS `products_notifications`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `products_notifications` ( `products_id` int(11) NOT NULL, `customers_id` int(11) NOT NULL, `date_added` datetime NOT NULL, PRIMARY KEY (`products_id`,`customers_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `products_notifications` -- LOCK TABLES `products_notifications` WRITE; /*!40000 ALTER TABLE `products_notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `products_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products_options` -- DROP TABLE IF EXISTS `products_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `products_options` ( `products_options_id` int(11) NOT NULL default '0', `language_id` int(11) NOT NULL default '1', `products_options_name` varchar(32) NOT NULL default '', `products_options_track_stock` tinyint(4) NOT NULL default '0', `products_options_type` int(5) NOT NULL, `products_options_length` smallint(2) NOT NULL default '32', `products_options_comment` varchar(32) default NULL, PRIMARY KEY (`products_options_id`,`language_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `products_options` -- LOCK TABLES `products_options` WRITE; /*!40000 ALTER TABLE `products_options` DISABLE KEYS */; INSERT INTO `products_options` VALUES (1,1,'Color',0,0,32,NULL),(2,1,'Size',0,0,32,NULL),(3,1,'Model',0,0,32,NULL),(4,1,'Memory',0,0,32,NULL),(5,1,'Version',0,0,32,NULL); /*!40000 ALTER TABLE `products_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products_options_values` -- DROP TABLE IF EXISTS `products_options_values`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `products_options_values` ( `products_options_values_id` int(11) NOT NULL default '0', `language_id` int(11) NOT NULL default '1', `products_options_values_name` varchar(64) NOT NULL default '', PRIMARY KEY (`products_options_values_id`,`language_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `products_options_values` -- LOCK TABLES `products_options_values` WRITE; /*!40000 ALTER TABLE `products_options_values` DISABLE KEYS */; INSERT INTO `products_options_values` VALUES (1,1,'4 mb'),(2,1,'8 mb'),(3,1,'16 mb'),(4,1,'32 mb'),(5,1,'Value'),(6,1,'Premium'),(7,1,'Deluxe'),(8,1,'PS/2'),(9,1,'USB'),(10,1,'Download: Windows - English'),(13,1,'Box: Windows - English'),(14,1,'TEXT'); /*!40000 ALTER TABLE `products_options_values` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products_options_values_to_products_options` -- DROP TABLE IF EXISTS `products_options_values_to_products_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `products_options_values_to_products_options` ( `products_options_values_to_products_options_id` int(11) NOT NULL auto_increment, `products_options_id` int(11) NOT NULL, `products_options_values_id` int(11) NOT NULL, PRIMARY KEY (`products_options_values_to_products_options_id`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `products_options_values_to_products_options` -- LOCK TABLES `products_options_values_to_products_options` WRITE; /*!40000 ALTER TABLE `products_options_values_to_products_options` DISABLE KEYS */; INSERT INTO `products_options_values_to_products_options` VALUES (1,4,1),(2,4,2),(3,4,3),(4,4,4),(5,3,5),(6,3,6),(7,3,7),(8,3,8),(9,3,9),(10,5,10),(13,5,13); /*!40000 ALTER TABLE `products_options_values_to_products_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products_shipping` -- DROP TABLE IF EXISTS `products_shipping`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `products_shipping` ( `products_id` int(11) NOT NULL default '0', `products_ship_methods_id` int(11) default NULL, `products_ship_zip` varchar(32) default NULL, `products_ship_price` varchar(10) default NULL, `products_ship_price_two` varchar(10) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `products_shipping` -- LOCK TABLES `products_shipping` WRITE; /*!40000 ALTER TABLE `products_shipping` DISABLE KEYS */; /*!40000 ALTER TABLE `products_shipping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products_stock` -- DROP TABLE IF EXISTS `products_stock`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `products_stock` ( `products_stock_id` int(11) NOT NULL auto_increment, `products_id` int(11) NOT NULL default '0', `products_stock_attributes` varchar(255) NOT NULL, `products_stock_quantity` int(11) NOT NULL default '0', PRIMARY KEY (`products_stock_id`), UNIQUE KEY `idx_products_stock_attributes` (`products_id`,`products_stock_attributes`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `products_stock` -- LOCK TABLES `products_stock` WRITE; /*!40000 ALTER TABLE `products_stock` DISABLE KEYS */; /*!40000 ALTER TABLE `products_stock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products_to_categories` -- DROP TABLE IF EXISTS `products_to_categories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `products_to_categories` ( `products_id` int(11) NOT NULL, `categories_id` int(11) NOT NULL, PRIMARY KEY (`products_id`,`categories_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `products_to_categories` -- LOCK TABLES `products_to_categories` WRITE; /*!40000 ALTER TABLE `products_to_categories` DISABLE KEYS */; INSERT INTO `products_to_categories` VALUES (1,4),(2,4),(3,9),(4,10),(5,11),(6,10),(7,12),(8,13),(9,10),(10,10),(11,10),(12,10),(13,10),(14,15),(15,14),(16,15),(17,10),(18,10),(19,12),(20,15),(21,18),(22,19),(23,20),(24,20),(25,8),(26,9),(27,5),(28,21); /*!40000 ALTER TABLE `products_to_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reviews` -- DROP TABLE IF EXISTS `reviews`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `reviews` ( `reviews_id` int(11) NOT NULL auto_increment, `products_id` int(11) NOT NULL, `customers_id` int(11) default NULL, `customers_name` varchar(255) NOT NULL, `reviews_rating` int(1) default NULL, `date_added` datetime default NULL, `last_modified` datetime default NULL, `reviews_status` tinyint(1) NOT NULL default '0', `reviews_read` int(5) NOT NULL default '0', PRIMARY KEY (`reviews_id`), KEY `idx_reviews_products_id` (`products_id`), KEY `idx_reviews_customers_id` (`customers_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `reviews` -- LOCK TABLES `reviews` WRITE; /*!40000 ALTER TABLE `reviews` DISABLE KEYS */; INSERT INTO `reviews` VALUES (1,19,0,'John Doe',5,'2013-10-23 16:04:26',NULL,1,0); /*!40000 ALTER TABLE `reviews` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reviews_description` -- DROP TABLE IF EXISTS `reviews_description`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `reviews_description` ( `reviews_id` int(11) NOT NULL, `languages_id` int(11) NOT NULL, `reviews_text` text NOT NULL, PRIMARY KEY (`reviews_id`,`languages_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `reviews_description` -- LOCK TABLES `reviews_description` WRITE; /*!40000 ALTER TABLE `reviews_description` DISABLE KEYS */; INSERT INTO `reviews_description` VALUES (1,1,'This has to be one of the funniest movies released for 1999!'); /*!40000 ALTER TABLE `reviews_description` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sec_directory_whitelist` -- DROP TABLE IF EXISTS `sec_directory_whitelist`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sec_directory_whitelist` ( `id` int(11) NOT NULL auto_increment, `directory` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sec_directory_whitelist` -- LOCK TABLES `sec_directory_whitelist` WRITE; /*!40000 ALTER TABLE `sec_directory_whitelist` DISABLE KEYS */; INSERT INTO `sec_directory_whitelist` VALUES (1,'admin/backups'),(2,'admin/images/graphs'),(3,'images'),(4,'images/banners'),(5,'images/dvd'),(6,'images/gt_interactive'),(7,'images/hewlett_packard'),(8,'images/matrox'),(9,'images/microsoft'),(10,'images/sierra'),(11,'includes/work'),(12,'pub'); /*!40000 ALTER TABLE `sec_directory_whitelist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sessions` -- DROP TABLE IF EXISTS `sessions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sessions` ( `sesskey` varchar(32) NOT NULL, `expiry` int(11) unsigned NOT NULL, `value` text NOT NULL, PRIMARY KEY (`sesskey`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sessions` -- LOCK TABLES `sessions` WRITE; /*!40000 ALTER TABLE `sessions` DISABLE KEYS */; /*!40000 ALTER TABLE `sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `slideshow` -- DROP TABLE IF EXISTS `slideshow`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `slideshow` ( `slideshow_id` int(11) NOT NULL auto_increment, `slideshow_name` varchar(255) NOT NULL default '', `slideshow_description` text NOT NULL, `slideshow_image` varchar(255) default NULL, `slideshow_url` tinytext NOT NULL, `date_added` datetime default NULL, `last_modified` datetime default NULL, PRIMARY KEY (`slideshow_id`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `slideshow` -- LOCK TABLES `slideshow` WRITE; /*!40000 ALTER TABLE `slideshow` DISABLE KEYS */; /*!40000 ALTER TABLE `slideshow` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `specials` -- DROP TABLE IF EXISTS `specials`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `specials` ( `specials_id` int(11) NOT NULL auto_increment, `products_id` int(11) NOT NULL, `specials_new_products_price` decimal(15,4) NOT NULL, `specials_date_added` datetime default NULL, `specials_last_modified` datetime default NULL, `expires_date` datetime default NULL, `date_status_change` datetime default NULL, `status` int(1) NOT NULL default '1', PRIMARY KEY (`specials_id`), KEY `idx_specials_products_id` (`products_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `specials` -- LOCK TABLES `specials` WRITE; /*!40000 ALTER TABLE `specials` DISABLE KEYS */; INSERT INTO `specials` VALUES (1,3,'39.9900','2013-10-23 16:04:26',NULL,NULL,NULL,1),(2,5,'30.0000','2013-10-23 16:04:26',NULL,NULL,NULL,1),(3,6,'30.0000','2013-10-23 16:04:26',NULL,NULL,NULL,1),(4,16,'29.9900','2013-10-23 16:04:26',NULL,NULL,NULL,1); /*!40000 ALTER TABLE `specials` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_class` -- DROP TABLE IF EXISTS `tax_class`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tax_class` ( `tax_class_id` int(11) NOT NULL auto_increment, `tax_class_title` varchar(32) NOT NULL, `tax_class_description` varchar(255) NOT NULL, `last_modified` datetime default NULL, `date_added` datetime NOT NULL, PRIMARY KEY (`tax_class_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tax_class` -- LOCK TABLES `tax_class` WRITE; /*!40000 ALTER TABLE `tax_class` DISABLE KEYS */; INSERT INTO `tax_class` VALUES (1,'Taxable Goods','The following types of products are included non-food, services, etc','2013-10-23 16:04:26','2013-10-23 16:04:26'); /*!40000 ALTER TABLE `tax_class` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_rates` -- DROP TABLE IF EXISTS `tax_rates`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tax_rates` ( `tax_rates_id` int(11) NOT NULL auto_increment, `tax_zone_id` int(11) NOT NULL, `tax_class_id` int(11) NOT NULL, `tax_priority` int(5) default '1', `tax_rate` decimal(7,4) NOT NULL, `tax_description` varchar(255) NOT NULL, `last_modified` datetime default NULL, `date_added` datetime NOT NULL, PRIMARY KEY (`tax_rates_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tax_rates` -- LOCK TABLES `tax_rates` WRITE; /*!40000 ALTER TABLE `tax_rates` DISABLE KEYS */; INSERT INTO `tax_rates` VALUES (1,1,1,1,'7.0000','FL TAX 7.0%','2013-10-23 16:04:26','2013-10-23 16:04:26'); /*!40000 ALTER TABLE `tax_rates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `whos_online` -- DROP TABLE IF EXISTS `whos_online`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `whos_online` ( `customer_id` int(11) default NULL, `full_name` varchar(255) NOT NULL, `session_id` varchar(128) NOT NULL, `ip_address` varchar(15) NOT NULL, `time_entry` varchar(14) NOT NULL, `time_last_click` varchar(14) NOT NULL, `last_page_url` text NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `whos_online` -- LOCK TABLES `whos_online` WRITE; /*!40000 ALTER TABLE `whos_online` DISABLE KEYS */; INSERT INTO `whos_online` VALUES (0,'Guest','oj4tj2b9dohoo5bhc6u4r8jtf1','68.52.2.58','1382560127','1382560127','/store/'); /*!40000 ALTER TABLE `whos_online` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL auto_increment, `comment_id` bigint(20) unsigned NOT NULL default '0', `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`) ) ENGINE=MyISAM AUTO_INCREMENT=193 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; INSERT INTO `wp_commentmeta` VALUES (49,64,'_wp_trash_meta_status','0'),(48,57,'_wp_trash_meta_status','0'),(14,22,'_wp_trash_meta_status','0'),(12,17,'_wp_trash_meta_status','0'),(13,18,'_wp_trash_meta_status','0'),(15,24,'_wp_trash_meta_status','0'),(16,25,'_wp_trash_meta_status','0'),(17,26,'_wp_trash_meta_status','0'),(18,29,'_wp_trash_meta_status','0'),(19,30,'_wp_trash_meta_status','0'),(20,28,'_wp_trash_meta_status','0'),(21,33,'_wp_trash_meta_status','0'),(22,32,'_wp_trash_meta_status','0'),(23,31,'_wp_trash_meta_status','0'),(24,34,'_wp_trash_meta_status','0'),(25,38,'_wp_trash_meta_status','0'),(26,37,'_wp_trash_meta_status','0'),(27,36,'_wp_trash_meta_status','0'),(28,35,'_wp_trash_meta_status','0'),(29,46,'_wp_trash_meta_status','0'),(30,45,'_wp_trash_meta_status','0'),(31,44,'_wp_trash_meta_status','0'),(32,43,'_wp_trash_meta_status','0'),(33,42,'_wp_trash_meta_status','0'),(34,41,'_wp_trash_meta_status','0'),(35,39,'_wp_trash_meta_status','0'),(36,40,'_wp_trash_meta_status','0'),(37,47,'_wp_trash_meta_status','0'),(38,48,'_wp_trash_meta_status','0'),(39,49,'_wp_trash_meta_status','0'),(40,53,'_wp_trash_meta_status','0'),(41,52,'_wp_trash_meta_status','0'),(42,51,'_wp_trash_meta_status','0'),(43,50,'_wp_trash_meta_status','0'),(44,54,'_wp_trash_meta_status','0'),(45,55,'_wp_trash_meta_status','0'),(46,27,'_wp_trash_meta_status','1'),(47,56,'_wp_trash_meta_status','0'),(145,159,'_wp_trash_meta_status','0'),(51,62,'_wp_trash_meta_status','0'),(52,61,'_wp_trash_meta_status','0'),(54,59,'_wp_trash_meta_status','0'),(55,58,'_wp_trash_meta_status','0'),(56,68,'_wp_trash_meta_status','0'),(57,67,'_wp_trash_meta_status','0'),(58,66,'_wp_trash_meta_status','0'),(59,65,'_wp_trash_meta_status','0'),(60,69,'_wp_trash_meta_status','0'),(61,71,'_wp_trash_meta_status','0'),(62,70,'_wp_trash_meta_status','0'),(63,74,'_wp_trash_meta_status','0'),(64,73,'_wp_trash_meta_status','0'),(65,72,'_wp_trash_meta_status','0'),(66,78,'_wp_trash_meta_status','0'),(67,77,'_wp_trash_meta_status','0'),(68,76,'_wp_trash_meta_status','0'),(69,75,'_wp_trash_meta_status','0'),(70,84,'_wp_trash_meta_status','0'),(71,83,'_wp_trash_meta_status','0'),(72,82,'_wp_trash_meta_status','0'),(73,81,'_wp_trash_meta_status','0'),(74,80,'_wp_trash_meta_status','0'),(75,79,'_wp_trash_meta_status','0'),(76,85,'_wp_trash_meta_status','0'),(77,91,'_wp_trash_meta_status','0'),(78,90,'_wp_trash_meta_status','0'),(79,89,'_wp_trash_meta_status','0'),(80,88,'_wp_trash_meta_status','0'),(81,87,'_wp_trash_meta_status','0'),(82,86,'_wp_trash_meta_status','0'),(83,100,'_wp_trash_meta_status','0'),(84,99,'_wp_trash_meta_status','0'),(85,98,'_wp_trash_meta_status','0'),(86,97,'_wp_trash_meta_status','0'),(88,116,'_wp_trash_meta_status','0'),(89,114,'_wp_trash_meta_status','0'),(90,113,'_wp_trash_meta_status','0'),(91,110,'_wp_trash_meta_status','0'),(92,111,'_wp_trash_meta_status','0'),(93,112,'_wp_trash_meta_status','0'),(94,108,'_wp_trash_meta_status','0'),(95,107,'_wp_trash_meta_status','0'),(96,106,'_wp_trash_meta_status','0'),(97,105,'_wp_trash_meta_status','0'),(98,103,'_wp_trash_meta_status','0'),(99,104,'_wp_trash_meta_status','0'),(100,101,'_wp_trash_meta_status','0'),(101,102,'_wp_trash_meta_status','0'),(102,96,'_wp_trash_meta_status','0'),(103,95,'_wp_trash_meta_status','0'),(104,94,'_wp_trash_meta_status','0'),(105,93,'_wp_trash_meta_status','0'),(106,92,'_wp_trash_meta_status','0'),(107,122,'_wp_trash_meta_status','0'),(108,120,'_wp_trash_meta_status','0'),(109,119,'_wp_trash_meta_status','0'),(110,118,'_wp_trash_meta_status','0'),(111,117,'_wp_trash_meta_status','0'),(112,129,'_wp_trash_meta_status','0'),(113,128,'_wp_trash_meta_status','0'),(114,127,'_wp_trash_meta_status','0'),(115,126,'_wp_trash_meta_status','0'),(116,125,'_wp_trash_meta_status','0'),(117,124,'_wp_trash_meta_status','0'),(118,123,'_wp_trash_meta_status','0'),(119,136,'_wp_trash_meta_status','0'),(120,135,'_wp_trash_meta_status','0'),(121,134,'_wp_trash_meta_status','0'),(122,133,'_wp_trash_meta_status','0'),(123,132,'_wp_trash_meta_status','0'),(124,131,'_wp_trash_meta_status','0'),(125,130,'_wp_trash_meta_status','0'),(126,148,'_wp_trash_meta_status','0'),(127,147,'_wp_trash_meta_status','0'),(128,146,'_wp_trash_meta_status','0'),(129,145,'_wp_trash_meta_status','0'),(130,144,'_wp_trash_meta_status','0'),(131,143,'_wp_trash_meta_status','0'),(132,142,'_wp_trash_meta_status','0'),(133,141,'_wp_trash_meta_status','0'),(134,140,'_wp_trash_meta_status','0'),(135,139,'_wp_trash_meta_status','0'),(136,138,'_wp_trash_meta_status','0'),(137,137,'_wp_trash_meta_status','0'),(138,152,'_wp_trash_meta_status','0'),(139,151,'_wp_trash_meta_status','0'),(140,150,'_wp_trash_meta_status','0'),(141,149,'_wp_trash_meta_status','0'),(142,155,'_wp_trash_meta_status','0'),(143,156,'_wp_trash_meta_status','0'),(144,158,'_wp_trash_meta_status','0'),(146,190,'_wp_trash_meta_status','0'),(147,189,'_wp_trash_meta_status','0'),(148,188,'_wp_trash_meta_status','0'),(149,185,'_wp_trash_meta_status','0'),(150,184,'_wp_trash_meta_status','0'),(151,183,'_wp_trash_meta_status','0'),(152,182,'_wp_trash_meta_status','0'),(153,181,'_wp_trash_meta_status','0'),(154,180,'_wp_trash_meta_status','0'),(155,178,'_wp_trash_meta_status','0'),(156,179,'_wp_trash_meta_status','0'),(157,177,'_wp_trash_meta_status','0'),(158,176,'_wp_trash_meta_status','0'),(159,175,'_wp_trash_meta_status','0'),(160,174,'_wp_trash_meta_status','0'),(161,170,'_wp_trash_meta_status','0'),(162,171,'_wp_trash_meta_status','0'),(163,191,'_wp_trash_meta_status','0'),(164,165,'_wp_trash_meta_status','0'),(165,164,'_wp_trash_meta_status','0'),(166,161,'_wp_trash_meta_status','0'),(167,160,'_wp_trash_meta_status','0'),(168,162,'_wp_trash_meta_status','1'),(169,199,'_wp_trash_meta_status','0'),(170,197,'_wp_trash_meta_status','0'),(171,196,'_wp_trash_meta_status','0'),(172,195,'_wp_trash_meta_status','0'),(173,194,'_wp_trash_meta_status','0'),(174,193,'_wp_trash_meta_status','0'),(175,192,'_wp_trash_meta_status','0'),(176,200,'_wp_trash_meta_status','0'),(177,201,'_wp_trash_meta_status','0'),(178,202,'_wp_trash_meta_status','0'),(179,210,'_wp_trash_meta_status','0'),(180,209,'_wp_trash_meta_status','0'),(181,207,'_wp_trash_meta_status','0'),(182,206,'_wp_trash_meta_status','0'),(183,205,'_wp_trash_meta_status','0'),(184,204,'_wp_trash_meta_status','0'),(185,211,'_wp_trash_meta_status','0'),(186,212,'_wp_trash_meta_status','0'),(187,214,'_wp_trash_meta_status','0'),(188,213,'_wp_trash_meta_status','0'),(189,216,'_wp_trash_meta_status','0'),(190,215,'_wp_trash_meta_status','0'),(191,217,'_wp_trash_meta_status','0'),(192,218,'_wp_trash_meta_status','0'); /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL auto_increment, `comment_post_ID` bigint(20) unsigned NOT NULL default '0', `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL default '', `comment_author_url` varchar(200) NOT NULL default '', `comment_author_IP` varchar(100) NOT NULL default '', `comment_date` datetime NOT NULL default '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00', `comment_content` text NOT NULL, `comment_karma` int(11) NOT NULL default '0', `comment_approved` varchar(20) NOT NULL default '1', `comment_agent` varchar(255) NOT NULL default '', `comment_type` varchar(20) NOT NULL default '', `comment_parent` bigint(20) unsigned NOT NULL default '0', `user_id` bigint(20) unsigned NOT NULL default '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`) ) ENGINE=MyISAM AUTO_INCREMENT=219 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (57,427,'best champagne cocktails','joann-scofield@hotmail.de','http://www.bisko.co.kr/?document_srl=128642','192.99.3.226','2013-11-12 19:15:50','2013-11-12 19:15:50','These are in fact impressive ideas in concerning \r\nblogging. You have touched some good points here.\r\nAny way keep up wrinting.',0,'spam','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36','',0,0),(58,1186,'parajumpers canada','purxsqdyiu@gmail.com','http://www.parajumpersparkashop.com/cheap-parajumpers-for-men_c1','113.128.162.255','2013-11-13 02:25:35','2013-11-13 02:25:35','Parajumpers Kodiak Jacket Aren’t Just for Bikers.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(59,1186,'Canada Goose Chateau Parka','uydvzrsljx@gmail.com','http://www.canada-goose.me/womens-canada-goose-hybridge-hoody-parka_c12','113.128.162.255','2013-11-13 11:10:19','2013-11-13 11:10:19','Our Canada Goose products are only using the best materials, is not beyond the quality, high-tech high-end design, welcome to place an order from us!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(2,615,'Rich Rumple','rcrumple@aol.com','http://richrumple.blogspot.com/','98.23.56.17','2013-10-14 05:00:47','2013-10-14 05:00:47','Interesting story. 8 Tracks were the big thing in my area of the country from the late 60\'s thru the early 70\'s. I had one in my car in 1968, as we\'d never heard of cassette tapes (nor were they available anywhere ... Kmart included.) My first sight of a cassette was when a friend drove by the store I was working at (in 1972) and showed me one in his car. It was interesting, but not convenient. 15 minutes and you had to turn it over where an 8 Track would play over and over. In fact, my first new car, a 1972 VW Beetle, had a built in 8 Track player in the dash as they were the most popular from of mobile entertainment. When I entered the military late that year, I was introduced to cassettes as they seemed to be a smaller storage problem for lockers and such. They stayed with me until the early 90\'s when cd\'s made their appearance in the prerecorded stage, and until even the late 90\'s as cd recorders were then just hitting the market for the mixing of songs I loved doing. I actually still have a mixing board with 6 cd players hooked up to it, along with a turntable and two mini disc units. It\'s gathering dust as all mixing is now done with programs on the computer. Oh, btw, vinyl stayed with me from as far back as I can remember until the late 80\'s as a preferred music source. I still have a collection of over 2000 of those taking up space, as I\'ve transfered most to cd. Good article!',0,'1','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36','',0,0),(3,615,'rxeno','rxeno@earthhertz.com','http://www.earthhertzrecords.com','68.52.2.58','2013-10-14 05:24:32','2013-10-14 05:24:32','Couldn\'t agree more Rich! One the article is very good, and two... I have 3 turntables and a multi thousand count vinyl collection and over 10,000 cassettes! yup as well as 8,000 1/4\" tapes 300 1/2\" tapes and about 1000 2\" tapes! Would love to have those albums of yours \"taking up space\"!!!\r\n\r\nThanks for reading and thanks for commenting. \r\nEnjoy!\r\nrx',0,'1','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)','',2,1),(4,615,'Tina','tml35@yahoo.com','','24.115.42.53','2013-10-14 12:46:48','2013-10-14 12:46:48','Our collection of cassettes were included with the sale of our old volvo two years ago.... (miss old bessie) \r\nYes, it did work and one of my favorites was Brewer and Shipley... a classic \r\n\r\nThank You, as I enjoyed the article and so pleased I still have my turntable and vinyl collection.',0,'1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Firefox/24.0','',0,0),(5,248,'Margaret Smith Henegar','mash8485@yahoo.com','','71.12.83.125','2013-10-15 06:26:45','2013-10-15 06:26:45','Earth Hertz scored big with signing The Billy David Band, as did Billy David. You feel his words, knowing they come from a very intuitive & soulful man, who has experienced so much in his lifetime. Absolutely a GREAT ALBUM, that gives me such a wonderful feeling of peace & love. Beautiful music along with the songs, make me get up and dance. Thank you Earth Hertz for the opportunity to jam with a dear childhood friend! Great Job!',0,'1','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)','',0,0),(6,738,'Sandy Melke','smurfnana@sbcglobal.net','','76.235.43.152','2013-10-16 12:51:42','2013-10-16 12:51:42','OMG These two young men are the best I\'ve heard for a long time. They have the potential to really make it big.',0,'1','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0','',0,0),(7,738,'Morgan Letorgeon','letorgeonbrothers@yahoo.com','http://TheLTGMusic.com','99.11.94.229','2013-10-17 04:11:25','2013-10-17 04:11:25','These recording are sick but do not give justice to there live performances! One Love',0,'1','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)','',0,0),(17,21,'maillots de foot 2014','kindrafavela@bigstring.com','http://maillot-de-foot-equipe-de-france.youaresomebody.org','198.100.147.164','2013-10-28 03:15:23','2013-10-28 03:15:23','What\'s uρ, just wanteԁ to &X73;&X61;y, \r\nI liked thiѕ artіcle. It was praсtiса&X6c;.\r\nKeep on pоsting!',0,'spam','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',0,0),(18,432,'Linda','akgdnw@gmail.com','http://gmbal.com/2910a','5.39.50.0','2013-10-29 19:24:59','2013-10-29 19:24:59','Website visitors do not come easy these days. It’s hard and it usually takes a long time. In many cases, too much time… So much that you might be ready to call it quits. A friend of mine shared a web traffic service with me on my site and I want to share it with you. I was skeptical at first but I tried their free trial period and it turns out they are able to get hundreds of visitors to anyones website every day. My advertising revenue has increased tenfold. Check them out here: http://gmbal.com/2910a',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)','',0,0),(19,1200,'freddie','freddie1219@optimum.net','','24.44.4.68','2013-10-30 01:51:35','2013-10-30 01:51:35','yes it was a kick ass show and your review is quite \'tasty\'',0,'1','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0','',0,0),(20,1200,'freddie','freddie1219@optimum.net','','24.44.4.68','2013-10-30 01:52:04','2013-10-30 01:52:04','yes it was a kick ass show and your review is quite \"tasty\"',0,'1','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0','',0,0),(21,1200,'Kath Galasso','kgalasso@earthhertz.com','http://katstheory.blogspot.com/','24.44.4.68','2013-10-30 11:16:02','2013-10-30 11:16:02','The best part for me was seeing they were still really good, that my memories of them weren\'t ruined. They are not a nostalgia act. They are still rockers.',0,'1','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36','',19,2),(22,738,'5.1 surround sound speaker','rudolph.sauceda@yahoo.com','http://fashionthirst.com/blog/2013/07/23/a-review-of-todays-cordless-surround-sound-models/','23.105.204.32','2013-10-31 13:35:12','2013-10-31 13:35:12','I don\'t know if it\'s just me or if everyone else encountering issues with your site.\r\nIt looks like some of the written text in your posts are running off the screen.\r\nCan someone else please provide feedback and let me know if this is happening to them too?\r\nThis could be a problem with my browser because I\'ve had this happen before.\r\nKudos\r\n\r\nA blog page on technology: <a href=\"http://fashionthirst.com/blog/2013/07/23/a-review-of-todays-cordless-surround-sound-models/\" rel=\"nofollow\">5.1 surround sound speaker</a>',0,'spam','Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25','',0,0),(23,738,'rxeno','rxeno@earthhertzrecords.com','http://www.earthhertzrecords.com','68.52.2.58','2013-10-31 15:50:52','2013-10-31 15:50:52','Well Morgan! We are in luck, because we are working out the details to a new acoustic/live album now. Please stand by.',0,'1','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)','',7,0),(24,803,'finding information','Rouch7976@aol.com','http://reputationinbusiness.wikispaces.com/home','178.32.149.25','2013-10-31 16:20:19','2013-10-31 16:20:19','It\'s not that I want to replicate your website, but I really like the pattern. Could you tell me which design are you using? Or was it especially designed?',0,'spam','Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)','',0,0),(25,248,'bottes ugg soldes','thdfpzwmftn@gmail.com','http://je-veux-ugg.northcoastparks.com','198.27.64.125','2013-11-01 07:15:52','2013-11-01 07:15:52','This is actually good to know. I hope it will be profitable in the future. Good work on this and maintain up the great perform.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',0,0),(26,21,'bottes timberland femme','thdfpzwmftn@gmail.com','http://bottes-timberland-femme.shastadatadirector.com','198.27.64.125','2013-11-01 07:21:57','2013-11-01 07:21:57','There is the guarantee of cash, rebates and special discounts if you will just tour this hotel or that propertya?| make a day of it! Get a free lunch! It will be fantastic',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705)','',0,0),(27,738,'Maria','tfjyuujvw@gmail.com','http://gmbal.com/2910a','5.39.50.0','2013-11-01 14:58:18','2013-11-01 14:58:18','Website traffic doesn\'t come easy these days. It’s hard and it usually takes a long time. In many cases, too much time… So much that you might be ready to give up. Someone shared a web traffic service with me on my site and I thought I would share it with you. I was skeptical at first but I tried the free trial period and it turns out they are able to get hundreds of visitors to anyones website every day. My sales revenue has increased tenfold. Check it out here: http://gmbal.com/2910a',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',0,0),(28,432,'Wholesale LRG Hats','wrgorlbs@gmail.com','http://lrg-hats.webs.com/','110.89.35.213','2013-11-02 05:26:56','2013-11-02 05:26:56','Excellent beat! I want to apprentice simultaneously as a person amend your site, how might i subscribe for any blog site? The accounts helped me personally a suitable deal. I\'ve been a tiny bit acquainted of the your transmit provided lively transparent concept\r\nWholesale LRG Hats http://lrg-hats.webs.com/',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(29,1186,'zixiutangbeepollen.org Review','wjwlmqevjig@gmail.com','http://www.prweb.com/releases/2013/10/prweb11265429.htm','27.19.82.108','2013-11-02 09:34:08','2013-11-02 09:34:08','The Winery Dogs Concert Review: Allentown, PA - Earth Hertz Recods',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(30,615,'オメガ価格','jwhqkeaeuev@gmail.com','http://www.watchbrook.com','69.197.189.47','2013-11-02 11:07:36','2013-11-02 11:07:36','オメガ 通販',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',0,0),(31,35,'BennyJ','615bekny@hotmail.com','','31.6.71.136','2013-11-02 17:19:05','2013-11-02 17:19:05','I noticed that it\'s hard to find your site in google, i found it on 20th spot, you should \r\ncreate some social bookmarks to rank it in google and increase traffic. I had the same problem with my website, your should search in google for - Insane google ranking boost - it helped me a lot',0,'spam','Mozilla/5.0 (Windows NT 6.1; rv:16.0) Gecko/20100101 Firefox/16.0','',0,0),(32,738,'Katie','njqujux@gmail.com','http://gmbal.com/2910a','151.237.180.200','2013-11-02 18:44:24','2013-11-02 18:44:24','Traffic is the key to my website business. I found a company that has been an amazing resource in building our traffic and the communication back and forth has been refreshing. I use most of the services offered by this company and I am now getting hundreds of targeted visitors to my website every day. Take a look here: http://gmbal.com/2910a',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',0,0),(33,248,'Kami','edldrc@gmail.com','http://gmbal.com/2910a','151.237.180.206','2013-11-03 15:54:16','2013-11-03 15:54:16','Do you need more website traffic? I have found a service that offers a free trial to try their service and make sure it works for you. They offer keyword targeted visitors so that you only get visitors that are interested in your website. I am getting a lot more ad revenue now that I am using their service. Check it out here: http://gmbal.com/2910a',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',0,0),(34,803,'Mckayla','dujggp@gmail.com','http://gmbal.com/2910a','185.3.134.241','2013-11-04 07:28:57','2013-11-04 07:28:57','Website visitors do not come easy these days. It’s hard and it usually takes a long time. In many cases, too much time… So much that you might be ready to call it quits. Someone shared a website traffic service with me on my website and I thought I would share it with you. I was skeptical at first but I tried their free trial period and it turns out they are able to get hundreds of visitors to your website every day. My sales revenue has increased tenfold. Check it out here: http://gmbal.com/2910a',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','',0,0),(35,738,'Jenny','krdsqnh@gmail.com','http://gmbal.com/2910a','5.34.247.175','2013-11-04 22:41:49','2013-11-04 22:41:49','Website traffic doesn\'t come easy these days. It’s hard and it usually takes a long time. In many cases, too much time… So much that you might be ready to give up. One of my readers shared a website traffic service with me on my website and I thought I would share it with you. I was skeptical at first but I tried the free trial period and it turns out they are able to get hundreds of visitors to my website every day. My sales revenue has increased tenfold. Check it out here: http://gmbal.com/2910a',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(36,1188,'dallas cowboy pro shop','iyhffrl@gmail.com','http://www.auto-deal.co.il/Resources/Search/nfljerseyscheap.aspx?7','198.245.63.95','2013-11-05 20:33:45','2013-11-05 20:33:45','custom?nfl?jerseys. You currently have hit lots of balls that one could probably make a slider in the sleep. Thus, what\'s upcoming but going to the arena, right? Completely wrong!\r\n[url=http://www.auto-deal.co.il/Resources/Search/nfljerseyscheap.aspx?7]dallas cowboy pro shop[/url]',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)','',0,0),(37,1186,'canada goose grise','sanora_vaughn@gmail.com','http://www.wan-ho.com/canada-goose-boutique-en-ligne.html','198.245.50.111','2013-11-06 03:12:13','2013-11-06 03:12:13','I really liκe what you guуѕ a&X72;е usually up too.\r\n\r\nThis kind οf clever worκ anԁ cοѵe&X72;age!\r\nKeep uρ thе awesomе works guys I\'ve іncluded \r\nyou gu&X79;s &X74;o my blogroll.',0,'spam','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:22.0) Gecko/20100101 Firefox/22.0','',0,0),(38,738,'Linda','vekdhhs@gmail.com','http://gmbal.com/511c','5.34.247.232','2013-11-06 05:16:41','2013-11-06 05:16:41','Traffic is the key to any website business. I found a company that has been an awesome resource in building our traffic and the communication back and forth has been great. I use most of the services offered by this company and I am now getting hundreds of targeted visitors to my website every day. Take a look here: http://gmbal.com/511c',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(39,738,'champagne cocktails','jamisongoulburn@arcor.de','http://lessthanthree-productions.com/osc6/node/68563','192.99.3.226','2013-11-06 20:24:51','2013-11-06 20:24:51','Hi there, You\'ve done a great job. I will definitely digg it and personally recommend to my \r\nfriends. I\'m confident they will be benefited from this website.',0,'spam','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:22.0) Gecko/20100101 Firefox/22.0','',0,0),(40,1182,'gold ira','brigida.saylor@gmail.com','http://youtube.com/watch?v=JyrQwFkRpOs','37.72.189.19','2013-11-07 02:08:06','2013-11-07 02:08:06','Amazing blog! Do you have any tips and hints for aspiring writers?\r\n\r\nI\'m hoping to start my own blog soon but I\'m a little lost \r\non everything. Would you recommend starting with a free platform like Wordpress or go for a paid option?\r\n\r\nThere are so many choices out there that I\'m totally confused ..\r\n\r\nAny tips? Appreciate it!\r\n\r\nMy web-site; <a href=\"http://youtube.com/watch?v=JyrQwFkRpOs\" rel=\"nofollow\">gold ira</a>',0,'spam','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:22.0) Gecko/20100101 Firefox/22.0','',0,0),(41,430,'holiday champagne cocktails','janinemetters@yahoo.de','http://twtour.co.kr/?document_srl=601555','192.99.3.226','2013-11-07 09:49:54','2013-11-07 09:49:54','Good day! I could have sworn I\'ve visited this web site before but \r\nafter browsing through some of the posts I realized it\'s new to me.\r\nRegardless, I\'m certainly happy I stumbled upon it and I\'ll be book-marking \r\nit and checking back frequently!',0,'spam','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:21.0) Gecko/20100101 Firefox/21.0','',0,0),(42,1186,'discount gucci bags uk','kqjnwnb@gmail.com','http://www.guccibagsforsale.com/Gucci-258037-FWCZG-9772-wallet-online_p272','137.175.109.164','2013-11-07 10:10:53','2013-11-07 10:10:53','One of the latest new additions is the gucci woven fringe hobo. The hobo is dressed in a woven pattern body and features double trails of fringe down each side.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(43,1186,'gucci jackie bag','cvabkdcsj@gmail.com','http://www.imodular.com/gucci/index2.asp?id=144','192.184.60.114','2013-11-07 14:37:59','2013-11-07 14:37:59','1日前まで映っていましたが電源が入らなくなりました。液晶の破損はありません。岩手です。査定願います。LC45AE5です。\r\ngucci jackie bag http://www.imodular.com/gucci/index2.asp?id=144',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','',0,0),(44,1186,'Frame Types','tapxsrsrn@gmail.com','http://www.raybanwayfarershop.com/Ray-Ban-RB4170-Sunglasses-SF-Rosso-Grigio-Transparent-Frame-Blue_p198','137.175.109.164','2013-11-07 16:47:00','2013-11-07 16:47:00','Ray ban sunglasses caravan design has a square frame that is stylish and modern which is perfect for people who want to have a cleaner and more professional look.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(45,1186,'ray ban glasses amazon','tbgtgazeaou@gmail.com','http://www.raybanwayfarershop.com/Ray-Ban-RB2140-Wayfarer-Sunglasses-Top-Red-Frame-Crystal-Green-L_p12','137.175.109.164','2013-11-07 16:47:33','2013-11-07 16:47:33','Josh Hartnett is rockin\' a pair of Ray Ban Wayfarer sunglasses, these retro shades are extremely popular and you can get them in different colors and sizes.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(46,1186,'fendi belt','rxqlxkbj@gmail.com','http://www.fendioutletuk.com/fendi-2012-handbags_c2','113.128.163.89','2013-11-08 03:43:08','2013-11-08 03:43:08','Fendi--Spring 2014 ready-to-wear.Click to see more.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(47,430,'brut champagne','morrislayman@inbox.com','http://causocio.net/xe/causocio_eng_notice_2013/1046227','192.99.3.226','2013-11-08 16:44:57','2013-11-08 16:44:57','Asking questions are in fact pleasant thing if you are not understanding something entirely, except \r\nthis piece of writing gives nice understanding even.',0,'spam','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:22.0) Gecko/20100101 Firefox/22.0','',0,0),(48,432,'qmtppfw','tlidygx@gmail.com','http://www.pacific-rentals.com/acapulco/cheap_soccer_jerseys.html','216.244.75.178','2013-11-08 18:42:18','2013-11-08 18:42:18','<a href=\"http://hellokitty-vans.webs.com/\" / rel=\"nofollow\">hello kitty vans</a> from allloosenned tone, in mind start to put blame on an old gentleman in succession.The sky of the Xing?Listen to have never listenned to, also be worth of fuss?Is really a senile person.Return connect knock 21 ring, sick?BE full to support of old guy?Once the tense atmosphere sweep and get empty,\r\n\r\n \r\n<a href=\"http://www.sylviacooper.com/en/wholesale_mlb_jerseys.html\" rel=\"nofollow\">custom mlb jerseys</a> silk asks a way.You were already an adult, had no call to each affair to inquire my opinion, I once said, can not tell you to the future prediction.Wei gram many songs shrug shoulders Bang to say.He this pair character for boon Laisection to say, pour is acquaint with very much.That good, I\r\n\r\n \r\n<a href=\"http://www.reelsound.co.uk/flash/cheap_ray_ban_sunglasses_outlet.html\" rel=\"nofollow\">Ray Ban outlet</a> he are evil partieses all of Xis achievement method, can not overcome absolute being at all evil, that handle sonnoon Yin Chen sword was extremely originally the method machine of dirty mark, can crack down on absolute being evil, it happened that again be naturally ruined to go, he faces two\r\n\r\n \r\n<a href=\"http://www.thpworld.org/shop/ncaa_basketball_jerseys_china.html\" rel=\"nofollow\">cheap ncaa football jerseys</a> light tone stated affair 1 time, the self-discipline of surprisingly whole world unexpectedly became allies, I really worried to this, after being worried that they will become head of stateto come out again the biggest obstacle.The tragedy is really a tragedy!That calls:Do these inferior persons\r\n\r\n \r\n<a href=\"http://www.betterrugbycoaching.com/facebook/autographed_jerseys.html\" rel=\"nofollow\">Cheap autographed Jerseys</a> number wrinkly tight eyebrows stuffy way.This affair has to let thehigh command know quickly, if Suo thin boon really already and if the Lai D Kingdom cooperate, so taking the offensive Lai D the Kingdom will be very likely to cause card Ao strange to perish.For the sacred knight of head resolutely\r\n\r\n \r\n<a href=\"http://www.festiveoccasions-lubbock.com/shop/wholesale_jerseys.html\" rel=\"nofollow\">cheap jerseys free shipping</a> unexpectedly dare to humiliate in my door, is the tall person whom the mountain of Kun Lun comes.Work properly son, take him to come into the valley, the empress doesn\'t blame you.Young girl favour way:BE.Finished saying to stare naturally one eye, do you still takeback those lights not and quickly?\r\n\r\n \r\n<a href=\"http://shorelinect.com/cheap/cheap_jerseys_online.html\" rel=\"nofollow\">wholesale jerseys</a> section believes in, the root is that he is telling a bare-faced lying.No one compared the shell Er Di Nuo to understand the boon Lai believing in of section more.Sheknows the boon Lai\'s section has absolute faith to none of any spirits, however he also combines the doctrine of hasing no objection\r\n\r\n \r\n<a href=\"http://cheapmnwildjerseys.tripod.com/\" / rel=\"nofollow\">minnesota wild hockey jerseys</a> reference to hate place, that knight is again a malicious one punch at fee Na the belly of the rare friendship.The body of the fee Na rare friendship immediately soft pendencGo, this one punch\'scomparing another two boxings is getting more fierce, however she has already had preparation,\r\n\r\n \r\n<a href=\"http://www.kantorpal.com/cheapnfljerseys.html\" rel=\"nofollow\">2013 cheap nike nfl football jerseys from china free shipping -wholesale nfl jerseys shop</a> dint, a most capability wants to use toresist each other of inside the dint offend with each other, can not use to break through siege with all strength at all.Niang of, unexpectedly won the trap of Jade Emperor that smelly boy!The sky of the Xing is indeed as expected fantastic, inside the\r\n\r\n \r\n<a href=\"http://adidas-forummidrs.tripod.com/\" / rel=\"nofollow\">adidas forum mid rs</a> sky of but rise, force to open air green Xia, mount thunder cloud.That gold yellow of inside the Dan is to fix for wild blue sky several years ofsword Dan, power compare of general swordsmanand demon of inside the Dan don\'t know big how much doubly, just an and thunder cloud connected and',0,'spam','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11','',0,0),(49,738,'Lisa','oxezjdahp@gmail.com','http://gmbal.com/511c','5.39.50.0','2013-11-08 23:42:11','2013-11-08 23:42:11','Website visitors do not come easy these days. It’s hard and it usually takes a long time. In many cases, too much time… So much that you might be ready to call it quits. Someone shared a web traffic service with me on my site and I thought I would share it with you. I was skeptical at first but I tried the free trial period and it turns out they are able to get hundreds of visitors to your website every day. My advertising revenue has increased tenfold. Check it out here: http://gmbal.com/511c',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705)','',0,0),(50,427,'champagne online','ciaramitchel@gmx.net','http://help.tunezy.com/entries/28355637-Practical-Systems-In-Champagne-Cocktails-Recipes-What-s-Needed','192.99.3.226','2013-11-09 09:18:26','2013-11-09 09:18:26','Wow, incredible blog layout! How long have you been blogging for?\r\nyou made blogging look easy. The overall look of your site \r\nis excellent, let alone the content!',0,'spam','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0','',0,0),(51,430,'champagne vodka cocktails','gretchenlongwell@gmail.com','http://www.sotonkorea.com/zbxe1/?document_srl=438981','192.99.3.226','2013-11-09 09:55:07','2013-11-09 09:55:07','Hi, I do believe this is a great site. I stumbledupon it ;\r\n) I will come back yet again since I book-marked \r\nit. Money and freedom is the greatest way to change, may you be rich and continue to \r\nhelp others.',0,'spam','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0','',0,0),(52,1186,'gucci bags cross body','pesgkqrtsn@gmail.com','http://www.guccibagsforsale.com/Gucci-interlocking-beige-guccissima-leather-boston-bag_p39','98.126.39.188','2013-11-09 12:10:29','2013-11-09 12:10:29','that was a nice cute bag! i think it is specially made for young ladies because of its color and style.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(53,432,'Ray Rice Jersey','carlabroger@arcor.de','http://erieenergyproducts.com/Licenses.aspx','192.187.112.226','2013-11-09 15:14:35','2013-11-09 15:14:35','It could be Abram Elam, filling in for injured Matthew Stafford, was stopped \r\nby his publicist from answering a question about gay marriage \r\nby The Washington Post, his publicist jumped in and cheap jerseys rejected the question.\r\nWhen San Francisco\'s D does give up some sacks, ten on the season.\r\nWe could always do that because the identity operator here.',0,'spam','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0','',0,0),(54,432,'cffipgz','dtiyfuv@gmail.com','http://www.pacific-rentals.com/acapulco/cheap_soccer_jerseys.html','216.244.75.178','2013-11-10 19:47:08','2013-11-10 19:47:08','<a href=\"http://indianapolis-colts.webs.com/\" / rel=\"nofollow\">cheap colts jerseys for men</a> to for teacher.Born way:The teacher overpraised, livinged son this time and wanted to tell a teacher a business of importance.?The wood starts to wear a way:Must be the matter that concerning Zheng Ba revolts?BE.Naturally and at that moment various Ge farmountain, prepare to arrange oneself and Lin\r\n\r\n \r\n<a href=\"http://brixton-hats.webs.com/\" / rel=\"nofollow\">Cheap Brixton Hats</a> well the Buddha is airtight is very a Mo.Naturally listen to face a red, oneself chases time before match flower all on self-discipline homework of the oneself, data also had no to hard once read all countries contestant, if isn\'t a plum bell and explain, alsoreally don\'t know thatthe Buddha is\r\n\r\n \r\n<a href=\"http://www.baycitymarine.ca/shop/cheap_mlb_jerseys.html\" rel=\"nofollow\">wholesale mlb jerseys</a> the fee Na is rare gracefulsuccessful to resist that shameless of the aggression of tongue, but that warmly of the embrace still keep almost making her suffocate.And shape the high big outstanding sea space Ai Luo compare with, she is really thin and feeble short small.The sea space Ai Luo obviously\r\n\r\n \r\n<a href=\"http://youthhockeyjerseys.tripod.com/\" / rel=\"nofollow\">cheap nhl youth jerseys</a> birth to an elder brother, you ……you don\'t want to marry us?Naturally favour way:The Xiao Wen never misunderstand, I am just not feel at ease, always feel the time that marry not just now .The thunderbreeze is strange to call a way:Born boy, the big enemy has already gone now, the spirit of Xuan\r\n\r\n \r\n<a href=\"http://cheap-pandora-charms.tripod.com/\" / rel=\"nofollow\">pandora charms</a> star body son but speech, these contain in the white strange stone of is truely anti- grainson, and the content enriches very much, the anti- grains in only five pieces of this kind of rocks son, can influence a permafrost gravitation field.If is 100 pieces, even can influence all star bodies in the\r\n\r\n \r\n<a href=\"http://www.aurora.com.sg/131101/cheap_tiffany_jewelry_outlet.html\" rel=\"nofollow\">Tiffany and co outlet</a> poisonous fire in the sea water of magma, feel ten thousand ton sea waters,such as sacred mountain, heavily press down above at the same time, whatheart light sends out protects purpleYan of body like hard support.Born wry smile 1:Is that I had much confidence in I, unexpectatively my naturally and\r\n\r\n \r\n<a href=\"http://nikeimpactjerseys.webs.com/\" / rel=\"nofollow\">cheap nfl impact jerseys</a> person who descend isn\'t to have heart to aim at him, otherwise he is a common run of people, a physical endowment again good, also early have no life.Is someone in the sea heart below the hills decline?Bornway:But, does the superior of T country come for what willing run to here?This hard to said.\r\n\r\n \r\n<a href=\"http://www.pallmalltravel.com/shop/cheap_jerseys.html\" rel=\"nofollow\">cheap jerseys</a> sell to a restaurant an inside basically isn\'t this price, let the kid followthis dishonest trader to learn from bad habit, I wish to make the kid join a riding of thin adult of Si Lei large unit.The wife at present and more didn\'t take pleasure in, she always not exultation joys that however the\r\n\r\n \r\n<a href=\"http://cheapcustomnflfootballjersey.tripod.com/\" / rel=\"nofollow\">custom football jerseys</a> are to go to silver tide the city visit Neptunian sacrifice of!The small women that side comes over here a clothes homeliness, see her appearance about 30 years old don\'t arrive, the beautiful facial appearance takes one silk serene smile,give people a kind of very warm and fragrant sweet felling.\r\n\r\n \r\n<a href=\"http://www.canaseed.com/images/new/nhl_elite_jerseys.html\" rel=\"nofollow\">NHL elite Jerseys Wholesale</a> people arm in arm, with the speed of the common run of people on foot, walk toward the pleasure ground to, walk while appreciating the local customs of 100 wood streets, pour to also enjoy it very much.2 peopleonce walked two avenues, naturally and suddenly to the language way of Lin Qing Di:Pure',0,'spam','Mozilla/5.0 (Windows NT 6.1; rv:13.0) Gecko/20100101 Firefox/13.0.1','',0,0),(55,1186,'Betty','xhrltu@gmail.com','http://gmbal.com/1011c','151.237.177.94','2013-11-11 12:32:29','2013-11-11 12:32:29','Traffic is the key to my website business. I found a company that has been an awesome resource in building our traffic and the communication back and forth has been great. I use most of the services offered by this company and I am now getting hundreds of targeted visitors to my website every day. Take a look here: http://gmbal.com/1011c',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)','',0,0),(56,430,'Champagne Cocktails Recipes','hollymayberry@gmail.com','http://kik.kerbabel.net/en/node/11519','192.99.3.226','2013-11-12 08:17:02','2013-11-12 08:17:02','Attractive section of content. I just stumbled upon your web site and in accession \r\ncapital to say that I acquire in fact enjoyed account your blog posts.\r\nAnyway I\'ll be subscribing on your feeds and even I success you get right of entry to \r\npersistently fast.',0,'spam','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36','',0,0),(61,432,'Mens Softball Gloves','memenercogy0@hotmail.com','http://www.eastcoastcompassion.com/board/index.php?p=/discussion/8570/buy-batman-the-brave-and-the-bold-gloves-adult-in-online','212.73.146.168','2013-11-13 12:10:26','2013-11-13 12:10:26','Thanks for a marvelous posting! I really enjoyed reading it, you might be a great author.I will be sure to bookmark your blog and will often come back later in life. I want to encourage you to ultimately continue your great writing, have a nice morning! \r\n:) #$# :(',0,'spam','Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/17.0 Firefox/17.0','',0,0),(62,867,'Black Leather Fingerless Gloves','memenercogy-@hotmail.com','http://www.louisianasingers.com/forums/discussion/48172/sale-in-online-store-purple-football-gloves','212.73.146.168','2013-11-13 12:17:40','2013-11-13 12:17:40','Hi! I\'ve been reading your web site for some time now and finally got the courage to go ahead and give you a shout out from Kingwood Texas! Just wanted to say keep up the fantastic job! \r\n:) #$# :(',0,'spam','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11','',0,0),(160,1200,'Article Marketing Profit Pack','','http://arrasar.com','91.229.174.170','2014-01-03 00:42:59','2014-01-03 06:42:59','<strong>Website Worth Visiting...</strong>\n\n[...]one of our visitors recently recommended the following website[...]...',0,'spam','Mozilla/5.0 (Windows; U; Windows NT 5.1; pl; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3','trackback',0,0),(64,738,'Pauline','yveveb@gmail.com','http://gmbal.com/1011c','151.237.177.80','2013-11-14 05:43:58','2013-11-14 05:43:58','Traffic is the key to my website business. I found a company that has been an awesome resource in building our traffic and the communication back and forth has been great. I use most of the services offered by this site and I am now getting hundreds of targeted visitors to my website every day. Take a look here: http://gmbal.com/1011c',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',0,0),(65,738,'GomflormCal','wufaopemnsm123@hotmail.com','','119.96.185.211','2013-11-14 14:56:45','2013-11-14 14:56:45','We are looking for a Quality Trainning Manager for all odigeo contact centres to develop training materials and quality process regarding Project program, coordinate and schedule training agenda across the whole contact centres, design a central training procedure, roll out new training control. Mais c\'est la fille 脿 Nicolas!. Mais voil脿, pour laquelle des centaines de cases 脿 croquenots mises sous votre nez votre pied 脿 vous est il fait ? Impossible de vous en sortir seul. Car il ne faut pas confondre le running et la course 脿 pied . Et le marathon n\'est pas le trail , qu\'on se le dise. Vous avez besoin d\'un conseiller. Non, il faut d茅sormais dire un coach . Remarquez, l\'avantage, c\'est que 莽a donne des petits boulots 脿 des jeunes qui s\'ennuient. <a href=\"http://www.altais-ingenierie.fr/upload/fichiers/uggpascher.html\" rel=\"nofollow\">Bottes UGG Pas Cher</a> Tous les Juifs hongrois 脿 Constantinople, soit particuli猫rement r茅pandu dans le terrorisme, d茅clench茅e suite d\'une d茅cision pionni猫re fait aussi utilis茅e dans l\'erreur. Dans des autres en h么pital priv茅 du cheveu, Alain Pierre Chartoud relate ce secteur p茅trolier a pour que sa famille furent officiellement reconnus. Un toucher rectal 茅vacuateur et l\'on retrouve d猫s lors de consolider le nom de virulence 脿 la classe dominante, faisant passer au jud茅o christianisme. L\'int茅r锚t persistant n\'a pas laiss茅 au moins long. Les d茅couvertes 脿 la plupart des neuroleptiques (mais ne pas la route maritime de bact茅ries pouvant se produit de cialis generique canada voit son 茅volution. En principe, en cialis generique un stade de germes de CBS qui dureront jusqu\'脿 appeler les esp猫ces de l\'histoire de faire leur parent. Ce jour l脿, sur l\'ensemble des vignobles dans certains vaccins, on retrouve dans les Crois茅s ne pr茅sentent fr茅quemment relev茅s par 茅l茅vation de Charlemagne. Cela permet aux sympt么mes positifs et trouble du barbon (non respiratoires) utilisent des sunnites 脿 Vilnius. Mon ami et moi m锚me sommes souvent enrhum茅s en hiver. Nous n\'avons pas envie de courir syst茅matiquement chez notre m茅decin pour obtenir la prescription de divers m茅dicaments (temps d\'attente trop long, retenue d\'1 euro,.). 6. Ch芒teau L\'Isle Fort ; 13.50 Site Internet <a href=\"http://www.fpifrance.fr/nikepascher.html\" rel=\"nofollow\">Nike Air Max</a> Loin de maitriser tous les subtilit茅s de la gestion de la typographie en CSS, j n茅anmoins d茅couvert l de la balise Font Face Cette derni猫re permet d n quelle fonte ( ou presque ) sur un site internet. Fini donc, l la verdana et autres helvetica ! Alors dabord petit rattrapage d\'histoire. Si la wii n\'avait pas cartonn茅 et vampiris茅 le march茅 europ茅en et japonais, crois moi la 360 serait un fiasco pour MS, donc encore une fois relativise un peu plus les faits. Ah oui, depuis vendredi je met mes pantalons de grossesse! Les vetements \'normaux\', meme mes jupes commencaient 脿 me serrer en fin de journ茅e. et du coup, j\'ai l\'impression que mon ventre a gonfl茅 en un coup! on le voit bcp mieux maintenant! <a href=\"http://www.altais-ingenierie.fr/upload/fichiers/uggpascher.html\" rel=\"nofollow\">www.altais-ingenierie.fr/upload/fichiers/uggpascher.html</a> Qu\'attendez vous du proc猫s du pot belge qui s\'est ouvert hier 脿 Bordeaux ?J\'attends des sanctions fermes et importantes. Le trafic est une infraction p茅nale : il faut le sanctionner lourdement, tout en restant mesur茅. On ne doit pas infliger la m锚me peine 脿 une personne qui a particip茅 脿 un trafic de produits dopants qu\'脿 un vrai criminel. Il faut n茅anmoins que ces gens l脿 soient totalement exclus du milieu du cyclisme et du sport en g茅n茅ral.Le pot belge, l\'affaire Liberty Seguros, Manolo Saiz. En sortira t on un jour ?On a beau faire des listes, des contr么les, les mentalit茅s ne changent pas. Les anciens perp茅tuent les habitudes et influencent les nouveaux arrivants au niveau du besoin de reconnaissance, de l\'argent et de la tricherie. C\'est toujours probl茅matique, on est loin des valeurs du sport.Selon vous, peut on parler d\'une v茅ritable chasse aux sorci猫res ?Une chasse aux sorciers plus exactement. Car ils se consid猫rent tous comme des apprentis sorciers, que ce soit les m茅decins ou les directeurs sportifs. Ils sont toujours 脿 la recherche de solutions pour faire avancer de plus en plus vite leurs athl猫tes, quitte 脿 employer des m茅thodes pas tr猫s 茅l茅gantes.La r茅pression reste le rem猫de le plus efficace ?La police et la justice font peur. Lorsqu\'il y a des proc猫s, cela fait r茅fl茅chir. Avant, les sportifs qui faisaient leur petit trafic n\'imaginaient pas les risques qu\'ils encouraient. Maintenant, ils s\'en rendent compte.Les instances jouent elles efficacement leur r么le ?Pour moi, la F茅d茅ration n\'est pas assez ferme sur certains points. Regardez sur le Tour de France, Jean Marie Leblanc croit que le cyclisme est propre et 脿 chaque fois qu\'il y a une affaire, il tombe des nues. Le probl猫me est qu\'ils n\'affrontent pas la r茅alit茅 en face. Dans ce milieu, les gens de la F茅d茅ration, de l\'UCI, du Tour et m锚me les journalistes, comme ceux de L\'Equipe, sont bien avec tout le monde car ils n\'ont pas envie de perdre leur place. En aucun cas, ils n\'iront 脿 l\'encontre des coureurs et du milieu.Vous avez le sentiment que l\'茅tau se resserre ?Sur certains produits. L\'EPO est devenue difficile 脿 utiliser mais l\'hormone de croissance est toujours ind茅tectable. Les cortico茂des sont autoris茅s sous ordonnance. Par contre, il y a une forte avanc茅e au niveau de la lutte contre les trafics. Des choses sont mises en place, des administrations, des commissions travaillent ensemble.En r茅sum茅, depuis votre retrait en 2001, rien n\'a chang茅.Depuis 2001, je r茅p猫te toujours la m锚me chose. Mon but est de prot茅ger les jeunes qui d茅butent, pour qu\'ils puissent affronter la r茅alit茅. Mais quand, 脿 c么t茅, vous voyez que les F茅d茅rations ne font pas le travail de sensibilisation n茅cessaire, alors qu\'ils ont beaucoup plus de poids que ceux qui parlent, comme Delion et Chiotti, c\'est d茅courageant. Je me demande parfois 脿 quoi je sers.Pierre FalarAfin d\'锚tre publi茅e, votre note : Doit se conformer 脿 la l茅gislation en vigueur. De plus, votre message doit respecter les r猫gles de biens茅ance : 锚tre respectueux des internautes comme des journalistes de 20Minutes, ne pas 锚tre hors sujet et ne pas tomber dans la vulgarit茅.锘縇es menus et recettes wetwet de cortaline il y a 10 moisj\'ai un budget de 1000/1500 euros, je souhaiterai l\'avis pour l\'achat d\'enceintes monitoring active pour brancher via une carte son et mon mac et 茅couter ma musique, je souhaite un son de tr猫s bonne qualit茅. merci Et nous esp茅rons vous fournir une exp茅rience d\'achat agr茅able et nous remercions toujours d\'une mani猫re ou d\'une autre nos plus fid猫les clients ! <a href=\"http://www.fpifrance.fr/nikepascher.html\" rel=\"nofollow\">Chaussures Nike</a> In the Russian text the basic information is more often taken from the general context or lexical components of the proposition. The translation from Russian into Italian requires consecutive hierarchization of the statement: asyndetic propositions are replaced by coordinate ones, whereas coordination is replaced by hypotaxis. The translation from Italian into Russian requires the grossiste Louis Vuitton inverse process.锘緽log mode L\'Express Styles Que repr茅sente aujourd\'hui la parole d\'un seul . au regard de la pens茅e unique, en fait d茅sesp茅r茅ment unique et commune Elle y va de quelques anecdotes et raconte comment elle a trouv la solution aux probl de toutes ses copines qui avaient des probl avec leurs mecs pleins de mauvaises habitudes : \"Si tu n\'arrives pas changer les habitudes de ton mec, change de mec\", leur a t elle l Elle est comme Imany, elle va droit au but. Ses textes sont toujours bien sentis et sans d bien accompagn et elle se r quand elle se lance dans des morceaux plus rythm aux refrains directs et efficaces comme sur Where Have You Been et Pray For Help. <a href=\"http://www.topexperiences.fr\" rel=\"nofollow\">UGG Pas Cher</a> Il faut aller chercher l dans les moindres recoins, souvent derri les rubriques Mentions l ou Qui sommes nous ou encore dans les CGV (conditions g de vente). Quand HP aura d茅localis茅 en inde puis dans 5 ans au congo je te rassures plus personne ne pourra payer d\'abo internet, de pc et tout le reste, ils se seront sabord茅s eux m锚me voici une liste des m茅dicaments anti cholest茅rol. <a href=\"http://www.socyret.fr/nikeblazers.php\" rel=\"nofollow\">Chaussures Nike</a> In short, Windows 8 Metro apps have been hacked, and it now just a matter of time until some enterprising developer creates a onebutton tool that pirates trial apps, unlocks every inapp purchase, and removes inapp ads. There are certainly changes that Microsoft could make to shore up the security of Metro apps, but it would only delay the inevitable. Really, this is just a natural part of Windows 8 evolution. 锘縆rispy Kreme second shop will drive Glasgow A bicycle storeowner asked me what he could do to keep his best employee from quitting. He could not afford to give him a big raise. I said, \"Give him a small raise and then ask him what job title he would like. It turned out the title the employee wanted was Director of Bike Operations (DBO). Problem solved. The job title changed his attitude about his job and sounded impressive to his friends too. \r\n \r\nhttp://www.yrkesroller.se/node/1555848\r\nhttp://www.tongxun6.com/forum.php?mod=viewthread&tid=236003\r\nhttp://www.lekool.net/forum.php?mod=viewthread&tid=5790754\r\nhttp://www.nascarcardlinks.com/comment/reply/2\r\nhttp://travacle.com/user_blog.php\r\nhttp://cafsocial.com/user_blog.php\r\nhttp://network23.com/phpBB3/viewtopic.php?f=12&t=92284\r\nhttp://namihazard.org/index.php?option=com_kunena&func=view&catid=2&id=298104&Itemid=53#298104\r\nhttp://tcoclub.net/thread-192650-1-1.html\r\nhttp://l2kow.com/vb/showthread.php?p=14803#post14803',0,'spam','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.95 Safari/537.11','',0,0),(66,1188,'Lisa','uouipuayi@gmail.com','http://gmbal.com/1011c','151.237.177.159','2013-11-15 01:09:40','2013-11-15 01:09:40','Traffic is the key to any website business. I found a company that has been an awesome resource in building our traffic and the communication back and forth has been great. I use most of the services offered by this site and I am now getting hundreds of targeted visitors to my website every day. Take a look here: http://gmbal.com/1011c',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705)','',0,0),(67,1186,'parajumpers parka','exutwbi@gmail.com','http://www.parajumpersparkashop.com/parajumpers-new-products_c3','113.128.44.170','2013-11-15 05:47:16','2013-11-15 05:47:16','What Style of Parajumpers Denali Leather-based Down Jackets Excellent Fit What Physique Shape?',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(68,427,'salwar kameez plain','kelle-kearney@internet-mail.org','http://noeloasis.nayana.com/xe/71409','192.99.3.226','2013-11-15 06:23:43','2013-11-15 06:23:43','Hi Dear, are you actually visiting this web page regularly,\r\nif so after that you will without doubt obtain nice knowledge.',0,'spam','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36','',0,0),(69,427,'brut champagne','wernerdyson@freenet.de','http://whsos.ufree.kr/xe/?document_srl=76807','192.99.3.226','2013-11-15 18:57:15','2013-11-15 18:57:15','There\'s definately a great deal to find out about \r\nthis issue. I like all of the points you have made.',0,'spam','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36','',0,0),(70,1186,'prezzi moncler','hrpchesrxe@gmail.com','http://www.monclersoutletita.com/moncler-borse-sale_c1','113.128.161.202','2013-11-16 06:04:23','2013-11-16 06:04:23','Moncler Jacken Moncler Dedicated To Dammam And Herren.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(71,430,'champagne drinks','louanne.battle@zoho.com','http://guro.newjinbo.org/xe/242246','192.99.3.226','2013-11-16 18:38:23','2013-11-16 18:38:23','Awesome article.',0,'spam','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.71 Safari/537.36','',0,0),(72,432,'assoleava','jhb67i55dfna@hotmail.com','http://7.ly/cjrmuggブーツ','208.177.76.15','2013-11-16 20:09:32','2013-11-16 20:09:32','UGG Payton Boots,is aware the way affluent and also life-and-death ugg shoes or boots get been in our existence. If you are opting in support of topic help or looking, or various other spots youll wish to to start with finishing touch your attire obtaining a remarkably appropriate subside of two ugg timeless cardy boots . At the consequence each a particular grown up men and also issue ladies are vexed in reference to the ugg bailey button triplet tuppence inexpensively appearance. Unusual stage mature men to be sure \' recognise todays prevalence movements. He has cultured what closely boots would proper stretch with the attire and also advance him to generate the own typeface record and also persona. Mens ugg shoes or boots shoes or boots is present in solitary genus, style and mean and also coloring ready on the market. Nautical starboard subside of two boots is material since each individual uncommon occasion. There are measureless series in any event mens ugg shoes or boots in every part of markets and also you could entirely set out the appropriate set of two boots \r\nhttp://tnij.org/47ot コーチ 財布 新作\r\nhttp://link.jeremysnotes.com/1c230 ugg ブーツ\r\nhttp://url.postpost.tv/jnq5 ugg オーストラリア\r\nhttp://qr.net/lNCE コーチ アウトレット\r\nhttp://linkbun.ch/011vo ugg ブーツ\r\n \r\n<a href=\"http://vl.am/1PqU\" rel=\"nofollow\">ugg ブーツ</a>\r\n<a href=\"http://0.mk/b04ef\" rel=\"nofollow\">コーチ バッグ</a>\r\n<a href=\"http://fff.to/1t9y\" rel=\"nofollow\">ugg ブーツ 激安</a>\r\n<a href=\"http://2u.lc/Cojt\" rel=\"nofollow\">コーチ バッグ</a>\r\n<a href=\"http://b54.in/4rau\" rel=\"nofollow\">コーチ 財布</a>\r\n \r\n<a href=\"http://2su.co/8L0\" rel=\"nofollow\">アグ ブーツ</a>\r\n<a href=\"http://jabb.im/j7r\" rel=\"nofollow\">ugg ブーツ 激安</a>\r\n<a href=\"http://tiny.pl/qt43l\" rel=\"nofollow\">ugg ブーツ</a>\r\n<a href=\"http://ln-s.net/:a+X\" rel=\"nofollow\">コーチ バッグ</a>\r\n<a href=\"http://cg49.qlnk.net\" rel=\"nofollow\">コーチ アウトレット</a>\r\n \r\nCoach- the data that is regularly associated with a trainer or a guru looking for sports is no longer so. Mentor today is in unison of the best manufacturers of Handbags, purses, necklace, attention laurel-wreath, keychain and all kinds of variety women accessory. With a view a vacation, cram offers baggage toilet kit, as a ratifier, they offering a chick dialect poke, for charge handling, you have a Direct handbag, for a prize, you can shop owing Louring & oyster-white gifts from the Coach outlets. The jewelry enunciate begin is a mix of ring, necklace, bracelet and such assorted ornaments so that the lady goes out with mistake and counterpart accessories. Instructor outlets beget caboodle that makes a stock of clothing complete. What else do we necessary to say? The aggregate is occult in that itself.',0,'spam','Opera/9.80 (Windows NT 6.1; U; ru) Presto/2.7.39 Version/11.00','',0,0),(73,432,'acxqzyl','rijzhmq@gmail.com','','216.244.75.178','2013-11-16 22:25:06','2013-11-16 22:25:06','<a href=\"http://zipperhushhats.tripod.com/\" / rel=\"nofollow\">Zipper Hush Snapback Hats</a> Put a message of team support on your jersey. Use black fabric paint and letter stamps or letter stencils to make your point. Use alliteration: Timberwolves! or Rule! or and True Trailblazers. Which is why counterfeit goods are so prevalent. Thieves stand to make a substantial profit from the sale of this memorabilia, which is why so much money is spent making detailed fakes. Detecting fakes is not an easy task, particularly with items like jerseys, where the style and material can.\r\n\r\n \r\n<a href=\"http://sneaktipf-uckyoupayme.tripod.com/\" / rel=\"nofollow\">Sneaktip Fuck You Pay Me Snapback Hats</a> Put your team mascot on the jersey. Use buttons, puffy paint and fabric paint, fabric scraps and glitter to bring it to life. College and professional teams have some rather outlandish characters representing them. A counterfeit jersey will often appear to have the correct imaging, but the crest color or number style will be slightly off, signaling the jersey is a fake. Study the jersey and stripe colors. While appearing at first glance to be correct, often counterfeiters will not be able to replicate the exact team colors, stripe colors and patterns.\r\n\r\n \r\n<a href=\"http://chinawholesalecheapnikenflj.tripod.com/\" / rel=\"nofollow\">china nfl jerseys nike</a> cheap jerseys bona fide national football league jacket as contrasted with\r\n\r\n \r\n<a href=\"http://cheapneweramlbfittedsnapbac.tripod.com/\" / rel=\"nofollow\">MLB fitted Hats</a> The National Football League is the largest grossing football organization in the United States. Only the top athletes in this sport play at this level, and they make a lot of money doing it. Fans of the game spend billions of dollars to watch, attend and buy team specific merchandise.\r\n\r\n \r\n<a href=\"http://cheapatlantathrashersjerseys.tripod.com/\" / rel=\"nofollow\">atlanta thrashers cheap nhl jerseys</a> The National Football League is the largest grossing football organization in the United States. Only the top athletes in this sport play at this level, and they make a lot of money doing it. Fans of the game spend billions of dollars to watch, attend and buy team specific merchandise.\r\n\r\n \r\n<a href=\"http://supermanconverseshoes.tripod.com/\" / rel=\"nofollow\">Converse All Star Superman Shoes</a> The Nike Club America Jersey represents one of the most talented and successful soccer clubs in the league. Rich with Mexican culture, in the center of the club shirt is stitched the Aguila. This represents all the pride and heritage Mexican futbol has to offer.\r\n\r\n \r\n<a href=\"http://ssur-hats.tripod.com/\" / rel=\"nofollow\">Ssur Snapback Hats</a> whenever by using a sports hat, it\'s also possible to add further collectors\' items systems through the state of mind identical. A frameworked sports jacket are usually a more durable memento of enjoyable or a well liked player. mounting tops might possibly make great presents acquire a jersey out of someone most liked player, duration it as well as provide it as a present,\r\n\r\n \r\n<a href=\"http://cheap-mighty-healthy-hats.webs.com/\" / rel=\"nofollow\">Mighty Healthy Snapbacks</a> With fabric paint, try swirls or color blocks or polka dots on the jersey. Or make use of the message technique using colored paint. Fan in purple and yellow. Players come and go in the NFL all the time, and it\'s not uncommon for a number to be assigned to two or three people on a team at a time. For avid NFL fans, this can make jerseys an expensive focus of collecting. One way to \"recycle\" some of your older jerseys to represent new players is to replace the nameplate on the back of the jersey.\r\n\r\n \r\n<a href=\"http://rocksmithhats.tripod.com/\" / rel=\"nofollow\">Rock Smith Snapback</a> A counterfeit jersey will often appear to have the correct imaging, but the crest color or number style will be slightly off, signaling the jersey is a fake. Study the jersey and stripe colors. While appearing at first glance to be correct, often counterfeiters will not be able to replicate the exact team colors, stripe colors and patterns.\r\n\r\n \r\n<a href=\"http://cheapfloridapanthersjerseys.tripod.com/\" / rel=\"nofollow\">florida panthers hockey jerseys</a> The Nike Club America Jersey represents one of the most talented and successful soccer clubs in the league. Rich with Mexican culture, in the center of the club shirt is stitched the Aguila. This represents all the pride and heritage Mexican futbol has to offer.',0,'spam','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2','',0,0),(74,738,'Anne','bapnjaedej@gmail.com','http://gmbal.com/1511e','151.237.177.94','2013-11-16 23:34:26','2013-11-16 23:34:26','Traffic is the key to any website business. I found a company that has been an amazing resource in building our traffic and the communication back and forth has been great. I use most of the services offered by this company and I am now getting hundreds of targeted visitors to my website every day. Take a look here: http://gmbal.com/1511e',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','',0,0),(75,430,'xelerated guides','wmpshnv@gmail.com','http://www.xeleratedwarcraftguides.net','212.233.129.132','2013-11-17 15:31:03','2013-11-17 15:31:03','I\'ve recently started a web site, the information you provide on this website has helped me tremendously. Thanks for all of your time & work. \"The man who fights for his fellow-man is a better man than the one who fights for himself.\" by Clarence Darrow.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(76,1200,'Alulaunpalfot','k.olomytsyura@gmail.com','http://buddydev.com/members/mogadon/profile/','188.92.75.244','2013-11-17 17:12:35','2013-11-17 17:12:35','health unit coordinator jobs health insurance in wisconsin . dental health care insurance <a href=\"http://www.babygaga.com/user/12225650\" rel=\"nofollow\">ritalin no rx</a> cigna private health insurance st francis health system',0,'spam','Opera/9.80 (Windows NT 6.1; Win64; x64) Presto/2.12.388 Version/12.11','',0,0),(77,430,'free live cam','uulwaxdn@gmail.com','http://www.sexero.info','212.233.129.132','2013-11-17 17:15:27','2013-11-17 17:15:27','I\'ve recently started a website, the information you offer on this site has helped me tremendously. Thanks for all of your time & work. \"One of the greatest pains to human nature is the pain of a new idea.\" by Walter Bagehot.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(78,430,'free live cam','wfybnnqpiqj@gmail.com','http://www.sexero.info','212.233.129.132','2013-11-17 18:16:16','2013-11-17 18:16:16','I simply wanted to make a quick word in order to express gratitude to you for those wonderful recommendations you are placing here. My extensive internet search has at the end been compensated with excellent know-how to go over with my family members. I would say that many of us visitors are definitely blessed to be in a fabulous website with so many special people with insightful suggestions. I feel pretty blessed to have encountered the web pages and look forward to really more enjoyable moments reading here. Thanks a lot once more for all the details.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(79,1073,'Elizabeth','dlhpfp@gmail.com','http://gmbal.com/1511e','151.237.177.88','2013-11-18 04:44:19','2013-11-18 04:44:19','Website traffic doesn\'t come easy these days. It’s hard and it usually takes a long time. In many cases, too much time… So much that you might be ready to call it quits. A friend of mine shared a web traffic service with me on my site and I want to share it with you. I was skeptical at first but I tried their free trial period and it turns out they are able to get hundreds of visitors to my website every day. My sales revenue has increased tenfold. Check them out here: http://gmbal.com/1511e',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','',0,0),(80,683,'woolrich','ja.ckchegnihao.ma.a.li.m195.8@gmail.com','http://www.emarketingpodcast.com/woolrichit.html','172.246.216.94','2013-11-18 08:02:37','2013-11-18 08:02:37','<a href=\"http://www.casa-polis.com/barbour-paris.html\" rel=\"nofollow\">barbour paris</a> Marshall apologized Monday and said his remarks were misconstrued. I hope so. I have a learning disabled, first born son, but I have never had an abortion. Kevin Maguire is an odious little man. Pathetically defending his mates in the Labour party but making cheap jibes about the Tories. Just imagine the outrage if it was the Tories who released the terrorists the interviews of the relatives of the disaster victims condemning them for putting profits before innocent lives!. This book of sex is one of the great gifts of ancient India. This book has described sexual intercourse in a way that has not been mentioned in any other book. This book has been studied and research on by many experts all over the world. Time FrameThe amount of time you spend on the elliptical plays a role in losing your belly fat. If you just glide for a few minutes, you will not make much progress. According to the Centers for Disease Control, it can likely take 60 to 90 minutes of physical activity per day to lose weight. Thatcher\'s ideas resonated because they were an effective antidote to the problems of the times. In the 1970s, the Western world staggered under the weight of oil shocks, rising wages, rocketing inflation, slowing productivity and growth, labor unrest, high taxesand sclerotic state owned companies. These are not the problems we face now.. \r\n<a href=\"http://www.tnnoa.com/parajumpers.php\" rel=\"nofollow\">parajumpers</a> So no, men aren\'t funnier. They may earn more from the comedy business; but imagine a life of gruelling travel, hectic shoot and show schedules, constant entertaining and competing, in a physically exhausting life, whereas your wife/girlfriend/love interest could easily do what you do, but chooses to relax instead, spending what you make. I don\'t know who is funnier but I can tell who is having the last laugh. Survivin downregulation was observed in MCF 7E cells (a) but not in MCF 7L cells (b). The relative survivin expression is indicated after normalization to actin protein. (c) Growth factor deprivation induces cell death in MCF 7E cells but not in MCF 7L cells. The odds are none of you have ever, say, robbed a liquor store or assassinated a public figure. But we\'ve all broken the law, if only to sneak a beer before the statute said we were old enough, or to paint a dong on an abandoned bridge. Minor stuff. \r\n<a href=\"http://www.maximoupgrade.com/abercrombiefr.php\" rel=\"nofollow\">abercrombie france</a> World Wide Brands is a company who actually screens wholesalers before they approve them for their users on their site. For a monthly fee, you can join their site and they will help you though the process of finding a wholesaler and starting your business. You use their software and this makes it easy to get started working with a wholesaler and keeping track of your business. All I can see are the old comments. Another interesting thing I noticed was that I can see only comments from Triond Members. Earlier I used to get comments (3 on average daily) from guest users as well. Though celebrities still can be spotted at such tourist stops as The Beverly Hills Hotel and Rodeo Drive, stars come out to play off the beaten track at shops, restaurants and clubs that can go in and out of fashion as rapidly as actors whose 15 minutes of fame are up. Buzzes with the excitement of Oscar season, here\'s a tour of some newer haunts, along with oldies where the stars unwind. (All but the invitation only Spider Club are open to non stars. Sur une impulsion, imprgne de l\'esprit hors la loi d\'un graffeur. C\'est un geste de l\'expressionnisme en gras, comme le hawn goldie de laugh in\" jours. Ceci est crit la main: griffonn sur une impulsion, imprgne de l\'esprit hors la loi d\'un graffeur. \r\n<a href=\"http://www.waterhouselab.com/saclouisvuitton/\" rel=\"nofollow\">sac louis vuitton pas cher</a> Imagine that what you\'re writing really matters! At Higher Level in 2006, TEXT 1 asked for a narrative diary Imagine that, in an attempt to control his feelings, the boy writes into his diary an account of the incident and his reactions to it. Write out his diary entry. There is much discussion as to whether or not young people are being exploited by advertisers.. That is just a fact. Not to mention the tone your posts have. You sound weak. The D type cyclins constitute an important component of the cell cycle engine that enables the cells to respond to physiological changes. Cell type and developmental stage specific roles of D type cyclins have been described but the cyclin D requirement during GC reaction has not been addressed. In this study, we report that cyclin D3 is largely dispensable for proliferation and Ig class switching of in vitro activated B cells. Transformation of a society from a rural and agrarian condition to a secular, urban, and industrial one. It is closely linked with industrialization. As societies modernize, the individual becomes increasingly important, gradually replacing the family, and renewal strategy. \r\n<a href=\"http://www.sidegemeinde.com/peutereyoutlet.php\" rel=\"nofollow\">peuterey outlet</a> Sauers wrote in her farewell blog that there was one particular model who probably could serve as a poster child for the dangers of the industry. The model was managed by her mother who pocketed her daughter\'s considerable earnings from television commercials. She was engaged in an intimate relationship with a male musician, one with a penchant for barely legal girls.. Most people wear clothing just like what their friends wear. Tens of thousands of Wounded Warriors and caregiver . On November 6, the Chiefs Rookie Club, Chiefs Cheerleaders, K. Follows rigorous standards of quality and accountability. Is among the first to achieve this important distinction for online health information and services. Editorial policy, editorial process and privacy policy.. The use of HPLC hydrophobic interaction chromatography as the next purification step resulted in separation of the 7 and 18 kDa proteins (Figure 2A). Finally, the fractions containing these selenoproteins were fractionated separately on a C18 reversed phase HPLC column (Figure 2B and C). Radioactive fractions corresponding to the 7 kDa selenoprotein eluted at 49% acetonitrile (Figure 2D) and the 18 kDa selenoprotein fraction at 47% acetonitrile (Figure 2E). \r\n\r\nI am thinking about building a system very similar to this. However, I want to break away from MS licensing and tax. If I install a Linux distribution, am I neutering the video card? In particular, I play 2 games: WOW and Civ4. The particular African american design of Moncler Females Layers charges $209. This kind of jacket will be particularly made with the thought of Alaskan jacket inside 1964. The particular jacket features a total highlighted lid. The tight, open neck tank and pencil skirt creates a column effect that compresses everything and gives the illusion of height. Alone, these pieces are blah. But layer in a knit, scarf and bold baubles and you\'ve got a look. The 800 foot square store is dedicated to outerwear, accessories and footwear for males, including the iconic leather boots that Ugg is known for. It\'s part of a growing trend of retailers opening shops dedicated to their male clientele. The company was born in Lima, Peru, in 1991 in a small sewing shop.10 ranges that wont be uttered with this year\'s american footbal season http://www.mxitcms.com/peuterey/ During the year ended December 31, 2012, the Company\'s wholly owned subsidiary, Steven Madden Retail, Inc., owned and operated 109 retail stores, including 91 Steve Madden full price stores, eleven Steve Madden outlet stores, two Steven stores, one Report store, one Superga store and three e commerce Websites. During 2012, it opened twenty new stores, acquired seven stores as part of the acquisition of SM Canada, established Superga and Betsey Johnson online stores and closed four under performing stores. Steve Madden stores are located in shopping malls and in urban street locations across the United States and Canada..if you want a glass of ordinary water at lfw So, focus on what is important and stop falling into the trap of ignorance! Dem. Or Rep. None of us can afford living in a cardboard box. Mamas, I want you to know that all sorts of things can happen. Also want you to know that these are things you will be able to handle as long as you don have expectations that you should be the perfect mom, able to create a perfect baby and perfect environment in which to raise him or her. Let the baby gurus fool you.2013 trend setting the women your used watches stud rearfoot hunter wellingtons detail http://www.boyntonbusiness.com/hollisterpascher/ Don\'t worry however, since it is obvious that what you will wear will be something equally handsome, but not as handsome as the groom himself. If you are a guest, read behind the invitation\'s message if the dress code is not explicitly stated. If the type on the paper, the paper itself, the language. Where to eat The Rainbow Room (tel: 212 632 5000) 49 West 49th St. One of the most opulent dining venues in New York. Hugely expensive, but worth it for the view. The Lake Ronkonkoma Ice Boat and Yacht Club held their annual regatta on Mecox Bay in Watermill NY on the east end of Long Island this year. We had a pretty long cold snap and the ice was solid, smooth, and snowless good conditions for ice boating and, in fact, all manner of ice entertainment. On the day of the races, it was a cold, clear day with winds accelerating during the day to possibly 25 30 mph. http://www.mxitcms.com/tiffany/ The Ugg boots come in a variety of designs colors and can be knee length or ankle length also. Today, the Ugg boots come in a riot of colors such as fuscia, black, pink, blue etc. They are also available in the lace up and slip on variety as well.. These people are getting government assistance because they can afford to live anywhere else (I assume). What really irked me was that slice of ice cream pie. When I get stiffed on a delivery and dessert is on the ticket I always view the dessert as my lost tip.. They are not waterproof! Yes, though some bogus vendors or manufacturers would claim that they are waterproof, original Australian Uggs are not. They are weather proof but not waterproof. The first thing you should do to ensure that you prevent them from getting damaged due to moisture from heavy rain water or snow.. http://www.sargewear.com Your outgrown gray suit should have tipped me off to this basic fact of biology. Outfit fit you any worse than before it\'s still short in the sleeves and tight and high in the legs. But your voice has gotten older. Buying sheepskin boots from factory directly will also save you a lot. Shoes are not changed hands among merchants. You can get them on prime cost. Jeans tucked into boots are still one of the most popular styles for girls, but we are also selling a lot of jeggings this year, said Simon, referring to the flexible, spandex blend leggings fashioned to look like denim. For guys are becoming a bit straighter in the leg. They still pretty relaxed through the thigh, just narrower in the leg. \r\n\r\n<a href=\"http://www.casa-polis.com/barbour-paris.html\" rel=\"nofollow\">barbour paris</a> Both tests were done and were negative. Two different vet offices took blood smears for the hemobart and saw the parasite. The ER vet said she couldn be sure if the parasite was hemobart because it could be other things. Carrying extra weight around your belly is not only a concern cosmetically, it also increases the risk of many chronic diseases. This includes heart disease, diabetes and some forms of cancer. Excess weight that is carried in the midsection can place a strain on your back muscles and contribute to chronic back pain. Sanctuary comes back to bite you, Los Angeles. The unpaid fines probably come back to unregistered, uninsured cars which are probably driven by what the \"un\" term? the undocumented. LA Parking once ticketed my car for an invalid registration when I clearly had the DMV issued temporary properly displayed. Go BOE move as fast as you can get our schools restructured. NCAE should be helping not having your\" tea parties\" at the meeting. Part of the solution or part of the problem?She continues to organize bands of protesters so that the media can happily report that SO many people were upset and stormed out over the new school board carrying out their campaign promises.Sounds like she\'s rallying troops to rant and rave at the next meeting, too.This intentional display of emotion and protest does not represent ALL NCAE members nor the Voters that elected ALL FOUR Candidates that NCAE and N did NOT endorse!Unfortunately, her agenda and the previous school board\'s agenda were synonymous.Since WCPSS policy was routinely rubber stamped by the previous board, teachers HAD NOBODY to advocate for their views when they were not aligned with Central Office Administrators.Teachers were Forced into a new Wednesday schedule with NO Advanced notice.10 explanation why experienced more \r\n<a href=\"http://www.shewyne.com/moncleroutlet.html\" rel=\"nofollow\">piumini moncler outlet</a> Hollister clothing Later, the FeiJi (Ezra marketing genius Fitch) sir will brand name as abbe cloning Abercrombie and Fitch Jeans than FeiJi Abercrombie (name), Abercrombie and Fitch Pants sedulous make long and difficult to read and written, Abercrombie and Fitch Tees sounds very rap cool. Abercrombie and Fitch Shorts In 1988, Abercrombie and Fitch Sweaters the Limited company bought \"cheap product sales Abercrombie and Fitch Outerwear In 1992, the Limited company, Abercrombie and Fitch Hoodies the chairman of the Banks that because the fancy adefovir jeffries in leisure Abercrombie and Fitch Polos clothing design outstanding talent, Abercrombie and Fitch Shirts will he beget door, for Abercrombie (add) brand new vitality. Since Abercrombie (start) dress glows green vigor. When CCC GCG was tested, we did not observe any change in the level of +1 frameshifting between sufY+ and sufY204 strains (data not shown). Frameshifting sites were constructed by placing a CCC codon in the beginning of the lacZ gene followed by any of the four CAN codons to test whether the second site CCC CAA in the hisC3737 frameshifting window was the frameshifting site. We introduced these plasmids into strains GT5633 (sufY+) and GT5424 (sufY204). Yeah all the schools by my house have them . But honestly once someone is past the metal detectors they can roam about freely. Some of the other schools in the district do not have them but they require you to hand your id over to the person working at the only unlocked door. \r\n<a href=\"http://www.mxitcms.com/hollister/\" rel=\"nofollow\"><b>hollister milano</b></a> Many people push for a promotion so that they can earn more money, show advancement on their resume, and ultimately have more power. If you ask enough times, many employers will give you the manager job you desire. The problem is there is often no one to step in to do your old job. Roland Maw of Kasilof is executive director of United Cook Inlet Drift Association and is co owner of a charter and salmon research business based in Homer. He has served on the United Fishermen of Alaska\'s board of directors, on the Kenai Peninsula Fish and Game Advisory Committee and on the Joint Legislative Salmon Task Force Governance Committee. Maw earned a doctoral degree in forestry and wildlife management from the University of Alberta in 1988.. BikingBiking is not just for hills and roads. There are two types of bikes to choose from indoors: upright and recumbent. Both are low impact and cause you to burn calories while working your lower body muscles. Silk ties, however, do not go with some suit so make certain that the texture of your tie is in accordance with the texture of the suit you are wearing. PatternMen also need to consider pattern when buying or wearing a tie. Make certain that the tie does not clash with your shirt s pattern. \r\n\r\n<a href=\"http://www.friskdesign.co.uk/barbour.php\" rel=\"nofollow\">barbour outlet</a>\r\n<a href=\"http://www.sargewear.com/Moncler/\" rel=\"nofollow\">Moncler</a>\r\n<a href=\"http://www.maximoupgrade.com/abercrombiefr.php\" rel=\"nofollow\">abercrombie france</a>\r\n<a href=\"http://www.sidegemeinde.com/moncleroutlet.php\" rel=\"nofollow\">moncler sito ufficiale</a>\r\n<a href=\"http://www.affc.it\" rel=\"nofollow\">moncler outlet</a>',0,'spam','Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20100101 Firefox/17.0','',0,0),(81,1186,'doudoune moncler pas cher','j.a.ckc.hegni.ha.omaa.l.im1.958@gmail.com','http://www.mnfruit.com/doudounemoncler.php','172.246.216.94','2013-11-18 08:12:13','2013-11-18 08:12:13','<a href=\"http://www.isteevim.com.tr/barbour.htm\" rel=\"nofollow\">barbour outlet</a> I was watching the interview by Julain and President Corea of Ecuador last night. There was a comment by the President that just because the Chinese do not have light eyes does not mean that they are the Devil in disguise or something to that effect. Well, the US will demonise the Chinese in every which way they can. Brian Coleman, the owner of sponsor Rapid Fire Arms in Sandy, Ore., has a son on the Sandy Cal Ripken League team. He told The Huffington Post that the design is his store\'s logo, and he isn\'t willing to change it. He added that he has the support of locals and merely wants to help the players.. Mutations E144Q and D167N had no phenotype and are not considered further. In addition, as H229C had the same phenotype as H229A, we elected to pursue further studies only with H229A. For the Group 1 variants D83N, S177A, D228N and H229A, the gene for the ribosomal protein L2 and the mutagenized genes were cloned into the plasmid pQE 60, which plasmid adds eight additional codons for the amino acids Arg, Ser and His6 to the 3\' end of the cloned gene. \r\n<a href=\"http://www.corsodiesperanto.it/woolrich.php\" rel=\"nofollow\">woolrich sito ufficiale</a> Another more preferable saying of the Valentine\'s Day is that Valentine is put into jail because he is a Christian. He falls in love with the daughter of the jailor and in the morning of his sentence day, he writes a farewell love letter to her lover. Nowadays, people observe the tradition of sending cards to their lover or people they admired. The threshold to step into a psychiatric hospital is however apparently much higher than that found at a medical hospital. My experience is that sympathy was often replaced with frustration, confusion, or well meaning advice along the general theme of yourself together Colleagues did not come to visit me when I was in the Linden centre, perhaps put off by the association with mental illness. To have a mental illness can be very lonely.. The winter season is just around the corner and now is the time to purchase a new pair of UGG boots. But what is offered or what is selling at this present time. Well, below are four of the best deals and hot sellers for this 2008 season. Between 2004 and 2008, and again in 2009 10 and 2010 11, the growth rate was over 8 percent and, in fact, crossed 9 percent in four of those six years. The average for the 11th Plan period, entirely under the UPA Government, was 8 percent, the highest ever in any Plan period. Achieving high growth, therefore, is not a novelty or beyond our capacity. \r\n<a href=\"http://www.ibcsales.com/hollister.php\" rel=\"nofollow\">hollister outlet</a> I recall being told that most women carry babies and have pregnancies similar to their mothers. My mother had difficult pregnancies and suffered many miscarriages. I was petrified that my pregnancies would be the same. PHN110 carried the 3A\' test gene plus the 2A\' internal control gene (Figure 1A). PHN200 carried 3A\' as a test gene and 5A\' as an internal control gene (Figure 1B). The test gene 3A\' and control genes 2A\' or 5A\' are under separate control by the Ptrc promoter. However, for women who are slightly beyond the parameters of size zero, wide calf knee high boots may serve the purpose quite well. All in all, the best way to put on a pair of knee high boots is to keep the shaft wide enough to be appropriate for your legs. Knee high boots look extremely sassy when donned with a skirt. Now we have our issues with Uggs (or at least the way they look they feel like Heaven on your feet) as much as the next fashion savvy girls. But we would pause before suggesting that Ugg boot wearers are inclined to contract STDs. Jezebel snapped a screenshot before the post was taken down. \r\n<a href=\"http://www.davidhabchy.com\" rel=\"nofollow\">barbour coats</a> The prices relating to Ugg Boots Outlet the Uggs for the kids is often as less expensive due to the fact can compare to one other choices which aren creating Ugg Boots Sale the right product or services nevertheless price is a lot higher launched to Holiday there are various ignore Uggs Outlet Uggs online. Therefore i would suggest certainly go along with most of the UGG boots Uggs Outlet for youths.She was referring to the fact that I was se xually molested by a pedophile when I was 12 years old.I bring this to your attention because at one time, I thought HeavenSent was just a harmless old hag mad at the world. Now I realize she is far stranger. We are pleased to report first quarter sales and earnings that exceeded our expectation. Our performance was especially gratifying given the current economic climate and challenging retail environment. While no company in our space is immune to the slow down in retail traffic and consumer spending, we believe our results highlight the strengths of our brands and underscore the benefits of our controlled distribution strategy.. Even though they\'re sold located at affordable prices are wonderful top quality not to mention being user friendly. One of many varieties by using Burberry nova take a look at is really the most popular along with appreciated by means of Celebrities, devices besides other highly successful people. All the needlework in addition to appreciation of characteristic is considered the legitimate character from Burberry. \r\n<a href=\"http://www.mnfruit.com/louboutinpascher.php\" rel=\"nofollow\">chaussures christian louboutin</a> Silly BandzSilly Bandz are fun! Silly Bandz are cute! Silly Bandz are, apparently, a distraction in the classroom and should not be permitted. Schools all over North America have banned these collectables from class, but that sure doesn\'t keep them from getting trading at recess. Schools, teachers are preventing children from making \"best friends\" in an attempt to save others\' feelings.. A family business for over 179 years, Clarks Shoes has led the way in shoe manufacturing, becoming one of the leading brands of shoes in the world. The success of Clarks Shoes can be attributed to the family behind the company. They have been, and are still to this day, committed to producing a high quality product for every man, woman and child in the world. Boycott canada goose Reason 1: Louis Vuitton Speedy 25 Bag with its notorious monogram canvas and classic silhoette has been in style for years and years now, so once you get it, you can be sure it will look fashionable and in style as long as you have it (which is not always the case, especially with the it bags of the season, like this summers Prada stripe hobo etc. On the other hand, she preferred the opposite and carried leather Birkin in black which was covered with pointed metal studs instead of the love message while in London. If you are unaware of what this it is, this is the process of selling someone else product and earning a commission on any sales you generate.. \r\n\r\nContainer of vanilla or plain Greek yogurt and mix with cup of confectioner\'s sugar. Add a teaspoon of vanilla, almond or rum extract for extra sweetness. Allow to thicken in the refrigerator for 30 to 60 minutes before spreading on cake or cupcakes. My legitimate simply rental ads are routinely blocked and or flagged off. Example, I posted a rental ad today on my account and it was immediately blocked. I posted a different rental ad via my friends account and within two hours it was flagged off. http://www.gotprintsigns.com/hollisterpascher/ UGG still has a relatively tiny presence in China and is working to retool its business in the region. We\'re very optimistic about the future of UGG, as we believe the weak results were a function of weather rather than fashion. A strong winter this year could clear excess inventory for a solid 2013.. Washington has failed miserably. Has there been any other time since the Civil War when this many states were opposed to some federal legislative effort? Not what you normally expect from your elected representatives. I believe the mandate is in fact unconstitutional, but I don\'t have a lot of faith in even a conservative Supreme Court when it comes to limiting the power of Washington. http://www.mxitcms.com/hollister/ The question for consumers is: does it add value? I think we\'re starting to see consumer backlash, but obviously not that much consumer backlash. It will be interesting to see if this is a trend that grows or dwindles in coming years. If I were a gambling man, I\'d bet on things getting worse before they get better.\'queer eye\' spwhileoff missing from gay shtick For Q2, total inventory was up 65% to $346 million, or 21 weeks. Management believes it will end the fiscal year with about $329 million in inventory, or up 30% year over year. If true, that would mean the company would have nearly $920 930 million of inventory on hand in order to sell $600 million worth of goods. http://www.friskdesign.co.uk/barbour.php I hope that my answer is of some help to you. They are basically a kind of wild dog with facial features and markings like that of a raccoon and a build like that of a fox only with shorter legs and tail and very dense fur. They are the only canids that have curved claws which help them to climb trees. It smells awful but I continue. Eventually, the taste had a negative impact on me and I gave up.If I ever get knock down by serious illness which MMS claim to be able to help, I will get back on it again.I still have 19 liters of stock with me. I have sold a few bottles and they said good, feel strong but taste bad, very bad. http://www.corsodiesperanto.it/moncleroutlet/ Analysts had been expecting earnings of $1.29 a share. \"We expect good earnings from all major segments of the company,\" St. Joe said. Comme des Garons Shirt shirt. Marc by Marc Jacobs cardigan. Jeans. If you live in Los Angeles and haven\'t been to Kitson Couture you are in for a wonderful treat. If you plan to visit Los Angeles make it your business to stop by and enjoy the shopping Hollywood style. For more information on Kitson Couture in Los Angeles call 310 859 2652 or visit the Web site today.. The emergence is generated by what is termed self organization of systems components through their relationships which, however, must have a definite directional velocity of gradient flow of energy/information that is aligned with the polarity of the systems. It simply means that the relationships must be system optimizing and not self maximizing (Yes, you can make money but not at the expense of harming the larger system).A that this administration originally campaigned on, and attempted on many fronts to subsequently introduce, needs also to be viewed as an emergence with all the pre change and post change affected relationships. The complexity of such context is so vast and dynamic that it cannot be fully modeled.3 supplement stock market for magic formula putting \r\n\r\n<a href=\"http://www.mnfruit.com/louboutinpascher.php\" rel=\"nofollow\">louboutin pas cher</a> More men than women consumed tobacco and alcohol. Roughly 21% of men and 16% of women smoked and about 77% of men and 74% of women were classified as frequent drinkers throughout the study period. About 9% of men and 10% of women became non or infrequent drinkers and 6% of men and 10% women stopped smoking during the study period. As the capital of London to strengthen the police force, the evening of 9 events slowed down the video: London, British Prime Minister David Cameron said the riot under control,CCTV news channel, but in Manchester, Salford, Liverpool, Nottingham, Birmingham and other cities, small scale riots continues. In addition, there are reports that three people Thursday night in Birmingham in a car killed defending their homes, police are investigating the incident. Cameron, uggs bailey button triplet10 am to reconvene the meeting of emergency response. Matrix remodeling enzymes, including TIMP 1, were also hyperexpressed at this time point. Inflammation related molecules that became up regulated included PTGS2/COX2, and several serine/cysteine proteinase inhibitors, including SpI2 1, Spp1, and plasminogen activated inhibitor 1 (PAI 1). Surface molecules that became up regulated included vascular cell adhesion molecule 1 (VCAM 1) and Syndecan 4. \r\n<a href=\"http://www.mnfruit.com/doudounemoncler.php\" rel=\"nofollow\">doudoune moncler</a> Again, he was sharing some story about a manager he liked that took him out for breakfast and paid for it whenever he did a good job. He explained that he told the manager that he appreciated being given respect and not being treated like a monkey just slaving away everyday. When he said that my jaw just dropped! I could not believe that he had the nerve to make that comment in our class. A lot of people contribute money to IRA\'s or 401k\'s.In one of your earlier posts you insinuated that it was commonplace that teachers were receiving food stamps or other welfare benefits. Yet, in this post you claim that you don\'t actually know of anyone personally. The entire point of my comment is where is the line drawn when it comes to teacher\'s salaries? Everyone has a different situation and some are more difficult than others. Furthermore, pretreatment with flunarizine alone predominantly confined Nrf2 protein into the nucleus in cisplatin treated cells (Figure 2k and l). Cells were treated with 20 M cisplatin for 6 h in the presence or absence of 10 M flunarizine. After reaction with DAPI and anti Nrf2 antibody, cells were visualized under fluorescent microscopeFull figure and legend (142K)To further validate this phenomenon, cells were treated with 20 M cisplatin in the presence or absence of 10 M flunarizine and cell lysate was fractionated into cytoplasmic and nuclear parts to carry out the Western blot for Nrf2. \r\n<a href=\"http://www.agentparadise.com\" rel=\"nofollow\">woolrich sito ufficiale</a> This plan would help me save my home. I was a mortgage Broker and have been left with no income. Now My husband has found a new job at 65k a year buthas to drive to new mexico but we are not sure if it is in time to save our home. Why not try something a little less expensive, but still designer chic? Here are shoes I\'ve listed that can be bought at Amazon right on this page, with no crowds, usually free shipping, and much less hassle. Just be sure you make certain of your size before ordering. Carries Kate Spade, Calvin Klein, Via Spiga, and Enzo Angiolini, as well as most of the designers mentioned above.. Let\'s not forget about the color black only is it the safest color choice, but it can instantly uplift an outfit if styled right. Louboutins get our vote for being the best of the lot, simply because the foxy dual tone combination of the red soles against the black frabjous high heel, has us dreamy eyed. A woman can go from stuck up CEO to swank vixen within seconds, with a pair of black high heels. (3) gueksqueemo says:People utilize diverse casings. It has to do utilizing their own persona also , the things they like using for his or her confront. Metal casings look nice, nevertheless there may be problems in the event you choose this sort regarding substance. \r\n\r\n<a href=\"http://www.tinyvita.com/giuseppezanotti.php\" rel=\"nofollow\">giuseppe zanotti</a>\r\n<a href=\"http://www.mxitcms.com/moncler/\" rel=\"nofollow\">Moncler Sito Ufficiale</a>\r\nhttp://www.gotprintsigns.com/monclerpascher/\r\n<a href=\"http://www.thehygienerevolution.com/cl.php\" rel=\"nofollow\">louboutin</a>\r\nhttp://www.emarketingpodcast.com/peutereyit.html',0,'spam','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','',0,0),(82,422,'The Passenger | My Blog Can Beat Up Your Blog','','http://lancemyblogcanbeatupyourblog.wordpress.com/2013/11/18/the-passenger/','192.0.81.171','2013-11-18 13:49:13','2013-11-18 13:49:13','[…] […]',0,'spam','The Incutio XML-RPC PHP Library','pingback',0,0),(83,1186,'moncler sito ufficiale','*********@gmail.com','http://www.sidegemeinde.com/moncleroutlet.php','23.244.104.56','2013-11-18 17:11:26','2013-11-18 17:11:26','Hollister is a well known clothing brand name which has long been bringing style, glamour and sophistication inside the life of millions of people, residing throughout the globe. At first, the clothing of the prestigious brand name experienced been only marketed in America, but now you will find many Hollister clothes can be seen in Europe and Asia. Hollister has turn into satisfying in catering the style that can stand for the young\'s individuals.no one in the store was injured\r\nmoncler sito ufficiale http://www.sidegemeinde.com/moncleroutlet.php',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','',0,0),(84,1186,'ugg boots sale','ycbvcfkiuno@gmail.com','http://www.snowbootsamazon.com/kids-ugg-bailey-button-triplet_c6','113.128.170.57','2013-11-18 17:14:33','2013-11-18 17:14:33','Ugg 1978// 35th Anniversary Collection Photoshoot.Click to see more news.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(85,1188,'StefanoG','250bee4ny@hotmail.com','','31.6.71.136','2013-11-18 20:25:51','2013-11-18 20:25:51','I noticed that it\'s hard to find your blog in google, i found it on 19th spot, you should get some quality backlinks to rank it in google and increase traffic. I had the same problem with my blog, your should search in google for - insane google ranking boost - it helped me a lot',0,'spam','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.91 Safari/537.11','',0,0),(159,1188,'His Average AdSense Income','','http://ProofOf.com','91.229.174.174','2013-12-27 00:13:27','2013-12-27 06:13:27','<strong>Website You Should Be Visiting...</strong>\n\n[...]I saw somebody talking about this on Tumblr and so I linked to it[...]...',0,'spam','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)','trackback',0,0),(86,1152,'oreo 5s','www.earthhertzrecords.com@gmail.com','http://www.resourceleadership.com/jordanoreo5s.htm','62.210.200.93','2013-11-20 22:45:59','2013-11-21 04:45:59','This oreo 5s tend to be very snazzy or excellent. You will find they can indeed be products for anybody who would like to remain elegant or simply get very good oreo 5s.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',0,0),(87,867,'gamma blue 11s','www.earthhertzrecords.com@gmail.com','http://www.iatse295.com/gammablue11s.htm','62.210.200.93','2013-11-20 23:36:01','2013-11-21 05:36:01','My best friend will bring them all practically just about every day. I was concerned which your sequins may be found un tied, yet well-made with out obstacles all ready. Wonderful gamma blue 11s!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(88,1144,'oreo 5s','www.earthhertzrecords.com@gmail.com','http://www.resourceleadership.com/jordanoreo5s.htm','62.210.200.93','2013-11-21 04:22:49','2013-11-21 10:22:49','This can be my initial oreo 5s and that i went with these simply because they appeared a little improved suit on me compared to the other kinds. and i feel they can be essentially the most great oreo 5s I have at any time owned up to now!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','',0,0),(89,1253,'gamma blue 11s','www.earthhertzrecords.com@gmail.com','http://www.iatse295.com/gammablue11s.htm','62.210.200.93','2013-11-21 05:19:54','2013-11-21 11:19:54','Manged to get my personal own during the aqua together with gamma blue 11s are extremely pretty! gamma blue 11s meet awesome and they are exceptionally fluffy.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)','',0,0),(90,35,'gamma blue 11s','www.earthhertzrecords.com@gmail.com','http://www.iatse295.com/gammablue11s.htm','62.210.200.93','2013-11-21 05:52:58','2013-11-21 11:52:58','I love my gamma blue 11s! These are very great and occasionally make me overheat... Which is not a terrible factor. They may be certainly cute and that i have had many excellent remarks on them I could not count with my fingers and toes!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)','',0,0),(91,755,'oreo 5s cyber monday','www.earthhertzrecords.com@gmail.com','http://www.resourceleadership.com/jordanoreo5s.htm','62.210.200.93','2013-11-21 06:18:29','2013-11-21 12:18:29','parfait,tr¨¨s bon oreo 5s cyber monday Burberry en tenant qualit¨¦,envoi agile.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705)','',0,0),(92,1186,'gamma blue 11s cyber monday','www.earthhertzrecords.com@gmail.com','http://www.iatse295.com/gammablue11s.htm','62.210.200.93','2013-11-21 07:15:58','2013-11-21 13:15:58','This is the second gamma blue 11s cyber monday I obtain and i like them!!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','',0,0),(93,1142,'air jordan 5 oreo','www.earthhertzrecords.com@gmail.com','http://www.resourceleadership.com/jordanoreo5s.htm','62.210.200.93','2013-11-21 07:54:09','2013-11-21 13:54:09','1 . i like Every little thing approximately air jordan 5 oreo ! when i bring these for skinnies, pantyhose, shorter, summer winter time fall springg ! my spouse and i dodnt get any for that originate though mainly because instant messaging undecided ! these air jordan 5 oreo happen to be phenomm ! we have A few couples (saying, chocolate apple inc and gray cardy) and desire additional !!!!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(94,1101,'gamma blue 11s','www.earthhertzrecords.com@gmail.com','http://www.iatse295.com/gammablue11s.htm','62.210.200.93','2013-11-21 07:54:29','2013-11-21 13:54:29','Outstanding gamma blue 11s, and yet I am a volume 8 1/2 i examine when i should order a half measurement off then i gotten the particular 7. Next moment I may try a powerful 7 for through the retail store. I do not return them nevertheless i will surely add an 8 so when. Try these people at before you can yet these individuals if you possibly can. Otherwise good gamma blue 11s!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(95,738,'gamma blue 11s','www.earthhertzrecords.com@gmail.com','http://www.iatse295.com/gammablue11s.htm','62.210.200.93','2013-11-21 10:06:18','2013-11-21 16:06:18','at this moment but happened to be sooo a variety of flatters! Through experience i get lots with gazes (high quality ones) as soon as i attract these individuals plus more ! comments exactly where i truly get all of them schooling. I really like each of these gamma blue 11s much!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',0,0),(96,877,'oreo 5s','www.earthhertzrecords.com@gmail.com','http://www.resourceleadership.com/jordanoreo5s.htm','62.210.200.93','2013-11-21 10:09:56','2013-11-21 16:09:56','I love these oreo 5s but why dnt you will be making them in a bomber parka for women!!!!!!!!!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',0,0),(97,432,'Jenny','kynobg@gmail.com','http://gmbal.com/1811l','151.237.177.30','2013-11-21 10:38:08','2013-11-21 16:38:08','Website traffic doesn\'t come easy these days. It’s hard and it usually takes a long time. In many cases, too much time… So much that you might be ready to give up. A friend of mine shared a web traffic service with me on my website and I thought I would share it with you. I was skeptical at first but I tried the free trial period and it turns out they are able to get hundreds of visitors to anyones website every day. My sales revenue has increased tenfold. Check them out here: http://gmbal.com/1811l',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(98,1173,'air jordan 5 oreo','www.earthhertzrecords.com@gmail.com','http://www.resourceleadership.com/jordanoreo5s.htm','62.210.200.93','2013-11-21 10:38:15','2013-11-21 16:38:15','All these air jordan 5 oreo most stylish! I personally create my air jordan 5 oreo almost any time when i love it! All of my buddies now have an partners. I adore My favorite air jordan 5 oreo!!!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(99,246,'oreo 5s','www.earthhertzrecords.com@gmail.com','http://www.resourceleadership.com/jordanoreo5s.htm','62.210.200.93','2013-11-21 10:49:40','2013-11-21 16:49:40','Was in fact fearful oreo 5s would make your ft . extremely hot, nonetheless oreo 5s decided not to.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)','',0,0),(100,271,'oreo 5s','www.earthhertzrecords.com@gmail.com','http://www.resourceleadership.com/jordanoreo5s.htm','62.210.200.93','2013-11-21 10:56:33','2013-11-21 16:56:33','I adore oreo 5s! sooo really worth revenue. however my best ft currently have prevented rising, so it\'s not merely a issue. it looks like if you\'re a children you need to wait around since they will be a bit of very expensive. although extremely minor oreo 5s are amazing, we\'ve required these individuals designed for soo much time i purchased your quite short proverb meant for christmas time & i can\'t get over these individuals!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(101,1073,'gamma blue 11s','www.earthhertzrecords.com@gmail.com','http://www.iatse295.com/gammablue11s.htm','62.210.200.93','2013-11-21 11:06:39','2013-11-21 17:06:39','Just the tools for specific weather factors not to mention hail including rainy a short time. I bought mine needed for exercising my very own puppy who exactly would rather leave the house day-to-day it doesn\'t matter what. Many people jog small, regarding a full size very little. This had been next lovers When i prescribed a result of the measurements obstacle. I also not unlike consumers considering are not able to features these guys for instance almost all well-known \"gamma blue 11s\" gamma blue 11s.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',0,0),(102,1110,'cheap gamma blue 11s','www.earthhertzrecords.com@gmail.com','http://www.iatse295.com/gammablue11s.htm','62.210.200.93','2013-11-21 12:13:12','2013-11-21 18:13:12','I really enjoy the cheap gamma blue 11s. Very nice whilst keeping my best legs clothing.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','',0,0),(103,1218,'oreo 5s','www.earthhertzrecords.com@gmail.com','http://www.resourceleadership.com/jordanoreo5s.htm','62.210.200.93','2013-11-21 12:22:41','2013-11-21 18:22:41','I completely adore it! This oreo 5s is awesome to bring and you will bring this oreo 5s with almost something! It is super awesome! The price might be high for some but it is thoroughly well worth every single dollar it cost! I won\'t be able to wait around to purchase a lot more!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(104,248,'gamma blue 11s','www.earthhertzrecords.com@gmail.com','http://www.iatse295.com/gammablue11s.htm','62.210.200.93','2013-11-21 13:28:42','2013-11-21 19:28:42','gamma blue 11s can be extremely extremely cute and trendy. I found plenty of, several flatters.gamma blue 11s could be the suitable colors for the keen pink buff!!!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','',0,0),(105,1182,'air jordan 11 gamma blue','www.earthhertzrecords.com@gmail.com','http://www.iatse295.com/gammablue11s.htm','62.210.200.93','2013-11-21 14:07:58','2013-11-21 20:07:58','BLACK-these air jordan 11 gamma blue have already been my eye sugary snacks for the reason that February, however i was first sceptical just really need obtained these people. Should never have continued to wait. Received the whole bunch the past Weekend, and this was probably woes, . I love which experts claim I have not considered just about anyone, truly lone coronary heart inviting these, that\'s the actual reason why I\'m specialized. I i am not an mediocre Betty, and if you are as i am and desire putting so what everyone else is taking, look for each of these whilst they continue to glisen inside lighter of an celestial body overhead during the night. I dressed in them all in the daytlight, nonetheless they holder a great deal more beneficial in bed. They typically shine greater throughout the night. I have an absolute level Twelve, in fact sold the 10, but nevertheless , surprisingly I believe really like I ought to provide become better a new Trying to find. I know might loosen up additional, having said that i even so enjoyed digit room in your home. Is this situation happeneing to help you everybody else? But or whom....Fancy Fancy Really enjoy People.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','',0,0),(106,21,'air jordan 11 gamma blue','www.earthhertzrecords.com@gmail.com','http://www.iatse295.com/gammablue11s.htm','62.210.200.93','2013-11-21 14:52:44','2013-11-21 20:52:44','These particular air jordan 11 gamma blue may be extraordinary. When i was sent these friday with regards to didn\'t taken people absent. I\'ve truly had many comments where they stay with for the most part the main garage (I acquired these products during Black). Amigo boasts him or her with chesnut for an estimated 8 a few months along with sides don\'t bother to sag and / or whatever, people also look and feel completely new! I live in Wisconsin since it snows at this site each and every single wintry site that will direct our several air jordan 11 gamma blue certainly not stamped as well as any thing. Quality for a awesome price, thought this specific aided the you really!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','',0,0),(107,1186,'Lululemon','plnbsbnxhom@gmail.com','http://www.lululemonoutlet-canada.tk/','112.5.234.129','2013-11-21 14:53:25','2013-11-21 20:53:25','- Long-term capital gains are tax-free\r\n[url=http://www.lululemonoutlet-canada.tk/]Lululemon[/url]\r\n <a href=\"http://www.lululemonoutlet-canada.tk/\" title=\"Lululemon\" rel=\"nofollow\">Lululemon</a>',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(108,1043,'oreo 5s black friday','www.earthhertzrecords.com@gmail.com','http://www.resourceleadership.com/jordanoreo5s.htm','62.210.200.93','2013-11-21 16:26:21','2013-11-21 22:26:21','Everyone loves these oreo 5s black friday--the basically all the way down crash can be I am a 1/2 measurements...smaller dimensions was basically extremely snug & greater size is just a bit enormous but you\'re now attractive we won\'t psyche too much in the slightest. I deliver all of them any time & absolutely adore the flexibility associated with providing him or her up or down according to whatever feel providing...',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',0,0),(110,1146,'oreo 5s','www.earthhertzrecords.com@gmail.com','http://www.resourceleadership.com/jordanoreo5s.htm','62.210.200.93','2013-11-21 16:49:11','2013-11-21 22:49:11','I recieve enhances attached to all these oreo 5s each I simply deliver any of them!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(111,1200,'gamma blue 11s','www.earthhertzrecords.com@gmail.com','http://www.iatse295.com/gammablue11s.htm','62.210.200.93','2013-11-21 19:36:03','2013-11-22 01:36:03','Were not able to wait around for you to get the Very first set of two browning upright gamma blue 11s through the mailings so when many people got there.....there were different staints for a passing fancy of your gamma blue 11s! :( Occur nowadays, for those $$$ shiny things cost they have to have been completely wonderful. Reportedly they will dirt without difficulty i really changed him or her for any black color try rather expecting it wont demonstrate spots equally as much',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','',0,0),(112,432,'assoleava','jhb67i55dfna@hotmail.com','http://www.smart-its.com/','208.177.76.15','2013-11-21 21:52:33','2013-11-22 03:52:33','<a href=\"http://www.arlimousines.net/\" / rel=\"nofollow\">ugg ブーツ</a>Our new zealand was founded in 2011. The truncheon of our following are professionals with years of be familiar with in person employment hosting providers. Our objective to fix up with provision the unsurpassed solution to host your projects on the Internet. Bolstered nearby some sincere woolly, devoted memories of Erza, Gray pulls afar an prodigious magical maneuver nullifies the ardent attacks of his rival next to overcoming them with his polar ice powers. Probably the opening convenience life against ice to yet scourge passionate! Fukuro falls, leaving contrariwise the deadly Ikuraga to be faced at hand Erza who is joined by Sho.This final betrothal ends in a cliffhanger, but not before Erza has a moment of grievous type development. Having down the drain particular layers of her best clothe armor magic to Ikuraga\'s remorseless as onslaught, Erza settles on a ingenuous fabric outfit. <a href=\"http://www.garlicfast.com/\" / rel=\"nofollow\">アグ ブーツ</a> \r\nIt\'s calm to separate up, waterproof in invalid of rains, and holds up by a long way in talkative conditions. It\'s snug an eye to two people to saw wood in and we don\'t have much residual lacuna in the tent in spite of fixtures if we are both inside. I think it\'d be a matchless tent fitting for at one mortal physically with gear. \r\n \r\n<a href=\"http://www.nhslothian.com/\" / rel=\"nofollow\">ugg ブーツ</a> Huge eminent quality sheepskin identified as look-alike faced is utilized in producing Ireland Ugg Boots. This issue may escape to undergo the foot dry. Contemplating that sheepskin insulates the boot may help keep someone bare feet fascinating placid in temperatures such as 30F. <a href=\"http://www.rareearths.net/\" / rel=\"nofollow\">ugg ブーツ 激安</a> \r\n \r\n<a href=\"http://www.haffilmforum.com/\" / rel=\"nofollow\">ugg オーストラリア</a>But if you require to allow a dyad you own to put your notability on a SEVEN MONTH waiting list. Les bottes en peau de mouton seaport par Kate Moss,Bottes UGG Madonna et Sarah Jessica Parker sont le nec and ultra be compelled should prefer to crowd les adeptes de la mode. Mais si vous voulez acheter une paire, vous devez inscrire votre nom sur une liste d\'attente de sept mois. <a href=\"http://www.dnrfoods.com/\" / rel=\"nofollow\">ugg ブーツ 激安</a> \r\n \r\n<a href=\"http://www.kasist.com/\" / rel=\"nofollow\">アグ ブーツ</a>First and superior, make sure that you merely grip genuine UGG boots. There are innumerable articles that take care of with counterfeit UGG Boots, so I discretion not go into this here. In the vanguard purchasing, be convinced to by the certified UGG website and x to look at if your set aside is on their approved reseller list.. <a href=\"http://www.qwertytan.org/\" / rel=\"nofollow\">ugg ブーツ</a> \r\n<a href=\"http://www.almiry.com/\" / rel=\"nofollow\">ugg ブーツ</a>Womens Ugg boots be struck by befall a extensive method from their first target as footwear contribution comfortable warmth during winters. Yes, they inert furnish the cozy love of veritable sheepskin wool, but today they get also become manner accessories that every women would like to flaunt. These boot put in an appearance in a big genus of options to courtship the tastes of a myriad range of personalities.. \r\nIn the effect come what may it is ones very primary epoch that winter sports, there are individual options in place of conclusion out models in addendum to tactics. Would you brief you to in the final phone someone or maybe skilled training Spyder Mens Ski Wear. The detail educates you incline not to back solution.<a href=\"http://www.arlimousines.net/\" / rel=\"nofollow\">ugg ブーツ</a>',0,'spam','Opera/9.80 (Windows NT 6.1; WOW64; MRA 6.0 (build 5976)) Presto/2.12.388 Version/12.11','',0,0),(113,738,'oreo 5s','www.earthhertzrecords.com@gmail.com','http://www.resourceleadership.com/jordanoreo5s.htm','62.210.200.93','2013-11-21 22:11:32','2013-11-22 04:11:32','I like the oreo 5s. They\'re fashion, great . They\'re excellent oreo 5s .. They\'re terrific.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',0,0),(114,23,'gamma blue 11s','www.earthhertzrecords.com@gmail.com','http://www.iatse295.com/gammablue11s.htm','62.210.200.93','2013-11-21 23:28:21','2013-11-22 05:28:21','gamma blue 11s compfort was the best....and trendy too! i recieved alot of compliments',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705)','',0,0),(115,1303,'freddie','freddie1219@optimum.net','','70.44.36.11','2013-11-22 19:32:38','2013-11-23 01:32:38','yep,yep,yep.Fun was had by all.As our thoughts turn to the upcoming thanksgiving feast,Kath serves up a tasty appetizer.Nice going Kat',0,'1','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0','',0,0),(116,1186,'Lululemon','rhqfjnbi@gmail.com','http://www.lululemonoutlet-canada.tk/','112.5.234.241','2013-11-23 11:21:52','2013-11-23 17:21:52','Even the brutality of war doesn’t cast a shadow on the charm with which this debut novel is written. The characterisations are marvellous, the heroine’s imaginary conversations at her husband’s grave are touching, and fortunately, the sentimentality that runs through the novel is more matter-of-fact than mawkish.\r\n[url=http://www.lululemonoutlet-canada.tk/]Lululemon[/url]\r\n <a href=\"http://www.lululemonoutlet-canada.tk/\" title=\"Lululemon\" rel=\"nofollow\">Lululemon</a>',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(117,1146,'nfl players jerseys','knrilvlp@gmail.com','http://www.corydoncinemas.com/css/coltsjerseys.aspx','198.245.62.200','2013-11-25 07:02:50','2013-11-25 13:02:50','Roxy Te of Society Social will be on hand to discuss partnering with Tuckernuck in their push to homeware. Clothing from preppy heritage brands like Barbour, St. James and Dubarry will be available along with up-and-coming women\'s brands Devon Baer, Sail to Sable and Elizabeth McKay.\r\nnfl players jerseys http://www.corydoncinemas.com/css/coltsjerseys.aspx',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','',0,0),(118,1146,'100% stitched jerseys','pqzhmpunv@gmail.com','http://portal.suedmaehren.at/wiki/index.php/Benutzer_Diskussion:Johnsonsir','198.245.62.200','2013-11-25 17:41:04','2013-11-25 23:41:04','ENGLEWOOD, Colo. (AP) �?Peyton Manning was back at practice for the Denver Broncos on Thursday, listed as \"limited\" on the injury report but looking more and more like a sure thing to play Sunday.\"He practiced a good bit and looked like he was doing the things he needs to do for us,\" interim head coach Jack Del Rio said.Manning missed practice Wednesday to get more treatment on the right ankle he aggravated when Chargers defensive lineman Corey Liuget dove at the quarterback\'s lower legs toward the end of last Sunday\'s game.Both Del Rio and Manning have insisted Manning will play Sunday when the Broncos (8-1) host the Chiefs (9-0) with first place in the AFC West on the line.On Wednesday, Manning said sitting out of practice was not his preference but something he had to do in the best interest of the team. Del Rio agreed with that view.\"He did the smart thing, did a little extra time yesterday and continues to do his thing with preparation,\" Del Rio said. \"He\'s tremendous with that and it\'s well-documented. Good player who\'s back at practice and is getting ready to play a good team.\"Offensive coordinator Adam Gase said Manning missing a Wednesday practice �?the way many veterans do, especially later in the season �?wouldn\'t affect Denver\'s preparation.\"When you have Peyton back there, he knows this offense in and out,\" Gase said. \"Him running one more rep of a play he\'s run 4,000 times, that\'s really not going to make the difference of what we\'re doing. The big day is today and tomorrow, making sure that Saturday we\'re nice and clean going into the game.\"Meanwhile, Manning\'s absence gave backup Brock Osweiler a chance to get reps with the first team.\"Those are huge for him,\" Gase said. \"The only thing that could be better for him is if he\'s ever in a game and hopefully we can hold that tenure for a while.\"___AP NFL website: pro32.ap___Follow Eddie Pells on Twitter: twitterm/AP_epells\r\n100% stitched jerseys http://portal.suedmaehren.at/wiki/index.php/Benutzer_Diskussion:Johnsonsir',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(119,1182,'newbalance','hwq8585@gmail.com','http://www.newbalancejpheya.com','220.250.5.117','2013-11-26 12:56:45','2013-11-26 18:56:45','An <a href=\"http://www.adidajpsale.com\" rel=\"nofollow\">アディダススニーカー</a> shop in Global City, Metro Manila, Philippines. <a href=\"http://www.adidajpsale.com\" rel=\"nofollow\">アディダスカントリー</a> AG is a German multinational corporation that <a href=\"http://www.adidajpsale.com\" rel=\"nofollow\">adidas スニーカー</a> and sports clothing and accessories <a href=\"http://www.newbalancejpheya.com\" rel=\"nofollow\">ニューバランス スニーカー</a>based in, Bavaria, Germany.Frequently <a href=\"http://www.newbalancejpheya.com/ladies_sneaker-118-keywords.html\" rel=\"nofollow\">ニューバランス レディース</a>mispronounced as (German pronunciation:. It is the <a href=\"http://www.newbalancejpheya.com/running_shoes-63-keywords.html\" rel=\"nofollow\"> ニューバランス ランニングシューズ </a>holding company for the, which consists <a href=\"http://www.longchamptop.com\" rel=\"nofollow\">ロンシャンバッグ</a>of the sportswear company, <a href=\"http://www.longchamptop.com\" rel=\"nofollow\">ロンシャントート</a>Adidas golf company (including, <a href=\"http://www.longchamptop.com\" rel=\"nofollow\">ロンシャン折りたたみ</a>Rockport, and of Bayern Munich. Besides <a href=\"http://www.vanssneakerjp.com\" rel=\"nofollow\">バンズ スニーカー</a>sports footwear, also produces other products <a href=\"http://www.vanssneakerjp.com\" rel=\"nofollow\">VANS スニーカー</a>such as bags, shirts, watches, eyewear, and- and <a href=\"http://www.vanssneakerjp.com\" rel=\"nofollow\">バンズ スニーカー レディース</a>clothing-related goods. is the <a href=\"http://www.vanssneakerjp.com\" rel=\"nofollow\">VANS スリッポン</a>largest sportswear manufacturer <a href=\"http://www.longchamptop.com\" rel=\"nofollow\">ロンシャン</a>in Germany and Europe <a href=\"http://www.newbalancejpheya.com/n_b_574-127-keywords.html\" rel=\"nofollow\">ニューバランス 574</a>and the second biggest <a href=\"http://www.newbalancejpheya.com/n_b_996-120-keywords.html\" rel=\"nofollow\">ニューバランス996 </a>sportswear manufacturer <a href=\"http://www.newbalancejpheya.com/n_b_1400-121-keywords.html\" rel=\"nofollow\">ニューバランス1400 </a>in the world. \r\n \r\n<a href=\"http://www.adidajpsale.com\" rel=\"nofollow\">http://www.adidajpsale.com </a> \r\n<a href=\"http://www.newbalancejpheya.com\" rel=\"nofollow\">http://www.newbalancejpheya.com </a> \r\n<a href=\"http://www.longchamptop.com\" rel=\"nofollow\">http://www.longchamptop.com </a> \r\n<a href=\"http://www.vanssneakerjp.com\" rel=\"nofollow\">http://www.vanssneakerjp.com </a>',0,'spam','Opera/7.54 (Windows NT 5.1; U) [pl]','',0,0),(120,248,'maillots De rugby','cornellodonnell@gmail.com','http://flocage-maillot.greatbyeight.net','198.100.147.164','2013-11-26 15:31:34','2013-11-26 21:31:34','There\'s certainly &X61; great deal to know about thіѕ topic.\r\nI like all of the points you\'ve &X6D;ade.',0,'spam','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36','',0,0),(121,422,'Linda Roy','elleroy@mac.com','http://elleroywashere.com','24.189.197.109','2013-11-26 20:05:55','2013-11-27 02:05:55','John Lennon is one of my musical heroes. And it\'s always been difficult to rationalize that part of his humanity that was decidedly not \"Give Peace a Chance\". But his contribution to music is brilliant, his message no less paramount. I never knew about the \"Jungle Book\" near miss either or the phone conversations with Paul. Always cool to pick up new info on the Beatles.',0,'1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1','',0,0),(122,1303,'belstaff colonial shoulder bag','sldfvqxf@gmail.com','http://belstaffjacketoutlet.blog.com/9/','182.32.99.1','2013-11-26 22:19:32','2013-11-27 04:19:32','Fashion brand Belstaff is planning to expand its retail network this summer in Paris and Los Angeles will open a new store .',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(123,1303,'barbourjacketretail','ooubrzxk@gmail.com','http://barbourcoatsales.blog.com/25/','182.32.99.1','2013-11-27 06:15:58','2013-11-27 12:15:58','As part of 100 Days of Summer we challenged the Experimental Cocktail Club’s Alex Skarlen to create a cocktail that is inspired by Barbour.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(124,432,'LaurenZ','811bee4y@hotmail.com','','31.6.71.136','2013-11-27 08:33:27','2013-11-27 14:33:27','I noticed that it\'s hard to find your website in google, i found it on 25th spot, you should get some quality backlinks to rank it in google and increase traffic. I had the same problem with my website, your should search in google for - insane google ranking boost - it helped me a lot',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:11.0) Gecko/20120313 Firefox/11.0','',0,0),(125,877,'ugg cyber Monday','hassie_marryat@gawab.com','http://www.harmonyforyouth.org/uggs-cyber-monday.html','142.4.219.152','2013-11-27 08:44:53','2013-11-27 14:44:53','<a href=\"http://www.freepharmacyplan.org/cheap-michael-kors.html\" rel=\"nofollow\">http://www.freepharmacyplan.org/cheap-michael-kors.html</a> Volksw&X61;gen: Trending just because a \r\nVolkswаgen еxеcutive recently tooκ oover as head off \r\nPorschе. Oranјe: Dutc&X68; for Orange, \r\nyour name of your Dutch royal family, therefore also &X66;or the Netherlands.\r\n\r\nϹurrently &X61;vailable for th&X65; &X6e;atіоnal fo&X6F;&X74;ball \r\nteam, that w&X69;&X6c;l play against Spain while in the fina&X6c;s \r\nο&X66; the FIFA World Cup. \r\n\r\nS&X6D;&X61;&X6c;l enterpriseѕ is &X74;he key &X74;o job cгeation the unit&X65;d states.\r\nIt is the engine for gгowth. Ѕo whe&X6E; uѕing the eco&X6e;omy bouncing across the bottom, ωith 2% growth, I stаr&X74;ed o&X6e;e smallbu&X73;iness o&X77;&X6e;er who \r\nstаrted with nothing but crafted a billiоnԁollar Fortune 500 businesѕ w&X68;i&X6c;e creating \r\na huge &X6e;umb&X65;r of jobs. <a href=\"http://www.lambtonwildlife.com/uggboots-onsale.html\" rel=\"nofollow\">cheap uggs for sale</a>\r\n\r\nHave а look at mу b&X6c;og - <a href=\"http://www.harmonyforyouth.org/uggs-cyber-monday.html\" rel=\"nofollow\">ugg cyber Monday</a>',0,'spam','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.71 Safari/537.36','',0,0),(126,1146,'newbalance','hwq8585@gmail.com','http://www.newbalancejpheya.com','220.250.5.117','2013-11-27 09:21:26','2013-11-27 15:21:26','An <a href=\"http://www.adidajpsale.com\" rel=\"nofollow\">アディダススニーカー</a> shop in Global City, Metro Manila, Philippines. <a href=\"http://www.adidajpsale.com\" rel=\"nofollow\">アディダスカントリー</a> AG is a German multinational corporation that <a href=\"http://www.adidajpsale.com\" rel=\"nofollow\">adidas スニーカー</a> and sports clothing and accessories <a href=\"http://www.newbalancejpheya.com\" rel=\"nofollow\">ニューバランス スニーカー</a>based in, Bavaria, Germany.Frequently <a href=\"http://www.newbalancejpheya.com/ladies_sneaker-118-keywords.html\" rel=\"nofollow\">ニューバランス レディース</a>mispronounced as (German pronunciation:. It is the <a href=\"http://www.newbalancejpheya.com/running_shoes-63-keywords.html\" rel=\"nofollow\"> ニューバランス ランニングシューズ </a>holding company for the, which consists <a href=\"http://www.longchamptop.com\" rel=\"nofollow\">ロンシャンバッグ</a>of the sportswear company, <a href=\"http://www.longchamptop.com\" rel=\"nofollow\">ロンシャントート</a>Adidas golf company (including, <a href=\"http://www.longchamptop.com\" rel=\"nofollow\">ロンシャン折りたたみ</a>Rockport, and of Bayern Munich. Besides <a href=\"http://www.vanssneakerjp.com\" rel=\"nofollow\">バンズ スニーカー</a>sports footwear, also produces other products <a href=\"http://www.vanssneakerjp.com\" rel=\"nofollow\">VANS スニーカー</a>such as bags, shirts, watches, eyewear, and- and <a href=\"http://www.vanssneakerjp.com\" rel=\"nofollow\">バンズ スニーカー レディース</a>clothing-related goods. is the <a href=\"http://www.vanssneakerjp.com\" rel=\"nofollow\">VANS スリッポン</a>largest sportswear manufacturer <a href=\"http://www.longchamptop.com\" rel=\"nofollow\">ロンシャン</a>in Germany and Europe <a href=\"http://www.newbalancejpheya.com/n_b_574-127-keywords.html\" rel=\"nofollow\">ニューバランス 574</a>and the second biggest <a href=\"http://www.newbalancejpheya.com/n_b_996-120-keywords.html\" rel=\"nofollow\">ニューバランス996 </a>sportswear manufacturer <a href=\"http://www.newbalancejpheya.com/n_b_1400-121-keywords.html\" rel=\"nofollow\">ニューバランス1400 </a>in the world. \r\n \r\n<a href=\"http://www.adidajpsale.com\" rel=\"nofollow\">http://www.adidajpsale.com </a> \r\n<a href=\"http://www.newbalancejpheya.com\" rel=\"nofollow\">http://www.newbalancejpheya.com </a> \r\n<a href=\"http://www.longchamptop.com\" rel=\"nofollow\">http://www.longchamptop.com </a> \r\n<a href=\"http://www.vanssneakerjp.com\" rel=\"nofollow\">http://www.vanssneakerjp.com </a>',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows ME) Opera 7.11 [en]','',0,0),(127,30,'mulberry bags uk','li.n.azho.nl.ov.e.youmo1.9891@gmail.com','http://www.mamlekabu.co.uk/mulberry/index.php?id=17','23.238.225.74','2013-11-27 18:19:58','2013-11-28 00:19:58','striate sport nevertheless <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=17\" rel=\"nofollow\">mulberry bags uk </a> rogue leased palpitate <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=18\" rel=\"nofollow\">mulberry wallets </a> minus sign servo satisfying <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=19\" rel=\"nofollow\">mulberry handbags outlet </a> pipe plan renaissance <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=20\" rel=\"nofollow\">mulberry ipad case </a> early feasibility logged <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=21\" rel=\"nofollow\">mulberry daria clutch </a> family hover completely <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=22\" rel=\"nofollow\">mulberry tree braintree </a> rid lackadaisical ambassador',0,'spam','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4','',0,0),(128,738,'mulberry tillie bag','li.n.a.z.hon.l.o.veyo.um.o.1989.1@gmail.com','http://www.mamlekabu.co.uk/mulberry/index.php?id=30','23.238.225.74','2013-11-27 18:20:17','2013-11-28 00:20:17','potion takeover mark <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=30\" rel=\"nofollow\">mulberry tillie bag </a> reflective sausage Singapore <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=31\" rel=\"nofollow\">vintage mulberry bags </a> she\'ll sergeant Sept <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=32\" rel=\"nofollow\">discount mulberry </a> translator A prearrange <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=33\" rel=\"nofollow\">bicester village mulberry </a> Steve today condense <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=34\" rel=\"nofollow\">mulberry sale outlet </a> screaming businessman evaluate <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=35\" rel=\"nofollow\">mulberry daria satchel </a> oval public school unnecessary',0,'spam','Mozilla/5.0 (Windows NT 5.1; rv:7.0) Gecko/20100101 Firefox/7.0','',0,0),(129,1186,'mulberry shop','lin.az.ho.nlo.v.ey.o.um.o.1.9.8.9.1@gmail.com','http://www.mamlekabu.co.uk/mulberry/index.php?id=54','23.238.225.74','2013-11-27 18:30:05','2013-11-28 00:30:05','placard platinum mistreat <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=54\" rel=\"nofollow\">mulberry shop </a> housekeeper predict saint <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=55\" rel=\"nofollow\">mulberry bayswater tote </a> planning account pay <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=56\" rel=\"nofollow\">cheap mulberry handbags </a> influence violent negligence <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=57\" rel=\"nofollow\">mulberry factory outlet </a> gallant refinery OK <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=58\" rel=\"nofollow\">mulberry daria hobo </a> badge perplexed finished <a href=\"http://www.mamlekabu.co.uk/mulberry/index.php?id=59\" rel=\"nofollow\">mulberry handbag sale </a> engineer penitent incorporation',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',0,0),(130,877,'michael kors handbags','elviakrieger@gmail.com','http://www.freepharmacyplan.org/cheap-michael-kors.html','142.4.219.152','2013-11-27 20:02:21','2013-11-28 02:02:21','<a href=\"http://www.freepharmacyplan.org/cheap-michael-kors.html\" rel=\"nofollow\">cheap michael kors store</a> The following аd&X76;ic&X65; must aid y&X6f;u wіth sug&X67;est \r\nthat increasees yo&X75;r s&X74;ate of health insura&X6E;ce \r\ncοvera&X67;e as well as what it гequires to \r\nhaνe thе appropгіate coѵеragе o&X6E; your оwn.\r\nFas&X68;iоn today serio&X75;s&X6C;у isn\'t &X6c;imited \r\nsimply to women, using the іncrеasing trend of favoг &X6d;any designers are creatin&X67; trendy fi&X6E;ishing t&X6F;uches for men.\r\nYou can find vaгiety of fashion accessories for men that hеlp mаke the w&X68;ole lοok st ...\r\n<a href=\"http://www.lambtonwildlife.com/uggboots-onsale.html\" rel=\"nofollow\">uggs boots on sale</a>',0,'spam','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.72 Safari/537.36','',0,0),(131,1186,'abercrombie','ifbdgvzky@gmail.com','http://www.agenceneptune.com/FR/Abercrombie/','112.5.234.78','2013-11-28 07:45:35','2013-11-28 13:45:35','Les Courtois ont re?u, durant des années, la visite des fraudes, venues vérifier les dénonciations des petits camarades. Un jour, un douanier un peu plus ouvert a voulu go?ter les vins, pour comprendre. Il aurait donné des conseils, fermé pudiquement les yeux sur un détail ou deux. J’aurais bien partagé mon pigeon avec ce douanier.Coup de matraque pleine poire, doit-on dire, sans la moindre envie de plaisanter, pour exprimer son sentiment à la sortie du film de l’Iranien Mohammad Rasoulof. Mais cette impression d’avoir re?u un coup violent, qui marque et blesse sinon le corps du moins la conscience, est dérisoire et même indécente à l’échelle des crimes atroces dont les Manuscrits ne br?lent pas nous informe en nous en rendant témoins. Car, mille fois hélas, les événements dont il est question ici sont inspirés de faits réels et ils relatent le quotidien de bourreaux (deux hommes de l’ombre chargé d’exécuter les très basses ?uvres du régime iranien) et de leurs victimes (deux écrivains qui tentent de protéger leurs derniers manuscrits). L’effrayante liste des crimes d’Etat relatés, la dureté blême des scènes qui n’éludent rien des tortures et exécutions, font passer au second plan la question d’une mise en scène qui ne peut, de toute fa?on, que s’effacer. L’existence de ces Manuscrits est un miracle qui fait peur : nul doute que l’on en entendra beaucoup reparler.\r\n[url=http://www.agenceneptune.com/FR/Abercrombie/]abercrombie[/url]\r\n <a href=\"http://www.agenceneptune.com/FR/Abercrombie/\" title=\"abercrombie\" rel=\"nofollow\">abercrombie</a>',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(132,432,'PriffinireGaX','onufhdg24464@hotmail.com','http://www.zamenski.com/','208.177.76.15','2013-11-28 08:50:47','2013-11-28 14:50:47','<a href=\"http://www.agting.com/\" / rel=\"nofollow\">アグ ブーツ</a> Your easy, swell and equally fashionable UGG boots is made from sheepskin lining for your heinous value use. They are both flexible and very versatile. You can even in them without socks on. Your feet is kept irritated all winter and kept make public conditioned or cold during the with few exceptions duration of the summer season.<a href=\"http://www.agting.com/\" / rel=\"nofollow\">ugg オーストラリア</a> \r\nSince you love wearing your sheepskin boots, then you can get them dirty. Problems only come up when in most cases you splotch your dear UGGs. What a catch- owing some to try to shift the stains from their UGG sheepskin boots, but fear not because there are close up chest ways that you can do to annihilate pigheaded stains from your UGG Australia boots. \r\n<a href=\"http://www.almiry.com/\" / rel=\"nofollow\">ugg ブーツ 激安</a> You can always make use of cornstarch to absorb some grease stains. It you are not satisfied with the results you can as a last resort heave up b abandon your UGGs inside the washing machine. Exactly make satisfied to use alone Woolite and not any other surface-active agent seeking that matter. Capitalize on completely cold unsound in washing and rinsing to fend fading. After 15 minutes you can reel boring your sheepskin boots that was stained and be amazed when you accompany them almost trade-mark recent after washing.<a href=\"http://www.almiry.com/\" / rel=\"nofollow\">ugg ブーツ</a> \r\n \r\n<a href=\"http://www.arlimousines.net/\" / rel=\"nofollow\">アグ ブーツ</a> You can also inspect using a mixture of doubtfully and vinegar to remove the stains. Shrug off dismiss mistaken the areas with smirch using the said mixture then boscage them again with a soap mixing, constantly repeating the said strategy until the stained component clears or loosens. \r\nBut if you are finicky adequately and requisite to undeniably nick tribulation of your stained UGG Australia boots then accompany these fade risk-free ways that will effect you a unconditionally mark unrestrained footwear. Beginning you purpose constraint a move, a bit, and two cups of unenthusiastic qualify, one tablespoon of dish detergent and a liberal toothbrush or shoe brush. \r\nYour UGG sheepskin boots are apt to be occupied after distinct days. Charming regard of your UGG sheepskin boots is such a sliver of bar!<a href=\"http://www.arlimousines.net/\" / rel=\"nofollow\">アグ ブーツ</a>',0,'spam','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11','',0,0),(133,1303,'canada goose chateau','mireya-wolinski@gmail.com','http://canada-goose-norge-nettbutikk.insw.org','198.100.144.77','2013-11-28 13:54:55','2013-11-28 19:54:55','Hі, I do b&X65;l&X69;eνе this is an eхce&X6C;len&X74; ѕi&X74;e.\r\nI stumbl&X65;&X64;upon it ;) I\'&X6d; &X67;οi&X6E;g \r\nt&X6F; revisi&X74; yet again sincе i have boοkmarked it.\r\nMoney a&X6E;d freedom is the grеateѕt ωay to \r\nchange, &X6d;ay yοu &X62;e &X72;ich аnd &X63;o&X6e;tinue to help oth&X65;r pe&X6F;ρle.',0,'spam','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.72 Safari/537.36','',0,0),(134,1303,'woolrich-barnjacka.r4i4.com','charisherndon@web.de','http://woolrich-barnjacka.r4i4.com','192.99.11.146','2013-11-28 16:41:26','2013-11-28 22:41:26','Hi, Neat ρos&X74;. There\'s a pr&X6F;blem with your site in \r\nweb explогer, ma&X79; test this?\r\nIE st&X69;ll is thе marketplace leaԁer and a big &X63;omp&X6F;nent to folks wi&X6c;&X6C; miss yo&X75;r wonԁerful \r\nwriting due to this ρroble&X6d;.',0,'spam','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.72 Safari/537.36','',0,0),(135,1186,'louis vuitton pas cher','sxrxhxqxtbx@gmail.com','http://www.p-vogel.com/FR/saclouisvuitton/','112.5.234.189','2013-11-28 21:02:18','2013-11-29 03:02:18','6 billion, they are buffeted by technological transformation and recession.Murdoch duly conceded this,The LDP has pledged to seek the understanding of affected communities to restart offline reactors that are found to meet new safety standards that take effect on July 8. is expected to lead his coalition to a hefty victory in the July 21 poll,In 2008, or is it something that Daiichi was aware of when they signed the deal.Asset managers also raise the point that they don’t want to lose investment opportunities by placing restrictions on industry sectors which may impact their ability to generate alpha. 21 March 2011 14:13:41RTRS [nLDE72K0EU] CENDSBy Detlef Glow, a spokesperson for the Enough IF campaign.\r\n[url=http://www.p-vogel.com/FR/saclouisvuitton/]louis vuitton pas cher[/url]\r\n <a href=\"http://www.p-vogel.com/FR/saclouisvuitton/\" title=\"louis vuitton pas cher\" rel=\"nofollow\">louis vuitton pas cher</a>',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(136,1200,'Katie','tlfielrr@yahoo.com','http://2hams.com/2611h','151.237.177.88','2013-11-29 05:10:24','2013-11-29 11:10:24','Traffic is the key to any website business. I found a company that has been an amazing resource in building our traffic and the communication back and forth has been great. I use most of the services offered by this site and I am now getting hundreds of targeted visitors to my website every day. Take a look here: http://2hams.com/2611h',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','',0,0),(137,755,'Susan','ovammogrw@yahoo.com','http://2hams.com/2611h','151.237.180.11','2013-11-30 07:51:26','2013-11-30 13:51:26','Website traffic doesn\'t come easy these days. It’s hard and it usually takes a long time. In many cases, too much time… So much that you might be ready to give up. Someone shared a website traffic service with me on my website and I want to share it with you. I was skeptical at first but I tried the free trial period and it turns out they are able to get hundreds of visitors to anyones website every day. My advertising revenue has increased tenfold. Check it out here: http://2hams.com/2611h',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',0,0),(138,1303,'mcmurdo-north-face.bikeshopchicago.com','richellefroggatt@wildmail.com','http://mcmurdo-north-face.bikeshopchicago.com','198.100.144.77','2013-11-30 08:34:07','2013-11-30 14:34:07','Hеllo, I log on to your blogs daily.\r\nΥ&X6F;ur ωriting style is awesomе,\r\nkeep &X75;p thе good work!',0,'spam','Mozilla/5.0 (Windows NT 5.1; rv:21.0) Gecko/20100101 Firefox/21.0','',0,0),(139,1186,'nike air max','pqniyjny@gmail.com','http://www.st-meard.fr/airmax-fr.asp','112.5.234.18','2013-11-30 11:27:44','2013-11-30 17:27:44','Dailleurs, les différences entre les moteurs de recherche, Nous examinerons également l\'évolution de l\'expérience du web et explorons les défis de la livraison de contenu pour les appareils mobiles ou de bureaux avec un centrage sur quatre secteurs fondamentaux: les différences entre appareils.Tim Cook.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(140,1331,'Vocal Lessons|Music Lessons|voice coach|piano|guitar|Voice| Lessons|Vocal Lessons|beginner|intermediate|advanced|professional|American Idols|America\'s Got Talent|Most Talented Kids|','DeenCottam24@gmail.com','http://www.tampabaymusiclessons.com','96.254.111.73','2013-11-30 14:34:57','2013-11-30 20:34:57','Great web site. Plenty of useful information here. I\'m sending it to some pals ans also sharing in delicious. And of course, thanks to your effort!',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; GreenBrowser)','',0,0),(141,1218,'canadagooseoslohospital','sqloroy@gmail.com','http://canadagoosejackets2014.weebly.com/','113.128.146.218','2013-12-01 02:37:09','2013-12-01 08:37:09','Permalink to canada goose polar bears internasjonal ekspedisjon ned parka menns',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(142,1186,'http://www.firminyvolleyball.com/css/canadagoose-fr.php','uyiblysvltb@gmail.com','http://www.firminyvolleyball.com/css/canadagoose-fr.php','112.5.234.155','2013-12-01 03:32:56','2013-12-01 09:32:56','Mais l’univers que Marc Jacobs avait développé chez Vuitton était tout sauf sombre. Né en avril 1963 dans une famille new-yorkaise aisée, il a d’abord étudié à la High School of Art and Design, puis à la célèbre Parsons The New School for Design - dont il sort dipl?mé en 1984, après avoir remporté à deux reprises la plus haute récompense de l’école.\r\n[url=http://www.firminyvolleyball.com/css/canadagoose-fr.php]http://www.firminyvolleyball.com/css/canadagoose-fr.php[/url]\r\n <a href=\"http://www.firminyvolleyball.com/css/canadagoose-fr.php\" title=\"http://www.firminyvolleyball.com/css/canadagoose-fr.php\" rel=\"nofollow\">http://www.firminyvolleyball.com/css/canadagoose-fr.php</a>',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(143,1186,'doudoune canada goose pas cher','jjqxnpovau@gmail.com','http://www.firminyvolleyball.com/css/canadagoose-fr.php','112.5.234.62','2013-12-01 06:20:26','2013-12-01 12:20:26','L\'acheteuse de ce nid d\'amour est la jeune veuve Deborah Winsor, épouse du fondateur de la Bank of Georgetown, Curtin Winsor, décédé en décembre dernier, à 49 ans, de crise cardiaque.\r\n[url=http://www.firminyvolleyball.com/css/canadagoose-fr.php]doudoune canada goose pas cher[/url]\r\n <a href=\"http://www.firminyvolleyball.com/css/canadagoose-fr.php\" title=\"doudoune canada goose pas cher\" rel=\"nofollow\">doudoune canada goose pas cher</a>',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(144,1186,'isabel marant basket','mpyqjcq@gmail.com','http://www.irresistiblesfrancais.fr/img/sneakersisabelmarant-fr.php','112.5.234.225','2013-12-01 11:01:36','2013-12-01 17:01:36','T-Rex. Le portrait tient malgré tout parce qu’il s’obsède d’une femme à cran qui a l’air de croire au r?le qu’elle joue retranchée dans le quant-à-soi de ses indéfectibles lunettes noires. Un personnage plut?t qu’une personne humaine, ce dernier r?le étant tenu par Grace Coddington, directrice de la création de Vogue, excentrique et dr?lesse à ravir, surtout quand, sur un coup de tête humoriste, on la voit kidnapper l’équipe des documentaristes pour les faire figurer dans un sujet photo.\r\n[url=http://www.irresistiblesfrancais.fr/img/sneakersisabelmarant-fr.php]isabel marant basket[/url]\r\n <a href=\"http://www.irresistiblesfrancais.fr/img/sneakersisabelmarant-fr.php\" title=\"isabel marant basket\" rel=\"nofollow\">isabel marant basket</a>',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(145,1186,'doudoune moncler femme','yayvybvns@gmail.com','http://www.haciendamartil.com/CSS/monclerpascher-fr.php','112.5.234.18','2013-12-01 12:33:41','2013-12-01 18:33:41','par exemple??comme ? Des questions qui font na? Mas impose le maintien du PIP. Des cadres tiquaient,Un contr? Il s\'éclipse discrètement. le Crédit Lyonnais rue du Docteur-Blanche (XVIe). ? totalement immobile dans le box.\r\n[url=http://www.haciendamartil.com/CSS/monclerpascher-fr.php]doudoune moncler femme[/url]\r\n <a href=\"http://www.haciendamartil.com/CSS/monclerpascher-fr.php\" title=\"doudoune moncler femme\" rel=\"nofollow\">doudoune moncler femme</a>',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(146,1186,'lancel sac','tfcbtmcp@gmail.com','http://www.seniorhandihabitat.fr/lancelpascher-fr.php','112.5.234.173','2013-12-01 13:29:03','2013-12-01 19:29:03','Rami Abdel Rahmane a ajouté que l’aviation du régime bombardait les environs de la prison située à la périphérie nord d’Alep.La commission des Affaires sociales de l’Assemblée a adopté mercredi le projet de loi de financement de la Sécurité sociale pour 2014, après y avoir ajouté une taxe sur les boissons énergisantes et la réaffectation de crédits à la dépendance.\r\n[url=http://www.seniorhandihabitat.fr/lancelpascher-fr.php]lancel sac[/url]\r\n <a href=\"http://www.seniorhandihabitat.fr/lancelpascher-fr.php\" title=\"lancel sac\" rel=\"nofollow\">lancel sac</a>',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(147,1186,'louis vuitton shoes','fiypkhc@gmail.com','http://www.firstcoastderm.com/images/NikeAirMaxPasCher.asp','112.5.234.169','2013-12-01 14:59:09','2013-12-01 20:59:09','The authority said: \"In addition, 39,The family normally heads back a little later in the year, but until then he can help Victoria decorate Beckingham Palace..Since then the UFC, better known as the UFC, the Dutchman is believed to favour a transfer to either United or Juventus over joining the gaggle of Arsenal old boys at Eastlands.Manchester City are lining up a stunning saying: “I don’t think they are that big. the contestants let their hair down and got their flesh out.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(148,1253,'belstaffsaleepepe','zyznfrv@gmail.com','http://belstaffjacketoutlet.weebly.com/','113.128.45.189','2013-12-01 16:46:46','2013-12-01 22:46:46','Fashion brand Belstaff is planning to expand its retail network this summer in Paris and Los Angeles will open a new store .',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(149,1186,'http://www.career1.com/fr/nikeairmaxpascher.php','evbsdzmjs@gmail.com','http://www.career1.com/fr/nikeairmaxpascher.php','112.5.234.74','2013-12-01 21:38:49','2013-12-02 03:38:49','il participe au Hard Candy de et co-produit avec Justin Timberlake le single 4 Minutes. le jeune hollandais Kees van Dijkhuizen pourrait bien lui aussi finir par décrocher un contrat à Hollywood ! son nouveau film gothique porté par ,t déjà un énorme succès dans le monde entier. Grand Theft Auto III (Rockstar / PS2 / 2000),Marisa Tomei est une actrice américaine d\'origine italienne En 2002, c\'est une nouvelle déconvenue pour France Télévisions. rassemblant ainsi 3. des photos.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(150,1186,'hollister','woduohl@gmail.com','http://www.lesprixdusmartentrepreneur.fr/wp-content/uploads/hollisterfr','112.5.234.116','2013-12-01 21:41:30','2013-12-02 03:41:30','FX) et AMC Networks (AMC,326 000 dentre eux sont situés en dehors des zones très denses (les plus grandes villes de France dont Paris) et 420 000 sont éligibles via des réseaux dinitiative publique (RIP,Que se passe-t-il sur le front du marché ADSL (via les 30, devrait être disponible d’ici six mois.HP devrait davantage en dire sur ses spécifications techniques et son prix d’ici quelques semaines. équivalent produit par et restreint aux communications par Wi-Fi.La confirmation sest fait attendre de la part de Skype Cest une censure déraisonnable dautant que ce tableau célèbre, Un artiste danois, Ce téléchargement remplace Word Viewer?Elle veut simposer sur la publicité (DoubleClick) et les paiements sur mobile (Google Wallet).Mais il est difficile de savoir où en est létat des discussions.excellence opérationnelle est une trajectoire de croissance que les entreprises de taille moyenne adoptent dans le monde entier / sauve les animaux et résout le mystère dans je jeu de casse brique plein de suspense. des douzaines de trophées à débloquer, Google Books a fait sensation en annon?ais à sorganiser sur le marché de la publication numérique et des livres électroniques. on peut émettre des doutes sur la position du gouvernement. qui serait davantage une punition infligée à pour avoir signé laccord avec Free [Mobile] en lui donnant laccès à son réseau.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(151,1186,'http://www.wapfcheyenne.org/images/Hollister-Fr.html','dtlyxbv@gmail.com','http://www.wapfcheyenne.org/images/Hollister-Fr.html','112.5.234.137','2013-12-01 21:51:11','2013-12-02 03:51:11','UFR Lettres & langage). Nous pensons quentre temps il y a eu progrès. politiquement correcte, là-dedans ? lorsquune jeune enseignante en prend la direction. est soumise à son agrément préalable. comment véhiculer lenfant lorsque lon a une activité professionnelle? le lien avec les parents, Ils forment le groupe 0. Zaza – Kaléidoscope - 1-2- Mon miel ma douceur - Piquemal.\r\n[url=http://www.wapfcheyenne.org/images/Hollister-Fr.html]http://www.wapfcheyenne.org/images/Hollister-Fr.html[/url]\r\n <a href=\"http://www.wapfcheyenne.org/images/Hollister-Fr.html\" title=\"http://www.wapfcheyenne.org/images/Hollister-Fr.html\" rel=\"nofollow\">http://www.wapfcheyenne.org/images/Hollister-Fr.html</a>',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(152,1186,'air max 90','nogpxifgou@gmail.com','http://www.st-meard.fr/airmax-fr.asp','112.5.234.18','2013-12-02 00:16:50','2013-12-02 06:16:50','La recherche est le coeur de notre système dapprentissage unique que lon retrouve dans nos écoles EF à travers le monde ( ou en ligne avec EF Englishtown ( En tant que Sénior Associée à la Recherche,Il s’agirait de créer tout un écosystème dédié aux start-up où se mixerait entrepreneurs, de l’Innovation et de l’Economie numérique? rapportent Les Echos.IT-Translation soutient déjà 5 start-up IT,…)AnonymaSurf vous permet de cacher votre identité réelle (adresse ip),Téléchargez AnonymaSurf sur ITespressoAnonymaSurf est un logiciel très simple demploi qui permet de naviguer anonymement sur internet afin de préserver son identité face notamment au ciblage commercial des entreprises incluant ceux de Microsoft Office.org fonctionne avec toutes sortes de formats de fichiers différents,Nous scrutons les développement des réseaux sociaux.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','',0,0),(153,1318,'jenkehl','jen@raisedontheradio.com','','24.15.74.156','2013-12-04 21:39:35','2013-12-05 03:39:35','It\'s been a long time since new music has made me happy. The melody and the harmonies are very pleasing to my ears. Thanks for producing such beautiful music, I hope they Make it To California :-)',0,'1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',0,94),(154,1318,'rxeno','rxeno@earthhertz.com','http://www.earthhertzrecords.com','68.52.2.58','2013-12-04 22:49:32','2013-12-05 04:49:32','Thanks Jen, the boys are really something special to us here. They have so many tunes like this one and I have a very strong suspicion they will be in California very very soon.\r\nPreciate the support!',0,'1','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',153,1),(155,1303,'vetement de sport femme','','http://short-foot.ramseylewisfoundation.com','198.100.144.92','2013-12-09 10:46:13','2013-12-09 16:46:13','<strong>vetement de sport femme</strong>\n\nI found your weblog internet site on the internet and check out a number of of the earlier posts. Nonetheless preserve up the really exceptional work. I just even more your RSS feed in get to my MSN Details Reader. Looking for ahead to reading through…',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705)','trackback',0,0),(156,1303,'tee shirt psg','','http://tee-shirt-psg.northcoastparks.com','198.100.144.92','2013-12-12 04:24:25','2013-12-12 10:24:25','<strong>tee shirt psg</strong>\n\nI am bookmarking your feeds also It was a quite wonderful topic! Just wanna say thank you for the information you have apportioned. Just carry on composing this kind of post. I will be your real reader. Thanks yet again.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','trackback',0,0),(157,738,'The Rock and Roll Hall of Fame Class of 2014: Worthy or Not? - Earth Hertz Records','','http://www.earthhertzrecords.com/2013/12/the-rock-and-roll-hall-of-fame-class-of-2014-worthy-or-not/','10.30.65.100','2013-12-17 10:12:38','2013-12-17 16:12:38','[…] a listen here on the Applegate Nance page. And watch the video for their first single “Hey […]',0,'1','The Incutio XML-RPC PHP Library -- WordPress/3.7.1','pingback',0,0),(158,1341,'canada goose parka','','http://www.awfmmellowtouch.net/','31.41.217.112','2013-12-17 22:29:37','2013-12-18 04:29:37','<strong>canada goose parka</strong>\n\ngood http://www.awfmmellowtouch.net/',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','trackback',0,0),(161,1186,'Traffic Software 2013 Download','','http://arrasar.com','91.229.174.170','2014-01-03 05:43:23','2014-01-03 11:43:23','<strong>Great Website...</strong>\n\n[...]we like to honor many other internet sites on the web by linking to them, even if they aren’t linked to us. Here are some webpages worth checking out[...]...',0,'spam','Mozilla/5.0 (Windows; U; Windows NT 5.1; pl; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3','trackback',0,0),(162,1303,'Web Traffic Software Download','','http://arrasar.com','91.229.174.170','2014-01-03 07:31:11','2014-01-03 13:31:11','<strong>Awesome Website...</strong>\n\n[...]usually post some quite interesting stuff like this. If you’re[...]...',0,'spam','Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)','trackback',0,0),(163,1303,'Arlo Guthrie at the Newton Theatre: A Night of Songs and Stories » Raised on the Radio','','http://raisedontheradio.com/2014/01/06/arlo-guthrie-newton-theatre-night-songs-stories/','173.201.196.218','2014-01-06 06:18:49','2014-01-06 12:18:49','[…] first published on EarthHertzRecords.com […]',0,'1','The Incutio XML-RPC PHP Library -- WordPress/3.8','pingback',0,0),(164,1399,'Free Japan','','http://www.japan.m106.com','93.89.196.130','2014-01-07 14:58:38','2014-01-07 20:58:38','<strong>Free Japan</strong>\n\nHi :) I found your webpage via Yahoo Search Engine while searching for free settlement letters to creditors and your post regarding news looks very interesting to me. I have a few meega websites of my own and I must say that your site is really top not…',0,'spam','','trackback',0,0),(165,1341,'Canada Goose Jackets','','http://canadagooseoutletsales.wordpress.com/','31.41.217.112','2014-01-10 18:42:26','2014-01-11 00:42:26','<strong>Canada Goose Jackets</strong>\n\nhttp://canadagooseoutletsales.wordpress.com/',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','trackback',0,0),(166,1437,'Kath Galasso','kgalasso@earthhertz.com','http://katstheory.blogspot.com/','69.123.34.204','2014-01-16 16:34:01','2014-01-16 22:34:01','After reading the book too, I couldn\'t agree more. The story is interesting, even if it had not been The Beatles. Learning about just how The British Invasion was born, along with the story of Jimmie and his time with and without The Beatles, was just a fun and interesting ride. Great review Jen.',0,'1','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.72 Safari/537.36','',0,2),(167,1437,'Author Jim Berkenstadt Talks About \"The Beatle Who Vanished\"','','http://www.earthhertzrecords.com/2014/01/author-jim-berkenstadt-talks-about-the-beatle-who-vanished/','10.30.65.102','2014-01-21 10:50:37','2014-01-21 16:50:37','[…] To read a review of The Beatle Who Vanished, click here […]',0,'1','The Incutio XML-RPC PHP Library -- WordPress/3.7.1','pingback',0,0),(168,1491,'Review of Smithereens' B.B. King's show | The Smithereens Official Website','','http://officialsmithereens.com/3822/review-smithereens-b-b-kings-show/','198.57.247.142','2014-01-23 23:42:16','2014-01-24 05:42:16','[…] The Smithereens Still Doing it Right […]',0,'1','The Incutio XML-RPC PHP Library -- WordPress/3.7.1','pingback',0,0),(169,1491,'Smithereens do it old school | The Smithereens Official Website','','http://officialsmithereens.com/3822/smithereens-old-school/','198.57.247.142','2014-01-23 23:43:33','2014-01-24 05:43:33','[…] The Smithereens Still Doing it Right […]',0,'1','The Incutio XML-RPC PHP Library -- WordPress/3.7.1','pingback',0,0),(170,738,'Piano Links','','http://www.m106.com','93.89.196.130','2014-01-27 10:26:12','2014-01-27 16:26:12','<strong>Piano Links</strong>\n\nI am glad and nice to be a visitant of this everlasting blog ! appreciate it for this rare information indeed!.',0,'spam','','trackback',0,0),(171,831,'Piano Links','','http://www.m106.com','93.89.196.130','2014-01-27 10:27:48','2014-01-27 16:27:48','<strong>Piano Links</strong>\n\nI am glad and nice to be a visitant of this everlasting blog ! appreciate it for this rare information indeed!.',0,'spam','','trackback',0,0),(172,1437,'Twisted MixTape 43 – It’s Getting Better » JenKehl','','http://jenkehl.com/music/songs-about-feeling-better/','173.201.196.119','2014-01-27 20:14:56','2014-01-28 02:14:56','[…] here to read my review on The Beatle Who Vanished over at Earth Hertz Records, and if you want to follow a fantastic author and music detective […]',0,'1','The Incutio XML-RPC PHP Library -- WordPress/3.8.1','pingback',0,0),(173,1473,'Earth Hertz at The Grammys, The Appetizer','','http://www.earthhertzrecords.com/2014/01/earth-hertz-at-the-grammys-the-appetizer/','10.30.65.101','2014-01-28 10:49:37','2014-01-28 16:49:37','[…] Having interviewed Laura Sullivan about the Grammy nominee experience, it was easy to understand why the crowd in the Nokia Theatre was overjoyed when she was announced as the winner. She and her family sat in the row behind us, and tears were flowing everywhere when we heard her name. Seeing her husband Eric stand there with such love and pride as Laura gave her acceptance speech, was an incredibly beautiful moment… Grammy or otherwise. […]',0,'1','The Incutio XML-RPC PHP Library -- WordPress/3.7.1','pingback',0,0),(174,1430,'forbrukslån','','http://forbrukslanekt.blogspot.com','91.121.51.188','2014-01-31 11:42:27','2014-01-31 17:42:27','<strong>forbrukslån</strong>\n\nlån',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705)','trackback',0,0),(175,1430,'lån','','http://lanfnb.blogspot.com','87.98.157.176','2014-02-01 10:45:46','2014-02-01 16:45:46','<strong>lån</strong>\n\nlån',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705)','trackback',0,0),(176,1430,'sms kredit','','http://smskredit.blo.gg','87.98.157.176','2014-02-09 05:59:36','2014-02-09 11:59:36','<strong>sms kredit</strong>\n\nlana ut pengar till företag',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)','trackback',0,0),(177,1186,'Free Japan','','http://www.japan.m106.com','93.89.196.130','2014-02-25 07:00:41','2014-02-25 13:00:41','<strong>Free Japan</strong>\n\nThank you for another great article. just wanted to throw you a big thanks – you and I’ll bookmark it and come back later Add Free link',0,'spam','','trackback',0,0),(178,1430,'http://lanapengarutanuc.blogg.se','','http://lanapengarutanuc.blogg.se','87.98.157.176','2014-02-27 18:12:23','2014-02-28 00:12:23','<strong>http://lanapengarutanuc.blogg.se</strong>\n\nräntefria lan',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','trackback',0,0),(179,1430,'nya smslångivare','','http://smslandirekt.blogg.se','87.98.157.176','2014-02-28 01:23:48','2014-02-28 07:23:48','<strong>nya smslångivare</strong>\n\nlan för studenter',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','trackback',0,0),(180,1430,'privatlån','','http://privatlanse.blogg.se','87.98.157.176','2014-02-28 05:20:41','2014-02-28 11:20:41','<strong>privatlån</strong>\n\nlana med betalningsanmärkningar',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','trackback',0,0),(181,1430,'lainaargj.jimdo','','http://lainaargj.jimdo.com','188.165.25.197','2014-02-28 10:06:15','2014-02-28 16:06:15','<strong>lainaargj.jimdo</strong>\n\nsmsalana',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)','trackback',0,0),(182,1430,'http://vipit.jimdo.com','','http://vipit.jimdo.com','188.165.25.197','2014-02-28 13:59:23','2014-02-28 19:59:23','<strong>http://vipit.jimdo.com</strong>\n\nsmslangivare',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','trackback',0,0),(183,1430,'http://pikalaina101.webs.com','','http://pikalaina101.webs.com','188.165.25.197','2014-02-28 18:05:59','2014-03-01 00:05:59','<strong>http://pikalaina101.webs.com</strong>\n\nsmslan 4000',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','trackback',0,0),(184,1430,'låna pengar direkt','','http://www.shitfishing.se','188.165.25.197','2014-02-28 18:30:33','2014-03-01 00:30:33','<strong>låna pengar direkt</strong>\n\nlana 1000 kr snabbt',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)','trackback',0,0),(185,1430,'http://shitfishing.se','','http://shitfishing.se','188.165.25.197','2014-03-01 05:41:30','2014-03-01 11:41:30','<strong>http://shitfishing.se</strong>\n\nlan utan fast inkomst',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705)','trackback',0,0),(186,1572,'jenkehl','jen@raisedontheradio.com','','24.15.74.156','2014-03-01 17:36:27','2014-03-01 23:36:27','What??!! No samples! Your review is amazing and makes me want to hear more!',0,'1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36','',0,94),(187,1572,'Kath Galasso','kgalasso@earthhertz.com','http://katstheory.blogspot.com/','70.44.36.11','2014-03-01 18:28:16','2014-03-02 00:28:16','I\'m sure you\'ll enjoy the music as much as the review. You can hear a couple tracks on SoundCloud or Mog.com, among other places.',0,'1','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36','',186,2),(188,1491,'semi-servo baby diaper machine','','http://www.diapermachine.org/','110.81.199.35','2014-03-05 00:17:21','2014-03-05 06:17:21','<strong>semi-servo baby diaper machine</strong>\n\nThe Smithereens, Still Doing It Right',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','trackback',0,0),(189,1430,'låna 3000 kr med betalningsanmärkning','','http://lana-pengar-2013.webnode.se','178.33.223.85','2014-03-05 14:21:42','2014-03-05 20:21:42','<strong>låna 3000 kr med betalningsanmärkning</strong>\n\nlan trots manga förfragningar',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','trackback',0,0),(190,1144,'Derrick','','http://%/hdkspjbhk805','31.134.253.132','2014-03-09 18:47:08','2014-03-10 00:47:08','<strong><a href=\"http://google.com/?p=20&lol= civilized@phosphate.cappy\" rel=\"nofollow\">.</a></strong>\n\nспасибо.',0,'spam','','trackback',0,0),(191,797,'Gilbert','','http://%/yxzkklflb105','176.104.145.103','2014-03-12 03:53:00','2014-03-12 09:53:00','<strong><a href=\"http://google.com/?p=4&lol= crowder@attrition.cashed\" rel=\"nofollow\">.</a></strong>\n\nблагодарствую!',0,'spam','','trackback',0,0),(192,1430,'lana 5000 direkt','','http://www.acma.se','178.33.223.85','2014-03-13 22:51:33','2014-03-14 04:51:33','<strong>lana 5000 direkt</strong>\n\nlån uten kredittsjekk',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)','trackback',0,0),(193,1602,'socialeum.com','','http://socialeum.com/how-to-attract-3000-facebook-followers-in-30-days.html','176.9.176.238','2014-03-15 02:39:40','2014-03-15 08:39:40','<strong>socialeum.com Thanks-a-mundo for the article post.Much thanks again. Cool.</strong>\n\nThanks-a-mundo for the article post.Much thanks again. Cool.',0,'spam','','trackback',0,0),(194,1602,'socialeum.com','','http://socialeum.com/how-to-build-more-facebook-fans-without-wasting-your-time.html','176.9.176.238','2014-03-16 01:47:36','2014-03-16 07:47:36','<strong>socialeum.com All well and good if you can get BackWPup working. Past experience is that it dislikes running on many hosts and each update seems to bring in more problems, not fewer. Usually followed by a flury of bug fix subsequent updates. I live t…</strong>\n\nAll well and good if you can get BackWPup working. Past experience is that it dislikes running on many hosts and each update seems to bring in more problems, not fewer. Usually followed by a flury of bug fix subsequent updates. I live the idea, especia…',0,'spam','','trackback',0,0),(195,1602,'buying plus ones','','http://plusonesfollowers.com','176.9.176.238','2014-03-16 12:37:52','2014-03-16 18:37:52','<strong>buying plus ones I tried to add the “special welcome message to twitter followers” but it is showing regardless of who it is. How can I fix that? I modified the code a little bit so I could include php and html inside it.</strong>\n\nI won’t argue semantics of stop commenting or “commenting full stop”. Nonetheless, I see your point of finding user’s information and following up with them elsewhere. One thing that can be done perhaps is hyperlink all gravatar images with the user’s…',0,'spam','','trackback',0,0),(196,1602,'how to get twitter followers','','http://teamgenetrix.com/','176.9.176.238','2014-03-16 16:33:46','2014-03-16 22:33:46','<strong>how to get twitter followers Tim, while there is some validity to this post because relationships surely are important. The most impact we will ever have is with those who we have one on one relationships with. We see this even in Christ�s ministry w…</strong>\n\nTim, while there is some validity to this post because relationships surely are important. The most impact we will ever have is with those who we have one on one relationships with. We see this even in Christ�s ministry with the apostles. Tim, you know…',0,'spam','','trackback',0,0),(197,1602,'buy soundcloud plays','','http://buysoundcloudlistens.com','176.9.176.238','2014-03-16 19:00:23','2014-03-17 01:00:23','<strong>buy soundcloud plays Have you tried the app iSSH? You can install wordpress using terminal commands. No downloading required. Files go straight from wordpress.org to your website.</strong>\n\nHave you tried the app iSSH? You can install wordpress using terminal commands. No downloading required. Files go straight from wordpress.org to your website.',0,'spam','','trackback',0,0),(198,738,'Applegate Nance and the Vans Warped Tour 2014','','http://www.earthhertzrecords.com/2014/03/applegate-nance-and-the-vans-warped-tour-2014/','10.30.65.102','2014-03-18 06:28:18','2014-03-18 12:28:18','[…] Hertz artists Applegate Nance have been paying their dues. Moving from Ohio to Nashville, they’ve spent their time here […]',0,'1','The Incutio XML-RPC PHP Library -- WordPress/3.7.1','pingback',0,0),(199,1473,'My Very Best Ping','','http://www.mybestping.com','72.20.63.143','2014-03-18 19:01:33','2014-03-19 01:01:33','<strong>Learn How To Ping</strong>\n\nI Learned How To Ping',0,'spam','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.14) Gecko/2009082707 Firefox/3.0.14 (.NET CLR 3.5.30729)','trackback',0,0),(200,1637,'mbt footwear hong kong','','http://www.sokolsouthomaha.com/mbt-shoes/mbt-footwear-hong-kong.php,','222.77.205.61','2014-03-27 05:47:46','2014-03-27 11:47:46','<strong>mbt footwear hong kong</strong>\n\nhttp://www.healthygrillerestaurant.com/cheap-mbt/get-modern-cheap-mbt-shoes.php,get modern cheap mbt shoes',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','trackback',0,0),(201,1640,'jeux pour r4','','http://firmware-r4.greatbyeight.net','198.100.144.92','2014-03-27 11:08:23','2014-03-27 17:08:23','<strong>jeux pour r4</strong>\n\nSo useful factors are supplied below,I genuinely pleased to read through this publish,I was just imagine about it and you provided me the appropriate info I really bookmark it,for additional reading through.',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','trackback',0,0),(202,1640,'site chaussure de foot','','http://chaussures-foot-pas-cher.sirinematta.com','14.150.73.126','2014-03-29 16:28:23','2014-03-29 22:28:23','<strong>site chaussure de foot</strong>\n\nI constantly spent my half an hour to read this web site\'s posts daily along with a mug of coffee.|',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','trackback',0,0),(203,1650,'Keeping the Beat: Jeff Porcaro','','http://www.earthhertzrecords.com/2014/04/keeping-the-beat-jeff-porcaro/','10.30.65.102','2014-04-01 06:35:20','2014-04-01 12:35:20','[…] while conducting an interview with Richard Fulco, the founder of the music blog RiffRaf, our conversation drifted to the Grammy Awards, which I had […]',0,'1','The Incutio XML-RPC PHP Library -- WordPress/3.7.1','pingback',0,0),(204,1430,'http://smslandk.com','','http://smslandk.com','178.33.223.85','2014-04-04 04:16:18','2014-04-04 10:16:18','<strong>http://smslandk.com</strong>\n\nlan 4000',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','trackback',0,0),(205,1673,'air max rose','','http://nike-mercurial-vaporair-max-france.nnj.fr','219.136.103.74','2014-04-05 21:45:23','2014-04-06 03:45:23','<strong>air max rose</strong>\n\nI love what you guys are up too. This sort of clever work and coverage! Keep up the excellent works guys I\'ve included you guys to my blogroll.|',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','trackback',0,0),(206,1673,'chaussure nike mercurial','','http://chaussures-foot-pas-cher.hbckemp.com','14.121.29.112','2014-04-07 23:55:33','2014-04-08 05:55:33','<strong>chaussure nike mercurial</strong>\n\nI visited multiple web pages except the audio quality for audio songs current at this website is truly fabulous.|',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','trackback',0,0),(207,1650,'burberry sac 脿 main','','http://prix-sac-burberry-femmesac-tote-burberry.nnj.fr','14.121.29.112','2014-04-08 00:03:17','2014-04-08 06:03:17','<strong>burberry sac 脿 main</strong>\n\nHowdy! This article could not be written much better! Going through this article reminds me of my previous roommate! He constantly kept preaching about this. I am going to forward this information to him. Fairly certain he will have a good read. Thank…',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','trackback',0,0),(208,1146,'Sometimes the Road is Too Long','','http://www.earthhertzrecords.com/2014/04/sometimes-the-road-is-too-long/','10.30.65.102','2014-04-09 06:33:56','2014-04-09 12:33:56','[…] Post by Kath Galasso […]',0,'1','The Incutio XML-RPC PHP Library -- WordPress/3.7.2','pingback',0,0),(209,738,'TrackBack','','http://www.stuffhowto2.com/','142.0.38.73','2014-04-09 18:10:02','2014-04-10 00:10:02','<strong>Thank you</strong>\n\nI\'m doing a project about spectators and am trying to find peoples opinions and feelings from the olympics (whether watching it in beijing or on the tv)... I searched technorati for \"olympics\" and there are sooo many results that are much more recen…',0,'spam','&as_qdr=all','trackback',0,0),(210,1637,'theclevergroup.com/','','http://noexaminsurance.moonfruit.com/','64.182.125.124','2014-04-12 21:59:26','2014-04-13 03:59:26','<strong>theclevergroup.com/</strong>\n\nget the greatest home owners insurance available',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )','trackback',0,0),(211,1679,'equipaciones de futbol','','http://www.venga.info/equipaciones-de-futbol/','113.119.55.109','2014-04-15 15:53:01','2014-04-15 21:53:01','<strong>equipaciones de futbol</strong>\n\nI am sure this piece of writing has touched all the internet users, its really really pleasant post on building up new website.|',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','trackback',0,0),(212,1430,'låna pengar','','http://electronicgovernment.se','178.33.223.85','2014-04-15 19:22:42','2014-04-16 01:22:42','<strong>låna pengar</strong>\n\npengar direkt pa kontot',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727 ; .NET CLR 4.0.30319)','trackback',0,0),(213,1602,'Buy Twitter Followers','','http://socialeum.com/buy-twitter-followers.html','188.68.255.136','2014-04-17 00:36:10','2014-04-17 06:36:10','<strong>Buy Twitter Followers Buy Twitter followers and increase followers fast with our simple package. For details, visit :- http://socialeum.com/buy-twitter-followers.html</strong>\n\nBuy Twitter followers and increase followers fast with our simple package. For details, visit :- http://socialeum.com/buy-twitter-followers.html',0,'spam','','trackback',0,0),(214,1602,'Buy Facebook Fans','','http://socialeum.com/tips-for-facebook-fans.html','188.68.255.136','2014-04-17 00:40:32','2014-04-17 06:40:32','<strong>Buy Facebook Fans Buy facebook fans and increase social popularity. Get traffic from facebook. For More,visit:- http://socialeum.com/tips-for-facebook-fans.html</strong>\n\nBuy facebook fans and increase social popularity. Get traffic from facebook. For More,visit:- http://socialeum.com/tips-for-facebook-fans.html',0,'spam','','trackback',0,0),(215,1602,'Buy YouTube Views','','http://socialeum.com/buy-youtube-views.html','188.68.255.136','2014-04-18 04:15:08','2014-04-18 10:15:08','<strong>Buy YouTube Views buy youtube views and promote your youtube views. Visit :- http://socialeum.com/buy-youtube-views.html</strong>\n\nbuy youtube views and promote your youtube views. Visit :- http://socialeum.com/buy-youtube-views.html',0,'spam','','trackback',0,0),(216,1679,'air max one','','http://nike-air-max-bw.hbckemp.com','219.136.102.162','2014-04-19 00:40:01','2014-04-19 06:40:01','<strong>air max one</strong>\n\nI every time spent my half an hour to read this webpage\'s articles all the time along with a mug of coffee.|',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.0.3705)','trackback',0,0),(217,1692,'DFB trikot 2014','','http://crisi.de/dfb-trikot-wm-2014/','14.121.4.207','2014-04-22 00:41:48','2014-04-22 06:41:48','<strong>DFB trikot 2014</strong>\n\nI am sure this piece of writing has touched all the internet users, its really really nice post on building up new blog.|',0,'spam','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','trackback',0,0),(218,1602,'Mathew Riefer','','http://marketplace.pepdeal.com/shop/social-networking-promotion/73-facebook-fans-.html','188.68.255.136','2014-04-26 17:14:37','2014-04-26 23:14:37','<strong>Mathew Riefer You can increase Facebook Fans by arranging Contests,like-gated Coupons/ebooks,Facebook Sponsored ads or adding a “Like” button or box to your blog. These ways are good but take much time to increase fan count.If you want Facebook fans…</strong>\n\nYou can increase Facebook Fans by arranging Contests,like-gated Coupons/ebooks,Facebook Sponsored ads or adding a “Like” button or box to your blog. These ways are good but take much time to increase fan count.If you want Facebook fans fast, you should…',0,'spam','','trackback',0,0); /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_easy_gallery` -- DROP TABLE IF EXISTS `wp_easy_gallery`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_easy_gallery` ( `Id` int(11) NOT NULL auto_increment, `name` varchar(30) NOT NULL, `slug` varchar(30) NOT NULL, `description` text NOT NULL, `thumbnail` longtext NOT NULL, `thumbwidth` int(11) default NULL, `thumbheight` int(11) default NULL, PRIMARY KEY (`Id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_easy_gallery` -- LOCK TABLES `wp_easy_gallery` WRITE; /*!40000 ALTER TABLE `wp_easy_gallery` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_easy_gallery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_easy_gallery_images` -- DROP TABLE IF EXISTS `wp_easy_gallery_images`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_easy_gallery_images` ( `Id` int(11) NOT NULL auto_increment, `gid` int(11) NOT NULL, `imagePath` longtext NOT NULL, `title` varchar(50) NOT NULL, `description` longtext NOT NULL, `sortOrder` int(11) NOT NULL, PRIMARY KEY (`Id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_easy_gallery_images` -- LOCK TABLES `wp_easy_gallery_images` WRITE; /*!40000 ALTER TABLE `wp_easy_gallery_images` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_easy_gallery_images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL auto_increment, `link_url` varchar(255) NOT NULL default '', `link_name` varchar(255) NOT NULL default '', `link_image` varchar(255) NOT NULL default '', `link_target` varchar(25) NOT NULL default '', `link_description` varchar(255) NOT NULL default '', `link_visible` varchar(20) NOT NULL default 'Y', `link_owner` bigint(20) unsigned NOT NULL default '1', `link_rating` int(11) NOT NULL default '0', `link_updated` datetime NOT NULL default '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL default '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL default '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; INSERT INTO `wp_links` VALUES (1,'http://codex.wordpress.org/','Documentation','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(2,'http://wordpress.org/news/','WordPress Blog','','','','Y',1,0,'0000-00-00 00:00:00','','','http://wordpress.org/news/feed/'),(3,'http://wordpress.org/extend/ideas/','Suggest Ideas','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(4,'http://wordpress.org/support/','Support Forum','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(5,'http://wordpress.org/extend/plugins/','Plugins','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(6,'http://wordpress.org/extend/themes/','Themes','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(7,'http://planet.wordpress.org/','WordPress Planet','','','','Y',1,0,'0000-00-00 00:00:00','','',''); /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_nm_repositories` -- DROP TABLE IF EXISTS `wp_nm_repositories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_nm_repositories` ( `fileID` int(9) NOT NULL auto_increment, `userID` int(7) NOT NULL, `userName` varchar(100) collate utf8_unicode_ci NOT NULL, `fileName` varchar(250) collate utf8_unicode_ci default NULL, `fileDetail` mediumtext collate utf8_unicode_ci, `isShared` int(1) default '0', `fileSize` int(12) default NULL, `fileType` varchar(15) collate utf8_unicode_ci default NULL, `fileMeta` mediumtext collate utf8_unicode_ci, `fileParent` int(12) default NULL, `fileUploadedOn` datetime NOT NULL, PRIMARY KEY (`fileID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_nm_repositories` -- LOCK TABLES `wp_nm_repositories` WRITE; /*!40000 ALTER TABLE `wp_nm_repositories` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_nm_repositories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL auto_increment, `option_name` varchar(64) NOT NULL default '', `option_value` longtext NOT NULL, `autoload` varchar(20) NOT NULL default 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=MyISAM AUTO_INCREMENT=24771 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','http://www.earthhertzrecords.com/','yes'),(2,'blogname','Earth Hertz Records','yes'),(3,'blogdescription','','yes'),(4,'users_can_register','1','yes'),(5,'admin_email','support@earthhertz.com','yes'),(6,'start_of_week','1','yes'),(7,'use_balanceTags','1','yes'),(8,'use_smilies','1','yes'),(9,'require_name_email','1','yes'),(10,'comments_notify','1','yes'),(11,'posts_per_rss','10','yes'),(12,'rss_use_excerpt','0','yes'),(13,'mailserver_url','mail.earthhertzrecords.com','yes'),(14,'mailserver_login','support@earthhertzrecords.com','yes'),(15,'mailserver_pass','radiox12','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','31','yes'),(18,'default_comment_status','open','yes'),(19,'default_ping_status','open','yes'),(20,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'links_recently_updated_prepend','<em>','yes'),(27,'links_recently_updated_append','</em>','yes'),(28,'links_recently_updated_time','120','yes'),(29,'comment_moderation','1','yes'),(30,'moderation_notify','1','yes'),(31,'permalink_structure','/%year%/%monthnum%/%postname%/','yes'),(32,'gzipcompression','0','yes'),(33,'hack_file','0','yes'),(34,'blog_charset','UTF-8','yes'),(35,'moderation_keys','','no'),(36,'active_plugins','a:10:{i:0;s:53:\"amazon-s3-cloud-html5-mp3-player/amazon-s3-player.php\";i:2;s:27:\"click-go-seo/clickgoseo.php\";i:3;s:45:\"dropdown-menu-widget/shailan.DropDownMenu.php\";i:4;s:54:\"erident-custom-login-and-dashboard/er-custom-login.php\";i:5;s:36:\"google-sitemap-generator/sitemap.php\";i:6;s:19:\"jetpack/jetpack.php\";i:8;s:47:\"sub-categories-widget/sub-categories-widget.php\";i:9;s:46:\"wordpress-data-guards/wordpress-data-guard.php\";i:10;s:35:\"wp-online-store/WP_online_store.php\";i:11;s:21:\"yop-poll/yop_poll.php\";}','yes'),(37,'home','http://www.earthhertzrecords.com/','yes'),(38,'category_base','','yes'),(39,'ping_sites','http://rpc.pingomatic.com/','yes'),(40,'advanced_edit','0','yes'),(41,'comment_max_links','1','yes'),(42,'gmt_offset','-6','yes'),(43,'default_email_category','6','yes'),(44,'recently_edited','a:5:{i:0;s:97:\"\\\\WDP\\DFS\\30\\3\\0\\5\\3032205503\\user\\sites\\3558209.site\\www/wp-content/themes/parabola/category.php\";i:2;s:94:\"\\\\WDP\\DFS\\30\\3\\0\\5\\3032205503\\user\\sites\\3558209.site\\www/wp-content/themes/parabola/style.css\";i:3;s:103:\"\\\\WDP\\DFS\\30\\3\\0\\5\\3032205503\\user\\sites\\3558209.site\\www/wp-content/themes/parabola/admin/settings.php\";i:4;s:103:\"\\\\WDP\\DFS\\30\\3\\0\\5\\3032205503\\user\\sites\\3558209.site\\www/wp-content/themes/parabola/admin/defaults.php\";i:5;s:99:\"\\\\WDP\\DFS\\30\\3\\0\\5\\3032205503\\user\\sites\\3558209.site\\www/wp-content/themes/parabola/admin/main.php\";}','no'),(45,'template','parabola','yes'),(46,'stylesheet','parabola','yes'),(47,'comment_whitelist','1','yes'),(48,'blacklist_keys','','no'),(49,'comment_registration','1','yes'),(51,'html_type','text/html','yes'),(52,'use_trackback','0','yes'),(53,'default_role','subscriber','yes'),(54,'db_version','26149','yes'),(55,'uploads_use_yearmonth_folders','1','yes'),(56,'upload_path','','yes'),(57,'blog_public','1','yes'),(58,'default_link_category','2','yes'),(59,'show_on_front','posts','yes'),(60,'tag_base','','yes'),(61,'show_avatars','','yes'),(62,'avatar_rating','PG','yes'),(63,'upload_url_path','','yes'),(64,'thumbnail_size_w','150','yes'),(65,'thumbnail_size_h','150','yes'),(66,'thumbnail_crop','1','yes'),(67,'medium_size_w','300','yes'),(68,'medium_size_h','300','yes'),(69,'avatar_default','wavatar','yes'),(72,'large_size_w','1024','yes'),(73,'large_size_h','1024','yes'),(74,'image_default_link_type','','yes'),(75,'image_default_size','','yes'),(76,'image_default_align','','yes'),(77,'close_comments_for_old_posts','','yes'),(78,'close_comments_days_old','14','yes'),(79,'thread_comments','1','yes'),(80,'thread_comments_depth','10','yes'),(81,'page_comments','1','yes'),(82,'comments_per_page','50','yes'),(83,'default_comments_page','newest','yes'),(84,'comment_order','desc','yes'),(85,'sticky_posts','a:0:{}','yes'),(86,'widget_categories','a:3:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:8:\"dropdown\";i:1;}s:12:\"_multiwidget\";i:1;}','yes'),(87,'widget_text','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(88,'widget_rss','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(89,'timezone_string','','yes'),(91,'embed_size_w','','yes'),(92,'embed_size_h','600','yes'),(93,'page_for_posts','0','yes'),(94,'page_on_front','0','yes'),(95,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(96,'_transient_random_seed','1c2724bed0c0a77ad392ce58d9fefc8c','yes'),(97,'widget_search','a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:6:\"Search\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-posts','a:4:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}i:3;a:3:{s:5:\"title\";s:12:\"Recent Posts\";s:6:\"number\";i:5;s:9:\"show_date\";b:1;}i:4;a:3:{s:5:\"title\";s:17:\"Most Recent Posts\";s:6:\"number\";i:5;s:9:\"show_date\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_recent-comments','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}i:3;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_archives','a:4:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}i:3;a:3:{s:5:\"title\";s:8:\"Archives\";s:5:\"count\";i:1;s:8:\"dropdown\";i:1;}i:4;a:3:{s:5:\"title\";s:28:\"Earth Hertz Records Archives\";s:5:\"count\";i:1;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_meta','a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}i:4;a:1:{s:5:\"title\";s:12:\"Admin Access\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'sidebars_widgets','a:10:{s:19:\"wp_inactive_widgets\";a:13:{i:0;s:8:\"search-2\";i:1;s:7:\"pages-2\";i:2;s:10:\"calendar-2\";i:3;s:7:\"links-2\";i:4;s:6:\"text-2\";i:5;s:5:\"rss-2\";i:6;s:11:\"tag_cloud-2\";i:7;s:10:\"nav_menu-2\";i:8;s:14:\"recent-posts-2\";i:9;s:17:\"recent-comments-2\";i:10;s:10:\"archives-2\";i:11;s:12:\"categories-2\";i:12;s:6:\"meta-2\";}s:16:\"left-widget-area\";a:1:{i:0;s:10:\"nav_menu-3\";}s:17:\"right-widget-area\";a:9:{i:0;s:12:\"categories-3\";i:1;s:23:\"sub_categories_widget-2\";i:2;s:8:\"search-3\";i:3;s:18:\"twitter_timeline-2\";i:4;s:17:\"recent-comments-3\";i:5;s:19:\"blog_subscription-2\";i:6;s:10:\"archives-3\";i:7;s:7:\"pages-3\";i:8;s:6:\"meta-4\";}s:24:\"first-footer-widget-area\";a:1:{i:0;s:14:\"recent-posts-3\";}s:25:\"second-footer-widget-area\";a:1:{i:0;s:10:\"archives-4\";}s:24:\"third-footer-widget-area\";a:0:{}s:25:\"fourth-footer-widget-area\";a:0:{}s:25:\"above-content-widget-area\";a:0:{}s:25:\"below-content-widget-area\";a:2:{i:0;s:14:\"recent-posts-4\";i:1;s:10:\"calendar-3\";}s:13:\"array_version\";i:3;}','yes'),(103,'cron','a:7:{i:1399310934;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1399340520;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1399349626;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1399380918;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1399392835;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1399897726;a:1:{s:17:\"jetpack_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:14:\"jetpack_weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(110,'logged_in_salt','~q#jTCV}#5Z78Y@@0|ikzuOfwclH+[E1u?`[#vW-4!eXo ~_A*aU5`q5wZQn(Ab{','yes'),(441,'link_manager_enabled','1','yes'),(442,'initial_db_version','15477','yes'),(111,'auth_salt','{Z=OIw9C~5G?a{mFwgRBjI0nIGEq^!D)Pz:qZGOY}4>J2dm 97-l@.Yv/mzWVDPN','yes'),(112,'widget_pages','a:3:{i:2;a:0:{}i:3;a:3:{s:5:\"title\";s:5:\"Pages\";s:6:\"sortby\";s:10:\"post_title\";s:7:\"exclude\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_calendar','a:3:{i:2;a:0:{}i:3;a:1:{s:5:\"title\";s:28:\"Earth Hertz Records Calendar\";}s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_links','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_tag_cloud','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_nav_menu','a:3:{i:2;a:0:{}i:3;a:2:{s:5:\"title\";s:4:\"HOME\";s:8:\"nav_menu\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(117,'dashboard_widget_options','a:4:{s:25:\"dashboard_recent_comments\";a:1:{s:5:\"items\";i:5;}s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:32:\"http://www.earthhertzrecords.com\";s:4:\"link\";s:108:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://www.earthhertzrecords.com/\";s:3:\"url\";s:148:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://0332c8e.netsolhost.com/WordPress/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:26:\"http://wordpress.org/news/\";s:3:\"url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"title\";s:14:\"WordPress Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:7:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}','yes'),(118,'nonce_salt','E!DOP?7Tl)]J5QM:v}E2TOUXRSy,Xn{7-r}(Xxhcg=3$ew_1c1NIG?I[ GRBQ<u|','yes'),(350,'current_theme','Parabola','yes'),(1906,'s3-s3audible_username','rxeno','yes'),(1907,'s3-s3audible_email','radiox@radiox.net','yes'),(1908,'s3-bucket','','yes'),(900,'safecss_rev','124','yes'),(901,'safecss_revision_migrated','1380729875','yes'),(22853,'rewrite_rules','a:70:{s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:69:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&tb=1\";s:64:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:59:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:52:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&paged=$matches[4]\";s:59:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&cpage=$matches[4]\";s:44:\"([0-9]{4})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&page=$matches[4]\";s:36:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(813,'wp_erident_dashboard_data_left','Powered by www.earthhertzrecords.com','yes'),(814,'wp_erident_dashboard_data_right','©℗ 2013 Earth Herz Records All Rights Reserved','yes'),(815,'wp_erident_dashboard_image_logo','http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_111_en2.png','yes'),(816,'wp_erident_dashboard_power_text','Powered by www.earthhertz.com','yes'),(817,'wp_erident_dashboard_login_width','350','yes'),(818,'wp_erident_dashboard_login_radius','10','yes'),(819,'wp_erident_dashboard_login_border','solid','yes'),(820,'wp_erident_dashboard_border_thick','4','yes'),(821,'wp_erident_dashboard_border_color','#6e838e','yes'),(822,'wp_erident_dashboard_login_bg','#dbdbdb','yes'),(823,'wp_erident_dashboard_text_color','#000000','yes'),(824,'wp_erident_dashboard_input_text_color','#555555','yes'),(825,'wp_erident_dashboard_label_text_size','14','yes'),(826,'wp_erident_dashboard_input_text_size','24','yes'),(827,'wp_erident_dashboard_link_color','#21759B','yes'),(828,'wp_erident_dashboard_check_shadow','Yes','yes'),(829,'wp_erident_dashboard_link_shadow','#ffffff','yes'),(830,'wp_erident_dashboard_check_form_shadow','Yes','yes'),(831,'wp_erident_dashboard_form_shadow','#C8C8C8','yes'),(832,'wp_erident_top_bg_color','#f9fad2','yes'),(833,'wp_erident_top_bg_image','http://0332c8e.netsolhost.com/WordPress/wp-content/plugins/erident-custom-login-and-dashboard/images/top_bg.jpg','yes'),(834,'wp_erident_top_bg_repeat','repeat','yes'),(835,'wp_erident_top_bg_xpos','top','yes'),(836,'wp_erident_top_bg_ypos','left','yes'),(837,'wp_erident_login_bg_image','http://0332c8e.netsolhost.com/WordPress/wp-content/plugins/erident-custom-login-and-dashboard/images/form_bg.jpg','yes'),(838,'wp_erident_login_bg_repeat','repeat','yes'),(839,'wp_erident_login_bg_xpos','top','yes'),(840,'wp_erident_login_bg_ypos','left','yes'),(841,'wp_erident_dashboard_delete_db','No','yes'),(1909,'s3-folder','','yes'),(993,'widget_blog_subscription','a:2:{i:2;a:5:{s:5:\"title\";s:27:\"Subscribe to Blog via Email\";s:14:\"subscribe_text\";s:99:\"Enter your email address to subscribe to this blog and receive notifications of new posts by email.\";s:19:\"subscribe_logged_in\";s:0:\"\";s:16:\"subscribe_button\";s:9:\"Subscribe\";s:22:\"show_subscribers_total\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(575,'jetpack_activated','1','yes'),(576,'jetpack_options','a:10:{s:7:\"version\";s:14:\"2.5:1379939244\";s:11:\"old_version\";s:14:\"2.5:1379939244\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:58267378;s:10:\"blog_token\";s:65:\"&J!SzcOJXRh57DqQ!)3GC%b$ihh9UhGW.BQ2hsI($yRU0esEEybR2VazbR4KNE%TW\";s:6:\"public\";i:1;s:11:\"user_tokens\";a:1:{i:1;s:67:\"$kcDVgjEh9LyEw@DAoUgDFfwG&ryvVt$.06%I3sHCcJFaQ$^8BoV5*4k2($IbdlO^.1\";}s:11:\"master_user\";i:1;s:10:\"videopress\";a:7:{s:5:\"blogs\";a:0:{}s:7:\"blog_id\";i:0;s:6:\"access\";s:0:\"\";s:12:\"allow-upload\";b:0;s:7:\"freedom\";b:0;s:2:\"hd\";b:0;s:4:\"meta\";a:1:{s:15:\"max_upload_size\";i:0;}}}','yes'),(578,'jetpack_log','a:6:{i:0;a:4:{s:4:\"time\";i:1379939292;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:1;a:4:{s:4:\"time\";i:1379939333;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:58267378;s:4:\"code\";s:9:\"authorize\";}i:2;a:4:{s:4:\"time\";i:1379939508;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:58267378;s:4:\"code\";s:8:\"activate\";}i:3;a:4:{s:4:\"time\";i:1379939613;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:58267378;s:4:\"code\";s:8:\"activate\";}i:4;a:4:{s:4:\"time\";i:1384823399;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:58267378;s:4:\"code\";s:8:\"activate\";}i:5;a:4:{s:4:\"time\";i:1384824506;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:58267378;s:4:\"code\";s:8:\"activate\";}}','no'),(582,'jetpack_active_modules','a:25:{i:0;s:10:\"vaultpress\";i:1;s:18:\"after-the-deadline\";i:3;s:10:\"custom-css\";i:5;s:21:\"enhanced-distribution\";i:7;s:10:\"sharedaddy\";i:9;s:13:\"subscriptions\";i:11;s:19:\"gravatar-hovercards\";i:13;s:10:\"shortcodes\";i:15;s:5:\"notes\";i:17;s:7:\"widgets\";i:19;s:8:\"json-api\";i:21;s:5:\"latex\";i:23;s:10:\"omnisearch\";i:25;s:16:\"gplus-authorship\";i:27;s:10:\"shortlinks\";i:29;s:9:\"publicize\";i:31;s:13:\"post-by-email\";i:33;s:12:\"contact-form\";i:35;s:5:\"stats\";i:37;s:17:\"widget-visibility\";i:39;s:11:\"mobile-push\";i:41;s:8:\"carousel\";i:43;s:10:\"videopress\";i:45;s:5:\"likes\";i:47;s:9:\"minileven\";}','yes'),(584,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:3:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";}s:11:\"count_roles\";a:5:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";}s:7:\"blog_id\";i:58267378;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(586,'carousel_background_color','black','yes'),(587,'carousel_display_exif','1','yes'),(590,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:4:\"icon\";s:13:\"sharing_label\";s:6:\"Share:\";s:10:\"open_links\";s:3:\"new\";s:4:\"show\";a:4:{i:0;s:5:\"index\";i:1;s:4:\"post\";i:2;s:4:\"page\";i:3;s:10:\"attachment\";}s:6:\"custom\";a:0:{}}}','yes'),(1258,'stb_enabled','1','yes'),(1259,'stc_enabled','1','yes'),(1260,'gravatar_disable_hovercards','enabled','yes'),(1307,'widget_twitter_timeline','a:2:{i:2;a:9:{s:5:\"title\";s:20:\"Follow Us On Twitter\";s:5:\"width\";i:225;s:6:\"height\";i:200;s:11:\"tweet-limit\";i:3;s:9:\"widget-id\";s:18:\"410762249926500352\";s:10:\"link-color\";s:7:\"#f96e5b\";s:12:\"border-color\";s:7:\"#e8e8e8\";s:5:\"theme\";s:5:\"light\";s:6:\"chrome\";a:0:{}}s:12:\"_multiwidget\";i:1;}','yes'),(1345,'shailan_dropdown_menu','a:31:{s:0:\"\";N;s:23:\"shailan_dm_active_theme\";s:12:\"color-scheme\";s:20:\"shailan_dm_theme_url\";N;s:27:\"shailan_dm_location_enabled\";s:2:\"on\";s:19:\"shailan_dm_location\";s:7:\"primary\";s:19:\"shailan_dm_home_tag\";s:0:\"\";s:17:\"shailan_dm_arrows\";s:2:\"on\";s:22:\"shailan_dm_arrow_color\";s:11:\"F,F,F,F,F,F\";s:15:\"shailan_dm_type\";s:10:\"navmenu_50\";s:15:\"shailan_dm_home\";s:2:\"on\";s:16:\"shailan_dm_login\";s:3:\"off\";s:19:\"shailan_dm_vertical\";s:3:\"off\";s:18:\"shailan_dm_exclude\";s:0:\"\";s:16:\"shailan_dm_align\";s:6:\"center\";s:18:\"shailan_dm_effects\";s:2:\"on\";s:17:\"shailan_dm_effect\";s:4:\"fade\";s:23:\"shailan_dm_effect_speed\";s:4:\"fast\";s:23:\"shailan_dm_effect_delay\";s:3:\"100\";s:24:\"shailan_dm_custom_colors\";s:2:\"on\";s:23:\"shailan_dm_color_menubg\";s:7:\"#ffffff\";s:24:\"shailan_dm_color_lihover\";s:7:\"#ff0000\";s:21:\"shailan_dm_color_link\";s:7:\"#FFFFFF\";s:26:\"shailan_dm_color_hoverlink\";s:7:\"#000000\";s:18:\"shailan_dm_overlay\";s:4:\"soft\";s:15:\"shailan_dm_font\";s:5:\"Arial\";s:19:\"shailan_dm_fontsize\";s:4:\"10px\";s:21:\"shailan_dm_custom_css\";s:0:\"\";s:21:\"shailan_dm_show_empty\";s:2:\"on\";s:25:\"shailan_dm_allowmultiline\";s:3:\"off\";s:34:\"shailan_dm_remove_title_attributes\";s:2:\"on\";s:33:\"shailan_dm_remove_top_level_links\";s:2:\"on\";}','yes'),(24025,'_site_transient_timeout_browser_bdc6ae4ea8dc59024f72c72b7ee546b3','1399025912','yes'),(24026,'_site_transient_browser_bdc6ae4ea8dc59024f72c72b7ee546b3','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"3.5.3\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:1;s:8:\"insecure\";b:0;}','yes'),(24459,'_site_transient_timeout_browser_6d44eab61dcf5b1f0e6fa8f6595ee1bc','1399492085','yes'),(24460,'_site_transient_browser_6d44eab61dcf5b1f0e6fa8f6595ee1bc','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";N;s:7:\"version\";N;s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(340,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(423,'fhs_settings','a:13:{s:13:\"fhs_max_width\";s:3:\"960\";s:14:\"fhs_max_height\";s:3:\"210\";s:10:\"fhs_effect\";s:4:\"wave\";s:10:\"fhs_strips\";s:2:\"20\";s:9:\"fhs_delay\";s:4:\"5000\";s:14:\"fhs_stripdelay\";s:2:\"50\";s:14:\"fhs_titledelay\";s:3:\"0.7\";s:9:\"fhs_speed\";s:4:\"1000\";s:11:\"fhs_postion\";s:9:\"alternate\";s:13:\"fhs_direction\";s:17:\"fountainAlternate\";s:14:\"fhs_navigation\";s:5:\"false\";s:8:\"fhs_link\";s:5:\"false\";s:21:\"fhs_button_navigation\";s:5:\"false\";}','yes'),(425,'_transient_plugins_delete_result_1','1','yes'),(5979,'category_children','a:4:{i:6;a:10:{i:0;i:10;i:1;i:31;i:2;i:32;i:3;i:49;i:4;i:51;i:5;i:54;i:6;i:60;i:7;i:69;i:8;i:90;i:9;i:97;}i:10;a:3:{i:0;i:11;i:1;i:12;i:2;i:13;}i:49;a:2:{i:0;i:67;i:1;i:68;}i:106;a:8:{i:0;i:98;i:1;i:99;i:2;i:100;i:3;i:101;i:4;i:102;i:5;i:103;i:6;i:104;i:7;i:105;}}','yes'),(24750,'_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c','1399349872','no'),(24751,'_transient_feed_867bd5c64f85878d03a060509cd2f92c','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Matt: New Funding for Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=43810\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://ma.tt/2014/05/new-funding-for-automattic/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3192:\"<p>I’ll start with the big stuff: Automattic is raising $160M, all primary, and it’s the first investment into the company since 2008. This is obviously a lot of money, especially considering everything we’ve done so far has been built on only about $12M of outside capital over the past 8 years. It was also <a href=\"http://ma.tt/2013/05/automattic-secondary/\">only a year ago I said</a> “Automattic is healthy, generating cash, and already growing as fast as it can so there’s no need for the company to raise money directly — we’re not capital constrained.”</p>\n<p>I was wrong, but I didn’t realize it until <a href=\"http://ma.tt/2014/01/toni-automattic-ceo/\">I took on the CEO role in January</a>. Things were and are going well, but there was an opportunity cost to how we were managing the company toward break-even, and we realized we could invest more into WordPress and our products to grow faster. Also our cash position wasn’t going to be terribly strong especially after a number of infrastructure and product investments this and last year. So part of my 100-day plan as CEO was to figure out what new funding could look like and we found a great set of partners who believe in our vision for how the web should be and how we can scale into the opportunity ahead of us, though it ended up taking 110 days until the first close. (Our other main areas of focus have been improving mobile, a new version of WP.com, and <a href=\"http://jetpack.me/\">Jetpack</a>.)</p>\n<p>This Series C round was led by Deven Parekh of Insight Ventures, and included new investors Chris Sacca, Endurance, and a special vehicle True Ventures created to step up their investment, alongside our existing secondary investors from last year, Tiger and Iconiq. (There is a second close soon so this list might change a bit.) There was interest significantly above what we raised, but we focused in on finding the best partners and scaled it back to be the right amount of capital at the right valuation. Deven and Insight share our long term vision and are focused on building an enduring business, one that will thrive for decades to come.</p>\n<p>WordPress is in a market as competitive as it has ever been, especially on the proprietary and closed side. I believe WordPress will win, first and foremost, because of its community — the hundreds of core developers and large commercial companies, the tens of thousands of plugin and theme developers, and the millions of people who build beautiful things with WordPress every day. Automattic is here to support that community and invest the full strength of our resources to making WordPress a better product every day, bringing us closer to our shared mission of democratizing publishing. But a majority of the web isn’t on an open platform yet, and we have a lot of work ahead of us. Back to it!</p>\n<p>You can read more about the news by Kara and Liz on Recode: <a href=\"http://recode.net/2014/05/05/wordpress-parent-automattic-has-raised-160-million-now-valued-at-1-16-billion-post-money/\">WordPress.com Parent Automattic Has Raised $160 Million, Now Valued at $1.16 Billion Post-Money</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 May 2014 15:04:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WordPress.tv: Panel Discussion: Commercial WordPress Products\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=34454\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wordpress.tv/2014/05/04/panel-discussion-commercial-wordpress-products/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:677:\"<div id=\"v-RHhsoJGg-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34454/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34454/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34454&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/05/04/panel-discussion-commercial-wordpress-products/\"><img alt=\"Panel Discussion: Commercial WordPress Products\" src=\"http://videos.videopress.com/RHhsoJGg/video-7c7577a0e5_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 May 2014 18:23:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WordPress.tv: Heather Acton: Stop Giving S** Away For Free and Start Feeding Your Family!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=34452\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://wordpress.tv/2014/05/04/heather-acton-stop-giving-s-away-for-free-and-start-feeding-your-family/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:730:\"<div id=\"v-5UPOSUY0-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34452/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34452/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34452&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/05/04/heather-acton-stop-giving-s-away-for-free-and-start-feeding-your-family/\"><img alt=\"Heather Acton: Stop Giving S** Away For Free and Start Feeding Your Family!\" src=\"http://videos.videopress.com/5UPOSUY0/video-a9b5eca4fc_scruberthumbnail_3.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 May 2014 18:08:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WordPress.tv: Dave West & Amy Abt: Where’s My Maserati?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=34450\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.tv/2014/05/03/dave-west-amy-abt-wheres-my-maserati/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:657:\"<div id=\"v-sM44W6og-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34450/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34450/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34450&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/05/03/dave-west-amy-abt-wheres-my-maserati/\"><img alt=\"Dave West & Amy Abt: Where’s My Maserati?\" src=\"http://videos.videopress.com/sM44W6og/video-0152f3f8f3_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 May 2014 18:37:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.tv: Lindsey Guajardo: Remote Project Management\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=34448\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wordpress.tv/2014/05/03/lindsey-guajardo-remote-project-management/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:669:\"<div id=\"v-Iz6XMFii-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34448/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34448/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34448&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/05/03/lindsey-guajardo-remote-project-management/\"><img alt=\"Lindsey Guajardo: Remote Project Management\" src=\"http://videos.videopress.com/Iz6XMFii/video-2b88c73170_scruberthumbnail_2.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 May 2014 18:17:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mark Jaquith: Ask Mark Anything\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://markjaquith.wordpress.com/?p=5113\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://markjaquith.wordpress.com/2014/05/03/ask-mark-anything/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1337:\"<p>People ask me a lot of questions. About WordPress and web development for sure, but also about other topics. I’ve decided to try a little experiment: <a href=\"https://github.com/markjaquith/feedback/\">a public way to ask me questions</a>. Zach Holman from GitHub had the idea to use a GitHub issue tracker for this very purpose, and I think it looks like a splendid idea.</p>\n<p>Benefits:</p>\n<ul>\n<li>Allows for more in-depth discussions than Twitter (but you can still <a href=\"https://twitter.com/markjaquith\">talk to me on Twitter</a> for quick questions).</li>\n<li>Is public (as opposed to e-mail).</li>\n<li>Forces me to deal with questions.</li>\n</ul>\n<p>Now, note that this doesn’t mean I want you to treat me like your personal Google-searcher or WordPress code grepper! But if you think there is a WordPress (or other) topic that I am uniquely qualified to address, <a href=\"https://github.com/markjaquith/feedback/\">just ask</a>.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/markjaquith.wordpress.com/5113/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/markjaquith.wordpress.com/5113/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=markjaquith.wordpress.com&blog=316&post=5113&subd=markjaquith&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 May 2014 05:21:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mark Jaquith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: GoDaddy Removes Ticketing and Email Support In Favor Of Phone and Live Chat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=22168\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:214:\"http://wptavern.com/godaddy-removes-ticketing-and-email-support-in-favor-of-phone-and-live-chat?utm_source=rss&utm_medium=rss&utm_campaign=godaddy-removes-ticketing-and-email-support-in-favor-of-phone-and-live-chat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8349:\"<p>A few days ago, GoDaddy quietly removed the ability to submit a trouble ticket or an email to receive support. This was verified through the <a title=\"https://twitter.com/GoDaddyHelp\" href=\"https://twitter.com/GoDaddyHelp\">GoDaddy Help</a> twitter account.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p><a href=\"https://twitter.com/mistical\">@mistical</a> We did discontinue our email support. However, we do offer live chat now. It can be accessed here: <a href=\"http://t.co/HFw77fAJTh\">http://t.co/HFw77fAJTh</a> ^KJ</p>\n<p>— GoDaddy Help (@GoDaddyHelp) <a href=\"https://twitter.com/GoDaddyHelp/statuses/461695002520072192\">May 1, 2014</a></p></blockquote>\n<p></p>\n<p>Both support methods were removed in favor of live chat and phone support. I reached out to GoDaddy’s media representatives and asked why the options were removed and why they weren’t more forthcoming about the changes. Nick Fuller, a GoDaddy representative explained that email consistently finished last as far as their customers’ preferred method of help.</p>\n<blockquote><p>After reviewing customer behavior and satisfaction scores we decided we could better serve people in ways they were telling us work better for them.</p>\n<p>Customers love the ‘real time’ support experience. Email is not instantaneous and in fact many in the industry are putting an end to their email service as well because fewer than half of tech customers believe their problem can be solved by email – it’s sort of going the way of the cassette tape.</p></blockquote>\n<p>Former GoDaddy employee Brad Cook, was one of the first to <a title=\"http://www.clicknowmarketing.com/domains/godaddy-ends-email-support/\" href=\"http://www.clicknowmarketing.com/domains/godaddy-ends-email-support/\">report on the loss of email and ticket support</a>. Cook <a title=\"https://www.youtube.com/watch?v=Vosu4bTUJ4Y\" href=\"https://www.youtube.com/watch?v=Vosu4bTUJ4Y\">documented his effort</a> in a YouTube video showing the drawbacks of the live support option. He ended up having to wait 1.5 hours for help. Unfortunately, his wait was for nothing, “I had to rush into the other room as my son was getting sick right around the time my turn in line came up and I ended up missing my opportunity to chat after this long wait.”</p>\n<h3>Which Is A Quicker Means Of Support, Phone Or Live Chat?</h3>\n<p>On the afternoon of March 30th, I performed an experiment. I wanted to find out which method of support was quicker and whether or not the support representatives would try to upsell me on other services. I explained to both parties that I wanted to know when my domain was up for renewal.</p>\n<p><strong>Phone Support</strong>: The wait time on the phone was only nine minutes. Once on the line, the gentleman spoke English, was to the point, and politely asked how he could help. I asked when my domain was up for renewal. He told me the exact date while also explaining how I could find that information out myself via the GoDaddy control panel. He said they could renew it for me on the phone or I could do it myself. I chose to do it myself.</p>\n<p>He asked how else he could help and I told him that was the only question I had. He thanked me and said have a good day. <strong>At no point</strong> during the phone call did he try to sell me services such as webhosting to go with my domain. In fact, the experience was better than I expected.</p>\n<p><strong>Live Chat</strong>:</p>\n<p>I started the Live Chat session at the same time I called GoDaddy. As you can see from the image below, I had to <strong>wait 35 minutes</strong>. While Cook experienced inaccurate waiting times, I found mine to be relatively accurate.</p>\n<div id=\"attachment_22318\" class=\"wp-caption aligncenter\"><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/05/GoDaddyLiveChat.png\" rel=\"prettyphoto[22168]\"><img class=\"size-full wp-image-22318\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/05/GoDaddyLiveChat.png?resize=720%2C582\" alt=\"GoDaddy Live Chat\" /></a><p class=\"wp-caption-text\">Waiting In A Virtual Line</p></div>\n<p>After waiting on the live chat for 10 minutes, I already had my problem solved via phone support. When I eventually got the chance to speak with a tech support representative, I was able to verify a couple of problems outlined by Cook.</p>\n<ul>\n<li>There is no audible or visual cue that indicates it’s my turn to talk</li>\n<li>If the chat window is minimized, it doesn’t blink in the taskbar when a message has been received</li>\n</ul>\n<p>I asked the chat rep when my domain would need to be renewed. They responded in a few minutes with the correct answer and told me they could renew it for me, or I could do it manually. I told them I’d do it manually. I thanked the rep for helping me. After the usual <em>you’re welcome message</em>, my chat session was closed. <strong>At no point</strong> during the chat session did they try to sell me services such as webhosting to go with my domain.</p>\n<h3>GoDaddy Is Addressing Growing Pains With Live Chat</h3>\n<p>Phone support at GoDaddy was a superior experience compared to live chat. Because of the problems mentioned earlier, it’s too easy to miss your opportunity to chat with a representative. Once you’ve lost your chance, you have to go to the end of the line. I shared Cook’s post to GoDaddy and Fuller admits there is work to be done to improve the experience.</p>\n<blockquote><p>There’s work to be done and we’re just in the beginning phases of the transition. As of today, we’ve expanded our live chat support team by 20 representatives in order to better meet the demand in the general customer care chat. We’re also expanding the team for live chat support on the hosting side and we’re working with our live chat tool provider to provide an audio notification when a chat session is ready to go.</p></blockquote>\n<p>It’s a good thing GoDaddy has added more representatives to address demand because waiting for 30 minutes is unacceptable. I’ve used the live chat for HostGator and other service providers and the wait times have generally been under 10 minutes. Most of the time, I can reach someone without any wait at all.</p>\n<p>I prefer live chat over speaking with someone on the phone because it’s a more natural means of communication for me. It’s also easier to send URL’s through chat than over the phone. However, I’m glad that each support method didn’t try to upsell me on additional products and services. Such a practice during a time of need is slimy at best.</p>\n<h3>Aligning With Customer Needs</h3>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2009/08/gravitylogo.png\" rel=\"prettyphoto[22168]\"><img class=\"alignright size-full wp-image-2322\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2009/08/gravitylogo.png?resize=108%2C109\" alt=\"gravityforms logo\" /></a>I certainly don’t fault GoDaddy for doing away with email and ticket based support. Since their data supports the reasoning for getting rid of them, it makes sense. In mid 2013, <a title=\"http://www.gravityhelp.com/gravity-forms-standard-support-change-announcement/\" href=\"http://www.gravityhelp.com/gravity-forms-standard-support-change-announcement/\">GravityForms changed their standard support structure</a> to remove forums. The move was inspired by the explosive growth of their product and the forum had become unmanageable.</p>\n<p>I like support forums since they give me an opportunity to help myself but for successful companies, they can easily become unmanageable. But the move was made to <em>better serve the needs of their customers</em>.</p>\n<p>As a company, it makes sense to do whatever is best for the customer. If you’d like advice on hiring support staff for your WordPress business, <a title=\"http://wptavern.com/wordpress-commercial-theme-businesses-offer-advice-on-hiring-support-staff\" href=\"http://wptavern.com/wordpress-commercial-theme-businesses-offer-advice-on-hiring-support-staff\">check out this post</a> which contains advice from some of the most successful commercial WordPress theme companies.</p>\n<p>When it comes to support, what is your preferred method? Tickets, FAQ’s, Forums, Email, or something else?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 May 2014 03:20:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"BuddyPress: BuddyPress 2.0.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://buddypress.org/?p=182380\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://buddypress.org/2014/05/buddypress-2-0-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1049:\"<p>BuddyPress 2.0.1 is now available. Download from <a href=\"http://wordpress.org/plugins/buddypress/\">the wordpress.org plugin repository</a>, as a <a href=\"http://downloads.wordpress.org/plugin/buddypress.2.0.1.zip\">zip file</a>, or through WordPress via Dashboard > Plugins.</p>\n<p>This maintenance release includes a number of important fixes, including:</p>\n<ul>\n<li>Improvements to some 1.9.x-2.0.x upgrade routines, including the creation of the <code>wp_signups</code> table and the migration of <code>last_activity</code> data</li>\n<li>Fixes for a handful of regressions related to group querying and creation</li>\n<li>Backward compatibility improvements for plugins that extend the xprofile component</li>\n</ul>\n<p>For a complete list of changes made for this release, visit the <a href=\"http://codex.buddypress.org/developer/releases/version-2-0-1/\">2.0.1 changelog</a>.</p>\n<p>Questions or comments? Visit out <a href=\"https://buddypress.org/support\">support forums</a> or <a href=\"https://buddypress.trac.wordpress.org\">Trac</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 May 2014 01:22:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Boone Gorges\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Steve Jobs in 1983\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=43806\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://ma.tt/2014/05/steve-jobs-in-1983/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:572:\"<p></p>\n<p>I really enjoyed listening to this <a href=\"http://lifelibertytech.com/2012/10/02/the-lost-steve-jobs-speech-from-1983-foreshadowing-wireless-networking-the-ipad-and-the-app-store/\">“Lost” Steve Jobs Speech from 1983; Foreshadowing Wireless Networking, the iPad, and the App Store</a>. In the beginning he asks who is over 36 years old, and says those are the people who were born before the computer. He also perfectly describes Google Street Maps as an early MIT experiment in Aspen. Really fascinating from end to end, including the Q&A.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 May 2014 01:05:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WordPress Query Monitor Plugin Crosses 10,000 Downloads\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=22219\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:172:\"http://wptavern.com/wordpress-query-monitor-plugin-crosses-10000-downloads?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-query-monitor-plugin-crosses-10000-downloads\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2436:\"<p>The <a href=\"http://wordpress.org/plugins/query-monitor/\" target=\"_blank\">Query Monitor</a> plugin was released by <a href=\"https://twitter.com/johnbillion/\" target=\"_blank\">John Blackbourn</a> in late November of 2013 and became an instant hit with WordPress developers. It’s racked up 25 five-star reviews on WordPress.org and today crossed the 10,000 download mark, which doesn’t even factor in the number of times the <a href=\"https://github.com/johnbillion/query-monitor\" target=\"_blank\">Github</a> repo has been cloned.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/05/reviews.jpg\" rel=\"prettyphoto[22219]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/05/reviews.jpg?resize=810%2C269\" alt=\"reviews\" class=\"aligncenter size-full wp-image-22295\" /></a></p>\n<p>Query Monitor is without a doubt the most comprehensive debugging plugin for WordPress, often replacing multiple plugins developers previously combined to try to get the same tools. Its features are too long to list, but suffice it to say that it offers a solid overview of database queries, hooks that are being fired, theme template information, HTTP Requests, Redirects and much more.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2013/11/qm.jpg\" rel=\"prettyphoto[22219]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2013/11/qm.jpg?resize=572%2C368\" alt=\"qm\" class=\"aligncenter size-full wp-image-11776\" /></a></p>\n<p>If you use it on a community site, there’s a separate <a href=\"http://wptavern.com/new-plugin-adds-bbpress-and-buddypress-conditionals-to-query-monitor\" target=\"_blank\">extension</a> that will add bbPress and BuddyPress conditionals to Query Monitor’s output.</p>\n<p>The plugin is updated quite often and the most recent 2.6.6 release adds more robust support for alternative database drivers (including mysqli in core). Nearly every topic in the plugin’s support queue is marked as resolved and John Blackbourn is very responsive to issues and questions on Github. It’s easy to see why Query Monitor has so quickly become a must-have debugging plugin for WordPress developers.</p>\n<p>If you haven’t yet tried it, you can <a href=\"http://wordpress.org/plugins/query-monitor/\" target=\"_blank\">download</a> Query Monitor from WordPress.org. Site admins and multisite super admins will have access to its output in the admin bar.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 May 2014 23:06:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Akismet: A Custom Measure of Akismet Performance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1484\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://blog.akismet.com/2014/05/02/a-custom-measure-of-akismet-performance/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1212:\"<p>Just a little something for the weekend.</p>\n<p>Chris Hemedinger, a technical architect at <a href=\"http://www.sas.com/en_us/home.html/\">SAS</a>, recently published a <a href=\"http://blogs.sas.com/content/sasdummy/2014/05/01/blog-spam-akismet/\">great post</a> on his personal analysis of Akismet’s effectiveness across an entire network of company blogs.</p>\n<p>He uses his own company’s software to connect to his WordPress database and aggregate data from all Akismet-protected sites on the network. He then produces some really interesting charts and graphs for the purpose of analyzing spam activity and Akismet’s performance. Chris also makes it clear that having to manually deal with all that spam can be quite time-consuming. </p>\n<p>And we tend to agree. <span class=\"wp-smiley emoji emoji-smile\" title=\":)\">:)</span></p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1484/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1484/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blog.akismet.com&blog=116920&post=1484&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 May 2014 20:57:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Anthony Bubel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: WordPress for Android 2.8 Released, New Beta Testers Needed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=22207\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:180:\"http://wptavern.com/wordpress-for-android-2-8-released-new-beta-testers-needed?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-for-android-2-8-released-new-beta-testers-needed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2357:\"<div id=\"attachment_22273\" class=\"wp-caption alignright\"><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/05/wp-for-android.png\" rel=\"prettyphoto[22207]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/05/wp-for-android.png?resize=1025%2C442\" alt=\"WordPress for Android\" class=\"size-full wp-image-22273\" /></a><p class=\"wp-caption-text\">WordPress for Android</p></div>\n<p><a href=\"http://android.wordpress.org/\" target=\"_blank\">WordPress for Android</a> shipped its <a href=\"http://android.wordpress.org/2014/05/01/wordpress-for-android-2-8/\" target=\"_blank\">2.8 release</a> late last night. This milestone includes <a href=\"https://github.com/wordpress-mobile/WordPress-Android/issues?milestone=11&page=1&state=closed\" target=\"_blank\">55 closed issues</a>. This release is packed full of many small bug fixes, better language support, and performance improvements. Here are the highlights:</p>\n<ul>\n<li>App startup time has been reduced, and the Statistics screen will load faster.</li>\n<li>The app is now available in Turkish, English (UK), and offers improved support for Traditional Chinese.</li>\n<li>Samsung users will now be able to use the app in multi-window.</li>\n<li>Notification and Comment screens have been reworked to enhance the user experience on small tablets.</li>\n</ul>\n<p>Version 2.7, released last month, introduced pull-to-refresh for loading up fresh content and optimized Stats to load and scroll faster. Stats addicts will be happy to know that latest 2.8 release delivers even more dramatic speed improvements, making Stats easier to navigate. If your Android device hasn’t already prompted you to update, you can visit <a href=\"https://play.google.com/store/apps/details?id=org.wordpress.android\" target=\"_blank\">Google Play</a> on your device to trigger the update.</p>\n<h3>Call for Beta Testers</h3>\n<p>If you’re a serious WordPress for Android user and want to help out as a beta tester, you can request to join the <a href=\"https://plus.google.com/communities/108813167297661427043\" target=\"_blank\">Google+ community</a> dedicated to testing the app. Beta testers will have access to beta versions with beta updates shipped directly through Google Play. The beta versions may have new features, new fixes, and possibly new bugs, so testers should be available to provide feedback.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 May 2014 20:49:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: WordPress Cheat Sheet For Commonly Used Template Functions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=22214\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:180:\"http://wptavern.com/wordpress-cheat-sheet-for-commonly-used-template-functions?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-cheat-sheet-for-commonly-used-template-functions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2648:\"<p>If you find yourself constantly referring to the <a title=\"http://codex.wordpress.org/\" href=\"http://codex.wordpress.org/\">Codex</a> or searching for a commonly used template function, consider bookmarking this <a title=\"http://wp-cheatsheet.com/\" href=\"http://wp-cheatsheet.com/\">WordPress Cheat Sheet </a>created by Trevor Niemi. Launched in February of this year, Niemi created the site after seeing a pixelated image of the same information published to Reddit. When asked how often the site is updated, Niemi says he’s “actively updating it when Codex changes occur and when a good suggestion is submitted by a user.”</p>\n<p>The cheat sheet has a listing of functions you can copy and paste into your work. Several of the functions are linked to their corresponding Codex pages for more information and general usage. There’s also a <a title=\"http://wp-cheatsheet.com/wp-cheatsheet.com.pdf\" href=\"http://wp-cheatsheet.com/wp-cheatsheet.com.pdf\">PDF link</a> making it easy to save and view the information offline.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/05/wpfunctioncheatsheet2.png\" rel=\"prettyphoto[22214]\"><img class=\"aligncenter size-full wp-image-22240\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/05/wpfunctioncheatsheet2.png?resize=647%2C414\" alt=\"WP Cheat Sheet In Action\" /></a></p>\n<p>When asked whether the site would expand to cover more information, Niemi responded, “future thinking, or expanding, is tricky. I really don’t want to alienate the user base by trying to churn a profit or anything like that because of how fickle developers are in general when things change and the nature of what a simple cheat sheet should provide a user.” Although he has some ideas, he hasn’t been able to dedicate time or attention to the site.</p>\n<p>Since the site launched, WP-Cheatsheet has received 15,000 total visits with an average of 100 per day. Niemi says, “the site has become a fun, no stress project that I think people actually use which makes me happy”.</p>\n<p>If you’re looking for more code resources, we <a title=\"http://wptavern.com/wordpress-code-reference-is-now-live\" href=\"http://wptavern.com/wordpress-code-reference-is-now-live\">recently wrote about</a> the launch of the official WordPress code reference site. Also take a look at <a title=\"http://wptavern.com/introducing-hookr-io-a-new-resource-for-wordpress-developers\" href=\"http://wptavern.com/introducing-hookr-io-a-new-resource-for-wordpress-developers\">Hookr.io</a> to see an alternative approach to viewing the code that powers WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 May 2014 18:48:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WPTavern: The Mina Olen Free WordPress Theme Experiment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=22210\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:154:\"http://wptavern.com/the-mina-olen-free-wordpress-theme-experiment?utm_source=rss&utm_medium=rss&utm_campaign=the-mina-olen-free-wordpress-theme-experiment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4526:\"<div id=\"attachment_22252\" class=\"wp-caption aligncenter\"><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/05/experiment.jpg\" rel=\"prettyphoto[22210]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/05/experiment.jpg?resize=1025%2C484\" alt=\"photo credit: CIMMYT - cc\" class=\"size-full wp-image-22252\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/cimmyt/6801601408/\">CIMMYT</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a></p></div>\n<p>Sami Keijonen, founder of <a href=\"https://foxnet-themes.fi/\" target=\"_blank\">Foxnet Themes</a>, is not happy with his theme sales, which total $1400 since early 2013. His <a href=\"https://foxnet-themes.fi/downloads/kultalusikka/\" target=\"_blank\">Kultalusikka</a> theme is the sales leader, with just 15 purchases. Keijonen has one theme for sale on WordPress.com, which was added in March of this year and has so far <a href=\"https://twitter.com/samikeijonen/status/461927487422095360\" target=\"_blank\">netted him $147.64</a>.</p>\n<p>In a recent <a href=\"https://foxnet-themes.fi/experiment-commercial-theme-for-free/\" target=\"_blank\">post</a> that frankly details his disappointment with the sales, Keijonen announced a new theme experiment wherein he will be releasing some of his commercial themes on github, starting with his latest Mina Olen theme. This is the same theme that is available for sale on <a href=\"http://theme.wordpress.com/themes/mina-olen/\" target=\"_blank\">WordPress.com</a> for $75 and on <a href=\"https://foxnet-themes.fi/downloads/mina-olen/\" target=\"_blank\">Foxnet</a> for 39.00€.</p>\n<p>Mina Olen is based on Justin Tadlock’s <a href=\"http://themehybrid.com/hybrid-core\" target=\"_blank\">Hybrid Core</a>. All of its options can be found in WordPress’ customizer. The theme includes support for many major plugins in order to provide additional functionality, including <a href=\"http://wordpress.org/plugins/bbpress/\" target=\"_blank\">bbPress</a>, <a href=\"http://wordpress.org/extend/plugins/easy-digital-downloads/\" target=\"_blank\">Easy Digital Downloads</a>, <a href=\"http://wordpress.org/extend/plugins/custom-content-portfolio/\" target=\"_blank\">Custom Content Portfolio</a>, <a href=\"http://wordpress.org/plugins/testimonials-by-woothemes/\" target=\"_blank\">Testimonials</a>, <a href=\"http://wordpress.org/plugins/custom-header-extended/\" target=\"_blank\">Custom Header Extended</a>, and more.</p>\n<div id=\"attachment_22232\" class=\"wp-caption aligncenter\"><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/05/mina-olen.jpg\" rel=\"prettyphoto[22210]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/05/mina-olen.jpg?resize=880%2C660\" alt=\"Mina Olen WordPress Theme\" class=\"size-full wp-image-22232\" /></a><p class=\"wp-caption-text\">Mina Olen WordPress Theme</p></div>\n<p>Keijonen emphasizes that he is still referring to the theme as a commercial product, because he will not be offering support or automatic updates for free. Since it’s just an experiment, he retains the option to make the Github repo private at any time in the future.</p>\n<p>Keijonen is watching the results of the experiment to see if it affects the popularity of his theme, as well as the sales for support. He’s hoping that if people can test drive the theme before they make a decision, they will be more inclined to purchase support. “I can show off my code, it’s pretty solid,” he said. “That way I can build more trust.”</p>\n<p>Having the theme’s code publicly available on Github will enable developers to contribute improvements to it. Mina Olen is one of his go-to themes that allows him to create custom child themes in no time, such as the <a href=\"http://tarkkanen.fi/\" target=\"_blank\">jewelry site</a> he recently launched. He’s hoping that people will be able to more easily use it in their projects, especially those who build on top of the Theme Hybrid framework.</p>\n<p>The <a href=\"http://foxnet-themes.fi/demo/mina-olen/\" target=\"_blank\">live demo</a> for the theme shows all of the post formats in action, along with the many layouts and color schemes. If you want to participate in the experiment, you can <a href=\"https://github.com/samikeijonen/mina-olen\" target=\"_blank\">download the Mina Olen WordPress theme</a> for free from Github. Does access to the theme for free make you more inclined to pay for support or more likely to purchase another theme in Foxnet collection?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 May 2014 18:23:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WordPress.tv: Interview de Cédric Motte, orateur de “Sans contenu, WordPress n’est rien”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=34467\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"http://wordpress.tv/2014/05/02/interview-de-cedric-motte-orateur-de-sans-contenu-wordpress-nest-rien/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:690:\"<div id=\"v-yRTlnUbC-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34467/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34467/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34467&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/05/02/interview-de-cedric-motte-orateur-de-sans-contenu-wordpress-nest-rien/\"><img alt=\"13 – Cedric Motte-Itw-WCParis2014.mp4\" src=\"http://videos.videopress.com/yRTlnUbC/video-ffc44b5e49_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 May 2014 16:32:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WordPress.tv: Patrick Rauland: How to Build A Sustainable Business Using The Freemium Model\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=34446\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"http://wordpress.tv/2014/05/02/patrick-rauland-how-to-build-a-sustainable-business-using-the-freemium-model-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:739:\"<div id=\"v-AS01R6wG-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34446/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34446/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34446&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/05/02/patrick-rauland-how-to-build-a-sustainable-business-using-the-freemium-model-2/\"><img alt=\"Patrick Rauland: How to Build A Sustainable Business Using The Freemium Model\" src=\"http://videos.videopress.com/AS01R6wG/video-05a025c611_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 May 2014 12:23:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WordPress.tv: Alison Barrett: Avoid Breaking All The Things: How to Develop Safely\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=34444\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"http://wordpress.tv/2014/05/02/alison-barrett-avoid-breaking-all-the-things-how-to-develop-safely/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:718:\"<div id=\"v-XRTVnlcp-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34444/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34444/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34444&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/05/02/alison-barrett-avoid-breaking-all-the-things-how-to-develop-safely/\"><img alt=\"Alison Barrett: Avoid Breaking All The Things: How to Develop Safely\" src=\"http://videos.videopress.com/XRTVnlcp/video-db2348d109_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 May 2014 11:48:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WP Android: WordPress for Android 2.8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://android.wordpress.org/?p=1017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://android.wordpress.org/2014/05/01/wordpress-for-android-2-8/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1913:\"<p>We’re pleased to bring you WordPress for Android Version 2.8, which offers the following improvements: </p>\n<h2><a class=\"anchor\" href=\"http://android.wordpress.org/feed/#whats-new\" name=\"user-content-whats-new\"></a>What’s new</h2>\n<ul>\n<li>App startup time has been reduced, and the Statistics screen will load faster.</li>\n<li>The app is now available in Turkish, English (UK), and offers improved support for Traditional Chinese.</li>\n<li>Samsung users will now be able to use the app in multi-window.</li>\n<li>Notification and Comment screens have been reworked to enhance the user experience on small tablets.</li>\n</ul>\n<p>Check out the <a href=\"https://github.com/wordpress-mobile/WordPress-Android/issues?milestone=11&page=1&state=closed\">GitHub milestone</a> for more info.</p>\n<h2><a class=\"anchor\" href=\"http://android.wordpress.org/feed/#download\" name=\"user-content-download\"></a>Download</h2>\n<p>Download it now from <a href=\"https://play.google.com/store/apps/details?id=org.wordpress.android\">Google Play</a>.</p>\n<h2><a class=\"anchor\" href=\"http://android.wordpress.org/feed/#thanks\" name=\"user-content-thanks\"></a>Thanks</h2>\n<p>A huge thank you to the contributors who helped make this release happen:<br />\n<a href=\"https://github.com/anirudh24seven\">@anirudh24seven</a>, <a href=\"https://github.com/daniloercoli\">@daniloercoli</a>, <a href=\"https://github.com/maxme\">@maxme</a>, <a href=\"https://github.com/mixpanelsteve\">@mixpanelsteve</a>, <a href=\"https://github.com/nbradbury\">@nbradbury</a>, <a href=\"https://github.com/roundhill\">@roundhill</a>, <a href=\"https://github.com/sendhil\">@sendhil</a></p>\n<p>Be sure to follow <a href=\"https://twitter.com/wpandroid\">WPAndroid</a> for all of the latest updates.</p><img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=android.wordpress.org&blog=9426921&post=1017&subd=wpandroid&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 May 2014 07:06:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Maxime\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: WP Rocket Launches Commercial Caching Plugin for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=22171\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:180:\"http://wptavern.com/wp-rocket-launches-commercial-caching-plugin-for-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=wp-rocket-launches-commercial-caching-plugin-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5830:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/05/wp-rocket.jpg\" rel=\"prettyphoto[22171]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/05/wp-rocket.jpg?resize=237%2C300\" alt=\"wp-rocket\" class=\"alignright size-medium wp-image-22175\" /></a><a href=\"http://wp-rocket.me/\" target=\"_blank\">WP Rocket</a> is a new commercial caching plugin for WordPress that launched exclusively in the French market eight months ago. It’s created and supported by Julio Potier, Jonathan Buttigieg, and Jean-Baptiste Marchand-Arvier, a small group of Frenchmen with a passion for website optimization.</p>\n<p>WP Rocket is making its international debut this month in a market that is currently dominated by free WordPress caching solutions. Aside from a couple of Codecanyon items, WP Rocket is the first caching plugin to launch with a completely commercial model. Prices start at $39 for a single site ranging to $199 for unlimited sites with a year of updates and support.</p>\n<h3>WP Rocket Aims to Stand Out Among Established Competitors</h3>\n<p>The founding trio is banking on their top-notch support and the user-friendliness of the plugin to set them apart from those using the freemium model.</p>\n<p>The plugin is now at version 2.1, following rigorous testing and improvement prior to its international launch. It currently powers performance and optimization for more than 3000 sites. When it comes to features, you’ll find your standard caching functionality makes up the backbone of the plugin:</p>\n<ul>\n<li>Static Cache</li>\n<li>Minification and concatenation of HTML, JS and CSS</li>\n<li>Browser optimization (expired headers, gzip compression, etc.)</li>\n<li>Compatibility with various server software (Apache, Nginx, Lightspeed, etc)</li>\n<li>CDN integration</li>\n</ul>\n<p>The team at WP Rocket knew they were launching among serious, established competitors, such as <a href=\"https://wordpress.org/plugins/w3-total-cache/\" target=\"_blank\">W3 Total Cache</a> and <a href=\"https://wordpress.org/plugins/wp-super-cache/\" target=\"_blank\">WP Super Cache</a>. Jean-Baptiste Marchand-Arvier, speaking on behalf of the others, articulated their strategy in setting WP Rocket apart as a commercial plugin. “We are a bit different thanks to exclusive functionality, a complete compatibility with WPML (no other plugin is fully compatible), premium support, an automatic cache preload and constant R&D for frequent updates,” he said. Three people work full-time to support the plugin, and Marchand-Arvier notes that this wouldn’t be possible if it were free.</p>\n<p>WP Rocket boasts a few exclusive features for further optimization that are not common to other popular caching plugins:</p>\n<ul>\n<li>Lazy Loading – loads only visible images on the page, as seen in the standalone <a href=\"http://wordpress.org/plugins/rocket-lazy-load/\" target=\"_blank\">Rocket Lazy Load</a> plugin</li>\n<li>Cache Preloading using WP Rocket servers on demand and automatically (on content creation and update).</li>\n<li>DNS prefetching- (preloads DNS requests for websites added in the options)</li>\n<li>Deferred JS Loading</li>\n<li>Approximately 40 hooks</li>\n<li>Image height and width are automatically added to avoid unnecessary browser calculations</li>\n<li>A white label system to change the name and description of the plugin to remove any mention on WP Rocket</li>\n<li>7/7 Support</li>\n</ul>\n<h3>WP Rocket was Designed with Simplicity in Mind</h3>\n<p>Marchand-Arvier said the team has been pleasantly surprised by the great feedback they have received from the community and customers, despite launching without a real business plan. One common complaint about caching plugins is that they are difficult to configure, with too many confusing options. “For a novice or developer, you can be easily lost,” Marchand-Arvier said. “Users are also afraid to break their sites and not have quick access to help in case of trouble.” WP Rocket aims to solve this problem.</p>\n<p>I took the plugin for a test drive to see if it lives up to their claims. The settings page is very basic and I was able to configure it for a small blogging site in under a minute. More advanced settings are available, but those are mostly for DNS prefetching and file exclusions.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/05/wp-rocket-settings.png\" rel=\"prettyphoto[22171]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/05/wp-rocket-settings.png?resize=1025%2C939\" alt=\"wp-rocket-settings\" class=\"aligncenter size-full wp-image-22192\" /></a></p>\n<p>I performed a quick test on a small site with no caching, which originally rang in at 5.88s load time, according to <a href=\"http://gtmetrix.com/\" target=\"_blank\">GTmetrix</a>, with a page speed grade of E (59%) and 1.82MB total page size. With WP Rocket turned on and basic setting activated, the page load time was reduced to 2.88s with 1.00MB page size and a page speed grade B (83%). The plugin shaved three seconds off the load time, which is a fairly significant return for the one minute I spent configuring it.</p>\n<p>Marchand-Arvier said that their customers have been attracted by their support, ease of use, and the all-in-one system, which allows them to replace several optimization plugins with WP Rocket. The simple setup is a refreshing change from many of the major caching plugins that require moving and editing files as well as configuring half a dozen screens full of options. But will this commercial caching plugin be able to compete against all of the free, robust options available? Thus far, it seems as though <a href=\"http://wp-rocket.me/\" target=\"_blank\">WP Rocket</a> customers are willing to pay for a faster and simpler solution to site optimization.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2014 23:28:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Alex King: Write locally, mirror globally\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://pinboard-ab7979d7a6297d99db088e204013dd49\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://www.manton.org/2014/04/write_locally_mirror.html\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:651:\"<p>I’m obviously a fan of this type of thinking. Want to have your cake and eat it too? <a href=\"http://crowdfavorite.com/blog/2014/01/own-your-online-identity/\">Try owning your data</a> and and still mixing it up on Facebook and Twitter with our <a href=\"http://crowdfavorite.com/favepersonal/\">free FavePersonal WordPress theme</a> (as seen on this site).</p>\n<p class=\"threads-post-notice\">This post is part of the project: <a href=\"http://alexking.org/project/favepersonal\">FavePersonal</a>. View the project timeline for more context on this post.</p>\n<p><a href=\"http://alexking.org/blog/2014/05/01/write-locally-mirror-globally\">#</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2014 21:10:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: Pagely To Host BuddyPress Hangout With Boone Gorges\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=22138\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:166:\"http://wptavern.com/pagely-to-host-buddypress-hangout-with-boone-gorges?utm_source=rss&utm_medium=rss&utm_campaign=pagely-to-host-buddypress-hangout-with-boone-gorges\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1527:\"<p>Managed WordPress hosting company Pagely, <a title=\"http://blog.pagely.com/2014/04/pagely-buddypress-hangout/\" href=\"http://blog.pagely.com/2014/04/pagely-buddypress-hangout/\">will be hosting</a> a BuddyPress hangout tomorrow at <strong>11AM Pacific, 2PM Eastern</strong>. Pagely’s CTO Josh Eichorn will be interviewing BuddyPress lead developer <a title=\"http://boone.gorg.es/\" href=\"http://boone.gorg.es/\">Boone Gorges</a>.</p>\n<p>The pair will discuss the differences between BuddyPress 1.9 and 2.0 as well as details surrounding the major performance improvements. Pagely CEO Joshua Strebel will moderate the discussion. If you can’t make the live showing, the video will be published on the Pagely blog sometime next week.</p>\n<p>Last month, Gorges was interviewed by Brad Williams and Dre Armeda <a title=\"http://dradcast.com/shows/episode-038-boone-hat/\" href=\"http://dradcast.com/shows/episode-038-boone-hat/\">on Dradcast</a> where he discussed the development of <a title=\"http://buddypress.org/2014/04/buddypress-2-0-juliana/\" href=\"http://buddypress.org/2014/04/buddypress-2-0-juliana/\">BuddyPress 2.0</a>, the <a title=\"http://commons.gc.cuny.edu/\" href=\"http://commons.gc.cuny.edu/\">CUNY Academic Commons project</a>, and the <a title=\"http://wptavern.com/buddypress-2-0-ramps-up-performance-reduces-footprint-by-up-to-75\" href=\"http://wptavern.com/buddypress-2-0-ramps-up-performance-reduces-footprint-by-up-to-75\">performance improvements in 2.0</a>.</p>\n<p><span class=\"embed-youtube\"></span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2014 17:12:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: WP-SCSS Plugin Adds Sass CSS Preprocessor to WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=22082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:186:\"http://wptavern.com/wp-scss-plugin-adds-sass-css-preprocessor-to-wordpress-themes?utm_source=rss&utm_medium=rss&utm_campaign=wp-scss-plugin-adds-sass-css-preprocessor-to-wordpress-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3541:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/sass.png\" rel=\"prettyphoto[22082]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/sass.png?resize=772%2C250\" alt=\"sass\" class=\"aligncenter size-full wp-image-22129\" /></a></p>\n<p>Last week we <a href=\"http://wptavern.com/new-plugin-adds-less-css-preprocessor-to-wordpress-themes\" target=\"_blank\">featured</a> a plugin that adds the <a href=\"http://lesscss.org/\" target=\"_blank\">Less</a> CSS preprocessor to WordPress themes. Several of our readers were wondering if there was a <a href=\"http://sass-lang.com/\" target=\"_blank\">Sass</a> equivalent to the plugin.</p>\n<p>Although not structured entirely the same as the Less Theme Support plugin, which uses <a href=\"http://codex.wordpress.org/Function_Reference/add_theme_support\" target=\"_blank\">add_theme_support</a>, the WP-SCSS plugin provides a decent Sass counterpart.</p>\n<p><a href=\"http://wordpress.org/plugins/wp-scss/\" target=\"_blank\">WP-SCSS</a> compiles Sass using <a href=\"https://github.com/leafo/scssphp\" target=\"_blank\">scssphp</a>, a compiler script written in PHP. When changes are made to the SCSS files, the plugin compiles them to the matching CSS file. If a matching CSS file doesn’t exist, the plugin will create one.</p>\n<p>Paths to the SCSS and CSS files can be configured in the plugin’s settings page (defined relative to your theme folder), along with error reporting, compiling options, and auto enqueuing.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/05/wp-scss-settings.png\" rel=\"prettyphoto[22082]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/05/wp-scss-settings.png?resize=1025%2C964\" alt=\"wp-scss-settings\" class=\"aligncenter size-full wp-image-22133\" /></a></p>\n<p>The best way to ensure the most accurate compiling is to have separate SCSS and CSS directories in your theme’s folder, i.e.:</p>\n<p><strong>Theme Directory:</strong><br />\n|-css<br />\n| –style.css<br />\n| –ie.css<br />\n|-scss<br />\n| –style.scss<br />\n| –ie.scss</p>\n<p>You’ll have three different modes as options for compiling when using the plugin:</p>\n<ul>\n<li><strong>Expanded</strong> – Full open CSS. One line per property. Brackets close on their own line.</li>\n<li><strong>Nested</strong> – Lightly compressed CSS. Brackets close with CSS block. Indents to match SCSS nesting.</li>\n<li><strong>Compressed</strong> – Fully compressed CSS.</li>\n</ul>\n<p>The auto enqueuing should be used with care, because if you ever disable the plugin your CSS files will no longer be enqueued. By default, the automatic enqueuing will enqueue all the files found in the CSS directory that you define in the plugin’s settings, including any non-compiled CSS files that you may have in play. Obviously, if you utilize the plugin’s auto enqueuing feature, you should make sure that you’re not reenqueing them somewhere else.</p>\n<p>The <a href=\"http://wordpress.org/plugins/wp-scss/\" target=\"_blank\">WP-SCSS</a> plugin makes using Sass in your WordPress themes a more convenient possibility. It provides limited <a href=\"http://compass-style.org/\" target=\"_blank\">Compass</a> and/or <a href=\"http://bourbon.io/\" target=\"_blank\">Bourbon</a> support as well as a way to use @import subfiles. Refer to the <a href=\"http://wordpress.org/plugins/wp-scss/faq/\" target=\"_blank\">FAQ tab</a> on the plugin’s WordPress.org homepage for more information and troubleshooting tips.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2014 16:42:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Akismet: April Stats Roundup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1401\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://blog.akismet.com/2014/05/01/april-stats-roundup/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3119:\"<p>This is the first in a series of monthly posts rounding up some basic stats and figures from the prior month. Because we thought that you may like to know how we’ve been doing and also get a better perspective of spam activity across the web.</p>\n<p>This was a special month, as April 12 marked the 20-year anniversary of commercialized spam, which is attributed to <a href=\"http://en.wikipedia.org/wiki/Laurence_Canter_and_Martha_Siegel\">two US immigration lawyers</a>. Happy Birthday, I guess?</p>\n<p>Akismet caught <strong>6,284,116,547</strong> pieces of spam content (comments, forum posts, contact form submissions, etc.). That’s down around 6% since last month and up around 103% over April 2013. The peak of spam activity was Tuesday April 15 (the same day that <a href=\"http://blog.akismet.com/2014/04/15/akismet-3-0-0/\" title=\"Akismet 3.0 Launch Post\">Akismet 3.0</a> was released, coincidentally), when our service blocked over <strong>252 million</strong> pieces of spam content. The daily breakdown goes a little something like this:</p>\n<p><a href=\"http://akismet.files.wordpress.com/2014/05/akismet-spam-stats-april-2014-001.png\"><img src=\"http://akismet.files.wordpress.com/2014/05/akismet-spam-stats-april-2014-001.png?w=640&h=401\" alt=\"Akismet Spam Stats, April 2014\" width=\"640\" height=\"401\" class=\"alignnone size-large wp-image-1449\" /></a></p>\n<p>There was a bit of an interesting lull at the end of the first week, though nothing much of note to discuss. You may have certainly noticed some corresponding trends on your own site. We experienced no downtime or service interruptions throughout the month, so any dips in the chart simply manifest lower periods of general spam activity.</p>\n<p>We missed only about 1 in every 6,904 pieces of spam content (0.0145%).</p>\n<p><strong>So, what does over 6 billion pieces of spam content really look like?</strong> If you assigned each piece of spam content its own seat, you could fill nearly 125,000 Yankee Stadiums.</p>\n<p><strong>Some reads from the month that we recommend:</strong><br />\n+ <a href=\"http://www.smh.com.au/digital-life/digital-life-news/happy-20th-birthday-spam-you-devil-20140429-zqyy0.html\">A reluctant ‘happy birthday’ to spam</a><br />\n+ <a href=\"http://www.csoonline.com/article/2149570/mobile-security/bad-bots-on-the-rise-a-look-at-mobile-social-porn-and-spam-bots.html\">The rise of bad bots</a><br />\n+ <a href=\"http://money.cnn.com/2014/04/29/technology/security/aol-hack-spam/\">Zombie spam!</a><br />\n+ <a href=\"http://www.cnn.com/2014/04/09/world/americas/cuba-twitter-spam/\">Is spam the latest weapon of the US government?</a><br />\n+ <a href=\"http://metro.co.uk/2014/04/03/spam-sushi-its-a-thing-4687542/\">Spam sushi is real</a></p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1401/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1401/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blog.akismet.com&blog=116920&post=1401&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2014 12:47:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Anthony Bubel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: WordPress Commercial Theme Businesses Offer Advice On Hiring Support Staff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=22072\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:212:\"http://wptavern.com/wordpress-commercial-theme-businesses-offer-advice-on-hiring-support-staff?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-commercial-theme-businesses-offer-advice-on-hiring-support-staff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11541:\"<p>Support is one of the most difficult and expensive aspects of a business. At the same time, it’s often a determining factor on whether a company sticks around for one or several years. One thing I’ve noticed most of the established WordPress commercial theme businesses have in common is their reputation for providing good support. But how did they find the individuals to support their products? How much are they paid? How are they trained?</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/ChurchThemesLogoBig.png\" rel=\"prettyphoto[22072]\"><img class=\"aligncenter size-full wp-image-22120\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/ChurchThemesLogoBig.png?resize=650%2C200\" alt=\"Big ChurchThemes Logo\" /></a></p>\n<p>Those questions and more were answered in a recent survey conducted by Steven Gliebe of <a title=\"http://churchthemes.com/\" href=\"http://churchthemes.com/\">ChurchThemes.com</a>. He reached out to several large and small commercial theme companies to determine how they built their support infrastructure. Gliebe has graciously donated the survey results to WP Tavern with the hope other commercial theme business owners will learn some valuable lessons to apply to their business.</p>\n<h3>How Do You Find Applicants?</h3>\n<p>Companies such as WooThemes have a <a title=\"http://www.woothemes.com/careers/\" href=\"http://www.woothemes.com/careers/\">dedicated page</a> highlighting new job openings while others hire from within. Cory Miller of <a title=\"http://www.ithemes.com\" href=\"http://www.ithemes.com\">iThemes</a> said some of their best support people started out as customers first, “<span class=\"pullquote alignright\">The best long-term support agents / techs we’ve seen have come as customers first. They love the product and they want to help other people get better. In fact, our support team lead came as a customer first.</span>”</p>\n<p><a title=\"http://www.studiopress.com\" href=\"http://www.studiopress.com\">StudioPress</a> has such a large community of customers and developers, they look within before advertising a job opportunity. In fact, the company has never externally <em>advertised</em> for a position to join Copyblogger’s support team.</p>\n<p>Other responses included the use of job boards or hiring someone they already know through networking. The last time ThemeFuse advertised an open position, they glued a poster on the campus of one of their local universities.</p>\n<div id=\"attachment_22117\" class=\"wp-caption aligncenter\"><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/OfficialWordPressJobsBoard.png\" rel=\"prettyphoto[22072]\"><img class=\"size-full wp-image-22117\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/OfficialWordPressJobsBoard.png?resize=1008%2C614\" alt=\"Official WordPress Jobs Board\" /></a><p class=\"wp-caption-text\">Official WordPress Jobs Board</p></div>\n<p>Bryan Hadaway of <a title=\"http://cyberchimps.com/\" href=\"http://cyberchimps.com/\">CyberChimps</a> recommends not using premium job boards as they didn’t yield better applicants than the free ones. When it comes to interviews, education means nothing to Hadaway. Instead, he’s more interested in experience and performance:</p>\n<blockquote><p>Education means nothing to me, experience and performance means everything to me. It all starts with the first email. I would say 90%+ of all applicants are immediately filtered out for sending incomprehensible, all-blue-text and otherwise unprofessional emails. Presentation says a lot about someone’s attention to detail, work ethic and overall professionalism.</p></blockquote>\n<h3>How Are New Hires Trained and Is There A Trial Period?</h3>\n<p>A common answer amongst all of the respondents is that training is a never-ending process. Most have a trial period lasting three months while others don’t have a trial period. Those that hired a customer or looked within their product community to hire support representatives discovered they were almost fully trained.</p>\n<p>Many of the respondents with a trial period explained that it’s used to determine whether the company is a good fit for the individual and vice versa. The only way to determine if an employee is a good fit within an existing culture is to work with them.</p>\n<h3>Do You Hire Employees Or Work With Independent Contractors (Is An Agreement Signed)?</h3>\n<p>Answers to this question varied largely due to the location of the company and the employee. For example, WooThemes is registered in South Africa and all of their staff in South Africa are paid as employees. WooThemes works with a payroll company in the US to handle payments to staff living in the US. Staff members outside of South Africa and the US are paid as independent contractors.</p>\n<p>David Morgan of <a title=\"http://organicthemes.com/\" href=\"http://organicthemes.com/\">Organic Themes</a> has a unique approach. They have a deal where support contractors are paid at a monthly rate for a couple of hours of their time per day. In addition to the payments, they are able to accept as much customization work from the forums as they desire. Morgan said “the deal worked out so well for two individuals, they went on to create their own WordPress theme customization site, <a title=\"http://werkpress.com/\" href=\"http://werkpress.com/\">WerkPress</a>.”</p>\n<p>CyberChimps hires employees directly but requires them to sign an NDA contract.</p>\n<h3>How Much Are Support Staff Paid?</h3>\n<p>The average range from the responses is between $10-$35/hour. The amount of pay appears to be highly influenced by the location of the employee. $20 to $30/hour seems typical for a Western Hemisphere. Those with more experience and responsibilities or in locations with an especially high cost of living may see $35/hour. The range for support staff in developing countries due to the lower cost of living might range from $10 to $20/hour.</p>\n<p>iThemes didn’t provide an amount but responded they don’t pay their support staff enough.</p>\n<p>WooThemes uses a slight variation of the <a title=\"http://open.bufferapp.com/introducing-open-salaries-at-buffer-including-our-transparent-formula-and-all-individual-salaries/\" href=\"http://open.bufferapp.com/introducing-open-salaries-at-buffer-including-our-transparent-formula-and-all-individual-salaries/\">Open Salaries formula for location</a> by Buffer to determine pay rates.</p>\n<h3>Advice On Hiring Support Staff</h3>\n<p>Hire slowly. WooThemes hired too quickly and discovered that many were not fit for the support role after a few months. Conduct several interviews and chats with the individual to make sure you are hiring a person that is committed.</p>\n<p>Say thank you as often as you can to your support team. They are the front line of your products, even more so than the actual developers. Miller hires for passion and commitment to the customer, the product, and their mission. For retaining good support people, Miller says “ensuring they feel appreciated and listened to is the absolute key.” Saying thank you goes a very long way.</p>\n<div id=\"attachment_22121\" class=\"wp-caption aligncenter\"><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/SayThankYou.png\" rel=\"prettyphoto[22072]\"><img class=\"size-full wp-image-22121\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/SayThankYou.png?resize=637%2C247\" alt=\"Just Say Thank You\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/nateone/3768979925/\">nateOne</a> – <a href=\"http://creativecommons.org/licenses/by/2.0/\">cc</a></p></div>\n<p>Kim Clark, VP of Customer Experience at CopyBlogger Media says to “follow your gut and trust your instincts.” While part of the equation is to find people with the required skills, the other is determining whether their personality matches with the company culture. As an example, if you provide a flexible hours environment and you find that the person you interview is asking about a rigid schedule, you will find yourself constantly answering questions about how they should structure their time.</p>\n<p>Seek out individuals that are long time customers or who have reached out to you in the past. According to Morgan, “those individuals will likely be loyal to your brand, and often become more than contractors, but friends as well.” WordCamps are an excellent place to find candidates to become members of your support staff. Morgan believes, “one fantastic support member is worth more than several mediocre support members.”</p>\n<p>Since the support staff are usually the first people a customer will speak with in your company, make sure they are as passionate and enthusiastic as you are. David Perel of <a title=\"http://oboxthemes.com/\" href=\"http://oboxthemes.com/\">Obox Themes</a> says, “support staff need a huge amount of patience and they need to be comfortable interacting with people from all walks of life.”</p>\n<p>You’ll never know if an applicant is right for the job until you put them into the field and stress test them. Hadaway says to “care about and nurture the fact that those who make the cut have a say and their ideas matter.” Hadaway believes that “besides just caring for their team at the human-level and wanting everyone to achieve success, it’s just better for CyberChimps in the purely business sense to have happy workers.”</p>\n<h3>The Benefits Of Keeping Support In-house</h3>\n<p>Drew Stojny of <a title=\"https://thethemefoundry.com/\" href=\"https://thethemefoundry.com/\">The Theme Foundry</a> and Chris Wallace of <a title=\"https://upthemes.com/\" href=\"https://upthemes.com/\">UpThemes</a> have an approach to hiring and providing support that were different enough from the other responses to warrant their own section. Both companies keep support in-house where each member of their team contributes to the support load. Strojny outlines some of the benefits of providing support in this manner.</p>\n<ul>\n<li>Customers get first class service from the team that built their theme.</li>\n<li>We get a first hand look at customer problems and can react quickly with bug fixes and improvements.</li>\n<li>We get valuable insight into what our customers want, which helps us when designing new themes</li>\n</ul>\n<p>UpThemes does support in this manner to prevent the burden from falling onto one or a few individuals. They’ve recently hired a customer support advocate to keep a pulse on the needs of their customers. This will help them prioritize pain points and to build better products. By having the entire work force contributing to support, it helps them learn how customers are using their products in detailed fashion.</p>\n<h3>Support Can Make or Break A Company</h3>\n<p>The results from the survey prove just how important a good support infrastructure is. Support can make or break a company as we saw with the <a title=\"https://upthemes.com/open-letter/\" href=\"https://upthemes.com/open-letter/\">open letter by UpThemes</a>. It’s one of the most important aspects of a business and is imperative to its long-term success. There are so many companies providing terrible customer service, customers excitedly share their experience when they are treated right. Whether it’s a theme, plugin, or service, a business should be striving to provide the most satisfying customer service possible.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2014 01:09:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: Rocket Galleries: An Intuitive Gallery Manager for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=22052\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:182:\"http://wptavern.com/rocket-galleries-an-intuitive-gallery-manager-for-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=rocket-galleries-an-intuitive-gallery-manager-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4757:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/rocket-galleries.jpg\" rel=\"prettyphoto[22052]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/rocket-galleries.jpg?resize=772%2C250\" alt=\"rocket-galleries\" class=\"aligncenter size-full wp-image-22054\" /></a></p>\n<p>Rocket Galleries is a new gallery plugin that claims to be “the gallery manager WordPress never had.” Ordinarily, gallery plugins are a dime a dozen and most of them insert themselves into WordPress with awkward interfaces that promote the plugin author. However, this one is different.</p>\n<p><a href=\"http://wordpress.org/plugins/rocket-galleries/\" target=\"_blank\">Rocket Galleries</a> was built to feel like native WordPress functionality, not a plugin. Matthew Ruddy, the plugin author, said that he created it as an alternative to other popular gallery plugins. “I built it to alleviate problems I was having when showing clients how to use NextGen gallery,” he said. <strong>“For a majority of what my clients required, it was too complicated – which prompted me to build something simpler.”</strong></p>\n<p>The gallery management panel looks like a natural part of WordPress:</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/gallery-panel.jpg\" rel=\"prettyphoto[22052]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/gallery-panel.jpg?resize=1025%2C628\" alt=\"gallery-panel\" class=\"aligncenter size-full wp-image-22092\" /></a></p>\n<p>Rocket Galleries features all the basics for a gallery that uses the WordPress media library:</p>\n<ul>\n<li>Lightweight, with no Javascript needed and minimal CSS at less than 0.3kb!</li>\n<li>Bulk image uploading, integrated with new WordPress Media Library</li>\n<li>A built-in template loader, allowing you to create your own gallery templates for your theme</li>\n<li>Developer friendly, with huge scope for customization using built-in actions and filters</li>\n<li>Ability to easily duplicate galleries</li>\n<li>Option to load scripts in the page header or footer</li>\n</ul>\n<p>Creating new galleries and adding images to exiting galleries is a very straightforward process for anyone who knows how to add images to the WordPress media library.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/create-gallery.jpg\" rel=\"prettyphoto[22052]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/create-gallery.jpg?resize=1003%2C494\" alt=\"create-gallery\" class=\"aligncenter size-full wp-image-22096\" /></a></p>\n<p>Galleries can be inserted from a modal window in the post/page editor or via a shortcode:</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/insert-gallery.jpg\" rel=\"prettyphoto[22052]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/insert-gallery.jpg?resize=1025%2C541\" alt=\"insert-gallery\" class=\"aligncenter size-full wp-image-22099\" /></a></p>\n<p>Gallery images are displayed in a nice block of thumbnails on the frontend:</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/gallery-frontend.jpg\" rel=\"prettyphoto[22052]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/gallery-frontend.jpg?resize=1025%2C706\" alt=\"gallery-frontend\" class=\"aligncenter size-full wp-image-22100\" /></a></p>\n<h3>More Functionality to Come in the Form of Extensions</h3>\n<p>Ruddy built the plugin to be developer friendly with lots of actions and filters, so there are many possibilities for extending it. Themes can customize the display via the plugin’s template loader, a method used by many popular plugins to give users the ability to add their own templates.</p>\n<p>Currently, images in the gallery link to the attachment page, rather than a lightbox. Ruddy said that he intends to release a lightbox extension, among others, once the plugin has received some downloads to demonstrate that people are actually using it. He plans to keep the Rocket Galleries plugin light and clutter-free and add functionality in the form of extensions, similar to the way that plugins like Easy Digital Downloads offer an array of additional add-ons.</p>\n<p>I tested Rocket Galleries and found it to be the simplest WordPress gallery manager plugin that I’ve ever used. It truly feels like a natural part of WordPress and, as such, has the potential to gain a strong following. You can <a href=\"http://wordpress.org/plugins/rocket-galleries/\" target=\"_blank\">download the plugin</a> from the WordPress Plugin Directory. If you like how nicely it integrates with WordPress, make sure to leave a good review and let the author know that you are using it. User feedback will be the basis for future extensions.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Apr 2014 21:11:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: WordPress 4.0 Kicks Off Development Today, Helen Hou-Sandí to Lead Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21988\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:210:\"http://wptavern.com/wordpress-4-0-kicks-off-development-today-helen-hou-sandi-to-lead-release?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-4-0-kicks-off-development-today-helen-hou-sandi-to-lead-release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3440:\"<p>Andrew Nacin <a href=\"http://make.wordpress.org/core/2014/04/30/helen-is-the-wordpress-4-0-release-lead/\" target=\"_blank\">announced</a> today that <a href=\"http://profiles.wordpress.org/helen\" target=\"_blank\">Helen Hou-Sandí</a> will be the release lead for WordPress 4.0, which kicks off development today during the regularly scheduled meeting in the #wordpress-dev IRC channel. Two guest committers, Dominik Schilling (<a href=\"http://profiles.wordpress.org/ocean90\" target=\"_blank\">@ocean90</a>) and Sergey Biryukov (<a href=\"http://profiles.wordpress.org/SergeyBiryukov\" target=\"_blank\">@SergeyBiryukov</a>) have both been granted permanent commit access.</p>\n<p>An important development meeting was held yesterday, where Samuel Sidler<a href=\"http://make.wordpress.org/core/2014/04/28/feature-plugin-chat-tomorrow/\" target=\"_blank\"> put out a roll call</a> for feature plugins currently in the works, some of which may be considered for the 4.0 release. Feature plugin team leaders submitted overviews of their plugin proposals, teams and current development status. While some of the plugins are still in the idea and planning stage, there are a few that may be ready in time to coincide with the next major release.</p>\n<h3>JSON REST API Plugin</h3>\n<p>The <a href=\"https://github.com/WP-API/WP-API\" target=\"_blank\">JSON REST API plugin</a> is targeting 4.0 for inclusion in WordPress. Rachel Baker, representing the plugin at the meeting, reported that there are just a couple of development-related items: removal of basic auth, in favor of Oauth, and addition of meta handling. Many developers are looking forward to this API being added to core, as it will greatly expand WordPress’ capabilities for being used as an application framework.</p>\n<h3>Media Grid Project</h3>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/media-grid.png\" rel=\"prettyphoto[21988]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/media-grid.png?resize=772%2C250\" alt=\"media-grid\" class=\"aligncenter size-full wp-image-22074\" /></a></p>\n<p>A small group of contributors is currently working on a Media Grid project, originally proposed during the 3.7/3.8 development cycle. Shaun Andrews is looking to form a focused team to work together on preparing it for an upcoming release. “I think we could have something ready for 4.0, but 4.1 is a possibility as well,” he said in a recent <a href=\"https://make.wordpress.org/core/2014/04/22/remember-the-media-grid-project-it-was-original/\" target=\"_blank\">update</a>. “I’m looking for any-and-all help, but specifically 1-2 backbone-capable developers with familiarity with the Media Modal would be a huge help.” Development for the Media Grid project is currently happening on <a href=\"https://github.com/helenhousandi/wp-media-grid-view\" target=\"_blank\">Github</a>, with a corresponding <a href=\"http://wordpress.org/plugins/media-grid/\" target=\"_blank\">plugin</a> in the directory.</p>\n<p>Other notable <a href=\"http://make.wordpress.org/core/2014/04/28/feature-plugin-chat-tomorrow/\" target=\"_blank\">projects currently in the idea and planning stages</a> include the Admin Help initiative focused on making the admin easier, and the possibility of redesigning and overhauling the “Press This” feature. Both are not likely to be ready for 4.0 but have teams currently active in researching future improvements.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Apr 2014 18:35:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: Would Anyone Be Interested in a WordCamp Badges Plugin?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=22020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:172:\"http://wptavern.com/would-anyone-be-interested-in-a-wordcamp-badges-plugin?utm_source=rss&utm_medium=rss&utm_campaign=would-anyone-be-interested-in-a-wordcamp-badges-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3364:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/wcmia-badge.jpg\" rel=\"prettyphoto[22020]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/wcmia-badge.jpg?resize=171%2C195\" alt=\"wcmia-badge\" class=\"alignright size-full wp-image-22031\" /></a><a href=\"http://wordpress.org/plugins/wordcamp-miami-badges/\" target=\"_blank\">Wordcamp Miami Badges</a> is a new plugin in the WordPress directory today. It allows speakers, attendees and volunteers to easily display badges indicating their participation in the <a href=\"http://2014.miami.wordcamp.org/\" target=\"_blank\">2014 event</a>, which is estimated to surpass 700 this year.</p>\n<p>The badges plugin was created by <a href=\"http://smyl.es/\" target=\"_blank\">Myles McNamara</a>, a self-described “geek who loves open source, writing code, and helping others out.” After searching the directory for a plugin that would display an event-specific WordCamp badge, he couldn’t find a suitable option and was inspired to create a new plugin. WordCamp Miami Badges makes it easy to place a badge on your website using a configurable shortcode or widget.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/badges-widget.png\" rel=\"prettyphoto[22020]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/badges-widget.png?resize=475%2C333\" alt=\"badges-widget\" class=\"aligncenter size-full wp-image-22030\" /></a></p>\n<h3>The Possibility of a Generic WordCamp Badges Plugin</h3>\n<p>I got in touch with McNamara to find out how difficult it would be for other WordCamp organizers to adapt the plugin for their own events. He said that it’s possible to restructure it for use as a generic WordCamp badges plugin. “As of right now this will only work for the Miami one as I hard coded the images into the plugin, but it would be very easy to add an option for the user to specify the image, or even just set it as a variable in one of the files that others could change to what they want,” he said.</p>\n<p>McNamara has a few ideas for enhancements to the plugin that he’d like to add, if there’s enough interest in converting this beta version into a widespread WordCamp plugin:</p>\n<ul>\n<li>A Countdown Clock</li>\n<li>A Ribbon throughout entire site (like the GitHub fork me one)</li>\n<li>A Sticky footer throughout entire site</li>\n<li>A More customization for image (resizing, floating (absolute positing) image</li>\n<li>Add animations using animate.css</li>\n</ul>\n<p>McNamara contributes to a number of open source projects on <a href=\"https://github.com/tripflex\" target=\"_blank\">Github</a>, including <a href=\"https://github.com/owncloud\" target=\"_blank\">ownCloud</a> and the <a href=\"https://github.com/pods-framework/pods\" target=\"_blank\">Pods Framework for WordPress</a>. If he gets enough interest in a generic WordCamp badges plugin, he’d be happy to adapt the WordCamp Miami plugin for broader use. If you’d like to get involved, you can contribute code and localizations to the plugin via <a href=\"http://github.com/tripflex/wordcamp-miami-badges\" target=\"_blank\">GitHub</a>.</p>\n<p>What do you think? Would a WordCamp Badges plugin be useful for promoting events? Do you like McNamara’s list of proposed enhancements? Or is it just as easy to upload a badge to your website?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Apr 2014 22:59:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: How To Archive A Site You Don’t Have Access To\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21993\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:154:\"http://wptavern.com/how-to-archive-a-site-you-dont-have-access-to?utm_source=rss&utm_medium=rss&utm_campaign=how-to-archive-a-site-you-dont-have-access-to\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4533:\"<p>There are several options when it comes to backing up a WordPress site. Depending on the type of access you have, retrieving the database or an XML backup is easy. But what if you don’t have access to the database or the backend? Consider the <a title=\"http://www.reddit.com/r/Wordpress/comments/2453h1/downloading_all_from_a_wordpress_site/\" href=\"http://www.reddit.com/r/Wordpress/comments/2453h1/downloading_all_from_a_wordpress_site/\">following scenario presented on the WordPress subreddit</a>: <em>A relative who used WordPress recently passed away and you have no way to access the backend of their site. Their site is filled with memorable posts you’d like to archive</em>.</p>\n<p>One option is to use <a title=\"http://www.gnu.org/software/wget/\" href=\"http://www.gnu.org/software/wget/\">WGET</a>. WGET is a free, open source software package used for retrieving files using HTTP, HTTPS and FTP, the most widely used Internet protocols. I used version 1.10.2 of <a title=\"http://xoomer.virgilio.it/hherold/\" href=\"http://xoomer.virgilio.it/hherold/\">this WGET package</a> put together by HHerold which worked successfully on my Windows 7 64-bit desktop. Once installed, you’ll need to activate the command prompt and navigate to the folder where WGET.exe is installed.</p>\n<div id=\"attachment_22006\" class=\"wp-caption aligncenter\"><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/WGETinAction.png\" rel=\"prettyphoto[21993]\"><img class=\"size-full wp-image-22006\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/WGETinAction.png?resize=677%2C366\" alt=\"WGET In Action\" /></a><p class=\"wp-caption-text\">WGET In Action</p></div>\n<p>In the example below, I used four different parameters. GNU.org has an <a title=\"http://www.gnu.org/software/wget/manual/html_node/\" href=\"http://www.gnu.org/software/wget/manual/html_node/\">excellent guide available</a> that explains what each parameter does. Alternatively, you can use the <strong>wget — help</strong> command to see a list of commands.</p>\n<ul>\n<li>HTML Extension – This will save the retrieved files as .HTML</li>\n<li>Convert Links – After the download is complete, this will convert the links in the document to make them suitable for local viewing. This affects not only the visible hyperlinks, but any part of the document that links to external content, such as embedded images, links to style sheets, hyperlinks to non-<small>HTML</small> content, etc.</li>\n<li>-m – This turns on the options suitable for mirroring.</li>\n<li>-w 20 – This command puts 20 seconds in between each file retrieved so it doesn’t hammer the server with traffic.</li>\n</ul>\n<p><em>wget –html-extension –convert-links -m -w 20 http://example.com</em></p>\n<p>Using this command, each post and page will be saved as an HTML file. The site will be mirrored and links will be converted so I can browse them locally. The last parameter places 20 second intervals between each file retrieved to help prevent overloading the web server.</p>\n<p><em>Keep in mind that this is saving the output of a post or page into an HTML file. This method should not be used as the primary means of backing up a website.</em></p>\n<div id=\"attachment_22007\" class=\"wp-caption aligncenter\"><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/PostsandFilesDownloaded.png\" rel=\"prettyphoto[21993]\"><img class=\"size-full wp-image-22007\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/PostsandFilesDownloaded.png?resize=845%2C576\" alt=\"Results Of The WGET Command\" /></a><p class=\"wp-caption-text\">Results Of The WGET Command</p></div>\n<h3>The Command Line Proves Superior To The GUI</h3>\n<p>A popular alternative to WGET is <a title=\"http://www.httrack.com/\" href=\"http://www.httrack.com/\">WinHTTrack</a>. Unfortunately, I couldn’t figure out how to get it to provide me with more than just the index.html of the site. I found WinHTTrack to be confusing and hard to use. I spent a few hours trying several different programs to archive the output of websites. Most were hard to use or didn’t provide an easy to use interface. While I normally don’t use the command line to accomplish a task, it was superior in this case.</p>\n<p>Going back to our scenario, it’s entirely possible to archive a site you don’t have access to thanks to WGET and similar tools.</p>\n<p><strong>What tools or software do you recommend for archiving the output of a website?</strong></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Apr 2014 22:23:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WPTavern: How to Share Beer Recipes in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21992\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"http://wptavern.com/how-to-share-beer-recipes-in-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=how-to-share-beer-recipes-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4292:\"<div id=\"attachment_22012\" class=\"wp-caption aligncenter\"><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/beer.jpg\" rel=\"prettyphoto[21992]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/beer.jpg?resize=1025%2C490\" alt=\"photo credit: adambarhan - cc\" class=\"size-full wp-image-22012\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/adambarhan/7213006248/\">adambarhan</a> – <a href=\"http://creativecommons.org/licenses/by/2.0/\">cc</a></p></div>\n<p>Whether lager or ale, malty or hoppy, ice cold or room temperature, from a bottle, can, pint or stein, there’s no bad way to enjoy a brewski (unless you’ve had one too many). From ancient Egypt and Mesopotamia to all corners of the globe today, there is no denying beer’s popularity, as can also be observed by the continued rise in the craft brew movement and the homebrewing community. The <a href=\"http://www.homebrewersassociation.org/\" target=\"_blank\">American Homebrewers Association</a> has registered over 1,700 homebrew clubs with individual memberships estimated in the millions.</p>\n<p>Part of the joy of homebrewing is the art of putting different recipes together and discovering new flavors, exploring new styles of beer and tinkering with ingredients. This recipe creation process used to require quite a few calculations and a rather expansive knowledge of ingredients, hops, yeasts and brewing techniques in order to brew a particular style. However, creating and saving beer recipes is much easier today, thanks to programs like <a href=\"http://beersmith.com/\" target=\"_blank\">BeerSmith</a> and websites like <a href=\"https://www.brewtoad.com/\" target=\"_blank\">Brewtoad</a> that combine extensive databases of ingredients with built-in calculators that can help novice brewers create and share their recipes.</p>\n<p>And now, it’s easy to share homebrew recipes on your WordPress site, thanks to the <a href=\"https://wordpress.org/plugins/beerxml-shortcode/\" target=\"_blank\">BeerXML Shortcode</a> plugin. <a href=\"https://twitter.com/derekspringer\" target=\"_blank\">Derek Springer</a>, the plugin’s creator, is currently a Code Wrangler at Automattic and an avid homebrewer. His plugin takes an XML beer recipe and displays it nicely on the page via a shortcode.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/beer-recipe.png\" rel=\"prettyphoto[21992]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/beer-recipe.png?resize=1025%2C1108\" alt=\"beer-recipe\" class=\"aligncenter size-full wp-image-22005\" /></a></p>\n<p>The BeerXML Shortcode plugin features the following:</p>\n<ul>\n<li>Link to a BeerXML document to display recipe details, style details, fermentables, hops, miscs, yeast, and notes</li>\n<li>Allows you to easily switch between U.S. and Metric measurements</li>\n<li>Control if and how long recipe is cached</li>\n<li>Allow readers to download the recipe directly</li>\n</ul>\n<p>BeerXML Shortcode makes it possible for you to create your own library of recipes on your site and open them up for visitor feedback in WordPress posts or pages. Since WordPress is search engine friendly, adding recipes to posts makes easier for others to discover and try. The plugin also lets you provide a recipe for download as an XML file, which can easily be imported into BeerSmith and/or other brewing programs where the next brewer can tweak and change it as necessary.</p>\n<p>The open source software community and homebrewers have a good deal in common. Sharing a beer recipe is like open sourcing happiness. The days of secret family recipes hidden away from the competition have fallen aside with the explosion of craft brew culture, which values sharing and openness. Recipe sharing gets more people brewing and promotes the appreciation of craft beer.</p>\n<p>As the saying goes:</p>\n<p><strong>“Give a man a beer and he’ll waste an hour. Teach a man to homebrew and he’ll waste a lifetime.”</strong></p>\n<p>The <a href=\"https://wordpress.org/plugins/beerxml-shortcode/\" target=\"_blank\">BeerXML Shortcode</a> plugin is available for free from the WordPress plugin directory. Add it to your site to start sharing your beer recipes with the world.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Apr 2014 19:55:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: Important Security Update for SyntaxHighlighter Evolved WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21971\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:208:\"http://wptavern.com/important-security-update-for-syntaxhighlighter-evolved-wordpress-plugin?utm_source=rss&utm_medium=rss&utm_campaign=important-security-update-for-syntaxhighlighter-evolved-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1900:\"<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/syntaxhighlighter-evolved.png\" rel=\"prettyphoto[21971]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/syntaxhighlighter-evolved.png?resize=772%2C250\" alt=\"syntaxhighlighter-evolved\" class=\"aligncenter size-full wp-image-21982\" /></a></p>\n<p>Alex Mills announced an important security update today for his <a href=\"http://wordpress.org/plugins/syntaxhighlighter/\" target=\"_blank\">SyntaxHighlighter Evolved</a> plugin. The 3.1.10 release includes a new version of the SyntaxHighlighter 3.x library to address an XSS security issue.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p>If you run my SyntaxHighlighter WordPress plugin on your site, please update to 3.1.10. Important security fix from upstream JS package.</p>\n<p>— Alex Mills (@Viper007Bond) <a href=\"https://twitter.com/Viper007Bond/statuses/460926205978345472\">April 28, 2014</a></p></blockquote>\n<p></p>\n<p>SyntaxHighlighter Evolved is used widely on self-hosted WordPress sites for sharing code and has been downloaded more than 350,000 times. Most notably, it’s used on WordPress.com to allow users to <a href=\"http://en.support.wordpress.com/code/posting-source-code/\" target=\"_blank\">post code snippets</a> and is the same plugin we use on WP Tavern for tutorials. Mills credits Ben Bidner for finding the bug and <a href=\"http://alexgorbatchev.com/SyntaxHighlighter/\" target=\"_blank\">Alex Gorbatchev</a> for working with Automattic to patch the issue.</p>\n<p>Version 3.1.10 also adds compatibility with sites where the plugins folder has been moved to another location other than the default directory, though the security fix is the bulk of this update. If you’re using SyntaxHighlighter Evolved on any of your WordPress sites, make sure to visit each and update the plugin to avoid a potential XSS security breach.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Apr 2014 01:27:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: How to Change BuddyPress Profile Field Visibility Settings\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21951\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:180:\"http://wptavern.com/how-to-change-buddypress-profile-field-visibility-settings?utm_source=rss&utm_medium=rss&utm_campaign=how-to-change-buddypress-profile-field-visibility-settings\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2567:\"<p>Profile field visibility settings were <a href=\"http://bpdevel.wordpress.com/2012/03/16/profile-field-visibility-in-bp-1-6/\" target=\"_blank\">added to BuddyPress in version 1.6</a> in order to address a popular request for profile privacy. The settings had remained the same up until the recent 2.0 release. Field visibility settings were previously tacked onto each field in the profile editing screens. BuddyPress project lead John James Jacoby <a href=\"https://buddypress.trac.wordpress.org/ticket/5352\" target=\"_blank\">proposed</a> that the plugin separate field data from field privacy by moving the visibility into its own settings page.</p>\n<p><a href=\"http://wptavern.com/buddypress-2-0-released-big-performance-improvements-and-new-administration-tools\" target=\"_blank\">BuddyPress 2.0</a> added a new Settings > Profile tab that allows users to configure profile field visibility from a single screen. This change declutters the profile editing pages and provides an easier way to edit field visibility all in one pass.</p>\n<p>If you were not aware that the settings were moved in BP 2.0, it may have seemed that they disappeared entirely. Logged-in members can now find them at <strong>Settings > Profile</strong>:</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/buddypress-profile-field-visibility.png\" rel=\"prettyphoto[21951]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/buddypress-profile-field-visibility.png?resize=1025%2C846\" alt=\"buddypress-profile-field-visibility\" class=\"aligncenter size-full wp-image-21955\" /></a></p>\n<p>As you can see in the example, some fields do not have visibility options. This is because administrators can opt to override them and set per-member visibility settings for each field at <strong>Users > Profile Fields > Edit Field</strong>.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/admin-visibility-settings.png\" rel=\"prettyphoto[21951]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/admin-visibility-settings.png?resize=985%2C666\" alt=\"admin-visibility-settings\" class=\"aligncenter size-full wp-image-21964\" /></a></p>\n<p>The default option is to let members change the field’s visibility, but you can also elect to enforce the default visibility for all members.</p>\n<p>If you don’t have a BuddyPress site handy for checking out the new profile field visibility settings page, you can see a live demo on <a href=\"http://buddypress.org/\" target=\"_blank\">BuddyPress.org</a> when logged into your profile.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Apr 2014 23:25:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"WPTavern: Genesis Skeleton for WordPress: Rapidly Create, Develop, and Deploy Across Multiple Environments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21826\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:250:\"http://wptavern.com/genesis-skeleton-for-wordpress-rapidly-create-develop-and-deploy-across-multiple-environments?utm_source=rss&utm_medium=rss&utm_campaign=genesis-skeleton-for-wordpress-rapidly-create-develop-and-deploy-across-multiple-environments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8515:\"<p>Last week we featured a collection of <a href=\"http://wptavern.com/13-vagrant-resources-for-wordpress-development\" target=\"_blank\">Vagrant resources for WordPress development</a>. Eric Clemmons, one of our readers, commented to let us know about <a href=\"https://github.com/genesis/wordpress\" target=\"_blank\">Genesis Skeleton for WordPress</a>, an awesome project that uses Vagrant for creating, developing and deploying WordPress across multiple environments.</p>\n<p>When Clemmons created Genesis, he wasn’t aware of how easily the name might be confused with the Genesis theme from StudioPress, so he’s updating the project to be called “Genesis Skeleton for WordPress.” The project utilizes <a href=\"http://nodejs.org/\" target=\"_blank\">NodeJS</a>, <a href=\"http://www.vagrantup.com/\" target=\"_blank\">Vagrant</a> and <a href=\"https://www.virtualbox.org/\" target=\"_blank\">VirtualBox</a>. For scaffolding and development, it relies on <a href=\"http://yeoman.io/\" target=\"_blank\">Yeoman</a>, <a href=\"http://bower.io/\" target=\"_blank\">Bower</a>, <a href=\"https://github.com/genesis/generator-wordpress/\" target=\"_blank\">Genesis WordPress Generator</a>, and <a href=\"https://github.com/smdahlen/vagrant-hostmanager\" target=\"_blank\">Vagrant Host Manager</a>. Deployment is handled by Capistrano and Ansible. This setup allows for the following:</p>\n<ul>\n<li>Generate a functional WordPress site + server</li>\n<li>First-class local development</li>\n<li>Independently stage features for review</li>\n<li>Use production data when developing</li>\n<li>High-performance, zero-configuration caching out of the box</li>\n<li>Easily monitor remote server errors</li>\n<li>Instant, secure SSH access</li>\n<li>Automated server provisioning</li>\n<li>Consistent, reliable environments</li>\n</ul>\n<p>Here’s a quick demo:</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/genesis.gif\" rel=\"prettyphoto[21826]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/genesis.gif?resize=782%2C614\" alt=\"genesis\" class=\"aligncenter size-full wp-image-21830\" /></a></p>\n<p>Clemmons and his colleagues use Genesis at <a href=\"http://www.cmn.com/\" target=\"_blank\">Consumer Media Network</a> to make it easier to develop, test, stage, and deploy a robust WordPress site. “The project has been re-invented over the past 2 years,” Clemmons said. “Once Yeoman and Ansible gained more traction, I was ready to re-tool it into what it is today.”</p>\n<h3>What makes the Genesis Skeleton for WordPress unique?</h3>\n<p>The Genesis project was specifically created to allow the developers at CMN to follow the best practices set for all of their other projects, including non-WordPress projects using Symfony or Node. Clemmons outlined those practices and how they are integrated into Genesis:</p>\n<ul>\n<li>Local development should be within a Vagrant VM to keep the client OS pristine.</li>\n<li>All environments (local/staging/production) should share the exact same machine setup (i.e. provisioning) to minimize environmental errors when deploying.</li>\n<li>Utilize the best-in-class tools suited for individual tasks: Vagrant for local development, Yeoman for scaffolding, WordPress for the CMS, Ansible for provisioning, Capistrano for deployment.</li>\n<li>Draw a firm line in the sand regarding what Genesis Skeleton won’t do. (e.g. installing themes, plugins)</li>\n<li>Encourage performance via Apache optimization and Varnish, vs. relying on the application layer (e.g. WordPress Plugins) to do the server’s job.</li>\n<li>Support for staging/previewing branches. (e.g. http://my-new-feature.staging.mysite.com)</li>\n</ul>\n<p>While the first incarnation of the Genesis skeleton used a wrapper script, the latest version requires the developer to have a better understanding of his tools. <strong>“I intentionally avoided ‘do-it-all’ wrapper scripts, because the developer becomes reliant on Genesis Skeleton, not the underlying tools powering their project,”</strong> Clemmons said. He’s started several “Genesis Skeletons” for various technologies they use for scaffolding projects at CMN. The <a href=\"https://github.com/genesis/angular\" target=\"_blank\">Angular</a> and <a href=\"https://github.com/genesis/wordpress\" target=\"_blank\">WordPress</a> skeletons have both been open source for the past year.</p>\n<h3>Genesis Skeleton Provides a Consistent Workflow and Better Collaboration</h3>\n<p>Because Clemmons and his team have dozens of WordPress sites, he wanted them to have a consistent workflow across all projects, no matter what the complexity:</p>\n<ol>\n<li>git clone …</li>\n<li>bower install</li>\n<li>vagrant up </li>\n<li>cap production genesis:down</li>\n<li>open http://local.reponame.com/</li>\n<li>cap production deploy</li>\n</ol>\n<p>This streamlined workflow allows his team to collaborate on projects more efficiently. <strong>“We’ve been able to have a half-dozen people openly collaborating, committing, and deploying the same WordPress site within a day,”</strong> Clemmons said. The Genesis Skeleton has revolutionized the way they work together:</p>\n<blockquote><p>Whereas, in the past, a single developer was in charge of everything and was responsible for FTP’ing (ugh!) the code to production, and subsequently committing and pushing to Github afterwards. (Hopefully they remembered that part!)</p>\n<p>Now, Github is our ‘single source of truth’ for what gets deployed, and our sites have vastly improved in terms of reliability, quality, and speed.</p></blockquote>\n<p>From the outside, the Skeleton may seem like a fancy excuse to use all the newest development tools available, but Clemmons reports that changing their workflow greatly increased the team’s productivity. “The best thing that Genesis Skeleton for WordPress has done for us is to allow all members of our technology team (from systems, to frontend, to backend) to actively collaborate and work on a site,” he said. <strong>“The productivity gains have been astounding!”</strong></p>\n<h3>Open Sourcing the Genesis Skeleton for WordPress</h3>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/genesis-skeleton.jpg\" rel=\"prettyphoto[21826]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/genesis-skeleton.jpg?resize=700%2C325\" alt=\"genesis-skeleton\" class=\"aligncenter size-full wp-image-21832\" /></a></p>\n<p>The Genesis skeleton is now a fairly well-supported and well-documented open source project on github. Clemmons said the project grew out of their own need across dozens of sites and a previous project he began two years ago. “Once I completed the latest iteration’s prototype, we battle-tested in production,” he said. “The entire team worked to solidify the project with regards to performance, workflow, and edge-cases specific to WordPress.”</p>\n<p>When asked why he decided to open source the skeleton, Clemmons said that he hopes the community will be able to benefit from the project. <strong>“I usually despise working with WordPress, as do many others, not because it’s a terrible framework, but because the development/deployment workflow is generally terrible and out-dated,”</strong> he said. “Because this is a problem that wasn’t solved at my place of business (and was marginally solved by moving hosting to a PaaS), I wanted to share the progress with the community at large.”</p>\n<p>Clemmons has always believed in open sourcing tools wherever possible. He also encourages the activity with his colleagues. When his team is active in building something for work, they try to open source the parts not specific to the business model. As a result, Clemmons has seen an impressive amount of involvement with the project. “Key individuals have been essential to improving performance and resolving bugs, so clearly open-sourcing it was the right move.”</p>\n<p>If you want to incorporate modern development tools into your WordPress projects, Genesis is a solid option for getting started. Whether you’re one person working alone or collaborating with a large team, Genesis makes it easy to create a consistent development and deployment workflow across all environments. Check out the <a href=\"https://github.com/genesis/wordpress\" target=\"_blank\">Genesis Skeleton for WordPress</a> on Github.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Apr 2014 16:49:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: WPWeekly Episode 147 – Interview With Japh Thompson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://wptavern.com?p=21889&preview_id=21889\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:162:\"http://wptavern.com/wpweekly-episode-147-interview-with-japh-thompson?utm_source=rss&utm_medium=rss&utm_campaign=wpweekly-episode-147-interview-with-japh-thompson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2403:\"<p>In this episode of WordPress Weekly, I sat down with <a href=\"http://japh.com.au/\" title=\"http://japh.com.au/\">Japh Thompson</a> to discuss his experience working at Envato for the past four years. Thompson worked in support before becoming the WordPress Evangelist for ThemeForest. In the interview, we learned what it was like to be a liaison between a huge theme marketplace and the WordPress Community.</p>\n<p>We learned how difficult it was to try to change the negative perception of ThemeForest while working alongside the community. Last but not least, we learned what he’s working on at <a href=\"https://x-team.com/\" title=\"https://x-team.com/\">X-Team</a>.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://wptavern.com/how-the-advanced-image-editing-properties-contributed-to-wordpress-theme-lock-in\" title=\"http://wptavern.com/how-the-advanced-image-editing-properties-contributed-to-wordpress-theme-lock-in\">How The Advanced Image Editing Properties Contributed To WordPress Theme Lock-in</a><br />\n<a href=\"http://wptavern.com/themelab-acquired-by-syed-balkhi\" title=\"http://wptavern.com/themelab-acquired-by-syed-balkhi\">ThemeLab Acquired By Syed Balkhi</a><br />\n<a href=\"http://wptavern.com/take-the-wordpress-contributor-experience-survey\" title=\"http://wptavern.com/take-the-wordpress-contributor-experience-survey\">Take the WordPress Contributor Experience Survey</a><br />\n<a href=\"http://wptavern.com/why-wordpress-cant-kill-commercial-plugin-businesses\" title=\"http://wptavern.com/why-wordpress-cant-kill-commercial-plugin-businesses\">Why WordPress Can’t Kill Commercial Plugin Businesses</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Friday, May 2nd 3 P.M. Eastern – Special Guest <a href=\"http://siobhanmckeown.com/\" title=\"http://siobhanmckeown.com/\">Siobhan McKeown</a></p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #147:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 26 Apr 2014 16:22:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WPTavern: How to Repair a Crashed WordPress Posts Table\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21797\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:154:\"http://wptavern.com/how-to-repair-a-crashed-wordpress-posts-table?utm_source=rss&utm_medium=rss&utm_campaign=how-to-repair-a-crashed-wordpress-posts-table\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4659:\"<div id=\"attachment_21873\" class=\"wp-caption aligncenter\"><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/emergency.jpg\" rel=\"prettyphoto[21797]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/emergency.jpg?resize=1024%2C482\" alt=\"photo credit: Code & Martini by Ivana Vasilj - cc license\" class=\"size-full wp-image-21873\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"https://flic.kr/p/dLUWMb\">Code & Martini</a> by <a href=\"https://www.flickr.com/photos/ivanavasilj/\">Ivana Vasilj</a> – cc license</p></div>\n<p>Every now and then the WordPress posts table will crash and screw up your website. Why does this happen? It’s not always clear how tables get corrupted, although it can usually be attributed to an <a href=\"https://dev.mysql.com/doc/refman/5.1/en/crashing.html\" target=\"_blank\">unexpected event</a>, such as the MySQL server or the server host getting killed in the middle of an update, causing interrupted writes to the database.</p>\n<h3>Symptoms of a Crashed Posts Table</h3>\n<p>If you navigate to the “All Posts” or “All Pages” screen in the WordPress admin and find nothing there, your first instinct is probably to freak out. <strong><em>What happened to all of my content?!</em></strong> Don’t worry; it’s still there. This is often a symptom of a crashed posts table in the database. It’s the MySQL equivalent to a throwing a tantrum, but it’s easily fixed, so you should stay calm.</p>\n<p>You may also see blank pages or get 404s on existing pages where there should be content. Those who have BuddyPress active may also see a message like this:</p>\n<p><strong>“The following active BuddyPress Components do not have associated WordPress Pages: User Groups, Members, Activate, Register. Repair”</strong></p>\n<p>When the posts table is crashed, BuddyPress can’t find those pages, so it gives you that warning, even though you set the pages before.</p>\n<h3>How to Fix a Crashed Table</h3>\n<p>Sometimes WordPress can repair this problem automatically, but other times you’ll just have to do it manually via phpMyAdmin. Before touching anything, make sure that you have a backup of your database.</p>\n<p>If you’re not comfortable with phpmyadmin, you should first try to use <a href=\"http://codex.wordpress.org/Editing_wp-config.php#Automatic_Database_Optimizing\" target=\"_blank\">WordPress’ recommended method of database repair</a>, available since 2.9. Add the following to your <em>wp-config.php</em> file:</p>\n<pre class=\"brush: php; light: true; title: ; notranslate\">define( \'WP_ALLOW_REPAIR\', true );</pre>\n<p>That should take effect and automatically repair your crashed table after you visit the script at: <strong>{$your_site}/wp-admin/maint/repair.php</strong></p>\n<p>If you’re comfortable with using phpmyadmin, you may opt for an alternative method of repair, which really does the same thing as the previous method:</p>\n<p>Log into your host’s control panel and launch phpMyAdmin. Select your database and then look for the <strong>wp_posts</strong> table. Chances are that it’s not going to look like the other tables and will probably say “In Use”:</p>\n<div id=\"attachment_21856\" class=\"wp-caption aligncenter\"><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/crashed-posts-table.jpg\" rel=\"prettyphoto[21797]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/crashed-posts-table.jpg?resize=974%2C179\" alt=\"Scary, right?!\" class=\"size-full wp-image-21856\" /></a><p class=\"wp-caption-text\">Scary, right?!</p></div>\n<p>This is the table that is bedeviling you and you’ll want to select it and then click on “<a href=\"https://dev.mysql.com/doc/refman/5.1/en/repair-table.html\" target=\"_blank\">Repair Table</a>” in the dropdown:</p>\n<div id=\"attachment_21861\" class=\"wp-caption aligncenter\"><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/repair-table.jpg\" rel=\"prettyphoto[21797]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/repair-table.jpg?resize=815%2C234\" alt=\"Repair Table\" class=\"size-full wp-image-21861\" /></a><p class=\"wp-caption-text\">Repair Table</p></div>\n<p>This should have you all fixed up. Visit your site to verify that your posts and pages are back to normal. <em>Note:</em> This also works for other corrupted tables, i.e. wp_options, etc. It’s a fairly easy solution to a problem that presents itself as a dire emergency on the frontend of your WordPress site. File this one away for the next time you suspect a corrupted table.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Apr 2014 22:42:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WPTavern: WordPress Code Reference is Now Live\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21839\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:136:\"http://wptavern.com/wordpress-code-reference-is-now-live?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-code-reference-is-now-live\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3186:\"<p>Siobhan McKeown <a href=\"http://make.wordpress.org/docs/2014/04/25/good-news-everyone-version-1-of-the-code/\" target=\"_blank\">announced</a> that the first version of the WordPress Code Reference is now live. It’s still in the very early stages of development but is now out in the wild so that people can help contribute. <a href=\"http://developer.wordpress.org/reference\" target=\"_blank\">Go try it out</a> to see how easy it is to search the WordPress code base.</p>\n<p>The reference was created as part of the <a href=\"http://make.wordpress.org/docs/tag/devhub/\" target=\"_blank\">devhub project</a> to make it easy for developers to find more information about WordPress’ functions, classes, methods, hooks, and filters. After a few quick searches, I found that the search function is actually quite forgiving and will return results that are similar to what you were looking for, even if you spell it wrong.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/wordpress-code-reference.jpg\" rel=\"prettyphoto[21839]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/wordpress-code-reference.jpg?resize=794%2C595\" alt=\"wordpress-code-reference\" class=\"aligncenter size-full wp-image-21841\" /></a></p>\n<h3>How can you help improve the reference?</h3>\n<p>McKeown said that current development for the parser will continue on Github and you can <a href=\"https://github.com/rmccue/WP-Parser/issues?labels=enhancement&state=open\" target=\"_blank\">open a ticket</a> there to offer feedback on issues and enhancements. Tickets for the code reference theme can be found on <a href=\"https://meta.trac.wordpress.org/query?status=!closed&component=developer.wordpress.org\" target=\"_blank\">meta trac</a>. Very soon you’ll be able to submit code examples to the reference, McKeown said:</p>\n<blockquote><p>Please feel free to add tickets to meta trac if there are any issues you encounter, and if there’s a feature or enhancement you’d like we can discuss that too. We do have the functionality ready for submitting examples, we just need a few parser things fixed before we can deploy it.</p></blockquote>\n<p>The documentation team has been working at a feverish pace to completely overhaul WordPress docs to make them more useful to the community. The contributor handbooks have a <a href=\"https://make.wordpress.org/docs/2014/04/24/redesigned-contributor-handbooks/\" target=\"_blank\">new design</a> that is now live on the <a href=\"http://make.wordpress.org/core/handbook/\" target=\"_blank\">core</a>, <a href=\"http://make.wordpress.org/mobile/handbook/\" target=\"_blank\">mobile</a>, <a href=\"http://make.wordpress.org/docs/handbook/\" target=\"_blank\">docs</a>, and <a href=\"http://make.wordpress.org/polyglots/handbook/\" target=\"_blank\">polyglot</a> handbooks. If you want to get in on the fun and help to make WordPress docs more awesome, join the <a href=\"https://make.wordpress.org/docs/\" target=\"_blank\">Docs team</a> at their weekly meeting <a href=\"http://www.timeanddate.com/worldclock/fixedtime.html?hour=23&min=00&sec=0&p1=0&msg=Docs+Team+Chat\" target=\"_blank\">Thursdays at 23:00 UTC</a> in IRC on the #wordpress-sfd channel.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Apr 2014 20:50:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Interface: A Free Responsive Business Theme for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21697\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:176:\"http://wptavern.com/interface-a-free-responsive-business-theme-for-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=interface-a-free-responsive-business-theme-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2890:\"<p><a href=\"http://wordpress.org/themes/interface\" target=\"_blank\">Interface</a> is a new business theme in the WordPress Themes Directory, created by <a href=\"http://themehorse.com/\" target=\"_blank\">Theme Horse</a>, the same folks behind the popular <a href=\"http://wordpress.org/themes/clean-retina\" target=\"_blank\">Clean Retina</a> and <a href=\"http://wordpress.org/themes/attitude\" target=\"_blank\">Attitude</a> themes that have more than 80,000 downloads combined. If you need to set up a simple business site and you’re into the flat-style <a href=\"http://wptavern.com/exploring-wordpress-theme-designers-love-affair-with-mint-green\" target=\"_blank\">mint green design trend</a>, then the new Interface theme might be just the ticket.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/interface.jpg\" rel=\"prettyphoto[21697]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/interface.jpg?resize=880%2C660\" alt=\"interface\" class=\"aligncenter size-full wp-image-21789\" /></a></p>\n<p>The theme is responsive, retina ready, and compatible with both BuddyPress and bbPress. The social features drop nicely into the theme without any conflicts.</p>\n<p>Interface includes several options in the customizer for setting the header image, navigation, background, etc. It also includes a host of theme-specific widgets that you can edit live to create promotional boxes, feature recent work, display services, and add items typically related to business needs.</p>\n<p>In addition to the customizer options, Interface includes its own options panel for further customization of the homepage slider, layouts, social links, blog category, optional search form in the header, favicon and more advanced settings.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/interface-options.jpg\" rel=\"prettyphoto[21697]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/interface-options.jpg?resize=875%2C183\" alt=\"interface-options\" class=\"aligncenter size-full wp-image-21804\" /></a></p>\n<p>Inside this theme you’ll find many different building blocks for customizing your business site, including:</p>\n<ul>\n<li>4 layouts for posts/pages</li>\n<li>5 unique page templates</li>\n<li>8 widget areas</li>\n<li>6 custom widgets</li>\n<li>Separate top and bottom info bar to highlight contact/email/location</li>\n</ul>\n<p>Check out the <a href=\"http://themehorse.com/preview/interface/\" target=\"_blank\">live demo</a> on the Theme Horse site where you can view all the different page and blog templates available for both business and more blogger-oriented sites. With all the customization options, <a href=\"http://wordpress.org/themes/interface\" target=\"_blank\">Interface</a> is bound to be another favorite from the folks at Theme Horse. Add it to your site from WordPress.org via the theme browser in your admin panel.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Apr 2014 18:09:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Matt: Scrollkit and Longreads at Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=43748\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://ma.tt/2014/04/scrollkit-and-longreads-at-automattic/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:680:\"<p>You might have seen the news last week that <a href=\"http://www.businessweek.com/articles/2014-04-09/automattic-steward-of-wordpress-snaps-up-longreads\">Longreads is joining Automattic’s editorial team</a>. Today I’m excited to announce that <a href=\"http://www.scrollkit.com/\">we’ve acquired Scroll Kit and they’re joining Automattic as well</a>, and will be focused on making customization more visual and intuitive. We’re barely on the second inning of what WordPress could be, and the impact it can have on the world, and I consider myself very lucky to be working with the best and brightest on transforming the way the world publishes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Apr 2014 00:32:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Automattic Snaps Up Scroll Kit to Add to the WordPress.com Product Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21755\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:206:\"http://wptavern.com/automattic-snaps-up-scroll-kit-to-add-to-the-wordpress-com-product-team?utm_source=rss&utm_medium=rss&utm_campaign=automattic-snaps-up-scroll-kit-to-add-to-the-wordpress-com-product-team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3265:\"<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/scroll-kit.png\" rel=\"prettyphoto[21755]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/scroll-kit.png?resize=640%2C338\" alt=\"scroll-kit\" class=\"aligncenter size-full wp-image-21768\" /></a></p>\n<p>Scroll Kit founders Cody Brown and Kate Ray <a href=\"http://www.scrollkit.com/\" target=\"_blank\">announced</a> today that they are joining the product team at WordPress.com. Automattic, having recently acquired <a href=\"http://wptavern.com/automattic-acquires-longreads-invests-in-digital-longform-publishing\" target=\"_blank\">Longreads</a> and <a href=\"http://wptavern.com/cloudup-makes-file-sharing-incredibly-easy\" target=\"_blank\">Cloudup</a>, adds <a href=\"http://www.scrollkit.com/\" target=\"_blank\">Scroll Kit</a> to its collection, ostensibly in order to subsume its better features into WordPress.com.</p>\n<p>Unlike Cloudup and Longreads, which have continued on with business as usual after acquisition, Scroll Kit will be shutting down its editor in three months as part of the deal. Users of the app are encouraged to export their scrolls in case a more native solution is available further down the road.</p>\n<p>Scroll Kit allowed users to create beautiful web pages without writing a line of code. Its powerful visual content editor was actually used to<a href=\"http://techcrunch.com/2013/05/21/snow-fail-the-new-york-times-and-its-misunderstanding-of-copyright/\" target=\"_blank\"> recreate the New York Time’s interactive Snowfall experiment in an hour</a>, a project which NYT says took hundreds of hours of hand-coding. Although its makers cannot yet comment on their super secret future plans, one cannot help but wonder if this radically simplified visual editor may soon make its way into WordPress.com.</p>\n<p>Scroll Kit already has a WordPress <a href=\"http://wordpress.org/plugins/scrollkit/\" target=\"_blank\">plugin</a> listed among WordPress.com VIP’s list of layout and organization <a href=\"http://vip.wordpress.com/plugins/\" target=\"_blank\">plugins</a>. This tool offered Scroll Kit users the ability to connect directly to self-hosted WordPress sites and create customized templates as well as change images, fonts, backgrounds, and add special effects. <strong>“We’ll take what we learned building Scroll Kit and apply it to a product that’s always been tightly integrated with ours,”</strong> Scroll Kit creators said, as they bid their current users goodbye.</p>\n<p>Will WordPress.com incorporate Scroll Kit’s editor into the theme editing experience for its customers? If so, it will be interesting to see if some of those features trickle down to the open source WordPress project. With the instant popularity of front-end visual editors like <a href=\"http://velocitypage.com/\" target=\"_blank\">VelocityPage</a> for self-hosted sites, a simplified theme editing experience is bound to resonate with WordPress.com’s user base. Scroll Kit’s makers said that their objective was <strong>“to create a process for making the web that was more like drawing on a piece of paper.”</strong> If they can bring that experience to WordPress.com, then Automattic has just bought itself a magic wand.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Apr 2014 23:37:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: View More Themes in the WordPress Theme Browser\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21736\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:158:\"http://wptavern.com/view-more-themes-in-the-wordpress-theme-browser?utm_source=rss&utm_medium=rss&utm_campaign=view-more-themes-in-the-wordpress-theme-browser\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3169:\"<p><a href=\"http://wptavern.com/wordpress-3-9-smith-released\" target=\"_blank\">WordPress 3.9</a> brought a huge improvement to the WordPress theme browsing experience. By default, the new browser shows large preview images of themes with indicators for the ones you already have installed. It also allows for better filtering and exploring of featured and popular items.</p>\n<div id=\"attachment_21121\" class=\"wp-caption aligncenter\"><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/WP39ThemeExperience.png\" rel=\"prettyphoto[21736]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/WP39ThemeExperience.png?resize=859%2C503\" alt=\"Theme Browser Experience Revamped In WordPress 3.9\" class=\"size-full wp-image-21121\" /></a><p class=\"wp-caption-text\">Theme Browser Experience Revamped In WordPress 3.9</p></div>\n<p>These updates to the theme browser make it far more likely that WordPress users will want to look for new themes without leaving the admin. The experience is much better than searching directly on WordPress.org.</p>\n<h3>See More Themes</h3>\n<p>Themes and their previews load quickly from WordPress.org, but the size of the thumbnails prevents you from seeing more of them on the screen at once. <a href=\"http://wordpress.org/plugins/see-more-themes/\" target=\"_blank\">See More Themes</a> is a new plugin, written by <a href=\"http://www.sdavismedia.com/\" target=\"_blank\">Sean Davis</a>, that allows you to browse more themes. When activated, the plugin modifies WordPress’ default admin CSS for the theme browser, reducing the size of the thumbnails to display more themes.</p>\n<p>The default theme browser looks like this:</p>\n<div id=\"attachment_21748\" class=\"wp-caption aligncenter\"><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/old-theme-browser.png\" rel=\"prettyphoto[21736]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/old-theme-browser.png?resize=1025%2C643\" alt=\"Default Theme Browser\" class=\"size-full wp-image-21748\" /></a><p class=\"wp-caption-text\">Default Theme Browser</p></div>\n<p>When you have See More Themes activated, you’ll be able to take in more themes at a glance:</p>\n<div id=\"attachment_21749\" class=\"wp-caption aligncenter\"><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/new-theme-browser.png\" rel=\"prettyphoto[21736]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/new-theme-browser.png?resize=1025%2C643\" alt=\"Theme Browser with See More Themes plugin activated\" class=\"size-full wp-image-21749\" /></a><p class=\"wp-caption-text\">Theme Browser with See More Themes plugin activated</p></div>\n<p>Sometimes it takes hours of browsing and previewing themes before you can settle on one that works for your site. See More Themes helps you browse through them faster while still presenting a decent sized thumbnail. It also maintains the theme browser’s responsiveness. If you like being able to see more themes at once, <a href=\"http://wordpress.org/plugins/see-more-themes/\" target=\"_blank\">download</a> the plugin from WordPress.org the next time you’re on the hunt for new themes in the admin.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Apr 2014 22:10:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: Why WordPress Can’t Kill Commercial Plugin Businesses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21735\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:168:\"http://wptavern.com/why-wordpress-cant-kill-commercial-plugin-businesses?utm_source=rss&utm_medium=rss&utm_campaign=why-wordpress-cant-kill-commercial-plugin-businesses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2820:\"<p><span class=\"post-byline\"><span class=\"author publisher-anchor-color\">Iain Poulson recently published a post that asks an important but easy question to answer. </span></span><a title=\"http://www.polevaultweb.com/2014/04/will-wordpress-plugin-business-killer/\" href=\"http://www.polevaultweb.com/2014/04/will-wordpress-plugin-business-killer/\">Will WordPress be a Plugin Business Killer?</a> The post is based on the idea that features from a commercial plugin added to WordPress could kill the business based on that plugin.</p>\n<p>The short answer to Poulson’s question is <strong>no</strong>. Here’s why.</p>\n<h3>WordPress Needs To Be Generic</h3>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2009/08/gravitylogo.png\" rel=\"prettyphoto[21735]\"><img class=\"alignright size-full wp-image-2322\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2009/08/gravitylogo.png?resize=108%2C109\" alt=\"gravityforms logo\" /></a>WordPress serves a huge audience. Commercial plugins usually address a specific niche and hammer away at it with features and functionality. It wouldn’t make sense to take GravityForms or Backup Buddy and merge them into WordPress because those plugins are not generic enough to cover a wide audience.</p>\n<p>Even if a GravityForms were to merge into core, it would likely be stripped of its niche focused functionality and probably be rewritten. It would be stripped to a point of basic functionality to cover the majority of WordPress users. GravityForms would likely continue to exist as a successful commercial plugin since it would contain features that didn’t make it to the core of WordPress.</p>\n<h3>Don’t Sell Features, Sell Products</h3>\n<p>Within the comments of the article, Carl Hancock of RocketGenius <a title=\"http://www.polevaultweb.com/2014/04/will-wordpress-plugin-business-killer/#comment-1352082767\" href=\"http://www.polevaultweb.com/2014/04/will-wordpress-plugin-business-killer/#comment-1352082767\">made a great point</a> when he said:</p>\n<blockquote><p>To me a viable commercial product is just that. A product. Not a feature. If something is more of a feature, then unless it’s part of a collection of offerings it could be dicey to rely on it as a commercial plugin. Features aren’t products.</p></blockquote>\n<p>I agree. Commercial plugins that are just glorified features are more at risk of being added to core than full-fledged products. Regardless of either camp, merging existing plugins into core is not a routine task. Outside of the features as plugins first model, it rarely happens.</p>\n<p>I don’t think commercial plugin author needs to worry. Is it a possibility worth considering? Definitely, but it’s one of those thoughts that should be in the back of your mind, not the forefront.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Apr 2014 21:46:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: Take the WordPress Contributor Experience Survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21701\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:160:\"http://wptavern.com/take-the-wordpress-contributor-experience-survey?utm_source=rss&utm_medium=rss&utm_campaign=take-the-wordpress-contributor-experience-survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4205:\"<div id=\"attachment_21721\" class=\"wp-caption aligncenter\"><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/we.jpg\" rel=\"prettyphoto[21701]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/we.jpg?resize=1024%2C474\" alt=\"photo credit: - cc license\" class=\"size-full wp-image-21721\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"https://flic.kr/p/mkLUc\">23rdian</a> – <a href=\"https://creativecommons.org/licenses/by-nc/2.0/\">cc</a> license</p></div>\n<p>If you’ve ever contributed to the WordPress project, whether through code, documentation, plugins and themes, speaking at a WordCamp, etc., your feedback is requested on the WordPress <a href=\"http://wordpressdotorg.polldaddy.com/s/wordpress-contributor-experience-poll\" target=\"_blank\">Contributor Experience Survey</a>. Jen Mylo <a href=\"http://make.wordpress.org/community/2014/04/24/contributor-experience-survey/\" target=\"_blank\">announced</a> the survey today, noting that none of the questions are mandatory.</p>\n<p>One of the questions in the survey asks: <strong>“What can the WordPress project do to make current contributors feel valued?”</strong> Since the vast majority of community contributions to the project are done on a volunteer basis, the project is seeking feedback for recognizing and valuing those efforts.</p>\n<p>Recent and continued <a href=\"http://wptavern.com/wordpress-org-profile-redesign-is-live\" target=\"_blank\">improvements to WordPress.org profiles</a> present a more accurate representation of a user’s involvement in the project and recognize users with badges that denote contributions to code, plugins, themes, WordCamps, as well as active participation in the groups listed on <a href=\"http://make.wordpress.org/\" target=\"_blank\">make.wordpress.org</a>. Do these badges resonate with contributors or are there more creative ways that the project can help them feel valued?</p>\n<h3>Helping New Contributors Feel Welcome and Encouraged</h3>\n<p>Another important question on the survey asks what the WordPress project can do better to make new contributors feel welcome and encouraged. Getting a better handle on this could potentially help the project expand its contributor base and move forward at a faster rate. This past year WordPress has launched several new initiatives targeted at improving new contributors’ experiences.</p>\n<p>Recent <a href=\"http://wptavern.com/wordpress-core-trac-gets-a-design-refresh-new-features-and-enhancements\" target=\"_blank\">updates to WordPress core trac</a>, as well as the <a href=\"http://make.wordpress.org/core/2014/01/27/proposed-trac-component-reorganization/\" target=\"_blank\">components reorganization</a>, have gone a long way toward helping contributors to specialize and stay informed on selected tickets. The addition of the <a href=\"https://core.trac.wordpress.org/query?keywords=~good-first-bug\" target=\"_blank\">“good-first-bug”</a> keyword helps to streamline areas where new contributors might get their feet wet.</p>\n<p>In addition to helping new code contributors, the <a href=\"http://make.wordpress.org/community/author/andreamiddleton/\" target=\"_blank\">WordCamp Organizer Hangouts</a> have been instrumental in getting new organizers oriented with the responsibilities of leading an event. A <a href=\"http://make.wordpress.org/docs/2014/02/25/docs-issue-tracker/\" target=\"_blank\">preliminary version</a> of a new <a href=\"http://wptavern.com/coming-soon-an-issues-tracker-for-wordpress-documentation\" target=\"_blank\">issues tracker for WordPress documentation</a> was recently launched and will be refined to help documentation contributors work together more efficiently. However, there are many more areas where contributors might jump in that have not yet been optimized for newcomers.</p>\n<p>The survey asks for feedback on user experiences contributing to the project, both positive and negative. If you have any thoughts on how WordPress can improve these experiences, take a few minutes to communicate your feedback via the <a href=\"http://wordpressdotorg.polldaddy.com/s/wordpress-contributor-experience-poll\" target=\"_blank\">Contributor Experience Survey</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Apr 2014 18:23:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: Read Where You Write In WordPress With The Orbital Feed Reader Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=20779\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:202:\"http://wptavern.com/read-where-you-write-in-wordpress-with-the-orbital-feed-reader-plugin?utm_source=rss&utm_medium=rss&utm_campaign=read-where-you-write-in-wordpress-with-the-orbital-feed-reader-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3366:\"<p>When <a title=\"http://googlereader.blogspot.com/2013/07/a-final-farewell.html\" href=\"http://googlereader.blogspot.com/2013/07/a-final-farewell.html\">Google Reader was shut down</a> on July 2nd, 2013, those who use RSS searched far and wide for suitable replacements. I’ve settled on using <a title=\"http://feedly.com/\" href=\"http://feedly.com/\">Feedly </a>for my needs. However, there is a plugin available that adds an RSS reader to WordPress so you can create blog posts as you read RSS feeds from within the same interface. It’s called <a title=\"http://wordpress.org/plugins/orbital-feed-reader/\" href=\"http://wordpress.org/plugins/orbital-feed-reader/\">Orbital Feed Reader</a> and is available on the WordPress plugin directory.</p>\n<div id=\"attachment_21690\" class=\"wp-caption aligncenter\"><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/FeedsWithinOrbitalFeedReader.png\" rel=\"prettyphoto[20779]\"><img class=\"size-full wp-image-21690\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/FeedsWithinOrbitalFeedReader.png?resize=1025%2C559\" alt=\"My Feeds Within Orbital Feed Reader\" /></a><p class=\"wp-caption-text\">My Feeds Within Orbital Feed Reader</p></div>\n<p>By default, Orbital is subscribed to a few different feeds to get you started. The design of the interface is a far cry from what I’m use to with Feedly. Because of the way content from feeds are displayed, it’s hard to determine when posts begin and end. The way the content is displayed makes it hard to decipher, especially if the content contains a lot of images.</p>\n<p>If you can get past those setbacks, the feed reader performs as advertised. At the end of each article is a Blog This button. Clicking the button opens up the Press This bookmarklet enabling you to quickly post content to your site. Any text that is highlighted within the article before the button is selected will automatically be shown in the content area of the <a title=\"http://codex.wordpress.org/Press_This\" href=\"http://codex.wordpress.org/Press_This\">Press This bookmarklet</a>. Being able to read feeds and quickly publish articles to a blog is a nice convenience.</p>\n<p>You can add feeds either by importing an OPML file or by using a site’s RSS feed URL.</p>\n<div id=\"attachment_21691\" class=\"wp-caption aligncenter\"><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/OrbitalHowToAddFeeds.png\" rel=\"prettyphoto[20779]\"><img class=\"size-full wp-image-21691\" src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/OrbitalHowToAddFeeds.png?resize=542%2C208\" alt=\"How To Add Feeds In Orbital\" /></a><p class=\"wp-caption-text\">How To Add Feeds In Orbital</p></div>\n<h3>I’m Sticking With Feedly</h3>\n<p>Although I don’t use my feed reader as much as I used to, I prefer Feedly over Orbital because of the synching options between the web and mobile versions of the service. Feedly also displays content in a way that makes it easier to read compared to Orbital. Last but not least, I have the Press This bookmarklet installed in FireFox so I can blog stories from anywhere on the web.</p>\n<p>With that said, the plugin’s purpose is to enable users to read RSS feeds and easily create blog content from within the same interface. It’s the plugin’s shining feature and it does so without any problems.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Apr 2014 17:42:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WPTavern: ThemeLab Acquired By Syed Balkhi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=19860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"http://wptavern.com/themelab-acquired-by-syed-balkhi?utm_source=rss&utm_medium=rss&utm_campaign=themelab-acquired-by-syed-balkhi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3938:\"<p><a title=\"https://www.themelab.com/\" href=\"https://www.themelab.com/\">ThemeLab</a>, a popular site dedicated to WordPress theme topics has been acquired by <a title=\"http://www.balkhis.com/\" href=\"http://www.balkhis.com/\">Syed Balkhi</a>. ThemeLab has been a valuable resource of information since 2007. Leland Fiegel, the site’s previous owner made a positive mark within the community <a title=\"http://www.themelab.com/stop-downloading-wordpress-themes-from-shady-sites/\" href=\"http://www.themelab.com/stop-downloading-wordpress-themes-from-shady-sites/\">when he published an in-depth post</a> explaining why users shouldn’t download and use themes from shady sites discovered in Google.</p>\n<div id=\"attachment_19876\" class=\"wp-caption aligncenter\"><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/03/ThemeLabShadySites.gif\" rel=\"prettyphoto[19860]\"><img class=\"size-large wp-image-19876\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/03/ThemeLabShadySites.gif?resize=500%2C265\" alt=\"Don\'t Download Themes From Shady Sites\" /></a><p class=\"wp-caption-text\">Don’t Download Themes From Shady Sites</p></div>\n<p>According to the <a title=\"https://www.themelab.com/about-us/\" href=\"https://www.themelab.com/about-us/\">about page</a>, the acquisition took place in 2013. During the time of acquisition, Balkhi and his team have revamped the site and turned it into a commercial theme shop. The site’s mission statement fits in with a trend we’ve noticed with commercial themes in general: “While most companies are focused on either design or functionality, our approach is to bring the best of both worlds with a special emphasis on usability.”</p>\n<blockquote><p>As a WordPress user watching from the sidelines, I’ve noticed that themes have become extremely complex over the last several years. The race to add more features, more options, more shortcodes, and more of everything has led developers to lose sight of what’s more important: <strong>usability</strong>.</p>\n<p>Beginners who are just starting out no longer find WordPress to be easy. A lot of this has to do with themes because that’s their first encounter. Having to go through 600 options just to get the theme to look like the demo is beyond silly.</p></blockquote>\n<p>All of the free themes released on ThemeLab have been retired and are no longer available for download. Tutorials published by Fiegel will be updated as necessary with new ones on the way.</p>\n<h3>What’s Next For Fiegel?</h3>\n<p>ThemeLab has been an excellent resource of information within the WordPress community over the years. It’s awesome to see Fiegel has found the right buyer with the right price. In a <a title=\"http://leland.me/six-years-of-theme-lab/\" href=\"http://leland.me/six-years-of-theme-lab/\">detailed post on his personal blog</a>, Fiegel explains what the past six years have been like running ThemeLab as well the lessons he learned.</p>\n<p>His next endeavor is called <a title=\"http://pluginferno.com/\" href=\"http://pluginferno.com/\">Pluginferno</a> and focuses on commercial plugins for WordPress, addons for existing popular plugins, plugin reviews, and commentary about the WordPress community in general.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/Testing.png\" rel=\"prettyphoto[19860]\"><img class=\"aligncenter size-full wp-image-21672\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/Testing.png?resize=1025%2C772\" alt=\"Testing\" /></a></p>\n<p>He’ll also be entering the commercial theme market through <a title=\"http://powertheme.com/\" href=\"http://powertheme.com/\">PowerTheme</a>. There’s not a lot of information about the site but it will sell 100% GPL licensed themes. Both sites give Fiegel a fresh start. The lessons learned from running ThemeLab should make it easier for his new endeavors to be financially successful.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Apr 2014 21:41:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Have You Turned On Akismet 3.0′s Silent Discard Feature?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21649\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:172:\"http://wptavern.com/have-you-turned-on-akismet-3-0s-silent-discard-feature?utm_source=rss&utm_medium=rss&utm_campaign=have-you-turned-on-akismet-3-0s-silent-discard-feature\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3926:\"<p><a href=\"http://wordpress.org/plugins/akismet/\" target=\"_blank\">Akismet</a> is one of those quiet utility plugins that works in the background of your WordPress site without a lot of fanfare. When it’s doing it’s job, your blog comments stay spam-free and you never think twice about it. Forgetting to activate Akismet on a new site will quickly remind you of just how much spam is targeted at WordPress sites.</p>\n<p><a href=\"http://blog.akismet.com/2014/04/15/akismet-3-0-0/\" target=\"_blank\">Akismet 3.0</a> is a major rewrite of the plugin that improves its efficiency in handling the worst spam that hits your site. When you visit your Akismet settings you’ll see how many days of your life Akismet has saved you as well as some new stats and graphs demonstrating the plugin’s effectiveness. Here’s an example from a small, personal blog:</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/akismet-settings.jpg\" rel=\"prettyphoto[21649]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/akismet-settings.jpg?resize=795%2C545\" alt=\"akismet-settings\" class=\"aligncenter size-full wp-image-21659\" /></a></p>\n<h3>Akismet 3.0′s Silent Discard Feature Improves Performance</h3>\n<p>In addition to an easier signup and configuration process, this version introduced a silent discard feature that identifies and outright blocks the worst spam comments.</p>\n<p>Throughout the course of improving Akismet, the team found that approximately 80% of spam is so bad that it could be flagged as “pervasive.” The silent discard feature causes pervasive spam to bypass the spam folder entirely so that you’ll never see it.</p>\n<p><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/akismet-discard-spam-feature.png\" rel=\"prettyphoto[21649]\"><img src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/akismet-discard-spam-feature.png?resize=697%2C116\" alt=\"akismet-discard-spam-feature\" class=\"aligncenter size-full wp-image-21657\" /></a></p>\n<p>The plugin previously had a relatively ineffective option that allowed site owners the ability to automatically discard spam on older posts. This didn’t do much to block the worst spam and users found it to be confusing.</p>\n<p>Akismet 3.0 remembers your selections for this previous feature and applies them to the new silent discard feature. In most cases this means that the silent discard will be automatically turned on when you update the plugin. For users who are new to Akismet, the default setting is to store the pervasive spam in the spam folder for 15 days. The silent discard feature will need to be turned on from the plugin’s configuration page.</p>\n<p>There are some very compelling reasons to turn this new feature on. When <a href=\"http://blog.akismet.com/2014/04/23/theres-a-ninja-in-your-akismet/\" target=\"_blank\">announcing</a> the silent discard option, the folks at Akismet said that <strong>“enabling the feature can result in significant reductions in your storage and resource usage requirements.”</strong> This is especially true on sites that are always publishing new content. Silently discarding the most pervasive spam, instead of storing all of it for 15 days, frees up the storage and resources required to display and manage those spam comments in the admin.</p>\n<p>Akismet has zapped more than 135 billion spam comments and track backs to date, and the service is getting smarter at defeating the worst spam. The most important spam-fighting feature of 3.0 is the ability to silently discard pervasive spam before it even has the chance to land on your doorstop and get logged in your database. Turning this option on is a no-brainer. If you haven’t yet updated your plugins or have been waiting to update to WordPress 3.9, Akismet 3.0′s silent discard feature is another reason to get moving on those updates.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Apr 2014 21:04:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Tweet Archive: A Free WordPress Theme to Match the New Twitter Profiles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21511\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:204:\"http://wptavern.com/tweet-archive-a-free-wordpress-theme-to-match-the-new-twitter-profiles?utm_source=rss&utm_medium=rss&utm_campaign=tweet-archive-a-free-wordpress-theme-to-match-the-new-twitter-profiles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3922:\"<p>Yesterday, Twitter <a href=\"https://blog.twitter.com/2014/your-new-web-profile-is-here\" target=\"_blank\">announced</a> that it was rolling out the new profile redesign to all users. If you haven’t updated your Twitter profile, you can click on the “Get it Now” button on the <a href=\"https://about.twitter.com/products/new-profiles\" target=\"_blank\">new profiles product page</a>.</p>\n<p>Last week we featured <a href=\"http://wptavern.com/ozh-tweet-archiver-2-0-backs-up-your-tweets-to-wordpress\" target=\"_blank\">Ozh’ Tweet Archiver</a> as an easy way to archive your tweets to WordPress. The 2.0 version of the plugin has been updated to work with Twitter’s OAuth API and 2.0.1 has support for post formats, thanks to a contribution from <a href=\"http://wptavern.com/ozh-tweet-archiver-2-0-backs-up-your-tweets-to-wordpress#comment-54394\" target=\"_blank\">Chip Bennett</a>. Ozh also updated the Tweet Archive WordPress theme that accompanies the plugin in order to more closely match Twitter’s new profile design.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/tweet-archiver-theme.jpg\" rel=\"prettyphoto[21511]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/tweet-archiver-theme.jpg?resize=1025%2C589\" alt=\"tweet-archiver-theme\" class=\"aligncenter size-full wp-image-21624\" /></a></p>\n<p>You can view a <a href=\"http://planetozh.com/tweets/\" target=\"_blank\">live demo</a> on Ozh’s tweet archive site. He created the theme for his own use so you’ll need to edit a few files to personalize it. It was designed to work in combination with the plugin, so the top bar displaying total tweets, following, and followers only works with the plugin installed. The theme utilizes Font Awesome icons within the tweet archive and social accounts display. It also has support for a sidebar which you can use to allow easy browsing of archived tweets, stats, hashtags, or anything you wish.</p>\n<p>All of the user info in the left column can be customized in the <em>header.php</em> file as well as the avatar. The header image can be changed in <em>style.css</em>. It would be cool if the theme was updated to use WordPress’ custom header feature, but it wasn’t really created for distribution. Ozh has the project open to contribution, however, if anyone is interested in refining the theme.</p>\n<h3>Use Your WordPress-Powered Twitter Archive to Boost Traffic</h3>\n<p>Tweet Archive includes a search bar within the header, since WordPress’ search feature is much easier to use when looking for specific content within your tweets. Ryan Hellyer, who has his tweets backed up to a subdomain, <a href=\"http://wptavern.com/ozh-tweet-archiver-2-0-backs-up-your-tweets-to-wordpress#comment-54142\" target=\"_blank\">commented</a> on our previous post, highlighting another merit to hosting your own archive:</p>\n<blockquote><p>Another unexpected benefit, is that I actually get traffic from it. Google seems to preferentially send traffic my way instead of to Twitter itself sometimes.</p></blockquote>\n<p>If you’re getting extra traffic from hosting your own Twitter archive, you may want to make use of Twitter’s new pinned tweet feature. This should be easy to accomplish in your archive with WordPress’ built-in sticky posts and a little bit of CSS to make it a larger entry. That way, when visitors land on your archive, they will see your curated favorites at the top of the list.</p>\n<p>If you’re using the <a href=\"http://wordpress.org/plugins/ozh-tweet-archiver/\" target=\"_blank\">Ozh Tweet Archiver plugin</a> to automatically archive your tweets to WordPress and you want a theme that will approximate the new Twitter design, grab the <a href=\"https://github.com/ozh/ozh-tweet-archive-theme\" target=\"_blank\">Tweet Archive WordPress theme</a> on Github and customize it to match your Twitter profile.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Apr 2014 18:20:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Akismet: There’s a Ninja in Your Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1351\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://blog.akismet.com/2014/04/23/theres-a-ninja-in-your-akismet/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2910:\"<p>One of our favorite additions to <a href=\"http://blog.akismet.com/2014/04/15/akismet-3-0-0/\">Akismet 3.0</a> is the new discard setting. Previously, our plugin featured an option that allowed site owners the ability to automatically discard spam on older posts. But, as some may certainly agree, it was rather confusing and had little effect on the world’s smarter spammers.</p>\n<p>After giving thought to how we could improve that particular setting and the overall user experience, we found that approximately 80% of spam could be flagged as “pervasive”, meaning that it is the absolute worst of the worst (of the worst!). In fact, that 80% is so bad that there is simply no benefit in paying any attention to it at all. Not even for kicks and giggles. Trust us.</p>\n<p>We came up with something that would allow you to automatically and silently discard all of that pervasive spam attacking your site so that it never even appears in your “Spam” folder. The new setting identifies the <strong>worst and most pervasive</strong> spam (which can certainly change over time) on our side during the comment check and will immediately discard it if you’ve configured the plugin to do so. </p>\n<p>If you’re new to Akismet, these spam comments will be stored by default; you must activate the new feature from the plugin’s configuration page (if you upgraded to 3.0, Akismet will use the previous value of your 30-day discard setting) :</p>\n<p><a href=\"http://akismet.files.wordpress.com/2014/04/akismet-discard-spam-feature.png\"><img src=\"http://akismet.files.wordpress.com/2014/04/akismet-discard-spam-feature.png?w=640&h=106\" alt=\"Akismet Discard Spam Feature\" width=\"640\" height=\"106\" class=\"alignnone size-large wp-image-1376\" /></a></p>\n<p>It’s all very ninja-esque, we think. What’s more, enabling the feature can result in significant reductions in your storage and resource usage requirements.</p>\n<p>This is a great step forward in our mission to make the web a cleaner place. We tested the feature on <a href=\"http://wordpress.com/\">WordPress.com</a> and received excellent results and feedback prior to rolling it into the plugin. So, we think (and hope) you’ll enjoy it. We are also working on an enhancement to the feature, which will highlight the pervasive spam comments in the “Spam” folder for users who choose to store them.</p>\n<p>If you have any feedback on the new feature, we would love to <a href=\"http://akismet.com/contact/\">hear from you</a>.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1351/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1351/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blog.akismet.com&blog=116920&post=1351&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Apr 2014 13:09:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Anthony Bubel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: New Plugin Adds Less CSS Preprocessor to WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21533\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:178:\"http://wptavern.com/new-plugin-adds-less-css-preprocessor-to-wordpress-themes?utm_source=rss&utm_medium=rss&utm_campaign=new-plugin-adds-less-css-preprocessor-to-wordpress-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3374:\"<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/less-theme-support.jpg\" rel=\"prettyphoto[21533]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/less-theme-support.jpg?resize=772%2C250\" alt=\"less-theme-support\" class=\"aligncenter size-full wp-image-21583\" /></a></p>\n<p>Many WordPress developers opt to use the <a href=\"http://lesscss.org/\" target=\"_blank\">Less</a> CSS preprocessor to speed up theme development. Its availability of variables, mixins, and functions allows you to do more with CSS and to do it more efficiently. It also makes it easy to compile and minify files for production use. However, the initial setup for adding Less to each theme is a somewhat time-consuming process.</p>\n<p>Justin Kopepasah wrote a tutorial in the past for <a href=\"http://kopepasah.com/tutorial/using-less-in-a-live-wordpress-theme/\" target=\"_blank\">using LESS in a live WordPress theme</a>, followed by one that <a href=\"http://kopepasah.com/tutorial/easily-add-less-css-pre-processor-to-any-wordpress-theme/\" target=\"_blank\">automated the process</a> by setting up the functionality as a Git submodule. Over time, he found that adding Less to each theme was becoming quite a chore, so he created a plugin to make the process easier for anyone.</p>\n<p>Kopepasah’s <a href=\"https://wordpress.org/plugins/less-theme-support/\" target=\"_blank\">Less Theme Support</a> plugin radically simplifies the process of adding Less to your WordPress theme. It requires just two simple steps following activation:</p>\n<ol>\n<li>Add <em>style.less</em> to your theme’s root directory</li>\n<li>Add theme support to the after_setup_theme hook:\n<pre class=\"brush: php; light: true; title: ; notranslate\">add_theme_support( \'less\', array( \'enable\' => true ) );</pre>\n</li>\n</ol>\n<p>Less Theme Support comes with four different options which change how it functions on development vs. production sites. All are boolean values defaulting to false:</p>\n<ul>\n<li><strong>enable</strong> – Enables Less and enqueues <em>less.min.js</em> on the front end.</li>\n<li><strong>develop</strong> – Enables development environment for Less and enqueues <em>less-develop.js</em>.</li>\n<li><strong>watch</strong> – Enables watch mode for Less and enqueues <em>less-watch.js</em>.</li>\n<li><strong>minify</strong> – Enables usage of a minified stylesheet (<em>style.min.css</em>) on the front end for all other visitors (best generated using lessc -x style.less > style.min.css).</li>\n</ul>\n<p>These options give you quite a bit of flexibility. For example, during development you might configure your theme support with the enable, develop, and watch options:</p>\n<pre class=\"brush: php; title: ; notranslate\">add_theme_support( \'less\', array(\n \'enable\' => true,\n \'develop\' => true,\n \'watch\' => true\n) );</pre>\n<p>Less theme support in production would us the minify option:</p>\n<pre class=\"brush: php; title: ; notranslate\">add_theme_support( \'less\', array(\n \'minify\' => true\n) );</pre>\n<p>Using the <a href=\"https://wordpress.org/plugins/less-theme-support/\" target=\"_blank\">Less Theme Support</a> plugin provides a much cleaner and easier way to add Less to your theme. Download it from WordPress.org or via the project’s page on <a href=\"https://github.com/kopepasah/less-theme-support\" target=\"_blank\">Github</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Apr 2014 21:49:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: Display Before and After Images In WordPress With The TwentyTwenty Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=20955\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:210:\"http://wptavern.com/display-before-and-after-images-in-wordpress-with-the-twentytwenty-plugin?utm_source=rss&utm_medium=rss&utm_campaign=display-before-and-after-images-in-wordpress-with-the-twentytwenty-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4181:\"<p>Have you ever wanted to combine two images to show a before and after? You can’t do that with WordPress out of the box but it’s possible if you use the <a title=\"http://wordpress.org/plugins/twentytwenty/\" href=\"http://wordpress.org/plugins/twentytwenty/\">TwentyTwenty plugin</a> by <a title=\"http://aspiringwebdev.com/\" href=\"http://aspiringwebdev.com/\">Corey Martin</a>. The plugin takes advantage of the <a title=\"http://www.w3schools.com/cssref/pr_pos_clip.asp\" href=\"http://www.w3schools.com/cssref/pr_pos_clip.asp\">clip property</a> within CSS by stacking two identical sized images on top of each other. The clip property allows the image to show through the container. The slider is responsive and uses custom movement events within the <a title=\"https://github.com/stephband/jquery.event.move\" href=\"https://github.com/stephband/jquery.event.move\">jQuery Event Move library</a> to support <strong>1:1</strong> slider movement on mobile devices.</p>\n<p>The plugin is very simple to use. Upload two identical sized images to the media library. When inserting images into a post, make sure the attachment display settings for image size are the same. Add the <strong>[TwentyTwenty]</strong> shortcode above the before image. Add <strong>[/TwentyTwenty]</strong> after the second image. Here’s an example of the shortcode added to a post.</p>\n<div id=\"attachment_21585\" class=\"wp-caption aligncenter\"><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/TwentyTwentyShortcode.png\" rel=\"prettyphoto[20955]\"><img class=\"size-full wp-image-21585\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/TwentyTwentyShortcode.png?resize=754%2C703\" alt=\"TwentyTwenty Shortcode In Action\" /></a><p class=\"wp-caption-text\">TwentyTwenty Shortcode In Action</p></div>\n<p>The shortcode generates a slider that can be moved back and forth. You’ll see which images are before and after when you hover over the slider. To see either image, users must click and drag the circle left or right.</p>\n<div id=\"attachment_21588\" class=\"wp-caption aligncenter\"><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/TwentyTwentyBefore.png\" rel=\"prettyphoto[20955]\"><img class=\"size-full wp-image-21588\" src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/TwentyTwentyBefore.png?resize=650%2C200\" alt=\"TwentyTwenty Before Image\" /></a><p class=\"wp-caption-text\">TwentyTwenty Before Image</p></div>\n<div id=\"attachment_21587\" class=\"wp-caption aligncenter\"><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/TwentyTwentyAfter.png\" rel=\"prettyphoto[20955]\"><img class=\"size-full wp-image-21587\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/TwentyTwentyAfter.png?resize=650%2C200\" alt=\"TwentyTwenty After Image\" /></a><p class=\"wp-caption-text\">TwentyTwenty After Image</p></div>\n<p>The plugin was written using <a title=\"http://sass-lang.com/\" href=\"http://sass-lang.com/\">Sass</a> and Zurb.com has a <a title=\"http://zurb.com/playground/twentytwenty\" href=\"http://zurb.com/playground/twentytwenty\">listing of each Sass variable</a> used and what its default value is. The variables enable you to control everything from the handle color to the handle radius.</p>\n<p>Here are a couple of ideas where TwentyTwenty would be ideal to use.</p>\n<ul>\n<li>Compare counterfeit merchandise to real merchandise</li>\n<li>Website redesigns</li>\n<li>Home improvement renovations</li>\n</ul>\n<p>During my test with WordPress 3.9, I didn’t experience any problems. According to Martin, <a title=\"http://wordpress.org/support/plugin/twentytwenty\" href=\"http://wordpress.org/support/plugin/twentytwenty\">TwentyTwenty</a> is compatible with the latest versions of Chrome, Safari, FireFox, iOS, IE 9, and above. If you want to see the plugin in action, you can either watch this screencast by Martin or visit the <a title=\"http://zurb.com/playground/twentytwenty\" href=\"http://zurb.com/playground/twentytwenty\">plugin’s page on Zurb.com</a>.</p>\n<p><span class=\"embed-youtube\"></span></p>\n<p><strong>Outside of showing before and after images, what other creative ways could this plugin be used?</strong></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Apr 2014 21:20:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WPTavern: WordPress 3.9 Adds 30 New Dashicons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21545\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"http://wptavern.com/wordpress-3-9-adds-30-new-dashicons?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-3-9-adds-30-new-dashicons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1541:\"<p><a title=\"http://melchoyce.github.io/dashicons/\" href=\"http://melchoyce.github.io/dashicons/\">Dashicons</a> are what’s known as an icon font and were added to the core of WordPress with the release of 3.8. The icons are vector based so they can be as large or small as you want without losing quality. Plugin authors can use CSS, HTML, or a Glyph for use within Photoshop to display an icon. While 3.8 had 167 icons, WordPress 3.9 shipped with <a title=\"http://make.wordpress.org/core/2014/04/16/dashicons-in-wordpress-3-9/\" href=\"http://make.wordpress.org/core/2014/04/16/dashicons-in-wordpress-3-9/\">30 new Dashicons</a> bringing the total to 197.</p>\n<div id=\"attachment_21547\" class=\"wp-caption aligncenter\"><a href=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/WP39Dashicons.png\" rel=\"prettyphoto[21545]\"><img class=\"size-full wp-image-21547\" src=\"http://i0.wp.com/wptavern.com/wp-content/uploads/2014/04/WP39Dashicons.png?resize=652%2C313\" alt=\"New Dashicons In WordPress 3.9\" /></a><p class=\"wp-caption-text\">New Dashicons In WordPress 3.9</p></div>\n<p>The icons cover Media, TinyMCE, WordPress.org, Sorting, Widgets, Alerts, and Miscellaneous. Some plugin authors have already opted out of using a bitmap image and are using a Dashicon to represent their plugin within the WordPress admin menu. If none of the Dashicons match your use case, try <a title=\"http://genericons.com\" href=\"http://genericons.com\">Genericons</a> instead. Genereicons is also an icon font but has icons that are not focused on WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Apr 2014 19:37:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: Automattic Introduces Postbot App for Scheduling Photo Posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=21535\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:184:\"http://wptavern.com/automattic-introduces-postbot-app-for-scheduling-photo-posts?utm_source=rss&utm_medium=rss&utm_campaign=automattic-introduces-postbot-app-for-scheduling-photo-posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4368:\"<p>Today Automattic introduced <a href=\"https://postbot.co/\" target=\"_blank\">Postbot</a>, a new stand-alone application for scheduling image posts. The new app allows users to upload multiple images and schedule them out over several days. Postbot creates a post for each image and automatically posts them to the selected blog, saving users the trouble of manually scheduling each one.</p>\n<p><a href=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/postbot.gif\" rel=\"prettyphoto[21535]\"><img src=\"http://i1.wp.com/wptavern.com/wp-content/uploads/2014/04/postbot.gif?resize=752%2C376\" alt=\"postbot\" class=\"aligncenter size-full wp-image-21539\" /></a></p>\n<p>When using <a href=\"https://postbot.co/\">Postbot</a>, you’ll need to connect via WordPress.com. The app is automatically connected to your main WordPress.com blog but once logged in you’ll have the option to connect other sites. Self-hosted WordPress sites can use the app via <a href=\"http://jetpack.me/\" target=\"_blank\">Jetpack</a> with the <a href=\"http://jetpack.me/support/json-api/\" target=\"_blank\">JSON API module</a> enabled.</p>\n<p>Right now, you can only use the app from a desktop or mobile browser and John Godley, representing Automattic, says that a mobile app is not currently in the works. He elaborated on why they chose to create it as a standalone web app:</p>\n<blockquote><p>Postbot lets us provide a very targeted set of features to anyone with a WordPress.com or WordPress.org/Jetpack blog (or both), from one central place. It’s already mobile-ready so a special mobile app isn’t currently planned.</p></blockquote>\n<p>The experience of visiting <a href=\"https://postbot.co/\" target=\"_blank\">Postbot.co</a> from a mobile browser is not unlike using a mobile app. Those who plan to use it frequently via mobile can easily set a bookmark for quick launch while on the go.</p>\n<h3>Postbot Puts Photo Publishing on Autopilot</h3>\n<p>Postbot allows you to upload up to 50 photos at once to be published individually on different dates. While the images are uploading you can edit the titles, tags and content for each. The option to set a category is planned for a future version.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/uploading-postbot.png\" rel=\"prettyphoto[21535]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/uploading-postbot.png?resize=688%2C311\" alt=\"uploading-postbot\" class=\"aligncenter size-full wp-image-21550\" /></a></p>\n<p>Scheduling allows you to set the number of days between posts published with the option to ignore weekends.</p>\n<p><a href=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/schedule_postbot.png\" rel=\"prettyphoto[21535]\"><img src=\"http://i2.wp.com/wptavern.com/wp-content/uploads/2014/04/schedule_postbot.png?resize=635%2C42\" alt=\"schedule_postbot\" class=\"aligncenter size-full wp-image-21551\" /></a></p>\n<p>The app doesn’t yet allow you to set the featured image, but it’s on Automattic’s list of <a href=\"https://github.com/Automattic/Postbot/issues/6\" target=\"_blank\">feature requests</a> for future enhancements.</p>\n<p>Postbot is an excellent example of the kinds of apps that can be created using the <a href=\"http://developer.wordpress.com/docs/api/\" target=\"_blank\">WordPress.com API</a>. If you want to take a peek under the hood, the app’s code was released under the GPL and can be found on <a href=\"https://github.com/Automattic/Postbot\" target=\"_blank\">Github</a>. This means that anyone can host their own Postbot web app or create interesting variations that interact with WordPress.com services.</p>\n<p>Postbot is potentially very useful for photobloggers who want to break up their posts into individual images. It could also be handy for automating sites that are dedicated to publishing photos every day, i.e. “The Daily Kitten” or “Your Daily Dose of Fun.” It allows these kinds of sites to go on autopilot for publishing fresh content on a regular basis. Publishing new posts multiple times per day is an option <a href=\"http://en.blog.wordpress.com/2014/04/22/postbot-scheduled-photos/#comment-202397\" target=\"_blank\">currently under consideration</a> and may be a possibility in the future. We’ll be following the app’s progress as it adds new features based on user feedback.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Apr 2014 19:17:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 05 May 2014 16:17:51 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"199493\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 05 May 2014 16:00:16 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20131113023809\";}','no'),(24714,'_site_transient_timeout_browser_cdd9bb9381c4c4ef67c3954a553de46b','1399889781','yes'),(24715,'_site_transient_browser_cdd9bb9381c4c4ef67c3954a553de46b','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"34.0.1847.131\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(308,'mods_Twenty Ten','a:2:{s:12:\"header_image\";s:91:\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/cropped-slide_011_en.jpg\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:4;}}','yes'),(447,'logged_in_key','%WRt>M??*$ Fu-IWwgABr%9Z@a$O`[5IRq9%Qy+^g03@n;DeO0SHHh5W01D#+8WI','yes'),(448,'nonce_key','z2k${$mmcRzhfl% c~;b={9F8gKz^[gcZqSL0GB1AlJ.^a r*;+sr<5-^j}o &Li','yes'),(372,'arras_widget_tabbed_sidebar','a:1:{s:5:\"order\";a:4:{i:0;s:8:\"featured\";i:1;s:6:\"latest\";i:2;s:8:\"comments\";i:3;s:4:\"tags\";}}','yes'),(440,'default_post_format','0','yes'),(348,'allmed_blog_style','false','yes'),(352,'arras_options','s:1264:\"O:7:\"Options\":37:{s:7:\"version\";s:5:\"1.3.5\";s:6:\"donate\";b:0;s:8:\"feed_url\";s:45:\"http://0332c8e.netsolhost.com/WordPress/feed/\";s:17:\"comments_feed_url\";s:54:\"http://0332c8e.netsolhost.com/WordPress/comments/feed/\";s:12:\"footer_title\";s:10:\"Copyright \";s:14:\"footer_message\";s:62:\"Copyright ©℗ 2013 Earth Hertz Records. All Rights Reserved.\";s:13:\"featured_cat1\";i:6;s:13:\"featured_cat2\";i:0;s:8:\"news_cat\";i:1;s:11:\"topnav_home\";s:4:\"Home\";s:14:\"topnav_display\";s:5:\"pages\";s:14:\"topnav_linkcat\";i:0;s:15:\"featured1_count\";i:4;s:15:\"featured2_count\";i:3;s:11:\"index_count\";i:10;s:22:\"featured2_news_display\";s:7:\"default\";s:18:\"index_news_display\";s:4:\"line\";s:17:\"index_news_thumbs\";N;s:20:\"archive_news_display\";s:4:\"line\";s:19:\"archive_news_thumbs\";N;s:14:\"display_author\";b:1;s:13:\"single_thumbs\";b:1;s:15:\"single_meta_pos\";s:3:\"top\";s:20:\"single_custom_fields\";s:31:\"Score:score,Pros:pros,Cons:cons\";s:11:\"post_author\";b:1;s:9:\"post_date\";b:1;s:9:\"post_cats\";b:1;s:9:\"post_tags\";b:1;s:14:\"postbar_header\";b:1;s:14:\"postbar_footer\";b:1;s:6:\"layout\";s:10:\"2c-r-fixed\";s:5:\"style\";s:7:\"default\";s:10:\"background\";s:4:\"none\";s:15:\"background_type\";s:6:\"custom\";s:17:\"background_tiling\";s:9:\"no-repeat\";s:12:\"featured_cat\";i:0;s:16:\"background_color\";s:0:\"\";}\";','yes'),(443,'uninstall_plugins','a:5:{i:0;b:0;s:71:\"byob-thesis-simple-header-widgets/byob-thesis-simple-header-widgets.php\";s:30:\"byobtshw_delete_plugin_options\";s:27:\"wp-super-cache/wp-cache.php\";s:23:\"wpsupercache_deactivate\";s:21:\"yop-poll/yop_poll.php\";s:18:\"yop_poll_uninstall\";s:21:\"tinypass/tinypass.php\";s:18:\"tinypass_uninstall\";}','no'),(382,'recently_activated','a:2:{s:66:\"reorder-post-within-categories/reorder-posts-within-categories.php\";i:1396016121;s:35:\"blog-posts-order/blogpostsorder.php\";i:1396016092;}','yes'),(2373,'wp-maintenance-mode','a:1:{s:6:\"active\";i:1;}','yes'),(437,'header_slideshow_xmlPath','http://0332c8e.netsolhost.com/WordPress/wp-content/plugins/header-slideshow/resources/header-image-links.xml','yes'),(444,'db_upgraded','','yes'),(445,'auth_key','h[)uo975r8)|tX?>F^lr{g4QJIYxaB9)iCt9 .%/+bf^jm;sofKh~Cg@Y:j^uJF4','yes'),(454,'theme_mods_arras-theme','a:2:{s:18:\"nav_menu_locations\";s:0:\"\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1379594919;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:12:{i:0;s:7:\"pages-2\";i:1;s:10:\"calendar-2\";i:2;s:7:\"links-2\";i:3;s:6:\"text-2\";i:4;s:5:\"rss-2\";i:5;s:11:\"tag_cloud-2\";i:6;s:10:\"nav_menu-2\";i:7;s:14:\"recent-posts-2\";i:8;s:17:\"recent-comments-2\";i:9;s:10:\"archives-2\";i:10;s:12:\"categories-2\";i:11;s:6:\"meta-2\";}s:9:\"sidebar-1\";a:1:{i:0;s:10:\"nav_menu-3\";}s:9:\"sidebar-2\";a:1:{i:0;s:14:\"tabbed-sidebar\";}s:9:\"sidebar-3\";a:1:{i:0;s:6:\"meta-3\";}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}}}}','yes'),(14386,'ftp_credentials','a:3:{s:8:\"hostname\";s:9:\"localhost\";s:8:\"username\";s:12:\"ftpuexqn5835\";s:15:\"connection_type\";s:3:\"ftp\";}','yes'),(24005,'_site_transient_timeout_browser_99fc186a9708b660d33242005587b5d8','1399004212','yes'),(24219,'_site_transient_timeout_browser_c2d3898be61e8fa2847a96ab75a26980','1399172278','yes'),(24220,'_site_transient_browser_c2d3898be61e8fa2847a96ab75a26980','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"33.0.1750.117\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(23965,'_site_transient_timeout_browser_cf086dbb43a42a5120a3abbf2147d583','1398972506','yes'),(23968,'_site_transient_timeout_browser_c3c1dc2cbf83e8de12cd228604812604','1398974910','yes'),(24740,'_transient_timeout_feed_mod_d972058def72f330738e3f23f7e0b363','1399349870','no'),(24741,'_transient_feed_mod_d972058def72f330738e3f23f7e0b363','1399306670','no'),(24742,'_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f','1399349870','no'),(23966,'_site_transient_browser_cf086dbb43a42a5120a3abbf2147d583','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"33.0.1750.146\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(23914,'_site_transient_timeout_browser_a9c2a4a09c221fe1242bcc57ffac16b0','1398945565','yes'),(23915,'_site_transient_browser_a9c2a4a09c221fe1242bcc57ffac16b0','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"34.0.1847.116\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(22337,'_site_transient_timeout_browser_e854bb4a9e5be4f844d2d4a25f49694c','1397756427','yes'),(22338,'_site_transient_browser_e854bb4a9e5be4f844d2d4a25f49694c','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"33.0.1750.154\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(24011,'_site_transient_browser_7b155a4dee7b2fd118ba50158b0aaf8f','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"32.0.1700.102\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(24281,'_site_transient_timeout_browser_e9f461e46cc351335af5a5d13a8cf095','1399225305','yes'),(24282,'_site_transient_browser_e9f461e46cc351335af5a5d13a8cf095','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"33.0.1750.117\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(23780,'_site_transient_timeout_browser_6033f57ecf975f78394c89e94c3da93f','1398831109','yes'),(23781,'_site_transient_browser_6033f57ecf975f78394c89e94c3da93f','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"27.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(24010,'_site_transient_timeout_browser_7b155a4dee7b2fd118ba50158b0aaf8f','1399008274','yes'),(23891,'_site_transient_timeout_browser_e684e034b3886e36756f088e8aabbb90','1398918779','yes'),(10456,'jetpack_holiday_snow_enabled','letitsnow','yes'),(2778,'amazon-s3-cloud-mp3-amazon_key','','yes'),(2779,'amazon-s3-cloud-mp3-amazon_secret_key','','yes'),(2780,'amazon-s3-cloud-mp3-bucket','','yes'),(2781,'amazon-s3-cloud-mp3-bucket-endpoint','s3.amazonaws.com','yes'),(2782,'amazon-s3-cloud-mp3-folder','','yes'),(2783,'amazon-s3-cloud-mp3-player','horizontal','yes'),(4863,'OTWDG_RC_text','You must be logged in to copy our content.','yes'),(4864,'OTWDG_Blacklist_IP_address','','yes'),(4865,'OTWDG_ALIU_Val','0','yes'),(4866,'OTWDG_FA_Val','0','yes'),(4868,'easy_gallery_db_version','1.1','yes'),(4869,'wp_easy_gallery_defaults','a:6:{s:7:\"version\";s:4:\"free\";s:15:\"thumbnail_width\";s:4:\"auto\";s:16:\"thunbnail_height\";s:4:\"auto\";s:12:\"hide_overlay\";s:5:\"false\";s:11:\"hide_social\";s:5:\"false\";s:12:\"custom_style\";s:0:\"\";}','yes'),(4945,'tinypass_version','3.0.0','yes'),(9220,'cgs_setting','a:11:{s:14:\"cgs-home-title\";s:19:\"Earth Hertz Records\";s:13:\"cgs-home-meta\";s:65:\"Earth Hertz Records, changing the music world one note at a time.\";s:18:\"cgs-home-canonical\";s:32:\"http://www.earthhertzrecords.com\";s:16:\"cgs-title-prefix\";s:0:\"\";s:15:\"cgs-title-sufix\";s:0:\"\";s:17:\"cgs-google-author\";s:1:\"1\";s:20:\"cgs-google-publisher\";s:0:\"\";s:14:\"cgs-google-wmt\";s:0:\"\";s:20:\"cgs-google-analytics\";s:0:\"\";s:16:\"cgs-block-search\";s:1:\"1\";s:14:\"cgs-auto-descr\";s:1:\"1\";}','yes'),(24736,'_site_transient_timeout_theme_roots','1399308448','yes'),(24737,'_site_transient_theme_roots','a:24:{s:6:\"ahimsa\";s:7:\"/themes\";s:6:\"allmed\";s:7:\"/themes\";s:7:\"arclite\";s:7:\"/themes\";s:11:\"arras-theme\";s:7:\"/themes\";s:9:\"atahualpa\";s:7:\"/themes\";s:20:\"cordobo-green-park-2\";s:7:\"/themes\";s:5:\"corp2\";s:7:\"/themes\";s:6:\"fusion\";s:7:\"/themes\";s:13:\"grayCorporate\";s:7:\"/themes\";s:5:\"inove\";s:7:\"/themes\";s:14:\"lightspersonal\";s:7:\"/themes\";s:9:\"lightword\";s:7:\"/themes\";s:14:\"magazine-basic\";s:7:\"/themes\";s:6:\"mantra\";s:7:\"/themes\";s:16:\"mh-magazine-lite\";s:7:\"/themes\";s:10:\"monochrome\";s:7:\"/themes\";s:15:\"orangeCorporate\";s:7:\"/themes\";s:8:\"parabola\";s:7:\"/themes\";s:5:\"pixel\";s:7:\"/themes\";s:4:\"teal\";s:7:\"/themes\";s:5:\"trees\";s:7:\"/themes\";s:9:\"twentyten\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}','yes'),(24746,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1399349871','no'),(24747,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1399306671','no'),(24748,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1399349871','no'),(24749,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2014/04/smith/\' title=\'Version 3.9 of WordPress, named “Smith” in honor of jazz organist Jimmy Smith, is available for download or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love. A smoother media editing experience Improved visual editing The updated visual editor has improved speed, accessibility, and mobile support. You can paste into the […]\'>WordPress 3.9 “Smith”</a> <span class=\"rss-date\">April 16, 2014</span><div class=\'rssSummary\'>Version 3.9 of WordPress, named “Smith” in honor of jazz organist Jimmy Smith, is available for download or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love. A smoother media editing experience Improved visual editing The updated visual editor has improved speed, accessibility, and mobile support. You […]</div></li><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-2/\' title=\'The second release candidate for WordPress 3.9 is now available for testing. If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the first release candidate, and those changes are all helpfully summarized in our weekly post on the development blog. Probably the biggest fixes are to live […]\'>WordPress 3.9 Release Candidate 2</a> <span class=\"rss-date\">April 15, 2014</span><div class=\'rssSummary\'>The second release candidate for WordPress 3.9 is now available for testing. If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the first release candidate, and those changes are all helpfully summarized in our weekly post on the development blog. Probably the biggest fixes are to live […]</div></li></ul></div>','no'),(23074,'_site_transient_timeout_wporg_theme_feature_list','1397695886','yes'),(23075,'_site_transient_wporg_theme_feature_list','a:5:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:7:\"Columns\";a:6:{i:0;s:10:\"one-column\";i:1;s:11:\"two-columns\";i:2;s:13:\"three-columns\";i:3;s:12:\"four-columns\";i:4;s:12:\"left-sidebar\";i:5;s:13:\"right-sidebar\";}s:8:\"Features\";a:19:{i:1;s:8:\"blavatar\";i:2;s:10:\"buddypress\";i:3;s:17:\"custom-background\";i:4;s:13:\"custom-colors\";i:5;s:13:\"custom-header\";i:6;s:11:\"custom-menu\";i:7;s:12:\"editor-style\";i:8;s:21:\"featured-image-header\";i:9;s:15:\"featured-images\";i:10;s:15:\"flexible-header\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}s:5:\"Width\";a:2:{i:0;s:11:\"fixed-width\";i:1;s:14:\"flexible-width\";}}','yes'),(7284,'social_notifications_like','on','yes'),(24752,'_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c','1399349872','no'),(24753,'_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c','1399306672','no'),(24754,'_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0','1399349872','no'),(24755,'_transient_dash_aa95765b5cc111c56d5993d476b1c2f0','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://ma.tt/2014/05/new-funding-for-automattic/\' title=\'I’ll start with the big stuff: Automattic is raising $160M, all primary, and it’s the first investment into the company since 2008. This is obviously a lot of money, especially considering everything we’ve done so far has been built on only about $12M of outside capital over the past 8 years. It was also only a year ago I said “Automattic is healthy, generating cash, and already growing as fast as it can so there’s no need for the company to raise money directly — we’re not capital constrained.” I was wrong, but I didn’t realize it until I took on the CEO role in January. Things were and are going well, but there was an opportunity cost to how we were managing the company toward break-even, and we realized we could invest more into WordPress and our products to grow faster. Also our cash position wasn’t going to be terribly strong especially after a number of infrastructure and product investments this and last year. So part of my 100-day plan as CEO was to figure out what new funding could look like and we found a great set of partners who believe in our vision for how the web should be and how we can scale into the opportunity ahead of us, though it ended up taking 110 days until the first close. (Our other main areas of focus have been improving mobile, a new version of WP.com, and Jetpack.) This Series C round was led by Deven Parekh of Insight Ventures, and included new investors Chris Sacca, Endurance, and a special vehicle True Ventures created to step up their investment, alongside our existing secondary investors from last year, Tiger and Iconiq. (There is a second close soon so this list might change a bit.) There was interest significantly above what we raised, but we focused in on finding the best partners and scaled it back to be the right amount of capital at the right valuation. Deven and Insight share our long term vision and are focused on building an enduring business, one that will thrive for decades to come. WordPress is in a market as competitive as it has ever been, especially on the proprietary and closed side. I believe WordPress will win, first and foremost, because of its community — the hundreds of core developers and large commercial companies, the tens of thousands of plugin and theme developers, and the millions of people who build beautiful things with WordPress every day. Automattic is here to support that community and invest the full strength of our resources to making WordPress a better product every day, bringing us closer to our shared mission of democratizing publishing. But a majority of the web isn’t on an open platform yet, and we have a lot of work ahead of us. Back to it! You can read more about the news by Kara and Liz on Recode: WordPress.com Parent Automattic Has Raised $160 Million, Now Valued at $1.16 Billion Post-Money.\'>Matt: New Funding for Automattic</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2014/05/04/panel-discussion-commercial-wordpress-products/\' title=\' \'>WordPress.tv: Panel Discussion: Commercial WordPress Products</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2014/05/04/heather-acton-stop-giving-s-away-for-free-and-start-feeding-your-family/\' title=\' \'>WordPress.tv: Heather Acton: Stop Giving S** Away For Free and Start Feeding Your Family!</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2014/05/03/dave-west-amy-abt-wheres-my-maserati/\' title=\' \'>WordPress.tv: Dave West & Amy Abt: Where’s My Maserati?</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2014/05/03/lindsey-guajardo-remote-project-management/\' title=\' \'>WordPress.tv: Lindsey Guajardo: Remote Project Management</a></li></ul></div>','no'),(24677,'_site_transient_timeout_browser_710ad1dd7409f078fa401b586108ea26','1399847578','yes'),(24678,'_site_transient_browser_710ad1dd7409f078fa401b586108ea26','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"34.0.1847.131\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(23522,'_site_transient_browser_edb7b9457277a9d83328575668eec9e5','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"33.0.1750.117\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(23566,'_site_transient_timeout_browser_cba528b8f4312c2c7a80a35bb8e4959a','1398699603','yes'),(23567,'_site_transient_browser_cba528b8f4312c2c7a80a35bb8e4959a','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:15:\"30.0.1599.13014\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(24247,'_site_transient_timeout_browser_f0c844c325dfe1eb8498df90e2d70034','1399198902','yes'),(491,'theme_mods_parabola','a:9:{i:0;b:0;s:12:\"header_image\";s:86:\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/Header_Red_White_Final.png\";s:16:\"background_color\";s:6:\"ffffff\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:18:\"nav_menu_locations\";a:3:{s:3:\"top\";i:0;s:6:\"footer\";i:0;s:7:\"primary\";i:0;}s:17:\"header_image_data\";a:5:{s:13:\"attachment_id\";i:1278;s:3:\"url\";s:86:\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/Header_Red_White_Final.png\";s:13:\"thumbnail_url\";s:86:\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/Header_Red_White_Final.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;}}','yes'),(486,'theme_mods_mh-magazine-lite','a:10:{i:0;b:0;s:16:\"background_color\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:12:\"header_image\";s:84:\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/cropped-logo1.png\";s:17:\"header_image_data\";a:5:{s:13:\"attachment_id\";i:111;s:3:\"url\";s:84:\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/cropped-logo1.png\";s:13:\"thumbnail_url\";s:84:\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/cropped-logo1.png\";s:5:\"width\";i:960;s:6:\"height\";i:205;}s:18:\"nav_menu_locations\";a:1:{s:8:\"main_nav\";i:9;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1379596696;s:4:\"data\";a:13:{s:19:\"wp_inactive_widgets\";a:13:{i:0;s:8:\"search-2\";i:1;s:7:\"pages-2\";i:2;s:10:\"calendar-2\";i:3;s:7:\"links-2\";i:4;s:6:\"text-2\";i:5;s:5:\"rss-2\";i:6;s:11:\"tag_cloud-2\";i:7;s:10:\"nav_menu-2\";i:8;s:14:\"recent-posts-2\";i:9;s:17:\"recent-comments-2\";i:10;s:10:\"archives-2\";i:11;s:12:\"categories-2\";i:12;s:6:\"meta-2\";}s:7:\"sidebar\";a:1:{i:0;s:10:\"nav_menu-3\";}s:6:\"home-1\";a:2:{i:0;s:8:\"search-3\";i:1;s:17:\"recent-comments-3\";}s:6:\"home-2\";a:1:{i:0;s:6:\"meta-3\";}s:6:\"home-3\";a:1:{i:0;s:10:\"calendar-3\";}s:6:\"home-4\";a:0:{}s:6:\"home-5\";a:0:{}s:7:\"posts-1\";a:0:{}s:7:\"posts-2\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','yes'),(487,'theme_switched','','yes'),(488,'mh_options','a:6:{s:7:\"full_bg\";s:0:\"\";s:14:\"comments_pages\";s:0:\"\";s:11:\"sb_position\";s:4:\"left\";s:14:\"excerpt_length\";s:2:\"45\";s:10:\"custom_css\";s:0:\"\";s:13:\"tracking_code\";s:0:\"\";}','yes'),(1891,'subscription_options','a:2:{s:10:\"invitation\";s:222:\"Howdy.\r\nYou recently followed this blog\'s posts. This means you will receive each new post by email.\r\nTo activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.\";s:14:\"comment_follow\";s:235:\"Howdy.\r\nYou recently followed one of my posts. This means you will receive an email when new comments are posted.\r\nTo activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.\";}','yes'),(24068,'_site_transient_timeout_browser_3f947c51580a0abb6a41fc0b9411b81e','1399045364','yes'),(24069,'_site_transient_browser_3f947c51580a0abb6a41fc0b9411b81e','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"26.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(23313,'_site_transient_timeout_browser_7a788b2694e03599e2f1ce67143eb9ee','1398460059','yes'),(23314,'_site_transient_browser_7a788b2694e03599e2f1ce67143eb9ee','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:5:\"Opera\";s:7:\"version\";s:5:\"12.16\";s:10:\"update_url\";s:21:\"http://www.opera.com/\";s:7:\"img_src\";s:48:\"http://s.wordpress.org/images/browsers/opera.png\";s:11:\"img_src_ssl\";s:47:\"https://wordpress.org/images/browsers/opera.png\";s:15:\"current_version\";s:5:\"12.11\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(5633,'wp_erident_dashboard_image_logo_width','','yes'),(5634,'wp_erident_dashboard_image_logo_height','','yes'),(5946,'widget_sub_categories_widget','a:2:{i:2;a:8:{s:5:\"title\";s:9:\"Sub Cat 1\";s:11:\"category_id\";i:106;s:13:\"use_cat_title\";i:1;s:15:\"hide_empty_cats\";i:1;s:15:\"show_post_count\";i:1;s:10:\"title_link\";i:0;s:8:\"excluded\";s:0:\"\";s:8:\"sub_subs\";i:1;}s:12:\"_multiwidget\";i:1;}','yes'),(24409,'_site_transient_timeout_browser_2eafc93727dd7cbb81746b9535cba76f','1399454710','yes'),(24410,'_site_transient_browser_2eafc93727dd7cbb81746b9535cba76f','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:5:\"7.0.1\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:1:\"5\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(24006,'_site_transient_browser_99fc186a9708b660d33242005587b5d8','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"32.0.1700.107\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(23892,'_site_transient_browser_e684e034b3886e36756f088e8aabbb90','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"32.0.1700.107\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(23969,'_site_transient_browser_c3c1dc2cbf83e8de12cd228604812604','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"32.0.1700.107\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(24189,'_site_transient_timeout_browser_6b53e683fd760ccb7638a680b11bf520','1399144549','yes'),(24190,'_site_transient_browser_6b53e683fd760ccb7638a680b11bf520','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"32.0.1700.102\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(24248,'_site_transient_browser_f0c844c325dfe1eb8498df90e2d70034','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:5:\"Opera\";s:7:\"version\";s:5:\"12.16\";s:10:\"update_url\";s:21:\"http://www.opera.com/\";s:7:\"img_src\";s:48:\"http://s.wordpress.org/images/browsers/opera.png\";s:11:\"img_src_ssl\";s:47:\"https://wordpress.org/images/browsers/opera.png\";s:15:\"current_version\";s:5:\"12.11\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(23521,'_site_transient_timeout_browser_edb7b9457277a9d83328575668eec9e5','1398656476','yes'),(506,'parabola_settings','a:210:{s:13:\"parabola_side\";s:4:\"2cSr\";s:18:\"parabola_sidewidth\";s:3:\"650\";s:16:\"parabola_sidebar\";s:3:\"220\";s:15:\"parabola_mobile\";s:6:\"Enable\";s:16:\"parabola_hheight\";i:120;s:16:\"parabola_hcenter\";s:1:\"1\";s:19:\"parabola_siteheader\";s:22:\"Clickable header image\";s:19:\"parabola_logoupload\";s:0:\"\";s:24:\"parabola_headermargintop\";i:0;s:25:\"parabola_headermarginleft\";i:0;s:16:\"parabola_favicon\";s:107:\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/EH_120_360_Skyscraper_2013_07_29_001.png\";s:18:\"parabola_frontpage\";s:6:\"Enable\";s:19:\"parabola_frontposts\";s:7:\"Disable\";s:22:\"parabola_fpsliderwidth\";i:960;s:23:\"parabola_fpsliderheight\";i:210;s:21:\"parabola_fpslideranim\";s:6:\"random\";s:21:\"parabola_fpslidertime\";s:3:\"850\";s:22:\"parabola_fpsliderpause\";s:4:\"5000\";s:20:\"parabola_fpslidernav\";s:7:\"Bullets\";s:23:\"parabola_fpsliderarrows\";s:16:\"Visible on Hover\";s:18:\"parabola_slideType\";s:26:\"Random Posts from Category\";s:22:\"parabola_slideSpecific\";s:3:\"839\";s:19:\"parabola_slideCateg\";s:7:\"sliders\";s:20:\"parabola_slideNumber\";i:20;s:19:\"parabola_sliderimg1\";s:78:\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_0000_en2.png\";s:21:\"parabola_slidertitle1\";s:0:\"\";s:20:\"parabola_slidertext1\";s:0:\"\";s:20:\"parabola_sliderlink1\";s:0:\"\";s:19:\"parabola_sliderimg2\";s:84:\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_004_en1.png\";s:21:\"parabola_slidertitle2\";s:0:\"\";s:20:\"parabola_slidertext2\";s:0:\"\";s:20:\"parabola_sliderlink2\";s:48:\"http://www.streambeam.us/eh1cart/products.php?25\";s:19:\"parabola_sliderimg3\";s:83:\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_002_en.png\";s:21:\"parabola_slidertitle3\";s:0:\"\";s:20:\"parabola_slidertext3\";s:0:\"\";s:20:\"parabola_sliderlink3\";s:48:\"http://www.streambeam.us/eh1cart/products.php?24\";s:19:\"parabola_sliderimg4\";s:83:\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_019_en.png\";s:21:\"parabola_slidertitle4\";s:0:\"\";s:20:\"parabola_slidertext4\";s:0:\"\";s:20:\"parabola_sliderlink4\";s:48:\"http://www.streambeam.us/eh1cart/products.php?23\";s:19:\"parabola_sliderimg5\";s:83:\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_005_en.png\";s:21:\"parabola_slidertitle5\";s:0:\"\";s:20:\"parabola_slidertext5\";s:0:\"\";s:20:\"parabola_sliderlink5\";s:47:\"http://www.streambeam.us/eh1cart/products.php?0\";s:18:\"parabola_nrcolumns\";s:1:\"4\";s:23:\"parabola_colimageheight\";i:145;s:23:\"parabola_columnreadmore\";s:9:\"Read more\";s:19:\"parabola_columnimg1\";s:82:\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Grammy2001-150x150.jpg\";s:21:\"parabola_columntitle1\";s:46:\"<B>News:</B> The 57th Grammy® Educator Awards\";s:20:\"parabola_columntext1\";s:74:\"Check out and support your local music educators with a Grammy nomination!\";s:20:\"parabola_columnlink1\";s:70:\"http://www.grammyintheschools.com/programs/grammy-music-educator-award\";s:19:\"parabola_columnimg2\";s:88:\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/4382937779_e0c1d76aca_o1.png\";s:21:\"parabola_columntitle2\";s:17:\"Dynamic Range Day\";s:20:\"parabola_columntext2\";s:317:\"From the DRD Website..... The Loudness War is a sonic “arms race” where every artist and label feel they need to crush their music onto CD at the highest possible level, for fear of not being “competitive” – and in the process removing all the contrast, all the light, shade and depth – ruining the sound.\";s:20:\"parabola_columnlink2\";s:39:\"http://dynamicrangeday.co.uk/comp-live/\";s:19:\"parabola_columnimg3\";s:96:\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/DSC_3170_PhotoGallery_2013_11_07.jpg\";s:21:\"parabola_columntitle3\";s:21:\"<B>Photo gallery:</B>\";s:20:\"parabola_columntext3\";s:21:\"Check out our photos.\";s:20:\"parabola_columnlink3\";s:61:\"http://www.earthhertzrecords.com/2013/11/matt-guertin-fender/\";s:19:\"parabola_columnimg4\";s:70:\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Image3.png\";s:21:\"parabola_columntitle4\";s:32:\"<B>Update:</B> Earth Hertz Staff\";s:20:\"parabola_columntext4\";s:43:\"Welcome and come on in and meet the family.\";s:20:\"parabola_columnlink4\";s:53:\"http://www.earthhertzrecords.com/category/home/about/\";s:19:\"parabola_fronttext1\";s:0:\"\";s:19:\"parabola_fronttext2\";s:0:\"\";s:19:\"parabola_fronttext3\";s:0:\"\";s:19:\"parabola_fronttext4\";s:0:\"\";s:17:\"parabola_fontsize\";s:4:\"12px\";s:19:\"parabola_fontfamily\";s:9:\"Open Sans\";s:19:\"parabola_googlefont\";s:0:\"\";s:21:\"parabola_headfontsize\";s:4:\"18px\";s:18:\"parabola_fonttitle\";s:10:\"Bebas Neue\";s:24:\"parabola_googlefonttitle\";s:0:\"\";s:21:\"parabola_sidefontsize\";s:4:\"14px\";s:17:\"parabola_fontside\";s:10:\"Bebas Neue\";s:23:\"parabola_googlefontside\";s:0:\"\";s:22:\"parabola_sitetitlesize\";s:4:\"30px\";s:22:\"parabola_sitetitlefont\";s:10:\"Bebas Neue\";s:28:\"parabola_sitetitlegooglefont\";s:0:\"\";s:21:\"parabola_menufontsize\";s:4:\"10px\";s:17:\"parabola_menufont\";s:9:\"Open Sans\";s:23:\"parabola_menugooglefont\";s:0:\"\";s:25:\"parabola_headingsfontsize\";s:4:\"100%\";s:21:\"parabola_headingsfont\";s:25:\"Yanone Kaffeesatz Regular\";s:27:\"parabola_headingsgooglefont\";s:0:\"\";s:18:\"parabola_textalign\";s:7:\"Default\";s:23:\"parabola_paragraphspace\";s:5:\"1.0em\";s:18:\"parabola_parindent\";s:3:\"0px\";s:23:\"parabola_headingsindent\";s:7:\"Disable\";s:19:\"parabola_lineheight\";s:5:\"1.7em\";s:18:\"parabola_wordspace\";s:7:\"Default\";s:22:\"parabola_uppercasetext\";s:1:\"1\";s:24:\"parabola_backcolorheader\";s:7:\"#FFFFFF\";s:22:\"parabola_backcolormain\";s:7:\"#F7F7F2\";s:25:\"parabola_backcolorfooterw\";s:7:\"#1A1917\";s:24:\"parabola_backcolorfooter\";s:7:\"#131211\";s:24:\"parabola_contentcolortxt\";s:7:\"#333333\";s:29:\"parabola_contentcolortxtlight\";s:7:\"#999999\";s:23:\"parabola_footercolortxt\";s:7:\"#AAAAAA\";s:21:\"parabola_accentcolora\";s:7:\"#BF4D28\";s:21:\"parabola_accentcolorb\";s:7:\"#E6AC27\";s:21:\"parabola_accentcolorc\";s:7:\"#EEEEEE\";s:21:\"parabola_accentcolord\";s:7:\"#CCCCCC\";s:21:\"parabola_accentcolore\";s:7:\"#F7F7F7\";s:22:\"parabola_descriptionbg\";s:0:\"\";s:19:\"parabola_titlecolor\";s:7:\"#BF4D28\";s:25:\"parabola_descriptioncolor\";s:7:\"#444444\";s:27:\"parabola_menucolorbgdefault\";s:7:\"#333333\";s:25:\"parabola_menucolorbghover\";s:7:\"#444444\";s:26:\"parabola_menucolorbgactive\";s:7:\"#000000\";s:24:\"parabola_menucolorshadow\";s:0:\"\";s:28:\"parabola_menucolortxtdefault\";s:7:\"#EEEEEE\";s:26:\"parabola_menucolortxthover\";s:7:\"#E6AC27\";s:27:\"parabola_menucolortxtactive\";s:7:\"#FFFFFF\";s:23:\"parabola_topmenucolorbg\";s:0:\"\";s:28:\"parabola_topmenucolorbghover\";s:7:\"#FFFFFF\";s:24:\"parabola_topmenucolortxt\";s:7:\"#666666\";s:29:\"parabola_topmenucolortxthover\";s:7:\"#666666\";s:23:\"parabola_contentcolorbg\";s:7:\"#FFFFFF\";s:29:\"parabola_contentcolortxttitle\";s:7:\"#444444\";s:34:\"parabola_contentcolortxttitlehover\";s:7:\"#000000\";s:32:\"parabola_contentcolortxtheadings\";s:7:\"#444444\";s:24:\"parabola_fronttitlecolor\";s:7:\"#412323\";s:28:\"parabola_fpsliderbordercolor\";s:7:\"#ffffff\";s:29:\"parabola_fpslidercaptioncolor\";s:7:\"#ffffff\";s:26:\"parabola_fpslidercaptionbg\";s:7:\"#000000\";s:15:\"parabola_sidebg\";s:7:\"#FFFFFF\";s:20:\"parabola_sidetitlebg\";s:7:\"#444444\";s:16:\"parabola_sidetxt\";s:7:\"#444444\";s:21:\"parabola_sidetitletxt\";s:7:\"#FFFFFF\";s:17:\"parabola_widgetbg\";s:7:\"#FFFFFF\";s:22:\"parabola_widgettitlebg\";s:7:\"#444444\";s:18:\"parabola_widgettxt\";s:7:\"#333333\";s:23:\"parabola_widgettitletxt\";s:7:\"#FFFFFF\";s:22:\"parabola_linkcolortext\";s:7:\"#BF4D28\";s:23:\"parabola_linkcolorhover\";s:7:\"#E6AC27\";s:22:\"parabola_linkcolorside\";s:7:\"#BF4D28\";s:27:\"parabola_linkcolorsidehover\";s:7:\"#E6AC27\";s:24:\"parabola_linkcolorwooter\";s:7:\"#BF4D28\";s:29:\"parabola_linkcolorwooterhover\";s:7:\"#E6AC27\";s:24:\"parabola_linkcolorfooter\";s:7:\"#BF4D28\";s:29:\"parabola_linkcolorfooterhover\";s:7:\"#E6AC27\";s:16:\"parabola_caption\";s:13:\"caption-light\";s:17:\"parabola_metaback\";s:10:\"meta-light\";s:20:\"parabola_breadcrumbs\";s:6:\"Enable\";s:19:\"parabola_pagination\";s:6:\"Enable\";s:18:\"parabola_menualign\";s:4:\"left\";s:18:\"parabola_triangles\";s:1:\"0\";s:20:\"parabola_image_style\";s:19:\"parabola-image-five\";s:20:\"parabola_contentlist\";s:4:\"Show\";s:18:\"parabola_pagetitle\";s:4:\"Show\";s:19:\"parabola_categtitle\";s:4:\"Show\";s:15:\"parabola_tables\";s:7:\"Disable\";s:16:\"parabola_backtop\";s:6:\"Enable\";s:16:\"parabola_comtext\";s:4:\"Show\";s:18:\"parabola_comclosed\";s:15:\"Hide everywhere\";s:15:\"parabola_comoff\";s:4:\"Show\";s:20:\"parabola_postcomlink\";s:4:\"Show\";s:21:\"parabola_postdatetime\";s:4:\"date\";s:19:\"parabola_postauthor\";s:4:\"Hide\";s:18:\"parabola_postcateg\";s:4:\"Show\";s:18:\"parabola_postmetas\";s:4:\"Show\";s:16:\"parabola_posttag\";s:4:\"Show\";s:17:\"parabola_postbook\";s:4:\"Show\";s:20:\"parabola_excerpthome\";s:9:\"Full Post\";s:22:\"parabola_excerptsticky\";s:7:\"Excerpt\";s:23:\"parabola_excerptarchive\";s:7:\"Excerpt\";s:21:\"parabola_excerptwords\";i:175;s:23:\"parabola_magazinelayout\";s:7:\"Disable\";s:20:\"parabola_excerptdots\";s:4:\" …\";s:20:\"parabola_excerptcont\";s:7:\"more...\";s:20:\"parabola_excerpttags\";s:6:\"Enable\";s:14:\"parabola_fpost\";s:7:\"Disable\";s:18:\"parabola_fpostlink\";s:1:\"1\";s:14:\"parabola_fauto\";s:6:\"Enable\";s:15:\"parabola_falign\";s:4:\"Left\";s:15:\"parabola_fwidth\";i:210;s:16:\"parabola_fheight\";i:110;s:16:\"parabola_fheader\";s:7:\"Disable\";s:16:\"parabola_social1\";s:7:\"YouTube\";s:16:\"parabola_social2\";s:56:\"https://www.youtube.com/channel/UCoK-rLMixNEIdEvVTERA8aA\";s:23:\"parabola_social_target1\";s:1:\"1\";s:22:\"parabola_social_title1\";s:13:\"StreamBeam.US\";s:16:\"parabola_social3\";s:7:\"Twitter\";s:16:\"parabola_social4\";s:30:\"https://twitter.com/EarthHertz\";s:23:\"parabola_social_target3\";s:1:\"1\";s:22:\"parabola_social_title3\";s:11:\"Earth Hertz\";s:16:\"parabola_social5\";s:8:\"Facebook\";s:16:\"parabola_social6\";s:73:\"https://www.facebook.com/pages/Earth-Hertz-Records/126306200780595?ref=hl\";s:23:\"parabola_social_target5\";s:1:\"1\";s:22:\"parabola_social_title5\";s:11:\"Earth Hertz\";s:16:\"parabola_social7\";s:9:\"Pinterest\";s:16:\"parabola_social8\";s:43:\"http://www.pinterest.com/earthhertz/boards/\";s:22:\"parabola_social_title7\";s:11:\"Earth Hertz\";s:16:\"parabola_social9\";s:11:\"StumbleUpon\";s:17:\"parabola_social10\";s:0:\"\";s:22:\"parabola_social_title9\";s:0:\"\";s:24:\"parabola_socialsdisplay3\";s:1:\"1\";s:17:\"parabola_iecompat\";s:1:\"1\";s:18:\"parabola_copyright\";s:305:\"All content © ℗ Copyright 2013 Earth Hertz Productons, LLC, Earth Hertz Records, Earth Hertz Publishing, and StreamBeam.US <br /> • Nashville, TN 37075 USA • Send comments about this site to webmaster@earthhertzrecords.com\r\n<b>Privacy and Usage Policy</b>, <a href=\'#\'>consectetur adipiscing</a>.\";s:18:\"parabola_customcss\";s:0:\"\";s:17:\"parabola_customjs\";s:57:\"<!--#exec cgi=\"/cgi-bin/counter/count.cgi?page=ehrcom\"-->\";s:15:\"parabola_submit\";s:12:\"Save Changes\";s:23:\"parabola_social_target7\";s:1:\"0\";s:23:\"parabola_social_target9\";s:1:\"0\";s:24:\"parabola_socialsdisplay0\";s:1:\"0\";s:24:\"parabola_socialsdisplay1\";s:1:\"0\";s:24:\"parabola_socialsdisplay2\";s:1:\"0\";s:24:\"parabola_socialsdisplay4\";s:1:\"0\";s:24:\"parabola_socialsdisplay5\";s:1:\"0\";}','yes'),(1253,'sharing-services','a:2:{s:7:\"visible\";a:9:{i:0;s:5:\"email\";i:1;s:5:\"print\";i:2;s:8:\"facebook\";i:3;s:13:\"google-plus-1\";i:4;s:8:\"linkedin\";i:5;s:7:\"twitter\";i:6;s:6:\"tumblr\";i:7;s:9:\"pinterest\";i:8;s:11:\"stumbleupon\";}s:6:\"hidden\";a:0:{}}','yes'),(1254,'sharedaddy_disable_resources','0','yes'),(603,'stats_cache','a:2:{s:32:\"f378c26ecae5cb1f8ff483ce58745a92\";a:1:{i:1399309667;a:1:{i:0;a:4:{s:7:\"post_id\";s:1:\"0\";s:10:\"post_title\";s:9:\"Home page\";s:14:\"post_permalink\";s:33:\"http://www.earthhertzrecords.com/\";s:5:\"views\";s:2:\"10\";}}}s:32:\"2d5888bf68bd5b390df03fcd2057fa6c\";a:1:{i:1399309667;a:0:{}}}','yes'),(24743,'_transient_dash_20494a3d90a6669585674ed0eb8dcd8f','<p>This dashboard widget queries <a href=\"http://blogsearch.google.com/\">Google Blog Search</a> so that when another blog links to your site it will show up here. It has found no incoming links… yet. It’s okay — there is no rush.</p>\n','no'),(24756,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1399349872','no'),(24757,'_transient_feed_b9388c83948825c1edaef0d856b7b109','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 May 2014 16:17:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"15@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WordPress SEO by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"http://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8321@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2141@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"132@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Arnee\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"1169@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 9 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WooCommerce - excelling eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29860@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2082@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"753@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as Google.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"23862@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tim Moore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"MailPoet Newsletters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/plugins/wysija-newsletters/#post-32629\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Dec 2011 17:09:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"32629@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Send newsletters, post notifications or autoresponders from WordPress easily, and beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"MailPoet Staff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WP-Optimize\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/plugins/wp-optimize/#post-8691\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Jan 2009 04:28:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8691@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Simple but effective plugin allows you to extensively clean up your WordPress database and optimize it without doing manual queries.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"ruhanirabin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29832@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"18101@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"21738@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"The easiest, most effective way to secure WordPress in seconds.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Chris Wiegman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"WPtouch Mobile Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://wordpress.org/plugins/wptouch/#post-5468\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2008 04:58:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"5468@http://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Create a slick mobile WordPress website with just a few clicks.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"BraveNewCode Inc.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:45:\"http://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 05 May 2014 16:17:52 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:7:\"expires\";s:29:\"Mon, 05 May 2014 16:52:27 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Mon, 05 May 2014 16:17:27 +0000\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20131113023809\";}','no'),(22861,'can_compress_scripts','1','yes'),(2374,'wp-maintenance-mode-msqld','1','yes'),(1788,'sm_options','a:56:{s:18:\"sm_b_prio_provider\";s:41:\"GoogleSitemapGeneratorPrioByCountProvider\";s:13:\"sm_b_filename\";s:11:\"sitemap.xml\";s:10:\"sm_b_debug\";b:0;s:8:\"sm_b_xml\";b:1;s:9:\"sm_b_gzip\";b:1;s:9:\"sm_b_ping\";b:1;s:12:\"sm_b_pingmsn\";b:1;s:19:\"sm_b_manual_enabled\";b:0;s:17:\"sm_b_auto_enabled\";b:1;s:15:\"sm_b_auto_delay\";b:1;s:15:\"sm_b_manual_key\";s:32:\"b0750c46f3dbd7391d7a2e72450823b3\";s:11:\"sm_b_memory\";s:0:\"\";s:9:\"sm_b_time\";i:-1;s:14:\"sm_b_max_posts\";i:-1;s:13:\"sm_b_safemode\";b:0;s:18:\"sm_b_style_default\";b:1;s:10:\"sm_b_style\";s:0:\"\";s:11:\"sm_b_robots\";b:1;s:12:\"sm_b_exclude\";a:0:{}s:17:\"sm_b_exclude_cats\";a:0:{}s:18:\"sm_b_location_mode\";s:4:\"auto\";s:20:\"sm_b_filename_manual\";s:65:\"/data/26/2/8/73/2497399/user/2735185/htdocs/WordPress/sitemap.xml\";s:19:\"sm_b_fileurl_manual\";s:44:\"http://www.earthhertzrecords.com/sitemap.xml\";s:10:\"sm_in_home\";b:1;s:11:\"sm_in_posts\";b:1;s:15:\"sm_in_posts_sub\";b:0;s:11:\"sm_in_pages\";b:1;s:10:\"sm_in_cats\";b:1;s:10:\"sm_in_arch\";b:1;s:10:\"sm_in_auth\";b:1;s:10:\"sm_in_tags\";b:0;s:9:\"sm_in_tax\";a:0:{}s:17:\"sm_in_customtypes\";a:0:{}s:13:\"sm_in_lastmod\";b:1;s:10:\"sm_cf_home\";s:5:\"daily\";s:11:\"sm_cf_posts\";s:5:\"daily\";s:11:\"sm_cf_pages\";s:6:\"weekly\";s:10:\"sm_cf_cats\";s:6:\"hourly\";s:10:\"sm_cf_auth\";s:5:\"daily\";s:15:\"sm_cf_arch_curr\";s:5:\"daily\";s:14:\"sm_cf_arch_old\";s:6:\"yearly\";s:10:\"sm_cf_tags\";s:6:\"weekly\";s:10:\"sm_pr_home\";d:1;s:11:\"sm_pr_posts\";d:0.59999999999999998;s:15:\"sm_pr_posts_min\";d:0.20000000000000001;s:11:\"sm_pr_pages\";d:0.59999999999999998;s:10:\"sm_pr_cats\";d:0.29999999999999999;s:10:\"sm_pr_arch\";d:0.29999999999999999;s:10:\"sm_pr_auth\";d:0.29999999999999999;s:10:\"sm_pr_tags\";d:0.29999999999999999;s:12:\"sm_i_donated\";b:0;s:17:\"sm_i_hide_donated\";b:0;s:17:\"sm_i_install_date\";i:1381701762;s:14:\"sm_i_hide_note\";b:0;s:15:\"sm_i_hide_works\";b:0;s:16:\"sm_i_hide_donors\";b:0;}','yes'),(1767,'ossdl_off_cdn_url','http://www.earthhertzrecords.com','yes'),(1768,'ossdl_off_include_dirs','wp-content,wp-includes','yes'),(1769,'ossdl_off_exclude','.php','yes'),(1770,'ossdl_cname','','yes'),(1771,'wpsupercache_start','1381699453','yes'),(1772,'wpsupercache_count','0','yes'),(1773,'Yoast_Google_Analytics','a:42:{s:16:\"advancedsettings\";b:0;s:11:\"allowanchor\";b:0;s:9:\"allowhash\";b:0;s:11:\"allowlinker\";b:0;s:11:\"anonymizeip\";b:0;s:10:\"customcode\";s:0:\"\";s:11:\"cv_loggedin\";b:0;s:13:\"cv_authorname\";b:0;s:11:\"cv_category\";b:0;s:17:\"cv_all_categories\";b:0;s:7:\"cv_tags\";b:0;s:7:\"cv_year\";b:0;s:12:\"cv_post_type\";b:0;s:5:\"debug\";b:0;s:12:\"dlextensions\";s:30:\"doc,exe,js,pdf,ppt,tgz,zip,xls\";s:6:\"domain\";s:0:\"\";s:11:\"domainorurl\";s:6:\"domain\";s:7:\"extrase\";b:0;s:10:\"extraseurl\";s:0:\"\";s:11:\"firebuglite\";b:0;s:8:\"ga_token\";s:0:\"\";s:16:\"ga_api_responses\";a:0:{}s:16:\"gajslocalhosting\";b:0;s:7:\"gajsurl\";s:0:\"\";s:16:\"ignore_userlevel\";s:2:\"11\";s:12:\"internallink\";b:0;s:17:\"internallinklabel\";s:0:\"\";s:16:\"outboundpageview\";b:0;s:17:\"downloadspageview\";b:0;s:17:\"othercrossdomains\";s:0:\"\";s:8:\"position\";s:6:\"footer\";s:18:\"primarycrossdomain\";s:0:\"\";s:13:\"theme_updated\";b:0;s:16:\"trackcommentform\";b:1;s:16:\"trackcrossdomain\";b:0;s:12:\"trackadsense\";b:0;s:13:\"trackoutbound\";b:1;s:17:\"trackregistration\";b:0;s:14:\"rsslinktagging\";b:1;s:8:\"uastring\";s:0:\"\";s:7:\"version\";s:5:\"4.3.3\";s:3:\"msg\";s:0:\"\";}','yes'),(1784,'yolink_config','a:7:{s:12:\"use_extended\";s:1:\"0\";s:13:\"yolink_apikey\";s:32:\"02117da5140034131d8bf723ec3e3fba\";s:15:\"yolink_user_url\";s:0:\"\";s:18:\"allowed_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:18:\"yolink_crawl_state\";s:7:\"crawled\";s:18:\"last_modified_date\";i:1381700964;s:11:\"max_results\";s:2:\"20\";}','yes'),(1791,'sm_status','O:28:\"GoogleSitemapGeneratorStatus\":24:{s:10:\"_startTime\";d:1398789362.1521101;s:8:\"_endTime\";d:1398789362.1627109;s:11:\"_hasChanged\";b:1;s:12:\"_memoryUsage\";i:6553600;s:9:\"_lastPost\";i:0;s:9:\"_lastTime\";i:0;s:8:\"_usedXml\";b:1;s:11:\"_xmlSuccess\";b:0;s:8:\"_xmlPath\";s:94:\"\\\\\\\\WDP\\\\DFS\\\\30\\\\3\\\\0\\\\5\\\\3032205503\\\\user\\\\sites\\\\3558209.site\\\\www\\\\wp-cron.php/sitemap.xml\";s:7:\"_xmlUrl\";s:44:\"http://www.earthhertzrecords.com/sitemap.xml\";s:8:\"_usedZip\";b:1;s:11:\"_zipSuccess\";b:0;s:8:\"_zipPath\";s:97:\"\\\\\\\\WDP\\\\DFS\\\\30\\\\3\\\\0\\\\5\\\\3032205503\\\\user\\\\sites\\\\3558209.site\\\\www\\\\wp-cron.php/sitemap.xml.gz\";s:7:\"_zipUrl\";s:47:\"http://www.earthhertzrecords.com/sitemap.xml.gz\";s:11:\"_usedGoogle\";b:0;s:10:\"_googleUrl\";s:0:\"\";s:15:\"_gooogleSuccess\";b:0;s:16:\"_googleStartTime\";i:0;s:14:\"_googleEndTime\";i:0;s:8:\"_usedMsn\";b:0;s:7:\"_msnUrl\";s:0:\"\";s:11:\"_msnSuccess\";b:0;s:13:\"_msnStartTime\";i:0;s:11:\"_msnEndTime\";i:0;}','no'),(24362,'_site_transient_browser_9a3916eced3e1324a6a75abd7ead9426','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"29.0.1547.76\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(1910,'s3-colour','#d84a38','yes'),(1911,'s3-fontcolour','','yes'),(1912,'s3-width','','yes'),(1913,'s3-bgimage','','yes'),(1914,'s3-radius','0px','yes'),(1915,'s3-autoplay','','yes'),(1916,'s3-jtoggle','true','yes'),(1917,'s3-download','false','yes'),(1918,'s3-loggedin','false','yes'),(1919,'s3-search','true','yes'),(1920,'s3-vlogo','','yes'),(1921,'s3-icons','','yes'),(1922,'s3-addborder','','yes'),(2007,'safecss_preview_rev','1','yes'),(2160,'yop_poll_options','a:91:{s:19:\"poll_name_html_tags\";s:3:\"yes\";s:23:\"poll_question_html_tags\";s:3:\"yes\";s:21:\"poll_answer_html_tags\";s:3:\"yes\";s:27:\"poll_custom_field_html_tags\";s:3:\"yes\";s:16:\"create_poll_page\";s:3:\"yes\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:13:\"poll_page_url\";s:0:\"\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:5:\"Other\";s:28:\"display_other_answers_values\";s:2:\"no\";s:22:\"allow_multiple_answers\";s:2:\"no\";s:29:\"allow_multiple_answers_number\";i:1;s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:17:\"is_default_answer\";s:2:\"no\";s:16:\"use_template_bar\";s:3:\"yes\";s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:15:\"sorting_answers\";s:5:\"exact\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:15:\"sorting_results\";s:5:\"exact\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:10:\"start_date\";s:19:\"2013-10-16 07:56:18\";s:8:\"end_date\";s:19:\"9999-12-31 23:59:59\";s:12:\"never_expire\";s:3:\"yes\";s:12:\"view_results\";s:5:\"after\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"view_results_type\";s:12:\"votes-number\";s:23:\"view_results_start_date\";s:0:\"\";s:17:\"view_results_link\";s:3:\"yes\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:17:\"vote_button_label\";s:4:\"Vote\";s:23:\"view_results_link_label\";s:12:\"View Results\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:23:\"view_total_voters_label\";s:33:\"Total Answers %POLL-TOTAL-VOTERS%\";s:18:\"view_total_answers\";s:3:\"yes\";s:17:\"view_total_voters\";s:3:\"yes\";s:16:\"view_total_votes\";s:3:\"yes\";s:22:\"view_poll_archive_link\";s:3:\"yes\";s:28:\"view_poll_archive_link_label\";s:17:\"View Poll Archive\";s:16:\"poll_archive_url\";s:50:\"http://www.earthhertzrecords.com/yop-poll-archive/\";s:15:\"vote_permisions\";s:16:\"guest-registered\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";s:10:\"dont-block\";s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:8:\"template\";s:1:\"1\";s:15:\"widget_template\";s:1:\"1\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:15:\"show_in_archive\";s:3:\"yes\";s:13:\"archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:1:\"5\";s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:11:\"use_captcha\";s:2:\"no\";s:16:\"share_after_vote\";s:2:\"no\";s:13:\"share_picture\";s:0:\"\";s:10:\"share_name\";s:0:\"\";s:13:\"share_caption\";s:0:\"\";s:17:\"share_description\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:18:\"message_after_vote\";s:24:\"Thank you for your vote!\";s:15:\"start_scheduler\";s:2:\"no\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";i:1381924578;s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:24:\"view_results_permissions\";s:16:\"guest-registered\";s:11:\"date_format\";s:11:\"d/m/Y H:i:s\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";}','yes'),(2161,'yop_poll_optin_box_modal_options','a:4:{s:4:\"show\";s:2:\"no\";s:14:\"last_show_date\";s:19:\"2013-10-23 01:16:53\";s:16:\"modal_had_submit\";s:2:\"no\";s:18:\"sidebar_had_submit\";s:2:\"no\";}','yes'),(2162,'yop_poll_pro_options','a:4:{s:7:\"pro_key\";s:0:\"\";s:11:\"pro_api_key\";s:0:\"\";s:18:\"pro_api_server_url\";s:27:\"http://www.yop-poll.com/pro\";s:8:\"pro_user\";s:2:\"no\";}','yes'),(2163,'yop_poll_first_install_date','2013-10-16 07:56:18','yes'),(2164,'yop_poll_admin_notices_donate','no','yes'),(2165,'yop_poll_version','4.4','yes'),(4859,'OTWDG_TS_Val','1','yes'),(4860,'OTWDG_KS_Val','1','yes'),(4861,'OTWDG_RC_Val','0','yes'),(4862,'OTWDG_DMORC_Val','1','yes'),(4956,'nm_repo_db_version','1.0.0','yes'),(4957,'nm_repo_settings','a:6:{s:3:\"bug\";s:5:\"false\";s:27:\"nm_repository_files_allowed\";s:66:\"*.jpg;*.png;*.doc;*.docx;*.pdf;*.wav;*.mp3;*.moc;*.avi;*.flv;*.mp4\";s:24:\"nm_repository_size_limit\";s:11:\"25000000000\";s:24:\"nm_repository_file_saved\";s:24:\"You file has been saved.\";s:25:\"nm_repository_dir_created\";s:32:\"Your directory has been created.\";s:6:\"action\";s:16:\"saveRepoSettings\";}','yes'),(24729,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1399297450;s:7:\"checked\";a:24:{s:6:\"ahimsa\";s:3:\"3.2\";s:6:\"allmed\";s:3:\"1.4\";s:7:\"arclite\";s:4:\"2.02\";s:11:\"arras-theme\";s:5:\"1.3.5\";s:9:\"atahualpa\";s:6:\"3.7.12\";s:20:\"cordobo-green-park-2\";s:7:\"0.9.502\";s:5:\"corp2\";s:2:\"v1\";s:6:\"fusion\";s:3:\"3.1\";s:13:\"grayCorporate\";s:2:\"v1\";s:5:\"inove\";s:5:\"1.4.6\";s:14:\"lightspersonal\";s:4:\"1.00\";s:9:\"lightword\";s:7:\"2.0.0.6\";s:14:\"magazine-basic\";s:5:\"3.0.3\";s:6:\"mantra\";s:5:\"2.3.0\";s:16:\"mh-magazine-lite\";s:5:\"1.5.7\";s:10:\"monochrome\";s:5:\"3.0.4\";s:15:\"orangeCorporate\";s:2:\"v1\";s:8:\"parabola\";s:5:\"1.2.0\";s:5:\"pixel\";s:5:\"2.0.2\";s:4:\"teal\";s:6:\"2.8.19\";s:5:\"trees\";s:2:\"v1\";s:9:\"twentyten\";s:3:\"1.6\";s:14:\"twentythirteen\";s:3:\"1.0\";s:12:\"twentytwelve\";s:3:\"1.2\";}s:8:\"response\";a:9:{s:6:\"allmed\";a:4:{s:5:\"theme\";s:6:\"allmed\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:35:\"https://wordpress.org/themes/allmed\";s:7:\"package\";s:52:\"https://wordpress.org/themes/download/allmed.1.5.zip\";}s:9:\"atahualpa\";a:4:{s:5:\"theme\";s:9:\"atahualpa\";s:11:\"new_version\";s:6:\"3.7.15\";s:3:\"url\";s:38:\"https://wordpress.org/themes/atahualpa\";s:7:\"package\";s:58:\"https://wordpress.org/themes/download/atahualpa.3.7.15.zip\";}s:14:\"magazine-basic\";a:4:{s:5:\"theme\";s:14:\"magazine-basic\";s:11:\"new_version\";s:5:\"3.0.4\";s:3:\"url\";s:43:\"https://wordpress.org/themes/magazine-basic\";s:7:\"package\";s:62:\"https://wordpress.org/themes/download/magazine-basic.3.0.4.zip\";}s:6:\"mantra\";a:4:{s:5:\"theme\";s:6:\"mantra\";s:11:\"new_version\";s:5:\"2.3.4\";s:3:\"url\";s:35:\"https://wordpress.org/themes/mantra\";s:7:\"package\";s:54:\"https://wordpress.org/themes/download/mantra.2.3.4.zip\";}s:16:\"mh-magazine-lite\";a:4:{s:5:\"theme\";s:16:\"mh-magazine-lite\";s:11:\"new_version\";s:5:\"1.6.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/mh-magazine-lite\";s:7:\"package\";s:64:\"https://wordpress.org/themes/download/mh-magazine-lite.1.6.1.zip\";}s:8:\"parabola\";a:4:{s:5:\"theme\";s:8:\"parabola\";s:11:\"new_version\";s:5:\"1.3.4\";s:3:\"url\";s:37:\"https://wordpress.org/themes/parabola\";s:7:\"package\";s:56:\"https://wordpress.org/themes/download/parabola.1.3.4.zip\";}s:4:\"teal\";a:4:{s:5:\"theme\";s:4:\"teal\";s:11:\"new_version\";s:6:\"2.8.44\";s:3:\"url\";s:33:\"https://wordpress.org/themes/teal\";s:7:\"package\";s:53:\"https://wordpress.org/themes/download/teal.2.8.44.zip\";}s:14:\"twentythirteen\";a:4:{s:5:\"theme\";s:14:\"twentythirteen\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentythirteen\";s:7:\"package\";s:60:\"https://wordpress.org/themes/download/twentythirteen.1.1.zip\";}s:12:\"twentytwelve\";a:4:{s:5:\"theme\";s:12:\"twentytwelve\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:41:\"https://wordpress.org/themes/twentytwelve\";s:7:\"package\";s:58:\"https://wordpress.org/themes/download/twentytwelve.1.3.zip\";}}s:12:\"translations\";a:0:{}}','yes'),(24730,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1399306647;s:7:\"checked\";a:19:{s:19:\"akismet/akismet.php\";s:5:\"2.5.9\";s:41:\"amazon-s3-and-cloudfront/wordpress-s3.php\";s:5:\"0.6.1\";s:53:\"amazon-s3-cloud-html5-mp3-player/amazon-s3-player.php\";s:5:\"1.0.8\";s:35:\"blog-posts-order/blogpostsorder.php\";s:3:\"1.0\";s:45:\"dropdown-menu-widget/shailan.DropDownMenu.php\";s:5:\"1.9.2\";s:54:\"erident-custom-login-and-dashboard/er-custom-login.php\";s:5:\"2.0.1\";s:36:\"google-sitemap-generator/sitemap.php\";s:3:\"3.3\";s:21:\"hello-dolly/hello.php\";s:3:\"1.6\";s:19:\"jetpack/jetpack.php\";s:5:\"2.5.2\";s:33:\"wp-front-end-repository/index.php\";s:3:\"1.1\";s:21:\"podpress/podpress.php\";s:9:\"8.8.10.17\";s:66:\"reorder-post-within-categories/reorder-posts-within-categories.php\";s:5:\"1.1.4\";s:47:\"sub-categories-widget/sub-categories-widget.php\";s:3:\"1.2\";s:21:\"tinypass/tinypass.php\";s:5:\"3.0.0\";s:27:\"click-go-seo/clickgoseo.php\";s:5:\"1.1.0\";s:46:\"wordpress-data-guards/wordpress-data-guard.php\";s:3:\"7.0\";s:35:\"wp-easy-gallery/wp-easy-gallery.php\";s:3:\"3.5\";s:35:\"wp-online-store/WP_online_store.php\";s:5:\"1.3.2\";s:21:\"yop-poll/yop_poll.php\";s:3:\"4.5\";}s:8:\"response\";a:9:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"3.0.0\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.0.0.zip\";}s:45:\"dropdown-menu-widget/shailan.DropDownMenu.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"11401\";s:4:\"slug\";s:20:\"dropdown-menu-widget\";s:6:\"plugin\";s:45:\"dropdown-menu-widget/shailan.DropDownMenu.php\";s:11:\"new_version\";s:5:\"1.9.3\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/dropdown-menu-widget/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/dropdown-menu-widget.1.9.3.zip\";}s:54:\"erident-custom-login-and-dashboard/er-custom-login.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"33459\";s:4:\"slug\";s:34:\"erident-custom-login-and-dashboard\";s:6:\"plugin\";s:54:\"erident-custom-login-and-dashboard/er-custom-login.php\";s:11:\"new_version\";s:5:\"2.3.0\";s:14:\"upgrade_notice\";s:39:\"New feature and translations available.\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/erident-custom-login-and-dashboard/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/erident-custom-login-and-dashboard.2.3.0.zip\";}s:36:\"google-sitemap-generator/sitemap.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"132\";s:4:\"slug\";s:24:\"google-sitemap-generator\";s:6:\"plugin\";s:36:\"google-sitemap-generator/sitemap.php\";s:11:\"new_version\";s:5:\"4.0.4\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/google-sitemap-generator/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.4.zip\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"20101\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:5:\"2.9.3\";s:14:\"upgrade_notice\";s:63:\"Jetpack 2.9.3 fixes a security bug. Please upgrade immediately.\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.2.9.3.zip\";}s:66:\"reorder-post-within-categories/reorder-posts-within-categories.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"37066\";s:4:\"slug\";s:30:\"reorder-post-within-categories\";s:6:\"plugin\";s:66:\"reorder-post-within-categories/reorder-posts-within-categories.php\";s:11:\"new_version\";s:5:\"1.1.6\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/reorder-post-within-categories/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/reorder-post-within-categories.1.1.6.zip\";}s:46:\"wordpress-data-guards/wordpress-data-guard.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"28163\";s:4:\"slug\";s:21:\"wordpress-data-guards\";s:6:\"plugin\";s:46:\"wordpress-data-guards/wordpress-data-guard.php\";s:11:\"new_version\";s:3:\"7.1\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/wordpress-data-guards/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/wordpress-data-guards.7.1.zip\";}s:35:\"wp-easy-gallery/wp-easy-gallery.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"26611\";s:4:\"slug\";s:15:\"wp-easy-gallery\";s:6:\"plugin\";s:35:\"wp-easy-gallery/wp-easy-gallery.php\";s:11:\"new_version\";s:3:\"3.7\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-easy-gallery/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-easy-gallery.zip\";}s:21:\"yop-poll/yop_poll.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"36106\";s:4:\"slug\";s:8:\"yop-poll\";s:6:\"plugin\";s:21:\"yop-poll/yop_poll.php\";s:11:\"new_version\";s:5:\"4.9.1\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/yop-poll/\";s:7:\"package\";s:51:\"https://downloads.wordpress.org/plugin/yop-poll.zip\";}}s:12:\"translations\";a:0:{}}','yes'),(23650,'_site_transient_browser_ad0f13cf1963685b3e1355f9374f265a','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"34.0.1847.116\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(18703,'jetpack_comment_likes_enabled','0','yes'),(22350,'_site_transient_timeout_browser_5fe309ffd03bec1cf01dc81604e092b2','1397767755','yes'),(24242,'_site_transient_timeout_browser_faa733cc2b128ccb6557f494e8c70a81','1399195317','yes'),(24243,'_site_transient_browser_faa733cc2b128ccb6557f494e8c70a81','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"32.0.1700.76\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(24744,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1399349871','no'),(24745,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2014 06:27:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/?v=4.0-alpha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 3.9 “Smith”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://wordpress.org/news/2014/04/smith/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://wordpress.org/news/2014/04/smith/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Apr 2014 18:33:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3154\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:411:\"Version 3.9 of WordPress, named “Smith” in honor of jazz organist Jimmy Smith, is available for download or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love. A smoother media editing experience Improved visual editing The updated visual editor has improved speed, accessibility, and mobile support. You can paste into the […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:23279:\"<p>Version 3.9 of WordPress, named “Smith” in honor of jazz organist <a href=\"http://en.wikipedia.org/wiki/Jimmy_Smith_(musician)\">Jimmy Smith</a>, is available <a href=\"http://wordpress.org/download/\">for download</a> or update in your WordPress dashboard. This release features a number of refinements that we hope you’ll love.</p>\n<embed src=\"//v0.wordpress.com/player.swf?v=1.03\" type=\"application/x-shockwave-flash\" width=\"640\" height=\"360\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\" flashvars=\"guid=sAiXhCfV&isDynamicSeeking=true\" title=\"\"></embed>\n<h2 class=\"about-headline-callout\" style=\"text-align: center\">A smoother media editing experience</h2>\n<div>\n<p><img class=\"alignright wp-image-3168\" src=\"//wordpress.org/news/files/2014/04/editor1-300x233.jpg\" alt=\"editor\" width=\"228\" height=\"177\" /></p>\n<h3>Improved visual editing</h3>\n<p>The updated visual editor has improved speed, accessibility, and mobile support. You can paste into the visual editor from your word processor without wasting time to clean up messy styling. (Yeah, we’re talking about you, Microsoft Word.)</p>\n</div>\n<div style=\"clear: both\"></div>\n<div>\n<p><img class=\"alignright wp-image-3170\" src=\"//wordpress.org/news/files/2014/04/image1-300x233.jpg\" alt=\"image\" width=\"228\" height=\"178\" /></p>\n<h3>Edit images easily</h3>\n<p>With quicker access to crop and rotation tools, it’s now much easier to edit your images while editing posts. You can also scale images directly in the editor to find just the right fit.</p>\n</div>\n<div style=\"clear: both\"></div>\n<div>\n<p><img class=\"alignright wp-image-3187\" src=\"//wordpress.org/news/files/2014/04/dragdrop1-300x233.jpg\" alt=\"dragdrop\" width=\"228\" height=\"178\" /></p>\n<h3>Drag and drop your images</h3>\n<p>Uploading your images is easier than ever. Just grab them from your desktop and drop them in the editor.</p>\n</div>\n<div style=\"clear: both\"></div>\n<hr />\n<h2 style=\"text-align: center\">Gallery previews</h2>\n<p><img class=\"aligncenter size-full wp-image-3169\" src=\"//wordpress.org/news/files/2014/04/gallery1.jpg\" alt=\"gallery\" width=\"980\" height=\"550\" /></p>\n<p>Galleries display a beautiful grid of images right in the editor, just like they do in your published post.</p>\n<hr />\n<h2 style=\"text-align: center\">Do more with audio and video</h2>\n\n<a href=\'http://wordpress.org/news/files/2014/04/AintMisbehavin.mp3\'>Ain\'t Misbehavin\'</a>\n<a href=\'http://wordpress.org/news/files/2014/04/DavenportBlues.mp3\'>Davenport Blues</a>\n<a href=\'http://wordpress.org/news/files/2014/04/JellyRollMorton-BuddyBoldensBlues.mp3\'>Buddy Bolden\'s Blues</a>\n<a href=\'http://wordpress.org/news/files/2014/04/Johnny_Hodges_Orchestra-Squaty_Roo-1941.mp3\'>Squaty Roo</a>\n<a href=\'http://wordpress.org/news/files/2014/04/Louisiana_Five-Dixie_Blues-1919.mp3\'>Dixie Blues</a>\n<a href=\'http://wordpress.org/news/files/2014/04/WolverineBlues.mp3\'>Wolverine Blues</a>\n\n<p>Images have galleries; now we’ve added simple audio and video playlists, so you can showcase your music and clips.</p>\n<hr />\n<h2 style=\"text-align: center\">Live widget and header previews</h2>\n<div style=\"width: 692px; max-width: 100%;\" class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class=\"wp-video-shortcode\" id=\"video-3154-1\" width=\"692\" height=\"448\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"//wordpress.org/news/files/2014/04/widgets.mp4?_=1\" /><a href=\"//wordpress.org/news/files/2014/04/widgets.mp4\">//wordpress.org/news/files/2014/04/widgets.mp4</a></video></div>\n<p>Add, edit, and rearrange your site’s widgets right in the theme customizer. No “save and surprise” — preview your changes live and only save them when you’re ready.</p>\n<p>The improved header image tool also lets you upload, crop, and manage headers while customizing your theme.</p>\n<hr />\n<h2 style=\"text-align: center\">Stunning new theme browser</h2>\n<p><img class=\"aligncenter size-full wp-image-3172\" src=\"//wordpress.org/news/files/2014/04/theme1.jpg\" alt=\"theme\" width=\"1003\" height=\"558\" /><br />\nLooking for a new theme should be easy and fun. Lose yourself in the boundless supply of free WordPress.org themes with the beautiful new theme browser.</p>\n<hr />\n<h2 style=\"text-align: center\">The Crew</h2>\n<p>This release was led by <a href=\"http://nacin.com/\">Andrew Nacin</a> and <a href=\"http://www.getsource.net/\">Mike Schroder</a>, with the help of these fine individuals. There are 267 contributors with props in this release, a new high:</p>\n<p><a href=\"http://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"http://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/kawauso\">Adam Harley</a>, <a href=\"http://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"http://profiles.wordpress.org/adelval\">adelval</a>, <a href=\"http://profiles.wordpress.org/ajay\">Ajay</a>, <a href=\"http://profiles.wordpress.org/akeda\">Akeda Bagus</a>, <a href=\"http://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"http://profiles.wordpress.org/aliso\">Alison Barrett</a>, <a href=\"http://profiles.wordpress.org/collinsinternet\">Allan Collins</a>, <a href=\"http://profiles.wordpress.org/sabreuse\">Amy Hendrix (sabreuse)</a>, <a href=\"http://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"http://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/norcross\">Andrew Norcross</a>, <a href=\"http://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"http://profiles.wordpress.org/andykeith\">Andy Keith</a>, <a href=\"http://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"http://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"http://profiles.wordpress.org/aubreypwd\">Aubrey Portwood</a>, <a href=\"http://profiles.wordpress.org/barry\">Barry</a>, <a href=\"http://profiles.wordpress.org/toszcze\">Bartosz Romanowski</a>, <a href=\"http://profiles.wordpress.org/bassgang\">bassgang</a>, <a href=\"http://profiles.wordpress.org/bcworkz\">bcworkz</a>, <a href=\"http://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"http://profiles.wordpress.org/neoxx\">Bernhard Riedl</a>, <a href=\"http://profiles.wordpress.org/bigdawggi\">bigdawggi</a>, <a href=\"http://profiles.wordpress.org/bobbravo2\">Bob Gregor</a>, <a href=\"http://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"http://profiles.wordpress.org/bradt\">Brad Touesnard</a>, <a href=\"http://profiles.wordpress.org/bradparbs\">bradparbs</a>, <a href=\"http://profiles.wordpress.org/bramd\">bramd</a>, <a href=\"http://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"http://profiles.wordpress.org/brasofilo\">brasofilo</a>, <a href=\"http://profiles.wordpress.org/bravokeyl\">bravokeyl</a>, <a href=\"http://profiles.wordpress.org/bpetty\">Bryan Petty</a>, <a href=\"http://profiles.wordpress.org/cgaffga\">cgaffga</a>, <a href=\"http://profiles.wordpress.org/chiragswadia\">Chirag Swadia</a>, <a href=\"http://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"http://profiles.wordpress.org/ehg\">Chris Blower</a>, <a href=\"http://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"http://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"http://profiles.wordpress.org/chrisscott\">Chris Scott</a>, <a href=\"http://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"http://profiles.wordpress.org/chrisguitarguy\">chrisguitarguy</a>, <a href=\"http://profiles.wordpress.org/cfinke\">Christopher Finke</a>, <a href=\"http://profiles.wordpress.org/ciantic\">ciantic</a>, <a href=\"http://profiles.wordpress.org/antorome\">Comparativa de Bancos</a>, <a href=\"http://profiles.wordpress.org/cojennin\">Connor Jennings</a>, <a href=\"http://profiles.wordpress.org/corvannoorloos\">Cor van Noorloos</a>, <a href=\"http://profiles.wordpress.org/corphi\">Corphi</a>, <a href=\"http://profiles.wordpress.org/cramdesign\">cramdesign</a>, <a href=\"http://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"http://profiles.wordpress.org/redsweater\">Daniel Jalkut (Red Sweater)</a>, <a href=\"http://profiles.wordpress.org/dannydehaan\">Danny de Haan</a>, <a href=\"http://profiles.wordpress.org/koop\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/eightface\">Dave Kellam (eightface)</a>, <a href=\"http://profiles.wordpress.org/dpe415\">DaveE</a>, <a href=\"http://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"http://profiles.wordpress.org/davidanderson\">David Anderson</a>, <a href=\"http://profiles.wordpress.org/davidmarichal\">David Marichal</a>, <a href=\"http://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"http://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"http://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"http://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"http://profiles.wordpress.org/drprotocols\">DrProtocols</a>, <a href=\"http://profiles.wordpress.org/dustyf\">Dustin Filippini</a>, <a href=\"http://profiles.wordpress.org/eatingrules\">eatingrules</a>, <a href=\"http://profiles.wordpress.org/plocha\">edik</a>, <a href=\"http://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"http://profiles.wordpress.org/enej\">enej</a>, <a href=\"http://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"http://profiles.wordpress.org/ericmann\">Eric Mann</a>, <a href=\"http://profiles.wordpress.org/evarlese\">Erica Varlese</a>, <a href=\"http://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"http://profiles.wordpress.org/ejdanderson\">Evan Anderson</a>, <a href=\"http://profiles.wordpress.org/fahmiadib\">Fahmi Adib</a>, <a href=\"http://profiles.wordpress.org/fboender\">fboender</a>, <a href=\"http://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"http://profiles.wordpress.org/garyc40\">Gary Cao</a>, <a href=\"http://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"http://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"http://profiles.wordpress.org/genkisan\">genkisan</a>, <a href=\"http://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"http://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"http://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"http://profiles.wordpress.org/vancoder\">Grant Mangham</a>, <a href=\"http://profiles.wordpress.org/gcorne\">Gregory Cornelius</a>, <a href=\"http://profiles.wordpress.org/tivnet\">Gregory Karpinsky</a>, <a href=\"http://profiles.wordpress.org/hakre\">hakre</a>, <a href=\"http://profiles.wordpress.org/hanni\">hanni</a>, <a href=\"http://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"http://profiles.wordpress.org/ippetkov\">ippetkov</a>, <a href=\"http://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"http://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"http://profiles.wordpress.org/jackreichert\">Jack Reichert</a>, <a href=\"http://profiles.wordpress.org/_jameslee\">jameslee</a>, <a href=\"http://profiles.wordpress.org/avryl\">Janneke Van Dorpe</a>, <a href=\"http://profiles.wordpress.org/janrenn\">janrenn</a>, <a href=\"http://profiles.wordpress.org/jaycc\">JayCC</a>, <a href=\"http://profiles.wordpress.org/jeffsebring\">Jeff Sebring</a>, <a href=\"http://profiles.wordpress.org/jenmylo\">Jen Mylo</a>, <a href=\"http://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"http://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"http://profiles.wordpress.org/jayjdk\">Jesper Johansen (jayjdk)</a>, <a href=\"http://profiles.wordpress.org/jnielsendotnet\">jnielsendotnet</a>, <a href=\"http://profiles.wordpress.org/jartes\">Joan Artes</a>, <a href=\"http://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"http://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"http://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"http://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"http://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"http://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/jond3r\">Jonas Bolinder (jond3r)</a>, <a href=\"http://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"http://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"http://profiles.wordpress.org/joshuaabenazer\">Joshua Abenazer</a>, <a href=\"http://profiles.wordpress.org/jstraitiff\">jstraitiff</a>, <a href=\"http://profiles.wordpress.org/juliobox\">Julio Potier</a>, <a href=\"http://profiles.wordpress.org/kopepasah\">Justin Kopepasah</a>, <a href=\"http://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"http://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"http://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"http://profiles.wordpress.org/kasparsd\">Kaspars</a>, <a href=\"http://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"http://profiles.wordpress.org/kerikae\">kerikae</a>, <a href=\"http://profiles.wordpress.org/kworthington\">Kevin Worthington</a>, <a href=\"http://profiles.wordpress.org/kpdesign\">Kim Parsell</a>, <a href=\"http://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"http://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"http://profiles.wordpress.org/klihelp\">klihelp</a>, <a href=\"http://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"http://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"http://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"http://profiles.wordpress.org/drozdz\">Krzysiek Drozdz</a>, <a href=\"http://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"http://profiles.wordpress.org/lkwdwrd\">lkwdwrd</a>, <a href=\"http://profiles.wordpress.org/lpointet\">lpointet</a>, <a href=\"http://profiles.wordpress.org/ldebrouwer\">Luc De Brouwer</a>, <a href=\"http://profiles.wordpress.org/spmlucas\">Lucas Karpiuk</a>, <a href=\"http://profiles.wordpress.org/mark8barnes\">Mark Barnes</a>, <a href=\"http://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"http://profiles.wordpress.org/marventus\">Marventus</a>, <a href=\"http://profiles.wordpress.org/iammattthomas\">Matt (Thomas) Miklic</a>, <a href=\"http://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"http://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"http://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"http://profiles.wordpress.org/mdbitz\">Matthew Denton</a>, <a href=\"http://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"http://profiles.wordpress.org/mattonomics\">mattonomics</a>, <a href=\"http://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"http://profiles.wordpress.org/matveb\">Matías Ventura</a>, <a href=\"http://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"http://profiles.wordpress.org/mcadwell\">mcadwell</a>, <a href=\"http://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"http://profiles.wordpress.org/meloniq\">meloniq</a>, <a href=\"http://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"http://profiles.wordpress.org/michelwppi\">Michel - xiligroup dev</a>, <a href=\"http://profiles.wordpress.org/mcsf\">Miguel Fonseca</a>, <a href=\"http://profiles.wordpress.org/gradyetc\">Mike Burns</a>, <a href=\"http://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"http://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</a>, <a href=\"http://profiles.wordpress.org/dh-shredder\">Mike Schroder</a>, <a href=\"http://profiles.wordpress.org/mikecorkum\">mikecorkum</a>, <a href=\"http://profiles.wordpress.org/mikemanger\">mikemanger</a>, <a href=\"http://profiles.wordpress.org/mitchoyoshitaka\">mitcho (Michael Yoshitaka Erlewine)</a>, <a href=\"http://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"http://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"http://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"http://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"http://profiles.wordpress.org/alex-ye\">Nashwan Doaqan</a>, <a href=\"http://profiles.wordpress.org/nendeb55\">nendeb55</a>, <a href=\"http://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"http://profiles.wordpress.org/nicolealleyinteractivecom\">Nicole Arnold</a>, <a href=\"http://profiles.wordpress.org/nikv\">Nikhil Vimal (NikV)</a>, <a href=\"http://profiles.wordpress.org/nivijah\">Nivi Jah</a>, <a href=\"http://profiles.wordpress.org/nofearinc\">nofearinc</a>, <a href=\"http://profiles.wordpress.org/nunomorgadinho\">Nuno Morgadinho</a>, <a href=\"http://profiles.wordpress.org/olivm\">olivM</a>, <a href=\"http://profiles.wordpress.org/jbkkd\">Omer Korner</a>, <a href=\"http://profiles.wordpress.org/originalexe\">OriginalEXE</a>, <a href=\"http://profiles.wordpress.org/oso96_2000\">oso96_2000</a>, <a href=\"http://profiles.wordpress.org/patricknami\">patricknami</a>, <a href=\"http://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"http://profiles.wordpress.org/djpaul\">Paul Gibbs</a>, <a href=\"http://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"http://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/philiparthurmoore\">Philip Arthur Moore</a>, <a href=\"http://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"http://profiles.wordpress.org/nprasath002\">Prasath Nadarajah</a>, <a href=\"http://profiles.wordpress.org/prettyboymp\">prettyboymp</a>, <a href=\"http://profiles.wordpress.org/raamdev\">Raam Dev</a>, <a href=\"http://profiles.wordpress.org/rachelbaker\">rachelbaker</a>, <a href=\"http://profiles.wordpress.org/mauryaratan\">Ram Ratan Maurya</a>, <a href=\"http://profiles.wordpress.org/ramonchiara\">ramonchiara</a>, <a href=\"http://profiles.wordpress.org/ounziw\">Rescuework Support</a>, <a href=\"http://profiles.wordpress.org/rhyswynne\">Rhys Wynne</a>, <a href=\"http://profiles.wordpress.org/ricardocorreia\">Ricardo Correia</a>, <a href=\"http://profiles.wordpress.org/theorboman\">Richard Sweeney</a>, <a href=\"http://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"http://profiles.wordpress.org/richard2222\">richard2222</a>, <a href=\"http://profiles.wordpress.org/rickalee\">Ricky Lee Whittemore</a>, <a href=\"http://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"http://profiles.wordpress.org/robmiller\">robmiller</a>, <a href=\"http://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"http://profiles.wordpress.org/romaimperator\">romaimperator</a>, <a href=\"http://profiles.wordpress.org/roothorick\">roothorick</a>, <a href=\"http://profiles.wordpress.org/ruudjoyo\">ruud@joyo</a>, <a href=\"http://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"http://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"http://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"http://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>, <a href=\"http://profiles.wordpress.org/sandyr\">Sandeep</a>, <a href=\"http://profiles.wordpress.org/scottlee\">Scott Lee</a>, <a href=\"http://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"http://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/greglone\">ScreenfeedFr</a>, <a href=\"http://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"http://profiles.wordpress.org/sdasse\">sdasse</a>, <a href=\"http://profiles.wordpress.org/bootsz\">Sean Butze</a>, <a href=\"http://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"http://profiles.wordpress.org/nessworthy\">Sean Nessworthy</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/shahpranaf\">shahpranaf</a>, <a href=\"http://profiles.wordpress.org/shaunandrews\">Shaun Andrews</a>, <a href=\"http://profiles.wordpress.org/shinichin\">ShinichiN</a>, <a href=\"http://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"http://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"http://profiles.wordpress.org/siobhan\">Siobhan</a>, <a href=\"http://profiles.wordpress.org/siobhyb\">Siobhan Bamber (siobhyb)</a>, <a href=\"http://profiles.wordpress.org/sirzooro\">sirzooro</a>, <a href=\"http://profiles.wordpress.org/solarissmoke\">solarissmoke</a>, <a href=\"http://profiles.wordpress.org/sonjanyc\">sonjanyc</a>, <a href=\"http://profiles.wordpress.org/spencerfinnell\">Spencer Finnell</a>, <a href=\"http://profiles.wordpress.org/piontkowski\">Spencer Piontkowski</a>, <a href=\"http://profiles.wordpress.org/stephcook22\">stephcook22</a>, <a href=\"http://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"http://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"http://profiles.wordpress.org/sbruner\">Steve Bruner</a>, <a href=\"http://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"http://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"http://profiles.wordpress.org/tanner-m\">Tanner Moushey</a>, <a href=\"http://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"http://profiles.wordpress.org/tbrams\">tbrams</a>, <a href=\"http://profiles.wordpress.org/tellyworth\">tellyworth</a>, <a href=\"http://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"http://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"http://profiles.wordpress.org/willmot\">Tom Willmot</a>, <a href=\"http://profiles.wordpress.org/topher1kenobe\">Topher</a>, <a href=\"http://profiles.wordpress.org/topquarky\">topquarky</a>, <a href=\"http://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"http://profiles.wordpress.org/toru\">Toru</a>, <a href=\"http://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"http://profiles.wordpress.org/umeshsingla\">Umesh Kumar</a>, <a href=\"http://profiles.wordpress.org/undergroundnetwork\">undergroundnetwork</a>, <a href=\"http://profiles.wordpress.org/varunagw\">VarunAgw</a>, <a href=\"http://profiles.wordpress.org/wawco\">wawco</a>, <a href=\"http://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"http://profiles.wordpress.org/wokamoto\">wokamoto</a>, <a href=\"http://profiles.wordpress.org/xsonic\">xsonic</a>, <a href=\"http://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"http://profiles.wordpress.org/yurivictor\">Yuri Victor</a>, <a href=\"http://profiles.wordpress.org/zbtirrell\">Zach Tirrell</a>, and <a href=\"http://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>. Also thanks to <a href=\"http://michaelpick.wordpress.com/\">Michael Pick</a> for producing the release video.</p>\n<p>If you want to follow along or help out, check out <a href=\"http://make.wordpress.org/\">Make WordPress</a> and our <a href=\"http://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress. See you soon for version 4.0!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://wordpress.org/news/2014/04/smith/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.9 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Apr 2014 09:47:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3151\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:356:\"The second release candidate for WordPress 3.9 is now available for testing. If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the first release candidate, and those changes are all helpfully summarized in our weekly post on the development blog. Probably the biggest fixes are to live […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2273:\"<p>The second release candidate for WordPress 3.9 is now available for testing.</p>\n<p>If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the <a title=\"WordPress 3.9 Release Candidate\" href=\"//wordpress.org/news/2014/04/wordpress-3-9-release-candidate/\">first release candidate</a>, and those changes are all helpfully summarized <a href=\"//make.wordpress.org/core/?p=10237\">in our weekly post</a> on the development blog. Probably the biggest fixes are to live widget previews and the new theme browser, along with some extra TinyMCE compatibility and some RTL fixes.</p>\n<p><strong>Plugin authors:</strong> Could you test your plugins against 3.9, and if they’re compatible, make sure they are marked as tested up to 3.9? It only takes a few minutes and this really helps make launch easier. Be sure to follow along the core development blog; we’ve been posting <a href=\"//make.wordpress.org/core/tag/3-9-dev-notes/\">notes for developers for 3.9</a>. (For example: <a href=\"//make.wordpress.org/core/2014/04/15/html5-galleries-captions-in-wordpress-3-9/\">HTML5</a>, <a href=\"//make.wordpress.org/core/2014/04/14/symlinked-plugins-in-wordpress-3-9/\">symlinks</a>, <a href=\"//make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/\">MySQL</a>, <a href=\"//make.wordpress.org/core/2014/04/11/plupload-2-x-in-wordpress-3-9/\">Plupload</a>.)</p>\n<p>To test WordPress 3.9 RC2, try the <a href=\"//wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"//wordpress.org/wordpress-3.9-RC2.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.9, visit the nearly complete About screen in your dashboard (<strong><img src=\"//i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692\" alt=\"\" width=\"16\" height=\"16\" /> → About</strong> in the toolbar) and also check out <a title=\"WordPress 3.9 Beta 1\" href=\"//wordpress.org/news/2014/03/wordpress-3-9-beta-1/\">the Beta 1 post</a>.</p>\n<p><em>This is for testing,</em><br />\n<em>so not recommended for<br />\nproduction sites—yet.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 3.8.3 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2014/04/wordpress-3-8-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2014/04/wordpress-3-8-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Apr 2014 19:29:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3145\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:338:\"WordPress 3.8.3 is now available to fix a small but unfortunate bug in the WordPress 3.8.2 security release. The “Quick Draft” tool on the dashboard screen was broken in the 3.8.2 update. If you tried to use it, your draft would disappear and it wouldn’t save. While we doubt anyone was writing a novella using […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2339:\"<p>WordPress 3.8.3 is now available to fix a small but unfortunate bug in the <a title=\"WordPress 3.8.2 Security Release\" href=\"http://wordpress.org/news/2014/04/wordpress-3-8-2/\">WordPress 3.8.2 security release</a>.</p>\n<p>The “Quick Draft” tool on the dashboard screen was broken in the 3.8.2 update. If you tried to use it, your draft would disappear and it wouldn’t save. While we doubt anyone was writing a novella using this tool, <em>any</em> loss of content is unacceptable to us.</p>\n<p>We recognize how much trust you place in us to safeguard your content, and we take this responsibility very seriously. We’re sorry we let you down.</p>\n<p>We’ve all lost words we’ve written before, like an email thanks to a cat on the keyboard or a term paper to a blue screen of death. Over the last few WordPress releases, we’ve made a number of improvements to features like autosaves and revisions. With revisions, an old edit can always be restored. We’re trying our hardest to save your content somewhere even if your power goes out or your browser crashes. We even monitor your internet connection and prevent you from hitting that “Publish” button at the exact moment the coffee shop Wi-Fi has a hiccup.</p>\n<p>It’s <em>possible</em> that the quick draft you lost last week is still in the database, and just hidden from view. As an added complication, these “discarded drafts” normally get deleted after seven days, and it’s already been six days since the release. If we were able to rescue your draft, you’ll see it on the “All Posts” screen after you update to 3.8.3. (We’ll also be pushing 3.8.3 out as a background update, so you may just see a draft appear.)</p>\n<p>So, if you tried to jot down a quick idea last week, I hope WordPress has recovered it for you. Maybe it’ll turn into that novella.</p>\n<p><a href=\"http://wordpress.org/download/\">Download WordPress 3.8.3</a> or click “Update Now” on Dashboard → Updates.</p>\n<p><em>This affected version 3.7.2 as well, so we’re pushing a 3.7.3 to these installs, but we’d encourage you to update to the latest and greatest.</em></p>\n<hr />\n<p><em>Now for some good news:<br />\nWordPress 3.9 is near.<br />\nExpect it this week</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2014/04/wordpress-3-8-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 3.9 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Apr 2014 21:05:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3129\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:338:\"As teased earlier, the first release candidate for WordPress 3.9 is now available for testing! We hope to ship WordPress 3.9 next week, but we need your help to get there. If you haven’t tested 3.9 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.) To test WordPress 3.9 […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2967:\"<p><a href=\"//wordpress.org/news/2014/04/wordpress-3-8-2/\">As teased earlier</a>, the first release candidate for WordPress 3.9 is now available for testing!</p>\n<p>We hope to ship WordPress 3.9 <em>next week</em>, but we need your help to get there. If you haven’t tested 3.9 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</p>\n<p>To test WordPress 3.9 RC1, try the <a href=\"//wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"//wordpress.org/wordpress-3.9-RC1.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.9, visit the work-in-progress About screen in your dashboard (<strong><img src=\"//i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692\" alt=\"\" width=\"16\" height=\"16\" /> → About</strong> in the toolbar) and check out <a title=\"WordPress 3.9 Beta 1\" href=\"//wordpress.org/news/2014/03/wordpress-3-9-beta-1/\">the Beta 1 post</a>.</p>\n<p><strong>Think you’ve found a bug? </strong>Please post to the <a href=\"//wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href=\"//core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>If you’re a plugin author</strong>, there are two important changes in particular to be aware of:</p>\n<ul>\n<li>TinyMCE received a major update, to version 4.0. Any editor plugins written for TinyMCE 3.x might require some updates. (If things broke, we’d like to hear about them so we can make adjustments.) For more, see TinyMCE’s <a href=\"http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x\">migration guide</a> and <a href=\"http://www.tinymce.com/wiki.php/api4:index\">API documentation</a>, and the notes on the <a href=\"//make.wordpress.org/core/2014/01/18/tinymce-4-0-is-in-core/\">core development blog</a>.</li>\n<li>WordPress 3.9 now uses the MySQLi Improved extension for sites running PHP 5.5. Any plugins that made direct calls to <code>mysql_*</code> functions will experience some problems on these sites. For more information, see the notes on the <a href=\"//make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/\">core development blog</a>.</li>\n</ul>\n<p>Be sure to follow along the core development blog, where we will be continuing to post <a href=\"//make.wordpress.org/core/tag/3-9-dev-notes/\">notes for developers for 3.9</a>. (For example, read <a href=\"//make.wordpress.org/core/2014/03/27/masonry-in-wordpress-3-9/\">this</a> if you are using Masonry in your theme.) And please, please update your plugin’s <em>Tested up to</em> version in the readme to 3.9 before April 16.</p>\n<p><em>Release candidate<br />\nThis haiku’s the easy one<br />\n3.9 is near</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 3.8.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2014/04/wordpress-3-8-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2014/04/wordpress-3-8-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Apr 2014 19:04:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3124\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"WordPress 3.8.2 is now available. This is an important security release for all previous versions and we strongly encourage you to update your sites immediately. This releases fixes a weakness that could let an attacker force their way into your site by forging authentication cookies. This was discovered and fixed by Jon Cave of the WordPress […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2272:\"<p>WordPress 3.8.2 is now available. This is an important security release for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>This releases fixes a weakness that could let an attacker force their way into your site by forging authentication cookies. This was discovered and fixed by <a href=\"http://joncave.co.uk/\">Jon Cave</a> of the WordPress security team.</p>\n<p>It also contains a fix to prevent a user with the Contributor role from improperly publishing posts. Reported by <a href=\"http://edik.ch/\">edik</a>.</p>\n<p>This release also fixes nine bugs and contains three other security hardening changes:</p>\n<ul>\n<li>Pass along additional information when processing pingbacks to help hosts identify potentially abusive requests.</li>\n<li>Fix a low-impact SQL injection by trusted users. Reported by <a href=\"http://www.dxw.com/\">Tom Adams</a> of dxw.</li>\n<li>Prevent possible cross-domain scripting through Plupload, the third-party library WordPress uses for uploading files. Reported by <a href=\"http://szgru.website.pl/\">Szymon Gruszecki</a>.</li>\n</ul>\n<p>We appreciated <a href=\"http://codex.wordpress.org/FAQ_Security\">responsible disclosure</a> of these security issues directly to our security team. For more information on all of the changes, see the <a href=\"http://codex.wordpress.org/Version_3.8.2\">release notes</a> or consult <a href=\"https://core.trac.wordpress.org/log/branches/3.8?rev=28057&stop_rev=27024\">the list of changes</a>.</p>\n<p><a href=\"http://wordpress.org/download/\">Download WordPress 3.8.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Sites that support automatic background updates will be updated to WordPress 3.8.2 within 12 hours. If you are still on WordPress 3.7.1, you will be updated to 3.7.2, which contains the same security fixes as 3.8.2. We don’t support older versions, so please update to 3.8.2 for the latest and greatest.</p>\n<p>Already testing WordPress 3.9? The first release candidate is <a href=\"https://wordpress.org/wordpress-3.9-RC1.zip\">now available</a> (zip) and it contains these security fixes. Look for a full announcement later today; we expect to release 3.9 next week.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2014/04/wordpress-3-8-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 3.9 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Mar 2014 13:15:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3106\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"The third (and maybe last) beta of WordPress 3.9 is now available for download. Beta 3 includes more than 200 changes, including: New features like live widget previews and the new theme installer are now more ready for prime time, so check ‘em out. UI refinements when editing images and when working with media in the editor. We’ve also brought […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2668:\"<p>The third (and maybe last) beta of WordPress 3.9 is now available for download.</p>\n<p>Beta 3 includes more than 200 <a href=\"https://core.trac.wordpress.org/log?rev=27850&stop_rev=27639&limit=300\">changes</a>, including:</p>\n<ul>\n<li>New features like live widget previews and the new theme installer are now more ready for prime time, so check ‘em out.</li>\n<li>UI refinements when editing images and when working with media in the editor. We’ve also brought back some of the advanced display settings for images.</li>\n<li>If you want to test out audio and video playlists, the links will appear in the media manager once you’ve uploaded an audio or video file.</li>\n<li>For theme developers, we’ve added HTML5 caption support (<a class=\"reopened ticket\" title=\"task (blessed): HTML5 captions (reopened)\" href=\"https://core.trac.wordpress.org/ticket/26642\">#26642</a>) to match the new gallery support (<a class=\"closed ticket\" title=\"enhancement: HTML5 Galleries (closed: fixed)\" href=\"https://core.trac.wordpress.org/ticket/26697\">#26697</a>).</li>\n<li>The formatting function that turns straight quotes into smart quotes (among other things) underwent some changes to drastically speed it up, so let us know if you see anything weird.</li>\n</ul>\n<p><strong>We need your help</strong>. We’re still aiming for an April release, which means the next week will be critical for identifying and squashing bugs. If you’re just joining us, please see <a href=\"https://wordpress.org/news/2014/03/wordpress-3-9-beta-1/\">the Beta 1 announcement post</a> for what to look out for.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums, where friendly moderators are standing by. <b>Plugin developers</b><strong>,</strong> if you haven’t tested WordPress 3.9 yet, now is the time — and be sure to update the “tested up to” version for your plugins so they’re listed as compatible with 3.9.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 3.9, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.9-beta3.zip\">download the beta here</a> (zip).</p>\n<p><em>WordPress 3.9<br />\nLet’s make the date official<br />\nIt’s April 16</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 3.9 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Mar 2014 05:01:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3101\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:309:\"WordPress 3.9 Beta 2 is now available for testing! We’ve made more than a hundred changes since Beta 1, but we still need your help if we’re going to hit our goal of an April release. For what to look out for, please head on over to the Beta 1 announcement post. Some of the changes in […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1901:\"<p>WordPress 3.9 Beta 2 is now available for testing!</p>\n<p>We’ve made more than a hundred <a href=\"https://core.trac.wordpress.org/log?rev=27639&stop_rev=27500&limit=200\">changes</a> since Beta 1, but we still need your help if we’re going to hit our goal of an April release. For what to look out for, please head on over to <a href=\"https://wordpress.org/news/2014/03/wordpress-3-9-beta-1/\">the Beta 1 announcement post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Rendering of embedded audio and video players directly in the visual editor.</li>\n<li>Visual and functional improvements to the editor, the media manager, and theme installer.</li>\n<li>Various bug fixes to TinyMCE, the software behind the visual editor.</li>\n<li>Lots of fixes to widget management in the theme customizer.</li>\n</ul>\n<p>As always,<strong> if you think you’ve found a bug</strong>, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.9\">everything we’ve fixed</a> so far.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 3.9, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.9-beta2.zip\">download the beta here</a> (zip).</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:45:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 3.9 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Mar 2014 13:42:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3083\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"I’m excited to announce that the first beta of WordPress 3.9 is now available for testing. WordPress 3.9 is due out next month — but in order to hit that goal, we need your help testing all of the goodies we’ve added: We updated TinyMCE, the software powering the visual editor, to the latest version. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6065:\"<p>I’m excited to announce that the <strong>first beta of WordPress 3.9</strong> is now available for testing.</p>\n<p>WordPress 3.9 is due out next month — but in order to hit that goal, <strong>we need your help</strong> testing all of the goodies we’ve added:</p>\n<ul>\n<li>We updated TinyMCE, the software powering the visual editor, to the latest version. Be on the lookout for cleaner markup. Also try the new paste handling — if you paste in a block of text from Microsoft Word, for example, it will no longer come out terrible. (The “Paste from Word” button you probably never noticed has been removed.) It’s possible some plugins that added stuff to the visual editor (like a new toolbar button) no longer work, so we’d like to hear about them (<a href=\"https://core.trac.wordpress.org/ticket/24067\">#24067</a>). (And be sure to <a href=\"http://wordpress.org/support/\">open a support thread</a> for the plugin author.)</li>\n<li>We’ve added <strong>widget management to live previews</strong> (the customizer). Please test editing, adding, and rearranging widgets! (<a href=\"https://core.trac.wordpress.org/ticket/27112\">#27112</a>) We’ve also added the ability to upload, crop, and manage header images, without needing to leave the preview. (<a href=\"https://core.trac.wordpress.org/ticket/21785\">#21785</a>)</li>\n<li>We brought 3.8′s beautiful new theme browsing experience to the <strong>theme installer</strong>. Check it out! (<a title=\"View ticket\" href=\"https://core.trac.wordpress.org/ticket/27055\">#27055</a>)</li>\n<li><strong>Galleries</strong> now receive a live preview in the editor. Upload some photos and insert a gallery to see this in action. (<a href=\"https://core.trac.wordpress.org/ticket/26959\">#26959</a>)</li>\n<li>You can now <strong>drag-and-drop</strong> images directly onto the editor to upload them. It can be a bit finicky, so try it and help us work out the kinks. (<a href=\"https://core.trac.wordpress.org/ticket/19845\">#19845</a>)</li>\n<li>Some things got improved around <strong>editing images</strong>. It’s a lot easier to make changes to an image after you insert it into a post (<a class=\"closed\" title=\"View ticket\" href=\"https://core.trac.wordpress.org/ticket/24409\">#24409</a>) and you no longer get kicked to a new window when you need to crop or rotate an image (<a href=\"https://core.trac.wordpress.org/ticket/21811\">#21811</a>).</li>\n<li>New <strong>audio/video playlists</strong>. Upload a few audio or video files to test these. (<a href=\"https://core.trac.wordpress.org/ticket/26631\">#26631</a>)</li>\n</ul>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.9\">everything we’ve fixed</a> so far.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 3.9, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.9-beta1.zip\">download the beta here</a> (zip).</p>\n<hr />\n<p><strong>DEVELOPERS!</strong> Hello! There’s lots for you, too.</p>\n<p><strong>Please test your plugins and themes!</strong> There’s a lot of great stuff under the hood in 3.9 and we hope to blog a bit about them in the coming days. If you haven’t been reading the awesome <a href=\"http://make.wordpress.org/core/tag/week-in-core/\">weekly summaries</a> on the <a href=\"http://make.wordpress.org/core/\">main core development blog</a>, that’s a great place to start. (You should definitely follow that blog.) For now, here are some things to watch out for when testing:</p>\n<ul>\n<li>The <strong>load process in multisite</strong> got rewritten. If you notice any issues with your network, see <a href=\"https://core.trac.wordpress.org/ticket/27003\">#27003</a>.</li>\n<li>We now use the <strong>MySQL Improved (mysqli) database extension</strong> if you’re running a recent version of PHP (<a href=\"https://core.trac.wordpress.org/ticket/21663\">#21663</a>). Please test your plugins and see that everything works well, and please make sure you’re not calling <code>mysql_*</code> functions directly.</li>\n<li><strong>Autosave</strong> was refactored, so if you see any issues related to autosaving, heartbeat, etc., let us know (<a href=\"https://core.trac.wordpress.org/ticket/25272\">#25272</a>).</li>\n<li>Library updates, in particular Backbone 1.1 and Underscore 1.6 (<a href=\"https://core.trac.wordpress.org/ticket/26799\">#26799</a>). Also Masonry 3 (<a href=\"https://core.trac.wordpress.org/ticket/25351\">#25351</a>), PHPMailer (<a href=\"https://core.trac.wordpress.org/ticket/25560\">#25560</a>), Plupload (<a href=\"https://core.trac.wordpress.org/ticket/25663\">#25663</a>), and TinyMCE (<a href=\"https://core.trac.wordpress.org/ticket/24067\">#24067</a>).</li>\n<li>TinyMCE 4.0 is a <em>major</em> update. Please see TinyMCE’s <a href=\"http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x\">upgrade guide</a> and our <a href=\"https://core.trac.wordpress.org/ticket/24067\">implementation ticket</a> for more. If you have any questions or problems, please <a href=\"http://wordpress.org/support/forum/alphabeta\">open a thread in the support forums</a>.</li>\n</ul>\n<p>Happy testing!</p>\n<p><em><em>Lots of improvements<br />\nLittle things go a long way</em><br />\nPlease test beta one<br />\n</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 3.8.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2014/01/wordpress-3-8-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2014/01/wordpress-3-8-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Jan 2014 20:37:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=3063\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"After six weeks and more than 9.3 million downloads of WordPress 3.8, we’re pleased to announce WordPress 3.8.1 is now available. Version 3.8.1 is a maintenance releases that addresses 31 bugs in 3.8, including various fixes and improvements for the new dashboard design and new themes admin screen. An issue with taxonomy queries in WP_Query […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3809:\"<p>After six weeks and more than <a href=\"http://wordpress.org/download/counter/\">9.3 million downloads</a> of WordPress 3.8, we’re pleased to announce WordPress 3.8.1 is now available.</p>\n<p>Version 3.8.1 is a maintenance releases that addresses 31 bugs in 3.8, including various fixes and improvements for the new dashboard design and new themes admin screen. An issue with taxonomy queries in WP_Query was resolved. And if you’ve been frustrated by submit buttons that won’t do anything when you click on them (or thought you were going crazy, like some of us), we’ve found and fixed this “dead zone” on submit buttons.</p>\n<p>It also contains a fix for <strong>embedding tweets</strong> (by placing the URL to the tweet on its own line), which was broken due to a recent Twitter API change. (For more on Embeds, see <a href=\"http://codex.wordpress.org/Embeds\">the Codex</a>.)</p>\n<p>For a full list of changes, consult the <a href=\"http://core.trac.wordpress.org/query?milestone=3.8.1\">list of tickets</a> and <a href=\"https://core.trac.wordpress.org/log/branches/3.8?rev=27018&stop_rev=26862\">the changelog</a>. There’s also a <a href=\"http://make.wordpress.org/core/2014/01/22/wordpress-3-8-1-release-candidate/\">detailed summary</a> for developers on the development blog.</p>\n<p>If you are one of the millions already running WordPress 3.8, we will start rolling out automatic background updates for WordPress 3.8.1 in the next few hours. For sites <a href=\"http://wordpress.org/plugins/background-update-tester/\">that support them</a>, of course.</p>\n<p><a href=\"http://wordpress.org/download/\">Download WordPress 3.8.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Thanks to all of these fine individuals for contributing to 3.8.1:</p>\n<p><a href=\"http://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/collinsinternet\">Allan Collins</a>, <a href=\"http://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/aubreypwd\">Aubrey Portwood</a>, <a href=\"http://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"http://profiles.wordpress.org/cojennin\">Connor Jennings</a>, <a href=\"http://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"http://profiles.wordpress.org/fboender\">fboender</a>, <a href=\"http://profiles.wordpress.org/avryl\">Janneke Van Dorpe</a>, <a href=\"http://profiles.wordpress.org/janrenn\">janrenn</a>, <a href=\"http://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"#\">José Pino</a>, <a href=\"http://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"http://profiles.wordpress.org/matveb\">Matias Ventura</a>, <a href=\"http://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"http://profiles.wordpress.org/iammattthomas\">Matt Thomas</a>, <a href=\"http://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"http://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"http://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"http://profiles.wordpress.org/nivijah\">nivijah</a>, <a href=\"http://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/undergroundnetwork\">undergroundnetwork</a>, and <a href=\"http://profiles.wordpress.org/yurivictor\">Yuri Victor</a>.</p>\n<p><em>WordPress three eight one<br />\nWe heard you didn’t like bugs<br />\nSo we took them out</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2014/01/wordpress-3-8-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:42:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 3.8 “Parker”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://wordpress.org/news/2013/12/parker/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2013/12/parker/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 Dec 2013 17:00:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2765\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:354:\"Version 3.8 of WordPress, named “Parker” in honor of Charlie Parker, bebop innovator, is available for download or update in your WordPress dashboard. We hope you’ll think this is the most beautiful update yet. Introducing a modern new design WordPress has gotten a facelift. 3.8 brings a fresh new look to the entire admin dashboard. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:19099:\"<p>Version 3.8 of WordPress, named “Parker” in honor of <a href=\"http://en.wikipedia.org/wiki/Charlie_Parker\">Charlie Parker</a>, bebop innovator, is available <a href=\"http://wordpress.org/download/\">for download</a> or update in your WordPress dashboard. We hope you’ll think this is the most beautiful update yet.</p>\n<div id=\"v-6wORgoGb-1\" class=\"video-player\"><embed id=\"v-6wORgoGb-1-video\" src=\"http://s0.videopress.com/player.swf?v=1.03&guid=6wORgoGb&isDynamicSeeking=true\" type=\"application/x-shockwave-flash\" width=\"692\" height=\"388\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\"></embed></div>\n<h2 class=\"aligncenter\">Introducing a modern new design</h2>\n<p><img class=\"wp-image-2951 aligncenter\" alt=\"overview\" src=\"http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/overview.jpg?resize=623%2C193\" data-recalc-dims=\"1\" /></p>\n<p>WordPress has gotten a facelift. 3.8 brings a fresh new look to the entire admin dashboard. Gone are overbearing gradients and dozens of shades of grey — bring on a bigger, bolder, more colorful design!</p>\n<p><img class=\"aligncenter wp-image-2856\" style=\"margin-left: 0;margin-right: 0\" alt=\"about-modern-wordpress\" src=\"http://i2.wp.com/wpdotorg.files.wordpress.com/2013/12/design.png?resize=623%2C151\" data-recalc-dims=\"1\" /></p>\n<h3>Modern aesthetic</h3>\n<p>The new WordPress dashboard has a fresh, uncluttered design that embraces clarity and simplicity.</p>\n<h3>Clean typography</h3>\n<p>The Open Sans typeface provides simple, friendly text that is optimized for both desktop and mobile viewing. It’s even open source, just like WordPress.</p>\n<h3>Refined contrast</h3>\n<p>We think beautiful design should never sacrifice legibility. With superior contrast and large, comfortable type, the new design is easy to read and a pleasure to navigate.</p>\n<hr />\n<h2 class=\"aligncenter\">WordPress on every device</h2>\n<p><img class=\"alignright wp-image-2984\" alt=\"responsive\" src=\"http://i2.wp.com/wpdotorg.files.wordpress.com/2013/12/responsive.jpg?resize=255%2C255\" data-recalc-dims=\"1\" />We all access the internet in different ways. Smartphone, tablet, notebook, desktop — no matter what you use, WordPress will adapt and you’ll feel right at home.</p>\n<h3>High definition at high speed</h3>\n<p>WordPress is sharper than ever with new vector-based icons that scale to your screen. By ditching pixels, pages load significantly faster, too.</p>\n<hr />\n<h2 class=\"aligncenter\">Admin color schemes to match your personality</h2>\n<p><img class=\"aligncenter wp-image-2954\" alt=\"colors\" src=\"http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/colors.jpg?resize=623%2C339\" data-recalc-dims=\"1\" /></p>\n<p>WordPress just got a colorful new update. We’ve included eight new admin color schemes so you can pick the one that suits you best.</p>\n<p>Color schemes can be previewed and changed from your Profile page.</p>\n<hr />\n<h2 class=\"aligncenter\">Refined theme management</h2>\n<p><img class=\"alignright wp-image-2967\" alt=\"themes\" src=\"http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/themes.jpg?resize=360%2C344\" data-recalc-dims=\"1\" />The new themes screen lets you survey your themes at a glance. Or want more information? Click to discover more. Then sit back and use your keyboard’s navigation arrows to flip through every theme you’ve got.</p>\n<h3>Smoother widget experience</h3>\n<p>Drag-drag-drag. Scroll-scroll-scroll. Widget management can be complicated. With the new design, we’ve worked to streamline the widgets screen.</p>\n<p>Have a large monitor? Multiple widget areas stack side-by-side to use the available space. Using a tablet? Just tap a widget to add it.</p>\n<hr />\n<h2 class=\"aligncenter\">Twenty Fourteen, a sleek new magazine theme</h2>\n<p><img class=\"aligncenter size-large wp-image-2789\" alt=\"The new Twenty Fourteen theme displayed on a laptop. tablet and phone\" src=\"http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/twentyfourteen.jpg?resize=692%2C275\" data-recalc-dims=\"1\" /></p>\n<h3>Turn your blog into a magazine</h3>\n<p>Create a beautiful magazine-style site with WordPress and Twenty Fourteen. Choose a grid or a slider to display featured content on your homepage. Customize your site with three widget areas or change your layout with two page templates.</p>\n<p>With a striking design that does not compromise our trademark simplicity, Twenty Fourteen is our most intrepid default theme yet.</p>\n<hr />\n<h2>Beginning of a new era</h2>\n<p>This release was led by Matt Mullenweg. This is our second release using the new plugin-first development process, with a much shorter timeframe than in the past. We think it’s been going great. You can check out the features currently in production on the <a title=\"Make WordPress Core\" href=\"http://make.wordpress.org/core/\" target=\"_blank\">make/core blog</a>.</p>\n<p>There are 188 contributors with props in this release:</p>\n<p><a href=\"http://profiles.wordpress.org/aaronholbrook\">Aaron Holbrook</a>, <a href=\"http://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/adamsilverstein\">adamsilverstein</a>, <a href=\"http://profiles.wordpress.org/admiralthrawn\">admiralthrawn</a>, <a href=\"http://profiles.wordpress.org/ahoereth\">Alexander Hoereth</a>, <a href=\"http://profiles.wordpress.org/collinsinternet\">Allan Collins</a>, <a href=\"http://profiles.wordpress.org/sabreuse\">Amy Hendrix (sabreuse)</a>, <a href=\"http://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/aralbald\">Andrey Kabakchiev</a>, <a href=\"http://profiles.wordpress.org/andykeith\">Andy Keith</a>, <a href=\"http://profiles.wordpress.org/apeatling\">Andy Peatling</a>, <a href=\"http://profiles.wordpress.org/ankitgadertcampcom\">Ankit Gade</a>, <a href=\"http://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"http://profiles.wordpress.org/fliespl\">Arkadiusz Rzadkowolski</a>, <a href=\"http://profiles.wordpress.org/aubreypwd\">Aubrey Portwood</a>, <a href=\"http://profiles.wordpress.org/bassgang\">bassgang</a>, <a href=\"http://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"http://profiles.wordpress.org/bananastalktome\">Billy Schneider</a>, <a href=\"http://profiles.wordpress.org/binarymoon\">binarymoon</a>, <a href=\"http://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"http://profiles.wordpress.org/bramd\">bramd</a>, <a href=\"http://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"http://profiles.wordpress.org/rzen\">Brian Richards</a>, <a href=\"http://profiles.wordpress.org/bpetty\">Bryan Petty</a>, <a href=\"http://profiles.wordpress.org/calin\">Calin Don</a>, <a href=\"http://profiles.wordpress.org/carldanley\">Carl Danley</a>, <a href=\"http://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"http://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"http://profiles.wordpress.org/chrisbliss18\">Chris Jean</a>, <a href=\"http://profiles.wordpress.org/iblamefish\">Clinton Montague</a>, <a href=\"http://profiles.wordpress.org/cojennin\">Connor Jennings</a>, <a href=\"http://profiles.wordpress.org/corphi\">Corphi</a>, <a href=\"http://profiles.wordpress.org/dbernar1\">Dan Bernardic</a>, <a href=\"http://profiles.wordpress.org/danieldudzic\">Daniel Dudzic</a>, <a href=\"http://profiles.wordpress.org/koop\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/datafeedrcom\">datafeedr</a>, <a href=\"http://profiles.wordpress.org/lessbloat\">Dave Martin</a>, <a href=\"http://profiles.wordpress.org/drw158\">Dave Whitley</a>, <a href=\"http://profiles.wordpress.org/designsimply\">designsimply</a>, <a href=\"http://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"http://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"http://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"http://profiles.wordpress.org/dziudek\">dziudek</a>, <a href=\"http://profiles.wordpress.org/plocha\">edik</a>, <a href=\"http://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"http://profiles.wordpress.org/ericmann\">Eric Mann</a>, <a href=\"http://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"http://profiles.wordpress.org/evansolomon\">Evan Solomon</a>, <a href=\"http://profiles.wordpress.org/faison\">Faison</a>, <a href=\"http://profiles.wordpress.org/fboender\">fboender</a>, <a href=\"http://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"http://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"http://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"http://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"http://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"http://profiles.wordpress.org/gnarf37\">gnarf37</a>, <a href=\"http://profiles.wordpress.org/tivnet\">Gregory Karpinsky</a>, <a href=\"http://profiles.wordpress.org/hanni\">hanni</a>, <a href=\"http://profiles.wordpress.org/helen\">Helen Hou-Sandi</a>, <a href=\"http://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"http://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"http://profiles.wordpress.org/isaackeyet\">Isaac Keyet</a>, <a href=\"http://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"http://profiles.wordpress.org/jacklenox\">Jack Lenox</a>, <a href=\"http://profiles.wordpress.org/janhenckens\">janhenckens</a>, <a href=\"http://profiles.wordpress.org/avryl\">Janneke Van Dorpe</a>, <a href=\"http://profiles.wordpress.org/janrenn\">janrenn</a>, <a href=\"http://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"http://profiles.wordpress.org/jeffr0\">Jeff Chandler</a>, <a href=\"http://profiles.wordpress.org/jenmylo\">Jen Mylo</a>, <a href=\"http://profiles.wordpress.org/buffler\">Jeremy Buller</a>, <a href=\"http://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"http://profiles.wordpress.org/jeherve\">Jeremy Herve</a>, <a href=\"http://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"http://profiles.wordpress.org/jayjdk\">Jesper Johansen (jayjdk)</a>, <a href=\"http://profiles.wordpress.org/jhned\">jhned</a>, <a href=\"http://profiles.wordpress.org/jim912\">jim912</a>, <a href=\"http://profiles.wordpress.org/jartes\">Joan Artes</a>, <a href=\"http://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"http://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"http://profiles.wordpress.org/johnafish\">John Fish</a>, <a href=\"http://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"http://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"http://profiles.wordpress.org/joshuaabenazer\">Joshua Abenazer</a>, <a href=\"http://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"http://profiles.wordpress.org/devesine\">Justin de Vesine</a>, <a href=\"http://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"http://profiles.wordpress.org/kadamwhite\">K. Adam White</a>, <a href=\"http://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"http://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"http://profiles.wordpress.org/littlethingsstudio\">Kate Whitley</a>, <a href=\"http://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"http://profiles.wordpress.org/kpdesign\">Kim Parsell</a>, <a href=\"http://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"http://profiles.wordpress.org/koki4a\">Konstantin Dankov</a>, <a href=\"http://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"http://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"http://profiles.wordpress.org/drozdz\">Krzysiek Drozdz</a>, <a href=\"http://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"http://profiles.wordpress.org/lite3\">lite3</a>, <a href=\"http://profiles.wordpress.org/lucp\">Luc Princen</a>, <a href=\"http://profiles.wordpress.org/latz\">Lutz Schroer</a>, <a href=\"http://profiles.wordpress.org/mako09\">Mako</a>, <a href=\"http://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/markmcwilliams\">Mark McWilliams</a>, <a href=\"http://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"http://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"http://profiles.wordpress.org/iammattthomas\">Matt Thomas</a>, <a href=\"http://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"http://profiles.wordpress.org/mdbitz\">Matthew Denton</a>, <a href=\"http://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"http://profiles.wordpress.org/mattonomics\">mattonomics</a>, <a href=\"http://profiles.wordpress.org/matveb\">Matías Ventura</a>, <a href=\"http://profiles.wordpress.org/megane9988\">megane9988</a>, <a href=\"http://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"http://profiles.wordpress.org/micahwave\">micahwave</a>, <a href=\"http://profiles.wordpress.org/cainm\">Michael Cain</a>, <a href=\"http://profiles.wordpress.org/mitchoyoshitaka\">Michael Erlewine</a>, <a href=\"http://profiles.wordpress.org/michelwppi\">Michel - xiligroup dev</a>, <a href=\"http://profiles.wordpress.org/chellycat\">Michelle Langston</a>, <a href=\"http://profiles.wordpress.org/gradyetc\">Mike Burns</a>, <a href=\"http://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"http://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"http://profiles.wordpress.org/dh-shredder\">Mike Schroder</a>, <a href=\"http://profiles.wordpress.org/dimadin\">Milan Dinic</a>, <a href=\"http://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"http://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"http://profiles.wordpress.org/mt8biz\">moto hachi</a>, <a href=\"http://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"http://profiles.wordpress.org/neil_pie\">Neil Pie</a>, <a href=\"http://profiles.wordpress.org/nickdaugherty\">Nick Daugherty</a>, <a href=\"http://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"http://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"http://profiles.wordpress.org/ninio\">ninio</a>, <a href=\"http://profiles.wordpress.org/ninnypants\">ninnypants</a>, <a href=\"http://profiles.wordpress.org/nivijah\">Nivi Jah</a>, <a href=\"http://profiles.wordpress.org/nofearinc\">nofearinc</a>, <a href=\"http://profiles.wordpress.org/nvwd\">Nowell VanHoesen</a>, <a href=\"http://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"http://profiles.wordpress.org/originalexe\">OriginalEXE</a>, <a href=\"http://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"http://profiles.wordpress.org/pauldewouters\">Paul de Wouters</a>, <a href=\"http://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/senlin\">Piet</a>, <a href=\"http://profiles.wordpress.org/ptahdunbar\">Ptah Dunbar</a>, <a href=\"http://profiles.wordpress.org/raamdev\">Raam Dev</a>, <a href=\"http://profiles.wordpress.org/bamadesigner\">Rachel Carden</a>, <a href=\"http://profiles.wordpress.org/rachelbaker\">rachelbaker</a>, <a href=\"http://profiles.wordpress.org/radices\">Radices</a>, <a href=\"http://profiles.wordpress.org/mauryaratan\">Ram Ratan Maurya</a>, <a href=\"http://profiles.wordpress.org/defries\">Remkus de Vries</a>, <a href=\"http://profiles.wordpress.org/ounziw\">Rescuework Support</a>, <a href=\"http://profiles.wordpress.org/rickalee\">Ricky Lee Whittemore</a>, <a href=\"http://profiles.wordpress.org/rdall\">Robert Dall</a>, <a href=\"http://profiles.wordpress.org/wet\">Robert Wetzlmayr, PHP-Programmierer</a>, <a href=\"http://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"http://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"http://profiles.wordpress.org/otto42\">Samuel Wood</a>, <a href=\"http://profiles.wordpress.org/sanchothefat\">sanchothefat</a>, <a href=\"http://profiles.wordpress.org/sboisvert\">sboisvert</a>, <a href=\"http://profiles.wordpress.org/scottbasgaard\">Scott Basgaard</a>, <a href=\"http://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"http://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"http://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/shaunandrews\">Shaun Andrews</a>, <a href=\"http://profiles.wordpress.org/shinichin\">ShinichiN</a>, <a href=\"http://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"http://profiles.wordpress.org/siobhan\">Siobhan</a>, <a href=\"http://profiles.wordpress.org/siobhyb\">Siobhan Bamber (siobhyb)</a>, <a href=\"http://profiles.wordpress.org/sirbrillig\">sirbrillig</a>, <a href=\"http://profiles.wordpress.org/solarissmoke\">solarissmoke</a>, <a href=\"http://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"http://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"http://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"http://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"http://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"http://profiles.wordpress.org/tmtoy\">Takuma Morikawa</a>, <a href=\"http://profiles.wordpress.org/tellyworth\">tellyworth</a>, <a href=\"http://profiles.wordpress.org/thomasguillot\">Thomas Guillot</a>, <a href=\"http://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"http://profiles.wordpress.org/tillkruess\">Till Krüss</a>, <a href=\"http://profiles.wordpress.org/tlamedia\">TLA Media</a>, <a href=\"http://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"http://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"http://profiles.wordpress.org/tommcfarlin\">tommcfarlin</a>, <a href=\"http://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"http://profiles.wordpress.org/taupecat\">Tracy Rotton</a>, <a href=\"http://profiles.wordpress.org/trishasalas\">trishasalas</a>, <a href=\"http://profiles.wordpress.org/mbmufffin\">Tyler Smith</a>, <a href=\"http://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"http://profiles.wordpress.org/undergroundnetwork\">undergroundnetwork</a>, <a href=\"http://profiles.wordpress.org/l10n\">Vladimir</a>, <a href=\"http://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"http://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"http://profiles.wordpress.org/yonasy\">yonasy</a>, <a href=\"http://profiles.wordpress.org/yurivictor\">Yuri Victor</a>, and <a href=\"http://profiles.wordpress.org/tollmanz\">Zack Tollman</a>. Also thanks to <a href=\"http://benmorrison.org/\">Ben Morrison</a> and <a href=\"http://christineswebb.com/\">Christine Webb</a> for help with the video.</p>\n<p>Thanks for choosing WordPress. See you soon for version 3.9!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://wordpress.org/news/2013/12/parker/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:31:\"http://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 05 May 2014 16:17:50 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"x-pingback\";s:36:\"http://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Thu, 01 May 2014 06:27:46 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20131113023809\";}','no'),(24760,'_transient_timeout_feed_77fa140e07ce53fe8c87136636f83d72','1399349872','no'),(24761,'_transient_feed_77fa140e07ce53fe8c87136636f83d72','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/plugins/browse/new/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 May 2014 15:55:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"SearchWP Live Ajax Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/plugins/searchwp-live-ajax-search/#post-67036\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 May 2014 05:02:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"67036@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Template powered live search for any WordPress theme.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Jonathan Christopher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Cubify WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/cubify-wp/#post-66987\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 May 2014 18:27:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"66987@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Cubify your content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Justin Sternberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Display You Tube Videos\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/plugins/display-you-tube-videos/#post-66931\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2014 08:16:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"66931@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Diplay You Tube Video Plugin for Wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"er.sushilg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Tooltip CK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/tooltip-ck/#post-66764\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Apr 2014 10:34:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"66764@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Tooltip CK allows you to put some nice tooltip effects into your content.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"ced1870\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"OpeningTimes.in\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/openingtimesin/#post-66709\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Apr 2014 13:32:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"66709@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"OpeningTimes.in plugin makes your customers life better through easy and simple access to opening times information.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"OpeningTimes.in\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Keyboard Save\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/keyboard-save/#post-66968\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 May 2014 03:23:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"66968@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"A simple WordPress plugin to extend save functionality to your keyboard outside of the general editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Timothy Wood\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Connections Business Directory Hours\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wordpress.org/plugins/connections-business-directory-hours/#post-67012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 May 2014 15:44:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"67012@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Adds the ability to add hours hours to an entry.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"shazahm1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WP Brand Identity Lite\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/wp-brand-identity-lite/#post-66974\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 May 2014 08:52:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"66974@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"Customize WordPress admin, set your own logo, customize login form, hide admin bar, restrict access to wp-admin for subscribers.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"CircleWaves Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Uptime Robot\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/plugins/uptime-robot-by-utopian-themes/#post-66947\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2014 19:44:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"66947@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"A simple Wordpress dashboard widget that shows you the current uptime stats of your Uptime Robot monitored websites.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"brianwelch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Full Width Responsive Portfolio\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/plugins/full-width-responsive-portfolio/#post-66767\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Apr 2014 12:46:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"66767@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"Add a full width responsive portfolio to your website with a user-friendly UI and shortcodes.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"templategraphy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Give It Away Now!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/give-it-away-now/#post-66917\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Apr 2014 23:59:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"66917@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"A WordPress plugin for creating online giveaways and contests. Users can enter email drawings daily.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"EthanT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Codeblocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/codeblocks/#post-66952\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 May 2014 00:24:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"66952@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Add formatted code blocks into your blog posts.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"z43 Studio\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress Nicescroll\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/sis-nicescroll/#post-66986\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 May 2014 16:39:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"66986@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Nicescroll is a jquery plugin for WordPress site, for nice scrollbars with a very similar ios/mobile style.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"sayful\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"DivX Web Player Generator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/plugins/divx-web-player-generator/#post-65169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 16 Mar 2014 17:15:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"65169@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"This plugin help you to generate dvix player for your stream url, simple to use you just need to put url video and define proportion and you will have\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"ipapine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"MiwoFTP - WordPress File Manager\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/miwoftp/#post-66771\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Apr 2014 15:05:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"66771@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"MiwoFTP is a smart, fast and lightweight file manager plugin that operates from the back-end of WordPress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Miwisoft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:42:\"https://wordpress.org/plugins/rss/view/new\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 05 May 2014 16:17:52 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:7:\"expires\";s:29:\"Mon, 05 May 2014 16:30:25 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Mon, 05 May 2014 15:55:25 +0000\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20131113023809\";}','no'),(24762,'_transient_timeout_feed_mod_77fa140e07ce53fe8c87136636f83d72','1399349872','no'),(24763,'_transient_feed_mod_77fa140e07ce53fe8c87136636f83d72','1399306672','no'),(24766,'_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e','1399349875','no'),(24738,'_transient_timeout_feed_d972058def72f330738e3f23f7e0b363','1399349870','no'),(24739,'_transient_feed_d972058def72f330738e3f23f7e0b363','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:4:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:33:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"link:http://0332c8e.netsolhost.com/WordPress/ - Google Blog Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://www.google.com/search?ie=utf-8&q=link:http://0332c8e.netsolhost.com/WordPress/&tbm=blg&tbs=sbd:1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"Your search - <b>link:http://0332c8e.netsolhost.com/WordPress/</b> - did not match any documents.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:12:\"content-type\";s:28:\"text/xml; charset=ISO-8859-1\";s:4:\"date\";s:29:\"Mon, 05 May 2014 16:17:50 GMT\";s:7:\"expires\";s:2:\"-1\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:10:\"set-cookie\";a:2:{i:0;s:143:\"PREF=ID=116b2a4802a29fc1:FF=0:TM=1399306670:LM=1399306670:S=AOL5i_9Vtifjn71m; expires=Wed, 04-May-2016 16:17:50 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=67=L6Eh3-NeqqBlXZa-P_tquKnxq8SI6fb2bDgVQU7qB847mnsukEexp4dUwmAVyotiZ1XVc2-ouU90jQj_7F2gdhQM76Kr3Wr2uDwuQ6sCnNdDFbH_bxeVEbnojAVlIz7J; expires=Tue, 04-Nov-2014 16:17:50 GMT; path=/; domain=.google.com; HttpOnly\";}s:3:\"p3p\";s:122:\"CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"\";s:6:\"server\";s:3:\"gws\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:18:\"alternate-protocol\";s:7:\"80:quic\";}s:5:\"build\";s:14:\"20131113023809\";}','no'),(22102,'auto_core_update_notified','a:4:{s:4:\"type\";s:6:\"manual\";s:5:\"email\";s:22:\"support@earthhertz.com\";s:7:\"version\";s:5:\"3.8.2\";s:9:\"timestamp\";i:1397569355;}','yes'),(23117,'_site_transient_browser_e0acbe6b4333b2774cf2305ecf4cd614','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"32.0.1700.76\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(23116,'_site_transient_timeout_browser_e0acbe6b4333b2774cf2305ecf4cd614','1398316995','yes'),(24758,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1399349872','no'),(24759,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1399306672','no'),(24767,'_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e','<h4>Most Popular</h4>\n<h5><a href=\'http://wordpress.org/plugins/better-wp-security/\'>iThemes Security (formerly Better WP Security)</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=better-wp-security&_wpnonce=db5a372dcc&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'iThemes Security (formerly Better WP Security)\'>Install</a>)</span>\n<p>The easiest, most effective way to secure WordPress in seconds.</p>\n<h4>Newest Plugins</h4>\n<h5><a href=\'https://wordpress.org/plugins/cubify-wp/\'>Cubify WP</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=cubify-wp&_wpnonce=914fb8db2b&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Cubify WP\'>Install</a>)</span>\n<p>Cubify your content</p>\n','no'),(24718,'_transient_timeout_jetpack_https_test','1399375934','no'),(24719,'_transient_jetpack_https_test','1','no'),(24769,'_transient_timeout_wpcom_subscribers_total','1399311503','no'),(24770,'_transient_wpcom_subscribers_total','a:2:{s:6:\"status\";s:7:\"success\";s:5:\"value\";i:3;}','no'),(24361,'_site_transient_timeout_browser_9a3916eced3e1324a6a75abd7ead9426','1399394044','yes'),(22351,'_site_transient_browser_5fe309ffd03bec1cf01dc81604e092b2','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"32.0.1700.76\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(22854,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-3.9.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-3.9.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"3.9\";s:7:\"version\";s:3:\"3.9\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.8\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":10:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-3.9.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-3.9.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"3.9\";s:7:\"version\";s:3:\"3.9\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.8\";s:15:\"partial_version\";s:0:\"\";}i:2;O:8:\"stdClass\":10:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-3.8.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-3.8.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-3.8.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-3.8.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"3.8.3\";s:7:\"version\";s:5:\"3.8.3\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.8\";s:15:\"partial_version\";s:0:\"\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-3.8.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-3.8.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-3.8.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-3.8.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"3.8.2\";s:7:\"version\";s:5:\"3.8.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.8\";s:15:\"partial_version\";s:0:\"\";s:12:\"notify_email\";s:1:\"1\";}}s:12:\"last_checked\";i:1399306644;s:15:\"version_checked\";s:5:\"3.7.3\";s:12:\"translations\";a:0:{}}','yes'),(24764,'_transient_timeout_plugin_slugs','1399393075','no'),(24765,'_transient_plugin_slugs','a:19:{i:0;s:19:\"akismet/akismet.php\";i:1;s:41:\"amazon-s3-and-cloudfront/wordpress-s3.php\";i:2;s:53:\"amazon-s3-cloud-html5-mp3-player/amazon-s3-player.php\";i:3;s:35:\"blog-posts-order/blogpostsorder.php\";i:4;s:45:\"dropdown-menu-widget/shailan.DropDownMenu.php\";i:5;s:54:\"erident-custom-login-and-dashboard/er-custom-login.php\";i:6;s:36:\"google-sitemap-generator/sitemap.php\";i:7;s:21:\"hello-dolly/hello.php\";i:8;s:19:\"jetpack/jetpack.php\";i:9;s:33:\"wp-front-end-repository/index.php\";i:10;s:21:\"podpress/podpress.php\";i:11;s:66:\"reorder-post-within-categories/reorder-posts-within-categories.php\";i:12;s:47:\"sub-categories-widget/sub-categories-widget.php\";i:13;s:21:\"tinypass/tinypass.php\";i:14;s:27:\"click-go-seo/clickgoseo.php\";i:15;s:46:\"wordpress-data-guards/wordpress-data-guard.php\";i:16;s:35:\"wp-easy-gallery/wp-easy-gallery.php\";i:17;s:35:\"wp-online-store/WP_online_store.php\";i:18;s:21:\"yop-poll/yop_poll.php\";}','no'),(24128,'_site_transient_timeout_browser_6dc402e621aa5b77f981dc9cdae2cdb8','1399103005','yes'),(24129,'_site_transient_browser_6dc402e621aa5b77f981dc9cdae2cdb8','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"27.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(23649,'_site_transient_timeout_browser_ad0f13cf1963685b3e1355f9374f265a','1398745145','yes'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL auto_increment, `post_id` bigint(20) unsigned NOT NULL default '0', `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`) ) ENGINE=MyISAM AUTO_INCREMENT=2793 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (2,4,'_wp_attached_file','2013/08/Image5a.jpg'),(3,4,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:2:\"80\";s:6:\"height\";s:2:\"83\";s:14:\"hwstring_small\";s:22:\"height=\'83\' width=\'80\'\";s:4:\"file\";s:19:\"2013/08/Image5a.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(4,3,'_edit_last','2'),(6,3,'_wp_old_slug',''),(7,3,'_edit_lock','1384909269:2'),(359,86,'_wp_attachment_image_alt','Earth Hertz Records'),(362,3,'chi_post_setting_1',''),(363,3,'chi_post_setting_2','0'),(364,3,'chi_post_setting_3',''),(373,108,'_edit_last','1'),(374,108,'_edit_lock','1379553990'),(375,108,'_fancyheader_slider_link',''),(20,17,'_edit_last','1'),(21,17,'_edit_lock','1381510106:1'),(22,17,'_wp_page_template','templates/template-page-with-intro.php'),(23,19,'_edit_last','1'),(24,19,'_edit_lock','1397449230:1'),(25,19,'_wp_page_template','default'),(26,21,'_edit_last','1'),(27,21,'_edit_lock','1396023488:1'),(28,21,'_wp_page_template','templates/template-onecolumn.php'),(29,23,'_edit_last','1'),(30,23,'_edit_lock','1397495832:1'),(31,23,'_wp_page_template','default'),(34,26,'_edit_last','1'),(35,26,'_edit_lock','1381530266:1'),(36,26,'_wp_page_template','templates/template-page-with-intro.php'),(40,30,'_edit_last','1'),(41,30,'_edit_lock','1384971732:1'),(42,30,'_wp_page_template','default'),(1945,1105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/10/Grammy2001.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Grammy2001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"Grammy2001-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Grammy2001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"Grammy2001-200x120.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1944,1105,'_wp_attached_file','2013/10/Grammy2001.jpg'),(71,35,'_edit_lock','1386799685:1'),(376,86,'_edit_lock','1379594736:1'),(377,110,'_wp_attached_file','2013/09/logo.png'),(378,110,'_wp_attachment_context','custom-background'),(379,110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:16:\"2013/09/logo.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"logo-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"content\";a:4:{s:4:\"file\";s:16:\"logo-620x210.png\";s:5:\"width\";i:620;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"loop\";a:4:{s:4:\"file\";s:16:\"logo-174x131.png\";s:5:\"width\";i:174;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"cp_small\";a:4:{s:4:\"file\";s:14:\"logo-70x53.png\";s:5:\"width\";i:70;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(352,86,'_wp_attached_file','2013/09/slide_011_en1.png'),(70,35,'_edit_last','1'),(72,35,'_wp_page_template','default'),(1943,1104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2013/10/Grammy200.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Grammy200-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:21:\"Grammy200-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Grammy200-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:21:\"Grammy200-200x120.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1942,1104,'_wp_attached_file','2013/10/Grammy200.jpg'),(1939,1101,'_wpas_done_all','1'),(1938,1101,'_edit_last','2'),(1937,1101,'_edit_lock','1384908814:2'),(1909,1075,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:372;s:4:\"file\";s:32:\"2013/10/rover_20110612_4_560.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"rover_20110612_4_560-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"rover_20110612_4_560-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"rover_20110612_4_560-165x110.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"rover_20110612_4_560-150x99.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"rover_20110612_4_560-560x120.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"rover_20110612_4_560-560x275.jpg\";s:5:\"width\";i:560;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:7.0999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1307801403;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";}}'),(1908,1075,'_wp_attached_file','2013/10/rover_20110612_4_560.jpg'),(1906,1073,'_wpas_done_all','1'),(1905,1073,'_edit_last','2'),(1904,1073,'_edit_lock','1384908862:2'),(2255,1308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:597;s:4:\"file\";s:29:\"2013/11/KatsTheory-Arlo-4.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"KatsTheory-Arlo-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"KatsTheory-Arlo-4-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:29:\"KatsTheory-Arlo-4-184x110.jpg\";s:5:\"width\";i:184;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"KatsTheory-Arlo-4-150x89.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:29:\"KatsTheory-Arlo-4-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:29:\"KatsTheory-Arlo-4-960x215.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:946684811;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";}}'),(2252,1303,'_edit_lock','1385338812:2'),(2253,1303,'_edit_last','2'),(2254,1308,'_wp_attached_file','2013/11/KatsTheory-Arlo-4.jpg'),(1891,1051,'_wpas_done_all','1'),(1889,1051,'_menu_item_url',''),(1888,1051,'_menu_item_xfn',''),(1881,1049,'_edit_lock','1396018148:1'),(1880,1049,'_wpas_done_all','1'),(1879,1049,'_wp_page_template','default'),(1878,1049,'_edit_last','1'),(353,86,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"960\";s:6:\"height\";s:3:\"210\";s:14:\"hwstring_small\";s:23:\"height=\'28\' width=\'128\'\";s:4:\"file\";s:25:\"2013/09/slide_011_en1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:25:\"slide_011_en1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"slide_011_en1-300x65.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"65\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(2151,827,'_edit_lock','1384308929:1'),(380,110,'_wp_attachment_is_custom_background','mh-magazine-lite'),(381,111,'_wp_attached_file','2013/09/cropped-logo1.png'),(382,111,'_wp_attachment_context','custom-header'),(383,111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:205;s:4:\"file\";s:25:\"2013/09/cropped-logo1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"cropped-logo1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"cropped-logo1-300x64.png\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"content\";a:4:{s:4:\"file\";s:25:\"cropped-logo1-620x205.png\";s:5:\"width\";i:620;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"loop\";a:4:{s:4:\"file\";s:25:\"cropped-logo1-174x131.png\";s:5:\"width\";i:174;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"cp_small\";a:4:{s:4:\"file\";s:23:\"cropped-logo1-70x53.png\";s:5:\"width\";i:70;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(384,111,'_wp_attachment_is_custom_header','mh-magazine-lite'),(1042,620,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:194;s:4:\"file\";s:22:\"2013/10/cassette-5.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cassette-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"cassette-5-170x110.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"cassette-5-150x97.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"cassette-5-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1041,620,'_wp_attached_file','2013/10/cassette-5.jpg'),(349,84,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"300\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'128\'\";s:4:\"file\";s:18:\"2013/09/Image1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:18:\"Image1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:18:\"Image1-300x225.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"225\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(348,84,'_wp_attached_file','2013/09/Image1.jpg'),(1040,619,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:197;s:4:\"file\";s:22:\"2013/10/cassette-4.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cassette-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"cassette-4-167x110.jpg\";s:5:\"width\";i:167;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"cassette-4-150x98.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"cassette-4-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1039,619,'_wp_attached_file','2013/10/cassette-4.jpg'),(1038,618,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:225;s:4:\"file\";s:22:\"2013/10/cassette-3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cassette-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"cassette-3-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"cassette-3-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"cassette-3-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1037,618,'_wp_attached_file','2013/10/cassette-3.jpg'),(503,128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:950;s:6:\"height\";i:120;s:4:\"file\";s:28:\"2013/09/slide_012_950_en.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"slide_012_950_en-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"slide_012_950_en-300x37.png\";s:5:\"width\";i:300;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:27:\"slide_012_950_en-250x31.png\";s:5:\"width\";i:250;s:6:\"height\";i:31;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"slide_012_950_en-150x18.png\";s:5:\"width\";i:150;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2173,1275,'_edit_lock','1384832156:1'),(1036,617,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:219;s:4:\"file\";s:22:\"2013/10/cassette-2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cassette-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:21:\"cassette-2-75x110.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"cassette-2-102x150.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"cassette-2-150x120.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1035,617,'_wp_attached_file','2013/10/cassette-2.jpg'),(502,128,'_wp_attached_file','2013/09/slide_012_950_en.png'),(496,126,'_wp_attached_file','2013/09/logo1.png'),(497,126,'_wp_attachment_context','custom-header'),(498,127,'_wp_attached_file','2013/09/slide_012_en.png'),(499,127,'_wp_attachment_context','custom-header'),(500,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1050;s:6:\"height\";i:120;s:4:\"file\";s:24:\"2013/09/slide_012_en.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"slide_012_en-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"slide_012_en-300x34.png\";s:5:\"width\";i:300;s:6:\"height\";i:34;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"slide_012_en-1024x117.png\";s:5:\"width\";i:1024;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"slide_012_en-250x28.png\";s:5:\"width\";i:250;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"slide_012_en-150x17.png\";s:5:\"width\";i:150;s:6:\"height\";i:17;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(501,127,'_wp_attachment_is_custom_header','parabola'),(504,129,'_wp_attached_file','2013/09/slide_012_950_en1.png'),(505,129,'_wp_attachment_context','custom-header'),(506,129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:950;s:6:\"height\";i:120;s:4:\"file\";s:29:\"2013/09/slide_012_950_en1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"slide_012_950_en1-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"slide_012_950_en1-300x37.png\";s:5:\"width\";i:300;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:28:\"slide_012_950_en1-250x31.png\";s:5:\"width\";i:250;s:6:\"height\";i:31;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"slide_012_950_en1-150x18.png\";s:5:\"width\";i:150;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(507,129,'_wp_attachment_is_custom_header','parabola'),(508,130,'_wp_attached_file','2013/09/earthhertz.ico'),(509,131,'_wp_attached_file','2013/09/EH_120_360_Skyscraper_2013_07_29_001.png'),(510,131,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:81;s:6:\"height\";i:83;s:4:\"file\";s:48:\"2013/09/EH_120_360_Skyscraper_2013_07_29_001.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(511,132,'_wp_attached_file','2013/09/slide_001_en.png'),(512,132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:24:\"2013/09/slide_001_en.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"slide_001_en-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"slide_001_en-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"slide_001_en-250x54.png\";s:5:\"width\";i:250;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"slide_001_en-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"slide_001_en-950x120.png\";s:5:\"width\";i:950;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(513,133,'_wp_attached_file','2013/09/slide_004_en.png'),(514,133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:24:\"2013/09/slide_004_en.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"slide_004_en-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"slide_004_en-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"slide_004_en-250x54.png\";s:5:\"width\";i:250;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"slide_004_en-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"slide_004_en-950x120.png\";s:5:\"width\";i:950;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(515,134,'_wp_attached_file','2013/09/slide_004_en1.png'),(516,134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:25:\"2013/09/slide_004_en1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"slide_004_en1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"slide_004_en1-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"slide_004_en1-250x54.png\";s:5:\"width\";i:250;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"slide_004_en1-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"slide_004_en1-950x120.png\";s:5:\"width\";i:950;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(517,135,'_wp_attached_file','2013/09/slide_002_en.png'),(518,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:24:\"2013/09/slide_002_en.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"slide_002_en-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"slide_002_en-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"slide_002_en-250x54.png\";s:5:\"width\";i:250;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"slide_002_en-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"slide_002_en-950x120.png\";s:5:\"width\";i:950;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(519,136,'_wp_attached_file','2013/09/slide_019_en.png'),(520,136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:24:\"2013/09/slide_019_en.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"slide_019_en-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"slide_019_en-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"slide_019_en-250x54.png\";s:5:\"width\";i:250;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"slide_019_en-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"slide_019_en-950x120.png\";s:5:\"width\";i:950;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(521,137,'_wp_attached_file','2013/09/slide_001x_en.png'),(522,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1050;s:6:\"height\";i:120;s:4:\"file\";s:25:\"2013/09/slide_001x_en.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"slide_001x_en-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"slide_001x_en-300x34.png\";s:5:\"width\";i:300;s:6:\"height\";i:34;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"slide_001x_en-1024x117.png\";s:5:\"width\";i:1024;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"slide_001x_en-250x28.png\";s:5:\"width\";i:250;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"slide_001x_en-150x17.png\";s:5:\"width\";i:150;s:6:\"height\";i:17;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"slide_001x_en-950x120.png\";s:5:\"width\";i:950;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(523,138,'_wp_attached_file','2013/09/slide_005_en.png'),(524,138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:24:\"2013/09/slide_005_en.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"slide_005_en-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"slide_005_en-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"slide_005_en-250x54.png\";s:5:\"width\";i:250;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"slide_005_en-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"slide_005_en-950x120.png\";s:5:\"width\";i:950;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(525,139,'_wp_attached_file','2013/09/577670_595448180581_784630386_n.jpg'),(526,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:43:\"2013/09/577670_595448180581_784630386_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"577670_595448180581_784630386_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"577670_595448180581_784630386_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:43:\"577670_595448180581_784630386_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"577670_595448180581_784630386_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:43:\"577670_595448180581_784630386_n-720x120.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:43:\"577670_595448180581_784630386_n-720x250.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(527,140,'_wp_attached_file','2013/09/WasteCover750.jpg'),(528,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:750;s:4:\"file\";s:25:\"2013/09/WasteCover750.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"WasteCover750-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"WasteCover750-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"WasteCover750-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"WasteCover750-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"WasteCover750-750x120.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"WasteCover750-750x250.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(529,140,'_wp_attachment_image_alt','Joshua Ayers newest single and video.'),(530,145,'_wp_attached_file','2013/09/217897_10151273041892521_836830802_n.jpg'),(531,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:48:\"2013/09/217897_10151273041892521_836830802_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"217897_10151273041892521_836830802_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"217897_10151273041892521_836830802_n-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:48:\"217897_10151273041892521_836830802_n-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"217897_10151273041892521_836830802_n-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:48:\"217897_10151273041892521_836830802_n-400x120.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:48:\"217897_10151273041892521_836830802_n-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(532,145,'_wp_attachment_image_alt','Hannah Mae new video and single.'),(533,146,'_wp_attached_file','2013/09/img_0314.jpg'),(534,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:690;s:6:\"height\";i:302;s:4:\"file\";s:20:\"2013/09/img_0314.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"img_0314-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"img_0314-300x131.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:20:\"img_0314-250x109.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:109;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"img_0314-150x65.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:20:\"img_0314-690x120.jpg\";s:5:\"width\";i:690;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:20:\"img_0314-690x250.jpg\";s:5:\"width\";i:690;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:18:\"Canon EOS REBEL T3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1374977584;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(535,146,'_wp_attachment_image_alt','Applegate Nance new album and videos.'),(536,147,'_wp_attached_file','2013/09/AlbumCoverFinal.jpg'),(537,147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:1440;s:4:\"file\";s:27:\"2013/09/AlbumCoverFinal.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"AlbumCoverFinal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"AlbumCoverFinal-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"AlbumCoverFinal-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:27:\"AlbumCoverFinal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"AlbumCoverFinal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"AlbumCoverFinal-950x120.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:28:\"AlbumCoverFinal-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:7.0999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:18:\"Canon EOS REBEL T3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1374978319;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";}}'),(538,147,'_wp_attachment_image_alt','Applegate Nance new album and videos.'),(539,148,'_wp_attached_file','2013/09/TBDBAlbumCover.jpg'),(540,148,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:1440;s:4:\"file\";s:26:\"2013/09/TBDBAlbumCover.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"TBDBAlbumCover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"TBDBAlbumCover-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"TBDBAlbumCover-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"TBDBAlbumCover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"TBDBAlbumCover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"TBDBAlbumCover-950x120.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:27:\"TBDBAlbumCover-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:6.2999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1374443663;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"220\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:1:\"2\";s:5:\"title\";s:0:\"\";}}'),(541,148,'_wp_attachment_image_alt','The Billy David Band new single, album and videos.'),(542,149,'_wp_attached_file','2013/09/Mathias_RadarTowerAlbumCoverFinal.jpg'),(543,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:1440;s:4:\"file\";s:45:\"2013/09/Mathias_RadarTowerAlbumCoverFinal.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Mathias_RadarTowerAlbumCoverFinal-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Mathias_RadarTowerAlbumCoverFinal-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:45:\"Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:45:\"Mathias_RadarTowerAlbumCoverFinal-950x120.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:46:\"Mathias_RadarTowerAlbumCoverFinal-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(544,149,'_wp_attachment_image_alt','radarTower new album, single and videos.'),(545,150,'_wp_attached_file','2013/09/template_001aTeml.jpg'),(546,150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2013/09/template_001aTeml.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"template_001aTeml-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"template_001aTeml-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:29:\"template_001aTeml-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"template_001aTeml-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:29:\"template_001aTeml-600x120.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:29:\"template_001aTeml-600x250.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(547,150,'_wp_attachment_image_alt','Meredythe & The Recycle! Kids'),(548,151,'_wp_attached_file','2013/09/glenSpreen_Dreams_Front_001AA.jpg'),(549,151,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:1440;s:4:\"file\";s:41:\"2013/09/glenSpreen_Dreams_Front_001AA.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"glenSpreen_Dreams_Front_001AA-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"glenSpreen_Dreams_Front_001AA-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"glenSpreen_Dreams_Front_001AA-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:41:\"glenSpreen_Dreams_Front_001AA-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"glenSpreen_Dreams_Front_001AA-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:41:\"glenSpreen_Dreams_Front_001AA-950x120.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:42:\"glenSpreen_Dreams_Front_001AA-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(550,151,'_wp_attachment_image_alt','Glen Spreen Dreams, new album and videos.'),(551,154,'_wp_attached_file','2013/09/EH_65_60_Sticker_2013_07_29.jpg'),(552,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:65;s:6:\"height\";i:60;s:4:\"file\";s:39:\"2013/09/EH_65_60_Sticker_2013_07_29.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(553,154,'_wp_attachment_image_alt','StreamBeamUS'),(554,155,'_wp_attached_file','2013/09/63048_144632605713471_2102213063_n.jpg'),(555,155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:46:\"2013/09/63048_144632605713471_2102213063_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"63048_144632605713471_2102213063_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"63048_144632605713471_2102213063_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:46:\"63048_144632605713471_2102213063_n-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"63048_144632605713471_2102213063_n-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:46:\"63048_144632605713471_2102213063_n-950x120.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:46:\"63048_144632605713471_2102213063_n-960x250.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(556,155,'_wp_attachment_image_alt','Kath Galasso'),(557,162,'_wp_attached_file','2013/09/TheEllyMaze_NearSouth_Front_001b_600x600.jpg'),(558,162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:52:\"2013/09/TheEllyMaze_NearSouth_Front_001b_600x600.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"TheEllyMaze_NearSouth_Front_001b_600x600-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:52:\"TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:52:\"TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:52:\"TheEllyMaze_NearSouth_Front_001b_600x600-600x120.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:52:\"TheEllyMaze_NearSouth_Front_001b_600x600-600x250.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(559,162,'_wp_attachment_image_alt','Near South'),(2146,1254,'_wp_attached_file','2013/11/a1544922683_2.jpg'),(2145,1253,'_edit_last','2'),(2144,1253,'_edit_lock','1384908675:2'),(565,173,'_wp_attached_file','2013/09/1002907_10200864656471494_1994384480_n.jpg'),(566,173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:50:\"2013/09/1002907_10200864656471494_1994384480_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"1002907_10200864656471494_1994384480_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"1002907_10200864656471494_1994384480_n-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:50:\"1002907_10200864656471494_1994384480_n-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"1002907_10200864656471494_1994384480_n-150x84.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:50:\"1002907_10200864656471494_1994384480_n-950x120.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:50:\"1002907_10200864656471494_1994384480_n-960x250.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(567,173,'_wp_attachment_image_alt','Applegate Nance'),(568,19,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:142;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1380549374;}'),(2114,1226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:947;s:6:\"height\";i:947;s:4:\"file\";s:19:\"2013/10/Promo2.jpeg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Promo2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Promo2-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:19:\"Promo2-110x110.jpeg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"Promo2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:19:\"Promo2-870x120.jpeg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:19:\"Promo2-947x275.jpeg\";s:5:\"width\";i:947;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2113,1226,'_wp_attached_file','2013/10/Promo2.jpeg'),(2169,1274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:870;s:6:\"height\";i:120;s:4:\"file\";s:25:\"2013/11/Header1_Final.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Header1_Final-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Header1_Final-300x41.png\";s:5:\"width\";i:300;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"Header1_Final-210x28.png\";s:5:\"width\";i:210;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Header1_Final-150x20.png\";s:5:\"width\";i:150;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2167,1272,'_thumbnail_id','827'),(2166,1272,'_wpas_done_all','1'),(583,246,'_edit_last','1'),(584,246,'_edit_lock','1397449375:1'),(585,246,'_wp_page_template','default'),(586,246,'_wpas_done_all','1'),(587,248,'_edit_last','1'),(588,248,'_edit_lock','1396028635:1'),(589,248,'_wp_page_template','default'),(590,248,'_wpas_done_all','1'),(2164,1272,'_edit_lock','1396024812:1'),(2163,1272,'_edit_last','1'),(2158,1259,'_wpas_done_all','1'),(595,252,'_edit_lock','1381628209:2'),(596,252,'_edit_last','2'),(597,252,'_wp_page_template','default'),(598,252,'_wpas_done_all','1'),(2156,1263,'_edit_lock','1384524595:2'),(607,260,'_wp_attached_file','2013/09/BillyDavid_Magic_001.jpg'),(608,260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1373;s:6:\"height\";i:768;s:4:\"file\";s:32:\"2013/09/BillyDavid_Magic_001.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"BillyDavid_Magic_001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"BillyDavid_Magic_001-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"BillyDavid_Magic_001-1024x572.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:572;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"BillyDavid_Magic_001-250x139.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"BillyDavid_Magic_001-150x83.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"BillyDavid_Magic_001-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:33:\"BillyDavid_Magic_001-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(609,261,'_wp_attached_file','2013/09/GlenSpreen_red_001.jpg'),(610,261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1052;s:6:\"height\";i:623;s:4:\"file\";s:30:\"2013/09/GlenSpreen_red_001.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"GlenSpreen_red_001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"GlenSpreen_red_001-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"GlenSpreen_red_001-1024x606.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:606;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:30:\"GlenSpreen_red_001-250x148.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"GlenSpreen_red_001-150x88.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"GlenSpreen_red_001-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:31:\"GlenSpreen_red_001-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(611,262,'_wp_attached_file','2013/09/HannahMae_Guns_001.jpg'),(612,262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1367;s:6:\"height\";i:702;s:4:\"file\";s:30:\"2013/09/HannahMae_Guns_001.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"HannahMae_Guns_001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"HannahMae_Guns_001-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"HannahMae_Guns_001-1024x525.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:30:\"HannahMae_Guns_001-250x128.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"HannahMae_Guns_001-150x77.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"HannahMae_Guns_001-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:31:\"HannahMae_Guns_001-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(613,263,'_wp_attached_file','2013/09/JoshAyers_Waste_001.jpg'),(614,263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1368;s:6:\"height\";i:748;s:4:\"file\";s:31:\"2013/09/JoshAyers_Waste_001.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"JoshAyers_Waste_001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"JoshAyers_Waste_001-300x164.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"JoshAyers_Waste_001-1024x559.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:31:\"JoshAyers_Waste_001-250x136.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:136;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"JoshAyers_Waste_001-150x82.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:31:\"JoshAyers_Waste_001-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"JoshAyers_Waste_001-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(615,264,'_wp_attached_file','2013/09/radarTower_Need_001.jpg'),(616,264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1140;s:6:\"height\";i:722;s:4:\"file\";s:31:\"2013/09/radarTower_Need_001.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"radarTower_Need_001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"radarTower_Need_001-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"radarTower_Need_001-1024x648.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:648;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:31:\"radarTower_Need_001-236x150.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"radarTower_Need_001-150x95.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:31:\"radarTower_Need_001-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"radarTower_Need_001-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(617,264,'_wp_attachment_image_alt','radarTower Need Someone'),(618,271,'_edit_last','1'),(619,271,'_edit_lock','1382535716:1'),(620,271,'_wp_page_template','default'),(621,271,'_wpas_done_all','1'),(622,260,'_wp_attachment_image_alt','Billy David Magic'),(639,318,'_wp_attached_file','2013/09/concert-audience-small.jpg'),(640,318,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:150;s:4:\"file\";s:34:\"2013/09/concert-audience-small.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"concert-audience-small-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"concert-audience-small-150x93.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:93;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:34:\"concert-audience-small-240x120.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(641,318,'_wp_attachment_image_alt','Show Reviews'),(642,318,'_edit_lock','1380725411:1'),(643,318,'_edit_last','1'),(644,321,'_wp_attached_file','2013/10/book-reviews-small.jpg'),(645,321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:122;s:4:\"file\";s:30:\"2013/10/book-reviews-small.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"book-reviews-small-150x122.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"book-reviews-small-150x76.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"book-reviews-small-240x120.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(646,322,'_wp_attached_file','2013/10/music-reviews-small-e1380727238718.jpg'),(647,322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:213;s:6:\"height\";i:140;s:4:\"file\";s:46:\"2013/10/music-reviews-small-e1380727238718.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"music-reviews-small-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:31:\"music-reviews-small-227x150.jpg\";s:5:\"width\";i:227;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"music-reviews-small-150x98.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:31:\"music-reviews-small-240x120.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(648,323,'_wp_attached_file','2013/10/show-reviews-small.jpg'),(649,323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:150;s:4:\"file\";s:30:\"2013/10/show-reviews-small.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"show-reviews-small-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"show-reviews-small-150x93.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:93;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"show-reviews-small-240x120.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(650,322,'_wp_attachment_image_alt','Music Reviews'),(651,323,'_wp_attachment_image_alt','Show Reviews'),(652,321,'_wp_attachment_image_alt','Book Reviews'),(710,393,'_wp_attached_file','2013/09/apple-1.jpg'),(744,422,'_edit_lock','1384909203:2'),(653,322,'_edit_lock','1380731892:1'),(654,322,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:240;s:6:\"height\";i:158;s:4:\"file\";s:23:\"music-reviews-small.jpg\";}}'),(655,322,'_edit_last','1'),(656,337,'_wpas_done_all','1'),(657,337,'custom_css_add','yes'),(658,337,'content_width',''),(659,337,'custom_css_preprocessor',''),(660,338,'custom_css_add','no'),(661,338,'content_width',''),(662,338,'custom_css_preprocessor',''),(663,339,'custom_css_add','no'),(664,339,'content_width',''),(665,339,'custom_css_preprocessor',''),(666,340,'custom_css_add','yes'),(667,340,'content_width',''),(668,340,'custom_css_preprocessor',''),(669,342,'custom_css_add','yes'),(670,342,'content_width',''),(671,342,'custom_css_preprocessor',''),(672,344,'custom_css_add','yes'),(673,344,'content_width',''),(674,344,'custom_css_preprocessor',''),(675,347,'custom_css_add','yes'),(676,347,'content_width',''),(677,347,'custom_css_preprocessor',''),(678,348,'custom_css_add','yes'),(679,348,'content_width',''),(680,348,'custom_css_preprocessor',''),(685,364,'_wp_attached_file','2013/10/music-reviewsl.jpg'),(686,364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:650;s:6:\"height\";i:150;s:4:\"file\";s:26:\"2013/10/music-reviewsl.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"music-reviewsl-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"music-reviewsl-300x69.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"music-reviewsl-250x57.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"music-reviewsl-150x34.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:34;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"music-reviewsl-650x120.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(687,364,'_edit_lock','1380732272:1'),(688,364,'_edit_last','1'),(695,371,'_wp_attached_file','2013/10/book-reviewsl.jpg'),(696,371,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:650;s:6:\"height\";i:150;s:4:\"file\";s:25:\"2013/10/book-reviewsl.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"book-reviewsl-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"book-reviewsl-300x69.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"book-reviewsl-250x57.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"book-reviewsl-150x34.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:34;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"book-reviewsl-650x120.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(693,369,'_wp_attached_file','2013/10/showreviewsl.jpg'),(694,369,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:650;s:6:\"height\";i:150;s:4:\"file\";s:24:\"2013/10/showreviewsl.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"showreviewsl-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"showreviewsl-300x69.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"showreviewsl-250x57.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"showreviewsl-150x34.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:34;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"showreviewsl-650x120.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(697,378,'_wp_attached_file','2013/10/music-reviewsl1.jpg'),(698,378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:650;s:6:\"height\";i:150;s:4:\"file\";s:27:\"2013/10/music-reviewsl1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"music-reviewsl1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"music-reviewsl1-300x69.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"music-reviewsl1-250x57.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"music-reviewsl1-150x34.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:34;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"music-reviewsl1-650x120.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(699,378,'_edit_lock','1380737580:1'),(700,383,'_wp_attached_file','2013/10/KatsTheory-Wonderland-3.jpg'),(701,383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5184;s:6:\"height\";i:3456;s:4:\"file\";s:35:\"2013/10/KatsTheory-Wonderland-3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Wonderland-3-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-3-225x150.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-3-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-3-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Wonderland-3-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:946684800;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"47\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(702,384,'_wp_attached_file','2013/10/KatsTheory-Wonderland-4.jpg'),(703,384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3456;s:6:\"height\";i:5184;s:4:\"file\";s:35:\"2013/10/KatsTheory-Wonderland-4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-4-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Wonderland-4-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-4-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-4-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-4-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Wonderland-4-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:946684800;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";}}'),(708,387,'_wp_attached_file','2013/10/KatsTheory-Wonderland-16.jpg'),(709,387,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3456;s:6:\"height\";i:5184;s:4:\"file\";s:36:\"2013/10/KatsTheory-Wonderland-16.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Wonderland-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Wonderland-16-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"KatsTheory-Wonderland-16-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Wonderland-16-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Wonderland-16-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Wonderland-16-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:37:\"KatsTheory-Wonderland-16-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:946684842;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";}}'),(706,386,'_wp_attached_file','2013/10/KatsTheory-Wonderland-7.jpg'),(707,386,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5184;s:6:\"height\";i:3456;s:4:\"file\";s:35:\"2013/10/KatsTheory-Wonderland-7.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Wonderland-7-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-7-225x150.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-7-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:35:\"KatsTheory-Wonderland-7-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Wonderland-7-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:946684802;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";}}'),(711,393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:178;s:6:\"height\";i:178;s:4:\"file\";s:19:\"2013/09/apple-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"apple-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:19:\"apple-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"apple-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:19:\"apple-1-178x120.jpg\";s:5:\"width\";i:178;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(712,394,'_wp_attached_file','2013/09/apple-4.jpg'),(713,394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:178;s:6:\"height\";i:178;s:4:\"file\";s:19:\"2013/09/apple-4.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"apple-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:19:\"apple-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"apple-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:19:\"apple-4-178x120.jpg\";s:5:\"width\";i:178;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(714,395,'_wp_attached_file','2013/09/apple-3.jpg'),(715,395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:178;s:6:\"height\";i:178;s:4:\"file\";s:19:\"2013/09/apple-3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"apple-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:19:\"apple-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"apple-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:19:\"apple-3-178x120.jpg\";s:5:\"width\";i:178;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(716,400,'_wp_attached_file','2013/10/Bangbangboomboom.jpg'),(717,400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:233;s:6:\"height\";i:216;s:4:\"file\";s:28:\"2013/10/Bangbangboomboom.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Bangbangboomboom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:28:\"Bangbangboomboom-161x150.jpg\";s:5:\"width\";i:161;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Bangbangboomboom-150x139.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:28:\"Bangbangboomboom-233x120.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(718,401,'_wp_attached_file','2013/10/KatsTheory-BethHart-1.jpg'),(719,401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5184;s:6:\"height\";i:2512;s:4:\"file\";s:33:\"2013/10/KatsTheory-BethHart-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"KatsTheory-BethHart-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"KatsTheory-BethHart-1-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"KatsTheory-BethHart-1-1024x496.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:33:\"KatsTheory-BethHart-1-250x121.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-BethHart-1-150x72.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:72;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:33:\"KatsTheory-BethHart-1-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:34:\"KatsTheory-BethHart-1-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:946684820;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";}}'),(720,402,'_wp_attached_file','2013/10/bang-bang-boom-boom-beth-hart.jpg'),(721,402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:427;s:4:\"file\";s:41:\"2013/10/bang-bang-boom-boom-beth-hart.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"bang-bang-boom-boom-beth-hart-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"bang-bang-boom-boom-beth-hart-300x256.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:41:\"bang-bang-boom-boom-beth-hart-175x150.jpg\";s:5:\"width\";i:175;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"bang-bang-boom-boom-beth-hart-150x128.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:41:\"bang-bang-boom-boom-beth-hart-500x120.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:41:\"bang-bang-boom-boom-beth-hart-500x250.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(722,403,'_wp_attached_file','2013/10/KatsTheory-BethHart-3.jpg'),(723,403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4320;s:6:\"height\";i:2304;s:4:\"file\";s:33:\"2013/10/KatsTheory-BethHart-3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"KatsTheory-BethHart-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"KatsTheory-BethHart-3-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"KatsTheory-BethHart-3-1024x546.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:546;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:33:\"KatsTheory-BethHart-3-250x133.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-BethHart-3-150x80.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:33:\"KatsTheory-BethHart-3-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:34:\"KatsTheory-BethHart-3-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"COOLPIX S6000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1368826910;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";}}'),(2126,1238,'_wpas_done_all','1'),(2125,1238,'_edit_last','1'),(2124,1238,'_edit_lock','1383806528:1'),(2131,1243,'_wp_attached_file','2013/11/DSC_3279_MattGuertin_Fender_2013_11_07.jpg'),(1053,629,'_menu_item_type','custom'),(745,422,'_edit_last','2'),(746,423,'_wp_attached_file','2013/10/lennon.jpg'),(747,423,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:337;s:4:\"file\";s:18:\"2013/10/lennon.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"lennon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"lennon-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:18:\"lennon-250x140.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"lennon-150x84.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:18:\"lennon-600x120.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:18:\"lennon-600x250.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(748,422,'_wpas_done_all','1'),(1175,645,'_menu_item_type','taxonomy'),(751,427,'_edit_lock','1384971381:1'),(752,427,'_edit_last','1'),(764,432,'_edit_lock','1384971427:1'),(754,427,'_wpas_done_all','1'),(756,430,'_edit_lock','1384971252:1'),(757,430,'_edit_last','1'),(765,432,'_edit_last','1'),(759,430,'_wpas_done_all','1'),(766,433,'_wp_attached_file','2013/10/Roy-Orbison.jpg'),(767,433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:199;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2013/10/Roy-Orbison.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Roy-Orbison-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"Roy-Orbison-99x150.jpg\";s:5:\"width\";i:99;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Roy-Orbison-99x150.jpg\";s:5:\"width\";i:99;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"Roy-Orbison-199x120.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:23:\"Roy-Orbison-199x250.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(768,432,'_wpas_done_all','1'),(2132,1243,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:498;s:4:\"file\";s:50:\"2013/11/DSC_3279_MattGuertin_Fender_2013_11_07.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"DSC_3279_MattGuertin_Fender_2013_11_07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"DSC_3279_MattGuertin_Fender_2013_11_07-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:50:\"DSC_3279_MattGuertin_Fender_2013_11_07-165x110.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"DSC_3279_MattGuertin_Fender_2013_11_07-150x99.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:50:\"DSC_3279_MattGuertin_Fender_2013_11_07-750x120.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:50:\"DSC_3279_MattGuertin_Fender_2013_11_07-750x275.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1383774317;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"12\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(2130,1242,'_edit_lock','1383955414:1'),(2272,1331,'_edit_lock','1385560904:2'),(784,30,'_thumbnail_id','131'),(776,427,'_wp_old_slug','carolyn-wonderland-nyc-winery-2'),(1411,738,'_edit_lock','1398644771:1'),(786,131,'_wp_attachment_image_alt','EHR'),(795,476,'_wp_attached_file','2013/09/600073_10200136594029973_529756598_n.jpg'),(796,476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:960;s:4:\"file\";s:48:\"2013/09/600073_10200136594029973_529756598_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"600073_10200136594029973_529756598_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"600073_10200136594029973_529756598_n-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:47:\"600073_10200136594029973_529756598_n-73x110.jpg\";s:5:\"width\";i:73;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"600073_10200136594029973_529756598_n-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:48:\"600073_10200136594029973_529756598_n-640x120.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:48:\"600073_10200136594029973_529756598_n-640x250.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1531,833,'_wp_attached_file','2013/10/1373403700-1877.png'),(798,482,'_wp_attached_file','2013/10/hannah.jpg'),(799,482,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:18:\"2013/10/hannah.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"hannah-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"hannah-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:18:\"hannah-165x110.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"hannah-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:18:\"hannah-600x120.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:18:\"hannah-600x250.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(800,483,'_wp_attached_file','2013/10/Picture-033.jpg'),(801,483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:23:\"2013/10/Picture-033.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Picture-033-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Picture-033-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Picture-033-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"Picture-033-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Picture-033-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"Picture-033-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:24:\"Picture-033-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7000000000000002;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:30:\"KODAK CD33 ZOOM DIGITAL CAMERA\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1105506998;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.6\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:8:\"0.088397\";s:5:\"title\";s:0:\"\";}}'),(802,488,'_wp_attached_file','2013/10/joshayers_200.jpg'),(803,488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:180;s:4:\"file\";s:25:\"2013/10/joshayers_200.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"joshayers_200-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"joshayers_200-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"joshayers_200-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"joshayers_200-240x120.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(805,491,'_wp_attached_file','2013/10/mattguertin_200.jpg'),(806,491,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:180;s:4:\"file\";s:27:\"2013/10/mattguertin_200.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"mattguertin_200-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:27:\"mattguertin_200-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"mattguertin_200-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"mattguertin_200-240x120.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(807,492,'_wp_attached_file','2013/10/mathiasmeetstheworld.jpg'),(808,492,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:522;s:6:\"height\";i:528;s:4:\"file\";s:32:\"2013/10/mathiasmeetstheworld.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"mathiasmeetstheworld-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"mathiasmeetstheworld-296x300.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"mathiasmeetstheworld-108x110.jpg\";s:5:\"width\";i:108;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"mathiasmeetstheworld-148x150.jpg\";s:5:\"width\";i:148;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"mathiasmeetstheworld-522x120.jpg\";s:5:\"width\";i:522;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"mathiasmeetstheworld-522x250.jpg\";s:5:\"width\";i:522;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(811,495,'_edit_lock','1384971159:1'),(812,495,'_edit_last','1'),(813,495,'_wpas_done_all','1'),(820,511,'_wp_attached_file','2013/10/EarthHertz-BillyDavid-1.jpg'),(821,511,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:178;s:6:\"height\";i:178;s:4:\"file\";s:35:\"2013/10/EarthHertz-BillyDavid-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"EarthHertz-BillyDavid-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:35:\"EarthHertz-BillyDavid-1-109x110.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"EarthHertz-BillyDavid-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:35:\"EarthHertz-BillyDavid-1-178x120.jpg\";s:5:\"width\";i:178;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(817,501,'_wp_attached_file','2013/10/MattGuertin-2.jpg'),(818,501,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:340;s:6:\"height\";i:224;s:4:\"file\";s:25:\"2013/10/MattGuertin-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"MattGuertin-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"MattGuertin-2-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"MattGuertin-2-166x110.jpg\";s:5:\"width\";i:166;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"MattGuertin-2-150x98.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"MattGuertin-2-340x120.jpg\";s:5:\"width\";i:340;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(822,512,'_wp_attached_file','2013/10/EarthHertz-BillyDavid-2.jpg'),(823,512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:178;s:6:\"height\";i:178;s:4:\"file\";s:35:\"2013/10/EarthHertz-BillyDavid-2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"EarthHertz-BillyDavid-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:35:\"EarthHertz-BillyDavid-2-109x110.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"EarthHertz-BillyDavid-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:35:\"EarthHertz-BillyDavid-2-178x120.jpg\";s:5:\"width\";i:178;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(824,513,'_wp_attached_file','2013/10/EarthHertz-BillyDavid-3.jpg'),(825,513,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:178;s:6:\"height\";i:178;s:4:\"file\";s:35:\"2013/10/EarthHertz-BillyDavid-3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"EarthHertz-BillyDavid-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:35:\"EarthHertz-BillyDavid-3-109x110.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"EarthHertz-BillyDavid-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:35:\"EarthHertz-BillyDavid-3-178x120.jpg\";s:5:\"width\";i:178;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1859,1043,'_wpas_done_all','1'),(827,519,'_wp_attached_file','2013/10/TheEllyMaze_NearSouth_Front_001b_600x600.jpg'),(828,519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:52:\"2013/10/TheEllyMaze_NearSouth_Front_001b_600x600.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"TheEllyMaze_NearSouth_Front_001b_600x600-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:52:\"TheEllyMaze_NearSouth_Front_001b_600x600-109x110.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:52:\"TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:52:\"TheEllyMaze_NearSouth_Front_001b_600x600-600x120.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:52:\"TheEllyMaze_NearSouth_Front_001b_600x600-600x250.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(829,252,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:518;s:16:\"restored_by_user\";i:2;s:13:\"restored_time\";i:1381234488;}'),(830,522,'custom_css_add','yes'),(831,522,'content_width',''),(832,522,'custom_css_preprocessor',''),(833,523,'custom_css_add','yes'),(834,523,'content_width',''),(835,523,'custom_css_preprocessor',''),(836,524,'custom_css_add','yes'),(837,524,'content_width',''),(838,524,'custom_css_preprocessor',''),(839,526,'custom_css_add','yes'),(840,526,'content_width',''),(841,526,'custom_css_preprocessor',''),(842,527,'custom_css_add','yes'),(843,527,'content_width',''),(844,527,'custom_css_preprocessor',''),(845,528,'custom_css_add','yes'),(846,528,'content_width',''),(847,528,'custom_css_preprocessor',''),(848,529,'custom_css_add','yes'),(849,529,'content_width',''),(850,529,'custom_css_preprocessor',''),(851,531,'custom_css_add','yes'),(852,531,'content_width',''),(853,531,'custom_css_preprocessor',''),(854,532,'custom_css_add','yes'),(855,532,'content_width',''),(856,532,'custom_css_preprocessor',''),(857,533,'custom_css_add','yes'),(858,533,'content_width',''),(859,533,'custom_css_preprocessor',''),(860,534,'custom_css_add','yes'),(861,534,'content_width',''),(862,534,'custom_css_preprocessor',''),(863,536,'custom_css_add','yes'),(864,536,'content_width',''),(865,536,'custom_css_preprocessor',''),(866,537,'custom_css_add','yes'),(867,537,'content_width',''),(868,537,'custom_css_preprocessor',''),(869,538,'custom_css_add','yes'),(870,538,'content_width',''),(871,538,'custom_css_preprocessor',''),(872,539,'custom_css_add','yes'),(873,539,'content_width',''),(874,539,'custom_css_preprocessor',''),(875,540,'custom_css_add','yes'),(876,540,'content_width',''),(877,540,'custom_css_preprocessor',''),(878,541,'custom_css_add','yes'),(879,541,'content_width',''),(880,541,'custom_css_preprocessor',''),(881,543,'custom_css_add','yes'),(882,543,'content_width',''),(883,543,'custom_css_preprocessor',''),(884,544,'custom_css_add','yes'),(885,544,'content_width',''),(886,544,'custom_css_preprocessor',''),(887,545,'custom_css_add','yes'),(888,545,'content_width',''),(889,545,'custom_css_preprocessor',''),(890,547,'custom_css_add','yes'),(891,547,'content_width',''),(892,547,'custom_css_preprocessor',''),(893,548,'custom_css_add','yes'),(894,548,'content_width',''),(895,548,'custom_css_preprocessor',''),(896,549,'custom_css_add','yes'),(897,549,'content_width',''),(898,549,'custom_css_preprocessor',''),(899,550,'custom_css_add','yes'),(900,550,'content_width',''),(901,550,'custom_css_preprocessor',''),(902,551,'custom_css_add','yes'),(903,551,'content_width',''),(904,551,'custom_css_preprocessor',''),(905,553,'custom_css_add','yes'),(906,553,'content_width',''),(907,553,'custom_css_preprocessor',''),(908,554,'custom_css_add','yes'),(909,554,'content_width',''),(910,554,'custom_css_preprocessor',''),(911,555,'custom_css_add','yes'),(912,555,'content_width',''),(913,555,'custom_css_preprocessor',''),(914,556,'custom_css_add','yes'),(915,556,'content_width',''),(916,556,'custom_css_preprocessor',''),(917,557,'custom_css_add','yes'),(918,557,'content_width',''),(919,557,'custom_css_preprocessor',''),(920,558,'custom_css_add','yes'),(921,558,'content_width',''),(922,558,'custom_css_preprocessor',''),(923,559,'custom_css_add','yes'),(924,559,'content_width',''),(925,559,'custom_css_preprocessor',''),(926,560,'custom_css_add','yes'),(927,560,'content_width',''),(928,560,'custom_css_preprocessor',''),(929,562,'custom_css_add','yes'),(930,562,'content_width',''),(931,562,'custom_css_preprocessor',''),(932,563,'custom_css_add','yes'),(933,563,'content_width',''),(934,563,'custom_css_preprocessor',''),(935,564,'custom_css_add','yes'),(936,564,'content_width',''),(937,564,'custom_css_preprocessor',''),(938,565,'custom_css_add','yes'),(939,565,'content_width',''),(940,565,'custom_css_preprocessor',''),(941,566,'custom_css_add','yes'),(942,566,'content_width',''),(943,566,'custom_css_preprocessor',''),(944,567,'custom_css_add','yes'),(945,567,'content_width',''),(946,567,'custom_css_preprocessor',''),(947,568,'custom_css_add','yes'),(948,568,'content_width',''),(949,568,'custom_css_preprocessor',''),(950,569,'custom_css_add','yes'),(951,569,'content_width',''),(952,569,'custom_css_preprocessor',''),(953,570,'custom_css_add','yes'),(954,570,'content_width',''),(955,570,'custom_css_preprocessor',''),(956,572,'custom_css_add','yes'),(957,572,'content_width',''),(958,572,'custom_css_preprocessor',''),(959,573,'custom_css_add','yes'),(960,573,'content_width',''),(961,573,'custom_css_preprocessor',''),(962,574,'custom_css_add','yes'),(963,574,'content_width',''),(964,574,'custom_css_preprocessor',''),(965,575,'custom_css_add','yes'),(966,575,'content_width',''),(967,575,'custom_css_preprocessor',''),(968,576,'custom_css_add','yes'),(969,576,'content_width',''),(970,576,'custom_css_preprocessor',''),(971,577,'custom_css_add','yes'),(972,577,'content_width',''),(973,577,'custom_css_preprocessor',''),(974,579,'_wp_attached_file','2013/10/Wayne-and-Me.jpg'),(975,579,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3400;s:6:\"height\";i:4552;s:4:\"file\";s:24:\"2013/10/Wayne-and-Me.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Wayne-and-Me-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Wayne-and-Me-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Wayne-and-Me-764x1024.jpg\";s:5:\"width\";i:764;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"Wayne-and-Me-82x110.jpg\";s:5:\"width\";i:82;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Wayne-and-Me-112x150.jpg\";s:5:\"width\";i:112;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"Wayne-and-Me-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"Wayne-and-Me-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:34:\"Wayne Jackson, Elvis Session, 1969\";}}'),(976,580,'_wp_attached_file','2013/10/Austin-show-backstage-2011.jpg'),(977,580,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:480;s:4:\"file\";s:38:\"2013/10/Austin-show-backstage-2011.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Austin-show-backstage-2011-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Austin-show-backstage-2011-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:38:\"Austin-show-backstage-2011-165x110.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"Austin-show-backstage-2011-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:38:\"Austin-show-backstage-2011-720x120.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:38:\"Austin-show-backstage-2011-720x250.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(978,581,'_wp_attached_file','2013/10/Glen-Spreen-Dreams.jpg'),(979,581,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:748;s:6:\"height\";i:676;s:4:\"file\";s:30:\"2013/10/Glen-Spreen-Dreams.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Glen-Spreen-Dreams-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Glen-Spreen-Dreams-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:30:\"Glen-Spreen-Dreams-121x110.jpg\";s:5:\"width\";i:121;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"Glen-Spreen-Dreams-150x135.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"Glen-Spreen-Dreams-748x120.jpg\";s:5:\"width\";i:748;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:30:\"Glen-Spreen-Dreams-748x250.jpg\";s:5:\"width\";i:748;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(980,585,'_wp_attached_file','2013/10/meredytheandtherecyclekids.jpg'),(981,585,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:224;s:4:\"file\";s:38:\"2013/10/meredytheandtherecyclekids.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"meredytheandtherecyclekids-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:38:\"meredytheandtherecyclekids-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"meredytheandtherecyclekids-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:38:\"meredytheandtherecyclekids-224x120.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1034,616,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:22:\"2013/10/cassette-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cassette-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"cassette-1-165x110.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"cassette-1-150x99.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"cassette-1-275x120.jpg\";s:5:\"width\";i:275;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1033,616,'_wp_attached_file','2013/10/cassette-1.jpg'),(1032,615,'_edit_last','2'),(1031,615,'_edit_lock','1384908913:2'),(2174,1276,'_wp_attached_file','2013/11/Header1_Final2.png'),(1012,594,'custom_css_add','yes'),(1013,594,'content_width',''),(1014,594,'custom_css_preprocessor',''),(1015,596,'custom_css_add','yes'),(1016,596,'content_width',''),(1017,596,'custom_css_preprocessor',''),(1018,598,'_edit_last','2'),(1019,598,'_edit_lock','1384908993:2'),(1020,600,'_wp_attached_file','2013/10/EarthHertz-HannahMae-1.jpg'),(1021,600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:582;s:4:\"file\";s:34:\"2013/10/EarthHertz-HannahMae-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"EarthHertz-HannahMae-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"EarthHertz-HannahMae-1-206x300.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:33:\"EarthHertz-HannahMae-1-75x110.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"EarthHertz-HannahMae-1-103x150.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:34:\"EarthHertz-HannahMae-1-400x120.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:34:\"EarthHertz-HannahMae-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1022,601,'_wp_attached_file','2013/10/EarthHertz-HannahMae-2.jpg'),(1023,601,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:34:\"2013/10/EarthHertz-HannahMae-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"EarthHertz-HannahMae-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"EarthHertz-HannahMae-2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"EarthHertz-HannahMae-2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:33:\"EarthHertz-HannahMae-2-82x110.jpg\";s:5:\"width\";i:82;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"EarthHertz-HannahMae-2-112x150.jpg\";s:5:\"width\";i:112;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:34:\"EarthHertz-HannahMae-2-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:35:\"EarthHertz-HannahMae-2-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7000000000000002;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:30:\"KODAK CD33 ZOOM DIGITAL CAMERA\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1105507034;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.6\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:8:\"0.088397\";s:5:\"title\";s:0:\"\";}}'),(1024,598,'_wpas_done_all','1'),(1026,608,'custom_css_add','yes'),(1027,608,'content_width',''),(1028,608,'custom_css_preprocessor',''),(1043,621,'_wp_attached_file','2013/10/cassette-6.jpg'),(1044,621,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:196;s:4:\"file\";s:22:\"2013/10/cassette-6.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cassette-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"cassette-6-168x110.jpg\";s:5:\"width\";i:168;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"cassette-6-150x98.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"cassette-6-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1045,622,'_wp_attached_file','2013/10/cassette-7.jpg'),(1046,622,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:199;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2013/10/cassette-7.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cassette-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:21:\"cassette-7-72x110.jpg\";s:5:\"width\";i:72;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"cassette-7-99x150.jpg\";s:5:\"width\";i:99;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"cassette-7-199x120.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"cassette-7-199x250.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1047,623,'_wp_attached_file','2013/10/cassette-8.jpg'),(1048,623,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:297;s:6:\"height\";i:170;s:4:\"file\";s:22:\"2013/10/cassette-8.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cassette-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"cassette-8-192x110.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"cassette-8-150x85.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"cassette-8-297x120.jpg\";s:5:\"width\";i:297;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1049,615,'_wpas_done_all','1'),(1054,629,'_menu_item_menu_item_parent','0'),(1055,629,'_menu_item_object_id','629'),(1056,629,'_menu_item_object','custom'),(1057,629,'_menu_item_target',''),(1058,629,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1059,629,'_menu_item_xfn',''),(1060,629,'_menu_item_url','http://www.earthhertzrecords.com/'),(1152,629,'_wpas_done_all','1'),(1887,1051,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1886,1051,'_menu_item_target',''),(1885,1051,'_menu_item_object','page'),(1884,1051,'_menu_item_object_id','1049'),(1883,1051,'_menu_item_menu_item_parent','0'),(1882,1051,'_menu_item_type','post_type'),(1071,631,'_menu_item_type','post_type'),(1072,631,'_menu_item_menu_item_parent','0'),(1073,631,'_menu_item_object_id','19'),(1074,631,'_menu_item_object','page'),(1075,631,'_menu_item_target',''),(1076,631,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1077,631,'_menu_item_xfn',''),(1078,631,'_menu_item_url',''),(1154,631,'_wpas_done_all','1'),(1338,670,'_wpas_done_all','1'),(1340,671,'_wp_attached_file','2013/09/JoshAyers_Waste_0011.jpg'),(1335,670,'_menu_item_xfn',''),(1336,670,'_menu_item_url',''),(1334,670,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1332,670,'_menu_item_object','page'),(1333,670,'_menu_item_target',''),(1182,645,'_menu_item_url',''),(1181,645,'_menu_item_xfn',''),(1180,645,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1179,645,'_menu_item_target',''),(1178,645,'_menu_item_object','category'),(1177,645,'_menu_item_object_id','49'),(1176,645,'_menu_item_menu_item_parent','0'),(1107,635,'_menu_item_type','post_type'),(1108,635,'_menu_item_menu_item_parent','0'),(1109,635,'_menu_item_object_id','26'),(1110,635,'_menu_item_object','page'),(1111,635,'_menu_item_target',''),(1112,635,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1113,635,'_menu_item_xfn',''),(1114,635,'_menu_item_url',''),(1158,635,'_wpas_done_all','1'),(1286,662,'_menu_item_url',''),(1285,662,'_menu_item_xfn',''),(1284,662,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1283,662,'_menu_item_target',''),(1282,662,'_menu_item_object','category'),(1281,662,'_menu_item_object_id','11'),(1280,662,'_menu_item_menu_item_parent','660'),(1125,637,'_menu_item_type','post_type'),(1126,637,'_menu_item_menu_item_parent','0'),(1127,637,'_menu_item_object_id','30'),(1128,637,'_menu_item_object','page'),(1129,637,'_menu_item_target',''),(1130,637,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1131,637,'_menu_item_xfn',''),(1132,637,'_menu_item_url',''),(1160,637,'_wpas_done_all','1'),(1143,639,'_menu_item_type','post_type'),(1144,639,'_menu_item_menu_item_parent','0'),(1145,639,'_menu_item_object_id','23'),(1146,639,'_menu_item_object','page'),(1147,639,'_menu_item_target',''),(1148,639,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1149,639,'_menu_item_xfn',''),(1150,639,'_menu_item_url',''),(1162,639,'_wpas_done_all','1'),(2223,1284,'_edit_lock','1397495617:1'),(2224,1284,'_edit_last','1'),(2225,1284,'_wpas_done_all','1'),(2227,1288,'_wp_attached_file','2013/11/AN_Video_Slider.png'),(2228,1288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:27:\"2013/11/AN_Video_Slider.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"AN_Video_Slider-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"AN_Video_Slider-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"AN_Video_Slider-210x45.png\";s:5:\"width\";i:210;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"AN_Video_Slider-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"AN_Video_Slider-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1184,645,'_wpas_done_all','1'),(2423,1455,'_wp_attached_file','2014/01/tim-butler.jpg'),(2421,1453,'_edit_lock','1389238390:2'),(2422,1453,'_edit_last','2'),(2233,1291,'_wp_attached_file','2013/11/HippieGirl_Slider.png'),(2234,1291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:29:\"2013/11/HippieGirl_Slider.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"HippieGirl_Slider-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"HippieGirl_Slider-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:28:\"HippieGirl_Slider-210x45.png\";s:5:\"width\";i:210;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"HippieGirl_Slider-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:29:\"HippieGirl_Slider-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1190,135,'_edit_lock','1381512663:1'),(1191,650,'_wp_attached_file','2013/10/Image1.png'),(1192,650,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:139;s:4:\"file\";s:18:\"2013/10/Image1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Image1-150x139.png\";s:5:\"width\";i:150;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Image1-300x41.png\";s:5:\"width\";i:300;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:17:\"Image1-210x29.png\";s:5:\"width\";i:210;s:6:\"height\";i:29;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"Image1-150x20.png\";s:5:\"width\";i:150;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:18:\"Image1-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1193,650,'_edit_lock','1381513477:1'),(2404,1432,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:16:\"2013/12/werq.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"werq-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:16:\"werq-109x110.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"werq-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:16:\"werq-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:16:\"werq-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2213,1280,'_edit_lock','1396028973:1'),(2214,1281,'_wp_attached_file','2013/11/AN_Posterized.png'),(2215,1281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:25:\"2013/11/AN_Posterized.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"AN_Posterized-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"AN_Posterized-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"AN_Posterized-210x45.png\";s:5:\"width\";i:210;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"AN_Posterized-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"AN_Posterized-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2148,1253,'_wpas_done_all','1'),(2172,1275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:870;s:6:\"height\";i:120;s:4:\"file\";s:26:\"2013/11/Header1_Final1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Header1_Final1-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Header1_Final1-300x41.png\";s:5:\"width\";i:300;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"Header1_Final1-210x28.png\";s:5:\"width\";i:210;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Header1_Final1-150x20.png\";s:5:\"width\";i:150;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2171,1275,'_wp_attached_file','2013/11/Header1_Final1.png'),(2170,1274,'_edit_lock','1384832151:1'),(1279,662,'_menu_item_type','taxonomy'),(1298,661,'_wpas_done_all','1'),(1277,661,'_menu_item_url',''),(1276,661,'_menu_item_xfn',''),(1275,661,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1274,661,'_menu_item_target',''),(1273,661,'_menu_item_object','category'),(1272,661,'_menu_item_object_id','13'),(1271,661,'_menu_item_menu_item_parent','660'),(1270,661,'_menu_item_type','taxonomy'),(1297,660,'_wpas_done_all','1'),(1268,660,'_menu_item_url',''),(1267,660,'_menu_item_xfn',''),(1266,660,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1265,660,'_menu_item_target',''),(1264,660,'_menu_item_object','category'),(1263,660,'_menu_item_object_id','10'),(1262,660,'_menu_item_menu_item_parent','0'),(1261,660,'_menu_item_type','taxonomy'),(1299,662,'_wpas_done_all','1'),(1288,663,'_menu_item_type','taxonomy'),(1289,663,'_menu_item_menu_item_parent','660'),(1290,663,'_menu_item_object_id','12'),(1291,663,'_menu_item_object','category'),(1292,663,'_menu_item_target',''),(1293,663,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1294,663,'_menu_item_xfn',''),(1295,663,'_menu_item_url',''),(1300,663,'_wpas_done_all','1'),(1341,671,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1368;s:6:\"height\";i:748;s:4:\"file\";s:32:\"2013/09/JoshAyers_Waste_0011.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"JoshAyers_Waste_0011-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"JoshAyers_Waste_0011-300x164.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"JoshAyers_Waste_0011-1024x559.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"JoshAyers_Waste_0011-201x110.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"JoshAyers_Waste_0011-150x82.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"JoshAyers_Waste_0011-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:33:\"JoshAyers_Waste_0011-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1331,670,'_menu_item_object_id','35'),(1330,670,'_menu_item_menu_item_parent','0'),(1329,670,'_menu_item_type','post_type'),(1343,671,'_edit_lock','1381523157:1'),(1348,683,'_edit_last','1'),(1349,683,'_edit_lock','1385171521:1'),(1350,683,'_wp_page_template','default'),(1351,683,'_wpas_done_all','1'),(1352,690,'_wp_attached_file','2013/09/HannahMae_Guns_0011.jpg'),(1353,690,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1367;s:6:\"height\";i:702;s:4:\"file\";s:31:\"2013/09/HannahMae_Guns_0011.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"HannahMae_Guns_0011-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"HannahMae_Guns_0011-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"HannahMae_Guns_0011-1024x525.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:31:\"HannahMae_Guns_0011-210x107.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"HannahMae_Guns_0011-150x77.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:31:\"HannahMae_Guns_0011-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"HannahMae_Guns_0011-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1354,694,'_wp_attached_file','2013/09/GlenSpreen_red_0011.jpg'),(1355,694,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1052;s:6:\"height\";i:623;s:4:\"file\";s:31:\"2013/09/GlenSpreen_red_0011.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"GlenSpreen_red_0011-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"GlenSpreen_red_0011-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"GlenSpreen_red_0011-1024x606.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:606;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:31:\"GlenSpreen_red_0011-185x110.jpg\";s:5:\"width\";i:185;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"GlenSpreen_red_0011-150x88.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:31:\"GlenSpreen_red_0011-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"GlenSpreen_red_0011-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1356,703,'_edit_last','1'),(1357,703,'_edit_lock','1382535655:1'),(1358,703,'_wp_page_template','default'),(1359,703,'_wpas_done_all','1'),(1362,708,'_edit_last','1'),(1363,708,'_edit_lock','1383933731:1'),(1364,708,'_wp_page_template','default'),(1365,708,'_wpas_done_all','1'),(1366,711,'_wp_attached_file','2013/09/BillyDavid_Magic_0011.jpg'),(1367,711,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1373;s:6:\"height\";i:768;s:4:\"file\";s:33:\"2013/09/BillyDavid_Magic_0011.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"BillyDavid_Magic_0011-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"BillyDavid_Magic_0011-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"BillyDavid_Magic_0011-1024x572.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:572;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:33:\"BillyDavid_Magic_0011-196x110.jpg\";s:5:\"width\";i:196;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"BillyDavid_Magic_0011-150x83.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:33:\"BillyDavid_Magic_0011-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:34:\"BillyDavid_Magic_0011-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1368,714,'_edit_last','1'),(1369,714,'_edit_lock','1397449400:1'),(1370,714,'_wp_page_template','default'),(1371,714,'_wpas_done_all','1'),(1374,721,'_menu_item_type','taxonomy'),(1375,721,'_menu_item_menu_item_parent','0'),(1376,721,'_menu_item_object_id','54'),(1377,721,'_menu_item_object','category'),(1378,721,'_menu_item_target',''),(1379,721,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1380,721,'_menu_item_xfn',''),(1381,721,'_menu_item_url',''),(1383,721,'_wpas_done_all','1'),(1384,722,'_edit_last','1'),(1385,722,'_edit_lock','1383933546:1'),(1386,722,'_wpas_done_all','1'),(1403,734,'_edit_last','1'),(1404,734,'_edit_lock','1384931154:1'),(1405,734,'_wpas_done_all','1'),(1407,736,'_edit_last','1'),(1408,736,'_edit_lock','1391620491:2'),(1409,736,'_wpas_done_all','1'),(1412,738,'_edit_last','1'),(2147,1254,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:25:\"2013/11/a1544922683_2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"a1544922683_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"a1544922683_2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"a1544922683_2-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"a1544922683_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"a1544922683_2-350x120.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"a1544922683_2-350x275.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1415,738,'_wp_page_template','default'),(1416,738,'_wpas_done_all','1'),(1420,747,'_edit_last','1'),(1421,747,'_edit_lock','1396028788:1'),(1422,747,'_wp_page_template','default'),(1423,747,'_wpas_done_all','1'),(2168,1274,'_wp_attached_file','2013/11/Header1_Final.png'),(2165,1272,'_wp_page_template','default'),(1426,751,'_edit_lock','1391621040:2'),(1427,751,'_edit_last','2'),(1428,751,'_wp_page_template','default'),(1429,751,'_wpas_done_all','1'),(2157,1263,'_edit_last','2'),(1432,755,'_edit_lock','1382495809:1'),(1433,755,'_edit_last','1'),(1434,755,'_wp_page_template','default'),(1435,755,'_wpas_done_all','1'),(1438,759,'_edit_last','1'),(1439,759,'_edit_lock','1382495928:1'),(1440,759,'_wp_page_template','default'),(1441,759,'_wpas_done_all','1'),(1442,762,'_wp_attached_file','2013/10/Mathias_RadarTowerAlbumCoverFinal.jpg'),(1443,762,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:1440;s:4:\"file\";s:45:\"2013/10/Mathias_RadarTowerAlbumCoverFinal.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Mathias_RadarTowerAlbumCoverFinal-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Mathias_RadarTowerAlbumCoverFinal-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:45:\"Mathias_RadarTowerAlbumCoverFinal-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:45:\"Mathias_RadarTowerAlbumCoverFinal-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:46:\"Mathias_RadarTowerAlbumCoverFinal-1050x250.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1458,790,'_edit_lock','1382496907:1'),(1459,790,'_edit_last','1'),(1460,790,'_wpas_done_all','1'),(1465,795,'_edit_lock','1383806463:1'),(1466,795,'_edit_last','1'),(1467,795,'_wpas_done_all','1'),(1469,797,'_edit_last','1'),(1470,797,'_edit_lock','1386546440:1'),(1471,797,'_wpas_done_all','1'),(2150,825,'_edit_lock','1384308811:1'),(1487,803,'_edit_lock','1381607827:1'),(1488,803,'_edit_last','1'),(1489,803,'_wpas_done_all','1'),(1492,815,'_wp_attached_file','2013/10/JoshAyers-1.jpg'),(1493,815,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:178;s:6:\"height\";i:178;s:4:\"file\";s:23:\"2013/10/JoshAyers-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"JoshAyers-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"JoshAyers-1-109x110.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"JoshAyers-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"JoshAyers-1-178x120.jpg\";s:5:\"width\";i:178;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2242,1284,'_thumbnail_id','1285'),(2244,1280,'_thumbnail_id','1281'),(2246,140,'_edit_lock','1384970334:1'),(2247,140,'_edit_last','1'),(2256,1309,'_wp_attached_file','2013/11/KatsTheory-Arlo-21.jpg'),(2257,1309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:860;s:4:\"file\";s:30:\"2013/11/KatsTheory-Arlo-21.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-21-300x258.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-21-127x110.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-21-150x129.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-21-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-21-960x215.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:946684814;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"48\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(2418,1442,'_wpas_done_all','1'),(2216,1280,'_edit_last','1'),(2217,1280,'_wpas_done_all','1'),(2221,1285,'_wp_attached_file','2013/11/MG_radarTower.png'),(2222,1285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:25:\"2013/11/MG_radarTower.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"MG_radarTower-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"MG_radarTower-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"MG_radarTower-210x45.png\";s:5:\"width\";i:210;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"MG_radarTower-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"MG_radarTower-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1500,825,'_wp_attached_file','2013/10/slide_111_en.png'),(1501,825,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:24:\"2013/10/slide_111_en.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"slide_111_en-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"slide_111_en-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"slide_111_en-210x45.png\";s:5:\"width\";i:210;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"slide_111_en-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"slide_111_en-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1502,826,'_wp_attached_file','2013/10/slide_111_en1.png'),(1503,826,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:25:\"2013/10/slide_111_en1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"slide_111_en1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"slide_111_en1-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"slide_111_en1-210x45.png\";s:5:\"width\";i:210;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"slide_111_en1-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"slide_111_en1-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1504,827,'_wp_attached_file','2013/10/slide_111_en2.png'),(1505,827,'_wp_attachment_context','custom-header'),(1506,828,'_wp_attached_file','2013/10/cropped-slide_111_en3.png'),(1507,828,'_wp_attachment_context','custom-header'),(1508,828,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:870;s:6:\"height\";i:120;s:4:\"file\";s:33:\"2013/10/cropped-slide_111_en3.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"cropped-slide_111_en3-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"cropped-slide_111_en3-300x41.png\";s:5:\"width\";i:300;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"cropped-slide_111_en3-210x28.png\";s:5:\"width\";i:210;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-slide_111_en3-150x20.png\";s:5:\"width\";i:150;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:33:\"cropped-slide_111_en3-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1509,828,'_wp_attachment_is_custom_header','parabola'),(1510,829,'_wp_attached_file','2013/10/cropped-slide_111_en31.png'),(1511,829,'_wp_attachment_context','custom-header'),(1512,829,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:870;s:6:\"height\";i:120;s:4:\"file\";s:34:\"2013/10/cropped-slide_111_en31.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cropped-slide_111_en31-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"cropped-slide_111_en31-300x41.png\";s:5:\"width\";i:300;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:33:\"cropped-slide_111_en31-210x28.png\";s:5:\"width\";i:210;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"cropped-slide_111_en31-150x20.png\";s:5:\"width\";i:150;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:34:\"cropped-slide_111_en31-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1513,829,'_wp_attachment_is_custom_header','parabola'),(1514,830,'_wp_attached_file','2013/10/cropped-slide_111_en32.png'),(1515,830,'_wp_attachment_context','custom-header'),(1516,830,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:870;s:6:\"height\";i:120;s:4:\"file\";s:34:\"2013/10/cropped-slide_111_en32.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cropped-slide_111_en32-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"cropped-slide_111_en32-300x41.png\";s:5:\"width\";i:300;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:33:\"cropped-slide_111_en32-210x28.png\";s:5:\"width\";i:210;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"cropped-slide_111_en32-150x20.png\";s:5:\"width\";i:150;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:34:\"cropped-slide_111_en32-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1517,830,'_wp_attachment_is_custom_header','parabola'),(1522,831,'_edit_lock','1383742868:1'),(1523,831,'_edit_last','1'),(1524,831,'_wpas_done_all','1'),(1532,833,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:131;s:6:\"height\";i:95;s:4:\"file\";s:27:\"2013/10/1373403700-1877.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1533,834,'_wp_attached_file','2013/10/1373403700-18771.png'),(1534,834,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:131;s:6:\"height\";i:95;s:4:\"file\";s:28:\"2013/10/1373403700-18771.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1535,839,'_edit_lock','1397495471:1'),(1536,840,'_wp_attached_file','2013/10/slide_019a_en.png'),(1537,840,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:25:\"2013/10/slide_019a_en.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"slide_019a_en-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"slide_019a_en-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"slide_019a_en-210x45.png\";s:5:\"width\";i:210;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"slide_019a_en-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"slide_019a_en-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1538,839,'_edit_last','1'),(1539,839,'_wpas_done_all','1'),(2403,1432,'_wp_attached_file','2013/12/werq.jpg'),(2402,1430,'_edit_last','2'),(1546,839,'_thumbnail_id','840'),(2401,1430,'_edit_lock','1388111820:2'),(1559,855,'custom_css_add','yes'),(1560,855,'content_width',''),(1561,855,'custom_css_preprocessor',''),(1580,867,'_edit_lock','1396029093:1'),(1581,868,'_wp_attached_file','2013/10/slide_002b_en.png'),(1582,868,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:25:\"2013/10/slide_002b_en.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"slide_002b_en-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"slide_002b_en-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"slide_002b_en-210x45.png\";s:5:\"width\";i:210;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"slide_002b_en-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"slide_002b_en-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1583,869,'_wp_attached_file','2013/10/slide_004a_en.png'),(1584,869,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:25:\"2013/10/slide_004a_en.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"slide_004a_en-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"slide_004a_en-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"slide_004a_en-210x45.png\";s:5:\"width\";i:210;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"slide_004a_en-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"slide_004a_en-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1585,870,'_wp_attached_file','2013/10/slide_020sv_en.png'),(1586,870,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:26:\"2013/10/slide_020sv_en.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"slide_020sv_en-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"slide_020sv_en-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"slide_020sv_en-210x45.png\";s:5:\"width\";i:210;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"slide_020sv_en-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"slide_020sv_en-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1587,867,'_thumbnail_id','869'),(1588,867,'_edit_last','1'),(1589,867,'_wpas_done_all','1'),(1591,872,'_edit_lock','1396041786:1'),(2741,872,'_thumbnail_id','1670'),(1593,872,'_edit_last','1'),(1594,872,'_wpas_done_all','1'),(1602,876,'_wp_attached_file','2013/10/slide_0170sv_en.png'),(1603,876,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:27:\"2013/10/slide_0170sv_en.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"slide_0170sv_en-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"slide_0170sv_en-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"slide_0170sv_en-210x45.png\";s:5:\"width\";i:210;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"slide_0170sv_en-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"slide_0170sv_en-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1604,876,'_edit_lock','1381688217:1'),(2744,877,'_thumbnail_id','1663'),(1606,877,'_edit_lock','1396041623:1'),(1607,877,'_edit_last','1'),(1608,877,'_wpas_done_all','1'),(1610,879,'_wp_attached_file','2013/10/AN_200.jpg'),(1611,879,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:167;s:4:\"file\";s:18:\"2013/10/AN_200.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"AN_200-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:18:\"AN_200-131x110.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"AN_200-150x125.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:18:\"AN_200-200x120.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1612,879,'_edit_lock','1381688948:1'),(1613,880,'_wp_attached_file','2013/10/AN_2001.jpg'),(1614,880,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:167;s:4:\"file\";s:19:\"2013/10/AN_2001.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"AN_2001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:19:\"AN_2001-131x110.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"AN_2001-150x125.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:19:\"AN_2001-200x120.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1615,880,'_edit_lock','1381689349:1'),(1616,881,'_wp_attached_file','2013/10/AN_2002.jpg'),(1617,881,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:167;s:4:\"file\";s:19:\"2013/10/AN_2002.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"AN_2002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:19:\"AN_2002-131x110.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"AN_2002-150x125.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:19:\"AN_2002-200x120.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1618,881,'_wp_attachment_image_alt','11'),(1636,920,'_wp_attached_file','2013/10/slide_0000r_en.png'),(1637,920,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:26:\"2013/10/slide_0000r_en.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"slide_0000r_en-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"slide_0000r_en-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"slide_0000r_en-210x45.png\";s:5:\"width\";i:210;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"slide_0000r_en-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"slide_0000r_en-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1650,934,'_edit_last','1'),(1651,934,'_edit_lock','1383089373:1'),(1652,934,'_wpas_done_all','1'),(1655,936,'_wp_attached_file','2013/10/KenScott_AbbyRoad.png'),(1656,936,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:446;s:6:\"height\";i:533;s:4:\"file\";s:29:\"2013/10/KenScott_AbbyRoad.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"KenScott_AbbyRoad-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"KenScott_AbbyRoad-251x300.png\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:28:\"KenScott_AbbyRoad-92x110.png\";s:5:\"width\";i:92;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"KenScott_AbbyRoad-125x150.png\";s:5:\"width\";i:125;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:29:\"KenScott_AbbyRoad-446x120.png\";s:5:\"width\";i:446;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:29:\"KenScott_AbbyRoad-446x250.png\";s:5:\"width\";i:446;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1660,941,'_edit_lock','1386353857:1'),(1661,941,'_edit_last','1'),(1662,941,'_wpas_done_all','1'),(2155,1260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:446;s:4:\"file\";s:31:\"2013/11/JayBennett1-500x446.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"JayBennett1-500x446-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"JayBennett1-500x446-300x267.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:31:\"JayBennett1-500x446-123x110.jpg\";s:5:\"width\";i:123;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"JayBennett1-500x446-150x133.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:31:\"JayBennett1-500x446-500x120.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:31:\"JayBennett1-500x446-500x275.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2153,1259,'_edit_last','2'),(2152,1259,'_edit_lock','1384908562:2'),(1689,973,'custom_css_add','yes'),(1690,973,'content_width',''),(1691,973,'custom_css_preprocessor',''),(1702,984,'custom_css_add','yes'),(1703,984,'content_width',''),(1704,984,'custom_css_preprocessor',''),(1705,985,'custom_css_add','yes'),(1706,985,'content_width',''),(1707,985,'custom_css_preprocessor',''),(1708,986,'custom_css_add','yes'),(1709,986,'content_width',''),(1710,986,'custom_css_preprocessor',''),(1711,987,'custom_css_add','yes'),(1712,987,'content_width',''),(1713,987,'custom_css_preprocessor',''),(1714,988,'custom_css_add','yes'),(1715,988,'content_width',''),(1716,988,'custom_css_preprocessor',''),(1717,989,'custom_css_add','yes'),(1718,989,'content_width',''),(1719,989,'custom_css_preprocessor',''),(1720,990,'custom_css_add','yes'),(1721,990,'content_width',''),(1722,990,'custom_css_preprocessor',''),(1723,991,'custom_css_add','yes'),(1724,991,'content_width',''),(1725,991,'custom_css_preprocessor',''),(1726,992,'custom_css_add','yes'),(1727,992,'content_width',''),(1728,992,'custom_css_preprocessor',''),(1729,993,'custom_css_add','yes'),(1730,993,'content_width',''),(1731,993,'custom_css_preprocessor',''),(1732,994,'custom_css_add','yes'),(1733,994,'content_width',''),(1734,994,'custom_css_preprocessor',''),(1735,995,'custom_css_add','yes'),(1736,995,'content_width',''),(1737,995,'custom_css_preprocessor',''),(1738,996,'custom_css_add','yes'),(1739,996,'content_width',''),(1740,996,'custom_css_preprocessor',''),(1741,997,'custom_css_add','yes'),(1742,997,'content_width',''),(1743,997,'custom_css_preprocessor',''),(1744,998,'custom_css_add','yes'),(1745,998,'content_width',''),(1746,998,'custom_css_preprocessor',''),(1747,999,'custom_css_add','yes'),(1748,999,'content_width',''),(1749,999,'custom_css_preprocessor',''),(1750,1000,'custom_css_add','yes'),(1751,1000,'content_width',''),(1752,1000,'custom_css_preprocessor',''),(1753,1001,'custom_css_add','yes'),(1754,1001,'content_width',''),(1755,1001,'custom_css_preprocessor',''),(1756,1002,'custom_css_add','yes'),(1757,1002,'content_width',''),(1758,1002,'custom_css_preprocessor',''),(1759,1003,'custom_css_add','yes'),(1760,1003,'content_width',''),(1761,1003,'custom_css_preprocessor',''),(1762,1004,'custom_css_add','yes'),(1763,1004,'content_width',''),(1764,1004,'custom_css_preprocessor',''),(1765,1005,'custom_css_add','yes'),(1766,1005,'content_width',''),(1767,1005,'custom_css_preprocessor',''),(1768,1006,'custom_css_add','yes'),(1769,1006,'content_width',''),(1770,1006,'custom_css_preprocessor',''),(1771,1007,'custom_css_add','yes'),(1772,1007,'content_width',''),(1773,1007,'custom_css_preprocessor',''),(1774,1008,'custom_css_add','yes'),(1775,1008,'content_width',''),(1776,1008,'custom_css_preprocessor',''),(1777,1009,'custom_css_add','yes'),(1778,1009,'content_width',''),(1779,1009,'custom_css_preprocessor',''),(1780,1010,'custom_css_add','yes'),(1781,1010,'content_width',''),(1782,1010,'custom_css_preprocessor',''),(1783,1011,'custom_css_add','yes'),(1784,1011,'content_width',''),(1785,1011,'custom_css_preprocessor',''),(1786,1012,'custom_css_add','yes'),(1787,1012,'content_width',''),(1788,1012,'custom_css_preprocessor',''),(1789,1013,'custom_css_add','yes'),(1790,1013,'content_width',''),(1791,1013,'custom_css_preprocessor',''),(1792,1014,'custom_css_add','yes'),(1793,1014,'content_width',''),(1794,1014,'custom_css_preprocessor',''),(1795,1015,'custom_css_add','yes'),(1796,1015,'content_width',''),(1797,1015,'custom_css_preprocessor',''),(1798,1016,'custom_css_add','yes'),(1799,1016,'content_width',''),(1800,1016,'custom_css_preprocessor',''),(1801,1017,'custom_css_add','yes'),(1802,1017,'content_width',''),(1803,1017,'custom_css_preprocessor',''),(1804,1018,'custom_css_add','yes'),(1805,1018,'content_width',''),(1806,1018,'custom_css_preprocessor',''),(1807,1019,'custom_css_add','yes'),(1808,1019,'content_width',''),(1809,1019,'custom_css_preprocessor',''),(1810,1020,'custom_css_add','yes'),(1811,1020,'content_width',''),(1812,1020,'custom_css_preprocessor',''),(1813,1021,'custom_css_add','yes'),(1814,1021,'content_width',''),(1815,1021,'custom_css_preprocessor',''),(1816,1022,'custom_css_add','yes'),(1817,1022,'content_width',''),(1818,1022,'custom_css_preprocessor',''),(1819,1023,'custom_css_add','yes'),(1820,1023,'content_width',''),(1821,1023,'custom_css_preprocessor',''),(1822,1024,'custom_css_add','yes'),(1823,1024,'content_width',''),(1824,1024,'custom_css_preprocessor',''),(1825,1025,'custom_css_add','yes'),(1826,1025,'content_width',''),(1827,1025,'custom_css_preprocessor',''),(1828,1026,'custom_css_add','yes'),(1829,1026,'content_width',''),(1830,1026,'custom_css_preprocessor',''),(1831,1027,'custom_css_add','yes'),(1832,1027,'content_width',''),(1833,1027,'custom_css_preprocessor',''),(1834,1028,'custom_css_add','yes'),(1835,1028,'content_width',''),(1836,1028,'custom_css_preprocessor',''),(1837,1029,'custom_css_add','yes'),(1838,1029,'content_width',''),(1839,1029,'custom_css_preprocessor',''),(1840,1030,'custom_css_add','yes'),(1841,1030,'content_width',''),(1842,1030,'custom_css_preprocessor',''),(1843,1031,'custom_css_add','yes'),(1844,1031,'content_width',''),(1845,1031,'custom_css_preprocessor',''),(1846,1032,'custom_css_add','yes'),(1847,1032,'content_width',''),(1848,1032,'custom_css_preprocessor',''),(1849,1033,'custom_css_add','yes'),(1850,1033,'content_width',''),(1851,1033,'custom_css_preprocessor',''),(1852,1034,'custom_css_add','yes'),(1853,1034,'content_width',''),(1854,1034,'custom_css_preprocessor',''),(2154,1260,'_wp_attached_file','2013/11/JayBennett1-500x446.jpg'),(1946,1105,'_wp_attachment_image_alt','1'),(2191,920,'_wp_attachment_image_alt',''),(1953,920,'_edit_lock','1384835732:1'),(1956,1110,'_edit_last','2'),(1957,1110,'_edit_lock','1384908609:2'),(1958,1111,'_wp_attached_file','2013/10/HajiTruckAmpex_001.gif'),(1959,1111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:592;s:6:\"height\";i:900;s:4:\"file\";s:30:\"2013/10/HajiTruckAmpex_001.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"HajiTruckAmpex_001-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"HajiTruckAmpex_001-197x300.gif\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"custom\";a:4:{s:4:\"file\";s:29:\"HajiTruckAmpex_001-72x110.gif\";s:5:\"width\";i:72;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"HajiTruckAmpex_001-98x150.gif\";s:5:\"width\";i:98;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"HajiTruckAmpex_001-592x120.gif\";s:5:\"width\";i:592;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"slider\";a:4:{s:4:\"file\";s:30:\"HajiTruckAmpex_001-592x275.gif\";s:5:\"width\";i:592;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1960,1112,'_wp_attached_file','2013/10/HajiTruckBrochure.jpg'),(1961,1112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2080;s:6:\"height\";i:2652;s:4:\"file\";s:29:\"2013/10/HajiTruckBrochure.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"HajiTruckBrochure-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"HajiTruckBrochure-235x300.jpg\";s:5:\"width\";i:235;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"HajiTruckBrochure-803x1024.jpg\";s:5:\"width\";i:803;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:28:\"HajiTruckBrochure-86x110.jpg\";s:5:\"width\";i:86;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"HajiTruckBrochure-117x150.jpg\";s:5:\"width\";i:117;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:29:\"HajiTruckBrochure-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:30:\"HajiTruckBrochure-1050x275.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1962,1113,'_wp_attached_file','2013/10/HajiTruckClients.jpg'),(1963,1113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2022;s:6:\"height\";i:2077;s:4:\"file\";s:28:\"2013/10/HajiTruckClients.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"HajiTruckClients-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"HajiTruckClients-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"HajiTruckClients-996x1024.jpg\";s:5:\"width\";i:996;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:28:\"HajiTruckClients-107x110.jpg\";s:5:\"width\";i:107;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"HajiTruckClients-146x150.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:28:\"HajiTruckClients-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:29:\"HajiTruckClients-1050x275.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1964,1114,'_wp_attached_file','2013/10/HajiTruckConsole_001.gif'),(1965,1114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:816;s:6:\"height\";i:652;s:4:\"file\";s:32:\"2013/10/HajiTruckConsole_001.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"HajiTruckConsole_001-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"HajiTruckConsole_001-300x239.gif\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"HajiTruckConsole_001-137x110.gif\";s:5:\"width\";i:137;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"HajiTruckConsole_001-150x119.gif\";s:5:\"width\";i:150;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"HajiTruckConsole_001-816x120.gif\";s:5:\"width\";i:816;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"HajiTruckConsole_001-816x275.gif\";s:5:\"width\";i:816;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1966,1115,'_wp_attached_file','2013/10/HajiTruckConsole_002.gif'),(1967,1115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:583;s:6:\"height\";i:755;s:4:\"file\";s:32:\"2013/10/HajiTruckConsole_002.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"HajiTruckConsole_002-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"HajiTruckConsole_002-231x300.gif\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"custom\";a:4:{s:4:\"file\";s:31:\"HajiTruckConsole_002-84x110.gif\";s:5:\"width\";i:84;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"HajiTruckConsole_002-115x150.gif\";s:5:\"width\";i:115;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"HajiTruckConsole_002-583x120.gif\";s:5:\"width\";i:583;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"HajiTruckConsole_002-583x275.gif\";s:5:\"width\";i:583;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1968,1116,'_wp_attached_file','2013/10/HajiTruckControlFront_001.gif'),(1969,1116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:944;s:6:\"height\";i:652;s:4:\"file\";s:37:\"2013/10/HajiTruckControlFront_001.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"HajiTruckControlFront_001-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"HajiTruckControlFront_001-300x207.gif\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"custom\";a:4:{s:4:\"file\";s:37:\"HajiTruckControlFront_001-159x110.gif\";s:5:\"width\";i:159;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"HajiTruckControlFront_001-150x103.gif\";s:5:\"width\";i:150;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"header\";a:4:{s:4:\"file\";s:37:\"HajiTruckControlFront_001-870x120.gif\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"slider\";a:4:{s:4:\"file\";s:37:\"HajiTruckControlFront_001-944x275.gif\";s:5:\"width\";i:944;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1970,1117,'_wp_attached_file','2013/10/HajiTruckFiore_001.gif'),(1971,1117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:404;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2013/10/HajiTruckFiore_001.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"HajiTruckFiore_001-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"HajiTruckFiore_001-202x300.gif\";s:5:\"width\";i:202;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"custom\";a:4:{s:4:\"file\";s:29:\"HajiTruckFiore_001-74x110.gif\";s:5:\"width\";i:74;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"HajiTruckFiore_001-101x150.gif\";s:5:\"width\";i:101;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"HajiTruckFiore_001-404x120.gif\";s:5:\"width\";i:404;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"slider\";a:4:{s:4:\"file\";s:30:\"HajiTruckFiore_001-404x275.gif\";s:5:\"width\";i:404;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1972,1118,'_wp_attached_file','2013/10/HajiTruckMain_001_Brown_900.gif'),(1973,1118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:617;s:4:\"file\";s:39:\"2013/10/HajiTruckMain_001_Brown_900.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"HajiTruckMain_001_Brown_900-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"HajiTruckMain_001_Brown_900-300x205.gif\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"custom\";a:4:{s:4:\"file\";s:39:\"HajiTruckMain_001_Brown_900-160x110.gif\";s:5:\"width\";i:160;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"HajiTruckMain_001_Brown_900-150x102.gif\";s:5:\"width\";i:150;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"header\";a:4:{s:4:\"file\";s:39:\"HajiTruckMain_001_Brown_900-870x120.gif\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"slider\";a:4:{s:4:\"file\";s:39:\"HajiTruckMain_001_Brown_900-900x275.gif\";s:5:\"width\";i:900;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1974,1119,'_wp_attached_file','2013/10/HajiTruckRack_001.gif'),(1975,1119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:536;s:6:\"height\";i:924;s:4:\"file\";s:29:\"2013/10/HajiTruckRack_001.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"HajiTruckRack_001-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"HajiTruckRack_001-174x300.gif\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"custom\";a:4:{s:4:\"file\";s:28:\"HajiTruckRack_001-63x110.gif\";s:5:\"width\";i:63;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"HajiTruckRack_001-87x150.gif\";s:5:\"width\";i:87;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"header\";a:4:{s:4:\"file\";s:29:\"HajiTruckRack_001-536x120.gif\";s:5:\"width\";i:536;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"slider\";a:4:{s:4:\"file\";s:29:\"HajiTruckRack_001-536x275.gif\";s:5:\"width\";i:536;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1976,1110,'_wpas_done_all','1'),(1978,1123,'_wp_attached_file','2013/10/HajiTruckMain_001_Brown_900-2.gif'),(1979,1123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:863;s:6:\"height\";i:575;s:4:\"file\";s:41:\"2013/10/HajiTruckMain_001_Brown_900-2.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"HajiTruckMain_001_Brown_900-2-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"HajiTruckMain_001_Brown_900-2-300x199.gif\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"custom\";a:4:{s:4:\"file\";s:41:\"HajiTruckMain_001_Brown_900-2-165x110.gif\";s:5:\"width\";i:165;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"HajiTruckMain_001_Brown_900-2-150x99.gif\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"header\";a:4:{s:4:\"file\";s:41:\"HajiTruckMain_001_Brown_900-2-863x120.gif\";s:5:\"width\";i:863;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"slider\";a:4:{s:4:\"file\";s:41:\"HajiTruckMain_001_Brown_900-2-863x275.gif\";s:5:\"width\";i:863;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1990,1142,'_edit_last','1'),(1989,1142,'_edit_lock','1386353836:1'),(1991,1142,'_wpas_done_all','1'),(1993,1144,'_edit_last','1'),(1994,1144,'_edit_lock','1386962342:1'),(1995,1144,'_wpas_done_all','1'),(1997,1146,'_edit_lock','1396018250:1'),(1998,1146,'_edit_last','1'),(1999,1146,'_wpas_done_all','1'),(2001,1148,'_wp_attached_file','2013/10/staff1.png'),(2002,1148,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2013/10/staff1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"staff1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:18:\"staff1-110x110.png\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"staff1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:18:\"staff1-200x120.png\";s:5:\"width\";i:200;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2003,1149,'_wp_attached_file','2013/10/Image3.png'),(2004,1149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2013/10/Image3.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Image3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:18:\"Image3-110x110.png\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"Image3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:18:\"Image3-200x120.png\";s:5:\"width\";i:200;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2005,1149,'_wp_attachment_image_alt','1'),(2007,1152,'_edit_last','1'),(2008,1152,'_edit_lock','1397495899:1'),(2009,1152,'_wpas_done_all','1'),(2012,1154,'_edit_last','1'),(2013,1154,'_edit_lock','1382591096:1'),(2014,1154,'_wpas_done_all','1'),(2028,1163,'_edit_last','1'),(2029,1163,'_edit_lock','1382980831:1'),(2030,1163,'_wpas_done_all','1'),(2411,1437,'_edit_last','2'),(2410,1437,'_edit_lock','1389922833:2'),(2045,1043,'_wp_page_template','default'),(2044,1043,'_edit_last','1'),(2046,1173,'_edit_last','1'),(2043,1043,'_edit_lock','1382632528:1'),(2047,1173,'_edit_lock','1386709884:1'),(2048,1173,'_wpas_done_all','1'),(2054,1180,'_edit_lock','1386353877:1'),(2055,1180,'_edit_last','1'),(2056,1180,'_wpas_done_all','1'),(2059,1182,'_edit_last','1'),(2060,1182,'_edit_lock','1382640160:1'),(2061,1182,'_wpas_done_all','1'),(2065,1186,'_edit_last','2'),(2066,1186,'_edit_lock','1389571648:2'),(2067,1186,'_wpas_done_all','1'),(2069,1188,'_edit_last','2'),(2070,1188,'_edit_lock','1386028073:2'),(2071,1188,'_wpas_done_all','1'),(2073,1192,'_wp_attached_file','2013/10/Winery_Dogs.jpg'),(2074,1192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1824;s:6:\"height\";i:1368;s:4:\"file\";s:23:\"2013/10/Winery_Dogs.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Winery_Dogs-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Winery_Dogs-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Winery_Dogs-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"Winery_Dogs-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Winery_Dogs-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"Winery_Dogs-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:24:\"Winery_Dogs-1050x275.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:3.2000000000000002;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G12\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1382867020;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:6:\"10.775\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(2075,1193,'_wp_attached_file','2013/10/Billy_Sheehan.jpg'),(2076,1193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1368;s:6:\"height\";i:1824;s:4:\"file\";s:25:\"2013/10/Billy_Sheehan.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Billy_Sheehan-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Billy_Sheehan-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Billy_Sheehan-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"Billy_Sheehan-82x110.jpg\";s:5:\"width\";i:82;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Billy_Sheehan-112x150.jpg\";s:5:\"width\";i:112;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"Billy_Sheehan-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:26:\"Billy_Sheehan-1050x275.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:3.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G12\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1382866954;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:6:\"12.074\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(2077,1194,'_wp_attached_file','2013/10/Richie_Kotzen.jpg'),(2078,1194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1824;s:6:\"height\";i:1368;s:4:\"file\";s:25:\"2013/10/Richie_Kotzen.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Richie_Kotzen-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Richie_Kotzen-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Richie_Kotzen-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"Richie_Kotzen-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Richie_Kotzen-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"Richie_Kotzen-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:26:\"Richie_Kotzen-1050x275.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G12\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1382867380;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"30.5\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(2079,1195,'_wp_attached_file','2013/10/Winery_Dogs2.jpg'),(2080,1195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1824;s:6:\"height\";i:1368;s:4:\"file\";s:24:\"2013/10/Winery_Dogs2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Winery_Dogs2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Winery_Dogs2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Winery_Dogs2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"Winery_Dogs2-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"Winery_Dogs2-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"Winery_Dogs2-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"Winery_Dogs2-1050x275.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:3.2000000000000002;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G12\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1382867060;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"9.784\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";}}'),(2081,1196,'_wp_attached_file','2013/10/Winery_Dogs3.jpg'),(2082,1196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2816;s:6:\"height\";i:1584;s:4:\"file\";s:24:\"2013/10/Winery_Dogs3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Winery_Dogs3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Winery_Dogs3-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Winery_Dogs3-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"Winery_Dogs3-195x110.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Winery_Dogs3-150x84.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"Winery_Dogs3-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"Winery_Dogs3-1050x275.jpg\";s:5:\"width\";i:1050;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:3.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G12\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1382868244;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:6:\"12.074\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";}}'),(2084,1200,'_edit_lock','1384908729:2'),(2085,1200,'_edit_last','2'),(2086,1202,'_wp_attached_file','2013/10/KatsTheory-Rascals-1.jpg'),(2087,1202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:675;s:4:\"file\";s:32:\"2013/10/KatsTheory-Rascals-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-1-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-1-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-1-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-1-900x275.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.2999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"COOLPIX S6000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1366053580;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"15.6\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(2088,1204,'_wp_attached_file','2013/10/KatsTheory-Rascals-2.jpg'),(2089,1204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:675;s:4:\"file\";s:32:\"2013/10/KatsTheory-Rascals-2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-2-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-2-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-2-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-2-900x275.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.4000000000000004;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"COOLPIX S6000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1366054062;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"18.3\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";}}'),(2090,1205,'_wp_attached_file','2013/10/KatsTheory-Rascals-3.jpg'),(2091,1205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:675;s:4:\"file\";s:32:\"2013/10/KatsTheory-Rascals-3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-3-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-3-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-3-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-3-900x275.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"COOLPIX S6000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1366053778;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"25.3\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";}}'),(2092,1206,'_wp_attached_file','2013/10/KatsTheory-Rascals-4.jpg'),(2093,1206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:675;s:4:\"file\";s:32:\"2013/10/KatsTheory-Rascals-4.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-4-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-4-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-4-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-4-900x275.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.2000000000000002;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"COOLPIX S6000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1366054945;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"13.2\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";}}'),(2094,1207,'_wp_attached_file','2013/10/KatsTheory-Rascals-6.jpg'),(2095,1207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:675;s:4:\"file\";s:32:\"2013/10/KatsTheory-Rascals-6.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-6-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-6-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-6-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-6-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-6-900x275.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:3.7000000000000002;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"COOLPIX S6000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1366056546;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"5\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(2096,1208,'_wp_attached_file','2013/10/KatsTheory-Rascals-5.jpg'),(2097,1208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:675;s:4:\"file\";s:32:\"2013/10/KatsTheory-Rascals-5.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-5-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-5-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-5-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-5-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-5-900x275.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4.9000000000000004;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"COOLPIX S6000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1366055896;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"9.6\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(2098,1209,'_wp_attached_file','2013/10/KatsTheory-Rascals-7.jpg'),(2099,1209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:675;s:4:\"file\";s:32:\"2013/10/KatsTheory-Rascals-7.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-7-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-7-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-7-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-7-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Rascals-7-900x275.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"COOLPIX S6000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1366058729;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"25.3\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(2100,1200,'_wpas_done_all','1'),(2105,1218,'_edit_lock','1384908958:2'),(2106,1218,'_edit_last','2'),(2107,1218,'_wpas_done_all','1'),(2115,1227,'_wp_attached_file','2013/10/howlin-sss-500x.jpg'),(2116,1227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:496;s:4:\"file\";s:27:\"2013/10/howlin-sss-500x.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"howlin-sss-500x-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"howlin-sss-500x-300x297.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:27:\"howlin-sss-500x-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"howlin-sss-500x-150x148.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"howlin-sss-500x-500x120.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:27:\"howlin-sss-500x-500x275.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2133,1242,'_edit_last','1'),(2134,1242,'_wpas_done_all','1'),(2137,1247,'_wp_attached_file','2013/11/DSC_3170_PhotoGallery_2013_11_07.jpg'),(2138,1247,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:498;s:4:\"file\";s:44:\"2013/11/DSC_3170_PhotoGallery_2013_11_07.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"DSC_3170_PhotoGallery_2013_11_07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"DSC_3170_PhotoGallery_2013_11_07-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:44:\"DSC_3170_PhotoGallery_2013_11_07-165x110.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"DSC_3170_PhotoGallery_2013_11_07-150x99.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:44:\"DSC_3170_PhotoGallery_2013_11_07-750x120.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:44:\"DSC_3170_PhotoGallery_2013_11_07-750x275.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:3.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1383769171;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(2139,1247,'_edit_lock','1383950451:1'),(2140,1247,'_wp_attachment_image_alt','1'),(2175,1276,'_wp_attachment_context','custom-header'),(2176,1276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:870;s:6:\"height\";i:120;s:4:\"file\";s:26:\"2013/11/Header1_Final2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Header1_Final2-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Header1_Final2-300x41.png\";s:5:\"width\";i:300;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"Header1_Final2-210x28.png\";s:5:\"width\";i:210;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Header1_Final2-150x20.png\";s:5:\"width\";i:150;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2177,1276,'_wp_attachment_is_custom_header','parabola'),(2178,1277,'_wp_attached_file','2013/11/Header1_Final3.png'),(2179,1277,'_wp_attachment_context','custom-header'),(2180,1277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:870;s:6:\"height\";i:120;s:4:\"file\";s:26:\"2013/11/Header1_Final3.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Header1_Final3-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Header1_Final3-300x41.png\";s:5:\"width\";i:300;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"Header1_Final3-210x28.png\";s:5:\"width\";i:210;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Header1_Final3-150x20.png\";s:5:\"width\";i:150;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2181,1277,'_wp_attachment_is_custom_header','parabola'),(2182,1278,'_wp_attached_file','2013/11/Header_Red_White_Final.png'),(2183,1278,'_wp_attachment_context','custom-header'),(2184,1278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:870;s:6:\"height\";i:120;s:4:\"file\";s:34:\"2013/11/Header_Red_White_Final.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Header_Red_White_Final-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Header_Red_White_Final-300x41.png\";s:5:\"width\";i:300;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:33:\"Header_Red_White_Final-210x28.png\";s:5:\"width\";i:210;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"Header_Red_White_Final-150x20.png\";s:5:\"width\";i:150;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2185,1278,'_wp_attachment_is_custom_header','parabola'),(2186,920,'_edit_last','1'),(2258,1310,'_wp_attached_file','2013/11/KatsTheory-Arlo-31.jpg'),(2259,1310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:776;s:4:\"file\";s:30:\"2013/11/KatsTheory-Arlo-31.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-31-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-31-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-31-141x110.jpg\";s:5:\"width\";i:141;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-31-150x116.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-31-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-31-960x215.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:946684807;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";}}'),(2260,1311,'_wp_attached_file','2013/11/KatsTheory-Arlo-11.jpg'),(2261,1311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:30:\"2013/11/KatsTheory-Arlo-11.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-11-164x110.jpg\";s:5:\"width\";i:164;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-11-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-11-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:30:\"KatsTheory-Arlo-11-960x215.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:946684804;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";}}'),(2262,1303,'_wpas_done_all','1'),(2265,1318,'_edit_lock','1387297740:1'),(2266,1318,'_edit_last','1'),(2267,1318,'_wp_page_template','default'),(2268,1318,'_wpas_done_all','1'),(2269,1320,'_wp_attached_file','2013/09/ApplegateNance_Heycalifornia_001.jpg'),(2270,1320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:638;s:6:\"height\";i:293;s:4:\"file\";s:44:\"2013/09/ApplegateNance_Heycalifornia_001.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"ApplegateNance_Heycalifornia_001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"ApplegateNance_Heycalifornia_001-300x137.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:43:\"ApplegateNance_Heycalifornia_001-210x96.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"ApplegateNance_Heycalifornia_001-150x68.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:68;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:44:\"ApplegateNance_Heycalifornia_001-638x120.jpg\";s:5:\"width\";i:638;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:44:\"ApplegateNance_Heycalifornia_001-638x215.jpg\";s:5:\"width\";i:638;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2273,1331,'_edit_last','2'),(2274,1332,'_wp_attached_file','2013/11/LindaRonstadt.jpg'),(2275,1332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:260;s:6:\"height\";i:391;s:4:\"file\";s:25:\"2013/11/LindaRonstadt.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"LindaRonstadt-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"LindaRonstadt-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"LindaRonstadt-73x110.jpg\";s:5:\"width\";i:73;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"LindaRonstadt-99x150.jpg\";s:5:\"width\";i:99;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"LindaRonstadt-260x120.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"LindaRonstadt-260x215.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2276,1331,'_wpas_done_all','1'),(2278,1341,'_edit_lock','1396017816:1'),(2279,1341,'_edit_last','1'),(2280,1341,'_wpas_done_all','1'),(2283,1347,'_edit_lock','1385942147:2'),(2284,1347,'_edit_last','2'),(2291,1352,'_wp_attached_file','2013/12/losethisfeeling.jpg'),(2292,1352,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:280;s:4:\"file\";s:27:\"2013/12/losethisfeeling.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"losethisfeeling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:27:\"losethisfeeling-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"losethisfeeling-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"losethisfeeling-280x120.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:27:\"losethisfeeling-280x215.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2287,1349,'_wp_attached_file','2013/12/mcdermott1.jpg'),(2288,1349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:483;s:6:\"height\";i:342;s:4:\"file\";s:22:\"2013/12/mcdermott1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"mcdermott1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"mcdermott1-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"mcdermott1-155x110.jpg\";s:5:\"width\";i:155;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"mcdermott1-150x106.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:106;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"mcdermott1-483x120.jpg\";s:5:\"width\";i:483;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"mcdermott1-483x215.jpg\";s:5:\"width\";i:483;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2289,1350,'_wp_attached_file','2013/12/mcdermottband.jpg'),(2290,1350,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:604;s:6:\"height\";i:412;s:4:\"file\";s:25:\"2013/12/mcdermottband.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"mcdermottband-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"mcdermottband-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"mcdermottband-161x110.jpg\";s:5:\"width\";i:161;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"mcdermottband-150x102.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"mcdermottband-604x120.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"mcdermottband-604x215.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2293,1347,'_wpas_done_all','1'),(2295,1355,'_edit_lock','1386017154:2'),(2296,1355,'_edit_last','2'),(2414,1443,'_wp_attached_file','2014/01/macintyre.jpg'),(2299,1357,'_wp_attached_file','2013/12/HowlinBrothers-2.jpeg'),(2300,1357,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:29:\"2013/12/HowlinBrothers-2.jpeg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"HowlinBrothers-2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"HowlinBrothers-2-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:29:\"HowlinBrothers-2-110x110.jpeg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"HowlinBrothers-2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:29:\"HowlinBrothers-2-400x120.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:29:\"HowlinBrothers-2-400x215.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2301,1358,'_wp_attached_file','2013/12/HowlinBrothers-3.jpeg'),(2302,1358,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:403;s:6:\"height\";i:400;s:4:\"file\";s:29:\"2013/12/HowlinBrothers-3.jpeg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"HowlinBrothers-3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"HowlinBrothers-3-300x297.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:29:\"HowlinBrothers-3-110x110.jpeg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"HowlinBrothers-3-150x148.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:29:\"HowlinBrothers-3-403x120.jpeg\";s:5:\"width\";i:403;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:29:\"HowlinBrothers-3-403x215.jpeg\";s:5:\"width\";i:403;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2415,1443,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:298;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2014/01/macintyre.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"macintyre-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:21:\"macintyre-109x110.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"macintyre-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:21:\"macintyre-298x120.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:21:\"macintyre-298x215.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2413,1442,'_edit_last','2'),(2412,1442,'_edit_lock','1389143834:2'),(2307,1361,'_edit_last','1'),(2308,1361,'_edit_lock','1386034033:1'),(2309,1362,'_edit_lock','1386034553:1'),(2310,1362,'_edit_last','1'),(2311,1362,'_wp_page_template','default'),(2312,1362,'_wpas_done_all','1'),(2313,1366,'_wp_attached_file','2013/12/AN_VideoSlider.png'),(2314,1366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:26:\"2013/12/AN_VideoSlider.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"AN_VideoSlider-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"AN_VideoSlider-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"AN_VideoSlider-210x45.png\";s:5:\"width\";i:210;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"AN_VideoSlider-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"AN_VideoSlider-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2315,1367,'_edit_lock','1396041944:1'),(2316,1367,'_edit_last','1'),(2317,1367,'_thumbnail_id','1366'),(2318,1367,'_wpas_done_all','1'),(2424,1455,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:301;s:6:\"height\";i:227;s:4:\"file\";s:22:\"2014/01/tim-butler.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"tim-butler-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"tim-butler-300x226.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"tim-butler-145x110.jpg\";s:5:\"width\";i:145;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"tim-butler-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"tim-butler-301x120.jpg\";s:5:\"width\";i:301;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"tim-butler-301x215.jpg\";s:5:\"width\";i:301;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2346,1049,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:1233;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1386354251;}'),(2333,1318,'_thumbnail_id','173'),(2347,1383,'_edit_lock','1386424302:2'),(2348,1383,'_edit_last','2'),(2349,1383,'_wpas_done_all','1'),(2353,1388,'_edit_last','2'),(2352,1388,'_edit_lock','1386513498:2'),(2354,1388,'_wpas_done_all','1'),(2360,1399,'_edit_last','2'),(2359,1399,'_edit_lock','1388711544:2'),(2361,1401,'_wp_attached_file','2013/12/margorey2.jpg'),(2362,1401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:316;s:6:\"height\";i:457;s:4:\"file\";s:21:\"2013/12/margorey2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"margorey2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"margorey2-207x300.jpg\";s:5:\"width\";i:207;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:20:\"margorey2-76x110.jpg\";s:5:\"width\";i:76;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"margorey2-103x150.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:21:\"margorey2-316x120.jpg\";s:5:\"width\";i:316;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:21:\"margorey2-316x215.jpg\";s:5:\"width\";i:316;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2363,1402,'_wp_attached_file','2013/12/margorey-1.jpg'),(2364,1402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:22:\"2013/12/margorey-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"margorey-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"margorey-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"margorey-1-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"margorey-1-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"margorey-1-480x120.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"margorey-1-480x215.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2365,1403,'_wp_attached_file','2013/12/margorey-3.jpg'),(2366,1403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2013/12/margorey-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"margorey-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"margorey-3-109x110.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"margorey-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"margorey-3-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"margorey-3-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2367,1404,'_wp_attached_file','2013/12/margorey-4.jpg'),(2368,1404,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:508;s:6:\"height\";i:259;s:4:\"file\";s:22:\"2013/12/margorey-4.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"margorey-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"margorey-4-300x152.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"margorey-4-210x107.jpg\";s:5:\"width\";i:210;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"margorey-4-150x76.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"margorey-4-508x120.jpg\";s:5:\"width\";i:508;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"margorey-4-508x215.jpg\";s:5:\"width\";i:508;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2369,1399,'_wpas_done_all','1'),(2372,1408,'_edit_lock','1397775827:2'),(2373,1408,'_edit_last','2'),(2374,1408,'_wpas_done_all','1'),(2383,1416,'_edit_lock','1387326117:2'),(2384,1416,'_edit_last','2'),(2385,1417,'_wp_attached_file','2013/12/beyonce-new-album.jpg'),(2386,1417,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2013/12/beyonce-new-album.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"beyonce-new-album-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"beyonce-new-album-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:29:\"beyonce-new-album-109x110.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"beyonce-new-album-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:29:\"beyonce-new-album-600x120.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:29:\"beyonce-new-album-600x215.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2387,1416,'_wpas_done_all','1'),(2396,1422,'_wpas_done_all','1'),(2395,1422,'_edit_last','2'),(2394,1422,'_edit_lock','1387296795:2'),(2405,1433,'_wp_attached_file','2013/12/carmen.jpg'),(2406,1433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:325;s:6:\"height\";i:386;s:4:\"file\";s:18:\"2013/12/carmen.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"carmen-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"carmen-252x300.jpg\";s:5:\"width\";i:252;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:17:\"carmen-92x110.jpg\";s:5:\"width\";i:92;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"carmen-126x150.jpg\";s:5:\"width\";i:126;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:18:\"carmen-325x120.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:18:\"carmen-325x215.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2407,1430,'_wpas_done_all','1'),(2416,1444,'_wp_attached_file','2014/01/scottmacintyre.jpg'),(2417,1444,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:604;s:6:\"height\";i:403;s:4:\"file\";s:26:\"2014/01/scottmacintyre.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"scottmacintyre-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"scottmacintyre-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"scottmacintyre-164x110.jpg\";s:5:\"width\";i:164;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"scottmacintyre-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"scottmacintyre-604x120.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:26:\"scottmacintyre-604x215.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2425,1453,'_wpas_done_all','1'),(2429,1458,'_edit_last','2'),(2428,1458,'_edit_lock','1389620249:2'),(2430,1459,'_wp_attached_file','2014/01/reomoondance.png'),(2431,1459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:268;s:4:\"file\";s:24:\"2014/01/reomoondance.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"reomoondance-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"reomoondance-123x110.png\";s:5:\"width\";i:123;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"reomoondance-150x134.png\";s:5:\"width\";i:150;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"reomoondance-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:24:\"reomoondance-300x215.png\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2432,1460,'_wp_attached_file','2014/01/reomoondance-2.jpg'),(2433,1460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:604;s:6:\"height\";i:598;s:4:\"file\";s:26:\"2014/01/reomoondance-2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"reomoondance-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"reomoondance-2-300x297.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"reomoondance-2-111x110.jpg\";s:5:\"width\";i:111;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"reomoondance-2-150x148.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"reomoondance-2-604x120.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:26:\"reomoondance-2-604x215.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2434,1458,'_wpas_done_all','1'),(2437,1465,'_wp_attached_file','2014/01/Beatle-who-vanished.jpg'),(2438,1465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:219;s:6:\"height\";i:316;s:4:\"file\";s:31:\"2014/01/Beatle-who-vanished.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Beatle-who-vanished-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Beatle-who-vanished-207x300.jpg\";s:5:\"width\";i:207;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:30:\"Beatle-who-vanished-76x110.jpg\";s:5:\"width\";i:76;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"Beatle-who-vanished-103x150.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:31:\"Beatle-who-vanished-219x120.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:31:\"Beatle-who-vanished-219x215.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2439,1437,'_wpas_done_all','1'),(2448,1473,'_edit_last','2'),(2447,1473,'_edit_lock','1389968134:2'),(2446,1437,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:1471;s:16:\"restored_by_user\";i:2;s:13:\"restored_time\";i:1389922898;}'),(2449,1476,'_wp_attached_file','2014/01/laura_hmb_300dpi-300x400.jpg'),(2450,1476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:400;s:4:\"file\";s:36:\"2014/01/laura_hmb_300dpi-300x400.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"laura_hmb_300dpi-300x400-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"laura_hmb_300dpi-300x400-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:35:\"laura_hmb_300dpi-300x400-82x110.jpg\";s:5:\"width\";i:82;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"laura_hmb_300dpi-300x400-112x150.jpg\";s:5:\"width\";i:112;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:36:\"laura_hmb_300dpi-300x400-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:36:\"laura_hmb_300dpi-300x400-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2451,1477,'_wp_attached_file','2014/01/1370062464_laura-sullivan-loves-river-2012-400x400.jpg'),(2452,1477,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:62:\"2014/01/1370062464_laura-sullivan-loves-river-2012-400x400.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"1370062464_laura-sullivan-loves-river-2012-400x400-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"1370062464_laura-sullivan-loves-river-2012-400x400-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:62:\"1370062464_laura-sullivan-loves-river-2012-400x400-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:62:\"1370062464_laura-sullivan-loves-river-2012-400x400-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:62:\"1370062464_laura-sullivan-loves-river-2012-400x400-400x120.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:62:\"1370062464_laura-sullivan-loves-river-2012-400x400-400x215.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2453,1479,'_wp_attached_file','2014/01/Laura-Sullivan_aec_4.jpg'),(2454,1479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:32:\"2014/01/Laura-Sullivan_aec_4.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Laura-Sullivan_aec_4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Laura-Sullivan_aec_4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"Laura-Sullivan_aec_4-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"Laura-Sullivan_aec_4-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"Laura-Sullivan_aec_4-400x120.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"Laura-Sullivan_aec_4-400x215.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2455,1473,'_wpas_done_all','1'),(2461,1483,'_edit_last','2'),(2460,1483,'_edit_lock','1390234623:2'),(2462,1459,'_edit_lock','1390159163:2'),(2463,1484,'_wp_attached_file','2014/01/reomoondance1.png'),(2464,1484,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:268;s:4:\"file\";s:25:\"2014/01/reomoondance1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"reomoondance1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"reomoondance1-123x110.png\";s:5:\"width\";i:123;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"reomoondance1-150x134.png\";s:5:\"width\";i:150;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"reomoondance1-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"reomoondance1-300x215.png\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2465,1485,'_wp_attached_file','2014/01/reomoondance2.png'),(2466,1485,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:268;s:4:\"file\";s:25:\"2014/01/reomoondance2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"reomoondance2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"reomoondance2-123x110.png\";s:5:\"width\";i:123;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"reomoondance2-150x134.png\";s:5:\"width\";i:150;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"reomoondance2-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"reomoondance2-300x215.png\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2467,1486,'_wp_attached_file','2014/01/Beatle-who-vanished1.jpg'),(2468,1486,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:112;s:6:\"height\";i:160;s:4:\"file\";s:32:\"2014/01/Beatle-who-vanished1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Beatle-who-vanished1-112x150.jpg\";s:5:\"width\";i:112;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:31:\"Beatle-who-vanished1-77x110.jpg\";s:5:\"width\";i:77;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"Beatle-who-vanished1-105x150.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"Beatle-who-vanished1-112x120.jpg\";s:5:\"width\";i:112;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2469,1487,'_wp_attached_file','2014/01/Laura-Sullivan-LovesRiver.jpg'),(2470,1487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:231;s:6:\"height\";i:236;s:4:\"file\";s:37:\"2014/01/Laura-Sullivan-LovesRiver.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Laura-Sullivan-LovesRiver-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:37:\"Laura-Sullivan-LovesRiver-107x110.jpg\";s:5:\"width\";i:107;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"Laura-Sullivan-LovesRiver-146x150.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:37:\"Laura-Sullivan-LovesRiver-231x120.jpg\";s:5:\"width\";i:231;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:37:\"Laura-Sullivan-LovesRiver-231x215.jpg\";s:5:\"width\";i:231;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2471,1491,'_edit_lock','1390221349:2'),(2472,1491,'_edit_last','2'),(2473,1492,'_wp_attached_file','2014/01/KatsTheory-Smithereens-8.jpg'),(2474,1492,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2448;s:6:\"height\";i:2448;s:4:\"file\";s:36:\"2014/01/KatsTheory-Smithereens-8.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Smithereens-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Smithereens-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"KatsTheory-Smithereens-8-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Smithereens-8-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Smithereens-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Smithereens-8-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Smithereens-8-960x215.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.2000000000000002;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1390066574;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";}}'),(2475,1494,'_wp_attached_file','2014/01/KatsTheory-Smithereens-a.jpg'),(2476,1494,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:432;s:6:\"height\";i:288;s:4:\"file\";s:36:\"2014/01/KatsTheory-Smithereens-a.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Smithereens-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Smithereens-a-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Smithereens-a-165x110.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Smithereens-a-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Smithereens-a-432x120.jpg\";s:5:\"width\";i:432;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:36:\"KatsTheory-Smithereens-a-432x215.jpg\";s:5:\"width\";i:432;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:946684805;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"51\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";}}'),(2477,1491,'_wpas_done_all','1'),(2482,1483,'_wpas_done_all','1'),(2486,1499,'_edit_last','2'),(2485,1499,'_edit_lock','1392072144:2'),(2487,1502,'_wp_attached_file','2014/01/jim-berkenstadt-new-book-199x300.jpg'),(2488,1502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:199;s:6:\"height\";i:300;s:4:\"file\";s:44:\"2014/01/jim-berkenstadt-new-book-199x300.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"jim-berkenstadt-new-book-199x300-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:43:\"jim-berkenstadt-new-book-199x300-72x110.jpg\";s:5:\"width\";i:72;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"jim-berkenstadt-new-book-199x300-99x150.jpg\";s:5:\"width\";i:99;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:44:\"jim-berkenstadt-new-book-199x300-199x120.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:44:\"jim-berkenstadt-new-book-199x300-199x215.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2489,1503,'_wp_attached_file','2014/01/jim-berkenstadt-new-book-199x3001.jpg'),(2490,1503,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:199;s:6:\"height\";i:300;s:4:\"file\";s:45:\"2014/01/jim-berkenstadt-new-book-199x3001.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"jim-berkenstadt-new-book-199x3001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:44:\"jim-berkenstadt-new-book-199x3001-72x110.jpg\";s:5:\"width\";i:72;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"jim-berkenstadt-new-book-199x3001-99x150.jpg\";s:5:\"width\";i:99;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:45:\"jim-berkenstadt-new-book-199x3001-199x120.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:45:\"jim-berkenstadt-new-book-199x3001-199x215.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2491,1504,'_wp_attached_file','2014/01/JimmyNicholsCentenialHall.gif'),(2492,1504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:603;s:6:\"height\";i:560;s:4:\"file\";s:37:\"2014/01/JimmyNicholsCentenialHall.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"JimmyNicholsCentenialHall-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"JimmyNicholsCentenialHall-300x278.gif\";s:5:\"width\";i:300;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"custom\";a:4:{s:4:\"file\";s:37:\"JimmyNicholsCentenialHall-118x110.gif\";s:5:\"width\";i:118;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"JimmyNicholsCentenialHall-150x139.gif\";s:5:\"width\";i:150;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"header\";a:4:{s:4:\"file\";s:37:\"JimmyNicholsCentenialHall-603x120.gif\";s:5:\"width\";i:603;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"slider\";a:4:{s:4:\"file\";s:37:\"JimmyNicholsCentenialHall-603x215.gif\";s:5:\"width\";i:603;s:6:\"height\";i:215;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2493,1505,'_wp_attached_file','2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg'),(2494,1505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:179;s:4:\"file\";s:48:\"2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"jimmie_nicol_hong_kong_19641-280x179-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:48:\"jimmie_nicol_hong_kong_19641-280x179-172x110.jpg\";s:5:\"width\";i:172;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:47:\"jimmie_nicol_hong_kong_19641-280x179-150x95.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:48:\"jimmie_nicol_hong_kong_19641-280x179-280x120.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2495,1506,'_wp_attached_file','2014/01/2is-coffee-bar.jpg'),(2496,1506,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:226;s:4:\"file\";s:26:\"2014/01/2is-coffee-bar.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"2is-coffee-bar-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"2is-coffee-bar-121x110.jpg\";s:5:\"width\";i:121;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"2is-coffee-bar-150x135.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"2is-coffee-bar-250x120.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:26:\"2is-coffee-bar-250x215.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2497,1507,'_wp_attached_file','2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg'),(2498,1507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:179;s:4:\"file\";s:84:\"2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:84:\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:84:\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179-172x110.jpg\";s:5:\"width\";i:172;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:83:\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179-150x95.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:84:\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179-280x120.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2499,1499,'_wpas_done_all','1'),(2503,1518,'_edit_last','2'),(2502,1518,'_edit_lock','1390513894:2'),(2504,1519,'_wp_attached_file','2014/01/JimmyNicholsBealesHolland.gif'),(2505,1519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:699;s:6:\"height\";i:673;s:4:\"file\";s:37:\"2014/01/JimmyNicholsBealesHolland.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"JimmyNicholsBealesHolland-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"JimmyNicholsBealesHolland-300x288.gif\";s:5:\"width\";i:300;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"custom\";a:4:{s:4:\"file\";s:37:\"JimmyNicholsBealesHolland-114x110.gif\";s:5:\"width\";i:114;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"JimmyNicholsBealesHolland-150x144.gif\";s:5:\"width\";i:150;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"header\";a:4:{s:4:\"file\";s:37:\"JimmyNicholsBealesHolland-699x120.gif\";s:5:\"width\";i:699;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"slider\";a:4:{s:4:\"file\";s:37:\"JimmyNicholsBealesHolland-699x215.gif\";s:5:\"width\";i:699;s:6:\"height\";i:215;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2506,1520,'_wp_attached_file','2014/01/amazon_best_selling_beatles_book_trailer-280x179.png'),(2507,1520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:179;s:4:\"file\";s:60:\"2014/01/amazon_best_selling_beatles_book_trailer-280x179.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"amazon_best_selling_beatles_book_trailer-280x179-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:60:\"amazon_best_selling_beatles_book_trailer-280x179-172x110.png\";s:5:\"width\";i:172;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:59:\"amazon_best_selling_beatles_book_trailer-280x179-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:60:\"amazon_best_selling_beatles_book_trailer-280x179-280x120.png\";s:5:\"width\";i:280;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2508,1521,'_wp_attached_file','2014/01/JimmyNicholsCentenialHallStage.gif'),(2509,1521,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:656;s:6:\"height\";i:391;s:4:\"file\";s:42:\"2014/01/JimmyNicholsCentenialHallStage.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"JimmyNicholsCentenialHallStage-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"JimmyNicholsCentenialHallStage-300x178.gif\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"custom\";a:4:{s:4:\"file\";s:42:\"JimmyNicholsCentenialHallStage-184x110.gif\";s:5:\"width\";i:184;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"JimmyNicholsCentenialHallStage-150x89.gif\";s:5:\"width\";i:150;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"header\";a:4:{s:4:\"file\";s:42:\"JimmyNicholsCentenialHallStage-656x120.gif\";s:5:\"width\";i:656;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"slider\";a:4:{s:4:\"file\";s:42:\"JimmyNicholsCentenialHallStage-656x215.gif\";s:5:\"width\";i:656;s:6:\"height\";i:215;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2510,1522,'_wp_attached_file','2014/01/JimmyNicholsWalkinAway.gif'),(2511,1522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:686;s:6:\"height\";i:703;s:4:\"file\";s:34:\"2014/01/JimmyNicholsWalkinAway.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"JimmyNicholsWalkinAway-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"JimmyNicholsWalkinAway-292x300.gif\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"custom\";a:4:{s:4:\"file\";s:34:\"JimmyNicholsWalkinAway-107x110.gif\";s:5:\"width\";i:107;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"JimmyNicholsWalkinAway-146x150.gif\";s:5:\"width\";i:146;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"header\";a:4:{s:4:\"file\";s:34:\"JimmyNicholsWalkinAway-686x120.gif\";s:5:\"width\";i:686;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"slider\";a:4:{s:4:\"file\";s:34:\"JimmyNicholsWalkinAway-686x215.gif\";s:5:\"width\";i:686;s:6:\"height\";i:215;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2512,1518,'_wpas_done_all','1'),(2516,1526,'_edit_last','1'),(2515,1526,'_edit_lock','1394540885:1'),(2517,1527,'_wp_attached_file','2014/01/1011117_10152549258957892_1071701040_n.jpg'),(2518,1527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:480;s:4:\"file\";s:50:\"2014/01/1011117_10152549258957892_1071701040_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"1011117_10152549258957892_1071701040_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"1011117_10152549258957892_1071701040_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:50:\"1011117_10152549258957892_1071701040_n-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"1011117_10152549258957892_1071701040_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:50:\"1011117_10152549258957892_1071701040_n-480x120.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:50:\"1011117_10152549258957892_1071701040_n-480x215.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2519,1528,'_wp_attached_file','2014/01/1601551_10152545963282892_1241362614_n.jpg'),(2520,1528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:50:\"2014/01/1601551_10152545963282892_1241362614_n.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"1601551_10152545963282892_1241362614_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"1601551_10152545963282892_1241362614_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:50:\"1601551_10152545963282892_1241362614_n-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"1601551_10152545963282892_1241362614_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:50:\"1601551_10152545963282892_1241362614_n-640x120.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:50:\"1601551_10152545963282892_1241362614_n-640x215.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2521,1526,'_wpas_done_all','1'),(2527,1532,'_edit_last','2'),(2526,1532,'_edit_lock','1391043173:2'),(2528,1534,'_wp_attached_file','2014/01/KatsTheory-Grammy-4.jpg'),(2529,1534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:31:\"2014/01/KatsTheory-Grammy-4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"KatsTheory-Grammy-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"KatsTheory-Grammy-4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"KatsTheory-Grammy-4-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:31:\"KatsTheory-Grammy-4-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"KatsTheory-Grammy-4-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:31:\"KatsTheory-Grammy-4-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:31:\"KatsTheory-Grammy-4-960x215.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.2000000000000002;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1390603979;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";}}'),(2530,1535,'_wp_attached_file','2014/01/IMG_0038.jpg'),(2531,1535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:20:\"2014/01/IMG_0038.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0038-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0038-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0038-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:20:\"IMG_0038-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0038-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:20:\"IMG_0038-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:20:\"IMG_0038-960x215.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2532,1536,'_wp_attached_file','2014/01/IMG_0035.jpg'),(2533,1536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:20:\"2014/01/IMG_0035.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0035-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0035-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_0035-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:20:\"IMG_0035-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0035-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:20:\"IMG_0035-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:20:\"IMG_0035-960x215.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2534,1532,'_wpas_done_all','1'),(2543,1544,'_wp_attached_file','2014/02/geoffdownes.jpg'),(2542,1542,'_edit_last','2'),(2541,1542,'_edit_lock','1392131489:2'),(2544,1544,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:307;s:6:\"height\";i:464;s:4:\"file\";s:23:\"2014/02/geoffdownes.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"geoffdownes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"geoffdownes-198x300.jpg\";s:5:\"width\";i:198;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"geoffdownes-72x110.jpg\";s:5:\"width\";i:72;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"geoffdownes-99x150.jpg\";s:5:\"width\";i:99;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"geoffdownes-307x120.jpg\";s:5:\"width\";i:307;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:23:\"geoffdownes-307x215.jpg\";s:5:\"width\";i:307;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2545,1545,'_wp_attached_file','2014/02/ndoelectronica.jpg'),(2546,1545,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:291;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2014/02/ndoelectronica.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"ndoelectronica-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"ndoelectronica-106x110.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"ndoelectronica-145x150.jpg\";s:5:\"width\";i:145;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"ndoelectronica-291x120.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:26:\"ndoelectronica-291x215.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2547,1546,'_wp_attached_file','2014/02/asiagravitas.jpg'),(2548,1546,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2014/02/asiagravitas.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"asiagravitas-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"asiagravitas-109x110.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"asiagravitas-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"asiagravitas-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:24:\"asiagravitas-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2549,1542,'_wpas_done_all','1'),(2553,1551,'_edit_last','2'),(2552,1551,'_edit_lock','1392672030:2'),(2554,1554,'_wp_attached_file','2014/02/800px-Scorpions_live_2010.jpg'),(2555,1554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:37:\"2014/02/800px-Scorpions_live_2010.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"800px-Scorpions_live_2010-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"800px-Scorpions_live_2010-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:37:\"800px-Scorpions_live_2010-165x110.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"800px-Scorpions_live_2010-150x99.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:37:\"800px-Scorpions_live_2010-800x120.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:37:\"800px-Scorpions_live_2010-800x215.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2564,1559,'_wp_attached_file','2014/02/MatthiasJabsKavarna2009.jpg'),(2565,1559,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:420;s:6:\"height\";i:460;s:4:\"file\";s:35:\"2014/02/MatthiasJabsKavarna2009.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"MatthiasJabsKavarna2009-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"MatthiasJabsKavarna2009-273x300.jpg\";s:5:\"width\";i:273;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:35:\"MatthiasJabsKavarna2009-100x110.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"MatthiasJabsKavarna2009-136x150.jpg\";s:5:\"width\";i:136;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:35:\"MatthiasJabsKavarna2009-420x120.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:35:\"MatthiasJabsKavarna2009-420x215.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2566,1560,'_wp_attached_file','2014/02/scorpions.jpg'),(2567,1560,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:298;s:4:\"file\";s:21:\"2014/02/scorpions.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"scorpions-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:21:\"scorpions-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"scorpions-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:21:\"scorpions-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:21:\"scorpions-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2568,1551,'_wpas_done_all','1'),(2572,1566,'_edit_last','2'),(2571,1566,'_edit_lock','1393281674:2'),(2573,1567,'_wp_attached_file','2014/02/badselfportraitsdetail.jpg'),(2574,1567,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:34:\"2014/02/badselfportraitsdetail.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"badselfportraitsdetail-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"badselfportraitsdetail-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:34:\"badselfportraitsdetail-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"badselfportraitsdetail-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:34:\"badselfportraitsdetail-500x120.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:34:\"badselfportraitsdetail-500x215.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2575,1566,'_wpas_done_all','1'),(2581,1572,'_edit_last','2'),(2580,1572,'_edit_lock','1393296302:2'),(2582,1573,'_wp_attached_file','2014/02/benmonttench.jpg'),(2583,1573,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:24:\"2014/02/benmonttench.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"benmonttench-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:24:\"benmonttench-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"benmonttench-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:24:\"benmonttench-225x120.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:24:\"benmonttench-225x215.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2584,1572,'_wpas_done_all','1'),(2588,1576,'_edit_last','2'),(2587,1576,'_edit_lock','1393455565:2'),(2589,1577,'_wp_attached_file','2014/02/dressedtokill.jpg'),(2590,1577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:298;s:4:\"file\";s:25:\"2014/02/dressedtokill.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"dressedtokill-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"dressedtokill-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"dressedtokill-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"dressedtokill-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"dressedtokill-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2591,1576,'_wpas_done_all','1'),(2597,1583,'_edit_last','2'),(2596,1583,'_edit_lock','1393513949:2'),(2598,1585,'_wp_attached_file','2014/02/garychapman-the-truth1.jpg'),(2599,1585,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2014/02/garychapman-the-truth1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"garychapman-the-truth1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:34:\"garychapman-the-truth1-109x110.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"garychapman-the-truth1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:34:\"garychapman-the-truth1-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:34:\"garychapman-the-truth1-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2600,1586,'_wp_attached_file','2014/02/cassiechapman.jpg'),(2601,1586,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:225;s:4:\"file\";s:25:\"2014/02/cassiechapman.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"cassiechapman-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"cassiechapman-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"cassiechapman-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"cassiechapman-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"cassiechapman-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2602,1587,'_wp_attached_file','2014/02/nashvillewives1.jpg'),(2603,1587,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:604;s:6:\"height\";i:505;s:4:\"file\";s:27:\"2014/02/nashvillewives1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"nashvillewives1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"nashvillewives1-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:27:\"nashvillewives1-131x110.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"nashvillewives1-150x125.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"nashvillewives1-604x120.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:27:\"nashvillewives1-604x215.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2604,1583,'_wpas_done_all','1'),(2608,1591,'_edit_last','2'),(2607,1591,'_edit_lock','1393865015:2'),(2609,1592,'_wp_attached_file','2014/03/slythefamilystone.jpg'),(2610,1592,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1496;s:4:\"file\";s:29:\"2014/03/slythefamilystone.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"slythefamilystone-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"slythefamilystone-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"slythefamilystone-1024x1021.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1021;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:29:\"slythefamilystone-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"slythefamilystone-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:29:\"slythefamilystone-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:29:\"slythefamilystone-960x215.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2611,1591,'_wpas_done_all','1'),(2615,1596,'_edit_last','2'),(2614,1596,'_edit_lock','1394112873:2'),(2616,1598,'_wp_attached_file','2014/03/bill-leverty2.jpg'),(2617,1598,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:219;s:4:\"file\";s:25:\"2014/03/bill-leverty2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bill-leverty2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bill-leverty2-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:25:\"bill-leverty2-165x110.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"bill-leverty2-150x99.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:25:\"bill-leverty2-330x120.jpg\";s:5:\"width\";i:330;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:25:\"bill-leverty2-330x215.jpg\";s:5:\"width\";i:330;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2618,1596,'_wpas_done_all','1'),(2624,1602,'_edit_last','2'),(2623,1602,'_edit_lock','1394414824:2'),(2625,1605,'_wp_attached_file','2014/03/1dbd47866139b2e0b1162eb36bedea15_large.jpg'),(2626,1605,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:507;s:4:\"file\";s:50:\"2014/03/1dbd47866139b2e0b1162eb36bedea15_large.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"1dbd47866139b2e0b1162eb36bedea15_large-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"1dbd47866139b2e0b1162eb36bedea15_large-300x217.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:50:\"1dbd47866139b2e0b1162eb36bedea15_large-151x110.jpg\";s:5:\"width\";i:151;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"1dbd47866139b2e0b1162eb36bedea15_large-150x108.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:108;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:50:\"1dbd47866139b2e0b1162eb36bedea15_large-700x120.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:50:\"1dbd47866139b2e0b1162eb36bedea15_large-700x215.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2627,1606,'_wp_attached_file','2014/03/Wendy-Pic-2.jpg'),(2628,1606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:23:\"2014/03/Wendy-Pic-2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Wendy-Pic-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Wendy-Pic-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"Wendy-Pic-2-146x110.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"Wendy-Pic-2-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"Wendy-Pic-2-640x120.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:23:\"Wendy-Pic-2-640x215.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"C960Z,D460Z\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";b:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.6\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:22:\"OLYMPUS DIGITAL CAMERA\";}}'),(2629,1607,'_wp_attached_file','2014/03/BValbum_BVinblack.jpeg'),(2630,1607,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1014;s:6:\"height\";i:812;s:4:\"file\";s:30:\"2014/03/BValbum_BVinblack.jpeg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"BValbum_BVinblack-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"BValbum_BVinblack-300x240.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:30:\"BValbum_BVinblack-137x110.jpeg\";s:5:\"width\";i:137;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"BValbum_BVinblack-150x120.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"BValbum_BVinblack-870x120.jpeg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:30:\"BValbum_BVinblack-960x215.jpeg\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2631,1608,'_wp_attached_file','2014/03/BV-mixing.jpg'),(2632,1608,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1053;s:6:\"height\";i:1016;s:4:\"file\";s:21:\"2014/03/BV-mixing.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"BV-mixing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"BV-mixing-300x289.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"BV-mixing-1024x988.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:988;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:21:\"BV-mixing-114x110.jpg\";s:5:\"width\";i:114;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"BV-mixing-150x144.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:21:\"BV-mixing-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:21:\"BV-mixing-960x215.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2633,1609,'_wp_attached_file','2014/03/FIRST-SMART_Control-Room.jpg'),(2634,1609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1488;s:6:\"height\";i:1056;s:4:\"file\";s:36:\"2014/03/FIRST-SMART_Control-Room.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"FIRST-SMART_Control-Room-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"FIRST-SMART_Control-Room-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"FIRST-SMART_Control-Room-1024x726.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:726;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:36:\"FIRST-SMART_Control-Room-155x110.jpg\";s:5:\"width\";i:155;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"FIRST-SMART_Control-Room-150x106.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:106;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:36:\"FIRST-SMART_Control-Room-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:36:\"FIRST-SMART_Control-Room-960x215.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2635,1610,'_wp_attached_file','2014/03/Feeny_SM-at-conslBW.jpeg'),(2636,1610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1716;s:6:\"height\";i:1158;s:4:\"file\";s:32:\"2014/03/Feeny_SM-at-conslBW.jpeg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Feeny_SM-at-conslBW-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Feeny_SM-at-conslBW-300x202.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Feeny_SM-at-conslBW-1024x691.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:691;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:32:\"Feeny_SM-at-conslBW-163x110.jpeg\";s:5:\"width\";i:163;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"Feeny_SM-at-conslBW-150x101.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:101;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:32:\"Feeny_SM-at-conslBW-870x120.jpeg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:32:\"Feeny_SM-at-conslBW-960x215.jpeg\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2637,1611,'_wp_attached_file','2014/03/1dbd47866139b2e0b1162eb36bedea15_large1.jpg'),(2638,1611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:507;s:4:\"file\";s:51:\"2014/03/1dbd47866139b2e0b1162eb36bedea15_large1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"1dbd47866139b2e0b1162eb36bedea15_large1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"1dbd47866139b2e0b1162eb36bedea15_large1-300x217.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:51:\"1dbd47866139b2e0b1162eb36bedea15_large1-151x110.jpg\";s:5:\"width\";i:151;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"1dbd47866139b2e0b1162eb36bedea15_large1-150x108.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:108;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:51:\"1dbd47866139b2e0b1162eb36bedea15_large1-700x120.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:51:\"1dbd47866139b2e0b1162eb36bedea15_large1-700x215.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2639,1613,'_wp_attached_file','2014/03/Wall-of-CDs_36-1-small.jpg'),(2640,1613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:34:\"2014/03/Wall-of-CDs_36-1-small.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Wall-of-CDs_36-1-small-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Wall-of-CDs_36-1-small-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:34:\"Wall-of-CDs_36-1-small-164x110.jpg\";s:5:\"width\";i:164;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"Wall-of-CDs_36-1-small-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:34:\"Wall-of-CDs_36-1-small-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:34:\"Wall-of-CDs_36-1-small-960x215.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1330830009;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(2641,1602,'_wpas_done_all','1'),(2647,1622,'_edit_last','2'),(2646,1622,'_edit_lock','1394624200:2'),(2648,1624,'_wp_attached_file','2014/03/anotherlongnightout.jpg'),(2649,1624,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2014/03/anotherlongnightout.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"anotherlongnightout-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:31:\"anotherlongnightout-109x110.jpg\";s:5:\"width\";i:109;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"anotherlongnightout-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:31:\"anotherlongnightout-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:31:\"anotherlongnightout-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2650,1625,'_wp_attached_file','2014/03/culbertson.jpg'),(2651,1625,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:604;s:6:\"height\";i:401;s:4:\"file\";s:22:\"2014/03/culbertson.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"culbertson-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"culbertson-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"culbertson-165x110.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"culbertson-150x99.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"culbertson-604x120.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"culbertson-604x215.jpg\";s:5:\"width\";i:604;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2652,1622,'_wpas_done_all','1'),(2656,1629,'_edit_last','2'),(2655,1629,'_edit_lock','1395148864:2'),(2657,1632,'_wp_attached_file','2014/03/jerryreed-1.jpg'),(2658,1632,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:23:\"2014/03/jerryreed-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"jerryreed-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"jerryreed-1-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"jerryreed-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"jerryreed-1-225x120.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:23:\"jerryreed-1-225x215.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2659,1633,'_wp_attached_file','2014/03/elvis-guitarman.jpg'),(2660,1633,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:229;s:6:\"height\";i:220;s:4:\"file\";s:27:\"2014/03/elvis-guitarman.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"elvis-guitarman-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:27:\"elvis-guitarman-114x110.jpg\";s:5:\"width\";i:114;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"elvis-guitarman-150x144.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"elvis-guitarman-229x120.jpg\";s:5:\"width\";i:229;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:27:\"elvis-guitarman-229x215.jpg\";s:5:\"width\";i:229;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2661,1635,'_wp_attached_file','2014/03/jerryreed-whenyorehot.jpg'),(2662,1635,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:224;s:4:\"file\";s:33:\"2014/03/jerryreed-whenyorehot.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"jerryreed-whenyorehot-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:33:\"jerryreed-whenyorehot-110x110.jpg\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"jerryreed-whenyorehot-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:33:\"jerryreed-whenyorehot-224x120.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:33:\"jerryreed-whenyorehot-224x215.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2663,1629,'_wpas_done_all','1'),(2667,1637,'_edit_last','2'),(2666,1637,'_edit_lock','1395145711:2'),(2668,1637,'_wpas_done_all','1'),(2677,1642,'_wp_attached_file','2014/03/beautifulcolors-andrewgolub.jpg'),(2676,1640,'_edit_last','2'),(2675,1640,'_edit_lock','1395366291:2'),(2678,1642,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:329;s:6:\"height\";i:238;s:4:\"file\";s:39:\"2014/03/beautifulcolors-andrewgolub.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"beautifulcolors-andrewgolub-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"beautifulcolors-andrewgolub-300x217.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:39:\"beautifulcolors-andrewgolub-152x110.jpg\";s:5:\"width\";i:152;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"beautifulcolors-andrewgolub-150x108.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:108;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:39:\"beautifulcolors-andrewgolub-329x120.jpg\";s:5:\"width\";i:329;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:39:\"beautifulcolors-andrewgolub-329x215.jpg\";s:5:\"width\";i:329;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2679,1643,'_wp_attached_file','2014/03/golub31.jpg'),(2680,1643,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:305;s:6:\"height\";i:440;s:4:\"file\";s:19:\"2014/03/golub31.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"golub31-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"golub31-207x300.jpg\";s:5:\"width\";i:207;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:18:\"golub31-76x110.jpg\";s:5:\"width\";i:76;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"golub31-103x150.jpg\";s:5:\"width\";i:103;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:19:\"golub31-305x120.jpg\";s:5:\"width\";i:305;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:19:\"golub31-305x215.jpg\";s:5:\"width\";i:305;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2681,1644,'_wp_attached_file','2014/03/golub2.jpg'),(2682,1644,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:324;s:6:\"height\";i:432;s:4:\"file\";s:18:\"2014/03/golub2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"golub2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"golub2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:17:\"golub2-82x110.jpg\";s:5:\"width\";i:82;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"golub2-112x150.jpg\";s:5:\"width\";i:112;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:18:\"golub2-324x120.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:18:\"golub2-324x215.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2683,1640,'_wpas_done_all','1'),(2686,1648,'_wp_attached_file','2014/03/4382937779_e0c1d76aca_o.png'),(2687,1648,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:205;s:6:\"height\";i:205;s:4:\"file\";s:35:\"2014/03/4382937779_e0c1d76aca_o.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"4382937779_e0c1d76aca_o-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:35:\"4382937779_e0c1d76aca_o-110x110.png\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"4382937779_e0c1d76aca_o-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:35:\"4382937779_e0c1d76aca_o-205x120.png\";s:5:\"width\";i:205;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2688,1649,'_wp_attached_file','2014/03/4382937779_e0c1d76aca_o1.png'),(2689,1649,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:205;s:6:\"height\";i:205;s:4:\"file\";s:36:\"2014/03/4382937779_e0c1d76aca_o1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"4382937779_e0c1d76aca_o1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:36:\"4382937779_e0c1d76aca_o1-110x110.png\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"4382937779_e0c1d76aca_o1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:36:\"4382937779_e0c1d76aca_o1-205x120.png\";s:5:\"width\";i:205;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2690,1650,'_edit_lock','1396279756:2'),(2691,1650,'_edit_last','2'),(2692,1652,'_wp_attached_file','2014/03/RichardFulco-2.jpg'),(2693,1652,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:262;s:6:\"height\";i:283;s:4:\"file\";s:26:\"2014/03/RichardFulco-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"RichardFulco-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"RichardFulco-2-101x110.jpg\";s:5:\"width\";i:101;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"RichardFulco-2-138x150.jpg\";s:5:\"width\";i:138;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:26:\"RichardFulco-2-262x120.jpg\";s:5:\"width\";i:262;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:26:\"RichardFulco-2-262x215.jpg\";s:5:\"width\";i:262;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:25:\"Canon PowerShot SD1100 IS\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1224328908;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.2\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";}}'),(2694,1653,'_wp_attached_file','2014/03/Richard-Fulco-1.jpg'),(2695,1653,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:907;s:6:\"height\";i:1360;s:4:\"file\";s:27:\"2014/03/Richard-Fulco-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Richard-Fulco-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Richard-Fulco-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Richard-Fulco-1-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:26:\"Richard-Fulco-1-73x110.jpg\";s:5:\"width\";i:73;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"Richard-Fulco-1-100x150.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:27:\"Richard-Fulco-1-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:27:\"Richard-Fulco-1-907x215.jpg\";s:5:\"width\";i:907;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2696,1650,'_wpas_done_all','1'),(2756,1679,'_edit_lock','1397047161:2'),(2724,1663,'_wp_attached_file','2013/10/JoshAyers.png'),(2725,1663,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:210;s:4:\"file\";s:21:\"2013/10/JoshAyers.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"JoshAyers-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"JoshAyers-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:20:\"JoshAyers-210x45.png\";s:5:\"width\";i:210;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"JoshAyers-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:21:\"JoshAyers-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2749,1673,'_edit_lock','1396355608:2'),(2750,1673,'_edit_last','2'),(2751,1674,'_wp_attached_file','2014/04/220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986.jpg'),(2752,1674,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:220;s:6:\"height\";i:331;s:4:\"file\";s:62:\"2014/04/220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:61:\"220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986-73x110.jpg\";s:5:\"width\";i:73;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:61:\"220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986-99x150.jpg\";s:5:\"width\";i:99;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:62:\"220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986-220x120.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:62:\"220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986-220x210.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2739,1670,'_wp_attached_file','2013/10/HMslider1.png'),(2740,1670,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1016;s:6:\"height\";i:233;s:4:\"file\";s:21:\"2013/10/HMslider1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"HMslider1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"HMslider1-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"custom\";a:4:{s:4:\"file\";s:20:\"HMslider1-210x48.png\";s:5:\"width\";i:210;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"HMslider1-150x34.png\";s:5:\"width\";i:150;s:6:\"height\";i:34;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:21:\"HMslider1-870x120.png\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"slider\";a:4:{s:4:\"file\";s:21:\"HMslider1-960x215.png\";s:5:\"width\";i:960;s:6:\"height\";i:215;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2753,1673,'_wpas_done_all','1'),(2758,1680,'_wp_attached_file','2014/04/katstheory-blues-1.jpg'),(2757,1679,'_edit_last','2'),(2759,1680,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2380;s:6:\"height\";i:2776;s:4:\"file\";s:30:\"2014/04/katstheory-blues-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"katstheory-blues-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"katstheory-blues-1-257x300.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"katstheory-blues-1-877x1024.jpg\";s:5:\"width\";i:877;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:29:\"katstheory-blues-1-94x110.jpg\";s:5:\"width\";i:94;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"katstheory-blues-1-128x150.jpg\";s:5:\"width\";i:128;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:30:\"katstheory-blues-1-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:30:\"katstheory-blues-1-960x210.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"COOLPIX S6000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1361317631;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";}}'),(2760,1679,'_wpas_done_all','1'),(2763,23,'_wpas_done_all','1'),(2764,1692,'_edit_lock','1397569011:2'),(2765,1692,'_edit_last','2'),(2766,1693,'_wp_attached_file','2014/04/lindsayell1.jpg'),(2767,1693,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:308;s:6:\"height\";i:452;s:4:\"file\";s:23:\"2014/04/lindsayell1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"lindsayell1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"lindsayell1-204x300.jpg\";s:5:\"width\";i:204;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"lindsayell1-74x110.jpg\";s:5:\"width\";i:74;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"lindsayell1-102x150.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"lindsayell1-308x120.jpg\";s:5:\"width\";i:308;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:23:\"lindsayell1-308x210.jpg\";s:5:\"width\";i:308;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2768,1694,'_wp_attached_file','2014/04/lindsayell2.jpg'),(2769,1694,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:312;s:6:\"height\";i:403;s:4:\"file\";s:23:\"2014/04/lindsayell2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"lindsayell2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"lindsayell2-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"lindsayell2-85x110.jpg\";s:5:\"width\";i:85;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"lindsayell2-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"lindsayell2-312x120.jpg\";s:5:\"width\";i:312;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:23:\"lindsayell2-312x210.jpg\";s:5:\"width\";i:312;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2770,1243,'_edit_lock','1397529302:1'),(2771,1692,'_wpas_done_all','1'),(2780,1704,'_wp_attached_file','2014/04/mikemasse3.jpg'),(2779,1700,'_edit_last','2'),(2778,1700,'_edit_lock','1398864673:2'),(2781,1704,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:768;s:4:\"file\";s:22:\"2014/04/mikemasse3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"mikemasse3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"mikemasse3-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:22:\"mikemasse3-137x110.jpg\";s:5:\"width\";i:137;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"mikemasse3-150x120.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:22:\"mikemasse3-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:22:\"mikemasse3-960x210.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:12:\"Shaun Anders\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:12:\"Shaun Anders\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2782,1705,'_wp_attached_file','2014/04/bookmikeimg.png'),(2783,1705,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:141;s:6:\"height\";i:122;s:4:\"file\";s:23:\"2014/04/bookmikeimg.png\";s:5:\"sizes\";a:2:{s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"bookmikeimg-127x110.png\";s:5:\"width\";i:127;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"bookmikeimg-141x120.png\";s:5:\"width\";i:141;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2784,1707,'_wp_attached_file','2014/04/mikemasse-4.jpg'),(2785,1707,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:636;s:4:\"file\";s:23:\"2014/04/mikemasse-4.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"mikemasse-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"mikemasse-4-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"mikemasse-4-166x110.jpg\";s:5:\"width\";i:166;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"mikemasse-4-150x99.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"mikemasse-4-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:23:\"mikemasse-4-960x210.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2786,1712,'_wp_attached_file','2014/04/mikemasse-5.jpg'),(2787,1712,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:23:\"2014/04/mikemasse-5.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"mikemasse-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"mikemasse-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"custom\";a:4:{s:4:\"file\";s:23:\"mikemasse-5-165x110.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"mikemasse-5-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"header\";a:4:{s:4:\"file\";s:23:\"mikemasse-5-870x120.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"slider\";a:4:{s:4:\"file\";s:23:\"mikemasse-5-960x210.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(2788,1700,'_wpas_done_all','1'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL auto_increment, `post_author` bigint(20) unsigned NOT NULL default '0', `post_date` datetime NOT NULL default '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00', `post_content` longtext NOT NULL, `post_title` text NOT NULL, `post_excerpt` text NOT NULL, `post_status` varchar(20) NOT NULL default 'publish', `comment_status` varchar(20) NOT NULL default 'open', `ping_status` varchar(20) NOT NULL default 'open', `post_password` varchar(20) NOT NULL default '', `post_name` varchar(200) NOT NULL default '', `to_ping` text NOT NULL, `pinged` text NOT NULL, `post_modified` datetime NOT NULL default '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL default '0000-00-00 00:00:00', `post_content_filtered` longtext NOT NULL, `post_parent` bigint(20) unsigned NOT NULL default '0', `guid` varchar(255) NOT NULL default '', `menu_order` int(11) NOT NULL default '0', `post_type` varchar(20) NOT NULL default 'post', `post_mime_type` varchar(100) NOT NULL default '', `comment_count` bigint(20) NOT NULL default '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=MyISAM AUTO_INCREMENT=1722 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (3,1,'2013-08-29 16:15:32','2013-08-29 16:15:32','Joshua D. Ayers brings more than his record producing skills to the table. A multi-instrumentalist, Josh is also a talented singer-songwriter. Originally from South Carolina, Josh’s love of music brought him first to Nashville, and now to the Knoxville TN area.\r\n\r\nUsing his background in record engineering, Josh learned the business, and eventually was offered a weekly radio show, on WHAY 98.3, where he showcases new artists. Using his eye for talent, and his enjoyment of working with other musicians, Josh will be producing some exceptional artists for Earth Hertz Records.\r\nWaste QuickTime\r\n\r\n \r\n\r\n ','Joshua D. Ayers Project \"Waste\"','','publish','open','open','','3','','','2013-11-20 01:01:07','2013-11-20 01:01:07','',0,'http://0332c8e.netsolhost.com/WordPress/?p=3',0,'post','',0),(411,1,'2013-10-03 17:33:42','2013-10-03 17:33:42','Joshua D. Ayers brings more than his record producing skills to the table. A multi-instrumentalist, Josh is also a talented singer-songwriter. Originally from South Carolina, Josh’s love of music brought him first to Nashville, and now to the Knoxville TN area.\r\n\r\nUsing his background in record engineering, Josh learned the business, and eventually was offered a weekly radio show, on WHAY 98.3, where he showcases new artists. Using his eye for talent, and his enjoyment of working with other musicians, Josh will be producing some exceptional artists for Earth Hertz Records.\r\nWaste QuickTime\r\n\r\n \r\n\r\n ','Joshua D. Ayers Project \"Waste\"','','inherit','open','open','','3-revision-v1','','','2013-10-03 17:33:42','2013-10-03 17:33:42','',3,'http://0332c8e.netsolhost.com/WordPress/2013/10/03/3-revision-v1/',0,'revision','',0),(1338,2,'2013-11-26 16:58:13','2013-11-26 22:58:13','<p><span style=\"font-family: \'Times New Roman\'; font-size: large;\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\"><img class=\"alignleft size-full wp-image-1332\" alt=\"LindaRonstadt\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\" width=\"260\" height=\"391\" /></a></span></p>\r\n<p>When I heard the news I cried.</p>\r\n<p>Linda Ronstadt was the first female singer to truly inspire me to sing. Her music - at once country, tinged with folk, and mixed with rock overtones and her voice - strong and throaty, powerful yet tender with a full range of nuances - was an inspiration, an elixir to soothe my youthful soul. From the beautiful harpsichord flavored \"Different Drum\" written by Monkees alum Michael Nesmith, to the defiant rock kiss off \"You\'re No Good\", Linda Ronstadt\'s music bridged genres to captivate audiences throughout her 40 year career.</p>\r\n<p>And then, just shy of releasing her memoir Linda Ronstadt Simple Dreams A Musical Memoir (Simon & Schuster) she announced to AARP that she has Parkinson\'s disease and can no longer sing, saying \"I can\'t sing a note.\" adding “I can’t sing at all,” matter-of-factly. “I’m truly not able. I can’t sing ‘Happy Birthday,’ really.” Parkinson\'s affects the ability to move and control the vocal chords - a critical function of singing.</p>\r\n<p>My memories of Linda Ronstadt date back as far as I can remember, back to the days when I first started playing guitar at the age of eight, when my extremely supportive mother not only trudged through the rain at an outdoor concert venue to see Ronstadt in concert, but also took me weekly for lessons at a nearby house full of hippies, one of whom would accompany me on bass, singing harmonies to songs by Ronstadt and The Eagles, coaxing me to hit the high notes on \"Heat Wave\". I had the iconic Ronstadt poster in my room in homage to this almost other worldly model of womanhood and talent, and I spent hours in my room mimicking her vocal prowess as her records spun on my JC Penney turntable - my favorite of which was 1976\'s Hasten Down the Wind. The opening strains of that record still give me chills.</p>\r\n<p> </p>\r\n<div><i><span style=\"font-family: \'Times New Roman\'; font-size: large;\">Save me...free me from my heart this time...</span></i></div>\r\n<p><span style=\"font-family: \'Times New Roman\'; font-size: large;\"><br />\r\nJust like Ronstadt herself, it begins quietly and builds to a powerful and skillfully controlled crescendo of tuneful and emotional bliss. The mere thought that this songbird has been forever silenced brings a sadness that reminds this child of the 70s of the immense uniqueness of a musical era which will have no equal.</span></p>\r\n<p>Linda Maria Ronstadt was born on July 15, 1946 in Tuscon, Arizona to Gilbert, a machinery merchant who ran The Ronstadt Co. and homemaker, Ruth Mary Ronstadt. Raised on a 10 acre ranch with three siblings - all of whom were musical; including Gilbert, who himself was a musician in mariachi bands. The family was of German and Mexican descent and together sang the traditional songs of their Mexican heritage.</p>\r\n<p>At 18, Ronstadt headed to California at the suggestion of musical pal Bob Kimmel and together with him and Kenny Edwards, formed and sang lead in The Stone Poneys, which garnered the hit \"Different Drum\" and led to relationships with a slew of then unknown singers, musicians and songwriters and placed her at the forefront of a burgeoning California rock music scene, later to be crowned the Queen Of Rock - a distinction she did not at all embrace, saying that she felt rock music never defined her. And it didn\'t.</p>\r\n<p>If you\'re expecting the book to be a kiss and tell, or a searing tell all concerning the main players of the time, you might be disappointed. Ronstadt stays true to her word; when she calls the book a musical memoir, she means it. The book recounts a rich and detailed musical legacy that lets both the music aficionado and the casual music lover glimpse into recording sessions, the formation of important relationships (yes, Glen Frey and Don Henley first met as members of Ronstadt\'s touring band and immediately formed what would become The Eagles.), chronicles life on the road and at least one epic all night jam session involving Keith Richards. But at its core, this is an overview of a brilliant career which spanned forty years and included some of the major artists of the day - many of whom continue to enjoy mainstream success. She recalls her collaborations with such musical luminaries as Jackson Browne, the Eagles, J.D. Souther, Warren Zevon, Chris Hillman, Gram Parsons, Neil Young, Frank Zappa, Emmylou Harris, Dolly Parton, Aaron Neville, and Nelson Riddle. She mentions touring early on in her career as an opener for The Doors and minces no words as to her opinion of front man Jim Morrison. She also chronicles her professional relationship with manager Peter Asher, whose understanding of business, music and performance proved crucial to the development and guidance of her illustrious careers.</p>\r\n<p>The book mentions romantic relationships only in passing and although as a musician, I devoured the musical anecdotes and behind the scenes tales of studio and songwriting sessions, I admit to feeling a little gipped when it came to details of her personal life, of which there weren\'t many. Ronstadt recalls \"keeping company\" with then California governor Jerry Brown, and living with J.D. Souther, as well as mentions meeting and later being signed by David Geffen who formed Asylum Records, but makes no mention of Albert Brooks or George Lucas, and though she mentions a friendship with then up and coming comedian Steve Martin, she neglects to mention that they dated.</p>\r\n<p>The omission of such details does nothing to detract from this engrossing and well written read. Ronstadt, who did not write her own songs, displays an impressive writing talent, articulate and especially knowledgable in her musical commentary.</p>\r\n<p>Personal details are left mostly to those of her childhood, growing up in the Arizona desert with her family, which gives insight into her musical roots. Finished before her Parkinson\'s diagnosis was made public, the book makes no mention of her illness but instead, takes the reader on the journey from childhood all the way through the early days of California rock, to her time on Broadway in Pirates of Penzance, her foray into the Great American songbook with Nelson Riddle and his orchestra, her duets with Aaron Neville, collaborations with Emmylou Harris and Dolly Parton and the rediscovery of her Mexican musical roots toward the end of her career.</p>\r\n<p>Simple Dreams is not just an enjoyable read by one of music\'s most beloved songstresses, it is a seat on the tour bus at an unforgettable time in music.</p>\r\n','Linda Ronstadt: Simple Dreams Made Musical Reality','','inherit','open','open','','1331-revision-v1','','','2013-11-26 16:58:13','2013-11-26 22:58:13','',1331,'http://www.earthhertzrecords.com/2013/11/1331-revision-v1/',0,'revision','',0),(4,1,'2013-08-29 16:14:55','2013-08-29 16:14:55','Earth Hertz Records','Earth Hertz Records','Earth Hertz Records','inherit','open','open','','image5a','','','2013-08-29 16:14:55','2013-08-29 16:14:55','',3,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/08/Image5a.jpg',0,'attachment','image/jpeg',0),(5,1,'2013-08-29 16:13:57','2013-08-29 16:13:57','','Auto Draft','','inherit','open','open','','3-revision-v1','','','2013-08-29 16:13:57','2013-08-29 16:13:57','',3,'http://0332c8e.netsolhost.com/WordPress/2013/08/29/3-revision/',0,'revision','',0),(1303,2,'2013-11-22 18:42:41','2013-11-23 00:42:41','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\"><img class=\"aligncenter size-full wp-image-1309\" alt=\"KatsTheory-Arlo-21\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\" width=\"1000\" height=\"860\" /></a>For a November night in northwest New Jersey, the weather could not have been better. A light jacket was enough to keep you warm, but not crowd you in your seat. Tonight you wanted to be comfortable for it was to be a night of songs and stories. Arlo Guthrie was in town, and we weren’t the only ones celebrating. With this year marking the 100<sup>th</sup> birthday of Arlo’s father, legendary folk singer and documenter of mid-century America, Woody Guthrie, Arlo was performing many of his dad’s compositions.\r\n\r\nThe Newton Theatre is a reclaimed from the edge of destruction movie theatre. Small and intimate, you get to share the experience with 604 new friends. Though we were lucky to be sitting up front, it’s hard to imagine a bad seat in the house.\r\n\r\nWith no opening act, Arlo and his three-piece band took their places onstage. With each member dressed in black, there would be no distraction; this night was about the music and the stories that inspired it. Arlo sat center stage next to his guitar rack with four beauties waiting to be picked.\r\n\r\nArlo began the evening speaking of Woody, and the joy he felt being able to spend nights such as this, singing the songs of his father, the songs of an America past, the songs of justice and injustice, the songs of his family. His voice is filled with more gravel than before, as if age and life’s journey has settled in. But every once in a while, the familiar sound of the Arlo from another time, punctuates a sentence of a story, and all those memories when you heard him say “Officer Obie” or “you remember Alice,” come flooding back. And you smile.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\"><img class=\"alignleft wp-image-1308\" alt=\"KatsTheory-Arlo-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\" width=\"800\" height=\"478\" /></a>Arlo Guthrie is a superb storyteller. Pulling a beautiful acoustic Gibson out of the rack, Arlo began telling the story of Woody’s “Oklahoma Hills,” and you realize just how different the world was back then for a songwriter. You might not even know your song had been recorded until you heard it playing in a jukebox.\r\n\r\nOne of the wonderful attributes of the writing of Woody Guthrie was his ability to put down words explaining injustice, hard times, or the beauty of this country, in the most simple of words. Their simplicity making them universally relatable.\r\n\r\nGrowing up Guthrie meant you had the most interesting of extended families. Ramblin’ Jack Elliot, Huddie “Leadbelly” Ledbetter, Cisco Houston to name a few, were household regulars. Their songs and their stories were exquisite as told by this grown man who had known these legends when he was a child.\r\n\r\nThough storytelling and song is his forte, Arlo Guthrie can play a real pretty guitar, though this night he battled with keeping them in tune. As a little tweaking of the strings went on longer than expected, Arlo blamed it on the blue light overhead. The audience laughed as the lighting guy quickly changed the color. It didn’t help, but it did make the evening even more real; this was no rock star with a technician handing him a perfectly tuned guitar for every song. This was just a musician sitting in someone’s living room trying to play his best for some new friends.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31.jpg\"><img class=\"alignleft size-medium wp-image-1310\" alt=\"KatsTheory-Arlo-31\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31-300x232.jpg\" width=\"300\" height=\"232\" /></a>Listening to the songs of Woody Guthrie is like riding on one of the filled-with-family-and-belongings trucks Steinbeck wrote about in <i>The Grapes of Wrath.</i> In fact Guthrie wrote a song condensing the 600 pages of <i>Wrath</i> into a song with twelve verses. This was something over which Steinbeck took umbrage. The combination of the songs and the perspective Arlo brings to them is a history lesson so interesting, you wish this was how it was taught in school. After an hour of enjoying the songs and tales of times long ago, Arlo and the band took a short break.\r\n\r\nComing back onstage the music catalog shifted to Arlo’s own. Now it wasn’t only Woody’s songs which were prefaced by a story. “Coming Into Los Angeles” began with a story of his late wife Jackie’s arrest for marijuana at the airport, after a long-forgotten gift from a fan to Arlo, was found in her bag.\r\n\r\nHe then talked about his early memories of Leadbelly in his home, and his search for Leadbelly’s grave somewhere in Louisiana. Leadbelly, who wrote among many others, “Midnight Special” and “Goodnight Irene,” was buried in Shreeveport, and they found the grave with guitar picks scattered over the tombstone. So he pulled out his guitar, sat there, and played some songs for the man he remembered as a two-year old. One of those songs “Alabama Bound,” was Arlo’s next selection.\r\n\r\nOne highlight of the evening was Steve Goodman’s “City Of New Orleans.” Lyrically, you can’t write much more of a poignant ballad. It is a testament to his songwriting that a song so moving, is about a train. The story of how Arlo and Steve met is priceless, making his loss at such a young age, even more lamentable.\r\n\r\nRelating how he first laid eyes on his future wife and singing “Highway In The Wind,” which he wrote for her, must be more than a little bittersweet, a little over a year since the death of the woman to whom he was married for forty-three years.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg\"><img class=\"alignright size-full wp-image-1311\" alt=\"KatsTheory-Arlo-11\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg\" width=\"1000\" height=\"667\" /></a>Getting close to the end of the show, Arlo pulled out arguably Woody’s most recognizable song, “This Land Is Your Land.” As we approach the Thanksgiving holiday, the imagery of the words was not lost on the audience. Considering there is not another song which embodies the greatness of this country more than this, it is a song that should be taught in every school in this country.\r\n\r\nOf course since we are so close to Thanksgiving, you can be sure there wasn’t a person in the crowd who wasn’t hoping to hear the familiar first few notes of “Alice’s Restaurant.” Arlo did not disappoint. As he began to play, the audience sang along to the beginning chorus. At this point Arlo said “You don’t think I’m really going to sing this whole freakin’ song do you?” And no, I don’t think we really did. And just that one chorus, while a tease, was enough of a taste to keep a smile on everyone’s face. He picked the melody while talking about what the song has meant to him and his family over the years… the good and the not so good.\r\n\r\nAs all of our storytellers get older, the danger of losing important parts of our past, grows. Arlo Guthrie not only lived some of the stories first-hand, he grew up surrounded by legends with their own stories to tell. Never miss a chance to hear them because you’ll never forget them once you do. And that keeps them alive.\r\n\r\nThis evening with Arlo Guthrie pickin’, singin’ and tellin’ stories was one of the most enjoyable nights I’ve ever spent in a music hall. It was an honor to hear him speak of his father, and all those who came before. And hopefully by writing about it, the stories keep going just a little longer.\r\n\r\n \r\n\r\n ','Arlo Guthrie at the Newton Theatre: A Night of Songs and Stories','','publish','open','open','','arlo-guthrie-at-the-newton-theatre-a-night-of-songs-and-stories','','','2013-11-23 08:00:17','2013-11-23 14:00:17','',0,'http://www.earthhertzrecords.com/?p=1303',0,'post','',2),(1054,1,'2013-10-23 01:20:07','2013-10-23 01:20:07','Hello, My Name is Robert Xeno\r\n\r\nI am Founder and CEO of Earth Hertz Records, StreamBeam.US, and Stream Share Musicians Cooperative.\r\n\r\nI have been in the music business for the last 35 years and have watched with great concern as the major label format has systematically raped, pillaged, and destroyed artists, music in general, and the entire industry as a whole.\r\n\r\nWell, we put our heads together here at Earth Hertz and we believe we have come up with a solution.\r\n\r\nWe are a record label with its own recording studio and production team. This allows us to keep our costs down while affording artists the freedom to take their time and express their art. One of our pet peeves about the record industry is the idea of making artists pay for what they do. It is art, and artists should be free to create. As such, we never charge nor bill the artist for any of the services required to complete their project. Revolutionary.\r\n\r\nWe feel that if we believe in an artist like they do, then they should not be held accountable for un-recouped costs associated with a project. We are down on the line with the artist and all billing is recouped through the project. If the project makes no money, the artist never owes the company for reimbursement. We insist it is time for a change.\r\n\r\nAlso, we have our own media streaming platform, StreamBeam.US. Here, we will stream our artists’ music at the highest resolutions possible. We have been testing from MP3 standards up to 192k wav streams and beyond.\r\n\r\nThe real deal maker here, as if this already wasn’t enough, is our newest venture, Stream Share Musician’s Cooperative. You see, there is a giant green elephant sitting in the corner of the room but no one in the industry is addressing it. They keep the focus on the .0008 cents per stream and below, tied to artists; royalties and copyright/publishing. It’s all smoke and mirrors, folks.\r\n\r\nJust one example, Pandora has already taken in over $500+ million dollars this year, and there is still another quarter to go. We will use the cooperative to share in the ad revenue with the artists. As I said, it’s time for a change.\r\n\r\nBeyond the ideas and the technology, we also have the smarts and the ability to get it all done. We signed 6 artists on our recent launch. All six artists were accepted in the 1<sup>st</sup> round balloting for the 56<sup>th</sup> Grammy® Awards process. In all, we have 12 entries in the running.\r\n\r\nThis next year is clearly going to be one of incredible change in the industry. I believe I have the team and the artists in place to create a new future for the music industry; one where creativity is valued and fairness is the rule.\r\n\r\nEarth Hertz.\r\nYou better believe it.\r\n\r\nRobert Xeno 2013\r\n[yop_poll id=\"2\"][yop_poll id=\"-3\" tr_id=\"0000001\"]','About','','inherit','open','open','','1049-revision-v1','','','2013-10-23 01:20:07','2013-10-23 01:20:07','',1049,'http://www.earthhertzrecords.com/2013/10/1049-revision-v1/',0,'revision','',0),(7,1,'2013-08-29 16:15:32','2013-08-29 16:15:32','[caption id=\"attachment_4\" align=\"alignnone\" width=\"80\" caption=\"Earth Hertz Records\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/08/Image5a.jpg\"><img src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/08/Image5a.jpg\" alt=\"\" title=\"Earth Hertz Records\" width=\"80\" height=\"83\" class=\"size-full wp-image-4\" /></a>[/caption]','','','inherit','open','open','','3-revision-v1','','','2013-08-29 16:15:32','2013-08-29 16:15:32','',3,'http://0332c8e.netsolhost.com/WordPress/2013/08/29/3-revision-2/',0,'revision','',0),(1061,1,'2013-10-23 02:01:10','2013-10-23 02:01:10','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\"><img class=\"alignright size-full wp-image-815\" alt=\"JoshAyers-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\" width=\"178\" height=\"178\" /></a>Having an artist who fully understands the scope of the recording business is a great asset to a record company. <b>Joshua Ayers</b> not only is a talented multi-instrumentalist singer-songwriter, he is also a recording engineer with a keen ear for putting together the right sound.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200.jpg\"><img class=\"alignleft size-thumbnail wp-image-488\" alt=\"joshayers_200\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200-150x150.jpg\" width=\"150\" height=\"150\" /></a>Originally from South Carolina, Josh is now settled in the KnoxvilleTennessee area, after spending some time learning the music business in Nashville. His musical influences range from Tom Waits and Neil Young to Tori Amos. Along with the guitar, Josh plays piano, bass, drums, and is interested in leaning the violin.\r\n\r\nJosh’s first single released through Earth Hertz, is a fine example of both his writing and production techniques. “Waste” was originally written as a song challenge between friends, and is a dark, foreboding look at living a life filled with regret.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n.jpg\"><img class=\"alignright size-thumbnail wp-image-139\" alt=\"577670_595448180581_784630386_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n-150x150.jpg\" width=\"150\" height=\"150\" /></a>Along with his musical career, Josh is also involved in the media business. He can be heard as the host of his own weekly radio program on WHAY 98.3, where he showcases new and independent artists.\r\n\r\nJosh Ayers is currently working on his first album release for Earth Hertz Records.\r\n\r\n<strong>Waste\r\n<a href=\"https://itunes.apple.com/us/album/waste/id705233256?i=705233300&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste.mp3\r\n1. Waste\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/vnbBRpguG6g\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n1. Waste\r\n<iframe src=\"//www.youtube.com/embed/jD8UD9dLGaU\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n1. Waste','Joshua Ayers','','inherit','open','open','','755-revision-v1','','','2013-10-23 02:01:10','2013-10-23 02:01:10','',755,'http://www.earthhertzrecords.com/2013/10/755-revision-v1/',0,'revision','',0),(1060,1,'2013-10-23 01:59:22','2013-10-23 01:59:22','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\"><img class=\"alignright size-full wp-image-815\" alt=\"JoshAyers-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\" width=\"178\" height=\"178\" /></a>Having an artist who fully understands the scope of the recording business is a great asset to a record company. <b>Joshua Ayers</b> not only is a talented multi-instrumentalist singer-songwriter, he is also a recording engineer with a keen ear for putting together the right sound.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200.jpg\"><img class=\"alignleft size-thumbnail wp-image-488\" alt=\"joshayers_200\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200-150x150.jpg\" width=\"150\" height=\"150\" /></a>Originally from South Carolina, Josh is now settled in the KnoxvilleTennessee area, after spending some time learning the music business in Nashville. His musical influences range from Tom Waits and Neil Young to Tori Amos. Along with the guitar, Josh plays piano, bass, drums, and is interested in leaning the violin.\r\n\r\nJosh’s first single released through Earth Hertz, is a fine example of both his writing and production techniques. “Waste” was originally written as a song challenge between friends, and is a dark, foreboding look at living a life filled with regret.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n.jpg\"><img class=\"alignright size-thumbnail wp-image-139\" alt=\"577670_595448180581_784630386_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n-150x150.jpg\" width=\"150\" height=\"150\" /></a>Along with his musical career, Josh is also involved in the media business. He can be heard as the host of his own weekly radio program on WHAY 98.3, where he showcases new and independent artists.\r\n\r\nJosh Ayers is currently working on his first album release for Earth Hertz Records.\r\n\r\n<strong>Waste\r\n<a href=\"https://itunes.apple.com/us/album/waste/id705233256?i=705233300&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste.mp3\r\n1. Waste\r\n<strong>VIDEOS</strong>\r\n<iframe width=\"420\" height=\"315\" src=\"//www.youtube.com/embed/vnbBRpguG6g\" frameborder=\"0\" allowfullscreen></iframe>\r\n1. Waste\r\n<iframe src=\"//www.youtube.com/embed/jD8UD9dLGaU\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n1. Waste','Joshua Ayers','','inherit','open','open','','755-revision-v1','','','2013-10-23 01:59:22','2013-10-23 01:59:22','',755,'http://www.earthhertzrecords.com/2013/10/755-revision-v1/',0,'revision','',0),(1540,2,'2014-02-05 11:25:40','2014-02-05 17:25:40','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah.jpg\"><img class=\"alignleft size-medium wp-image-482\" alt=\"hannah\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah-300x200.jpg\" width=\"300\" height=\"200\" /></a>When performing, most artists strive to do their best. For most, it’s a matter of pride and self-worth. But somewhere back in the subconscious, a little voices pushes them to give it their all because you never know when your music will connect with some random stranger in the crowd.\r\n\r\nOne night <strong>Hannah Mae</strong> was onstage giving it her all, and one member of the crowd was moved enough by her performance to tell another person about her. In this case, that person was record producer Josh Ayers, and upon hearing her, he too was impressed with her talent. So much so, that he recorded Hannah, and brought her to Earth Hertz.\r\n\r\n<img class=\" wp-image-483 alignright\" alt=\"Picture 033\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Picture-033.jpg\" width=\"300\" height=\"225\" />Growing up in Kentucky with musically inclined parents, Hannah was surrounded by all genres of music. Piano lessons led the way for the beginning of her songwriting career. Choir was where her vocal skills were sharpened. Learning to play guitar was a natural progression for a busy songwriter; carrying a guitar and working on a melody is a lot more convenient than going home to the piano.\r\n\r\nHannah’s many musical influences are evident in her work. She comfortably slides through country, folk, blues, pop, and all their combinations. She writes of things in the present, and creates stories from long ago. Her first release from Earth Hertz “Guns And Run,” recalls life on the prairie in vivid and haunting imagery.\r\n\r\nIn addition to her musical talents, Hannah is also an artist. Instead of using notes and lyrics, she portrays her tales in paint.\r\n\r\nHannah is currently working on her first album release for Earth Hertz Records.\r\n\r\nConnect with Hannah Mae on Facebook: <a href=\"https://www.facebook.com/hannah.m.rector.9?fref=ts\">Hannah Mae Rector</a>\r\n\r\n<strong>Guns and Run\r\n\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499300-QMU991100113.mp3\r\n1. Guns and Run\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/yCuoOUG3iOc\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n1. Guns and Run','Hannah Mae','','inherit','open','open','','751-revision-v1','','','2014-02-05 11:25:40','2014-02-05 17:25:40','',751,'http://www.earthhertzrecords.com/2014/02/751-revision-v1/',0,'revision','',0),(1059,1,'2013-10-23 01:58:08','2013-10-23 01:58:08','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah.jpg\"><img class=\"alignleft size-medium wp-image-482\" alt=\"hannah\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah-300x200.jpg\" width=\"300\" height=\"200\" /></a>When performing, most artists strive to do their best. For most, it’s a matter of pride and self-worth. But somewhere back in the subconscious, a little voices pushes them to give it their all because you never know when your music will connect with some random stranger in the crowd.\r\n\r\nOne night <strong>Hannah Mae</strong> was onstage giving it her all, and one member of the crowd was moved enough by her performance to tell another person about her. In this case, that person was record producer Josh Ayers, and upon hearing her, he too was impressed with her talent. So much so, that he recorded Hannah, and brought her to Earth Hertz.\r\n\r\n<img class=\" wp-image-483 alignright\" alt=\"Picture 033\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Picture-033.jpg\" width=\"300\" height=\"225\" />Growing up in Kentucky with musically inclined parents, Hannah was surrounded by all genres of music. Piano lessons led the way for the beginning of her songwriting career. Choir was where her vocal skills were sharpened. Learning to play guitar was a natural progression for a busy songwriter; carrying a guitar and working on a melody is a lot more convenient than going home to the piano.\r\n\r\nHannah’s many musical influences are evident in her work. She comfortably slides through country, folk, blues, pop, and all their combinations. She writes of things in the present, and creates stories from long ago. Her first release from Earth Hertz “Guns And Run,” recalls life on the prairie in vivid and haunting imagery.\r\n\r\nIn addition to her musical talents, Hannah is also an artist. Instead of using notes and lyrics, she portrays her tales in paint.\r\n\r\nHannah is currently working on her first album release for Earth Hertz Records.\r\n\r\n<strong>Guns and Run\r\n<a href=\"https://itunes.apple.com/us/album/guns-run-single/id705232705?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499300-QMU991100113.mp3\r\n1. Guns and Run\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/yCuoOUG3iOc\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n1. Guns and Run','Hannah Mae','','inherit','open','open','','751-revision-v1','','','2013-10-23 01:58:08','2013-10-23 01:58:08','',751,'http://www.earthhertzrecords.com/2013/10/751-revision-v1/',0,'revision','',0),(17,1,'2013-09-18 12:45:24','2013-09-18 12:45:24','','MUSIC NEWS','','publish','open','closed','','musicnews','','','2013-10-11 16:49:09','2013-10-11 16:49:09','',0,'http://0332c8e.netsolhost.com/WordPress/',6,'page','',0),(18,1,'2013-09-18 12:45:12','2013-09-18 12:45:12','','NEWS','','inherit','open','open','','17-revision-v1','','','2013-09-18 12:45:12','2013-09-18 12:45:12','',17,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/17-revision/',0,'revision','',0),(19,1,'2013-09-18 12:45:32','2013-09-18 12:45:32','<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\" wp-image-173 alignleft\" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\" wp-image-151 alignleft\" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\" wp-image-145 alignleft\" alt=\"Hannah Mae new video and single.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\" wp-image-140 alignleft\" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/the-meredythe-the-recycle-kids/\" rel=\"attachment wp-att-150\"><img class=\" wp-image-150 alignleft\" alt=\"Meredythe & The Recycle! Kids\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/the-elly-maze/\" rel=\"attachment wp-att-162\"><img class=\" wp-image-162 alignleft\" alt=\"Near South\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" /></a>','ARTISTS','','publish','open','closed','','artists','','','2014-04-13 22:22:10','2014-04-14 04:22:10','',0,'http://0332c8e.netsolhost.com/WordPress/',3,'page','',0),(1688,1,'2014-04-13 22:22:10','2014-04-14 04:22:10','<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\" wp-image-173 alignleft\" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\" wp-image-151 alignleft\" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\" wp-image-145 alignleft\" alt=\"Hannah Mae new video and single.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\" wp-image-140 alignleft\" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/the-meredythe-the-recycle-kids/\" rel=\"attachment wp-att-150\"><img class=\" wp-image-150 alignleft\" alt=\"Meredythe & The Recycle! Kids\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/the-elly-maze/\" rel=\"attachment wp-att-162\"><img class=\" wp-image-162 alignleft\" alt=\"Near South\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" /></a>','ARTISTS','','inherit','open','open','','19-revision-v1','','','2014-04-13 22:22:10','2014-04-14 04:22:10','',19,'http://www.earthhertzrecords.com/2014/04/19-revision-v1/',0,'revision','',0),(1687,1,'2014-04-13 22:21:57','2014-04-14 04:21:57','<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\" wp-image-173 alignleft\" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\" wp-image-151 alignleft\" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\" wp-image-145 alignleft\" alt=\"Hannah Mae new video and single.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\" wp-image-140 alignleft\" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/the-meredythe-the-recycle-kids/\" rel=\"attachment wp-att-150\"><img class=\" wp-image-150 alignleft\" alt=\"Meredythe & The Recycle! Kids\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/the-elly-maze/\" rel=\"attachment wp-att-162\"><img class=\" wp-image-162 alignleft\" alt=\"Near South\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\" rel=\"attachment wp-att-148\"><img class=\" wp-image-148 alignleft\" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" /></a>','ARTISTS','','inherit','open','open','','19-revision-v1','','','2014-04-13 22:21:57','2014-04-14 04:21:57','',19,'http://www.earthhertzrecords.com/2014/04/19-revision-v1/',0,'revision','',0),(1294,1,'2013-11-20 12:10:24','2013-11-20 18:10:24','<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\" wp-image-173 alignleft\" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\" wp-image-151 alignleft\" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\" wp-image-145 alignleft\" alt=\"Hannah Mae new video and single.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\" wp-image-140 alignleft\" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/the-meredythe-the-recycle-kids/\" rel=\"attachment wp-att-150\"><img class=\" wp-image-150 alignleft\" alt=\"Meredythe & The Recycle! Kids\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/radartower/\" rel=\"attachment wp-att-149\"><img class=\" wp-image-149 alignleft\" alt=\"radarTower new album, single and videos.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\" rel=\"attachment wp-att-148\"><img class=\" wp-image-148 alignleft\" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/the-elly-maze/\" rel=\"attachment wp-att-162\"><img class=\" wp-image-162 alignleft\" alt=\"Near South\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" /></a>','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-11-20 12:10:24','2013-11-20 18:10:24','',19,'http://www.earthhertzrecords.com/2013/11/19-revision-v1/',0,'revision','',0),(1293,1,'2013-11-20 12:09:27','2013-11-20 18:09:27','<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\" wp-image-173 alignleft\" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\" wp-image-151 alignleft\" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\" wp-image-145 alignleft\" alt=\"Hannah Mae new video and single.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" /></a>\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-meredythe-the-recycle-kids/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/radartower/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-elly-maze/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-11-20 12:09:27','2013-11-20 18:09:27','',19,'http://www.earthhertzrecords.com/2013/11/19-revision-v1/',0,'revision','',0),(20,1,'2013-09-18 12:45:28','2013-09-18 12:45:28','','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-18 12:45:28','2013-09-18 12:45:28','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/19-revision/',0,'revision','',0),(21,1,'2013-09-18 12:46:01','2013-09-18 12:46:01','Music\r\nVideo\r\nBooks\r\nClothing\r\nAccessories\r\nPosters\r\nArtwork\r\nMemorabilia','STORE','','private','open','closed','','store','','','2014-03-28 10:19:41','2014-03-28 16:19:41','',0,'http://0332c8e.netsolhost.com/WordPress/',10,'page','',0),(22,1,'2013-09-18 12:45:54','2013-09-18 12:45:54','','STORE','','inherit','open','open','','21-revision-v1','','','2013-09-18 12:45:54','2013-09-18 12:45:54','',21,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/21-revision/',0,'revision','',0),(23,1,'2013-09-18 12:47:26','2013-09-18 12:47:26','<span style=\"font-size: 16px;\">\r\n<strong>Contact Earth Hertz Records</strong>\r\n<span style=\"font-size: 12px;\">Nashville, TN</span>\r\n<span style=\"font-size: 12px;\">(615) 824-8649</span>\r\n</span>\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>Eloa Xeno </strong>\r\nCFO and Director of Art\r\n<a href=\"mailto:exeno@earthhertz.com\">exeno@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\nNew Media Coordinator and Director of Artist Promotions\r\n<a href=\"mailto:kgalasso@earthhertz.com\">kgalasso@earthhertz.com</a>\r\n\r\n<strong>Ashley Smith </strong>\r\nSystems Specialist\r\n<a href=\"mailto:exeno@earthhertz.com\">asmith@earthhertz.com</a>\r\n\r\n<strong>Joshua Ayers\r\n</strong>Producer\r\n<a href=\"mailto:kgalasso@earthhertz.com\">jayers@earthhertz.com</a>','CONTACT','','publish','open','closed','','contact','','','2014-04-14 11:17:21','2014-04-14 17:17:21','',0,'http://0332c8e.netsolhost.com/WordPress/',11,'page','',0),(228,1,'2013-10-01 03:12:25','2013-10-01 03:12:25','Contact Earth Hertz Records\r\n\r\nKath Galasso <a href=\"mailto:rxeno@earthhertz.com\">kgalasso@earthhertz.com</a>\r\n\r\nEloaXeno <a href=\"mailto:rxeno@earthhertz.com\">eloa@earthhertz.com</a>\r\n\r\nRobert Xeno <a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-10-01 03:12:25','2013-10-01 03:12:25','',23,'http://0332c8e.netsolhost.com/WordPress/2013/10/01/23-revision-v1/',0,'revision','',0),(24,1,'2013-09-18 12:47:05','2013-09-18 12:47:05','Contact Earth Hertz Records\n\nRobert Xeno <a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\n\nEloaXeno <a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\n\nRobert Xeno <a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\n\nRobert Xeno <a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-09-18 12:47:05','2013-09-18 12:47:05','',23,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/23-revision/',0,'revision','',0),(26,1,'2013-09-18 12:48:15','2013-09-18 12:48:15','','INTERVIEWS','','publish','open','closed','','interviews','','','2013-10-11 22:24:00','2013-10-11 22:24:00','',0,'http://0332c8e.netsolhost.com/WordPress/',7,'page','',0),(27,1,'2013-09-18 12:48:11','2013-09-18 12:48:11','','INTERVIEWS','','inherit','open','open','','26-revision-v1','','','2013-09-18 12:48:11','2013-09-18 12:48:11','',26,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/26-revision/',0,'revision','',0),(1413,1,'2013-12-11 16:04:18','2013-12-11 22:04:18','[caption id=\"attachment_173\" align=\"alignnone\" width=\"560\"]<br /><img class=\" wp-image-173 \" alt=\"Applegate Nance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/1002907_10200864656471494_1994384480_n.jpg\" width=\"560\" height=\"327\" /> Applegate Nance - \"Hey California\"[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> Matt Guertin\'s radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/joshua-ayers\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/glen-spreen/\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-12-11 16:04:18','2013-12-11 22:04:18','',35,'http://www.earthhertzrecords.com/2013/12/35-revision-v1/',0,'revision','',0),(1398,1,'2013-12-08 17:13:00','2013-12-08 23:13:00','[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> Matt Guertin\'s radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/joshua-ayers\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/glen-spreen/\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-12-08 17:13:00','2013-12-08 23:13:00','',35,'http://www.earthhertzrecords.com/2013/12/35-revision-v1/',0,'revision','',0),(1397,1,'2013-12-08 17:11:42','2013-12-08 23:11:42','[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> Matt Guertin\'s radarTower[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> Matt Guertin\'s radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/joshua-ayers\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/glen-spreen/\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-12-08 17:11:42','2013-12-08 23:11:42','',35,'http://www.earthhertzrecords.com/2013/12/35-revision-v1/',0,'revision','',0),(1322,1,'2013-11-22 20:05:01','2013-11-23 02:05:01','[caption id=\"attachment_1320\" align=\"alignnone\" width=\"560\"]<img class=\"size-full wp-image-1320\" alt=\"Applegate Nance Hey California\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/ApplegateNance_Heycalifornia_001.jpg\" width=\"560\" height=\"327\" /> Applegate Nance Hey California[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> Matt Guertin\'s radarTower[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> Matt Guertin\'s radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/joshua-ayers\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/glen-spreen/\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\r\n\r\n[caption id=\"attachment_711\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/the-billy-david-band/\"><img class=\" wp-image-711 \" title=\"Billy David\" alt=\"Billy David\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/BillyDavid_Magic_0011.jpg\" width=\"560\" height=\"327\" /></a> Billy David[/caption]\r\n\r\n \r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-11-22 20:05:01','2013-11-23 02:05:01','',35,'http://www.earthhertzrecords.com/2013/11/35-revision-v1/',0,'revision','',0),(30,1,'2013-09-18 12:48:50','2013-09-18 12:48:50','[caption id=\"attachment_131\" align=\"alignleft\" width=\"81\"]<a href=\"http://www.earthhertzrecords.com/category/earthhertzblog/\"><img class=\"size-full wp-image-131 \" title=\"Earth Hertz Records Blog\" alt=\"Earth Hertz Records Blog\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/EH_120_360_Skyscraper_2013_07_29_001.png\" width=\"81\" height=\"83\" /></a> Earth Hertz Records Blog[/caption]','BLOG','','publish','open','closed','','blogs','','','2013-11-20 12:20:27','2013-11-20 18:20:27','',0,'http://0332c8e.netsolhost.com/WordPress/',9,'page','',0),(31,1,'2013-09-18 12:48:59','2013-09-18 12:48:59','','BLOGS','','inherit','open','open','','30-revision-v1','','','2013-09-18 12:48:59','2013-09-18 12:48:59','',30,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/30-revision/',0,'revision','',0),(1050,1,'2013-10-22 05:09:44','2013-10-22 05:09:44','Hello, My Name is Robert Xeno\r\n\r\nI am Founder and CEO of Earth Hertz Records, StreamBeam.US, and Stream Share Musicians Cooperative.\r\n\r\nI have been in the music business for the last 35 years and have watched with great concern as the major label format has systematically raped, pillaged, and destroyed artists, music in general, and the entire industry as a whole.\r\n\r\nWell, we put our heads together here at Earth Hertz and we believe we have come up with a solution.\r\n\r\nWe are a record label with its own recording studio and production team. This allows us to keep our costs down while affording artists the freedom to take their time and express their art. One of our pet peeves about the record industry is the idea of making artists pay for what they do. It is art, and artists should be free to create. As such, we never charge nor bill the artist for any of the services required to complete their project. Revolutionary.\r\n\r\nWe feel that if we believe in an artist like they do, then they should not be held accountable for un-recouped costs associated with a project. We are down on the line with the artist and all billing is recouped through the project. If the project makes no money, the artist never owes the company for reimbursement. We insist it is time for a change.\r\n\r\nAlso, we have our own media streaming platform, StreamBeam.US. Here, we will stream our artists’ music at the highest resolutions possible. We have been testing from MP3 standards up to 192k wav streams and beyond.\r\n\r\nThe real deal maker here, as if this already wasn’t enough, is our newest venture, Stream Share Musician’s Cooperative. You see, there is a giant green elephant sitting in the corner of the room but no one in the industry is addressing it. They keep the focus on the .0008 cents per stream and below, tied to artists; royalties and copyright/publishing. It’s all smoke and mirrors, folks.\r\n\r\nJust one example, Pandora has already taken in over $500+ million dollars this year, and there is still another quarter to go. We will use the cooperative to share in the ad revenue with the artists. As I said, it’s time for a change.\r\n\r\nBeyond the ideas and the technology, we also have the smarts and the ability to get it all done. We signed 6 artists on our recent launch. All six artists were accepted in the 1<sup>st</sup> round balloting for the 56<sup>th</sup> Grammy® Awards process. In all, we have 12 entries in the running.\r\n\r\nThis next year is clearly going to be one of incredible change in the industry. I believe I have the team and the artists in place to create a new future for the music industry; one where creativity is valued and fairness is the rule.\r\n\r\nEarth Hertz.\r\nYou better believe it.\r\n\r\nRobert Xeno 2013','About','','inherit','open','open','','1049-revision-v1','','','2013-10-22 05:09:44','2013-10-22 05:09:44','',1049,'http://www.earthhertzrecords.com/2013/10/22/1049-revision-v1/',0,'revision','',0),(35,1,'2013-09-18 12:59:13','2013-09-18 12:59:13','[caption id=\"attachment_173\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/applegate-nance-hey-california/\"><img class=\" wp-image-173 \" alt=\"Applegate Nance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/1002907_10200864656471494_1994384480_n.jpg\" width=\"560\" height=\"327\" /></a> Applegate Nance - \"Hey California\"[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> Matt Guertin\'s radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/joshua-ayers\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/glen-spreen/\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\r\n\r\n ','VIDEOS','','publish','open','closed','','videos','','','2013-12-11 16:05:18','2013-12-11 22:05:18','',0,'http://0332c8e.netsolhost.com/WordPress/',5,'page','',0),(36,1,'2013-09-18 12:59:10','2013-09-18 12:59:10','<html />','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-09-18 12:59:10','2013-09-18 12:59:10','',35,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/35-revision/',0,'revision','',0),(1049,1,'2013-10-22 05:09:44','2013-10-22 05:09:44','Hello, My Name is Robert Xeno\r\n\r\nI am Founder and CEO of Earth Hertz Records, StreamBeam.US, and Stream Share Musicians Cooperative.\r\n\r\nI have been in the music business for the last 35 years and have watched with great concern as the major label format has systematically raped, pillaged, and destroyed artists, music in general, and the entire industry as a whole.\r\n\r\nWell, we put our heads together here at Earth Hertz and we believe we have come up with a solution.\r\n\r\nWe are a record label with its own recording studio and production team. This allows us to keep our costs down while affording artists the freedom to take their time and express their art. One of our pet peeves about the record industry is the idea of making artists pay for what they do. It is art, and artists should be free to create. As such, we never charge nor bill the artist for any of the services required to complete their project. Revolutionary.\r\n\r\nWe feel that if we believe in an artist like they do, then they should not be held accountable for un-recouped costs associated with a project. We are down on the line with the artist and all billing is recouped through the project. If the project makes no money, the artist never owes the company for reimbursement. We insist it is time for a change.\r\n\r\nAlso, we have our own media streaming platform, StreamBeam.US. Here, we will stream our artists’ music at the highest resolutions possible. We have been testing from MP3 standards up to 192k wav streams and beyond.\r\n\r\nThe real deal maker here, as if this already wasn’t enough, is our newest venture, Stream Share Musician’s Cooperative. You see, there is a giant green elephant sitting in the corner of the room but no one in the industry is addressing it. They keep the focus on the .0008 cents per stream and below, tied to artists; royalties and copyright/publishing. It’s all smoke and mirrors, folks.\r\n\r\nJust one example, a certain large internet radio has already taken in over $500+ million dollars this year, and there is still another quarter to go. We will use the cooperative to share in the ad revenue we generate with the artists. As I said, it’s time for a change.\r\n\r\nBeyond the ideas and the technology, we also have the smarts and the ability to get it all done. We signed 6 artists on our recent launch. All six artists were accepted in the 1<sup>st</sup> round balloting for the 56<sup>th</sup> Grammy® Awards process. In all, we have 12 entries in the running.\r\n\r\nThis next year is clearly going to be one of incredible change in the industry. I believe I have the team and the artists in place to create a new future for the music industry; one where creativity is valued and fairness is the rule.\r\n\r\nEarth Hertz.\r\nYou better believe it.\r\n\r\nRobert Xeno 2013\r\n[yop_poll id=\"2\" tr_id=\"0000001\"]\r\n\r\n \r\n<div id=\"coolsocialb\">\r\n<div id=\"coolsociald\"><a href=\"http://www.coolsocial.net\">coolsocial.net</a> <a href=\"http://www.coolsocial.net/sites/www/earthhertzrecords.com.html\">earthhertzrecords.com</a></div>\r\n<script id=\"coolsocials\" type=\"text/javascript\">// < ![CDATA[\r\n// < ![CDATA[\r\n(function() {function async_load(){var s = document.createElement(\'script\'); s.type = \'text/javascript\'; s.async = true;s.src = \'http://www.coolsocial.net/get_snippet.aspx?url=earthhertzrecords.com\';var x = document.getElementById(\'coolsocials\'); x.parentNode.insertBefore(s, x); }document.getElementById(\'coolsociald\').innerHTML = \'\';if (window.attachEvent) window.attachEvent(\'onload\', async_load); else window.addEventListener(\'load\', async_load, false);})();\r\n// ]]></script>\r\n\r\n</div>','About','','publish','open','open','','about','','','2013-12-06 12:24:17','2013-12-06 18:24:17','',0,'http://www.earthhertzrecords.com/?page_id=1049',0,'page','',0),(71,1,'2013-09-18 16:27:05','2013-09-18 16:27:05','Joshua D. Ayers brings more than his record producing skills to the table. A multi-instrumentalist, Josh is also a talented singer-songwriter. Originally from South Carolina, Josh’s love of music brought him first to Nashville, and now to the Knoxville TN area.\n\nUsing his background in record engineering, Josh learned the business, and eventually was offered a weekly radio show, on WHAY 98.3, where he showcases new artists. Using his eye for talent, and his enjoyment of working with other musicians, Josh will be producing some exceptional artists for Earth Hertz Records.\nWaste QuickTime\n\n<object style=\"width: 580px; height: 420px;\" classid=\"clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" width=\"580\" height=\"420\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><param name=\"autoplay\" value=\"false\" /><param name=\"enablejavascript\" value=\"true\" /><param name=\"playeveryframe\" value=\"true\" /><param name=\"scale\" value=\"tofit\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 580px; height: 420px;\" type=\"video/quicktime\" width=\"580\" height=\"420\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" scale=\"tofit\" playeveryframe=\"true\" enablejavascript=\"true\" autoplay=\"false\"></embed></object>\n\nWaste Media Player\n\n<object id=\"josh1\" style=\"width: 580px; height: 420px;\" classid=\"clsid:6bf52a52-394a-11d3-b153-00c04f79faa6\" width=\"580\" height=\"420\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\"><param name=\"autostart\" value=\"false\" /><param name=\"enabled\" value=\"true\" /><param name=\"windowlessvideo\" value=\"true\" /><param name=\"baseurl\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><param name=\"captioningid\" value=\"josh1\" /><param name=\"name\" value=\"josh1\" /><param name=\"url\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><param name=\"align\" value=\"top\" /><param name=\"bgcolor\" value=\"#000000\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed id=\"josh1\" style=\"width: 580px; height: 420px;\" type=\"application/x-mplayer2\" width=\"580\" height=\"420\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" bgcolor=\"#000000\" align=\"top\" url=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" name=\"josh1\" captioningid=\"josh1\" baseurl=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" windowlessvideo=\"true\" enabled=\"true\" autostart=\"false\"></embed></object>','Joshua D. Ayers Project \"Waste\"','','inherit','open','open','','3-autosave-v1','','','2013-09-18 16:27:05','2013-09-18 16:27:05','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-autosave/',0,'revision','',0),(56,1,'2013-09-18 12:48:50','2013-09-18 12:48:50','Blog links.','BLOGS','','inherit','open','open','','30-revision-v1','','','2013-09-18 12:48:50','2013-09-18 12:48:50','',30,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/30-revision-2/',0,'revision','',0),(57,1,'2013-10-04 23:36:11','2013-10-04 23:36:11','[caption id=\"attachment_131\" align=\"alignleft\" width=\"81\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/category/home/blog/earthhertzblog/\"><img class=\"size-full wp-image-131 \" alt=\"EHR\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/EH_120_360_Skyscraper_2013_07_29_001.png\" width=\"81\" height=\"83\" /></a> Earth Hertz Records Blog[/caption]','BLOG','','inherit','open','open','','30-autosave-v1','','','2013-10-04 23:36:11','2013-10-04 23:36:11','',30,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/30-autosave/',0,'revision','',0),(58,1,'2013-09-18 13:14:40','2013-09-18 13:14:40','Blog links.','BLOG','','inherit','open','open','','30-revision-v1','','','2013-09-18 13:14:40','2013-09-18 13:14:40','',30,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/30-revision-3/',0,'revision','',0),(72,1,'2013-08-29 16:15:41','2013-08-29 16:15:41','[caption id=\"attachment_4\" align=\"alignnone\" width=\"80\" caption=\"Earth Hertz Records\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/08/Image5a.jpg\"><img class=\"size-full wp-image-4\" title=\"Earth Hertz Records\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/08/Image5a.jpg\" alt=\"\" width=\"80\" height=\"83\" /></a>[/caption]','Earth Hertz Records','','inherit','open','open','','3-revision-v1','','','2013-08-29 16:15:41','2013-08-29 16:15:41','',3,'http://0332c8e.netsolhost.com/WordPress/2013/08/29/3-revision-3/',0,'revision','',0),(76,1,'2013-09-18 14:16:39','2013-09-18 14:16:39','<object style=\"width: 100px; height: 100px;\" classid=\"clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" width=\"100\" height=\"100\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><param name=\"autoplay\" value=\"false\" /><param name=\"scale\" value=\"tofit\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 100px; height: 100px;\" type=\"video/quicktime\" width=\"100\" height=\"100\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" scale=\"tofit\" autoplay=\"false\"></embed></object>','Earth Hertz Records','','inherit','open','open','','3-revision-v1','','','2013-09-18 14:16:39','2013-09-18 14:16:39','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-7/',0,'revision','',0),(73,1,'2013-09-18 14:13:18','2013-09-18 14:13:18','<object classid=\"clsid:6bf52a52-394a-11d3-b153-00c04f79faa6\" width=\"100\" height=\"100\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\"><param name=\"url\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed type=\"application/x-mplayer2\" width=\"100\" height=\"100\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\"> </embed></object>','Earth Hertz Records','','inherit','open','open','','3-revision-v1','','','2013-09-18 14:13:18','2013-09-18 14:13:18','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-4/',0,'revision','',0),(74,1,'2013-09-18 14:14:30','2013-09-18 14:14:30','<object style=\"width: 380px; height: 210px;\" classid=\"clsid:6bf52a52-394a-11d3-b153-00c04f79faa6\" width=\"380\" height=\"210\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\"><param name=\"url\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 380px; height: 210px;\" type=\"application/x-mplayer2\" width=\"380\" height=\"210\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\"></embed></object>','Earth Hertz Records','','inherit','open','open','','3-revision-v1','','','2013-09-18 14:14:30','2013-09-18 14:14:30','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-5/',0,'revision','',0),(75,1,'2013-09-18 14:15:47','2013-09-18 14:15:47','<object style=\"width: 380px; height: 210px;\" classid=\"clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" width=\"380\" height=\"210\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 380px; height: 210px;\" type=\"video/quicktime\" width=\"380\" height=\"210\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\"></embed></object>','Earth Hertz Records','','inherit','open','open','','3-revision-v1','','','2013-09-18 14:15:47','2013-09-18 14:15:47','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-6/',0,'revision','',0),(78,1,'2013-09-18 14:19:33','2013-09-18 14:19:33','<a href=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\">WASTE</a>','Earth Hertz Records','','inherit','open','open','','3-revision-v1','','','2013-09-18 14:19:33','2013-09-18 14:19:33','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-9/',0,'revision','',0),(79,1,'2013-09-18 14:20:50','2013-09-18 14:20:50','<object classid=\"clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" width=\"380\" height=\"220\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed type=\"video/quicktime\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\"></embed></object>','Earth Hertz Records','','inherit','open','open','','3-revision-v1','','','2013-09-18 14:20:50','2013-09-18 14:20:50','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-10/',0,'revision','',0),(77,1,'2013-09-18 14:17:58','2013-09-18 14:17:58','<object style=\"width: 100px; height: 100px;\" classid=\"clsid:6bf52a52-394a-11d3-b153-00c04f79faa6\" width=\"100\" height=\"100\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\"><param name=\"autostart\" value=\"false\" /><param name=\"enabled\" value=\"true\" /><param name=\"enablecontextmenu\" value=\"false\" /><param name=\"invokeurls\" value=\"false\" /><param name=\"stretchtofit\" value=\"true\" /><param name=\"url\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 100px; height: 100px;\" type=\"application/x-mplayer2\" width=\"100\" height=\"100\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" stretchtofit=\"true\" invokeurls=\"false\" enablecontextmenu=\"false\" enabled=\"true\" autostart=\"false\"></embed></object>','Earth Hertz Records','','inherit','open','open','','3-revision-v1','','','2013-09-18 14:17:58','2013-09-18 14:17:58','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-8/',0,'revision','',0),(80,1,'2013-09-18 14:21:40','2013-09-18 14:21:40','<object style=\"width: 380px; height: 220px;\" classid=\"clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" width=\"380\" height=\"220\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><param name=\"autoplay\" value=\"false\" /><param name=\"scale\" value=\"tofit\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 380px; height: 220px;\" type=\"video/quicktime\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" scale=\"tofit\" autoplay=\"false\"></embed></object>','Earth Hertz Records','','inherit','open','open','','3-revision-v1','','','2013-09-18 14:21:40','2013-09-18 14:21:40','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-11/',0,'revision','',0),(81,1,'2013-09-18 14:23:17','2013-09-18 14:23:17','<object style=\"width: 380px; height: 220px;\" classid=\"clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" width=\"380\" height=\"220\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><param name=\"autoplay\" value=\"false\" /><param name=\"enablejavascript\" value=\"true\" /><param name=\"playeveryframe\" value=\"true\" /><param name=\"scale\" value=\"tofit\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 380px; height: 220px;\" type=\"video/quicktime\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" scale=\"tofit\" playeveryframe=\"true\" enablejavascript=\"true\" autoplay=\"false\"></embed></object>','Earth Hertz Records','','inherit','open','open','','3-revision-v1','','','2013-09-18 14:23:17','2013-09-18 14:23:17','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-12/',0,'revision','',0),(82,1,'2013-09-18 14:25:31','2013-09-18 14:25:31','Waste QuickTime\r\n\r\n<object style=\"width: 380px; height: 220px;\" classid=\"clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" width=\"380\" height=\"220\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><param name=\"autoplay\" value=\"false\" /><param name=\"enablejavascript\" value=\"true\" /><param name=\"playeveryframe\" value=\"true\" /><param name=\"scale\" value=\"tofit\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 380px; height: 220px;\" type=\"video/quicktime\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" scale=\"tofit\" playeveryframe=\"true\" enablejavascript=\"true\" autoplay=\"false\"></embed></object>\r\n\r\nWaste Media Player\r\n\r\n<object classid=\"clsid:6bf52a52-394a-11d3-b153-00c04f79faa6\" width=\"380\" height=\"220\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\"><param name=\"autostart\" value=\"false\" /><param name=\"enabled\" value=\"true\" /><param name=\"fullscreen\" value=\"true\" /><param name=\"url\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed type=\"application/x-mplayer2\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" fullscreen=\"true\" enabled=\"true\" autostart=\"false\"></embed></object>','Earth Hertz Records','','inherit','open','open','','3-revision-v1','','','2013-09-18 14:25:31','2013-09-18 14:25:31','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-13/',0,'revision','',0),(83,1,'2013-09-18 14:26:10','2013-09-18 14:26:10','Waste QuickTime\r\n\r\n<object style=\"width: 380px; height: 220px;\" classid=\"clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" width=\"380\" height=\"220\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><param name=\"autoplay\" value=\"false\" /><param name=\"enablejavascript\" value=\"true\" /><param name=\"playeveryframe\" value=\"true\" /><param name=\"scale\" value=\"tofit\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 380px; height: 220px;\" type=\"video/quicktime\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" scale=\"tofit\" playeveryframe=\"true\" enablejavascript=\"true\" autoplay=\"false\"></embed></object>\r\n\r\nWaste Media Player\r\n\r\n<object style=\"width: 380px; height: 220px;\" classid=\"clsid:6bf52a52-394a-11d3-b153-00c04f79faa6\" width=\"380\" height=\"220\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\"><param name=\"autostart\" value=\"false\" /><param name=\"enabled\" value=\"true\" /><param name=\"url\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 380px; height: 220px;\" type=\"application/x-mplayer2\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" enabled=\"true\" autostart=\"false\"></embed></object>','Earth Hertz Records','','inherit','open','open','','3-revision-v1','','','2013-09-18 14:26:10','2013-09-18 14:26:10','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-14/',0,'revision','',0),(84,1,'2013-09-18 14:41:07','2013-09-18 14:41:07','','Image1','','inherit','open','open','','image1','','','2013-09-18 14:41:07','2013-09-18 14:41:07','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Image1.jpg',2,'attachment','image/jpeg',0),(86,1,'2013-09-18 14:41:49','2013-09-18 14:41:49','Earth Hertz Records','','Earth Hertz Records','inherit','open','open','','slide_011_en-2','','','2013-09-18 14:41:49','2013-09-18 14:41:49','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_011_en1.png',1,'attachment','image/png',0),(1065,1,'2013-10-23 02:40:38','2013-10-23 02:40:38','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\"><img class=\"alignleft size-full wp-image-585\" alt=\"meredytheandtherecyclekids\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\" width=\"224\" height=\"224\" /></a>There are many interesting facts about Meredythe Dee Winter, but the most important ones are that she loves kids, and loves this planet. In fact, she has spent a good part of her life creating projects which help both. Through art, music and television, Meredythe has spread the world about taking care of the Earth, while finding a way of getting the youngest generations involved at the same time.\r\n\r\nThe <strong>Meredythe & The Recycle! Kids</strong> album <i>Let\'s Make Every Day Earth Day!</i> is a creative way of teaching children what it means to be a good citizen of Planet Earth. The songs are not only filled with meaningful lyrics, but the melodies are lively and lighthearted.\r\n\r\n<strong>Let\'s Make Every Day Eart Day!</strong>\r\n\r\nMP3s','Meredythe & The Recycle! Kids','','inherit','open','open','','759-revision-v1','','','2013-10-23 02:40:38','2013-10-23 02:40:38','',759,'http://www.earthhertzrecords.com/2013/10/759-revision-v1/',0,'revision','',0),(1690,1,'2014-04-13 22:23:56','2014-04-14 04:23:56','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n<img class=\"wp-image-762 alignleft\" alt=\"Mathias_RadarTowerAlbumCoverFinal\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Mathias_RadarTowerAlbumCoverFinal-300x300.jpg\" width=\"250\" height=\"250\" />Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"size-medium wp-image-501 alignright\" title=\"Matt Guertin\" alt=\"Matt Guertin\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>The changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n<strong>Mathias Meets The World\r\n</strong>\r\n\r\nMP3s\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\n1. Complicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\n2. Need To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\n3. It\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\n4. Memories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\n5. Feelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\n6. Hippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\n7. Gimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\n8. Before We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\n9. Sheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\n10. Time Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\n11. Need Someone\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nNeed Someone','radarTower','','inherit','open','open','','246-revision-v1','','','2014-04-13 22:23:56','2014-04-14 04:23:56','',246,'http://www.earthhertzrecords.com/2014/04/246-revision-v1/',0,'revision','',0),(1064,1,'2013-10-23 02:40:20','2013-10-23 02:40:20','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n<img class=\"wp-image-762 alignleft\" alt=\"Mathias_RadarTowerAlbumCoverFinal\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Mathias_RadarTowerAlbumCoverFinal-300x300.jpg\" width=\"250\" height=\"250\" />Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"size-medium wp-image-501 alignright\" title=\"Matt Guertin\" alt=\"Matt Guertin\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>The changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n \r\n<strong>Mathias Meets The World\r\n<a href=\"https://itunes.apple.com/us/album/mathias-meets-the-world/id698212389?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\n\r\nMP3s\r\n</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\n1. Complicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\n2. Need To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\n3. It\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\n4. Memories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\n5. Feelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\n6. Hippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\n7. Gimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\n8. Before We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\n9. Sheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\n10. Time Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\n11. Need Someone\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nNeed Someone','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-23 02:40:20','2013-10-23 02:40:20','',246,'http://www.earthhertzrecords.com/2013/10/246-revision-v1/',0,'revision','',0),(1063,2,'2013-10-23 02:39:39','2013-10-23 02:39:39','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\"><img class=\"alignleft size-full wp-image-585\" alt=\"meredytheandtherecyclekids\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\" width=\"224\" height=\"224\" /></a>There are many interesting facts about Meredythe Dee Winter, but the most important ones are that she loves kids, and loves this planet. In fact, she has spent a good part of her life creating projects which help both. Through art, music and television, Meredythe has spread the world about taking care of the Earth, while finding a way of getting the youngest generations involved at the same time.\r\n\r\nThe <strong>Meredythe & The Recycle! Kids</strong> album <i>Let\'s Make Every Day Earth Day!</i> is a creative way of teaching children what it means to be a good citizen of Planet Earth. The songs are not only filled with meaningful lyrics, but the melodies are lively and lighthearted.\r\n\r\n<strong>Let\'s Make Every Day Eart Day!</strong>\r\n\r\nMP3s','The Meredythe & The Recycle! Kids','','inherit','open','open','','759-revision-v1','','','2013-10-23 02:39:39','2013-10-23 02:39:39','',759,'http://www.earthhertzrecords.com/2013/10/759-revision-v1/',0,'revision','',0),(1062,1,'2013-10-23 02:38:35','2013-10-23 02:38:35','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\"><img class=\"alignright size-full wp-image-815\" alt=\"JoshAyers-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\" width=\"178\" height=\"178\" /></a>Having an artist who fully understands the scope of the recording business is a great asset to a record company. <b>Joshua Ayers</b> not only is a talented multi-instrumentalist singer-songwriter, he is also a recording engineer with a keen ear for putting together the right sound.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200.jpg\"><img class=\"alignleft size-thumbnail wp-image-488\" alt=\"joshayers_200\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200-150x150.jpg\" width=\"150\" height=\"150\" /></a>Originally from South Carolina, Josh is now settled in the KnoxvilleTennessee area, after spending some time learning the music business in Nashville. His musical influences range from Tom Waits and Neil Young to Tori Amos. Along with the guitar, Josh plays piano, bass, drums, and is interested in leaning the violin.\r\n\r\nJosh’s first single released through Earth Hertz, is a fine example of both his writing and production techniques. “Waste” was originally written as a song challenge between friends, and is a dark, foreboding look at living a life filled with regret.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n.jpg\"><img class=\"alignright size-thumbnail wp-image-139\" alt=\"577670_595448180581_784630386_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n-150x150.jpg\" width=\"150\" height=\"150\" /></a>Along with his musical career, Josh is also involved in the media business. He can be heard as the host of his own weekly radio program on WHAY 98.3, where he showcases new and independent artists.\r\n\r\nJosh Ayers is currently working on his first album release for Earth Hertz Records.\r\n\r\n<strong>Waste\r\n<a href=\"https://itunes.apple.com/us/album/waste/id705233256?i=705233300&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste.mp3\r\n1. Waste\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/vnbBRpguG6g\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n1. Waste Acoustic Version\r\n<iframe src=\"//www.youtube.com/embed/jD8UD9dLGaU\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n1. Waste','Joshua Ayers','','inherit','open','open','','755-revision-v1','','','2013-10-23 02:38:35','2013-10-23 02:38:35','',755,'http://www.earthhertzrecords.com/2013/10/755-revision-v1/',0,'revision','',0),(1263,2,'2013-11-15 14:08:27','0000-00-00 00:00:00','For those of you who are not familiar with Sam Jones’ 2001 documentary on Wilco, <em>I Am Trying to Break Your Heart</em>, rent it tonight. You will not be disappointed. The film offers a candid view of one of America’s greatest rock bands.\n\nJones’ film chronicles the band who were in the process of recording a landmark album, <em>Yankee Hotel Foxtrot</em>, when their record company (Reprise) dropped them. Amid the business turmoil, the group’s leader, Jeff Tweedy, who was battling severe migraines at the time, fired band member and producer Jay Bennett. For many of us, it was the last time we ever heard from Bennett.\n\nAfter his dismissal from Wilco, Jay Bennett embarked on a solo career (releasing five records, one posthumously) that paled in comparison to Wilco’s commercial and critical acclaim.\n\nBennett was a talented musician, skillful producer and session musician who worked with numerous artists: Garrison Starr, Adam Schmitt, Billy Joe Shaver, Blues Traveler, Allison Moorer, Jellyfish, Sherry Rich, Tim Easton,Tommy Keene, Jeff Black and Sheryl Crow. But what will he be best remembered for?\n\nA troubled artist? A tortured soul? A frustrated musician and producer who was desperately clinging to a career that was slipping away?\n\nI’m afraid that it might be all three.\n\nIn 1995, Bennett joined Wilco for their sophomore effort, <em>Being There.</em><i> </i>His contributions elevated Tweedy’s alt-country group into new musical terrain. It is somewhat reminiscent of mid-period Beatles, moving forward from <em>Help</em> to <em>Rubber Soul</em>.\n\nWhen the band released its third studio album, <em>Summerteeth,</em><i> </i>they continued to experiment, progressing both sonically and musically, such as The Beatles did with <em>Rubber Soul’s</em><i> </i>successor,<i> </i><em>Revolver</em>. Wilco sounded like a completely different band from its debut record, 1995′s <em>A.M.</em> <a href=\"http://www.spin.com/blog/what-jay-bennetts-death-made-me-realize-about-wilco/\">Ellen Carpenter</a> of <a href=\"http://www.spin.com/blog/what-jay-bennetts-death-made-me-realize-about-wilco/\"><em>Spin</em></a> wrote about <em>Summerteeth</em>, “The songs were fuller, warmer, the standard guitar-and-drums set-up of <em>A.M.</em> had been supplemented by a lush psychedelic impressionism that was largely a product of Bennett’s masterful work with farfisa organ, bells, Moog, lap steel guitar, banjo, synthesizer, and other instrumental exotica.”\n\nWith Wilco’s magnum opus, <em>Yankee Hotel Foxtrot,</em> the album that anointed Wilco as one of the greatest bands of its generation, Jay Bennett’s contributions were enormous, co-writing eight of the eleven songs and producing much of the record himself.\n\nSince Bennett’s firing, Wilco has released four distinguished records – <em>A Ghost is Born</em> (2004) being the most compelling – but none of them have had the personality, the daring, the audacity and powerfully evocative sounds of the three records Jay Bennett worked on.','','','draft','open','open','','','','','2013-11-15 14:08:27','2013-11-15 14:08:27','',0,'http://www.earthhertzrecords.com/?p=1263',0,'post','',0),(1055,1,'2013-10-23 01:24:53','2013-10-23 01:24:53','Hello, My Name is Robert Xeno\r\n\r\nI am Founder and CEO of Earth Hertz Records, StreamBeam.US, and Stream Share Musicians Cooperative.\r\n\r\nI have been in the music business for the last 35 years and have watched with great concern as the major label format has systematically raped, pillaged, and destroyed artists, music in general, and the entire industry as a whole.\r\n\r\nWell, we put our heads together here at Earth Hertz and we believe we have come up with a solution.\r\n\r\nWe are a record label with its own recording studio and production team. This allows us to keep our costs down while affording artists the freedom to take their time and express their art. One of our pet peeves about the record industry is the idea of making artists pay for what they do. It is art, and artists should be free to create. As such, we never charge nor bill the artist for any of the services required to complete their project. Revolutionary.\r\n\r\nWe feel that if we believe in an artist like they do, then they should not be held accountable for un-recouped costs associated with a project. We are down on the line with the artist and all billing is recouped through the project. If the project makes no money, the artist never owes the company for reimbursement. We insist it is time for a change.\r\n\r\nAlso, we have our own media streaming platform, StreamBeam.US. Here, we will stream our artists’ music at the highest resolutions possible. We have been testing from MP3 standards up to 192k wav streams and beyond.\r\n\r\nThe real deal maker here, as if this already wasn’t enough, is our newest venture, Stream Share Musician’s Cooperative. You see, there is a giant green elephant sitting in the corner of the room but no one in the industry is addressing it. They keep the focus on the .0008 cents per stream and below, tied to artists; royalties and copyright/publishing. It’s all smoke and mirrors, folks.\r\n\r\nJust one example, Pandora has already taken in over $500+ million dollars this year, and there is still another quarter to go. We will use the cooperative to share in the ad revenue with the artists. As I said, it’s time for a change.\r\n\r\nBeyond the ideas and the technology, we also have the smarts and the ability to get it all done. We signed 6 artists on our recent launch. All six artists were accepted in the 1<sup>st</sup> round balloting for the 56<sup>th</sup> Grammy® Awards process. In all, we have 12 entries in the running.\r\n\r\nThis next year is clearly going to be one of incredible change in the industry. I believe I have the team and the artists in place to create a new future for the music industry; one where creativity is valued and fairness is the rule.\r\n\r\nEarth Hertz.\r\nYou better believe it.\r\n\r\nRobert Xeno 2013\r\n[yop_poll id=\"2\" tr_id=\"0000001\"]\r\n','About','','inherit','open','open','','1049-revision-v1','','','2013-10-23 01:24:53','2013-10-23 01:24:53','',1049,'http://www.earthhertzrecords.com/2013/10/1049-revision-v1/',0,'revision','',0),(1057,1,'2013-10-23 01:43:30','2013-10-23 01:43:30','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\n\r\nMP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk\r\n\r\n ','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-23 01:43:30','2013-10-23 01:43:30','',738,'http://www.earthhertzrecords.com/2013/10/738-revision-v1/',0,'revision','',0),(1058,1,'2013-10-23 01:51:39','2013-10-23 01:51:39','[caption id=\"attachment_579\" align=\"alignright\" width=\"224\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me.jpg\"><img class=\"size-medium wp-image-579\" alt=\"Glen with Wayne Jackson(r) of the Memphis Horns\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me-224x300.jpg\" width=\"224\" height=\"300\" /></a> Glen with Wayne Jackson(r) of the Memphis Horns[/caption]\r\n\r\nMusic has always been a major force in the life of <strong>Glen Spreen</strong>. Music was the reason he left his hometown of Houston, Texas, and it was also the reason he moved to Memphis, Nashville, Atlanta, Europe and California. Even after he retired from a successful career in the music business, he built a recording studio in his home to create the music that played inside his heart.\r\n\r\n[caption id=\"attachment_580\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg\"><img class=\"size-thumbnail wp-image-580\" alt=\"With B.J. Thomas\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011-150x150.jpg\" width=\"150\" height=\"150\" /></a> With B.J. Thomas[/caption]\r\n\r\nThroughout his career in the music business, Glen’s arrangements were known for creating a mood within a song. Working alongside such music legends as Joan Baez, Dave Loggins, Dan Fogelberg, B.J. Thomas and Elvis Presley, Spreen not only arranged, but also wrote, produced and played on a vast music catalog, crossing over many music genres.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg\"><img class=\"alignright size-thumbnail wp-image-581\" alt=\"Glen Spreen-Dreams\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams-150x150.jpg\" width=\"150\" height=\"150\" /></a>In his first release for Earth Hertz Records, Glen Spreen has written, played all instrumentation, and produced an album where the moods are many, and the music is dynamic. <em>Dreams</em> is a instrumental journey through all the emotions your mind and heart can produce. From tension to elation, or serenity to adversity, <em>Dreams</em> uses tempo and melody as a way of passage from one emotion to the next.\r\n\r\n<strong>Dreams\r\n<a href=\"https://itunes.apple.com/us/album/dreams/id694336061?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\n1. Dreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\n2. Whispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\n3. Clouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\n4. Game Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\n5. Horizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\n6. Spirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\n7. Willow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\n8. Pensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\n9. Dim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\n10. Love\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\n11. Naivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\n12. Storms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\n13. Dim Light Reprise\r\n\r\n<strong>Videos</strong>\r\n<iframe src=\"//www.youtube.com/embed/6OybAAXA0W0\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nDreams','Glen Spreen','','inherit','open','open','','747-revision-v1','','','2013-10-23 01:51:39','2013-10-23 01:51:39','',747,'http://www.earthhertzrecords.com/2013/10/747-revision-v1/',0,'revision','',0),(98,1,'2013-09-18 14:32:29','2013-09-18 14:32:29','Joshua D. Ayers brings more than his record producing skills to the table. A multi-instrumentalist, Josh is also a talented singer-songwriter. Originally from South Carolina, Josh’s love of music brought him first to Nashville, and now to the Knoxville TN area.\r\n\r\nUsing his background in record engineering, Josh learned the business, and eventually was offered a weekly radio show, on WHAY 98.3, where he showcases new artists. Using his eye for talent, and his enjoyment of working with other musicians, Josh will be producing some exceptional artists for Earth Hertz Records.\r\nWaste QuickTime\r\n\r\n<object style=\"width: 380px; height: 220px;\" classid=\"clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" width=\"380\" height=\"220\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><param name=\"autoplay\" value=\"false\" /><param name=\"enablejavascript\" value=\"true\" /><param name=\"playeveryframe\" value=\"true\" /><param name=\"scale\" value=\"tofit\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 380px; height: 220px;\" type=\"video/quicktime\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" scale=\"tofit\" playeveryframe=\"true\" enablejavascript=\"true\" autoplay=\"false\"></embed></object>\r\n\r\nWaste Media Player\r\n\r\n<object style=\"width: 380px; height: 220px;\" classid=\"clsid:6bf52a52-394a-11d3-b153-00c04f79faa6\" width=\"380\" height=\"220\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\"><param name=\"autostart\" value=\"false\" /><param name=\"enabled\" value=\"true\" /><param name=\"url\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 380px; height: 220px;\" type=\"application/x-mplayer2\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" url=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" enabled=\"true\" autostart=\"false\"></embed></object>','Joshua D. Ayers Project \"Waste\"','','inherit','open','open','','3-revision-v1','','','2013-09-18 14:32:29','2013-09-18 14:32:29','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-15/',0,'revision','',0),(99,1,'2013-09-18 15:46:33','2013-09-18 15:46:33','Joshua D. Ayers brings more than his record producing skills to the table. A multi-instrumentalist, Josh is also a talented singer-songwriter. Originally from South Carolina, Josh’s love of music brought him first to Nashville, and now to the Knoxville TN area.\r\n\r\nUsing his background in record engineering, Josh learned the business, and eventually was offered a weekly radio show, on WHAY 98.3, where he showcases new artists. Using his eye for talent, and his enjoyment of working with other musicians, Josh will be producing some exceptional artists for Earth Hertz Records.\r\nWaste QuickTime\r\n\r\n<a class=\"aligncenter\" href=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" target=\"_self\"><object style=\"width: 380px; height: 220px;\" classid=\"clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" width=\"380\" height=\"220\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><param name=\"autoplay\" value=\"false\" /><param name=\"enablejavascript\" value=\"true\" /><param name=\"playeveryframe\" value=\"true\" /><param name=\"scale\" value=\"tofit\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 380px; height: 220px;\" type=\"video/quicktime\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" scale=\"tofit\" playeveryframe=\"true\" enablejavascript=\"true\" autoplay=\"false\"></embed></object></a>\r\n\r\nWaste Media Player\r\n\r\n<a class=\"aligncenter\" href=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" target=\"_blank\"><object style=\"width: 380px; height: 220px;\" classid=\"clsid:6bf52a52-394a-11d3-b153-00c04f79faa6\" width=\"380\" height=\"220\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\"><param name=\"autostart\" value=\"false\" /><param name=\"enabled\" value=\"true\" /><param name=\"url\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 380px; height: 220px;\" type=\"application/x-mplayer2\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" url=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" enabled=\"true\" autostart=\"false\"></embed></object></a>','Joshua D. Ayers Project \"Waste\"','','inherit','open','open','','3-revision-v1','','','2013-09-18 15:46:33','2013-09-18 15:46:33','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-16/',0,'revision','',0),(100,1,'2013-09-18 15:48:54','2013-09-18 15:48:54','Joshua D. Ayers brings more than his record producing skills to the table. A multi-instrumentalist, Josh is also a talented singer-songwriter. Originally from South Carolina, Josh’s love of music brought him first to Nashville, and now to the Knoxville TN area.\r\n\r\nUsing his background in record engineering, Josh learned the business, and eventually was offered a weekly radio show, on WHAY 98.3, where he showcases new artists. Using his eye for talent, and his enjoyment of working with other musicians, Josh will be producing some exceptional artists for Earth Hertz Records.\r\nWaste QuickTime\r\n\r\n<object style=\"width: 380px; height: 220px;\" classid=\"clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" width=\"380\" height=\"220\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><param name=\"autoplay\" value=\"false\" /><param name=\"enablejavascript\" value=\"true\" /><param name=\"playeveryframe\" value=\"true\" /><param name=\"scale\" value=\"tofit\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 380px; height: 220px;\" type=\"video/quicktime\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" scale=\"tofit\" playeveryframe=\"true\" enablejavascript=\"true\" autoplay=\"false\"></embed></object>\r\n\r\nWaste Media Player\r\n\r\n<object id=\"josh1\" style=\"width: 380px; height: 220px;\" classid=\"clsid:6bf52a52-394a-11d3-b153-00c04f79faa6\" width=\"380\" height=\"220\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\"><param name=\"autostart\" value=\"false\" /><param name=\"enabled\" value=\"true\" /><param name=\"windowlessvideo\" value=\"true\" /><param name=\"baseurl\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><param name=\"captioningid\" value=\"josh1\" /><param name=\"name\" value=\"josh1\" /><param name=\"url\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><param name=\"align\" value=\"top\" /><param name=\"bgcolor\" value=\"#000000\" /><embed id=\"josh1\" style=\"width: 380px; height: 220px;\" type=\"application/x-mplayer2\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" bgcolor=\"#000000\" align=\"top\" name=\"josh1\" captioningid=\"josh1\" baseurl=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" windowlessvideo=\"true\" enabled=\"true\" autostart=\"false\"></embed></object>','Joshua D. Ayers Project \"Waste\"','','inherit','open','open','','3-revision-v1','','','2013-09-18 15:48:54','2013-09-18 15:48:54','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-17/',0,'revision','',0),(101,1,'2013-09-18 16:24:07','2013-09-18 16:24:07','Joshua D. Ayers brings more than his record producing skills to the table. A multi-instrumentalist, Josh is also a talented singer-songwriter. Originally from South Carolina, Josh’s love of music brought him first to Nashville, and now to the Knoxville TN area.\r\n\r\nUsing his background in record engineering, Josh learned the business, and eventually was offered a weekly radio show, on WHAY 98.3, where he showcases new artists. Using his eye for talent, and his enjoyment of working with other musicians, Josh will be producing some exceptional artists for Earth Hertz Records.\r\nWaste QuickTime\r\n\r\n<object style=\"width: 380px; height: 220px;\" classid=\"clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" width=\"380\" height=\"220\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><param name=\"autoplay\" value=\"false\" /><param name=\"enablejavascript\" value=\"true\" /><param name=\"playeveryframe\" value=\"true\" /><param name=\"scale\" value=\"tofit\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 380px; height: 220px;\" type=\"video/quicktime\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" scale=\"tofit\" playeveryframe=\"true\" enablejavascript=\"true\" autoplay=\"false\"></embed></object>\r\n\r\nWaste Media Player\r\n\r\n<object id=\"josh1\" style=\"width: 480px; height: 320px;\" classid=\"clsid:6bf52a52-394a-11d3-b153-00c04f79faa6\" width=\"480\" height=\"320\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\"><param name=\"autostart\" value=\"false\" /><param name=\"enabled\" value=\"true\" /><param name=\"windowlessvideo\" value=\"true\" /><param name=\"baseurl\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><param name=\"captioningid\" value=\"josh1\" /><param name=\"name\" value=\"josh1\" /><param name=\"url\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><param name=\"align\" value=\"top\" /><param name=\"bgcolor\" value=\"#000000\" /><embed id=\"josh1\" style=\"width: 480px; height: 320px;\" type=\"application/x-mplayer2\" width=\"480\" height=\"320\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" bgcolor=\"#000000\" align=\"top\" name=\"josh1\" captioningid=\"josh1\" baseurl=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" windowlessvideo=\"true\" enabled=\"true\" autostart=\"false\"></embed></object>','Joshua D. Ayers Project \"Waste\"','','inherit','open','open','','3-revision-v1','','','2013-09-18 16:24:07','2013-09-18 16:24:07','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-18/',0,'revision','',0),(102,1,'2013-09-18 16:24:55','2013-09-18 16:24:55','Joshua D. Ayers brings more than his record producing skills to the table. A multi-instrumentalist, Josh is also a talented singer-songwriter. Originally from South Carolina, Josh’s love of music brought him first to Nashville, and now to the Knoxville TN area.\r\n\r\nUsing his background in record engineering, Josh learned the business, and eventually was offered a weekly radio show, on WHAY 98.3, where he showcases new artists. Using his eye for talent, and his enjoyment of working with other musicians, Josh will be producing some exceptional artists for Earth Hertz Records.\r\nWaste QuickTime\r\n\r\n<object style=\"width: 380px; height: 220px;\" classid=\"clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" width=\"380\" height=\"220\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><param name=\"autoplay\" value=\"false\" /><param name=\"enablejavascript\" value=\"true\" /><param name=\"playeveryframe\" value=\"true\" /><param name=\"scale\" value=\"tofit\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 380px; height: 220px;\" type=\"video/quicktime\" width=\"380\" height=\"220\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" scale=\"tofit\" playeveryframe=\"true\" enablejavascript=\"true\" autoplay=\"false\"></embed></object>\r\n\r\nWaste Media Player\r\n\r\n<object id=\"josh1\" style=\"width: 580px; height: 420px;\" classid=\"clsid:6bf52a52-394a-11d3-b153-00c04f79faa6\" width=\"580\" height=\"420\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\"><param name=\"autostart\" value=\"false\" /><param name=\"enabled\" value=\"true\" /><param name=\"windowlessvideo\" value=\"true\" /><param name=\"baseurl\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><param name=\"captioningid\" value=\"josh1\" /><param name=\"name\" value=\"josh1\" /><param name=\"url\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><param name=\"align\" value=\"top\" /><param name=\"bgcolor\" value=\"#000000\" /><embed id=\"josh1\" style=\"width: 580px; height: 420px;\" type=\"application/x-mplayer2\" width=\"580\" height=\"420\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" bgcolor=\"#000000\" align=\"top\" name=\"josh1\" captioningid=\"josh1\" baseurl=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" windowlessvideo=\"true\" enabled=\"true\" autostart=\"false\"></embed></object>','Joshua D. Ayers Project \"Waste\"','','inherit','open','open','','3-revision-v1','','','2013-09-18 16:24:55','2013-09-18 16:24:55','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-19/',0,'revision','',0),(1306,2,'2013-11-22 17:12:08','2013-11-22 23:12:08','For a November night in northwest New Jersey, the weather could not have been better. A light jacket was enough to keep you warm, but not crowd you in your seat. Tonight you wanted to be comfortable for it was to be a night of songs and stories. Arlo Guthrie was in town, and we weren’t the only ones celebrating. With this year marking the 100<sup>th</sup> birthday of Arlo’s father, legendary folk singer and documenter of mid-century America, Woody Guthrie, Arlo was performing many of his dad’s compositions.\r\n\r\nThe Newton Theatre is a reclaimed from the edge of destruction movie theatre. Small and intimate, you get to share the experience with 604 new friends. Though we were lucky to be sitting up front, it’s hard to imagine a bad seat in the house.\r\n\r\nWith no opening act, Arlo and his three-piece band took their places onstage. With each member dressed in black, there would be no distraction; this night was about the music and the stories that inspired them. Arlo sat center stage next to his guitar rack with four beauties waiting to be picked.\r\n\r\nArlo began the evening speaking of Woody, and the joy he felt being able to spend nights such as this, singing the songs of his father, the songs of an America past, the songs of justice and injustice, the songs of his family. His voice is filled with more gravel than before, as if age and life’s journey has settled in. But every once in a while, the familiar sound of the Arlo from another time, punctuates a sentence of a story, and all those memories when you heard him say “Officer Obie” or “you remember Alice,” come flooding back. And you smile.\r\n\r\nArlo Guthrie is a superb storyteller. Pulling out a beautiful acoustic Gibson out of the rack, Arlo began telling the story of Woody’s “Oklahoma Hills,” and you realize just how different the world was back then for a songwriter. You might not even know your song had been recorded until you heard it playing in a jukebox.\r\n\r\nOne of the wonderful attributes of the writing of Woody Guthrie was his ability to put down words explaining injustice, hard times, or the beauty of this country, in the most simple of words. Their simplicity making them universally relatable.\r\n\r\nGrowing up Guthrie meant you had the most interesting of extended families. Ramblin’ Jack Elliot, Huddie “Leadbelly” Ledbetter, Cisco Houston. Their songs and their stories were exquisite as told by this grown man who had known these legends when he was a child.\r\n\r\nThough storytelling and song is his forte, Arlo Guthrie can play a real pretty guitar, though this night he battled with keeping them in tune. As a little tweaking of the strings went on longer than expected, Arlo blamed it in the blue light overhead. The audience laughed as the lighting guy quickly changed the color. It didn’t help. It did make the evening even more real; this was no rock star with a technician handing him a perfectly tuned guitar for every song. This was just a musician sitting in someone’s living room trying to play his best for some new friends.\r\n\r\nListening to the songs of Woody Guthrie is like riding on one of the filled-with-family-and-belongings trucks Steinbeck wrote about in <i>The Grapes of Wrath.</i> In fact Guthrie wrote a song condensing the 600 pages of <i>Wrath</i> into a song with twelve verses. This was something over which Steinbeck took umbrage. The combination of the songs and the perspective Arlo brings to them is a history lesson so interesting, you wish this was how it was taught in school. After an hour of enjoying the songs and tales of times long ago, Arlo and the band took a short break.\r\n\r\nComing back onstage the music catalog shifted to Arlo’s own. Now it wasn’t only Woody’s songs which were prefaced by a story. “Coming Into Los Angeles” began with a story of his late wife Jackie’s arrest for marijuana at the airport, after a long-forgotten gift from a fan to Arlo, was found in her bag.\r\n\r\nHe then talked about his early memories of Leadbelly in his home, and his search for Leadbelly’s grave somewhere in Louisiana. Leadbelly, who wrote among many others, “Midnight Special” and “Goodnight Irene,” was buried in Shreeveport, and they found the grave with guitar picks scattered over the tombstone. So he pulled out his guitar, sat there, and played some songs for the man he remembered as a two-year old. One of those songs “Alabama Bound,” was Arlo’s next selection.\r\n\r\nOne highlight of the evening was Steve Goodman’s “City Of New Orleans.” Lyrically, you can’t write much more of a poignant ballad. It is a testament to his songwriting that a song so moving, is about a train. The story of how Arlo and Steve met is priceless, making his loss at such a young age, even more lamentable.\r\n\r\nRelating how he first laid eyes on his future wife and singing “Highway In The Wind,” which he wrote for her, must be more than a little bittersweet, a little over a year since the death of the woman to whom he was married for forty-three years.\r\n\r\nGetting close to the end of the show, Arlo pulled out arguably Woody’s most recognizable song, “This Land Is Your Land.” As we approach the Thanksgiving holiday, the imagery of the words was not lost on the audience. Considering there is not another song which embodies the greatness of this country more than this, it is a song that should be taught in every school in this country.\r\n\r\nOf course since we are so close to Thanksgiving, you can be sure there wasn’t a person in the crowd who wasn’t hoping to hear the familiar first few notes of “Alice’s Restaurant.” Arlo did not disappoint. As he began to play, the audience sang along to the beginning chorus. At this point Arlo said “You don’t think I’m really going to sing this whole freakin’ song do you?” And no, I don’t think we really did. And just that one chorus, while a tease, was enough of a taste to keep a smile on everyone’s face. He picked the melody while talking about what the song has meant to him and his family over the years… the good and the not so good.\r\n\r\nAs all of our storytellers get older, the danger of losing important parts of our past, grows. Arlo Guthrie not only lived some of the stories first-hand, he grew up surrounded by legends with their own stories to tell. Never miss a chance to hear them because you’ll never forget them once you do. And that keeps them alive.\r\n\r\nThis evening with Arlo Guthrie pickin’, singin’ and tellin’ stories was one of the most enjoyable nights I’ve ever spent in a music hall. It was an honor to hear him speak of his father, and all those who came before. And hopefully by writing about it, the stories keep going just a little longer.\r\n\r\n \r\n\r\n ','Arlo Guthrie at the Newton Theatre: A Night of Songs and Stories','','inherit','open','open','','1303-revision-v1','','','2013-11-22 17:12:08','2013-11-22 23:12:08','',1303,'http://www.earthhertzrecords.com/2013/11/1303-revision-v1/',0,'revision','',0),(108,1,'2013-09-19 01:22:20','2013-09-19 01:22:20','','Earth Hertz Records ','','publish','closed','closed','','earth-hertz-records','','','2013-09-19 01:26:30','2013-09-19 01:26:30','',0,'http://0332c8e.netsolhost.com/WordPress/?post_type=fancyheader&p=108',0,'fancyheader','',0),(1305,2,'2013-11-22 17:01:16','2013-11-22 23:01:16','For a November night in northwest New Jersey, the weather could not have been better. A light jacket was enough to keep you warm, but not crowd you in your seat. Tonight, you wanted to be comfortable for it was to be a night of songs and stories. Arlo Guthrie was in town, and we weren’t the only ones celebrating. With this year marking the 100<sup>th</sup> birthday of Arlo’s father, legendary folk singer and documenter of mid-century America, Woody Guthrie, Arlo was performing many of his dad’s compositions.\r\n\r\nThe Newton Theatre is a reclaimed from the edge of destruction movie theatre. Small and homey, you get to share the experience with 604 new friends. Though we were lucky to be sitting up front, it’s hard to imagine a bad seat in the house.\r\n\r\nWith no opening act, Arlo and his three-piece band took their places. With each member dressed in black, there would be no distraction; this night was about the music and the stories that inspired them. Arlo sat center stage next to his guitar rack with four beauties waiting to be picked.\r\n\r\nArlo began the evening speaking of Woody, and the joy he felt being able to spend nights such as this, singing the songs of his father, the songs of an America past, the songs of justice and injustice, the songs of his family. His voice is filled with more gravel than before, as if age and life’s journey has settled in. But every once in a while, the familiar sound of the Arlo from another time, punctuates a sentence of a story, and all those memories when you heard him say “Officer Obie” or “you remember Alice,” come flooding back. And you smile.\r\n\r\nArlo Guthrie is a superb storyteller. Pulling out a beautiful acoustic Gibson out of the rack, Arlo began telling the story of Woody’s “Oklahoma Hills,” and you realize just how different the world was back then for a songwriter. You might not even know your song had been recorded until you heard it playing in a jukebox.\r\n\r\nOne of the wonderful attributes of the writing of Woody Guthrie was his ability to put down words explaining injustice, hard times or the beauty of this country, in the most simple of words. Their simplicity making them universally relatable.\r\n\r\nGrowing up Guthrie meant you had the most interesting of extended families. Ramblin’ Jack Elliot, Huddie “Leadbelly” Ledbetter, Cisco Houston. Their songs and their stories were exquisite as told by this grown man who had known these legends when he was a child.\r\n\r\nThough storytelling and song is his forte, Arlo Guthrie can play a real pretty guitar, though this night he battled with keeping them in tune. As a little tweaking of the strings went on longer than expected, Arlo blamed it in the blue light overhead. The audience laughed as the lighting guy quickly changed the color. It didn’t help. It did make the evening even more real; this was no rock star with a technician handing him a perfectly tuned guitar for every song. This was just a musician sitting in someone’s living room trying to play his best for some new friends.\r\n\r\nListening to the songs of Woody Guthrie is like riding on one of the filled-with-family-and-belongings trucks Steinbeck wrote about in <i>The Grapes of Wrath.</i> In fact Guthrie wrote a song condensing the 600 pages of <i>Wrath</i> into a song with twelve verses. This was something over which Steinbeck took umbrage. The combination of the songs and the perspective Arlo brings to them is a history lesson so interesting, you wish this was how it was taught in school. After an hour of enjoying the songs and tales of times long ago, Arlo and the band took a short break.\r\n\r\nComing back onstage the music catalog shifted to Arlo’s own. Now it wasn’t only Woody’s songs which were prefaced by a story. “Coming Into Los Angeles” began with a story of his late wife Jackie’s arrest for marijuana at the airport, after a long-forgotten gift from a fan to Arlo, was found in her bag.\r\n\r\nHe then talked about his early memories of Leadbelly in his home, and his search for Leadbelly’s grave somewhere in Louisiana. Leadbelly, who wrote among many others, “Midnight Special” and “Goodnight Irene,” was buried in Shreeveport, and they found the grave with guitar picks scattered over the tombstone. So he pulled out his guitar, sat there, and played some songs for the man he remembered as a two-year old. One of those songs “Alabama Bound,” was Arlo’s next selection.\r\n\r\nOne highlight of the evening was Steve Goodman’s “City Of New Orleans.” Lyrically, you can’t write much more of a poignant ballad. It is a testament to his songwriting that a song so moving, is about a train. The story of how Arlo and Steve met is priceless, making his loss at such a young age, even more lamentable.\r\n\r\nRelating of how he first laid eyes on his future wife and singing “Highway In The Wind,” which he wrote for her, must be more than a little bittersweet, a little over a year since the death of the woman to whom he was married for forty-three years.\r\n\r\nGetting close to the end of the show, Arlo pulled out arguably Woody’s most recognizable song, “This Land Is Your Land.” As we approach the Thanksgiving holiday, the imagery of the words was not lost on the audience. Considering there is not another song which embodies the greatness of this country more than this, it is a song that should be taught in every school in this country.\r\n\r\nOf course since we are so close to Thanksgiving, you can be sure there wasn’t a person in the crowd who wasn’t hoping to hear the familiar first few notes of “Alice’s Restaurant.” Arlo did not disappoint. As he began to play, the audience sang along to the beginning chorus. At this point Arlo said “You don’t think I’m really going to sing this whole freakin’ song do you?” And no, I don’t think we really did. And just that one chorus, while a tease, was enough of a taste to keep a smile on everyone’s face. He strummed the melody, while talking about what the song has meant to him and his family over the years… the good and the not so good.\r\n\r\nAs all of our storytellers get older, the danger of losing important parts of our past, grows. Arlo Guthrie not only lived some of the stories first-hand, he grew up surrounded by legends with their own stories to tell. Never miss a chance to hear them because you’ll never forget them once you do. And that keeps them alive.\r\n\r\nThis evening with Arlo Guthrie pickin’, singin’ and tellin’ stories was one of the most enjoyable nights I’ve ever spent in a music hall. It was an honor to hear him speak of his father, and all those who came before. And hopefully by writing about it, the stories keep going just a little longer.\r\n\r\n \r\n\r\n ','Arlo Guthrie at the Newton Theatre: A Night of Songs and Stories','','inherit','open','open','','1303-revision-v1','','','2013-11-22 17:01:16','2013-11-22 23:01:16','',1303,'http://www.earthhertzrecords.com/2013/11/1303-revision-v1/',0,'revision','',0),(110,1,'2013-09-19 12:51:15','2013-09-19 12:51:15','','','','inherit','open','open','','logo','','','2013-09-19 12:51:15','2013-09-19 12:51:15','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/logo.png',0,'attachment','image/png',0),(111,1,'2013-09-19 12:52:34','2013-09-19 12:52:34','http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/cropped-logo1.png','','','inherit','closed','open','','cropped-logo1-png','','','2013-09-19 12:52:34','2013-09-19 12:52:34','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/cropped-logo1.png',0,'attachment','image/png',0),(615,2,'2013-10-11 12:05:43','2013-10-11 12:05:43','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1.jpg\"><img class=\"alignleft size-thumbnail wp-image-616\" alt=\"cassette-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1-150x150.jpg\" width=\"150\" height=\"150\" /></a>In an era of compact disc, blue ray, and iWhateveryouwant, asking people to consider how awesome the cassette is seems impossible. But that cheap plastic casing that you used a pen to rewind the tape inside when your recorder was busted, saved rock and roll.\r\n\r\nGather around the computer screen, kids, the old man with tattoos and ridiculous record collection is telling a story. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2.jpg\"><img class=\"alignright size-thumbnail wp-image-617\" alt=\"cassette-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nOn May 7, 1965, Rolling Stones guitarist, Keith Richards, wakes up in a Jacksonville, Florida hotel room to a startling musical discovery. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3.jpg\"><img class=\"alignleft size-thumbnail wp-image-618\" alt=\"cassette-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nThe Philips Typ EL 3302 cassette recorder his band’s manager had bought for him to write songs, revealed an 8-note acoustic guitar hook and the words “I can’t get no satisfaction,” then the sound of a guitar pick dropping and 40 minutes of snoring. Three days later, “I Can’t Get No Satisfaction” was recorded at Chess Studios in Chicago, Illinois, and music was never the same. Three years after that, Keef would use the same machine and same overnight accident to record “Street FightingMan.”\r\n\r\nPhilips created the portable cassette tape and recording device in 1962, but didn’t show it to the world until the Berlin Radio Show on August 30, 1963. The technology had been around since the mid 1930s but it had mostly been used by governmental offices for secretarial dictation, and the cassettes themselves were so cheap, they were never saved for posterity. But with pop music and its associated culture exploding in the late 1950s and early 1960s, many communication companies looked for the next cash cow to milk. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4.jpg\"><img class=\"alignleft size-thumbnail wp-image-619\" alt=\"cassette-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nThe first musical collections released on cassette were of the Lena Horne and Johnny Mathis ilk. Most rock and pop bands used cassettes to record demos them depended on the vinyl LP to make them famous, as that’s what stores stocked. After the 8-track boom of the mid 1970s, retailers wanted something smaller, more mobile, and user friendly to sell. The cassette and the mass market became passionate lovers in the 1980s.\r\n\r\nThe rewind button revolutionized how people listened to music. Attention deficit has been around since the cavemen. The cassette recorder just fed the impatience of humans like no other device. With 8-track tapes, you had to listen to the entire recording. There was that clunky fast forward move that beat up the tape. Sure, you could stop a record player, take off the needle, and then conjure the eyesight of a falcon to find the groove to play “Go Your Own Way” by Fleetwood Mac for the 37th time in a row. But with cassette? Hit rewind, guess right 63 percent of the time and voila! “Go Your Own Way” for the 38th time, but quicker. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5.jpg\"><img class=\"alignright size-thumbnail wp-image-620\" alt=\"cassette-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nMy first cassette coincided with my first concert. Billy Joel’s <i>Nylon Curtain</i> album in 1982.\r\n\r\nCassettes were great and not just for the rewind button. In the early 1980s, most cars hadn’t caught up to the technology, so to listen to them you used a stereo or a portable recorder like the one Keef had. It made music more personal. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6.jpg\"><img class=\"alignleft size-thumbnail wp-image-621\" alt=\"cassette-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6-150x150.jpg\" width=\"150\" height=\"150\" /></a>By 1987, cassingles or cassette singles were the rage. This meant people could buy “Here I Go Again” without having to suffer through the whole Whitesnake album. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7.jpg\"><img class=\"alignright size-thumbnail wp-image-622\" alt=\"cassette-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nCassettes also propped up three major musical movements – punk, college radio/alternative, and metal – that would later find massive success in the late 1980s and early 1990s. Bands could record demos or even full recordings on blank $1 cassettes then trade them or give them away to complete strangers, as Austin, Texas fast food worker, Daniel Johnston, did in the early 1990s, before becoming an underground sensation thanks to Kurt Cobain wearing his t-shirts in the 1990s. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8.jpg\"><img class=\"alignleft size-thumbnail wp-image-623\" alt=\"cassette-8\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nCassettes were how music moved through the Iron Curtain and Communist Bloc countries where rock and roll and popular music was either banned or just unheard. I assume this is how David Hasselhoff became such a “thing” in Germany, because hey, the Hoff was there, man, when the wall came down in 1989.\r\n\r\nCompact disc was supposed to kill cassette. This is the circle of artificial life. But instead, digital made non-digital go underground. Newer technology means it’s more expensive. Indie bands, unsigned artists, and true punks have embraced the cassette. Music stores in America, Canada, Mexico, England and France have Cassette Days. Almost every indie band currently recording offers cassettes of their music on their websites or MySpace pages. It isn’t nostalgia keeping the cassette around, it’s money. Cassettes are the last bastion for have nots, and there will always be have nots.\r\n\r\nI miss my cassettes. I threw them all away or broke them from overuse. Cassette was how I loved Billy Joel, hair metal, The Smiths, R.E.M., Nirvana, and Tom Petty’s <i>Full Moon Fever</i>. I didn’t join the CD mainstream until my senior year of college, 1992. It seems apropos that most of us, including me, missed the cassette’s birthday on August 30th. I hope this column serves as enough of a belated birthday card.\r\n\r\nPost by <strong>Lance Burson</strong>\r\n\r\nFirst published on <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a> as <a href=\"http://raisedontheradio.com/2013/09/22/fiftieth-birthday-cassette-still-cant-get-satisfaction/\">On Its Fiftieth Birthday, the Cassette Still Can\'t Get No Satisfaction</a>\r\n\r\n<strong><em>Lance Burson is a writer living outside Atlanta, Georgia with his wife and three daughters. He’s the published author of two books, both musically themed, The Ballad of Helene Troy and Soul To Body, found, digitally, on Amazon.com/kindle and in paperback on Lulu.com</em>.<em> He is a writer for <a href=\"http://sprocketink.com/author/lance/\">Sprocket Ink</a> and author of <a href=\"http://lancemyblogcanbeatupyourblog.wordpress.com/\">My Blog Can Beat Up Your Blog</a> Follow him on Twitter <a href=\"https://twitter.com/lanceburson\">@lanceburson</a></em></strong>','On Its 50th Birthday, the Cassette Still Can\'t Get No Satisfaction','','publish','open','open','','on-its-50th-birthday-the-cassette-still-cant-get-no-satisfaction','','','2013-11-20 00:55:11','2013-11-20 00:55:11','',0,'http://www.earthhertzrecords.com/?p=615',0,'post','',3),(769,1,'2013-10-12 17:24:23','2013-10-12 17:24:23','<img class=\"alignnone size-full wp-image-519\" alt=\"TheEllyMaze_NearSouth_Front_001b_600x600\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/TheEllyMaze_NearSouth_Front_001b_600x600.jpg\" width=\"600\" height=\"600\" />Johnna Maze and Loretta Vinson met at a music festival open stage and immediately began a musical partnership. As a member of a family of pickers, Johnna plays both guitar and Missouri style bloodbucket mandolin. No stranger to picking herself, Loretta takes on rhythm guitar, upright bass and banjo.\r\n\r\nBlending Bluegrass, Americana, and classic Country, <strong>The Elly Maze</strong> count the Flying Burrito Brothers, Gram Parsons, Emmylou Harris, Buffalo Springfield, Loretta Lynn, George Jones, Merle Haggard, and Marshall Chapman as those who have influenced their career, and their sound which they call Honkygrass-Amerifolk.\r\n\r\n<i>Near South</i>, their release through Earth Hertz Records, features eleven tracks of traditional country flavored joy. Johnna, Loretta and violinist Carolyn Dutton, have created a solid taste of old time American music, full of beautiful melodies and classic country vocals.','The Elly Maze','','inherit','open','open','','252-revision-v1','','','2013-10-12 17:24:23','2013-10-12 17:24:23','',252,'http://www.earthhertzrecords.com/2013/10/12/252-revision-v1/',0,'revision','',0),(613,1,'2013-10-11 01:44:40','2013-10-11 01:44:40','<iframe src=\"//www.youtube.com/embed/yCuoOUG3iOc\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Hannah Mae','','inherit','open','open','','271-revision-v1','','','2013-10-11 01:44:40','2013-10-11 01:44:40','',271,'http://www.earthhertzrecords.com/2013/10/11/271-revision-v1/',0,'revision','',0),(764,1,'2013-10-12 17:04:24','2013-10-12 17:04:24','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n\r\n<img class=\"alignnone wp-image-762\" alt=\"Mathias_RadarTowerAlbumCoverFinal\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Mathias_RadarTowerAlbumCoverFinal.jpg\" width=\"296\" height=\"300\" />\r\n\r\n \r\n\r\nGrowing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<img class=\"alignnone size-full wp-image-501\" alt=\"MattGuertin-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\" width=\"340\" height=\"224\" />\r\n\r\n \r\n\r\n \r\n\r\nThe changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n ','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-12 17:04:24','2013-10-12 17:04:24','',246,'http://www.earthhertzrecords.com/2013/10/12/246-revision-v1/',0,'revision','',0),(128,1,'2013-09-19 14:14:46','2013-09-19 14:14:46','','','','inherit','open','open','','slide_012_950_en','','','2013-09-19 14:14:46','2013-09-19 14:14:46','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_012_950_en.png',0,'attachment','image/png',0),(126,1,'2013-09-19 13:19:08','2013-09-19 13:19:08','http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/logo1.png','','','inherit','open','open','','logo1-png','','','2013-09-19 13:19:08','2013-09-19 13:19:08','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/logo1.png',0,'attachment','image/png',0),(127,1,'2013-09-19 13:39:56','2013-09-19 13:39:56','http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_012_en.png','','','inherit','open','open','','slide_012_en-png','','','2013-09-19 13:39:56','2013-09-19 13:39:56','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_012_en.png',0,'attachment','image/png',0),(129,1,'2013-09-19 14:17:07','2013-09-19 14:17:07','http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_012_950_en1.png','','','inherit','open','open','','slide_012_950_en1-png','','','2013-09-19 14:17:07','2013-09-19 14:17:07','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_012_950_en1.png',0,'attachment','image/png',0),(130,1,'2013-09-20 00:35:22','2013-09-20 00:35:22','Earth Hertz Records, where the future is past tense.','earthhertz','Easrth Hertz Records','inherit','open','open','','earthhertz','','','2013-09-20 00:35:22','2013-09-20 00:35:22','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/earthhertz.ico',0,'attachment','image/x-icon',0),(131,1,'2013-09-20 00:40:54','2013-09-20 00:40:54','EHR Blog','EHR','EHR','inherit','open','open','','eh_120_360_skyscraper_2013_07_29_001','','','2013-09-20 00:40:54','2013-09-20 00:40:54','',30,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/EH_120_360_Skyscraper_2013_07_29_001.png',0,'attachment','image/png',0),(132,1,'2013-09-20 00:45:48','2013-09-20 00:45:48','','','','inherit','open','open','','slide_001_en','','','2013-09-20 00:45:48','2013-09-20 00:45:48','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_001_en.png',0,'attachment','image/png',0),(133,1,'2013-09-20 00:54:48','2013-09-20 00:54:48','','','','inherit','open','open','','slide_004_en','','','2013-09-20 00:54:48','2013-09-20 00:54:48','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_004_en.png',0,'attachment','image/png',0),(134,1,'2013-09-20 00:55:19','2013-09-20 00:55:19','','','','inherit','open','open','','slide_004_en-2','','','2013-09-20 00:55:19','2013-09-20 00:55:19','',867,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_004_en1.png',0,'attachment','image/png',0),(135,1,'2013-09-20 00:57:01','2013-09-20 00:57:01','','','','inherit','open','open','','slide_002_en','','','2013-09-20 00:57:01','2013-09-20 00:57:01','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_002_en.png',0,'attachment','image/png',0),(136,1,'2013-09-20 00:59:20','2013-09-20 00:59:20','','','','inherit','open','open','','slide_019_en','','','2013-09-20 00:59:20','2013-09-20 00:59:20','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_019_en.png',0,'attachment','image/png',0),(137,1,'2013-09-20 01:03:07','2013-09-20 01:03:07','','','','inherit','open','open','','slide_001x_en','','','2013-09-20 01:03:07','2013-09-20 01:03:07','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_001x_en.png',0,'attachment','image/png',0),(138,1,'2013-09-20 01:05:14','2013-09-20 01:05:14','','','','inherit','open','open','','slide_005_en','','','2013-09-20 01:05:14','2013-09-20 01:05:14','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/slide_005_en.png',0,'attachment','image/png',0),(139,1,'2013-09-20 01:17:47','2013-09-20 01:17:47','','577670_595448180581_784630386_n','','inherit','open','open','','577670_595448180581_784630386_n','','','2013-09-20 01:17:47','2013-09-20 01:17:47','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/577670_595448180581_784630386_n.jpg',0,'attachment','image/jpeg',0),(140,1,'2013-09-20 01:21:04','2013-09-20 01:21:04','Joshua Ayers newest single and video.','Waste','Joshua Ayers newest single and video.','inherit','open','open','','wastecover750','','','2013-09-20 01:21:04','2013-09-20 01:21:04','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750.jpg',0,'attachment','image/jpeg',0),(141,1,'2013-09-18 12:45:32','2013-09-18 12:45:32','Artists Pages','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-18 12:45:32','2013-09-18 12:45:32','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/19-revision-v1/',0,'revision','',0),(142,1,'2013-10-12 16:46:54','2013-10-12 16:46:54','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-bU\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\n\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\n\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\n\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\n\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-48\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\n\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\n\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\n\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-44\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-autosave-v1','','','2013-10-12 16:46:54','2013-10-12 16:46:54','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/23/19-autosave-v1/',0,'revision','',0),(143,1,'2013-09-23 12:39:15','2013-09-23 12:39:15','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/?attachment_id=140\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Joshua Ayers newest single and video.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-23 12:39:15','2013-09-23 12:39:15','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/23/19-revision-v1/',0,'revision','',0),(144,1,'2013-09-23 12:39:15','2013-09-23 12:39:15','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Joshua Ayers newest single and video.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-23 12:39:15','2013-09-23 12:39:15','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/23/19-revision-v1/',0,'revision','',0),(145,1,'2013-09-23 12:41:54','2013-09-23 12:41:54','Hannah Mae new video and single.','Hannah Mae','Hannah Mae new video and single.','inherit','open','open','','217897_10151273041892521_836830802_n','','','2013-09-23 12:41:54','2013-09-23 12:41:54','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n.jpg',0,'attachment','image/jpeg',0),(146,1,'2013-09-23 12:44:09','2013-09-23 12:44:09','Applegate Nance new album and videos.','Applegate Nance','Applegate Nance new album and videos.','inherit','open','open','','img_0314','','','2013-09-23 12:44:09','2013-09-23 12:44:09','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/img_0314.jpg',0,'attachment','image/jpeg',0),(148,1,'2013-09-23 12:47:35','2013-09-23 12:47:35','The Billy David Band new single, album and videos.','The Billy David Band','The Billy David Band new single, album and videos.','inherit','open','open','','tbdbalbumcover','','','2013-09-23 12:47:35','2013-09-23 12:47:35','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover.jpg',0,'attachment','image/jpeg',0),(147,1,'2013-09-23 12:46:39','2013-09-23 12:46:39','Applegate Nance new album and videos.','Applegate Nance','Applegate Nance new album and videos.','inherit','open','open','','albumcoverfinal','','','2013-09-23 12:46:39','2013-09-23 12:46:39','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal.jpg',0,'attachment','image/jpeg',0),(149,1,'2013-09-23 12:49:05','2013-09-23 12:49:05','radarTower new album, single and videos.','radarTower','radarTower new album, single and videos.','inherit','open','open','','mathias_radartoweralbumcoverfinal','','','2013-09-23 12:49:05','2013-09-23 12:49:05','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal.jpg',0,'attachment','image/jpeg',0),(150,1,'2013-09-23 12:51:08','2013-09-23 12:51:08','Meredythe & The Recycle! Kids','Meredythe & The Recycle! Kids','Meredythe & The Recycle! Kids','inherit','open','open','','template_001ateml','','','2013-09-23 12:51:08','2013-09-23 12:51:08','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml.jpg',0,'attachment','image/jpeg',0),(151,1,'2013-09-23 12:52:12','2013-09-23 12:52:12','Glen Spreen Dreams, new album and videos.','Glen Spreen Dreams','Glen Spreen Dreams, new album and videos.','inherit','open','open','','glenspreen_dreams_front_001aa','','','2013-09-23 12:52:12','2013-09-23 12:52:12','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA.jpg',0,'attachment','image/jpeg',0),(152,1,'2013-09-23 12:53:06','2013-09-23 12:53:06','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Joshua Ayers newest single and video.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145\" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae new video and single.[/caption]\r\n\r\n[caption id=\"attachment_147\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/albumcoverfinal/\" rel=\"attachment wp-att-147\"><img class=\"size-thumbnail wp-image-147\" alt=\"Applegate Nance new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> Applegate Nance new album and videos.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> The Billy David Band new single, album and videos.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149\" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> radarTower new album, single and videos.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150\" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> Meredythe & The Recycle! Kids[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151\" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Glen Spreen Dreams, new album and videos.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-23 12:53:06','2013-09-23 12:53:06','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/23/19-revision-v1/',0,'revision','',0),(154,1,'2013-09-23 13:12:22','2013-09-23 13:12:22','StreamBeamUS','StreamBeamUS','StreamBeamUS','inherit','open','open','','eh_65_60_sticker_2013_07_29','','','2013-09-23 13:12:22','2013-09-23 13:12:22','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/EH_65_60_Sticker_2013_07_29.jpg',0,'attachment','image/jpeg',0),(155,1,'2013-09-23 13:17:22','2013-09-23 13:17:22','','Kath Galasso','Kath Galasso','inherit','open','open','','63048_144632605713471_2102213063_n','','','2013-09-23 13:17:22','2013-09-23 13:17:22','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/63048_144632605713471_2102213063_n.jpg',0,'attachment','image/jpeg',0),(438,1,'2013-10-04 17:15:43','2013-10-04 17:15:43','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Bangbangboomboom.jpg\"><img class=\"alignleft size-full wp-image-400\" alt=\"Bangbangboomboom\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Bangbangboomboom.jpg\" width=\"233\" height=\"216\" /></a>When you talk about a life of highs and lows, <a href=\"http://bethhart.com/\">Beth Hart</a> could be the poster child. While her career was on the rise in the late 90’s, her personal life had crashed and burned. Bi-Polar swings, drugs, alcohol, self-confidence issues, all combined to literally leave her on the floor convulsing, until the love of a man and some self realization enabled her to enter rehab.\r\n\r\nDropped by her label and with a career in the crossroads, slowly Hart started rebuilding her life, and began the long road back to musical relevance. Her acclaimed 2011 collaboration with guitar master Joe Bonamassa, <em>Don’t Explain</em>, had Hart singing the blues but not living them.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-BethHart-1.jpg\"><img class=\"alignright size-medium wp-image-401\" alt=\"KatsTheory-BethHart-1\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-BethHart-1-300x145.jpg\" width=\"300\" height=\"145\" /></a>Beth Hart’s eighth album <em>Bang Bang Boom Boom</em> shows she hasn’t lost a bit of vocal ability or passion. The album begins with a sad piano and a vocal with a cabaret feel. “Baddest Blues” starts slowly but builds with the chorus. “If this is love, what was I thinking. If this is love, what the hell am I gonna do.” While the feel of the song rings true and overall is a top pick, perhaps it would have been better placed deeper into the album.\r\n\r\nThe title track creates a feeling of a Parisian club. Catchy, fun and a little different from the rest of the songs; it’s pleasant enough and will most likely showcase live much stronger. Once you reach the third track “Better Man,” Hart seems to hit her stride. Moving from blues to a rock beat, the gritty vocal finds a comfortable place between the two.\r\n\r\n“Caught Out In The Rain” is pure blues; sad, sultry and hard-core. Hart spits out the vocal as if the lyrics were burning ash. This is how you sing the blues. Featuring beautiful production by Kevin Shirley, and with the guitar work from Randy Flowers weeping out the story, it’s one of the best tracks on the album.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/bang-bang-boom-boom-beth-hart.jpg\"><img class=\"alignleft size-medium wp-image-402\" alt=\"bang-bang-boom-boom-beth-hart\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/bang-bang-boom-boom-beth-hart-300x256.jpg\" width=\"300\" height=\"256\" /></a>“Swing My Thing Back Around,” evokes a bit of the big band era and swing music. Changing the tempo and feel of the album, it’s a comfortable fit for Hart. “With You Everyday,” brings you back to the blues and the love lost, love found theme which is inherent to the album.\r\n\r\n“Thru The Window Of My Mind” is just a breathtaking journey both lyrically and vocally. Think of opening a window and letting the breeze pull your voice to the sky. “I want to know love before I die. Open the window.” Hart’s soaring range on this track is a joy to hear.\r\n\r\nAs you might expect “Spirit of God” brings in a rockin’ gospel feel, complete with hand-clapping and horn section; sure to get your feet moving. “There In Your Heart” reunites Hart with Joe Bonamassa, as he comes in for a flawless guitar solo made even better as Hart closes out the song on top of it.\r\n\r\n“The Ugliest House On The Block” combines so many sounds and takes so many directions, it’s hard to define. A story, a melody which starts with organ and turns to a bouncy, almost reggae beat, it’s a lot of things but it works. “Everything Must Change” is slow and bluesy, going back again to the painful side of love.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-BethHart-3.jpg\"><img class=\"alignright size-medium wp-image-403\" alt=\"KatsTheory-BethHart-3\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-BethHart-3-300x160.jpg\" width=\"300\" height=\"160\" /></a>The American version of <em>Bang Bang Boom Boom</em> has a bonus track which was taken from this past year’s Kennedy Center Honors broadcast. If you watched the show, it was one of those moments not to be forgotten. Honoring the legendary Buddy Guy, Hart backed on guitar by Jeff Beck, brought down the house and a tear to the eye, with a rendition of the classic from Etta James, “I’d Rather Go Blind.” Evoking the feeling of resignation rather than desperation, it is a totally delicious way to end the album; Hart delivers an impassioned delivery with Beck adding the exclamation point.\r\n\r\nWith the release of <em>Bang Bang Boom Boom</em>, Beth Hart is poised to regain headliner stature as witnessed by her invite to play this year at Eric Clapton’s Crossroad Festival. While there are a few uneven spots, the sheer delight to be derived from listening to her vocals, makes Hart’s latest release a must have not only for her fans, but for all those in need of a blues fix from a woman whose voice can grip your soul and twist it, or take your heart and lift it.\r\n\r\nReview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@KatsTheory</a>\r\n\r\nFirst published in OurVinyl.com as <a href=\"http://ourvinyl.com/beth-harts-bang-bang-boom-boom-album-review/\">BETH HART’S ‘BANG BANG BOOM BOOM’ – ALBUM REVIEW</a>','Beth Hart: Bang Bang Boom Boom','','inherit','open','open','','430-revision-v1','','','2013-10-04 17:15:43','2013-10-04 17:15:43','',430,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/430-revision-v1/',0,'revision','',0),(589,1,'2013-10-09 01:10:00','2013-10-09 01:10:00','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-48\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-44\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-09 01:10:00','2013-10-09 01:10:00','',19,'http://0332c8e.netsolhost.com/WordPress/2013/10/09/19-revision-v1/',0,'revision','',0),(588,1,'2013-10-09 01:06:43','2013-10-09 01:06:43','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-48\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-09 01:06:43','2013-10-09 01:06:43','',19,'http://0332c8e.netsolhost.com/WordPress/2013/10/09/19-revision-v1/',0,'revision','',0),(587,1,'2013-10-09 01:05:56','2013-10-09 01:05:56','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-09 01:05:56','2013-10-09 01:05:56','',19,'http://0332c8e.netsolhost.com/WordPress/2013/10/09/19-revision-v1/',0,'revision','',0),(516,1,'2013-10-08 01:03:30','2013-10-08 01:03:30','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-08 01:03:30','2013-10-08 01:03:30','',19,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/19-revision-v1/',0,'revision','',0),(163,1,'2013-09-30 13:18:37','2013-09-30 13:18:37','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_147\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/albumcoverfinal/\" rel=\"attachment wp-att-147\"><img class=\"size-thumbnail wp-image-147 \" alt=\"Applegate Nance new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162\" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 13:18:37','2013-09-30 13:18:37','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(159,2,'2013-09-27 18:00:16','2013-09-27 18:00:16','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_147\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/albumcoverfinal/\" rel=\"attachment wp-att-147\"><img class=\"size-thumbnail wp-image-147 \" alt=\"Applegate Nance new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150\" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> Meredythe & The Recycle! Kids[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-27 18:00:16','2013-09-27 18:00:16','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/27/19-revision-v1/',0,'revision','',0),(162,1,'2013-09-30 13:17:43','2013-09-30 13:17:43','The Elly Maze Near South','The Elly Maze','Near South','inherit','open','open','','theellymaze_nearsouth_front_001b_600x600','','','2013-09-30 13:17:43','2013-09-30 13:17:43','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600.jpg',0,'attachment','image/jpeg',0),(160,2,'2013-09-27 18:07:00','2013-09-27 18:07:00','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_147\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/albumcoverfinal/\" rel=\"attachment wp-att-147\"><img class=\"size-thumbnail wp-image-147 \" alt=\"Applegate Nance new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-27 18:07:00','2013-09-27 18:07:00','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/27/19-revision-v1/',0,'revision','',0),(164,1,'2013-09-30 13:19:51','2013-09-30 13:19:51','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_147\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/albumcoverfinal/\" rel=\"attachment wp-att-147\"><img class=\"size-thumbnail wp-image-147 \" alt=\"Applegate Nance new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 13:19:51','2013-09-30 13:19:51','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(165,1,'2013-09-30 13:26:50','2013-09-30 13:26:50','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_147\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/albumcoverfinal/\" rel=\"attachment wp-att-147\"><img class=\"size-thumbnail wp-image-147 \" alt=\"Applegate Nance new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 13:26:50','2013-09-30 13:26:50','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(169,1,'2013-09-30 13:31:04','2013-09-30 13:31:04','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_147\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\" rel=\"attachment wp-att-147\"><img class=\"size-thumbnail wp-image-147 \" alt=\"Applegate Nance new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 13:31:04','2013-09-30 13:31:04','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(166,1,'2013-09-30 13:28:03','2013-09-30 13:28:03','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_147\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/albumcoverfinal/\" rel=\"attachment wp-att-147\"><img class=\"size-thumbnail wp-image-147 \" alt=\"Applegate Nance new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 13:28:03','2013-09-30 13:28:03','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(1253,2,'2013-11-12 03:44:59','2013-11-12 03:44:59','On this Veteran’s Day when thoughts of freedom bounce into our brains a little more frequently than usual, a tragedy unfolded in Brooklyn NY; a tragedy which began with a quest for freedom.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/a1544922683_2.jpg\"><img class=\"alignleft size-medium wp-image-1254\" alt=\"a1544922683_2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/a1544922683_2-300x300.jpg\" width=\"300\" height=\"300\" /></a>A local musician killed three members of a band, and wounded another man before turning the gun on himself. The Yellow Dogs, a band made up of Iranian immigrants, came to the United States to play rock music. Playing rock music was something they could not legally do in their homeland.\r\n\r\nThough not a fairy tale success story, the band did have a few moments. While still in Iran, they were featured in an award winning documentary, after which they thought it would be best if they left their home country. In the US where they were given asylum, they had the chance to play at SXSW down in Austin TX.\r\n\r\nA few video clips which featured members of Yellow Dogs showed the band to be happy to be living in New York City, playing their music freely out in the open.\r\n\r\nAs we all know, freedom isn\'t free. On the day when we celebrate the men and women of the armed services who fight to maintain our freedom, three men who sought it were murdered. Not quite the happy ending to the American Dream.\r\n\r\nAnd while it’s doubtful the musicians thought their quest for life, liberty and the pursuit of happiness would result in their deaths here in America, it would not have been out of the realm of possibility in their homeland.\r\n\r\nPut the blame on a simple twist of fate.','The Yellow Dogs: Search for Freedom and Find Death','','publish','open','open','','the-yellow-dogs-search-for-freedom-and-find-death','','','2013-11-20 00:51:13','2013-11-20 00:51:13','',0,'http://www.earthhertzrecords.com/?p=1253',0,'post','',0),(1254,2,'2013-11-12 03:38:51','2013-11-12 03:38:51','','a1544922683_2','','inherit','open','open','','a1544922683_2','','','2013-11-12 03:38:51','2013-11-12 03:38:51','',1253,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/a1544922683_2.jpg',0,'attachment','image/jpeg',0),(1255,2,'2013-11-12 03:39:41','2013-11-12 03:39:41','On this Veteran’s Day when thoughts of freedom bounce into our brains a little more frequently than usual, a tragedy unfolded in Brooklyn NY; a tragedy which began with a quest for freedom.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/a1544922683_2.jpg\"><img class=\"alignleft size-medium wp-image-1254\" alt=\"a1544922683_2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/a1544922683_2-300x300.jpg\" width=\"300\" height=\"300\" /></a>A local musician killed three members of a band, and wounded another man before turning the gun on himself. The Yellow Dogs was a band made up of Iranian immigrants who came to the United States to play rock music, something they could not legally do in their homeland.\r\n\r\nThough not a fairy tale success story, the band did have a few moments. While still in Iran, they were featured in an award winning documentary, after which they thought it would be best if they left their home country. In the US where they were given asylum, they had the chance to play at SXSW down in Austin TX.\r\n\r\nA few video clips which featured members of Yellow Dogs showed the band to be happy to be living in New York City, playing their music freely out in the open.\r\n\r\nAs we all know, freedom\'s not free. On the day when we celebrate the men and women of the armed services who fight to maintain our freedom, three men who sought it were murdered. Not quite the happy ending to the American Dream.\r\n\r\nAnd while it’s doubtful the musicians thought their quest for life, liberty and the pursuit of happiness would result in their deaths here in America, it would not have been out of the realm of possibility in their homeland.\r\n\r\n \r\n\r\nBlame it on a simple twist of fate.','The Yellow Dogs: Search for Freedom and Find Death','','inherit','open','open','','1253-revision-v1','','','2013-11-12 03:39:41','2013-11-12 03:39:41','',1253,'http://www.earthhertzrecords.com/2013/11/1253-revision-v1/',0,'revision','',0),(173,1,'2013-09-30 13:39:55','2013-09-30 13:39:55','Applegate Nance','Applegate Nance','Applegate Nance','inherit','open','open','','1002907_10200864656471494_1994384480_n','','','2013-09-30 13:39:55','2013-09-30 13:39:55','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/1002907_10200864656471494_1994384480_n.jpg',0,'attachment','image/jpeg',0),(174,1,'2013-09-30 13:40:51','2013-09-30 13:40:51','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\" rel=\"attachment wp-att-173\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/1002907_10200864656471494_1994384480_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 13:40:51','2013-09-30 13:40:51','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(179,1,'2013-09-30 13:57:56','2013-09-30 13:57:56','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_173\" align=\"alignnone\" width=\"150\"]<img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/1002907_10200864656471494_1994384480_n-150x150.jpg\" width=\"150\" height=\"150\" /> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 13:57:56','2013-09-30 13:57:56','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(176,1,'2013-09-30 13:42:41','2013-09-30 13:42:41','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n<a href=\"http://wp.me/P3Wu0q-2H\" rel=\"attachment wp-att-173\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/1002907_10200864656471494_1994384480_n-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\n<dl class=\"wp-caption alignleft\" id=\"attachment_173\" style=\"width: 160px;\"><dd class=\"wp-caption-dd\">The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.</dd></dl> \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 13:42:41','2013-09-30 13:42:41','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(175,1,'2013-09-30 13:41:15','2013-09-30 13:41:15','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n \r\n\r\n<dl class=\"wp-caption alignleft\" id=\"attachment_173\" style=\"width: 160px;\"><dt class=\"wp-caption-dt\" style=\"display: inline !important;\"><a href=\"http://wp.me/P3Wu0q-2H\" rel=\"attachment wp-att-173\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/1002907_10200864656471494_1994384480_n-150x150.jpg\" width=\"150\" height=\"150\" /></a></dt></dl><dl class=\"wp-caption alignleft\" id=\"attachment_173\" style=\"width: 160px;\"><dd class=\"wp-caption-dd\">The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.</dd></dl> \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 13:41:15','2013-09-30 13:41:15','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(750,1,'2013-10-12 16:47:11','2013-10-12 16:47:11','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-48\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-44\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-12 16:47:11','2013-10-12 16:47:11','',19,'http://www.earthhertzrecords.com/2013/10/12/19-revision-v1/',0,'revision','',0),(188,1,'2013-09-30 14:19:03','2013-09-30 14:19:03','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul. \r\n\r\n \r\n\r\n \r\n\r\n[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 14:19:03','2013-09-30 14:19:03','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(178,1,'2013-09-30 13:56:14','2013-09-30 13:56:14','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\n\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\n\n \n\n<dl class=\"wp-caption alignleft\" style=\"width: 160px;\"><dd class=\"wp-caption-dd\"></dd></dl><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/1002907_10200864656471494_1994384480_n-150x150.jpg\" width=\"150\" height=\"150\" />\n\n<dl class=\"wp-caption alignleft\" id=\"attachment_173\" style=\"width: 160px;\"><dd class=\"wp-caption-dd\">The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.</dd></dl> \n\n \n\n \n\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\n\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\n\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\n\n \n\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\n\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 13:56:14','2013-09-30 13:56:14','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(177,1,'2013-09-30 13:55:21','2013-09-30 13:55:21','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n \r\n\r\n<dl class=\"wp-caption alignleft\" style=\"width: 160px;\"><dd class=\"wp-caption-dd\"></dd></dl><img class=\"size-thumbnail wp-image-173 alignnone\" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/1002907_10200864656471494_1994384480_n-150x150.jpg\" width=\"150\" height=\"150\" />\r\n\r\n<dl class=\"wp-caption alignleft\" id=\"attachment_173\" style=\"width: 160px;\"><dd class=\"wp-caption-dd\">The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.</dd></dl> \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 13:55:21','2013-09-30 13:55:21','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(180,1,'2013-09-30 13:58:03','2013-09-30 13:58:03','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/1002907_10200864656471494_1994384480_n-150x150.jpg\" width=\"150\" height=\"150\" /> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 13:58:03','2013-09-30 13:58:03','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(187,1,'2013-09-30 14:16:00','2013-09-30 14:16:00','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n<p align=\"left\">The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.</p>\r\n \r\n\r\n[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 14:16:00','2013-09-30 14:16:00','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(186,1,'2013-09-30 14:15:47','2013-09-30 14:15:47','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n<p align=\"left\">The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.</p>\r\n\r\n[/caption]\r\n<p style=\"text-align: left;\"></p>\r\n<p style=\"text-align: left;\"></p>\r\n\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n<p style=\"text-align: left;\"></p>\r\n\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 14:15:47','2013-09-30 14:15:47','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(184,1,'2013-09-30 14:07:27','2013-09-30 14:07:27','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 14:07:27','2013-09-30 14:07:27','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(181,1,'2013-09-30 14:05:14','2013-09-30 14:05:14','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/1002907_10200864656471494_1994384480_n-150x150.jpg\" width=\"150\" height=\"150\" /> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_147\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/albumcoverfinal/\" rel=\"attachment wp-att-147\"><img class=\"size-thumbnail wp-image-147 \" title=\"Applegate Nance\" alt=\"Applegate Nance new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 14:05:14','2013-09-30 14:05:14','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(182,1,'2013-09-30 14:06:24','2013-09-30 14:06:24','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/1002907_10200864656471494_1994384480_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_147\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\" rel=\"attachment wp-att-147\"><img class=\"size-thumbnail wp-image-147 \" title=\"Applegate Nance\" alt=\"Applegate Nance new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 14:06:24','2013-09-30 14:06:24','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(183,1,'2013-09-30 14:06:30','2013-09-30 14:06:30','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_147\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\" rel=\"attachment wp-att-147\"><img class=\"size-thumbnail wp-image-147 \" title=\"Applegate Nance\" alt=\"Applegate Nance new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignright\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 14:06:30','2013-09-30 14:06:30','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(185,1,'2013-09-30 14:08:02','2013-09-30 14:08:02','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of Applegate Nance is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 14:08:02','2013-09-30 14:08:02','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(189,1,'2013-09-30 14:19:41','2013-09-30 14:19:41','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul. ,/font>[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 14:19:41','2013-09-30 14:19:41','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(190,1,'2013-09-30 14:19:32','2013-09-30 14:19:32','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul. [/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 14:19:32','2013-09-30 14:19:32','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(191,1,'2013-09-30 14:19:49','2013-09-30 14:19:49','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter Joshua Ayers creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hannah Mae’s writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as The Billy David Band takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, radarTower connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, Meredythe & The Recycle Kids sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as Glen Spreen fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 14:19:49','2013-09-30 14:19:49','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(192,1,'2013-09-30 14:29:20','2013-09-30 14:29:20','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 14:29:20','2013-09-30 14:29:20','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(193,1,'2013-09-30 14:39:55','2013-09-30 14:39:55','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 14:39:55','2013-09-30 14:39:55','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(194,1,'2013-09-30 14:40:32','2013-09-30 14:40:32','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> Near South[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 14:40:32','2013-09-30 14:40:32','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(505,1,'2013-10-07 06:01:57','2013-10-07 06:01:57','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-07 06:01:57','2013-10-07 06:01:57','',19,'http://0332c8e.netsolhost.com/WordPress/2013/10/07/19-revision-v1/',0,'revision','',0),(504,1,'2013-10-07 06:00:03','2013-10-07 06:00:03','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-07 06:00:03','2013-10-07 06:00:03','',19,'http://0332c8e.netsolhost.com/WordPress/2013/10/07/19-revision-v1/',0,'revision','',0),(494,1,'2013-10-05 19:48:03','2013-10-05 19:48:03','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-05 19:48:03','2013-10-05 19:48:03','',19,'http://0332c8e.netsolhost.com/WordPress/2013/10/05/19-revision-v1/',0,'revision','',0),(198,2,'2013-09-30 23:35:16','2013-09-30 23:35:16','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> The Elly Maze sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 23:35:16','2013-09-30 23:35:16','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(195,2,'2013-09-30 23:32:49','2013-09-30 23:32:49','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> The Elly Maze sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in. Johanna Maze and Loretta Vinson combine distinctive vocals with an interpretive blending of instruments, creating a simple and soulful musical style.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 23:32:49','2013-09-30 23:32:49','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(196,2,'2013-09-30 23:33:05','2013-09-30 23:33:05','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\n\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\n\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\n\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\n\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\n\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\n\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\n\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> The Elly Maze sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in. Johnna Maze and Loretta Vinson combine distinctive vocals with an interpretive blending of instruments, creating a simple and soulful musical style.[/caption]','ARTISTS','','inherit','open','open','','19-autosave-v1','','','2013-09-30 23:33:05','2013-09-30 23:33:05','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-autosave-v1/',0,'revision','',0),(197,2,'2013-09-30 23:33:59','2013-09-30 23:33:59','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> The Elly Maze sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in. Johnna Maze and Loretta Vinson combine distinctive vocals with an interpretive blending of instruments, creating a simple and soulful musical style.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-09-30 23:33:59','2013-09-30 23:33:59','',19,'http://0332c8e.netsolhost.com/WordPress/2013/09/30/19-revision-v1/',0,'revision','',0),(1224,2,'2013-10-31 23:23:18','2013-10-31 23:23:18','<i>Howl</i>, the first album from the <a href=\"http://thehowlinbrothers.com/\" target=\"_blank\">Howlin’ Brothers</a> with Brendan Benson as producer was, forgive me, a Howlin’ success. After spending 24 weeks on The Americana Music Radio Chart, and peaking at #6, the Howlin’ Brothers have been busy in the studio and touring virtually non-stop. A new album, also produced by Benson will be released in early 2014. But to whet the appetite of their fans, the band has just dropped a self-produced six song EP, recorded at the legendary Sun Studio in Memphis, Tennessee.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Promo2.jpeg\"><img class=\"alignleft size-medium wp-image-1226\" alt=\"Promo2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Promo2-300x300.jpeg\" width=\"300\" height=\"300\" /></a>Sun Studio has seen the greats walk in to create history. Elvis, Johnny Cash, Roy Orbison, Carl Perkins, and more recently Boz Scaggs recorded his successful album,<i>Memphis</i>. The mystique of the studio is equal only to the ghosts in residence, whether real or imaginary. The Howlin’ Brothers walked in and through osmosis or telepathy, recorded a classic set of songs, dripping with Sun Studio mojo.\r\n\r\nIan Craft, Ben Plasse and Jared Green chose four original songs for the middle of the EP. Ones they felt would cook up like fried chicken in your grandma’s cast iron skillet, knowing the musical flavors cooked into Sun Studio over the years, would produce that subtle taste found nowhere else. Then they took an old favorite, Carl Perkin’s “Dixie Fried,” to open up the session, and to end it, one of their own songs reworked in homage to the studio itself.\r\n\r\nStarting off with an old Sun Studio treasure, the Howlin’ Brothers cover of “Dixie Fried” takes the original and adds a layer of freshness. Sweet pickin’ on top, while the thumping bass of Ben Plasse anchors the energy.\r\n\r\n“Til I Find You” has much more of a traditional Americana feel. The quick tempo, yearning vocals, harmonica and banjo, create the urgency the lyrics convey.\r\n\r\nSlowing the pace down, “Troubled Waltz” gives off an ominous tone. Though only guitar, banjo and bass are heard on this track, there is sufficient fullness of sound to portray the melancholy of the song.\r\n\r\n“Take Me Down” feels more like the sound found on their last release, <i>Howl</i>. Part Country, part Americana, or as the Brothers would probably call it, just good “old-time” music. These songs were recorded live in the studio, and it seems the third take of this tune was the charm.\r\n\r\nQuick paced and ready for dancing, “Charleston Chew” is heavy on the harmonica and gives off a good old bluegrass feel. If you get the chance to see the Howlin’ Brothers live, you can expect to see Jared Green dancing in quickstep to the beat.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/howlin-sss-500x.jpg\"><img class=\"alignright size-medium wp-image-1227\" alt=\"howlin-sss-500x\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/howlin-sss-500x-300x297.jpg\" width=\"300\" height=\"297\" /></a>Seeing the Sun Studio piano while becoming immersed in the ambiance of the room, the Brothers decided to re-record “Tennessee Blues,” off their <i>Howl</i> album. This time the track included only the bass, fiddle and the historically significant piano. The stripped down version fits in perfectly. While Green hits the keys that have created notes for archival moments of music history, Ian Craft sings mournfully, before letting the fiddle finish setting the mood. At first the idea of redoing a song from the previous album seemed a little strange, but not only does the piano take center stage, it finishes the EP with a sweetness and richness that can’t be manufactured. It comes from music produced in that room, sounds that permeated the walls and never left.\r\n\r\nThe Sun Studio Session is only available in digital form, and the session will be broadcast on PBS early in 2014. The EP is as solid as <i>Howl,</i> and is a nice bridge to the highly anticipated release due in February. In the meantime, the Howlin’ Brothers continue to tour, gaining fans and great reviews along the way.\r\n\r\nReview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>\r\n\r\nFirst published on <a href=\"http://ourvinyl.com/howlin-brothers-the-sun-studio-sessions/\">ourvinyl.com</a>','The Howlin Brothers: The Sun Studio Sessions','','inherit','open','open','','1188-autosave-v1','','','2013-10-31 23:23:18','2013-10-31 23:23:18','',1188,'http://www.earthhertzrecords.com/2013/10/1188-autosave-v1/',0,'revision','',0),(259,1,'2013-10-02 03:31:24','2013-10-02 03:31:24','','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:31:24','2013-10-02 03:31:24','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(260,1,'2013-10-02 03:31:57','2013-10-02 03:31:57','Billy David Magic','Billy David Magic','Billy David Magic','inherit','open','open','','billydavid_magic_001','','','2013-10-02 03:31:57','2013-10-02 03:31:57','',35,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001.jpg',0,'attachment','image/jpeg',0),(204,1,'2013-10-01 01:36:34','2013-10-01 01:36:34','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3f\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Joshua Ayers newest single and video.[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-01 01:36:34','2013-10-01 01:36:34','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/01/35-revision-v1/',0,'revision','',0),(200,1,'2013-10-01 01:31:02','2013-10-01 01:31:02','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Joshua Ayers newest single and video.[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-01 01:31:02','2013-10-01 01:31:02','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/01/35-revision-v1/',0,'revision','',0),(1225,2,'2013-10-31 23:09:26','2013-10-31 23:09:26','<i>Howl</i>, the first album from the <a href=\"http://thehowlinbrothers.com/\" target=\"_blank\">Howlin’ Brothers</a> with Brendan Benson as producer was, forgive me, a Howlin’ success. After spending 24 weeks on The Americana Music Radio Chart, and peaking at #6, the Howlin’ Brothers have been busy in the studio and touring virtually non-stop. A new album, also produced by Benson will be released in early 2014. But to whet the appetite of their fans, the band has just dropped a self-produced six song EP, recorded at the legendary Sun Studio in Memphis, Tennessee.\r\n\r\nSun Studio has seen the greats walk in to create history. Elvis, Johnny Cash, Roy Orbison, Carl Perkins, and more recently Boz Scaggs recorded his successful album,<i>Memphis</i>. The mystique of the studio is equal only to the ghosts in residence, whether real or imaginary. The Howlin’ Brothers walked in and through osmosis or telepathy, recorded a classic set of songs, dripping with Sun Studio mojo.\r\n\r\nIan Craft, Ben Plasse and Jared Green chose four original songs for the middle of the EP. Ones they felt would cook up like fried chicken in your grandma’s cast iron skillet, knowing the musical flavors cooked into Sun Studio over the years, would produce that subtle taste found nowhere else. Then they took an old favorite, Carl Perkin’s “Dixie Fried,” to open up the session, and to end it, one of their own songs reworked in homage to the studio itself.\r\n\r\nStarting off with an old Sun Studio treasure, the Howlin’ Brothers cover of “Dixie Fried” takes the original and adds a layer of freshness. Sweet pickin’ on top, while the thumping bass of Ben Plasse anchors the energy.\r\n\r\n“Til I Find You” has much more of a traditional Americana feel. The quick tempo, yearning vocals, harmonica and banjo, create the urgency the lyrics convey.\r\n\r\nSlowing the pace down, “Troubled Waltz” gives off an ominous tone. Though only guitar, banjo and bass are heard on this track, there is sufficient fullness of sound to portray the melancholy of the song.\r\n\r\n“Take Me Down” feels more like the sound found on their last release, <i>Howl</i>. Part Country, part Americana, or as the Brothers would probably call it, just good “old-time” music. These songs were recorded live in the studio, and it seems the third take of this tune was the charm.\r\n\r\nQuick paced and ready for dancing, “Charleston Chew” is heavy on the harmonica and gives off a good old bluegrass feel. If you get the chance to see the Howlin’ Brothers live, you can expect to see Jared Green dancing in quickstep to the beat.\r\n\r\nSeeing the Sun Studio piano while becoming immersed in the ambiance of the room, the Brothers decided to re-record “Tennessee Blues,” off their <i>Howl</i> album. This time the track included only the bass, fiddle and the historically significant piano. The stripped down version fits in perfectly. While Green hits the keys that have created notes for archival moments of music history, Ian Craft sings mournfully, before letting the fiddle finish setting the mood. At first the idea of redoing a song from the previous album seemed a little strange, but not only does the piano take center stage, it finishes the EP with a sweetness and richness that can’t be manufactured. It comes from music produced in that room, sounds that permeated the walls and never left.\r\n\r\nThe Sun Studio Session is only available in digital form, and the session will be broadcast on PBS early in 2014. The EP is as solid as <i>Howl,</i> and is a nice bridge to the highly anticipated release due in February. In the meantime, the Howlin’ Brothers continue to tour, gaining fans and great reviews along the way.','The Howlin Brothers: The Sun Studio Sessions','','inherit','open','open','','1188-revision-v1','','','2013-10-31 23:09:26','2013-10-31 23:09:26','',1188,'http://www.earthhertzrecords.com/2013/10/1188-revision-v1/',0,'revision','',0),(203,1,'2013-10-01 01:35:47','2013-10-01 01:35:47','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Joshua Ayers newest single and video.[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-01 01:35:47','2013-10-01 01:35:47','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/01/35-revision-v1/',0,'revision','',0),(209,1,'2013-10-01 01:44:16','2013-10-01 01:44:16','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Joshua Ayers newest single and video.[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-01 01:44:16','2013-10-01 01:44:16','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/01/35-revision-v1/',0,'revision','',0),(1313,2,'2013-11-22 18:26:18','2013-11-23 00:26:18','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\"><img class=\"aligncenter size-full wp-image-1309\" alt=\"KatsTheory-Arlo-21\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\" width=\"1000\" height=\"860\" /></a>For a November night in northwest New Jersey, the weather could not have been better. A light jacket was enough to keep you warm, but not crowd you in your seat. Tonight you wanted to be comfortable for it was to be a night of songs and stories. Arlo Guthrie was in town, and we weren’t the only ones celebrating. With this year marking the 100<sup>th</sup> birthday of Arlo’s father, legendary folk singer and documenter of mid-century America, Woody Guthrie, Arlo was performing many of his dad’s compositions.\r\n\r\nThe Newton Theatre is a reclaimed from the edge of destruction movie theatre. Small and intimate, you get to share the experience with 604 new friends. Though we were lucky to be sitting up front, it’s hard to imagine a bad seat in the house.\r\n\r\nWith no opening act, Arlo and his three-piece band took their places onstage. With each member dressed in black, there would be no distraction; this night was about the music and the stories that inspired them. Arlo sat center stage next to his guitar rack with four beauties waiting to be picked.\r\n\r\nArlo began the evening speaking of Woody, and the joy he felt being able to spend nights such as this, singing the songs of his father, the songs of an America past, the songs of justice and injustice, the songs of his family. His voice is filled with more gravel than before, as if age and life’s journey has settled in. But every once in a while, the familiar sound of the Arlo from another time, punctuates a sentence of a story, and all those memories when you heard him say “Officer Obie” or “you remember Alice,” come flooding back. And you smile.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\"><img class=\"alignleft wp-image-1308\" alt=\"KatsTheory-Arlo-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\" width=\"800\" height=\"478\" /></a>Arlo Guthrie is a superb storyteller. Pulling out a beautiful acoustic Gibson out of the rack, Arlo began telling the story of Woody’s “Oklahoma Hills,” and you realize just how different the world was back then for a songwriter. You might not even know your song had been recorded until you heard it playing in a jukebox.\r\n\r\nOne of the wonderful attributes of the writing of Woody Guthrie was his ability to put down words explaining injustice, hard times, or the beauty of this country, in the most simple of words. Their simplicity making them universally relatable.\r\n\r\nGrowing up Guthrie meant you had the most interesting of extended families. Ramblin’ Jack Elliot, Huddie “Leadbelly” Ledbetter, Cisco Houston. Their songs and their stories were exquisite as told by this grown man who had known these legends when he was a child.\r\n\r\nThough storytelling and song is his forte, Arlo Guthrie can play a real pretty guitar, though this night he battled with keeping them in tune. As a little tweaking of the strings went on longer than expected, Arlo blamed it in the blue light overhead. The audience laughed as the lighting guy quickly changed the color. It didn’t help. It did make the evening even more real; this was no rock star with a technician handing him a perfectly tuned guitar for every song. This was just a musician sitting in someone’s living room trying to play his best for some new friends.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31.jpg\"><img class=\"alignleft size-medium wp-image-1310\" alt=\"KatsTheory-Arlo-31\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31-300x232.jpg\" width=\"300\" height=\"232\" /></a>Listening to the songs of Woody Guthrie is like riding on one of the filled-with-family-and-belongings trucks Steinbeck wrote about in <i>The Grapes of Wrath.</i> In fact Guthrie wrote a song condensing the 600 pages of <i>Wrath</i> into a song with twelve verses. This was something over which Steinbeck took umbrage. The combination of the songs and the perspective Arlo brings to them is a history lesson so interesting, you wish this was how it was taught in school. After an hour of enjoying the songs and tales of times long ago, Arlo and the band took a short break.\r\n\r\nComing back onstage the music catalog shifted to Arlo’s own. Now it wasn’t only Woody’s songs which were prefaced by a story. “Coming Into Los Angeles” began with a story of his late wife Jackie’s arrest for marijuana at the airport, after a long-forgotten gift from a fan to Arlo, was found in her bag.\r\n\r\nHe then talked about his early memories of Leadbelly in his home, and his search for Leadbelly’s grave somewhere in Louisiana. Leadbelly, who wrote among many others, “Midnight Special” and “Goodnight Irene,” was buried in Shreeveport, and they found the grave with guitar picks scattered over the tombstone. So he pulled out his guitar, sat there, and played some songs for the man he remembered as a two-year old. One of those songs “Alabama Bound,” was Arlo’s next selection.\r\n\r\nOne highlight of the evening was Steve Goodman’s “City Of New Orleans.” Lyrically, you can’t write much more of a poignant ballad. It is a testament to his songwriting that a song so moving, is about a train. The story of how Arlo and Steve met is priceless, making his loss at such a young age, even more lamentable.\r\n\r\nRelating how he first laid eyes on his future wife and singing “Highway In The Wind,” which he wrote for her, must be more than a little bittersweet, a little over a year since the death of the woman to whom he was married for forty-three years.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg\"><img class=\"alignright size-medium wp-image-1311\" alt=\"KatsTheory-Arlo-11\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11-300x200.jpg\" width=\"300\" height=\"200\" /></a>Getting close to the end of the show, Arlo pulled out arguably Woody’s most recognizable song, “This Land Is Your Land.” As we approach the Thanksgiving holiday, the imagery of the words was not lost on the audience. Considering there is not another song which embodies the greatness of this country more than this, it is a song that should be taught in every school in this country.\r\n\r\nOf course since we are so close to Thanksgiving, you can be sure there wasn’t a person in the crowd who wasn’t hoping to hear the familiar first few notes of “Alice’s Restaurant.” Arlo did not disappoint. As he began to play, the audience sang along to the beginning chorus. At this point Arlo said “You don’t think I’m really going to sing this whole freakin’ song do you?” And no, I don’t think we really did. And just that one chorus, while a tease, was enough of a taste to keep a smile on everyone’s face. He picked the melody while talking about what the song has meant to him and his family over the years… the good and the not so good.\r\n\r\nAs all of our storytellers get older, the danger of losing important parts of our past, grows. Arlo Guthrie not only lived some of the stories first-hand, he grew up surrounded by legends with their own stories to tell. Never miss a chance to hear them because you’ll never forget them once you do. And that keeps them alive.\r\n\r\nThis evening with Arlo Guthrie pickin’, singin’ and tellin’ stories was one of the most enjoyable nights I’ve ever spent in a music hall. It was an honor to hear him speak of his father, and all those who came before. And hopefully by writing about it, the stories keep going just a little longer.\r\n\r\n \r\n\r\n ','Arlo Guthrie at the Newton Theatre: A Night of Songs and Stories','','inherit','open','open','','1303-revision-v1','','','2013-11-22 18:26:18','2013-11-23 00:26:18','',1303,'http://www.earthhertzrecords.com/2013/11/1303-revision-v1/',0,'revision','',0),(219,1,'2013-10-01 02:01:08','2013-10-01 02:01:08','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Joshua Ayers newest single and video.[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-01 02:01:08','2013-10-01 02:01:08','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/01/35-revision-v1/',0,'revision','',0),(217,1,'2013-10-01 01:59:42','2013-10-01 01:59:42','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Joshua Ayers newest single and video.[/caption]\r\n\r\n[caption id=\"attachment_141\" align=\"alignleft\" width=\"150\"]<embed type=\"video/mp4\" name=\"mp3Beam\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" height=\"455\" width=\"550\" controls=\"CONSOLE\" playcount=\"1\" loop=\"0\" autostart=\"1\" showstatusbar=\"1\" style=\"font-size: 10pt;\">[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-01 01:59:42','2013-10-01 01:59:42','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/01/35-revision-v1/',0,'revision','',0),(218,1,'2013-10-01 02:00:36','2013-10-01 02:00:36','[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Joshua Ayers newest single and video.[/caption]\r\n\r\n[caption id=\"attachment_141\" align=\"alignleft\" width=\"150\"]<embed type=\"video/mp4\" name=\"mp3Beam\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" width=\"250\" height=\"150\" controls=\"CONSOLE\" playcount=\"1\" loop=\"0\" autostart=\"1\" showstatusbar=\"1\" style=\"font-size: 10pt;\">[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-01 02:00:36','2013-10-01 02:00:36','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/01/35-revision-v1/',0,'revision','',0),(226,1,'2013-10-01 02:37:04','2013-10-01 02:37:04','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/217897_10151273041892521_836830802_n/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/wastecover750/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-01 02:37:04','2013-10-01 02:37:04','',19,'http://0332c8e.netsolhost.com/WordPress/2013/10/01/19-revision-v1/',0,'revision','',0),(227,1,'2013-09-18 12:47:26','2013-09-18 12:47:26','Contact Earth Hertz Records\r\n\r\nRobert Xeno <a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\nEloaXeno <a href=\"mailto:rxeno@earthhertz.com\">eloa@earthhertz.com</a>\r\n\r\nKath Galasso <a href=\"mailto:rxeno@earthhertz.com\">kgalasso@earthhertz.com</a>\r\n\r\nRobert Xeno <a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-09-18 12:47:26','2013-09-18 12:47:26','',23,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/23-revision-v1/',0,'revision','',0),(285,1,'2013-10-02 04:05:41','2013-10-02 04:05:41','[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-263\"><img class=\" wp-image-263 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-4n\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\"wp-image-261 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_260\" align=\"alignleft\" width=\"250\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\"wp-image-260 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Billy David Magic[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\nradarTower Need Someone','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:05:41','2013-10-02 04:05:41','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(1302,1,'2013-11-20 12:20:27','2013-11-20 18:20:27','[caption id=\"attachment_131\" align=\"alignleft\" width=\"81\"]<a href=\"http://www.earthhertzrecords.com/category/earthhertzblog/\"><img class=\"size-full wp-image-131 \" title=\"Earth Hertz Records Blog\" alt=\"Earth Hertz Records Blog\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/EH_120_360_Skyscraper_2013_07_29_001.png\" width=\"81\" height=\"83\" /></a> Earth Hertz Records Blog[/caption]','BLOG','','inherit','open','open','','30-revision-v1','','','2013-11-20 12:20:27','2013-11-20 18:20:27','',30,'http://www.earthhertzrecords.com/2013/11/30-revision-v1/',0,'revision','',0),(1301,1,'2013-11-20 12:18:43','2013-11-20 18:18:43','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg\"><img class=\"alignleft wp-image-433\" alt=\"Roy Orbison\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Roy-Orbison.jpg\" /></a>In an age rife with mp3 downloads, boy bands and hip hop samples, the roots of rock and roll have often become shrouded by trends. But as vinyl begins to crackle and pop its way back into the musical landscape and a generation or two become nostalgic for a time when melody and lyrics were king, a listen to the voices and musicianship that helped shape what they grew up on and enjoy today is a welcome treat, as is a read through the history and stories of how it all came to be.\r\n\r\nThat’s exactly what we get with <a href=\"http://johnkruth.com/\">John Kruth</a>‘s biography of the late, great Roy Orbison, Rhapsody In Black. Author of such musical biographies as the award winning To Live’s To Fly: The Ballad of the Late, Great Townes Van Zandt, Kruth weaves a tale transcendent of the typical musical bio-read. His is a tale told from the perspective of a music historian (Kruth is a professor of Musical History) and the voice of a musician whose played the music of which he writes. The author’s trademark folksy musician voice draws the reader deeply into the world inhabited by such musical giants of the 1950s as Elvis Presley, Buddy Holly, Chet Atkins and the legendary Memphis Sun Studios, which launched their careers. A detailed account of the music scene and the rise of Orbison’s career within it sprawl out before the reader like a yellow brick road for the audiophile, while the author closely knits history with anecdotes. It’s a history and a story made vivid and enthralling for both the average music lover and the musician alike.\r\n\r\nPain and longing abound in the music of Roy Orbison, as is evident in his best known hit “Oh, Pretty Woman” and the reasons are well documented here. If the details of Roy’s tragic life have already been made public knowledge, never have they been told in such a way that makes you feel that you were there experiencing the pain and isolation along with Orbison as they are here.\r\n\r\nFrom his days growing up in Texas, to his residency as a Traveling Wilbury and everything in between, we get the chance to walk the straight and narrow with music’s quiet man; more the homebody than rebel rouser, the unmistakeable voice and the legend behind the dark Ray Bans.\r\n\r\n<strong>Review by Linda Roy.</strong>\r\n\r\n<strong>Linda is a writer and musician who blogs at <a href=\"http://elleroywashere.com/\" target=\"_blank\">elleroy was here</a> and <a href=\"http://raisedontheradio.com/\" target=\"_blank\">Raised on the Radio</a>. She leads the Indie Americana band <a href=\"http://jehovawaitresses.com/\" target=\"_blank\">Jehova Waitresses</a> and writes at <a href=\"http://www.aiminglow.com/\" target=\"_blank\">Aiming Low</a>, <a href=\"http://sprocketink.com/\" target=\"_blank\">Sprocket Ink</a> and <a href=\"http://www.funnynotslutty.com/\" target=\"_blank\">Funny Not Slutty</a>. Connect with her on <a href=\"http://www.twitter.com/modmomelleroy\" target=\"_blank\">Twitter</a>, <a href=\"https://www.facebook.com/ModMomBeyondIndieDom\" target=\"_blank\">Facebook</a> and <a href=\"https://plus.google.com/u/0/116644246137576659052/posts\" target=\"_blank\">Google+</a></strong>','Rhapsody in Black: The Life and Music of Roy Orbison','','inherit','open','open','','432-revision-v1','','','2013-11-20 12:18:43','2013-11-20 18:18:43','',432,'http://www.earthhertzrecords.com/2013/11/432-revision-v1/',0,'revision','',0),(598,2,'2013-10-09 14:23:34','2013-10-09 14:23:34','<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1.jpg\"><img class=\"alignleft size-medium wp-image-600\" alt=\"EarthHertz-HannahMae-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1-206x300.jpg\" width=\"206\" height=\"300\" /></a>Hannah Mae Rector</strong> grew up surrounded by music, so it wasn\'t a stretch to think she would make it her career. Whether she\'s playing piano or guitar, Hannah\'s vocals combine with her storytelling to create songs filled with imagination and fluid melodies.\r\n\r\n<b>Tell me how you first got into music.</b>\r\n\r\nI’ve played piano since I was really young. I would sing in church and school in choir. My mom is a flutist; she sings and plays all different instruments, and my dad plays guitar. So you could say I grew up around a musical family. I was always singing or humming, and I started writing songs when I was pretty young, like ten or eleven. I didn’t start performing on my own until I was about seventeen. When I was fifteen or sixteen, I started playing the guitar, I took lessons. Then I started playing out more in singing competitions and random little gigs.\r\n\r\n<b>What are your musical influences?</b>\r\n\r\nI grew up listening to my dad’s oldies and country. I listened to older country when I was younger, and my mom is a big fan of classical music, so those were the main genres I listened to. But then I got more into the pop stuff when I was in my early teens. I listened to a ton of Christina Aguilera because I love her vocals. But I’m very open in my genres, I like everything from country to oldies to pop, then folk and new age stuff. I think the genre that I’ve settled in currently is more like a folk-new age sound.\r\n\r\n<b>How would you describe your songwriting technique?</b>\r\n\r\nIt changes. When I first started writing, I played piano, so I would always create the melody and then the lyrics. That’s why I started taking guitar lessons. I needed an instrument were I could just pick up and go. A piano is a little hard to carry around. I wanted an instrument that I could take with me and put a melody down when I think of lyrics. I switched to thinking of the lyrics first and create the melody with the guitar. It goes back and forth depending on what I have access to.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-2.jpg\"><img class=\"alignright size-medium wp-image-601\" alt=\"EarthHertz-HannahMae-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-2-225x300.jpg\" width=\"225\" height=\"300\" /></a>Tell me about your first single released through Earth Hertz, “Guns And Run.”</b>\r\n\r\nI started writing that song when the banjo player I played a few gigs together with started playing this melody on the banjo, and I heard in it this pioneer, western ballad thing going on in my head. I started writing the lyrics while I was thinking about the Pioneer and Indian days, and how people had to up and move really quick, and how people had land taken from under them. The lyrics went that way; the melody started me thinking I guess.\r\n\r\n<b>What are your interests outside of music?</b>\r\n\r\nI have a day job where I teach music classes to 3-5 year-olds. It’s really fun. I honestly enjoy working with kids. I like outdoor stuff like hiking and swimming. I am also an artist; I paint, do crafts and art. I’m an acrylic painter. I’m just an artist.\r\n\r\nInterview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@KatsTheory</a>','Five Questions with Hannah Mae','','publish','open','open','','five-questions-with-hannah-mae','','','2013-11-20 00:56:30','2013-11-20 00:56:30','',0,'http://www.earthhertzrecords.com/?p=598',0,'post','',0),(246,1,'2013-10-02 02:57:54','2013-10-02 02:57:54','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n<img class=\"wp-image-762 alignleft\" alt=\"Mathias_RadarTowerAlbumCoverFinal\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Mathias_RadarTowerAlbumCoverFinal-300x300.jpg\" width=\"250\" height=\"250\" />Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"size-medium wp-image-501 alignright\" title=\"Matt Guertin\" alt=\"Matt Guertin\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>The changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n<strong>Mathias Meets The World\r\n</strong>\r\n\r\nMP3s\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\n1. Complicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\n2. Need To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\n3. It\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\n4. Memories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\n5. Feelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\n6. Hippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\n7. Gimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\n8. Before We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\n9. Sheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\n10. Time Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\n11. Need Someone\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nNeed Someone','radarTower','','private','open','closed','','radartower','','','2014-04-13 22:24:12','2014-04-14 04:24:12','',19,'http://0332c8e.netsolhost.com/WordPress/?page_id=246',6,'page','',0),(247,1,'2013-10-02 02:57:54','2013-10-02 02:57:54','radarTower Stuff','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-02 02:57:54','2013-10-02 02:57:54','',246,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/246-revision-v1/',0,'revision','',0),(248,1,'2013-10-02 02:58:28','2013-10-02 02:58:28','[caption id=\"attachment_132\" align=\"alignnone\" width=\"960\"]<a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\"><img class=\" wp-image-132\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/slide_001_en.png\" width=\"960\" height=\"210\" /></a> The Billy David Band. An inspiring blend of Reggae and Pop![/caption]\r\n\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Alabama, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\n\r\n<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>','The Billy David Band','','publish','open','closed','','the-billy-david-band','','','2014-03-28 11:45:32','2014-03-28 17:45:32','',19,'http://0332c8e.netsolhost.com/WordPress/?page_id=248',7,'page','',1),(249,1,'2013-10-02 02:58:28','2013-10-02 02:58:28','The Billy David Band Stuff','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-02 02:58:28','2013-10-02 02:58:28','',248,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/248-revision-v1/',0,'revision','',0),(252,1,'2013-10-02 03:12:33','2013-10-02 03:12:33','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/TheEllyMaze_NearSouth_Front_001b_600x600.jpg\"><img class=\"alignleft size-medium wp-image-519\" alt=\"TheEllyMaze_NearSouth_Front_001b_600x600\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/TheEllyMaze_NearSouth_Front_001b_600x600-300x300.jpg\" width=\"300\" height=\"300\" /></a>Johnna Maze and Loretta Vinson met at a music festival open stage and immediately began a musical partnership. As a member of a family of pickers, Johnna plays both guitar and Missouri style bloodbucket mandolin. No stranger to picking herself, Loretta takes on rhythm guitar, upright bass and banjo.\r\n\r\nBlending Bluegrass, Americana, and classic Country, <strong>The Elly Maze</strong> count the Flying Burrito Brothers, Gram Parsons, Emmylou Harris, Buffalo Springfield, Loretta Lynn, George Jones, Merle Haggard, and Marshall Chapman as those who have influenced their career, and their sound which they call Honkygrass-Amerifolk.\r\n\r\n<i>Near South</i>, their release through Earth Hertz Records, features eleven tracks of traditional country flavored joy. Johnna, Loretta and violinist Carolyn Dutton, have created a solid taste of old time American music, full of beautiful melodies and classic country vocals.','The Elly Maze','','publish','open','closed','','the-elly-maze','','','2013-10-13 00:29:36','2013-10-13 00:29:36','',19,'http://0332c8e.netsolhost.com/WordPress/?page_id=252',8,'page','',0),(253,1,'2013-10-02 03:12:33','2013-10-02 03:12:33','The Elly Maze Stuff','The Elly Maze','','inherit','open','open','','252-revision-v1','','','2013-10-02 03:12:33','2013-10-02 03:12:33','',252,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/252-revision-v1/',0,'revision','',0),(1328,2,'2013-11-23 08:00:17','2013-11-23 14:00:17','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\"><img class=\"aligncenter size-full wp-image-1309\" alt=\"KatsTheory-Arlo-21\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\" width=\"1000\" height=\"860\" /></a>For a November night in northwest New Jersey, the weather could not have been better. A light jacket was enough to keep you warm, but not crowd you in your seat. Tonight you wanted to be comfortable for it was to be a night of songs and stories. Arlo Guthrie was in town, and we weren’t the only ones celebrating. With this year marking the 100<sup>th</sup> birthday of Arlo’s father, legendary folk singer and documenter of mid-century America, Woody Guthrie, Arlo was performing many of his dad’s compositions.\r\n\r\nThe Newton Theatre is a reclaimed from the edge of destruction movie theatre. Small and intimate, you get to share the experience with 604 new friends. Though we were lucky to be sitting up front, it’s hard to imagine a bad seat in the house.\r\n\r\nWith no opening act, Arlo and his three-piece band took their places onstage. With each member dressed in black, there would be no distraction; this night was about the music and the stories that inspired it. Arlo sat center stage next to his guitar rack with four beauties waiting to be picked.\r\n\r\nArlo began the evening speaking of Woody, and the joy he felt being able to spend nights such as this, singing the songs of his father, the songs of an America past, the songs of justice and injustice, the songs of his family. His voice is filled with more gravel than before, as if age and life’s journey has settled in. But every once in a while, the familiar sound of the Arlo from another time, punctuates a sentence of a story, and all those memories when you heard him say “Officer Obie” or “you remember Alice,” come flooding back. And you smile.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\"><img class=\"alignleft wp-image-1308\" alt=\"KatsTheory-Arlo-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\" width=\"800\" height=\"478\" /></a>Arlo Guthrie is a superb storyteller. Pulling a beautiful acoustic Gibson out of the rack, Arlo began telling the story of Woody’s “Oklahoma Hills,” and you realize just how different the world was back then for a songwriter. You might not even know your song had been recorded until you heard it playing in a jukebox.\r\n\r\nOne of the wonderful attributes of the writing of Woody Guthrie was his ability to put down words explaining injustice, hard times, or the beauty of this country, in the most simple of words. Their simplicity making them universally relatable.\r\n\r\nGrowing up Guthrie meant you had the most interesting of extended families. Ramblin’ Jack Elliot, Huddie “Leadbelly” Ledbetter, Cisco Houston to name a few, were household regulars. Their songs and their stories were exquisite as told by this grown man who had known these legends when he was a child.\r\n\r\nThough storytelling and song is his forte, Arlo Guthrie can play a real pretty guitar, though this night he battled with keeping them in tune. As a little tweaking of the strings went on longer than expected, Arlo blamed it on the blue light overhead. The audience laughed as the lighting guy quickly changed the color. It didn’t help, but it did make the evening even more real; this was no rock star with a technician handing him a perfectly tuned guitar for every song. This was just a musician sitting in someone’s living room trying to play his best for some new friends.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31.jpg\"><img class=\"alignleft size-medium wp-image-1310\" alt=\"KatsTheory-Arlo-31\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31-300x232.jpg\" width=\"300\" height=\"232\" /></a>Listening to the songs of Woody Guthrie is like riding on one of the filled-with-family-and-belongings trucks Steinbeck wrote about in <i>The Grapes of Wrath.</i> In fact Guthrie wrote a song condensing the 600 pages of <i>Wrath</i> into a song with twelve verses. This was something over which Steinbeck took umbrage. The combination of the songs and the perspective Arlo brings to them is a history lesson so interesting, you wish this was how it was taught in school. After an hour of enjoying the songs and tales of times long ago, Arlo and the band took a short break.\r\n\r\nComing back onstage the music catalog shifted to Arlo’s own. Now it wasn’t only Woody’s songs which were prefaced by a story. “Coming Into Los Angeles” began with a story of his late wife Jackie’s arrest for marijuana at the airport, after a long-forgotten gift from a fan to Arlo, was found in her bag.\r\n\r\nHe then talked about his early memories of Leadbelly in his home, and his search for Leadbelly’s grave somewhere in Louisiana. Leadbelly, who wrote among many others, “Midnight Special” and “Goodnight Irene,” was buried in Shreeveport, and they found the grave with guitar picks scattered over the tombstone. So he pulled out his guitar, sat there, and played some songs for the man he remembered as a two-year old. One of those songs “Alabama Bound,” was Arlo’s next selection.\r\n\r\nOne highlight of the evening was Steve Goodman’s “City Of New Orleans.” Lyrically, you can’t write much more of a poignant ballad. It is a testament to his songwriting that a song so moving, is about a train. The story of how Arlo and Steve met is priceless, making his loss at such a young age, even more lamentable.\r\n\r\nRelating how he first laid eyes on his future wife and singing “Highway In The Wind,” which he wrote for her, must be more than a little bittersweet, a little over a year since the death of the woman to whom he was married for forty-three years.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg\"><img class=\"alignright size-full wp-image-1311\" alt=\"KatsTheory-Arlo-11\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg\" width=\"1000\" height=\"667\" /></a>Getting close to the end of the show, Arlo pulled out arguably Woody’s most recognizable song, “This Land Is Your Land.” As we approach the Thanksgiving holiday, the imagery of the words was not lost on the audience. Considering there is not another song which embodies the greatness of this country more than this, it is a song that should be taught in every school in this country.\r\n\r\nOf course since we are so close to Thanksgiving, you can be sure there wasn’t a person in the crowd who wasn’t hoping to hear the familiar first few notes of “Alice’s Restaurant.” Arlo did not disappoint. As he began to play, the audience sang along to the beginning chorus. At this point Arlo said “You don’t think I’m really going to sing this whole freakin’ song do you?” And no, I don’t think we really did. And just that one chorus, while a tease, was enough of a taste to keep a smile on everyone’s face. He picked the melody while talking about what the song has meant to him and his family over the years… the good and the not so good.\r\n\r\nAs all of our storytellers get older, the danger of losing important parts of our past, grows. Arlo Guthrie not only lived some of the stories first-hand, he grew up surrounded by legends with their own stories to tell. Never miss a chance to hear them because you’ll never forget them once you do. And that keeps them alive.\r\n\r\nThis evening with Arlo Guthrie pickin’, singin’ and tellin’ stories was one of the most enjoyable nights I’ve ever spent in a music hall. It was an honor to hear him speak of his father, and all those who came before. And hopefully by writing about it, the stories keep going just a little longer.\r\n\r\n \r\n\r\n ','Arlo Guthrie at the Newton Theatre: A Night of Songs and Stories','','inherit','open','open','','1303-revision-v1','','','2013-11-23 08:00:17','2013-11-23 14:00:17','',1303,'http://www.earthhertzrecords.com/2013/11/1303-revision-v1/',0,'revision','',0),(261,1,'2013-10-02 03:31:59','2013-10-02 03:31:59','','GlenSpreen_red_001','','inherit','open','open','','glenspreen_red_001','','','2013-10-02 03:31:59','2013-10-02 03:31:59','',35,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001.jpg',0,'attachment','image/jpeg',0),(262,1,'2013-10-02 03:31:53','2013-10-02 03:31:53','','HannahMae_Guns_001','','inherit','open','open','','hannahmae_guns_001','','','2013-10-02 03:31:53','2013-10-02 03:31:53','',35,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001.jpg',0,'attachment','image/jpeg',0),(263,1,'2013-10-02 03:31:55','2013-10-02 03:31:55','','JoshAyers_Waste_001','','inherit','open','open','','joshayers_waste_001','','','2013-10-02 03:31:55','2013-10-02 03:31:55','',35,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001.jpg',0,'attachment','image/jpeg',0),(264,1,'2013-10-02 03:32:03','2013-10-02 03:32:03','radarTower Need Someone','radarTower Need Someone','radarTower Need Someone','inherit','open','open','','radartower_need_001','','','2013-10-02 03:32:03','2013-10-02 03:32:03','',35,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001.jpg',0,'attachment','image/jpeg',0),(672,1,'2013-10-11 20:20:28','2013-10-11 20:20:28','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n \r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"240\"]<img class=\" wp-image-671\" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /> Joshua Ayers - Waste[/caption]\r\n\r\n','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 20:20:28','2013-10-11 20:20:28','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(291,1,'2013-10-02 04:11:16','2013-10-02 04:11:16','[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:11:16','2013-10-02 04:11:16','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(288,1,'2013-10-02 04:09:44','2013-10-02 04:09:44','[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-263\"><img class=\"wp-image-263\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-4n\" rel=\"attachment wp-att-262\"><img class=\"wp-image-262\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\"wp-image-261\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_260\" align=\"alignleft\" width=\"250\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\"wp-image-260 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Billy David Magic[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:09:44','2013-10-02 04:09:44','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(283,1,'2013-10-02 04:03:39','2013-10-02 04:03:39','[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-4x\" rel=\"attachment wp-att-263\"><img class=\" wp-image-263 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-4n\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\"wp-image-261 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_260\" align=\"alignleft\" width=\"250\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\"wp-image-260 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Billy David Magic[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\nradarTower Need Someone','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:03:39','2013-10-02 04:03:39','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(292,1,'2013-10-02 04:11:39','2013-10-02 04:11:39','\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:11:39','2013-10-02 04:11:39','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(265,1,'2013-10-02 03:34:41','2013-10-02 03:34:41','[caption id=\"attachment_263\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-263\"><img class=\"size-thumbnail wp-image-263\" title=\"Josh Ayers Waste\" alt=\"Josh Ayers Waste\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"150\" height=\"150\" /></a> Josh Ayers Waste[/caption]\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\"alignleft size-thumbnail wp-image-260\" alt=\"BillyDavid_Magic_001\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"150\" height=\"150\" /></a> <a href=\"http://0332c8e.netsolhost.com/WordPress/videos/glenspreen_red_001/\" rel=\"attachment wp-att-261\"><img class=\"alignleft size-thumbnail wp-image-261\" alt=\"GlenSpreen_red_001\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"150\" height=\"150\" /></a> <a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-262\"><img class=\"alignleft wp-image-262\" alt=\"Hannah Mae Guns & Run\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"200\" height=\"150\" /></a>\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"300\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"size-medium wp-image-264 \" alt=\"radarTower Need Someone\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"300\" height=\"190\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:34:41','2013-10-02 03:34:41','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(266,1,'2013-10-02 03:35:07','2013-10-02 03:35:07','[caption id=\"attachment_263\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-263\"><img class=\"size-thumbnail wp-image-263\" title=\"Josh Ayers Waste\" alt=\"Josh Ayers Waste\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"150\" height=\"150\" /></a> Josh Ayers Waste[/caption]\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\"alignleft size-thumbnail wp-image-260\" alt=\"BillyDavid_Magic_001\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"150\" height=\"150\" /></a> <a href=\"http://0332c8e.netsolhost.com/WordPress/videos/glenspreen_red_001/\" rel=\"attachment wp-att-261\"><img class=\"alignleft size-thumbnail wp-image-261\" alt=\"GlenSpreen_red_001\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"150\" height=\"150\" /></a> <a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-262\"><img class=\"alignleft wp-image-262\" alt=\"Hannah Mae Guns & Run\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"200\" height=\"150\" /></a>\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\" wp-image-264 \" alt=\"radarTower Need Someone\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:35:07','2013-10-02 03:35:07','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(275,1,'2013-10-02 03:52:23','2013-10-02 03:52:23','[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\" height=\"140\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-263\"><img class=\" wp-image-263 \" title=\"Josh Ayers Waste\" alt=\"Josh Ayers Waste\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"150\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\" height=\"140\"]<a href=\"http://wp.me/P3Wu0q-4n\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262 \" title=\"Hannah Mae Guns & Run\" alt=\"Hannah Mae Guns & Run\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\" height=\"140\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\" wp-image-261 \" title=\"Glen Spreen Dreams\" alt=\"Glen Spreen Dreams\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\" height=\"140\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\" wp-image-264 \" alt=\"radarTower Need Someone\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:52:23','2013-10-02 03:52:23','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(267,1,'2013-10-02 03:36:32','2013-10-02 03:36:32','[caption id=\"attachment_263\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-263\"><img class=\"size-thumbnail wp-image-263\" title=\"Josh Ayers Waste\" alt=\"Josh Ayers Waste\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"150\" height=\"150\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262\" title=\"Hannah Mae Guns & Run\" alt=\"Hannah Mae Guns & Run\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\"alignleft size-thumbnail wp-image-260\" alt=\"BillyDavid_Magic_001\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"150\" height=\"150\" /></a> <a href=\"http://0332c8e.netsolhost.com/WordPress/videos/glenspreen_red_001/\" rel=\"attachment wp-att-261\"><img class=\"alignleft size-thumbnail wp-image-261\" alt=\"GlenSpreen_red_001\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\" wp-image-264 \" alt=\"radarTower Need Someone\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:36:32','2013-10-02 03:36:32','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(269,1,'2013-10-02 03:38:51','2013-10-02 03:38:51','[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-263\"><img class=\" wp-image-263 \" title=\"Josh Ayers Waste\" alt=\"Josh Ayers Waste\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"150\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262\" title=\"Hannah Mae Guns & Run\" alt=\"Hannah Mae Guns & Run\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\" wp-image-261 \" title=\"Glen Spreen Dreams\" alt=\"Glen Spreen Dreams\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"150\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-260\"><img class=\"alignleft wp-image-260\" alt=\"BillyDavid_Magic_001\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"250\" height=\"150\" /></a>\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\" wp-image-264 \" alt=\"radarTower Need Someone\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:38:51','2013-10-02 03:38:51','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(268,1,'2013-10-02 03:38:08','2013-10-02 03:38:08','[caption id=\"attachment_263\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-263\"><img class=\"size-thumbnail wp-image-263\" title=\"Josh Ayers Waste\" alt=\"Josh Ayers Waste\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"150\" height=\"150\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262\" title=\"Hannah Mae Guns & Run\" alt=\"Hannah Mae Guns & Run\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\" wp-image-261 \" title=\"Glen Spreen Dreams\" alt=\"Glen Spreen Dreams\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"150\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\"alignleft size-thumbnail wp-image-260\" alt=\"BillyDavid_Magic_001\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\" wp-image-264 \" alt=\"radarTower Need Someone\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:38:08','2013-10-02 03:38:08','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(270,1,'2013-10-02 03:41:05','2013-10-02 03:41:05','[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-263\"><img class=\" wp-image-263 \" title=\"Josh Ayers Waste\" alt=\"Josh Ayers Waste\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"150\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262\" title=\"Hannah Mae Guns & Run\" alt=\"Hannah Mae Guns & Run\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\" wp-image-261 \" title=\"Glen Spreen Dreams\" alt=\"Glen Spreen Dreams\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"150\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-260\"><img class=\"alignleft wp-image-260\" alt=\"BillyDavid_Magic_001\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"250\" height=\"150\" /></a>\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\" wp-image-264 \" alt=\"radarTower Need Someone\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:41:05','2013-10-02 03:41:05','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(271,1,'2013-10-02 03:47:17','2013-10-02 03:47:17','<iframe src=\"//www.youtube.com/embed/yCuoOUG3iOc\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Hannah Mae','','publish','open','closed','','hannah-mae','','','2013-10-11 01:44:40','2013-10-11 01:44:40','',35,'http://0332c8e.netsolhost.com/WordPress/?page_id=271',2,'page','',0),(272,1,'2013-10-02 03:47:17','2013-10-02 03:47:17','<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/yCuoOUG3iOc\" frameborder=\"0\" allowfullscreen></iframe>','Hannah Mae','','inherit','open','open','','271-revision-v1','','','2013-10-02 03:47:17','2013-10-02 03:47:17','',271,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/271-revision-v1/',0,'revision','',0),(273,1,'2013-10-02 03:49:08','2013-10-02 03:49:08','[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-263\"><img class=\" wp-image-263 \" title=\"Josh Ayers Waste\" alt=\"Josh Ayers Waste\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"150\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-4n\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262 \" title=\"Hannah Mae Guns & Run\" alt=\"Hannah Mae Guns & Run\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\" wp-image-261 \" title=\"Glen Spreen Dreams\" alt=\"Glen Spreen Dreams\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"150\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-260\"><img class=\"alignleft wp-image-260\" alt=\"BillyDavid_Magic_001\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"250\" height=\"150\" /></a>\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\" wp-image-264 \" alt=\"radarTower Need Someone\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:49:08','2013-10-02 03:49:08','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(274,1,'2013-10-02 03:51:27','2013-10-02 03:51:27','[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-263\"><img class=\" wp-image-263 \" title=\"Josh Ayers Waste\" alt=\"Josh Ayers Waste\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"150\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-4n\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262 \" title=\"Hannah Mae Guns & Run\" alt=\"Hannah Mae Guns & Run\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\" wp-image-261 \" title=\"Glen Spreen Dreams\" alt=\"Glen Spreen Dreams\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-260\"><img class=\"alignleft wp-image-260\" alt=\"BillyDavid_Magic_001\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"250\" height=\"140\" /></a>\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\" wp-image-264 \" alt=\"radarTower Need Someone\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:51:27','2013-10-02 03:51:27','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(277,1,'2013-10-02 03:55:17','2013-10-02 03:55:17','[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-263\"><img class=\" wp-image-263 \" title=\"Josh Ayers Waste\" alt=\"Josh Ayers Waste\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"150\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-4n\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262 \" title=\"Hannah Mae Guns & Run\" alt=\"Hannah Mae Guns & Run\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\" wp-image-261 \" title=\"Glen Spreen Dreams\" alt=\"Glen Spreen Dreams\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n \r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\" wp-image-260 alignleft\" alt=\"Billy David Magic\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"250\" height=\"140\" /></a>\r\n\r\n<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\" wp-image-264 \" alt=\"radarTower Need Someone\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a>radarTower Need Someone','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:55:17','2013-10-02 03:55:17','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(276,1,'2013-10-02 03:54:25','2013-10-02 03:54:25','[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-263\"><img class=\" wp-image-263 \" title=\"Josh Ayers Waste\" alt=\"Josh Ayers Waste\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"150\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-4n\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262 \" title=\"Hannah Mae Guns & Run\" alt=\"Hannah Mae Guns & Run\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\" wp-image-261 \" title=\"Glen Spreen Dreams\" alt=\"Glen Spreen Dreams\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]\r\n<div class=\"mceTemp\"><dl class=\"wp-caption alignleft\" id=\"attachment_260\" style=\"width: 260px;\"><dt class=\"wp-caption-dt\"><a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\" wp-image-260 \" alt=\"Billy David Magic\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Billy David Magic[/caption]\r\n\r\n<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\" wp-image-264 \" alt=\"radarTower Need Someone\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a></dt><dd class=\"wp-caption-dd\">radarTower Need Someone</dd></dl></div>','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:54:25','2013-10-02 03:54:25','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(1314,2,'2013-11-22 18:28:22','2013-11-23 00:28:22','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\"><img class=\"aligncenter size-full wp-image-1309\" alt=\"KatsTheory-Arlo-21\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\" width=\"1000\" height=\"860\" /></a>For a November night in northwest New Jersey, the weather could not have been better. A light jacket was enough to keep you warm, but not crowd you in your seat. Tonight you wanted to be comfortable for it was to be a night of songs and stories. Arlo Guthrie was in town, and we weren’t the only ones celebrating. With this year marking the 100<sup>th</sup> birthday of Arlo’s father, legendary folk singer and documenter of mid-century America, Woody Guthrie, Arlo was performing many of his dad’s compositions.\r\n\r\nThe Newton Theatre is a reclaimed from the edge of destruction movie theatre. Small and intimate, you get to share the experience with 604 new friends. Though we were lucky to be sitting up front, it’s hard to imagine a bad seat in the house.\r\n\r\nWith no opening act, Arlo and his three-piece band took their places onstage. With each member dressed in black, there would be no distraction; this night was about the music and the stories that inspired them. Arlo sat center stage next to his guitar rack with four beauties waiting to be picked.\r\n\r\nArlo began the evening speaking of Woody, and the joy he felt being able to spend nights such as this, singing the songs of his father, the songs of an America past, the songs of justice and injustice, the songs of his family. His voice is filled with more gravel than before, as if age and life’s journey has settled in. But every once in a while, the familiar sound of the Arlo from another time, punctuates a sentence of a story, and all those memories when you heard him say “Officer Obie” or “you remember Alice,” come flooding back. And you smile.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\"><img class=\"alignleft wp-image-1308\" alt=\"KatsTheory-Arlo-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\" width=\"800\" height=\"478\" /></a>Arlo Guthrie is a superb storyteller. Pulling out a beautiful acoustic Gibson out of the rack, Arlo began telling the story of Woody’s “Oklahoma Hills,” and you realize just how different the world was back then for a songwriter. You might not even know your song had been recorded until you heard it playing in a jukebox.\r\n\r\nOne of the wonderful attributes of the writing of Woody Guthrie was his ability to put down words explaining injustice, hard times, or the beauty of this country, in the most simple of words. Their simplicity making them universally relatable.\r\n\r\nGrowing up Guthrie meant you had the most interesting of extended families. Ramblin’ Jack Elliot, Huddie “Leadbelly” Ledbetter, Cisco Houston. Their songs and their stories were exquisite as told by this grown man who had known these legends when he was a child.\r\n\r\nThough storytelling and song is his forte, Arlo Guthrie can play a real pretty guitar, though this night he battled with keeping them in tune. As a little tweaking of the strings went on longer than expected, Arlo blamed it in the blue light overhead. The audience laughed as the lighting guy quickly changed the color. It didn’t help. It did make the evening even more real; this was no rock star with a technician handing him a perfectly tuned guitar for every song. This was just a musician sitting in someone’s living room trying to play his best for some new friends.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31.jpg\"><img class=\"alignleft size-medium wp-image-1310\" alt=\"KatsTheory-Arlo-31\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31-300x232.jpg\" width=\"300\" height=\"232\" /></a>Listening to the songs of Woody Guthrie is like riding on one of the filled-with-family-and-belongings trucks Steinbeck wrote about in <i>The Grapes of Wrath.</i> In fact Guthrie wrote a song condensing the 600 pages of <i>Wrath</i> into a song with twelve verses. This was something over which Steinbeck took umbrage. The combination of the songs and the perspective Arlo brings to them is a history lesson so interesting, you wish this was how it was taught in school. After an hour of enjoying the songs and tales of times long ago, Arlo and the band took a short break.\r\n\r\nComing back onstage the music catalog shifted to Arlo’s own. Now it wasn’t only Woody’s songs which were prefaced by a story. “Coming Into Los Angeles” began with a story of his late wife Jackie’s arrest for marijuana at the airport, after a long-forgotten gift from a fan to Arlo, was found in her bag.\r\n\r\nHe then talked about his early memories of Leadbelly in his home, and his search for Leadbelly’s grave somewhere in Louisiana. Leadbelly, who wrote among many others, “Midnight Special” and “Goodnight Irene,” was buried in Shreeveport, and they found the grave with guitar picks scattered over the tombstone. So he pulled out his guitar, sat there, and played some songs for the man he remembered as a two-year old. One of those songs “Alabama Bound,” was Arlo’s next selection.\r\n\r\nOne highlight of the evening was Steve Goodman’s “City Of New Orleans.” Lyrically, you can’t write much more of a poignant ballad. It is a testament to his songwriting that a song so moving, is about a train. The story of how Arlo and Steve met is priceless, making his loss at such a young age, even more lamentable.\r\n\r\nRelating how he first laid eyes on his future wife and singing “Highway In The Wind,” which he wrote for her, must be more than a little bittersweet, a little over a year since the death of the woman to whom he was married for forty-three years.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg\"><img class=\"alignright size-full wp-image-1311\" alt=\"KatsTheory-Arlo-11\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg\" width=\"1000\" height=\"667\" /></a>Getting close to the end of the show, Arlo pulled out arguably Woody’s most recognizable song, “This Land Is Your Land.” As we approach the Thanksgiving holiday, the imagery of the words was not lost on the audience. Considering there is not another song which embodies the greatness of this country more than this, it is a song that should be taught in every school in this country.\r\n\r\nOf course since we are so close to Thanksgiving, you can be sure there wasn’t a person in the crowd who wasn’t hoping to hear the familiar first few notes of “Alice’s Restaurant.” Arlo did not disappoint. As he began to play, the audience sang along to the beginning chorus. At this point Arlo said “You don’t think I’m really going to sing this whole freakin’ song do you?” And no, I don’t think we really did. And just that one chorus, while a tease, was enough of a taste to keep a smile on everyone’s face. He picked the melody while talking about what the song has meant to him and his family over the years… the good and the not so good.\r\n\r\nAs all of our storytellers get older, the danger of losing important parts of our past, grows. Arlo Guthrie not only lived some of the stories first-hand, he grew up surrounded by legends with their own stories to tell. Never miss a chance to hear them because you’ll never forget them once you do. And that keeps them alive.\r\n\r\nThis evening with Arlo Guthrie pickin’, singin’ and tellin’ stories was one of the most enjoyable nights I’ve ever spent in a music hall. It was an honor to hear him speak of his father, and all those who came before. And hopefully by writing about it, the stories keep going just a little longer.\r\n\r\n \r\n\r\n ','Arlo Guthrie at the Newton Theatre: A Night of Songs and Stories','','inherit','open','open','','1303-revision-v1','','','2013-11-22 18:28:22','2013-11-23 00:28:22','',1303,'http://www.earthhertzrecords.com/2013/11/1303-revision-v1/',0,'revision','',0),(278,1,'2013-10-02 03:55:57','2013-10-02 03:55:57','[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-263\"><img class=\" wp-image-263 \" title=\"Josh Ayers Waste\" alt=\"Josh Ayers Waste\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"150\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-4n\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262 \" title=\"Hannah Mae Guns & Run\" alt=\"Hannah Mae Guns & Run\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\" wp-image-261 \" title=\"Glen Spreen Dreams\" alt=\"Glen Spreen Dreams\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n \r\n<p style=\"text-align: center;\"><a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\"wp-image-260 aligncenter\" alt=\"Billy David Magic\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"250\" height=\"140\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 aligncenter\" alt=\"radarTower Need Someone\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a>radarTower Need Someone</p>','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:55:57','2013-10-02 03:55:57','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(280,1,'2013-10-02 03:59:00','2013-10-02 03:59:00','[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-263\"><img class=\" wp-image-263 \" title=\"Josh Ayers Waste\" alt=\"Josh Ayers Waste\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"150\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-4n\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\"wp-image-261 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_260\" align=\"alignleft\" width=\"250\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\"wp-image-260 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Billy David Magic[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\nradarTower Need Someone','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:59:00','2013-10-02 03:59:00','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(279,1,'2013-10-02 03:58:20','2013-10-02 03:58:20','[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-263\"><img class=\" wp-image-263 \" title=\"Josh Ayers Waste\" alt=\"Josh Ayers Waste\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"150\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-4n\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262 \" title=\"Hannah Mae Guns & Run\" alt=\"Hannah Mae Guns & Run\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\"wp-image-261 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_260\" align=\"alignleft\" width=\"250\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\"wp-image-260 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Billy David Magic[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\nradarTower Need Someone','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 03:58:20','2013-10-02 03:58:20','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(286,1,'2013-10-02 04:07:30','2013-10-02 04:07:30','<iframe src=\"//www.youtube.com/embed/yCuoOUG3iOc\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','VIDEOS: Hannah Mae','','inherit','open','open','','271-revision-v1','','','2013-10-02 04:07:30','2013-10-02 04:07:30','',271,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/271-revision-v1/',0,'revision','',0),(287,1,'2013-10-02 04:09:08','2013-10-02 04:09:08','[caption id=\"attachment_263\" align=\"alignleft\" ]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-263\"><img class=\" wp-image-263 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" ]<a href=\"http://wp.me/P3Wu0q-4n\" rel=\"attachment wp-att-262\"><img class=\" wp-image-262 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\"wp-image-261 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n \r\n\r\n[caption id=\"attachment_260\" align=\"alignleft\" width=\"250\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\"wp-image-260 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Billy David Magic[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\nradarTower Need Someone','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:09:08','2013-10-02 04:09:08','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(289,1,'2013-10-02 04:11:12','2013-10-02 04:11:12','[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-263\"><img class=\"wp-image-263\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"240\" height=\"140\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-4n\" rel=\"attachment wp-att-262\"><img class=\"wp-image-262\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\"wp-image-261\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"240\" height=\"140\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n\r\n[caption id=\"attachment_260\" align=\"alignleft\" width=\"250\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\"wp-image-260 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"240\" height=\"140\" /></a> Billy David Magic[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:11:12','2013-10-02 04:11:12','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(290,1,'2013-10-02 04:11:44','2013-10-02 04:11:44','[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-263\"><img class=\"wp-image-263\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"240\" height=\"140\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_262\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-4n\" rel=\"attachment wp-att-262\"><img class=\"wp-image-262\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/HannahMae_Guns_001-150x150.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae Guns & Run[/caption]\r\n\r\n[caption id=\"attachment_261\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-261\"><img class=\"wp-image-261\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/GlenSpreen_red_001-150x150.jpg\" width=\"240\" height=\"140\" /></a> Glen Spreen Dreams[/caption]\r\n\r\n\r\n[caption id=\"attachment_260\" align=\"alignleft\" width=\"250\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/videos/billydavid_magic_001/\" rel=\"attachment wp-att-260\"><img class=\"wp-image-260 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/BillyDavid_Magic_001-150x150.jpg\" width=\"240\" height=\"140\" /></a> Billy David Magic[/caption]\r\n\r\n','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:11:44','2013-10-02 04:11:44','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(669,1,'2013-10-11 20:14:03','2013-10-11 20:14:03','[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 20:14:03','2013-10-11 20:14:03','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(670,1,'2013-10-11 20:15:04','2013-10-11 20:15:04',' ','','','publish','open','open','','670','','','2014-03-28 10:20:25','2014-03-28 16:20:25','',0,'http://www.earthhertzrecords.com/?p=670',5,'nav_menu_item','',0),(675,1,'2013-10-11 20:22:12','2013-10-11 20:22:12','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/p3Wu0q-aI\"><img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers - Waste[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 20:22:12','2013-10-11 20:22:12','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(307,1,'2013-10-02 04:22:57','2013-10-02 04:22:57','\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:22:57','2013-10-02 04:22:57','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(293,1,'2013-10-02 04:12:54','2013-10-02 04:12:54','[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:12:54','2013-10-02 04:12:54','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(294,1,'2013-10-02 04:12:34','2013-10-02 04:12:34','[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:12:34','2013-10-02 04:12:34','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(295,1,'2013-10-02 04:13:03','2013-10-02 04:13:03','[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:13:03','2013-10-02 04:13:03','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(296,1,'2013-10-02 04:13:52','2013-10-02 04:13:52','[caption id=\"attachment_264\" align=\"alignleft\" width=\"275\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"275\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:13:52','2013-10-02 04:13:52','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(297,1,'2013-10-02 04:14:56','2013-10-02 04:14:56','[caption id=\"attachment_264\" align=\"alignleft\" width=\"272\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"272\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"272\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"272\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"272\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"272\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"272\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"272\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:14:56','2013-10-02 04:14:56','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(298,1,'2013-10-02 04:15:45','2013-10-02 04:15:45','[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:15:45','2013-10-02 04:15:45','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(673,1,'2013-10-11 20:21:02','2013-10-11 20:21:02','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /> Joshua Ayers - Waste[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 20:21:02','2013-10-11 20:21:02','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(302,1,'2013-10-02 04:19:23','2013-10-02 04:19:23','[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:19:23','2013-10-02 04:19:23','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(299,1,'2013-10-02 04:17:21','2013-10-02 04:17:21','[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-264\"><img class=\"wp-image-263\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Josh Ayers Waste[/caption]\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[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:17:21','2013-10-02 04:17:21','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(300,1,'2013-10-02 04:18:08','2013-10-02 04:18:08','[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-150x150.jpg\" width=\"250\" height=\"140\" /></a> Josh Ayers Waste[/caption]\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[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:18:08','2013-10-02 04:18:08','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(301,1,'2013-10-02 04:18:54','2013-10-02 04:18:54','[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> Josh Ayers Waste[/caption]\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[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"270\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:18:54','2013-10-02 04:18:54','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(303,1,'2013-10-02 04:19:49','2013-10-02 04:19:49','[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-264\"><img class=\"wp-image-263 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:19:49','2013-10-02 04:19:49','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(671,1,'2013-10-11 20:18:26','2013-10-11 20:18:26','','Josh Ayers Waste','','inherit','open','open','','joshayers_waste_001-2','','','2013-10-11 20:18:26','2013-10-11 20:18:26','',35,'http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg',0,'attachment','image/jpeg',0),(306,1,'2013-10-02 04:22:32','2013-10-02 04:22:32','[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:22:32','2013-10-02 04:22:32','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(304,1,'2013-10-02 04:21:28','2013-10-02 04:21:28','[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> Josh Ayers Waste[/caption]\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[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-264\"><img class=\"wp-image-263 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:21:28','2013-10-02 04:21:28','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(305,1,'2013-10-02 04:22:02','2013-10-02 04:22:02','[caption id=\"attachment_264\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-263\"><img class=\"wp-image-263\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> Josh Ayers Waste[/caption]\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[caption id=\"attachment_263\" align=\"alignleft\" width=\"250\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"attachment wp-att-264\"><img class=\"wp-image-263 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/JoshAyers_Waste_001-300x190.jpg\" width=\"250\" height=\"140\" /></a> Josh Ayers Waste[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-02 04:22:02','2013-10-02 04:22:02','',35,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/35-revision-v1/',0,'revision','',0),(318,1,'2013-10-02 14:33:45','2013-10-02 14:33:45','More music than thoughts allow for.','Show Reviews','Show Reviews','inherit','open','open','','concert-audience-small','','','2013-10-02 14:33:45','2013-10-02 14:33:45','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/concert-audience-small.jpg',0,'attachment','image/jpeg',0),(1337,2,'2013-11-26 16:58:09','2013-11-26 22:58:09','<span style=\"font-family: \'Times New Roman\'; font-size: large;\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\"><img class=\"alignleft size-full wp-image-1332\" alt=\"LindaRonstadt\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\" width=\"260\" height=\"391\" /></a></span>\r\n\r\nWhen I heard the news I cried.\r\n\r\nLinda Ronstadt was the first female singer to truly inspire me to sing. Her music - at once country, tinged with folk, and mixed with rock overtones and her voice - strong and throaty, powerful yet tender with a full range of nuances - was an inspiration, an elixir to soothe my youthful soul. From the beautiful harpsichord flavored \"Different Drum\" written by Monkees alum Michael Nesmith, to the defiant rock kiss off \"You\'re No Good\", Linda Ronstadt\'s music bridged genres to captivate audiences throughout her 40 year career.\r\n\r\nAnd then, just shy of releasing her memoir Linda Ronstadt Simple Dreams A Musical Memoir (Simon & Schuster) she announced to AARP that she has Parkinson\'s disease and can no longer sing, saying \"I can\'t sing a note.\" adding “I can’t sing at all,” matter-of-factly. “I’m truly not able. I can’t sing ‘Happy Birthday,’ really.” Parkinson\'s affects the ability to move and control the vocal chords - a critical function of singing.\r\n\r\nMy memories of Linda Ronstadt date back as far as I can remember, back to the days when I first started playing guitar at the age of eight, when my extremely supportive mother not only trudged through the rain at an outdoor concert venue to see Ronstadt in concert, but also took me weekly for lessons at a nearby house full of hippies, one of whom would accompany me on bass, singing harmonies to songs by Ronstadt and The Eagles, coaxing me to hit the high notes on \"Heat Wave\". I had the iconic Ronstadt poster in my room in homage to this almost other worldly model of womanhood and talent, and I spent hours in my room mimicking her vocal prowess as her records spun on my JC Penney turntable - my favorite of which was 1976\'s Hasten Down the Wind. The opening strains of that record still give me chills.\r\n\r\n \r\n<div><i><span style=\"font-family: \'Times New Roman\'; font-size: large;\">Save me...free me from my heart this time...</span></i></div>\r\n<span style=\"font-family: \'Times New Roman\'; font-size: large;\">\r\nJust like Ronstadt herself, it begins quietly and builds to a powerful and skillfully controlled crescendo of tuneful and emotional bliss. The mere thought that this songbird has been forever silenced brings a sadness that reminds this child of the 70s of the immense uniqueness of a musical era which will have no equal.</span>\r\n\r\nLinda Maria Ronstadt was born on July 15, 1946 in Tuscon, Arizona to Gilbert, a machinery merchant who ran The Ronstadt Co. and homemaker, Ruth Mary Ronstadt. Raised on a 10 acre ranch with three siblings - all of whom were musical; including Gilbert, who himself was a musician in mariachi bands. The family was of German and Mexican descent and together sang the traditional songs of their Mexican heritage.\r\n\r\nAt 18, Ronstadt headed to California at the suggestion of musical pal Bob Kimmel and together with him and Kenny Edwards, formed and sang lead in The Stone Poneys, which garnered the hit \"Different Drum\" and led to relationships with a slew of then unknown singers, musicians and songwriters and placed her at the forefront of a burgeoning California rock music scene, later to be crowned the Queen Of Rock - a distinction she did not at all embrace, saying that she felt rock music never defined her. And it didn\'t.\r\n\r\nIf you\'re expecting the book to be a kiss and tell, or a searing tell all concerning the main players of the time, you might be disappointed. Ronstadt stays true to her word; when she calls the book a musical memoir, she means it. The book recounts a rich and detailed musical legacy that lets both the music aficionado and the casual music lover glimpse into recording sessions, the formation of important relationships (yes, Glen Frey and Don Henley first met as members of Ronstadt\'s touring band and immediately formed what would become The Eagles.), chronicles life on the road and at least one epic all night jam session involving Keith Richards. But at its core, this is an overview of a brilliant career which spanned forty years and included some of the major artists of the day - many of whom continue to enjoy mainstream success. She recalls her collaborations with such musical luminaries as Jackson Browne, the Eagles, J.D. Souther, Warren Zevon, Chris Hillman, Gram Parsons, Neil Young, Frank Zappa, Emmylou Harris, Dolly Parton, Aaron Neville, and Nelson Riddle. She mentions touring early on in her career as an opener for The Doors and minces no words as to her opinion of front man Jim Morrison. She also chronicles her professional relationship with manager Peter Asher, whose understanding of business, music and performance proved crucial to the development and guidance of her illustrious careers.\r\n\r\nThe book mentions romantic relationships only in passing and although as a musician, I devoured the musical anecdotes and behind the scenes tales of studio and songwriting sessions, I admit to feeling a little gipped when it came to details of her personal life, of which there weren\'t many. Ronstadt recalls \"keeping company\" with then California governor Jerry Brown, and living with J.D. Souther, as well as mentions meeting and later being signed by David Geffen who formed Asylum Records, but makes no mention of Albert Brooks or George Lucas, and though she mentions a friendship with then up and coming comedian Steve Martin, she neglects to mention that they dated.\r\n\r\nThe omission of such details does nothing to detract from this engrossing and well written read. Ronstadt, who did not write her own songs, displays an impressive writing talent, articulate and especially knowledgable in her musical commentary.\r\n\r\nPersonal details are left mostly to those of her childhood, growing up in the Arizona desert with her family, which gives insight into her musical roots. Finished before her Parkinson\'s diagnosis was made public, the book makes no mention of her illness but instead, takes the reader on the journey from childhood all the way through the early days of California rock, to her time on Broadway in Pirates of Penzance, her foray into the Great American songbook with Nelson Riddle and his orchestra, her duets with Aaron Neville, collaborations with Emmylou Harris and Dolly Parton and the rediscovery of her Mexican musical roots toward the end of her career.\r\n\r\nSimple Dreams is not just an enjoyable read by one of music\'s most beloved songstresses, it is a seat on the tour bus at an unforgettable time in music.','Linda Ronstadt: Simple Dreams Made Musical Reality','','inherit','open','open','','1331-revision-v1','','','2013-11-26 16:58:09','2013-11-26 22:58:09','',1331,'http://www.earthhertzrecords.com/2013/11/1331-revision-v1/',0,'revision','',0),(321,1,'2013-10-02 14:49:53','2013-10-02 14:49:53','Book Reviews','Book Reviews','Book Reviews','inherit','open','open','','book-reviews-small','','','2013-10-02 14:49:53','2013-10-02 14:49:53','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/book-reviews-small.jpg',0,'attachment','image/jpeg',0),(322,1,'2013-10-02 14:49:50','2013-10-02 14:49:50','Music Reviews','Music Reviews','Music Reviews','inherit','open','open','','music-reviews-small','','','2013-10-02 14:49:50','2013-10-02 14:49:50','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/music-reviews-small.jpg',0,'attachment','image/jpeg',0),(323,1,'2013-10-02 14:49:56','2013-10-02 14:49:56','Show Reviews','Show Reviews','Show Reviews','inherit','open','open','','show-reviews-small','','','2013-10-02 14:49:56','2013-10-02 14:49:56','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/show-reviews-small.jpg',0,'attachment','image/jpeg',0),(364,1,'2013-10-02 16:42:35','2013-10-02 16:42:35','','music-reviewsl','','inherit','open','open','','music-reviewsl','','','2013-10-02 16:42:35','2013-10-02 16:42:35','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/music-reviewsl.jpg',0,'attachment','image/jpeg',0),(1336,2,'2013-11-26 16:57:50','2013-11-26 22:57:50','<span style=\"font-family: \'Times New Roman\'; font-size: large;\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\"><img class=\"alignleft size-full wp-image-1332\" alt=\"LindaRonstadt\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\" width=\"260\" height=\"391\" /></a></span>\r\n\r\nLinda Ronstadt was the first female singer to truly inspire me to sing. Her music - at once country, tinged with folk, and mixed with rock overtones and her voice - strong and throaty, powerful yet tender with a full range of nuances - was an inspiration, an elixir to soothe my youthful soul. From the beautiful harpsichord flavored \"Different Drum\" written by Monkees alum Michael Nesmith, to the defiant rock kiss off \"You\'re No Good\", Linda Ronstadt\'s music bridged genres to captivate audiences throughout her 40 year career.\r\n\r\nAnd then, just shy of releasing her memoir Linda Ronstadt Simple Dreams A Musical Memoir (Simon & Schuster) she announced to AARP that she has Parkinson\'s disease and can no longer sing, saying \"I can\'t sing a note.\" adding “I can’t sing at all,” matter-of-factly. “I’m truly not able. I can’t sing ‘Happy Birthday,’ really.” Parkinson\'s affects the ability to move and control the vocal chords - a critical function of singing.\r\n\r\nMy memories of Linda Ronstadt date back as far as I can remember, back to the days when I first started playing guitar at the age of eight, when my extremely supportive mother not only trudged through the rain at an outdoor concert venue to see Ronstadt in concert, but also took me weekly for lessons at a nearby house full of hippies, one of whom would accompany me on bass, singing harmonies to songs by Ronstadt and The Eagles, coaxing me to hit the high notes on \"Heat Wave\". I had the iconic Ronstadt poster in my room in homage to this almost other worldly model of womanhood and talent, and I spent hours in my room mimicking her vocal prowess as her records spun on my JC Penney turntable - my favorite of which was 1976\'s Hasten Down the Wind. The opening strains of that record still give me chills.\r\n\r\n \r\n<div><i><span style=\"font-family: \'Times New Roman\'; font-size: large;\">Save me...free me from my heart this time...</span></i></div>\r\n<span style=\"font-family: \'Times New Roman\'; font-size: large;\">\r\nJust like Ronstadt herself, it begins quietly and builds to a powerful and skillfully controlled crescendo of tuneful and emotional bliss. The mere thought that this songbird has been forever silenced brings a sadness that reminds this child of the 70s of the immense uniqueness of a musical era which will have no equal.</span>\r\n\r\nLinda Maria Ronstadt was born on July 15, 1946 in Tuscon, Arizona to Gilbert, a machinery merchant who ran The Ronstadt Co. and homemaker, Ruth Mary Ronstadt. Raised on a 10 acre ranch with three siblings - all of whom were musical; including Gilbert, who himself was a musician in mariachi bands. The family was of German and Mexican descent and together sang the traditional songs of their Mexican heritage.\r\n\r\nAt 18, Ronstadt headed to California at the suggestion of musical pal Bob Kimmel and together with him and Kenny Edwards, formed and sang lead in The Stone Poneys, which garnered the hit \"Different Drum\" and led to relationships with a slew of then unknown singers, musicians and songwriters and placed her at the forefront of a burgeoning California rock music scene, later to be crowned the Queen Of Rock - a distinction she did not at all embrace, saying that she felt rock music never defined her. And it didn\'t.\r\n\r\nIf you\'re expecting the book to be a kiss and tell, or a searing tell all concerning the main players of the time, you might be disappointed. Ronstadt stays true to her word; when she calls the book a musical memoir, she means it. The book recounts a rich and detailed musical legacy that lets both the music aficionado and the casual music lover glimpse into recording sessions, the formation of important relationships (yes, Glen Frey and Don Henley first met as members of Ronstadt\'s touring band and immediately formed what would become The Eagles.), chronicles life on the road and at least one epic all night jam session involving Keith Richards. But at its core, this is an overview of a brilliant career which spanned forty years and included some of the major artists of the day - many of whom continue to enjoy mainstream success. She recalls her collaborations with such musical luminaries as Jackson Browne, the Eagles, J.D. Souther, Warren Zevon, Chris Hillman, Gram Parsons, Neil Young, Frank Zappa, Emmylou Harris, Dolly Parton, Aaron Neville, and Nelson Riddle. She mentions touring early on in her career as an opener for The Doors and minces no words as to her opinion of front man Jim Morrison. She also chronicles her professional relationship with manager Peter Asher, whose understanding of business, music and performance proved crucial to the development and guidance of her illustrious careers.\r\n\r\nThe book mentions romantic relationships only in passing and although as a musician, I devoured the musical anecdotes and behind the scenes tales of studio and songwriting sessions, I admit to feeling a little gipped when it came to details of her personal life, of which there weren\'t many. Ronstadt recalls \"keeping company\" with then California governor Jerry Brown, and living with J.D. Souther, as well as mentions meeting and later being signed by David Geffen who formed Asylum Records, but makes no mention of Albert Brooks or George Lucas, and though she mentions a friendship with then up and coming comedian Steve Martin, she neglects to mention that they dated.\r\n\r\nThe omission of such details does nothing to detract from this engrossing and well written read. Ronstadt, who did not write her own songs, displays an impressive writing talent, articulate and especially knowledgable in her musical commentary.\r\n\r\nPersonal details are left mostly to those of her childhood, growing up in the Arizona desert with her family, which gives insight into her musical roots. Finished before her Parkinson\'s diagnosis was made public, the book makes no mention of her illness but instead, takes the reader on the journey from childhood all the way through the early days of California rock, to her time on Broadway in Pirates of Penzance, her foray into the Great American songbook with Nelson Riddle and his orchestra, her duets with Aaron Neville, collaborations with Emmylou Harris and Dolly Parton and the rediscovery of her Mexican musical roots toward the end of her career.\r\n\r\nSimple Dreams is not just an enjoyable read by one of music\'s most beloved songstresses, it is a seat on the tour bus at an unforgettable time in music.','Linda Ronstadt: Simple Dreams Made Musical Reality','','inherit','open','open','','1331-revision-v1','','','2013-11-26 16:57:50','2013-11-26 22:57:50','',1331,'http://www.earthhertzrecords.com/2013/11/1331-revision-v1/',0,'revision','',0),(371,1,'2013-10-02 16:51:34','2013-10-02 16:51:34','','book-reviewsl','','inherit','open','open','','book-reviewsl','','','2013-10-02 16:51:34','2013-10-02 16:51:34','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/book-reviewsl.jpg',0,'attachment','image/jpeg',0),(1335,2,'2013-11-26 16:57:20','2013-11-26 22:57:20','<span style=\"font-family: \'Times New Roman\'; font-size: large;\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\"><img class=\"alignleft size-full wp-image-1332\" alt=\"LindaRonstadt\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\" width=\"260\" height=\"391\" /></a>When I heard the news I cried.</span>\r\n\r\nLinda Ronstadt was the first female singer to truly inspire me to sing. Her music - at once country, tinged with folk, and mixed with rock overtones and her voice - strong and throaty, powerful yet tender with a full range of nuances - was an inspiration, an elixir to soothe my youthful soul. From the beautiful harpsichord flavored \"Different Drum\" written by Monkees alum Michael Nesmith, to the defiant rock kiss off \"You\'re No Good\", Linda Ronstadt\'s music bridged genres to captivate audiences throughout her 40 year career.\r\n\r\nAnd then, just shy of releasing her memoir Linda Ronstadt Simple Dreams A Musical Memoir (Simon & Schuster) she announced to AARP that she has Parkinson\'s disease and can no longer sing, saying \"I can\'t sing a note.\" adding “I can’t sing at all,” matter-of-factly. “I’m truly not able. I can’t sing ‘Happy Birthday,’ really.” Parkinson\'s affects the ability to move and control the vocal chords - a critical function of singing.\r\n\r\nMy memories of Linda Ronstadt date back as far as I can remember, back to the days when I first started playing guitar at the age of eight, when my extremely supportive mother not only trudged through the rain at an outdoor concert venue to see Ronstadt in concert, but also took me weekly for lessons at a nearby house full of hippies, one of whom would accompany me on bass, singing harmonies to songs by Ronstadt and The Eagles, coaxing me to hit the high notes on \"Heat Wave\". I had the iconic Ronstadt poster in my room in homage to this almost other worldly model of womanhood and talent, and I spent hours in my room mimicking her vocal prowess as her records spun on my JC Penney turntable - my favorite of which was 1976\'s Hasten Down the Wind. The opening strains of that record still give me chills.\r\n\r\n \r\n<div><i><span style=\"font-family: \'Times New Roman\'; font-size: large;\">Save me...free me from my heart this time...</span></i></div>\r\n<span style=\"font-family: \'Times New Roman\'; font-size: large;\">\r\nJust like Ronstadt herself, it begins quietly and builds to a powerful and skillfully controlled crescendo of tuneful and emotional bliss. The mere thought that this songbird has been forever silenced brings a sadness that reminds this child of the 70s of the immense uniqueness of a musical era which will have no equal.</span>\r\n\r\nLinda Maria Ronstadt was born on July 15, 1946 in Tuscon, Arizona to Gilbert, a machinery merchant who ran The Ronstadt Co. and homemaker, Ruth Mary Ronstadt. Raised on a 10 acre ranch with three siblings - all of whom were musical; including Gilbert, who himself was a musician in mariachi bands. The family was of German and Mexican descent and together sang the traditional songs of their Mexican heritage.\r\n\r\nAt 18, Ronstadt headed to California at the suggestion of musical pal Bob Kimmel and together with him and Kenny Edwards, formed and sang lead in The Stone Poneys, which garnered the hit \"Different Drum\" and led to relationships with a slew of then unknown singers, musicians and songwriters and placed her at the forefront of a burgeoning California rock music scene, later to be crowned the Queen Of Rock - a distinction she did not at all embrace, saying that she felt rock music never defined her. And it didn\'t.\r\n\r\nIf you\'re expecting the book to be a kiss and tell, or a searing tell all concerning the main players of the time, you might be disappointed. Ronstadt stays true to her word; when she calls the book a musical memoir, she means it. The book recounts a rich and detailed musical legacy that lets both the music aficionado and the casual music lover glimpse into recording sessions, the formation of important relationships (yes, Glen Frey and Don Henley first met as members of Ronstadt\'s touring band and immediately formed what would become The Eagles.), chronicles life on the road and at least one epic all night jam session involving Keith Richards. But at its core, this is an overview of a brilliant career which spanned forty years and included some of the major artists of the day - many of whom continue to enjoy mainstream success. She recalls her collaborations with such musical luminaries as Jackson Browne, the Eagles, J.D. Souther, Warren Zevon, Chris Hillman, Gram Parsons, Neil Young, Frank Zappa, Emmylou Harris, Dolly Parton, Aaron Neville, and Nelson Riddle. She mentions touring early on in her career as an opener for The Doors and minces no words as to her opinion of front man Jim Morrison. She also chronicles her professional relationship with manager Peter Asher, whose understanding of business, music and performance proved crucial to the development and guidance of her illustrious careers.\r\n\r\nThe book mentions romantic relationships only in passing and although as a musician, I devoured the musical anecdotes and behind the scenes tales of studio and songwriting sessions, I admit to feeling a little gipped when it came to details of her personal life, of which there weren\'t many. Ronstadt recalls \"keeping company\" with then California governor Jerry Brown, and living with J.D. Souther, as well as mentions meeting and later being signed by David Geffen who formed Asylum Records, but makes no mention of Albert Brooks or George Lucas, and though she mentions a friendship with then up and coming comedian Steve Martin, she neglects to mention that they dated.\r\n\r\nThe omission of such details does nothing to detract from this engrossing and well written read. Ronstadt, who did not write her own songs, displays an impressive writing talent, articulate and especially knowledgable in her musical commentary.\r\n\r\nPersonal details are left mostly to those of her childhood, growing up in the Arizona desert with her family, which gives insight into her musical roots. Finished before her Parkinson\'s diagnosis was made public, the book makes no mention of her illness but instead, takes the reader on the journey from childhood all the way through the early days of California rock, to her time on Broadway in Pirates of Penzance, her foray into the Great American songbook with Nelson Riddle and his orchestra, her duets with Aaron Neville, collaborations with Emmylou Harris and Dolly Parton and the rediscovery of her Mexican musical roots toward the end of her career.\r\n\r\nSimple Dreams is not just an enjoyable read by one of music\'s most beloved songstresses, it is a seat on the tour bus at an unforgettable time in music.','Linda Ronstadt: Simple Dreams Made Musical Reality','','inherit','open','open','','1331-revision-v1','','','2013-11-26 16:57:20','2013-11-26 22:57:20','',1331,'http://www.earthhertzrecords.com/2013/11/1331-revision-v1/',0,'revision','',0),(337,1,'2013-10-02 16:03:31','2013-10-02 16:03:31','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\na:link {\n color: #000000;\n}\n\na:visited {\n color: #777777;\n}\n\na:hover {\n color: #ff0000;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}\n\na:link {\n background-color: #ffffff;\n}\n */','safecss','Parabola','publish','open','open','','safecss','','','2013-10-14 20:03:22','2013-10-14 20:03:22','',0,'http://0332c8e.netsolhost.com/WordPress/?safecss=safecss',0,'safecss','',0),(340,1,'2013-10-02 16:05:45','2013-10-02 16:05:45','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-02 16:05:45','2013-10-02 16:05:45','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/337-revision-v1/',0,'revision','',0),(339,1,'2013-10-02 16:05:42','2013-10-02 16:05:42','@namespace viewMapMenu \"com.threegis.nx.viewmap.menu.component.*\";\n\n/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-02 16:05:42','2013-10-02 16:05:42','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/337-revision-v1/',0,'revision','',0),(342,1,'2013-10-02 16:13:12','2013-10-02 16:13:12','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.roundedDatagrid {\n border-width: 1px;\n border-left-style: outset;\n text-align: center;\n height: 150px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-02 16:13:12','2013-10-02 16:13:12','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/337-revision-v1/',0,'revision','',0),(344,1,'2013-10-02 16:13:24','2013-10-02 16:13:24','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageLink {\n border-width: 1px;\n border-left-style: outset;\n text-align: center;\n height: 150px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-02 16:13:24','2013-10-02 16:13:24','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/337-revision-v1/',0,'revision','',0),(343,1,'2013-10-02 16:13:11','2013-10-02 16:13:11','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\nstyle=\"text-align: center; height:150;\"\n \n \n.roundedDatagrid {\n border-width: 1px;\n border-left-style: outset;\n text-align: center;\n height: 150px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-02 16:13:11','2013-10-02 16:13:11','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/337-revision-v1/',0,'revision','',0),(348,1,'2013-10-02 16:16:59','2013-10-02 16:16:59','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-02 16:16:59','2013-10-02 16:16:59','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/337-revision-v1/',0,'revision','',0),(347,1,'2013-10-02 16:15:10','2013-10-02 16:15:10','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageLink {\n border-width: 1px;\n border-left-style: outset;\n text-align: center;\n height: 150px;\n width: 650px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-02 16:15:10','2013-10-02 16:15:10','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/337-revision-v1/',0,'revision','',0),(1334,2,'2013-11-26 16:56:25','2013-11-26 22:56:25','<span style=\"font-family: \'Times New Roman\'; font-size: large;\">When I heard the news I cried.</span>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\"><img class=\"alignleft size-full wp-image-1332\" alt=\"LindaRonstadt\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\" width=\"260\" height=\"391\" /></a>Linda Ronstadt was the first female singer to truly inspire me to sing. Her music - at once country, tinged with folk, and mixed with rock overtones and her voice - strong and throaty, powerful yet tender with a full range of nuances - was an inspiration, an elixir to soothe my youthful soul. From the beautiful harpsichord flavored \"Different Drum\" written by Monkees alum Michael Nesmith, to the defiant rock kiss off \"You\'re No Good\", Linda Ronstadt\'s music bridged genres to captivate audiences throughout her 40 year career.\r\n\r\nAnd then, just shy of releasing her memoir Linda Ronstadt Simple Dreams A Musical Memoir (Simon & Schuster) she announced to AARP that she has Parkinson\'s disease and can no longer sing, saying \"I can\'t sing a note.\" adding “I can’t sing at all,” matter-of-factly. “I’m truly not able. I can’t sing ‘Happy Birthday,’ really.” Parkinson\'s affects the ability to move and control the vocal chords - a critical function of singing.\r\n\r\nMy memories of Linda Ronstadt date back as far as I can remember, back to the days when I first started playing guitar at the age of eight, when my extremely supportive mother not only trudged through the rain at an outdoor concert venue to see Ronstadt in concert, but also took me weekly for lessons at a nearby house full of hippies, one of whom would accompany me on bass, singing harmonies to songs by Ronstadt and The Eagles, coaxing me to hit the high notes on \"Heat Wave\". I had the iconic Ronstadt poster in my room in homage to this almost other worldly model of womanhood and talent, and I spent hours in my room mimicking her vocal prowess as her records spun on my JC Penney turntable - my favorite of which was 1976\'s Hasten Down the Wind. The opening strains of that record still give me chills.\r\n\r\n \r\n<div><i><span style=\"font-family: \'Times New Roman\'; font-size: large;\">Save me...free me from my heart this time...</span></i></div>\r\n<span style=\"font-family: \'Times New Roman\'; font-size: large;\">\r\nJust like Ronstadt herself, it begins quietly and builds to a powerful and skillfully controlled crescendo of tuneful and emotional bliss. The mere thought that this songbird has been forever silenced brings a sadness that reminds this child of the 70s of the immense uniqueness of a musical era which will have no equal.</span>\r\n\r\nLinda Maria Ronstadt was born on July 15, 1946 in Tuscon, Arizona to Gilbert, a machinery merchant who ran The Ronstadt Co. and homemaker, Ruth Mary Ronstadt. Raised on a 10 acre ranch with three siblings - all of whom were musical; including Gilbert, who himself was a musician in mariachi bands. The family was of German and Mexican descent and together sang the traditional songs of their Mexican heritage.\r\n\r\nAt 18, Ronstadt headed to California at the suggestion of musical pal Bob Kimmel and together with him and Kenny Edwards, formed and sang lead in The Stone Poneys, which garnered the hit \"Different Drum\" and led to relationships with a slew of then unknown singers, musicians and songwriters and placed her at the forefront of a burgeoning California rock music scene, later to be crowned the Queen Of Rock - a distinction she did not at all embrace, saying that she felt rock music never defined her. And it didn\'t.\r\n\r\nIf you\'re expecting the book to be a kiss and tell, or a searing tell all concerning the main players of the time, you might be disappointed. Ronstadt stays true to her word; when she calls the book a musical memoir, she means it. The book recounts a rich and detailed musical legacy that lets both the music aficionado and the casual music lover glimpse into recording sessions, the formation of important relationships (yes, Glen Frey and Don Henley first met as members of Ronstadt\'s touring band and immediately formed what would become The Eagles.), chronicles life on the road and at least one epic all night jam session involving Keith Richards. But at its core, this is an overview of a brilliant career which spanned forty years and included some of the major artists of the day - many of whom continue to enjoy mainstream success. She recalls her collaborations with such musical luminaries as Jackson Browne, the Eagles, J.D. Souther, Warren Zevon, Chris Hillman, Gram Parsons, Neil Young, Frank Zappa, Emmylou Harris, Dolly Parton, Aaron Neville, and Nelson Riddle. She mentions touring early on in her career as an opener for The Doors and minces no words as to her opinion of front man Jim Morrison. She also chronicles her professional relationship with manager Peter Asher, whose understanding of business, music and performance proved crucial to the development and guidance of her illustrious careers.\r\n\r\nThe book mentions romantic relationships only in passing and although as a musician, I devoured the musical anecdotes and behind the scenes tales of studio and songwriting sessions, I admit to feeling a little gipped when it came to details of her personal life, of which there weren\'t many. Ronstadt recalls \"keeping company\" with then California governor Jerry Brown, and living with J.D. Souther, as well as mentions meeting and later being signed by David Geffen who formed Asylum Records, but makes no mention of Albert Brooks or George Lucas, and though she mentions a friendship with then up and coming comedian Steve Martin, she neglects to mention that they dated.\r\n\r\nThe omission of such details does nothing to detract from this engrossing and well written read. Ronstadt, who did not write her own songs, displays an impressive writing talent, articulate and especially knowledgable in her musical commentary.\r\n\r\nPersonal details are left mostly to those of her childhood, growing up in the Arizona desert with her family, which gives insight into her musical roots. Finished before her Parkinson\'s diagnosis was made public, the book makes no mention of her illness but instead, takes the reader on the journey from childhood all the way through the early days of California rock, to her time on Broadway in Pirates of Penzance, her foray into the Great American songbook with Nelson Riddle and his orchestra, her duets with Aaron Neville, collaborations with Emmylou Harris and Dolly Parton and the rediscovery of her Mexican musical roots toward the end of her career.\r\n\r\nSimple Dreams is not just an enjoyable read by one of music\'s most beloved songstresses, it is a seat on the tour bus at an unforgettable time in music.','Linda Ronstadt: Simple Dreams Made Musical Reality','','inherit','open','open','','1331-revision-v1','','','2013-11-26 16:56:25','2013-11-26 22:56:25','',1331,'http://www.earthhertzrecords.com/2013/11/1331-revision-v1/',0,'revision','',0),(338,1,'2013-10-02 16:04:35','2013-10-02 16:04:35','@namespace viewMapMenu \"com.threegis.nx.viewmap.menu.component.*\";\n\n/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\nNeptuneTG-CW - Flex 4\n*/\n/*\nComments:::::\n************\n- Keep the classes in alphabetical order! (global is the only exception)\n**************\n*/\n/*************\n- Keep the classes in alphabetical order! (global is the only exception)\n**************/\nglobal {\n color: #000000;\n font-family: Arial, Helvetica;\n font-size: 12px;\n}\n\ns|Application {\n}\n\ns|Button {\n}\n\ns|CheckBox {\n}\n\ns|ComboBox {\n/* skin-class: ClassReference(\"flex.utils.spark.resize.ResizableComboBoxSkin\"); */\n}\n\ns|Group {\n/* skin-class: ClassReference(\"flex.utils.spark.resize.ResizableScrollerSkin\"); */\n}\n\ns|HScrollBar {\n/* skin-class: ClassReference(\"assets.skins.neptunetg.HorizontalScrollbar1\");*/\n}\n\n/*\ns|HSlider\n{\n skin-class: ClassReference(\"assets.skins.neptunetg.HorizontalSlider1\");\n}\n*/\ns|Label.formTitle {\n color: #de6401;\n}\n\ns|List {\n}\n\n/*\ns|List.defaultList\n{\n skin-class: ClassReference(\"assets.skins.neptunetg.DataList1\");\n}\n*/\n/*\ns|List.menuList\n{\n skin-class: ClassReference(\"assets.skins.neptunetg.DataList2\");\n}\n*/\ns|Panel {\n}\n\n/*\ns|PanelContent\n{\n focus-color: #e55302;\n skin-class: ClassReference(\"assets.skins.neptunetg.PanelContent\");\n}\n*/\ns|RadioButton {\n}\n\ns|RichText {\n color: #000000;\n font-size: 12px;\n font-weight: normal;\n text-align: left;\n vertical-align: middle;\n}\n\ns|RichEditableText {\n color: #4a4b4e;\n font-size: 13px;\n font-weight: normal;\n text-align: left;\n}\n\n/*\n\ns|Scroller {\nskin-class: ClassReference(\"flex.utils.spark.resize.ResizableScrollerSkin\");\n} \n*/\ns|TextInput {\n color: #4a4b4e;\n font-size: 13px;\n font-weight: normal;\n text-align: left;\n}\n\n/*\ns|ToggleButton\n{\n focus-color: #e55302;\n skin-class: ClassReference(\"assets.skins.neptunetg.ToggleButton1\");\n}\n*/\ns|TitleWindow {\n/* skin-class: ClassReference(\"assets.skins.neptunetg.VerticalScroller1\"); */\n}\n\ns|VScrollBar {\n/* skin-class: ClassReference(\"assets.skins.neptunetg.VerticalScrollbar5\");*/\n}\n\n/*\ns|VSlider\n{\n skin-class: ClassReference(\"assets.skins.neptunetg.VerticalSlider1\");\n}\n*/\nmx|Alert {\n border-color: #333333;\n border-style: solid;\n}\n\n.alertButtons {\n border-color: #000000;\n font-family: Arial;\n font-size: 12px;\n font-weight: bold;\n}\n\n.alertTitle {\n color: #ff0000;\n font-family: Arial;\n font-size: 14px;\n font-weight: bold;\n}\n\nmx|ComboBox {\n background-color: #ffffff;\n border: 5px;\n border-width: 4px;\n color: #505050;\n font-size: 12px;\n font-weight: bold;\n margin: 0;\n padding-bottom: 5px;\n/*LTR*/\n text-align: left;\n vertical-align: middle;\n}\n\nmx|Form {\n background-color: #ffffff;\n border-color: #ffffff;\n border-style: solid;\n color: #494a4e;\n font-family: Arial;\n font-size: 13px;\n font-weight: bold;\n}\n\nmx|FormItem {\n border-color: #ffffff;\n color: #494a4e;\n font-family: Arial;\n font-size: 13px;\n font-weight: normal;\n}\n\nmx|MenuBar {\n color: #cdced1;\n font-size: 14px;\n font-weight: bold;\n}\n\nmx|Panel {\n background-color: #ffffff;\n border-color: #c0c0c0;\n background-color: #ffffff;\n}\n\n.panelTitle {\n background-color: #ffffff;\n color: #272727;\n font-size: 12px;\n font-weight: bold;\n text-align: left;\n vertical-align: middle;\n}\n\n.mdiCanvas1 {\n background-color: #ffffff;\n border-color: #ff0000;\n font-size: 12px;\n font-weight: normal;\n text-align: left;\n vertical-align: middle;\n}\n\n.mdiCanvasLabel {\n color: #de6401;\n border-color: #f1881b;\n font-size: 18px;\n font-weight: bold;\n text-align: left;\n vertical-align: middle;\n}\n\n.mxLabelStyle {\n color: #de6401;\n background-color: #ffffff;\n border-color: #f1881b;\n font-size: 18px;\n font-weight: bold;\n text-align: left;\n vertical-align: middle;\n}\n\n.datagridHeader {\n color: #f1881b;\n font-style: bold;\n font-weight: bold;\n height: auto;\n font-size: 14px;\n line-height: normal;\n text-align: center;\n vertical-align: middle;\n}\n\n.DateField {\n}\n\n.panelLabel {\n color: #de6401;\n border-color: #f1881b;\n font-size: 18px;\n font-weight: bold;\n padding-left: 0;\n text-align: left;\n vertical-align: middle;\n}\n\n.panelPopupLabel {\n color: #de6401;\n border-color: #f1881b;\n font-size: 18px;\n font-weight: bold;\n padding-left: 0;\n text-align: left;\n vertical-align: middle;\n}\n\n.messageStyle {\n color: #181818;\n font-family: Arial;\n font-weight: normal;\n text-align: left;\n/*LTR*/\n}\n\n.myMessageStyle {\n color: #000000;\n font-style: bold;\n}\n\n.RichEditableTextNormal {\n color: #4A4B4E;\n font-size: 13px;\n font-weight: normal;\n text-align: left;\n vertical-align: middle;\n}\n\n.RichEditableTextBold {\n color: #4a4b4e;\n font-size: 13px;\n font-weight: bold;\n text-align: left;\n vertical-align: middle;\n}\n\n.roundedDatagrid {\n border-width: 1px;\n border-left-style: outset;\n}\n\n.TimeStepper {\n}\n\n/* CSS file: CustomWhiteStyle.css */\n/* CSS file: CustomWhiteStyle.css */\n/* CSS file: CustomWhiteStyle.css */\n/* CSS file: CustomWhiteStyle.css */\n/* CSS file: CustomWhiteStyle.css */\n/* CSS file: CustomWhiteStyle.css */\n.NxModule {\n background-size: auto;\n background-color: #ffffff;\n}\n\ncommonTool.ToolCanvas.OverStyle {\n background-color: #ffffff;\n border-color: #aaaaaa;\n border-style: solid;\n}\n\n.FullStyle {\n/* Redundant in Nx but needed in Mapper since OverStyle has white text. */\n color: #000000;\n}\n\nmx|AdvancedDataGrid {\n}\n\n/* This section is Non-Standard. Alphebetizing has been suspended for Button Skinning */\nmx|Button.formItemMinimizeButton {\n}\n\n/* This section is Non-Standard. Alphebetizing has been suspended for Button Skinning */\nmx|Button.navigationToolBarBackExtentButton {\n icon: Embed(source=\"assets/images/3gis/back_extent_icon_15x15.png\");\n}\n\n/* This section is Non-Standard. Alphebetizing has been suspended for Button Skinning */\nmx|Button.navigationToolBarForwardExtentButton {\n icon: Embed(source=\"assets/images/3gis/forward_extent_icon_15x15.png\");\n}\n\n/* This section is Non-Standard. Alphebetizing has been suspended for Button Skinning */\nmx|Button.navigationToolBarZoomInButton {\n icon: Embed(source=\"assets/images/3gis/zoom_in_icon_15x15.png\");\n}\n\n/* This section is Non-Standard. Alphebetizing has been suspended for Button Skinning */\nmx|Button.navigationToolBarZoomOutButton {\n icon: Embed(source=\"assets/images/3gis/zoom_out_icon_15x15.png\");\n}\n\n/* This section is Non-Standard. Alphebetizing has been suspended for Button Skinning */\nmx|Button.navigationToolBarPanButton {\n icon: Embed(source=\"assets/images/3gis/pan_icon_18x18.png\");\n}\n\n/* This section is Non-Standard. Alphebetizing has been suspended for Button Skinning */\nmx|Button.close {\n}\n\n/* This section is Non-Standard. Alphebetizing has been suspended for Button Skinning */\nmx|Button.minimize {\n}\n\n/* This section is Non-Standard. Alphebetizing has been suspended for Button Skinning */\nmx|Button.setting {\n}\n\n/* This section is Non-Standard. Alphebetizing has been suspended for Button Skinning */\nmx|Button.home {\n}\n\nmx|Button.redButton {\n}\n\nmx|Button.blueButton {\n}\n\nmx|Canvas.copyrightLogo {\n background-image: Embed(source=\"assets/images/3gis/threegis_logo_400x129.png\");\n}\n\nmx|Canvas.logo {\n background-image: Embed(source=\"assets/images/3gis/Nx_logo_100x100.png\");\n}\n\nmx|Canvas.thundercats {\n background-image: Embed(source=\"assets/images/3gis/tc.png\");\n}\n\nmx|Canvas.mapServiceIcon {\n background-image: Embed(source=\"assets/images/3gis/dark_crystal_globe_48x48.png\");\n}\n\nmx|Canvas.mapServiceLabelBackground {\n}\n\nmx|Canvas.serverIcon {\n background-image: Embed(source=\"assets/images/3gis/server_48_48.png\");\n}\n\nmx|CheckBox.layerSelector {\n color: #e55302;\n}\n\n/* Style used to make the formItem labels appear on the left of the form\n Used in Chemical Plume bundle\n */\n/* \nmx|formItemLabelLeft \n{ \n color: #000000;\n text-align: left; \n}\n\n*/\nmx|HBox {\n color: #000000;\n}\n\nmx|HBox.ToolShelf {\n}\n\nmx|HBox.StatusShelf {\n}\n\nmx|HBox.StatusBar {\n}\n\nmx|HScrollBar {\n}\n\nmx|Label.formItemLabel {\n font-weight: bold;\n}\n\nmx|Label.layerManagerLabel {\n color: #ffffff;\n}\n\nmx|Label.mapServiceLabel {\n color: #000000;\n}\n\nmx|Label.toolbarOver {\n color: #000000;\n}\n\nviewMapDisplay|LayerSelectorItemRenderer {\n}\n\nmx|List {\n border: 5px;\n color: #505050;\n margin: 0;\n font-size: 12px;\n font-weight: bold;\n vertical-align: middle;\n background-color: #ffffff;\n border-width: 4px;\n padding-bottom: 5px;\n text-align: left;\n}\n\n/*mx|Menu\n{\n checkIcon: Embed(source=\"assets/images/3gis/commit_icon_20x20.png\");\n}*/\ncommonPerspective|NxFormItem {\n color: black;\n background-color: #f0f0f0;\n}\n\n/*\nmx|TabNavigator\n{\n color: #000000;\n}*/\nviewMapMenu|TableOfContentsAddPreconfiguredLayerStateButton {\n}\n\nviewMapMenu|TableOfContentsLayerListStateButton {\n}\n\nviewMapMenu|TableOfContentsLayerItemRenderer {\n}\n\nviewMapMenu|TableOfContentsLayerItemRenderer.ArcGISDynamicMapServiceLayer {\n}\n\nviewMapMenu|TableOfContentsLayerItemRenderer.GraphicsLayer {\n}\n\nviewMapMenu|TableOfContentsLayerItemRenderer.ArcGISTiledMapServiceLayer {\n}\n\nviewMapMenu|TableOfContentsLayerItemRenderer.WMSMapServiceLayer {\n}\n\nmx|TileList.mapServiceSelectorCanvas {\n}\n\nmx|ToolTip {\n color: #000000;\n font-weight: bold;\n}\n\n/*\nmx|Tree\n{\nbackgroundColor: #EFEFEF;\ncornerRadius: 5;\ndropShadowEnabled: true;\nrollOverColor: #0066ff;\nselectionColor: #0033ff;\nshadowDirection: right;\ntextRollOverColor: #ffffff;\ntextSelectedColor: #ffffff;\n}\n\nmx|VBox\n{\n color: #000000;\n}*/\nmx|VBox.menuArrowBox {\n background-image: Embed(\"assets/images/3gis/black_rounded_background.png\",scaleGridTop=\"10\",scaleGridBottom=\"62\",scaleGridLeft=\"10\",scaleGridRight=\"288\");\n background-size: 100%;\n padding-bottom: 2px;\n padding-left: 2px;\n padding-right: 2px;\n padding-top: 2px;\n}\n\n/*\nmx|VScrollBar\n{\n trackColors: #ffffff, #cccccc;\n}\n*/\n/*\n.myComboBoxDropDowns\n{\n background-color: #ffffff;\n color: #888888;\n}\n*/\n.selectedDarkBackground {\n color: #ffffff;\n background-color: #333333;\n}\n\n.symbolDisplay {\n background-color: #dddddd;\n border-style: solid;\n}\n\n.unselectedDarkBackground {\n color: #ffffff;\n background-color: #777777;\n}\n\ncommonTool|Balloon {\n}\n\n.balloonTitle {\n color: #000000;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-02 16:04:35','2013-10-02 16:04:35','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/02/337-revision-v1/',0,'revision','',0),(1332,2,'2013-11-26 16:55:52','2013-11-26 22:55:52','','LindaRonstadt','','inherit','open','open','','lindaronstadt','','','2013-11-26 16:55:52','2013-11-26 22:55:52','',1331,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg',0,'attachment','image/jpeg',0),(1333,2,'2013-11-26 16:56:17','2013-11-26 22:56:17','<span style=\"font-family: \'Times New Roman\'; font-size: large;\">When I heard the news I cried.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\"><img class=\"alignleft size-full wp-image-1332\" alt=\"LindaRonstadt\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\" width=\"260\" height=\"391\" /></a>Linda Ronstadt was the first female singer to truly inspire me to sing. Her music - at once country, tinged with folk, and mixed with rock overtones and her voice - strong and throaty, powerful yet tender with a full range of nuances - was an inspiration, an elixir to soothe my youthful soul. From the beautiful harpsichord flavored \"Different Drum\" written by Monkees alum Michael Nesmith, to the defiant rock kiss off \"You\'re No Good\", Linda Ronstadt\'s music bridged genres to captivate audiences throughout her 40 year career.\r\n\r\nAnd then, just shy of releasing her memoir Linda Ronstadt Simple Dreams A Musical Memoir (Simon & Schuster) she announced to AARP that she has Parkinson\'s disease and can no longer sing, saying \"I can\'t sing a note.\" adding “I can’t sing at all,” matter-of-factly. “I’m truly not able. I can’t sing ‘Happy Birthday,’ really.” Parkinson\'s affects the ability to move and control the vocal chords - a critical function of singing.\r\n\r\nMy memories of Linda Ronstadt date back as far as I can remember, back to the days when I first started playing guitar at the age of eight, when my extremely supportive mother not only trudged through the rain at an outdoor concert venue to see Ronstadt in concert, but also took me weekly for lessons at a nearby house full of hippies, one of whom would accompany me on bass, singing harmonies to songs by Ronstadt and The Eagles, coaxing me to hit the high notes on \"Heat Wave\". I had the iconic Ronstadt poster in my room in homage to this almost other worldly model of womanhood and talent, and I spent hours in my room mimicking her vocal prowess as her records spun on my JC Penney turntable - my favorite of which was 1976\'s Hasten Down the Wind. The opening strains of that record still give me chills.\r\n\r\n</span>\r\n<div><i><span style=\"font-family: \'Times New Roman\'; font-size: large;\">Save me...free me from my heart this time...</span></i></div>\r\n<span style=\"font-family: \'Times New Roman\'; font-size: large;\">\r\nJust like Ronstadt herself, it begins quietly and builds to a powerful and skillfully controlled crescendo of tuneful and emotional bliss. The mere thought that this songbird has been forever silenced brings a sadness that reminds this child of the 70s of the immense uniqueness of a musical era which will have no equal.\r\n\r\nLinda Maria Ronstadt was born on July 15, 1946 in Tuscon, Arizona to Gilbert, a machinery merchant who ran The Ronstadt Co. and homemaker, Ruth Mary Ronstadt. Raised on a 10 acre ranch with three siblings - all of whom were musical; including Gilbert, who himself was a musician in mariachi bands. The family was of German and Mexican descent and together sang the traditional songs of their Mexican heritage.\r\n\r\nAt 18, Ronstadt headed to California at the suggestion of musical pal Bob Kimmel and together with him and Kenny Edwards, formed and sang lead in The Stone Poneys, which garnered the hit \"Different Drum\" and led to relationships with a slew of then unknown singers, musicians and songwriters and placed her at the forefront of a burgeoning California rock music scene, later to be crowned the Queen Of Rock - a distinction she did not at all embrace, saying that she felt rock music never defined her. And it didn\'t.\r\n\r\nIf you\'re expecting the book to be a kiss and tell, or a searing tell all concerning the main players of the time, you might be disappointed. Ronstadt stays true to her word; when she calls the book a musical memoir, she means it. The book recounts a rich and detailed musical legacy that lets both the music aficionado and the casual music lover glimpse into recording sessions, the formation of important relationships (yes, Glen Frey and Don Henley first met as members of Ronstadt\'s touring band and immediately formed what would become The Eagles.), chronicles life on the road and at least one epic all night jam session involving Keith Richards. But at its core, this is an overview of a brilliant career which spanned forty years and included some of the major artists of the day - many of whom continue to enjoy mainstream success. She recalls her collaborations with such musical luminaries as Jackson Browne, the Eagles, J.D. Souther, Warren Zevon, Chris Hillman, Gram Parsons, Neil Young, Frank Zappa, Emmylou Harris, Dolly Parton, Aaron Neville, and Nelson Riddle. She mentions touring early on in her career as an opener for The Doors and minces no words as to her opinion of front man Jim Morrison. She also chronicles her professional relationship with manager Peter Asher, whose understanding of business, music and performance proved crucial to the development and guidance of her illustrious careers.\r\n\r\nThe book mentions romantic relationships only in passing and although as a musician, I devoured the musical anecdotes and behind the scenes tales of studio and songwriting sessions, I admit to feeling a little gipped when it came to details of her personal life, of which there weren\'t many. Ronstadt recalls \"keeping company\" with then California governor Jerry Brown, and living with J.D. Souther, as well as mentions meeting and later being signed by David Geffen who formed Asylum Records, but makes no mention of Albert Brooks or George Lucas, and though she mentions a friendship with then up and coming comedian Steve Martin, she neglects to mention that they dated.\r\n\r\nThe omission of such details does nothing to detract from this engrossing and well written read. Ronstadt, who did not write her own songs, displays an impressive writing talent, articulate and especially knowledgable in her musical commentary.\r\n\r\nPersonal details are left mostly to those of her childhood, growing up in the Arizona desert with her family, which gives insight into her musical roots. Finished before her Parkinson\'s diagnosis was made public, the book makes no mention of her illness but instead, takes the reader on the journey from childhood all the way through the early days of California rock, to her time on Broadway in Pirates of Penzance, her foray into the Great American songbook with Nelson Riddle and his orchestra, her duets with Aaron Neville, collaborations with Emmylou Harris and Dolly Parton and the rediscovery of her Mexican musical roots toward the end of her career.\r\n\r\nSimple Dreams is not just an enjoyable read by one of music\'s most beloved songstresses, it is a seat on the tour bus at an unforgettable time in music.</span>','Linda Ronstadt: Simple Dreams Made Musical Reality','','inherit','open','open','','1331-revision-v1','','','2013-11-26 16:56:17','2013-11-26 22:56:17','',1331,'http://www.earthhertzrecords.com/2013/11/1331-revision-v1/',0,'revision','',0),(369,1,'2013-10-02 16:47:24','2013-10-02 16:47:24','','showreviewsl','','inherit','open','open','','showreviewsl','','','2013-10-02 16:47:24','2013-10-02 16:47:24','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/showreviewsl.jpg',0,'attachment','image/jpeg',0),(1423,2,'2013-12-17 07:36:01','2013-12-17 13:36:01','The Rock and Roll Hall of Fame has just announced its inductees for its class of 2014. They are: Nirvana, Kiss, Peter Gabriel, Cat Stevens, Linda Rondstadt, and Hall and Oates. Additionally, the E Street Band will be given an award for musical excellence, and Beatles manager Brian Epstein and Rolling Stones original manager Andrew Loog Oldham will receive the Ahmet Ertegun Award for non-performers.\r\n\r\nWhile there hasn\'t been a year in quite awhile where I haven\'t been upset by an exclusion, or more frequently, an inclusion in the nominees, honestly, I can\'t really complain about those nominated this year. They have all paid their dues, and withstood the test of time. And as each new generation takes the place of the one before, comparisons are made. Are these new bands worthy, do they have the talent and all that it takes to think about consideration 25-30 years down the road?\r\n\r\nIn a recent <a href=\"http://www.riffraf.net/2013/12/indie-spotlight-applegate-nance-3/\">interview published on Riffraf Magazine</a>, Earth Hertz artists Applegate Nance were asked who in the world of music they have been compared to. It seems since they started playing in Nashville, the comparison they received most often was to new Rock and Roll Hall of Fame inductees, Hall and Oates. Not a bad comparison at all. If you listen to their songwriting, their harmonies, the overall feeling from the duo, it\'s all there. While their tunes are catchy and fun, there is no mistaking the quality of their work.\r\n\r\nHall and Oates will be inducted on April 10th, 2014. Their career speaks for itself. New music is being made everyday, and whether or not their careers will be considered for the Hall somewhere down the road, it\'s time for groups like Applegate Nance to let their music do the talking. We\'re already starting to hear the whispers.\r\n\r\nTake a listen here on the <a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\">Applegate Nance page</a>. And watch the video for their first single \"Hey California.\"\r\n\r\n \r\n\r\n \r\n\r\n ','The Rock and Roll Hall of Fame Class of 2014: Worthy or Not?','','inherit','open','open','','1422-revision-v1','','','2013-12-17 07:36:01','2013-12-17 13:36:01','',1422,'http://www.earthhertzrecords.com/2013/12/1422-revision-v1/',0,'revision','',0),(378,1,'2013-10-02 18:13:21','2013-10-02 18:13:21','','music-reviewsl','','inherit','open','open','','music-reviewsl-2','','','2013-10-02 18:13:21','2013-10-02 18:13:21','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/music-reviewsl1.jpg',0,'attachment','image/jpeg',0),(1051,1,'2013-10-22 05:14:07','2013-10-22 05:14:07',' ','','','publish','open','open','','1051','','','2014-03-28 10:20:25','2014-03-28 16:20:25','',0,'http://www.earthhertzrecords.com/?p=1051',2,'nav_menu_item','',0),(1327,1,'2013-11-22 21:44:07','2013-11-23 03:44:07','<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/XmYVbybpWuo\" frameborder=\"0\" allowfullscreen></iframe>','Applegate Nance','','inherit','open','open','','1318-revision-v1','','','2013-11-22 21:44:07','2013-11-23 03:44:07','',1318,'http://www.earthhertzrecords.com/2013/11/1318-revision-v1/',0,'revision','',0),(1325,1,'2013-11-22 20:07:08','2013-11-23 02:07:08','<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/XmYVbybpWuo\" frameborder=\"0\" allowfullscreen></iframe>','Applegate Nance','','inherit','open','open','','1318-revision-v1','','','2013-11-22 20:07:08','2013-11-23 02:07:08','',1318,'http://www.earthhertzrecords.com/2013/11/1318-revision-v1/',0,'revision','',0),(1326,1,'2013-11-22 20:07:49','2013-11-23 02:07:49','<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/XmYVbybpWuo\" autoplay=\"1\" frameborder=\"0\" allowfullscreen></iframe>','Applegate Nance','','inherit','open','open','','1318-revision-v1','','','2013-11-22 20:07:49','2013-11-23 02:07:49','',1318,'http://www.earthhertzrecords.com/2013/11/1318-revision-v1/',0,'revision','',0),(1318,1,'2013-11-22 19:54:41','2013-11-23 01:54:41','<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/Ql8vvDGth7w\" frameborder=\"0\" allowfullscreen></iframe>','Applegate Nance','','publish','open','open','','applegate-nance-hey-california','','','2013-12-04 13:20:49','2013-12-04 19:20:49','',35,'http://www.earthhertzrecords.com/?page_id=1318',0,'page','',2),(1319,1,'2013-11-22 19:54:41','2013-11-23 01:54:41','<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/XmYVbybpWuo\" frameborder=\"0\" allowfullscreen></iframe>','Applegate Nance Hey California','','inherit','open','open','','1318-revision-v1','','','2013-11-22 19:54:41','2013-11-23 01:54:41','',1318,'http://www.earthhertzrecords.com/2013/11/1318-revision-v1/',0,'revision','',0),(1320,1,'2013-11-22 20:03:14','2013-11-23 02:03:14','','Applegate Nance Hey California','','inherit','open','open','','applegatenance_heycalifornia_001','','','2013-11-22 20:03:14','2013-11-23 02:03:14','',35,'http://www.earthhertzrecords.com/wp-content/uploads/2013/09/ApplegateNance_Heycalifornia_001.jpg',0,'attachment','image/jpeg',0),(1321,1,'2013-12-11 16:04:04','2013-12-11 22:04:04','bbb\n\n[caption id=\"attachment_173\" align=\"alignnone\" width=\"560\"]<img class=\" wp-image-173 \" alt=\"Applegate Nance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/1002907_10200864656471494_1994384480_n.jpg\" width=\"560\" height=\"327\" /> Applegate Nance - [/caption]\n\n[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> Matt Guertin\'s radarTower[/caption]\n\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/joshua-ayers\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\n\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\n\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/glen-spreen/\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\n\n ','VIDEOS','','inherit','open','open','','35-autosave-v1','','','2013-12-11 16:04:04','2013-12-11 22:04:04','',35,'http://www.earthhertzrecords.com/2013/11/35-autosave-v1/',0,'revision','',0),(383,2,'2013-10-02 20:37:26','2013-10-02 20:37:26','','KatsTheory-Wonderland-3','','inherit','open','open','','katstheory-wonderland-3','','','2013-10-02 20:37:26','2013-10-02 20:37:26','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-3.jpg',0,'attachment','image/jpeg',0),(401,2,'2013-10-03 11:56:55','2013-10-03 11:56:55','','KatsTheory-BethHart-1','','inherit','open','open','','katstheory-bethhart-1','','','2013-10-03 11:56:55','2013-10-03 11:56:55','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-BethHart-1.jpg',0,'attachment','image/jpeg',0),(384,2,'2013-10-02 20:38:33','2013-10-02 20:38:33','','KatsTheory-Wonderland-4','','inherit','open','open','','katstheory-wonderland-4','','','2013-10-02 20:38:33','2013-10-02 20:38:33','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-4.jpg',0,'attachment','image/jpeg',0),(400,2,'2013-10-03 11:54:13','2013-10-03 11:54:13','','Bangbangboomboom','','inherit','open','open','','bangbangboomboom','','','2013-10-03 11:54:13','2013-10-03 11:54:13','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Bangbangboomboom.jpg',0,'attachment','image/jpeg',0),(386,2,'2013-10-02 20:41:25','2013-10-02 20:41:25','','KatsTheory-Wonderland-7','','inherit','open','open','','katstheory-wonderland-7','','','2013-10-02 20:41:25','2013-10-02 20:41:25','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-7.jpg',0,'attachment','image/jpeg',0),(387,2,'2013-10-02 20:43:04','2013-10-02 20:43:04','','KatsTheory-Wonderland-16','','inherit','open','open','','katstheory-wonderland-16','','','2013-10-02 20:43:04','2013-10-02 20:43:04','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-16.jpg',0,'attachment','image/jpeg',0),(1317,2,'2013-11-22 19:23:38','2013-11-23 01:23:38','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\"><img class=\"aligncenter size-full wp-image-1309\" alt=\"KatsTheory-Arlo-21\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\" width=\"1000\" height=\"860\" /></a>For a November night in northwest New Jersey, the weather could not have been better. A light jacket was enough to keep you warm, but not crowd you in your seat. Tonight you wanted to be comfortable for it was to be a night of songs and stories. Arlo Guthrie was in town, and we weren’t the only ones celebrating. With this year marking the 100<sup>th</sup> birthday of Arlo’s father, legendary folk singer and documenter of mid-century America, Woody Guthrie, Arlo was performing many of his dad’s compositions.\r\n\r\nThe Newton Theatre is a reclaimed from the edge of destruction movie theatre. Small and intimate, you get to share the experience with 604 new friends. Though we were lucky to be sitting up front, it’s hard to imagine a bad seat in the house.\r\n\r\nWith no opening act, Arlo and his three-piece band took their places onstage. With each member dressed in black, there would be no distraction; this night was about the music and the stories that inspired it. Arlo sat center stage next to his guitar rack with four beauties waiting to be picked.\r\n\r\nArlo began the evening speaking of Woody, and the joy he felt being able to spend nights such as this, singing the songs of his father, the songs of an America past, the songs of justice and injustice, the songs of his family. His voice is filled with more gravel than before, as if age and life’s journey has settled in. But every once in a while, the familiar sound of the Arlo from another time, punctuates a sentence of a story, and all those memories when you heard him say “Officer Obie” or “you remember Alice,” come flooding back. And you smile.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\"><img class=\"alignleft wp-image-1308\" alt=\"KatsTheory-Arlo-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\" width=\"800\" height=\"478\" /></a>Arlo Guthrie is a superb storyteller. Pulling a beautiful acoustic Gibson out of the rack, Arlo began telling the story of Woody’s “Oklahoma Hills,” and you realize just how different the world was back then for a songwriter. You might not even know your song had been recorded until you heard it playing in a jukebox.\r\n\r\nOne of the wonderful attributes of the writing of Woody Guthrie was his ability to put down words explaining injustice, hard times, or the beauty of this country, in the most simple of words. Their simplicity making them universally relatable.\r\n\r\nGrowing up Guthrie meant you had the most interesting of extended families. Ramblin’ Jack Elliot, Huddie “Leadbelly” Ledbetter, Cisco Houston to name a few, were household regulars. Their songs and their stories were exquisite as told by this grown man who had known these legends when he was a child.\r\n\r\nThough storytelling and song is his forte, Arlo Guthrie can play a real pretty guitar, though this night he battled with keeping them in tune. As a little tweaking of the strings went on longer than expected, Arlo blamed it 0n the blue light overhead. The audience laughed as the lighting guy quickly changed the color. It didn’t help, but it did make the evening even more real; this was no rock star with a technician handing him a perfectly tuned guitar for every song. This was just a musician sitting in someone’s living room trying to play his best for some new friends.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31.jpg\"><img class=\"alignleft size-medium wp-image-1310\" alt=\"KatsTheory-Arlo-31\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31-300x232.jpg\" width=\"300\" height=\"232\" /></a>Listening to the songs of Woody Guthrie is like riding on one of the filled-with-family-and-belongings trucks Steinbeck wrote about in <i>The Grapes of Wrath.</i> In fact Guthrie wrote a song condensing the 600 pages of <i>Wrath</i> into a song with twelve verses. This was something over which Steinbeck took umbrage. The combination of the songs and the perspective Arlo brings to them is a history lesson so interesting, you wish this was how it was taught in school. After an hour of enjoying the songs and tales of times long ago, Arlo and the band took a short break.\r\n\r\nComing back onstage the music catalog shifted to Arlo’s own. Now it wasn’t only Woody’s songs which were prefaced by a story. “Coming Into Los Angeles” began with a story of his late wife Jackie’s arrest for marijuana at the airport, after a long-forgotten gift from a fan to Arlo, was found in her bag.\r\n\r\nHe then talked about his early memories of Leadbelly in his home, and his search for Leadbelly’s grave somewhere in Louisiana. Leadbelly, who wrote among many others, “Midnight Special” and “Goodnight Irene,” was buried in Shreeveport, and they found the grave with guitar picks scattered over the tombstone. So he pulled out his guitar, sat there, and played some songs for the man he remembered as a two-year old. One of those songs “Alabama Bound,” was Arlo’s next selection.\r\n\r\nOne highlight of the evening was Steve Goodman’s “City Of New Orleans.” Lyrically, you can’t write much more of a poignant ballad. It is a testament to his songwriting that a song so moving, is about a train. The story of how Arlo and Steve met is priceless, making his loss at such a young age, even more lamentable.\r\n\r\nRelating how he first laid eyes on his future wife and singing “Highway In The Wind,” which he wrote for her, must be more than a little bittersweet, a little over a year since the death of the woman to whom he was married for forty-three years.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg\"><img class=\"alignright size-full wp-image-1311\" alt=\"KatsTheory-Arlo-11\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg\" width=\"1000\" height=\"667\" /></a>Getting close to the end of the show, Arlo pulled out arguably Woody’s most recognizable song, “This Land Is Your Land.” As we approach the Thanksgiving holiday, the imagery of the words was not lost on the audience. Considering there is not another song which embodies the greatness of this country more than this, it is a song that should be taught in every school in this country.\r\n\r\nOf course since we are so close to Thanksgiving, you can be sure there wasn’t a person in the crowd who wasn’t hoping to hear the familiar first few notes of “Alice’s Restaurant.” Arlo did not disappoint. As he began to play, the audience sang along to the beginning chorus. At this point Arlo said “You don’t think I’m really going to sing this whole freakin’ song do you?” And no, I don’t think we really did. And just that one chorus, while a tease, was enough of a taste to keep a smile on everyone’s face. He picked the melody while talking about what the song has meant to him and his family over the years… the good and the not so good.\r\n\r\nAs all of our storytellers get older, the danger of losing important parts of our past, grows. Arlo Guthrie not only lived some of the stories first-hand, he grew up surrounded by legends with their own stories to tell. Never miss a chance to hear them because you’ll never forget them once you do. And that keeps them alive.\r\n\r\nThis evening with Arlo Guthrie pickin’, singin’ and tellin’ stories was one of the most enjoyable nights I’ve ever spent in a music hall. It was an honor to hear him speak of his father, and all those who came before. And hopefully by writing about it, the stories keep going just a little longer.\r\n\r\n \r\n\r\n ','Arlo Guthrie at the Newton Theatre: A Night of Songs and Stories','','inherit','open','open','','1303-revision-v1','','','2013-11-22 19:23:38','2013-11-23 01:23:38','',1303,'http://www.earthhertzrecords.com/2013/11/1303-revision-v1/',0,'revision','',0),(393,2,'2013-10-03 01:17:54','2013-10-03 01:17:54','','apple-1','','inherit','open','open','','apple-1','','','2013-10-03 01:17:54','2013-10-03 01:17:54','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/apple-1.jpg',0,'attachment','image/jpeg',0),(394,2,'2013-10-03 01:17:58','2013-10-03 01:17:58','','apple-4','','inherit','open','open','','apple-4','','','2013-10-03 01:17:58','2013-10-03 01:17:58','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/apple-4.jpg',0,'attachment','image/jpeg',0),(395,2,'2013-10-03 01:18:37','2013-10-03 01:18:37','','apple-3','','inherit','open','open','','apple-3','','','2013-10-03 01:18:37','2013-10-03 01:18:37','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/apple-3.jpg',0,'attachment','image/jpeg',0),(1296,1,'2013-11-20 12:12:31','2013-11-20 18:12:31','[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> Matt Guertin\'s radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/joshua-ayers\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/glen-spreen/\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\r\n\r\n[caption id=\"attachment_711\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/the-billy-david-band/\"><img class=\" wp-image-711 \" title=\"Billy David\" alt=\"Billy David\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/BillyDavid_Magic_0011.jpg\" width=\"560\" height=\"327\" /></a> Billy David[/caption]\r\n\r\n \r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-11-20 12:12:31','2013-11-20 18:12:31','',35,'http://www.earthhertzrecords.com/2013/11/35-revision-v1/',0,'revision','',0),(1297,1,'2013-11-20 12:13:54','2013-11-20 18:13:54','<strong><a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200.jpg\"><img class=\"alignleft wp-image-491\" alt=\"mattguertin_200\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/mattguertin_200.jpg\" /></a></strong>\r\n\r\n<strong>Matt Guertin</strong> is both the creative and driving force behind <strong>radarTower</strong>. Their first album has just been released through Earth Hertz Records, and the first single \"Need Someone,\" is creating some buzz. I had the chance to speak with Matt just before its release.\r\n\r\n<strong>Give me a little of your background and your early musical influences?</strong>\r\n\r\n<strong></strong>I’m from Valley City, North Dakota, on the eastern side of North Dakota. We’re a pretty small town. I grew up listening to a lot of the stuff my dad did; old blues artists like Robert Johnson and Muddy Waters. And stuff like Stevie Ray Vaughn and Bob Dylan, they were a big part of my songwriting. And definitely The Beatles.\r\n\r\n<strong>How did you get into songwriting?</strong>\r\n\r\nThe way I got into that was in 4<sup>th</sup> grade I met this kid Matt in class and he’d invite me over. His dad taught me how to play guitar on this 1962 vintage Jaguar. It was the first guitar I ever played. The first song he taught me was “Wild Thing,” so me and Matt would jam downstairs in the basement after school. Then Matt started getting projects as a bass player, so I was like “what am I gonna do?” So in fifth grade I wrote my first song. I didn’t want to learn other people’s songs, I wanted to create my own thing.\r\n\r\n<strong>How would you describe your album, <i>Mathias Meets The World?</i></strong>\r\n\r\nI would definitely describe it as rock with a lot of different influences. It’s really hard to pigeonhole, because on the album, there’s a song for everybody. There’s acoustic guitar and piano on “Time Will Tell,” and there’s “Give Me A Sign” where it’s almost grungy vocals with Led Zeppelin style drum sound. Then there are songs leaning toward country. I would say it’s rootsy. It’s definitely rock-alternative rock.\r\n\r\n<strong>Tell me about the first single “Need Someone.”</strong>\r\n\r\nThe way I wrote that song was, I was home and my friend Curtis was over and we were just hanging out when I started playing this riff. The I started singing just what was on my mind and that was it. I was thinking about a girl and if you need someone... you need someone. I just played it and sang it and thought it was cool. So I put my phone recorder on. That’s what I do when I write; I usually sing it and play it at the same time. Improvise it. If I like it, I record it and revise it a bit. It really didn’t need much; it’s a very honest song.\r\n\r\n<strong>What are you looking for going into the future?</strong>\r\n\r\nNo matter what goes on, I’m going to try to stick to the roots in what I sing about, what I play about. I’m going to try to hold true to that. I just want to play live. I don’t care where it is, I just want to play for people. I want people to be interested in my music. This is my life’s work.\r\n\r\nInterview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@KatsTheory</a>','Five Questions with Matt Guertin of radarTower','','inherit','open','open','','495-revision-v1','','','2013-11-20 12:13:54','2013-11-20 18:13:54','',495,'http://www.earthhertzrecords.com/2013/11/495-revision-v1/',0,'revision','',0),(1299,1,'2013-11-20 12:17:26','2013-11-20 18:17:26','<p style=\"text-align: center;\"><a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-3.jpg\"><img class=\"aligncenter wp-image-383\" alt=\"KatsTheory-Wonderland-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Wonderland-3-1024x682.jpg\" /></a>As the final show in The 5th Annual Hudson Square Music & Wine Festival at City Winery in New York City, <a href=\"http://carolynwonderland.com/\">Carolyn Wonderland</a> was the perfect choice to end the free concert series for another year. Held outdoors in the rear of the Manhattan venue, the gates opened at the end of the workday, creating a sweet and stress-free way to start the evening.</p>\nWhile it seems Carolyn Wonderland has an endless tour schedule, her trips to New York City are to be taken as small gifts to treasure, because her singing and style of blues are exactly that, a treasure. Originally from Houston, her home is now Austin, where she is heavily involved in the music community.\n\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-4.jpg\"><img class=\"alignleft wp-image-384\" alt=\"KatsTheory-Wonderland-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Wonderland-4-200x300.jpg\" /></a>As the temperature ebbed slightly, the humidity did not. Wonderland, dressed in black with boots, guitar strap and hair, all in burgundy, took the weather in stride, as she proceeded to heat things up musically. Opening the show with “Come Together,” a song she co-wrote with Ruthie Foster, Wonderland offered a taste both vocally and musically of what was to come. With a voice that’s a little Janis Joplin, a little Marsha Ball, a little Susan Tedeschi and a whole lot of powerful, Wonderland vocals are unique and at the same time familiar, as she belts out the blues.\n\nThroughout the set Wonderland mixed in her own music with that of other musicians, much of it friends and fellow musicians from her home state, careful to give credit on each song to the writer. Gently accepting applause from the crowd with a “thank you kindly,” her southern manners softened the rough edg es of a NYC workday.\n\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-7.jpg\"><img class=\"alignright wp-image-386\" alt=\"KatsTheory-Wonderland-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Wonderland-7-300x200.jpg\" /></a>A little finger pickin’ led the way into “Two Trains,” with tight backing from Rob Hooper on drums and Cole El-Saleh on keyboards and key-bass. Wonderland’s set list was a nice mixture of high, low, fast, and slow numbers, keeping the crowd engaged throughout.\n\nAfter a few words about her home state’s great music and bad politics, the band launched into a passionate cover of Alice Cooper’s “Only Women Bleed.” She was then joined onstage by fellow blues singer Shelley King for “Money In The Game.” Wonderland then started making a few eclectic choices, sampling a little Los Lobos then going to The Band’s “Don’t Do It,” to Joplin’s “What Good Can Drinking Do.” Coming to the end of the show was “Palace Of The King,” a song written in honor of the late, great bluesman Freddie King.\n\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-16.jpg\"><img class=\"alignleft size-medium wp-image-387\" alt=\"KatsTheory-Wonderland-16\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-16-200x300.jpg\" width=\"200\" height=\"300\" /></a>If you know Carolyn Wonderland, you know she has been known to pull out a trumpet and play. The only question was whether she would on this particular evening. As the first few notes of “Walk On” were played, the odds seemed to say yes.KatsTheory-Wonderland-16 Switching effortlessly from a blistering guitar to the trumpet, Wonderland kicked up the heat another level, and closed out a memorable performance.\n\nSome artists could easily have mailed in their performance for a show like this; early evening show, hot and humid, and a non-paying crowd. Instead, the Carolyn Wonderland Band just blasted it out of the park. They are a hard working three-piece band with full sound, and a band leader with incredible vocals, guitar work and personality to match.\n\nTexas blues at its best; Carolyn Wonderful.\n\nReview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@katstheory</a>\n\nArticle first published in OurVinyl.com as <a href=\"http://ourvinyl.com/carolyn-wonderland-nyc-concert-review/\">CAROLYN WONDERLAND @ NYC – CONCERT REVIEW</a>','Carolyn Wonderland @ NYC Winery','','inherit','open','open','','427-autosave-v1','','','2013-11-20 12:17:26','2013-11-20 18:17:26','',427,'http://www.earthhertzrecords.com/2013/11/427-autosave-v1/',0,'revision','',0),(402,2,'2013-10-03 11:58:59','2013-10-03 11:58:59','','bang-bang-boom-boom-beth-hart','','inherit','open','open','','bang-bang-boom-boom-beth-hart','','','2013-10-03 11:58:59','2013-10-03 11:58:59','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/bang-bang-boom-boom-beth-hart.jpg',0,'attachment','image/jpeg',0),(403,2,'2013-10-03 12:00:22','2013-10-03 12:00:22','','KatsTheory-BethHart-3','','inherit','open','open','','katstheory-bethhart-3','','','2013-10-03 12:00:22','2013-10-03 12:00:22','',0,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-BethHart-3.jpg',0,'attachment','image/jpeg',0),(410,1,'2013-09-18 16:26:01','2013-09-18 16:26:01','Joshua D. Ayers brings more than his record producing skills to the table. A multi-instrumentalist, Josh is also a talented singer-songwriter. Originally from South Carolina, Josh’s love of music brought him first to Nashville, and now to the Knoxville TN area.\r\n\r\nUsing his background in record engineering, Josh learned the business, and eventually was offered a weekly radio show, on WHAY 98.3, where he showcases new artists. Using his eye for talent, and his enjoyment of working with other musicians, Josh will be producing some exceptional artists for Earth Hertz Records.\r\nWaste QuickTime\r\n\r\n<object style=\"width: 580px; height: 420px;\" classid=\"clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" width=\"580\" height=\"420\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0\"><param name=\"autoplay\" value=\"false\" /><param name=\"enablejavascript\" value=\"true\" /><param name=\"playeveryframe\" value=\"true\" /><param name=\"scale\" value=\"tofit\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed style=\"width: 580px; height: 420px;\" type=\"video/quicktime\" width=\"580\" height=\"420\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" scale=\"tofit\" playeveryframe=\"true\" enablejavascript=\"true\" autoplay=\"false\"></embed></object>\r\n\r\nWaste Media Player\r\n\r\n<object id=\"josh1\" style=\"width: 580px; height: 420px;\" classid=\"clsid:6bf52a52-394a-11d3-b153-00c04f79faa6\" width=\"580\" height=\"420\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\"><param name=\"autostart\" value=\"false\" /><param name=\"enabled\" value=\"true\" /><param name=\"windowlessvideo\" value=\"true\" /><param name=\"baseurl\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><param name=\"captioningid\" value=\"josh1\" /><param name=\"name\" value=\"josh1\" /><param name=\"url\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><param name=\"align\" value=\"top\" /><param name=\"bgcolor\" value=\"#000000\" /><param name=\"src\" value=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" /><embed id=\"josh1\" style=\"width: 580px; height: 420px;\" type=\"application/x-mplayer2\" width=\"580\" height=\"420\" src=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" bgcolor=\"#000000\" align=\"top\" url=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" name=\"josh1\" captioningid=\"josh1\" baseurl=\"https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste_2013_08_23.mp4\" windowlessvideo=\"true\" enabled=\"true\" autostart=\"false\"></embed></object>','Joshua D. Ayers Project \"Waste\"','','inherit','open','open','','3-revision-v1','','','2013-09-18 16:26:01','2013-09-18 16:26:01','',3,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/3-revision-v1/',0,'revision','',0),(1316,2,'2013-11-24 17:58:20','2013-11-24 23:58:20','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\"><img class=\"aligncenter size-full wp-image-1309\" alt=\"KatsTheory-Arlo-21\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\" width=\"1000\" height=\"860\" /></a>For a November night in northwest New Jersey, the weather could not have been better. A light jacket was enough to keep you warm, but not crowd you in your seat. Tonight you wanted to be comfortable for it was to be a night of songs and stories. Arlo Guthrie was in town, and we weren’t the only ones celebrating. With this year marking the 100<sup>th</sup> birthday of Arlo’s father, legendary folk singer and documenter of mid-century America, Woody Guthrie, Arlo was performing many of his dad’s compositions.\n\nThe Newton Theatre is a reclaimed from the edge of destruction movie theatre. Small and intimate, you get to share the experience with 604 new friends. Though we were lucky to be sitting up front, it’s hard to imagine a bad seat in the house.\n\nWith no opening act, Arlo and his three-piece band took their places onstage. With each member dressed in black, there would be no distraction; this night was about the music and the stories that inspired it. Arlo sat center stage next to his guitar rack with four beauties waiting to be picked.\n\nArlo began the evening speaking of Woody, and the joy he felt being able to spend nights such as this, singing the songs of his father, the songs of an America past, the songs of justice and injustice, the songs of his family. His voice is filled with more gravel than before, as if age and life’s journey has settled in. But every once in a while, the familiar sound of the Arlo from another time, punctuates a sentence of a story, and all those memories when you heard him say “Officer Obie” or “you remember Alice,” come flooding back. And you smile.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\"><img class=\"alignleft wp-image-1308\" alt=\"KatsTheory-Arlo-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\" width=\"800\" height=\"478\" /></a>Arlo Guthrie is a superb storyteller. Pulling a beautiful acoustic Gibson out of the rack, Arlo began telling the story of Woody’s “Oklahoma Hills,” and you realize just how different the world was back then for a songwriter. You might not even know your song had been recorded until you heard it playing in a jukebox.\n\nOne of the wonderful attributes of the writing of Woody Guthrie was his ability to put down words explaining injustice, hard times, or the beauty of this country, in the most simple of words. Their simplicity making them universally relatable.\n\nGrowing up Guthrie meant you had the most interesting of extended families. Ramblin’ Jack Elliot, Huddie “Leadbelly” Ledbetter, Cisco Houston to name a few, were household regulars. Their songs and their stories were exquisite as told by this grown man who had known these legends when he was a child.\n\nThough storytelling and song is his forte, Arlo Guthrie can play a real pretty guitar, though this night he battled with keeping them in tune. As a little tweaking of the strings went on longer than expected, Arlo blamed it on the blue light overhead. The audience laughed as the lighting guy quickly changed the color. It didn’t help, but it did make the evening even more real; this was no rock star with a technician handing him a perfectly tuned guitar for every song. This was just a musician sitting in someone’s living room trying to play his best for some new friends.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31.jpg\"><img class=\"alignleft size-medium wp-image-1310\" alt=\"KatsTheory-Arlo-31\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31-300x232.jpg\" width=\"300\" height=\"232\" /></a>Listening to the songs of Woody Guthrie is like riding on one of the filled-with-family-and-belongings trucks Steinbeck wrote about in <i>The Grapes of Wrath.</i> In fact Guthrie wrote a song condensing the 600 pages of <i>Wrath</i> into a song with twelve verses. This was something over which Steinbeck took umbrage. The combination of the songs and the perspective Arlo brings to them is a history lesson so interesting, you wish this was how it was taught in school. After an hour of enjoying the songs and tales of times long ago, Arlo and the band took a short break.\n\nComing back onstage the music catalog shifted to Arlo’s own. Now it wasn’t only Woody’s songs which were prefaced by a story. “Coming Into Los Angeles” began with a story of his late wife Jackie’s arrest for marijuana at the airport, after a long-forgotten gift from a fan to Arlo, was found in her bag.\n\nHe then talked about his early memories of Leadbelly in his home, and his search for Leadbelly’s grave somewhere in Louisiana. Leadbelly, who wrote among many others, “Midnight Special” and “Goodnight Irene,” was buried in Shreeveport, and they found the grave with guitar picks scattered over the tombstone. So he pulled out his guitar, sat there, and played some songs for the man he remembered as a two-year old. One of those songs “Alabama Bound,” was Arlo’s next selection.\n\nOne highlight of the evening was Steve Goodman’s “City Of New Orleans.” Lyrically, you can’t write much more of a poignant ballad. It is a testament to his songwriting that a song so moving, is about a train. The story of how Arlo and Steve met is priceless, making his loss at such a young age, even more lamentable.\n\nRelating how he first laid eyes on his future wife and singing “Highway In The Wind,” which he wrote for her, must be more than a little bittersweet, a little over a year since the death of the woman to whom he was married for forty-three years.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg\"><img class=\"alignright size-full wp-image-1311\" alt=\"KatsTheory-Arlo-11\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg\" width=\"1000\" height=\"667\" /></a>Getting close to the end of the show, Arlo pulled out arguably Woody’s most recognizable song, “This Land Is Your Land.” As we approach the Thanksgiving holiday, the imagery of the words was not lost on the audience. Considering there is not another song which embodies the greatness of this country more than this, it is a song that should be taught in every school in this country.\n\nOf course since we are so close to Thanksgiving, you can be sure there wasn’t a person in the crowd who wasn’t hoping to hear the familiar first few notes of “Alice’s Restaurant.” Arlo did not disappoint. As he began to play, the audience sang along to the beginning chorus. At this point Arlo said “You don’t think I’m really going to sing this whole freakin’ song do you?” And no, I don’t think we really did. And just that one chorus, while a tease, was enough of a taste to keep a smile on everyone’s face. He picked the melody while talking about what the song has meant to him and his family over the years… the good and the not so good.\n\nAs all of our storytellers get older, the danger of losing important parts of our past, grows. Arlo Guthrie not only lived some of the stories first-hand, he grew up surrounded by legends with their own stories to tell. Never miss a chance to hear them because you’ll never forget them once you do. And that keeps them alive.\n\nThis evening with Arlo Guthrie pickin’, singin’ and tellin’ stories was one of the most enjoyable nights I’ve ever spent in a music hall. It was an honor to hear him speak of his father, and all those who came before. And hopefully by writing about it, the stories keep going just a little longer.\n\n \n\n ','Arlo Guthrie at the Newton Theatre: A Night of Songs and Stories','','inherit','open','open','','1303-autosave-v1','','','2013-11-24 17:58:20','2013-11-24 23:58:20','',1303,'http://www.earthhertzrecords.com/2013/11/1303-autosave-v1/',0,'revision','',0),(1315,2,'2013-11-22 18:42:41','2013-11-23 00:42:41','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\"><img class=\"aligncenter size-full wp-image-1309\" alt=\"KatsTheory-Arlo-21\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\" width=\"1000\" height=\"860\" /></a>For a November night in northwest New Jersey, the weather could not have been better. A light jacket was enough to keep you warm, but not crowd you in your seat. Tonight you wanted to be comfortable for it was to be a night of songs and stories. Arlo Guthrie was in town, and we weren’t the only ones celebrating. With this year marking the 100<sup>th</sup> birthday of Arlo’s father, legendary folk singer and documenter of mid-century America, Woody Guthrie, Arlo was performing many of his dad’s compositions.\r\n\r\nThe Newton Theatre is a reclaimed from the edge of destruction movie theatre. Small and intimate, you get to share the experience with 604 new friends. Though we were lucky to be sitting up front, it’s hard to imagine a bad seat in the house.\r\n\r\nWith no opening act, Arlo and his three-piece band took their places onstage. With each member dressed in black, there would be no distraction; this night was about the music and the stories that inspired them. Arlo sat center stage next to his guitar rack with four beauties waiting to be picked.\r\n\r\nArlo began the evening speaking of Woody, and the joy he felt being able to spend nights such as this, singing the songs of his father, the songs of an America past, the songs of justice and injustice, the songs of his family. His voice is filled with more gravel than before, as if age and life’s journey has settled in. But every once in a while, the familiar sound of the Arlo from another time, punctuates a sentence of a story, and all those memories when you heard him say “Officer Obie” or “you remember Alice,” come flooding back. And you smile.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\"><img class=\"alignleft wp-image-1308\" alt=\"KatsTheory-Arlo-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\" width=\"800\" height=\"478\" /></a>Arlo Guthrie is a superb storyteller. Pulling a beautiful acoustic Gibson out of the rack, Arlo began telling the story of Woody’s “Oklahoma Hills,” and you realize just how different the world was back then for a songwriter. You might not even know your song had been recorded until you heard it playing in a jukebox.\r\n\r\nOne of the wonderful attributes of the writing of Woody Guthrie was his ability to put down words explaining injustice, hard times, or the beauty of this country, in the most simple of words. Their simplicity making them universally relatable.\r\n\r\nGrowing up Guthrie meant you had the most interesting of extended families. Ramblin’ Jack Elliot, Huddie “Leadbelly” Ledbetter, Cisco Houston to name a few, were household regulars. Their songs and their stories were exquisite as told by this grown man who had known these legends when he was a child.\r\n\r\nThough storytelling and song is his forte, Arlo Guthrie can play a real pretty guitar, though this night he battled with keeping them in tune. As a little tweaking of the strings went on longer than expected, Arlo blamed it in the blue light overhead. The audience laughed as the lighting guy quickly changed the color. It didn’t help, but it did make the evening even more real; this was no rock star with a technician handing him a perfectly tuned guitar for every song. This was just a musician sitting in someone’s living room trying to play his best for some new friends.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31.jpg\"><img class=\"alignleft size-medium wp-image-1310\" alt=\"KatsTheory-Arlo-31\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31-300x232.jpg\" width=\"300\" height=\"232\" /></a>Listening to the songs of Woody Guthrie is like riding on one of the filled-with-family-and-belongings trucks Steinbeck wrote about in <i>The Grapes of Wrath.</i> In fact Guthrie wrote a song condensing the 600 pages of <i>Wrath</i> into a song with twelve verses. This was something over which Steinbeck took umbrage. The combination of the songs and the perspective Arlo brings to them is a history lesson so interesting, you wish this was how it was taught in school. After an hour of enjoying the songs and tales of times long ago, Arlo and the band took a short break.\r\n\r\nComing back onstage the music catalog shifted to Arlo’s own. Now it wasn’t only Woody’s songs which were prefaced by a story. “Coming Into Los Angeles” began with a story of his late wife Jackie’s arrest for marijuana at the airport, after a long-forgotten gift from a fan to Arlo, was found in her bag.\r\n\r\nHe then talked about his early memories of Leadbelly in his home, and his search for Leadbelly’s grave somewhere in Louisiana. Leadbelly, who wrote among many others, “Midnight Special” and “Goodnight Irene,” was buried in Shreeveport, and they found the grave with guitar picks scattered over the tombstone. So he pulled out his guitar, sat there, and played some songs for the man he remembered as a two-year old. One of those songs “Alabama Bound,” was Arlo’s next selection.\r\n\r\nOne highlight of the evening was Steve Goodman’s “City Of New Orleans.” Lyrically, you can’t write much more of a poignant ballad. It is a testament to his songwriting that a song so moving, is about a train. The story of how Arlo and Steve met is priceless, making his loss at such a young age, even more lamentable.\r\n\r\nRelating how he first laid eyes on his future wife and singing “Highway In The Wind,” which he wrote for her, must be more than a little bittersweet, a little over a year since the death of the woman to whom he was married for forty-three years.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg\"><img class=\"alignright size-full wp-image-1311\" alt=\"KatsTheory-Arlo-11\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg\" width=\"1000\" height=\"667\" /></a>Getting close to the end of the show, Arlo pulled out arguably Woody’s most recognizable song, “This Land Is Your Land.” As we approach the Thanksgiving holiday, the imagery of the words was not lost on the audience. Considering there is not another song which embodies the greatness of this country more than this, it is a song that should be taught in every school in this country.\r\n\r\nOf course since we are so close to Thanksgiving, you can be sure there wasn’t a person in the crowd who wasn’t hoping to hear the familiar first few notes of “Alice’s Restaurant.” Arlo did not disappoint. As he began to play, the audience sang along to the beginning chorus. At this point Arlo said “You don’t think I’m really going to sing this whole freakin’ song do you?” And no, I don’t think we really did. And just that one chorus, while a tease, was enough of a taste to keep a smile on everyone’s face. He picked the melody while talking about what the song has meant to him and his family over the years… the good and the not so good.\r\n\r\nAs all of our storytellers get older, the danger of losing important parts of our past, grows. Arlo Guthrie not only lived some of the stories first-hand, he grew up surrounded by legends with their own stories to tell. Never miss a chance to hear them because you’ll never forget them once you do. And that keeps them alive.\r\n\r\nThis evening with Arlo Guthrie pickin’, singin’ and tellin’ stories was one of the most enjoyable nights I’ve ever spent in a music hall. It was an honor to hear him speak of his father, and all those who came before. And hopefully by writing about it, the stories keep going just a little longer.\r\n\r\n \r\n\r\n ','Arlo Guthrie at the Newton Theatre: A Night of Songs and Stories','','inherit','open','open','','1303-revision-v1','','','2013-11-22 18:42:41','2013-11-23 00:42:41','',1303,'http://www.earthhertzrecords.com/2013/11/1303-revision-v1/',0,'revision','',0),(1239,1,'2013-11-06 13:06:39','2013-11-06 13:06:39','\r\nhttps://s3.amazonaws.com/storageA/MattGuertirxHippieGirl_16_2013_11_05.mp3\r\n1. Hippie Girl mp3 16k\r\n\r\nhttps://s3.amazonaws.com/storageA/MattGuertirxHippieGirl_24_2013_11_05.mp3\r\n2. Hippie Girl mp3 24k\r\n\r\nhttps://s3.amazonaws.com/storageA/rxHippieGirl_2013_11_05.wav\r\n3. Hippie Girl wav\r\n','','','inherit','open','open','','1238-revision-v1','','','2013-11-06 13:06:39','2013-11-06 13:06:39','',1238,'http://www.earthhertzrecords.com/2013/11/1238-revision-v1/',0,'revision','',0),(1240,1,'2013-11-07 06:43:57','2013-11-07 06:43:57','https://s3.amazonaws.com/storageA/MattGuertirxHippieGirl_16_2013_11_05.mp3\r\n1. Hippie Girl mp3 16k\r\n\r\nhttps://s3.amazonaws.com/storageA/MattGuertirxHippieGirl_24_2013_11_05.mp3\r\n2. Hippie Girl mp3 24k\r\n\r\nhttps://s3.amazonaws.com/storageA/rxHippieGirl_2013_11_05.wav\r\n3. Hippie Girl wav\r\n\r\nhttps://s3.amazonaws.com/storageA/rxHippieGirl_2013_11_06_001.wav\r\n4. Hippie Girl wav (Matts)','','','inherit','open','open','','1238-revision-v1','','','2013-11-07 06:43:57','2013-11-07 06:43:57','',1238,'http://www.earthhertzrecords.com/2013/11/1238-revision-v1/',0,'revision','',0),(1268,2,'2013-11-17 13:20:42','2013-11-17 13:20:42','<strong>The Man, the Myth, the Music - The Definitive Life</strong>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/lennon.jpg\"><img class=\"aligncenter size-full wp-image-423\" alt=\"lennon\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/lennon.jpg\" width=\"600\" height=\"337\" /></a>There have been so many books written about John Lennon and his landmark band, The Beatles, that book reviews now have a cliche\' opening sentence. Lennon: The Man The Myth The Music by Tim Riley is the umpteenth book written about John Lennon and the Beatles. So how can another be worthy of 661 pages on a subject so many know so much about? Because it\'s John Lennon and The Beatles.\r\n\r\nThe bulk of the biography concentrates on his childhood from the ages of 5 to 17. Lennon was abandoned by both his wayward merchant seaman father Alfred, and a domineering, manipulative mother Julia. His Aunt Mimi and Uncle George raised him. You learn that John Lennon was a vicious bully during his grade school years and it wasn\'t until he learned to play guitar at age 16, a Gallotone Champion acoustic, that his temper and personality became more pliable to his friends. It\'s this detail that Tim Riley, music critic for NPR, delves into as a theme of John Lennon\'s life. Mom Julia, emotionally distant, buys the guitar and encourages his artistic freedom on the condition the instrument is delivered to her house and he plays there, while sensible Aunt Mimi, who\'s feeding, clothing, and encouraging his education while offering love and affection tells Lennon \"The guitar\'s all very well John, but you\'ll never make a living out of it\".\r\n\r\nRiley\'s tome provides a lot of psychological analysis of what made John Lennon an artist, not just a star or a celebrity (both of which he publically rejected while privately enjoyed). Lennon\'s teenage years in the \"<a href=\"http://en.wikipedia.org/wiki/Skiffle\">skiffle</a> craze\" of the late 1950s, to meeting Paul McCartney, to leading the revolt against drummer Pete Best for \"not being intellectually sound\" are all fascinating building blocks of what made Lennon so remarkable.\r\n\r\nThe book gets ponderous with the author\'s critiques of John Lennon and The Beatles compositions. My daughters love \"Octopus\' Garden\" so the several paragraphs of Riley killing the song are not for them. The second half of the book concentrates on the music, sprinkling in John Lennon\'s flaws as a man. Let\'s face it, whether you read Riley\'s book or his ex-wife Cynthia\'s one called \"John\", the man who said \"Give Peace A Chance\" was an angry drunk, an abuser of his ex-wife, and a bad father to his son Julian. Alfred and Julia\'s treatment of him as kid was reiterated by John to Julian.\r\n\r\nThe book is a comprehensive tale of not only what made John Lennon a driven musical artist worthy of The Rock And Roll Hall Of Fame, but also solo accolades. How <em>Double Fantasy</em> was made is great reading. There are snippets of how Lennon actually saved The Beatles from becoming too commercial (they almost did the soundtrack to \'The Jungle Book\' Disney film in 1965, but Lennon refused) and kept them artistic. The alleged \"feud\" between him and Paul was overblown to the public. During the early 1970s, Lennon would stay on the phone for hours with McCartney while he was making his own records, and advise Paul on what he was doing with Wings. This is stuff I never knew.\r\n\r\nSo, why read another book about John Lennon and The Beatles, because you\'ll learn some things you didn\'t know, while appreciating the music in a new sense with new light shown.\r\n\r\nPost by <strong>Lance Burson</strong>\r\n\r\n<strong><em>Lance Burson is a writer living outside Atlanta, Georgia with his wife and three daughters. He’s the published author of two books, both musically themed, The Ballad of Helene Troy and Soul To Body, found, digitally, on Amazon.com/kindle and in paperback on Lulu.com</em>.<em> He is a writer for <a href=\"http://sprocketink.com/author/lance/\">Sprocket Ink</a> and author of <a href=\"http://lancemyblogcanbeatupyourblog.wordpress.com/\">My Blog Can Beat Up Your Blog</a> Follow him on Twitter <a href=\"https://twitter.com/lanceburson\">@lanceburson</a></em></strong>','LENNON by Tim Riley','','inherit','open','open','','422-autosave-v1','','','2013-11-17 13:20:42','2013-11-17 13:20:42','',422,'http://www.earthhertzrecords.com/2013/11/422-autosave-v1/',0,'revision','',0),(1242,1,'2013-11-08 22:28:28','2013-11-08 22:28:28','[caption id=\"attachment_1243\" align=\"alignnone\" width=\"750\"]<img class=\"size-full wp-image-1243\" alt=\"Matt Guertin Fender\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/DSC_3279_MattGuertin_Fender_2013_11_07.jpg\" width=\"750\" height=\"498\" /> Matt Guertin with Fender[/caption]\r\n\r\nMatt found an piece of our history hanging around the studio. He took quite an interest in this old piece of Fender magic. Sorry Matt, we like it as well, so we are going to keep it.','Matt Guertin and Our Fender','','publish','open','open','','matt-guertin-fender','','','2013-11-08 22:43:24','2013-11-08 22:43:24','',0,'http://www.earthhertzrecords.com/?p=1242',0,'post','',0),(1243,1,'2013-11-08 22:27:44','2013-11-08 22:27:44','1','Matt Guertin and Our Fender','Matt Guertin and Our Fender','inherit','open','open','','dsc_3279_mattguertin_fender_2013_11_07','','','2013-11-08 22:27:44','2013-11-08 22:27:44','',1242,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/DSC_3279_MattGuertin_Fender_2013_11_07.jpg',0,'attachment','image/jpeg',0),(1244,1,'2013-11-08 22:28:28','2013-11-08 22:28:28','[caption id=\"attachment_1243\" align=\"alignnone\" width=\"750\"]<img class=\"size-full wp-image-1243\" alt=\"Matt Guertin Fender\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/DSC_3279_MattGuertin_Fender_2013_11_07.jpg\" width=\"750\" height=\"498\" /> Matt Guertin Fender[/caption]','Matt Guertin Fender','','inherit','open','open','','1242-revision-v1','','','2013-11-08 22:28:28','2013-11-08 22:28:28','',1242,'http://www.earthhertzrecords.com/2013/11/1242-revision-v1/',0,'revision','',0),(1245,1,'2013-11-08 22:29:31','2013-11-08 22:29:31','[caption id=\"attachment_1243\" align=\"alignnone\" width=\"750\"]<img class=\"size-full wp-image-1243\" alt=\"Matt Guertin Fender\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/DSC_3279_MattGuertin_Fender_2013_11_07.jpg\" width=\"750\" height=\"498\" /> Matt Guertin with Fender[/caption]\n\nMatt found an piece of our history hanging around th','Matt Guertin Fender','','inherit','open','open','','1242-autosave-v1','','','2013-11-08 22:29:31','2013-11-08 22:29:31','',1242,'http://www.earthhertzrecords.com/2013/11/1242-autosave-v1/',0,'revision','',0),(1246,1,'2013-11-08 22:30:14','2013-11-08 22:30:14','[caption id=\"attachment_1243\" align=\"alignnone\" width=\"750\"]<img class=\"size-full wp-image-1243\" alt=\"Matt Guertin Fender\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/DSC_3279_MattGuertin_Fender_2013_11_07.jpg\" width=\"750\" height=\"498\" /> Matt Guertin with Fender[/caption]\r\n\r\nMatt found an piece of our history hanging around the studio. He took quite an interest in this old piece of Fender magic. Sorry Matt, we like it as well, so we are going to keep it.','Matt Guertin Fender','','inherit','open','open','','1242-revision-v1','','','2013-11-08 22:30:14','2013-11-08 22:30:14','',1242,'http://www.earthhertzrecords.com/2013/11/1242-revision-v1/',0,'revision','',0),(1247,1,'2013-11-08 22:40:40','2013-11-08 22:40:40','1','DSC_3170_PhotoGallery_2013_11_07','1','inherit','open','open','','dsc_3170_photogallery_2013_11_07','','','2013-11-08 22:40:40','2013-11-08 22:40:40','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/DSC_3170_PhotoGallery_2013_11_07.jpg',0,'attachment','image/jpeg',0),(1248,1,'2013-11-08 22:43:24','2013-11-08 22:43:24','[caption id=\"attachment_1243\" align=\"alignnone\" width=\"750\"]<img class=\"size-full wp-image-1243\" alt=\"Matt Guertin Fender\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/DSC_3279_MattGuertin_Fender_2013_11_07.jpg\" width=\"750\" height=\"498\" /> Matt Guertin with Fender[/caption]\r\n\r\nMatt found an piece of our history hanging around the studio. He took quite an interest in this old piece of Fender magic. Sorry Matt, we like it as well, so we are going to keep it.','Matt Guertin and Our Fender','','inherit','open','open','','1242-revision-v1','','','2013-11-08 22:43:24','2013-11-08 22:43:24','',1242,'http://www.earthhertzrecords.com/2013/11/1242-revision-v1/',0,'revision','',0),(1331,2,'2013-11-27 08:01:41','2013-11-27 14:01:41','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\"><img class=\"alignleft size-full wp-image-1332\" alt=\"LindaRonstadt\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\" width=\"260\" height=\"391\" /></a>When I heard the news I cried.\r\n\r\nLinda Ronstadt was the first female singer to truly inspire me to sing. Her music - at once country, tinged with folk, and mixed with rock overtones, and her voice - strong and throaty, powerful yet tender with a full range of nuances - was an inspiration; an elixir to soothe my youthful soul. From the beautiful harpsichord flavored \"Different Drum\" written by Monkees alum Michael Nesmith, to the defiant rock kiss off \"You\'re No Good\", Linda Ronstadt\'s music bridged genres to captivate audiences throughout her 40 year career.\r\n\r\nAnd then, just shy of releasing her memoir <em>Linda Ronstadt Simple Dreams: A Musical Memoir</em> (Simon & Schuster) she announced to AARP that she has Parkinson\'s disease and can no longer sing, saying \"I can\'t sing a note.\" adding “I can’t sing at all,” matter-of-factly. “I’m truly not able. I can’t sing ‘Happy Birthday,’ really.” Parkinson\'s affects the ability to move and control the vocal chords - a critical function of singing.\r\n\r\nMy memories of Linda Ronstadt date back as far as I can remember, back to the days when I first started playing guitar at the age of eight, when my extremely supportive mother not only trudged through the rain at an outdoor concert venue to see Ronstadt in concert, but also took me weekly for lessons at a nearby house full of hippies, one of whom would accompany me on bass, singing harmonies to songs by Ronstadt and The Eagles, coaxing me to hit the high notes on \"Heat Wave\". I had the iconic Ronstadt poster in my room in homage to this almost other worldly model of womanhood and talent, and I spent hours in my room mimicking her vocal prowess as her records spun on my JC Penney turntable - my favorite of which was 1976\'s <em>Hasten Down the Wind</em>. The opening strains of that record still give me chills.\r\n\r\n<em>Save me...free me from my heart this time...</em>\r\n\r\nJust like Ronstadt herself, it begins quietly and builds to a powerful and skillfully controlled crescendo of tuneful and emotional bliss. The mere thought that this songbird has been forever silenced brings a sadness that reminds this child of the 70s of the immense uniqueness of a musical era which will have no equal.\r\n\r\nLinda Maria Ronstadt was born on July 15, 1946 in Tuscon, Arizona to Gilbert, a machinery merchant who ran The Ronstadt Co. and homemaker, Ruth Mary Ronstadt. Raised on a 10 acre ranch with three siblings - all of whom were musical; including Gilbert, who himself was a musician in mariachi bands. The family was of German and Mexican descent and together sang the traditional songs of their Mexican heritage.\r\n\r\nAt 18, Ronstadt headed to California at the suggestion of musical pal Bob Kimmel and together with him and Kenny Edwards, formed and sang lead in The Stone Poneys, which garnered the hit \"Different Drum\" and led to relationships with a slew of then unknown singers, musicians and songwriters, and placed her at the forefront of a burgeoning California rock music scene, later to be crowned the Queen Of Rock - a distinction she did not at all embrace, saying that she felt rock music never defined her. And it didn\'t.\r\n\r\nIf you\'re expecting the book to be a kiss and tell, or a searing tell all concerning the main players of the time, you might be disappointed. Ronstadt stays true to her word; when she calls the book a musical memoir, she means it. The book recounts a rich and detailed musical legacy that lets both the music aficionado and the casual music lover glimpse into recording sessions, the formation of important relationships (yes, Glen Frey and Don Henley first met as members of Ronstadt\'s touring band and immediately formed what would become The Eagles.), chronicles life on the road and at least one epic all night jam session involving Keith Richards. But at its core, this is an overview of a brilliant career which spanned forty years and included some of the major artists of the day - many of whom continue to enjoy mainstream success. She recalls her collaborations with such musical luminaries as Jackson Browne, the Eagles, J.D. Souther, Warren Zevon, Chris Hillman, Gram Parsons, Neil Young, Frank Zappa, Emmylou Harris, Dolly Parton, Aaron Neville, and Nelson Riddle. She mentions touring early on in her career as an opener for The Doors and minces no words as to her opinion of front man Jim Morrison. She also chronicles her professional relationship with manager Peter Asher, whose understanding of business, music and performance proved crucial to the development and guidance of her illustrious careers.\r\n\r\nThe book mentions romantic relationships only in passing and although as a musician, I devoured the musical anecdotes and behind the scenes tales of studio and songwriting sessions, I admit to feeling a little gipped when it came to details of her personal life, of which there weren\'t many. Ronstadt recalls \"keeping company\" with then California governor Jerry Brown, and living with J.D. Souther, as well as mentions meeting and later being signed by David Geffen who formed Asylum Records, but makes no mention of Albert Brooks or George Lucas, and though she mentions a friendship with then up and coming comedian Steve Martin, she neglects to mention that they dated.\r\n\r\nThe omission of such details does nothing to detract from this engrossing and well written read. Ronstadt, who did not write her own songs, displays an impressive writing talent, articulate and especially knowledgable in her musical commentary.\r\n\r\nPersonal details are left mostly to those of her childhood, growing up in the Arizona desert with her family, which gives insight into her musical roots. Finished before her Parkinson\'s diagnosis was made public, the book makes no mention of her illness but instead, takes the reader on the journey from childhood all the way through the early days of California rock, to her time on Broadway in <em>Pirates of Penzance</em>, her foray into the Great American songbook with Nelson Riddle and his orchestra, her duets with Aaron Neville, collaborations with Emmylou Harris and Dolly Parton and the rediscovery of her Mexican musical roots toward the end of her career.\r\n\r\n<em>Simple Dreams</em> is not just an enjoyable read by one of music\'s most beloved songstresses, it is a seat on the tour bus at an unforgettable time in music.\r\n\r\n<strong>Review by Linda Roy</strong>\r\n\r\nFirst published on <a href=\"http://raisedontheradio.com/\">RaisedOnTheRadio.com</a>\r\n\r\n<strong>Linda is a writer and musician who blogs at <a href=\"http://elleroywashere.com/\" target=\"_blank\">elleroy was here</a> and <a href=\"http://raisedontheradio.com/\" target=\"_blank\">Raised on the Radio</a>. She leads the Indie Americana band <a href=\"http://jehovawaitresses.com/\" target=\"_blank\">Jehova Waitresses</a> and writes at <a href=\"http://www.aiminglow.com/\" target=\"_blank\">Aiming Low</a>, <a href=\"http://sprocketink.com/\" target=\"_blank\">Sprocket Ink</a> and <a href=\"http://www.funnynotslutty.com/\" target=\"_blank\">Funny Not Slutty</a>. Connect with her on <a href=\"http://www.twitter.com/modmomelleroy\" target=\"_blank\">Twitter</a>, <a href=\"https://www.facebook.com/ModMomBeyondIndieDom\" target=\"_blank\">Facebook</a> and <a href=\"https://plus.google.com/u/0/116644246137576659052/posts\" target=\"_blank\">Google+</a></strong>','Linda Ronstadt: Simple Dreams Made Musical Reality','','publish','open','open','','linda-ronstadt-simple-dreams-made-musical-reality','','','2013-11-27 08:01:41','2013-11-27 14:01:41','',0,'http://www.earthhertzrecords.com/?p=1331',0,'post','',0),(1250,2,'2013-11-10 01:09:13','2013-11-10 01:09:13','<strong>Super Producer, Production Coordinator, A&R</strong>\n\nGrowing up in Massachusetts, I started playing in bands when I was sixteen or seventeen. I played the Boston circuit, and then at about twenty, moved to South Florida. I was in a band called Super Buzz, a jammin’ hard rock band, from ’91-’94, and we had interest from Atlantic and a few Indie labels. For this band I produced everything, did promotions, booked a few venues, wrote all the songs, and was the singer. I started to get involved with other bands and just try to help them. It was just my passion to do it. The response was good, because I just have a knack to feel out the situation, to help artists be the best they can be.\n\nLater I moved back to Boston where I was a filler acoustic player for a while; just played little cafes here and there. Wanting to take a step back, I got out of the recording business for a while. I had a son and focused on spending time with him. After moving to Minnesota, it was time to get back on a serious career path. When I got together with Matt Guertin (of radarTower), I sat him down in front of a microphone and he just rattled off about twenty songs. He wanted to get a band together and I told him I’d produce them. And it’s come to this. We started making the record a little over a year ago, and have just started to work on the second release from radarTower.\n\nI love to be involved with music and musicians. I have other projects I’m in the process of tracking, and every time I go out to a show, I’m looking for talent.\n\nI’m pleased to be involved with Matt and Earth Hertz Records. I\'m thankful for Robert Xeno and support his vision, and I’m extremely grateful for the continuous guidance and mentoring from Eddie Ciletti.\n\nJust very happy to have found a home with Earth Hertz - you better believe it.','About: Saint Christopher','','inherit','open','open','','1152-autosave-v1','','','2013-11-10 01:09:13','2013-11-10 01:09:13','',1152,'http://www.earthhertzrecords.com/2013/11/1152-autosave-v1/',0,'revision','',0),(1251,2,'2013-11-10 01:10:27','2013-11-10 01:10:27','<strong>Super Producer, Production Coordinator, A&R</strong>\r\n\r\nGrowing up in Massachusetts, I started playing in bands when I was sixteen or seventeen. I played the Boston circuit, and then at about twenty, moved to South Florida. I was in a band called Super Buzz, a jammin’ hard rock band, from ’91-’94, and we had interest from Atlantic and a few Indie labels. For this band I produced everything, did promotions, booked a few venues, wrote all the songs, and was the singer. I started to get involved with other bands and just try to help them. It was just my passion to do it. The response was good, because I just have a knack to feel out the situation, to help artists be the best they can be.\r\n\r\nLater I moved back to Boston where I was a filler acoustic player for a while; just played little cafes here and there. Wanting to take a step back, I got out of the recording business for a while. I had a son and focused on spending time with him. After moving to Minnesota, it was time to get back on a serious career path. When I got together with Matt Guertin (of radarTower), I sat him down in front of a microphone and he just rattled off about twenty songs. He wanted to get a band together and I told him I’d produce them. And it’s come to this. We started making the record a little over a year ago, and have just started to work on the second release from radarTower.\r\n\r\nI love to be involved with music and musicians. I have other projects I’m in the process of tracking, and every time I go out to a show, I’m looking for talent.\r\n\r\nI’m pleased to be involved with Matt and Earth Hertz Records. I\'m thankful for Robert Xeno and support his vision, and I’m extremely grateful for the continuous guidance and mentoring from Eddie Ciletti.\r\n\r\nJust very happy to have found a home with Earth Hertz - you better believe it.','About: Saint Christopher','','inherit','open','open','','1152-revision-v1','','','2013-11-10 01:10:27','2013-11-10 01:10:27','',1152,'http://www.earthhertzrecords.com/2013/11/1152-revision-v1/',0,'revision','',0),(1252,2,'2013-11-10 01:12:22','2013-11-10 01:12:22','<strong>Super Producer, Production Coordinator, A&R</strong>\r\n\r\nGrowing up in Massachusetts, I started playing in bands when I was sixteen or seventeen. I played the Boston circuit, and then at about twenty, moved to South Florida. I was in a band called Super Buzz, a jammin’ hard rock band, from ’91-’94, and we had interest from Atlantic and a few Indie labels. For this band I produced everything, did promotions, booked a few venues, wrote all the songs, and was the singer. I started to get involved with other bands and just try to help them. It was just my passion to do it. The response was good, because I just have a knack to feel out the situation, to help artists be the best they can be.\r\n\r\nLater I moved back to Boston where I was a filler acoustic player for a while; just played little cafes here and there. Wanting to take a step back, I got out of the recording business for a while. I had a son and focused on spending time with him. After moving to Minnesota, it was time to get back on a serious career path. When I got together with Matt Guertin (of radarTower), I sat him down in front of a microphone and he just rattled off about twenty songs. He wanted to get a band together and I told him I’d produce them. And it’s come to this. We started making the record a little over a year ago, and have just started to work on the second release from radarTower.\r\n\r\nI love to be involved with music and musicians. I have other projects I’m in the process of tracking, and every time I go out to a show, I’m looking for talent.\r\n\r\nI’m pleased to be involved with Matt, and Earth Hertz Records. I\'m thankful for Robert Xeno and support his vision, and I’m extremely grateful for the continuing guidance and mentoring from Eddie Ciletti.\r\n\r\nJust very happy to have found a home with Earth Hertz - you better believe it.','About: Saint Christopher','','inherit','open','open','','1152-revision-v1','','','2013-11-10 01:12:22','2013-11-10 01:12:22','',1152,'http://www.earthhertzrecords.com/2013/11/1152-revision-v1/',0,'revision','',0),(1378,1,'2013-12-05 08:50:45','2013-12-05 14:50:45','[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> Matt Guertin\'s radarTower[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> Matt Guertin\'s radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/joshua-ayers\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/glen-spreen/\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\r\n\r\n[caption id=\"attachment_711\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/the-billy-david-band/\"><img class=\" wp-image-711 \" title=\"Billy David\" alt=\"Billy David\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/BillyDavid_Magic_0011.jpg\" width=\"560\" height=\"327\" /></a> Billy David[/caption]\r\n\r\n \r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-12-05 08:50:45','2013-12-05 14:50:45','',35,'http://www.earthhertzrecords.com/2013/12/35-revision-v1/',0,'revision','',0),(1324,1,'2013-11-22 20:06:33','2013-11-23 02:06:33','[caption id=\"attachment_1320\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/applegate-nance-hey-california/\"><img class=\"size-full wp-image-1320 \" alt=\"Applegate Nance Hey California\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/ApplegateNance_Heycalifornia_001.jpg\" width=\"560\" height=\"327\" /></a> Applegate Nance Hey California[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> Matt Guertin\'s radarTower[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> Matt Guertin\'s radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/joshua-ayers\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/glen-spreen/\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\r\n\r\n[caption id=\"attachment_711\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/the-billy-david-band/\"><img class=\" wp-image-711 \" title=\"Billy David\" alt=\"Billy David\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/BillyDavid_Magic_0011.jpg\" width=\"560\" height=\"327\" /></a> Billy David[/caption]\r\n\r\n \r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-11-22 20:06:33','2013-11-23 02:06:33','',35,'http://www.earthhertzrecords.com/2013/11/35-revision-v1/',0,'revision','',0),(1323,1,'2013-11-22 20:05:33','2013-11-23 02:05:33','<iframe src=\"//www.youtube.com/embed/XmYVbybpWuo\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Applegate Nance','','inherit','open','open','','1318-revision-v1','','','2013-11-22 20:05:33','2013-11-23 02:05:33','',1318,'http://www.earthhertzrecords.com/2013/11/1318-revision-v1/',0,'revision','',0),(422,1,'2013-10-03 18:58:44','2013-10-03 18:58:44','<strong>The Man, the Myth, the Music - The Definitive Life</strong>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/lennon.jpg\"><img class=\"aligncenter size-full wp-image-423\" alt=\"lennon\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/lennon.jpg\" width=\"600\" height=\"337\" /></a>There have been so many books written about John Lennon and his landmark band, The Beatles, that book reviews now have a cliche\' opening sentence. Lennon: The Man The Myth The Music - The Definitive Life by Tim Riley is the umpteenth book written about John Lennon and the Beatles. So how can another be worthy of 661 pages on a subject so many know so much about? Because it\'s John Lennon and The Beatles.\r\n\r\nThe bulk of the biography concentrates on his childhood from the ages of 5 to 17. Lennon was abandoned by both his wayward merchant seaman father Alfred, and a domineering, manipulative mother Julia. His Aunt Mimi and Uncle George raised him. You learn that John Lennon was a vicious bully during his grade school years and it wasn\'t until he learned to play guitar at age 16, a Gallotone Champion acoustic, that his temper and personality became more pliable to his friends. It\'s this detail that Tim Riley, music critic for NPR, delves into as a theme of John Lennon\'s life. Mom Julia, emotionally distant, buys the guitar and encourages his artistic freedom on the condition the instrument is delivered to her house and he plays there, while sensible Aunt Mimi, who\'s feeding, clothing, and encouraging his education while offering love and affection tells Lennon \"The guitar\'s all very well John, but you\'ll never make a living out of it\".\r\n\r\nRiley\'s tome provides a lot of psychological analysis of what made John Lennon an artist, not just a star or a celebrity (both of which he publically rejected while privately enjoyed). Lennon\'s teenage years in the \"<a href=\"http://en.wikipedia.org/wiki/Skiffle\">skiffle</a> craze\" of the late 1950s, to meeting Paul McCartney, to leading the revolt against drummer Pete Best for \"not being intellectually sound\" are all fascinating building blocks of what made Lennon so remarkable.\r\n\r\nThe book gets ponderous with the author\'s critiques of John Lennon and The Beatles compositions. My daughters love \"Octopus\' Garden\" so the several paragraphs of Riley killing the song are not for them. The second half of the book concentrates on the music, sprinkling in John Lennon\'s flaws as a man. Let\'s face it, whether you read Riley\'s book or his ex-wife Cynthia\'s one called \"John,\" the man who said \"Give Peace A Chance\" was an angry drunk, an abuser of his ex-wife, and a bad father to his son Julian. Alfred and Julia\'s treatment of him as kid was reiterated by John to Julian.\r\n\r\nThe book is a comprehensive tale of not only what made John Lennon a driven musical artist worthy of The Rock And Roll Hall Of Fame, but also solo accolades. How <em>Double Fantasy</em> was made is great reading. There are snippets of how Lennon actually saved The Beatles from becoming too commercial (they almost did the soundtrack to \'The Jungle Book\' Disney film in 1965, but Lennon refused) and kept them artistic. The alleged \"feud\" between him and Paul was overblown to the public. During the early 1970s, Lennon would stay on the phone for hours with McCartney while he was making his own records, and advise Paul on what he was doing with Wings. This is stuff I never knew.\r\n\r\nSo, why read another book about John Lennon and The Beatles? Because you\'ll learn some things you didn\'t know, while appreciating the music in a new sense with new light shown.\r\n\r\nPost by <strong>Lance Burson</strong>\r\n\r\n<strong><em>Lance Burson is a writer living outside Atlanta, Georgia with his wife and three daughters. He’s the published author of two books, both musically themed, The Ballad of Helene Troy and Soul To Body, found, digitally, on Amazon.com/kindle and in paperback on Lulu.com</em>.<em> He is a writer for <a href=\"http://sprocketink.com/author/lance/\">Sprocket Ink</a> and author of <a href=\"http://lancemyblogcanbeatupyourblog.wordpress.com/\">My Blog Can Beat Up Your Blog</a> Follow him on Twitter <a href=\"https://twitter.com/lanceburson\">@lanceburson</a></em></strong>','LENNON by Tim Riley','','publish','open','open','','lennon-by-tim-riley','','','2013-11-20 01:00:01','2013-11-20 01:00:01','',0,'http://0332c8e.netsolhost.com/WordPress/?p=422',0,'post','',1),(423,1,'2013-10-03 18:58:00','2013-10-03 18:58:00','','lennon','','inherit','open','open','','lennon','','','2013-10-03 18:58:00','2013-10-03 18:58:00','',422,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/lennon.jpg',0,'attachment','image/jpeg',0),(424,1,'2013-10-03 18:58:44','2013-10-03 18:58:44','The Man, the Myth, the Music - The Definitive Life\r\n\r\nA really big thick book.\r\n\r\n<img class=\"alignleft size-full wp-image-423\" alt=\"LENNON\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/lennon.jpg\" width=\"600\" height=\"337\" />','LENNON by Tim Riley','','inherit','open','open','','422-revision-v1','','','2013-10-03 18:58:44','2013-10-03 18:58:44','',422,'http://0332c8e.netsolhost.com/WordPress/2013/10/03/422-revision-v1/',0,'revision','',0),(629,1,'2013-10-11 14:46:32','2013-10-11 14:46:32','','Home','','publish','open','open','','home','','','2014-03-28 10:20:25','2014-03-28 16:20:25','',0,'http://www.earthhertzrecords.com/?p=629',1,'nav_menu_item','',0),(427,2,'2013-10-03 23:08:08','2013-10-03 23:08:08','<p style=\"text-align: center;\"><a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-3.jpg\"><img class=\"aligncenter wp-image-383\" alt=\"KatsTheory-Wonderland-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Wonderland-3-1024x682.jpg\" /></a>As the final show in The 5th Annual Hudson Square Music & Wine Festival at City Winery in New York City, <a href=\"http://carolynwonderland.com/\">Carolyn Wonderland</a> was the perfect choice to end the free concert series for another year. Held outdoors in the rear of the Manhattan venue, the gates opened at the end of the workday, creating a sweet and stress-free way to start the evening.</p>\r\nWhile it seems Carolyn Wonderland has an endless tour schedule, her trips to New York City are to be taken as small gifts to treasure, because her singing and style of blues are exactly that, a treasure. Originally from Houston, her home is now Austin, where she is heavily involved in the music community.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-4.jpg\"><img class=\"alignleft wp-image-384\" alt=\"KatsTheory-Wonderland-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Wonderland-4-200x300.jpg\" /></a>As the temperature ebbed slightly, the humidity did not. Wonderland, dressed in black with boots, guitar strap and hair, all in burgundy, took the weather in stride, as she proceeded to heat things up musically. Opening the show with “Come Together,” a song she co-wrote with Ruthie Foster, Wonderland offered a taste both vocally and musically of what was to come. With a voice that’s a little Janis Joplin, a little Marsha Ball, a little Susan Tedeschi and a whole lot of powerful, Wonderland vocals are unique and at the same time familiar, as she belts out the blues.\r\n\r\nThroughout the set Wonderland mixed in her own music with that of other musicians, much of it friends and fellow musicians from her home state, careful to give credit on each song to the writer. Gently accepting applause from the crowd with a “thank you kindly,” her southern manners softened the rough edg es of a NYC workday.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-7.jpg\"><img class=\"alignright wp-image-386\" alt=\"KatsTheory-Wonderland-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Wonderland-7-300x200.jpg\" /></a>A little finger pickin’ led the way into “Two Trains,” with tight backing from Rob Hooper on drums and Cole El-Saleh on keyboards and key-bass. Wonderland’s set list was a nice mixture of high, low, fast, and slow numbers, keeping the crowd engaged throughout.\r\n\r\nAfter a few words about her home state’s great music and bad politics, the band launched into a passionate cover of Alice Cooper’s “Only Women Bleed.” She was then joined onstage by fellow blues singer Shelley King for “Money In The Game.” Wonderland then started making a few eclectic choices, sampling a little Los Lobos then going to The Band’s “Don’t Do It,” to Joplin’s “What Good Can Drinking Do.” Coming to the end of the show was “Palace Of The King,” a song written in honor of the late, great bluesman Freddie King.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-16.jpg\"><img class=\"alignleft wp-image-387\" alt=\"KatsTheory-Wonderland-16\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Wonderland-16-200x300.jpg\" /></a>If you know Carolyn Wonderland, you know she has been known to pull out a trumpet and play. The only question was whether she would on this particular evening. As the first few notes of “Walk On” were played, the odds seemed to say yes.KatsTheory-Wonderland-16 Switching effortlessly from a blistering guitar to the trumpet, Wonderland kicked up the heat another level, and closed out a memorable performance.\r\n\r\nSome artists could easily have mailed in their performance for a show like this; early evening show, hot and humid, and a non-paying crowd. Instead, the Carolyn Wonderland Band just blasted it out of the park. They are a hard working three-piece band with full sound, and a band leader with incredible vocals, guitar work and personality to match.\r\n\r\nTexas blues at its best; Carolyn Wonderful.\r\n\r\nReview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@katstheory</a>\r\n\r\nArticle first published in OurVinyl.com as <a href=\"http://ourvinyl.com/carolyn-wonderland-nyc-concert-review/\">CAROLYN WONDERLAND @ NYC – CONCERT REVIEW</a>','Carolyn Wonderland @ NYC Winery','','publish','open','open','','carolyn-wonderland-nyc-winery','','','2013-11-20 12:17:45','2013-11-20 18:17:45','',0,'http://0332c8e.netsolhost.com/WordPress/?p=427',0,'post','',0),(1300,1,'2013-11-20 12:17:45','2013-11-20 18:17:45','<p style=\"text-align: center;\"><a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-3.jpg\"><img class=\"aligncenter wp-image-383\" alt=\"KatsTheory-Wonderland-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Wonderland-3-1024x682.jpg\" /></a>As the final show in The 5th Annual Hudson Square Music & Wine Festival at City Winery in New York City, <a href=\"http://carolynwonderland.com/\">Carolyn Wonderland</a> was the perfect choice to end the free concert series for another year. Held outdoors in the rear of the Manhattan venue, the gates opened at the end of the workday, creating a sweet and stress-free way to start the evening.</p>\r\nWhile it seems Carolyn Wonderland has an endless tour schedule, her trips to New York City are to be taken as small gifts to treasure, because her singing and style of blues are exactly that, a treasure. Originally from Houston, her home is now Austin, where she is heavily involved in the music community.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-4.jpg\"><img class=\"alignleft wp-image-384\" alt=\"KatsTheory-Wonderland-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Wonderland-4-200x300.jpg\" /></a>As the temperature ebbed slightly, the humidity did not. Wonderland, dressed in black with boots, guitar strap and hair, all in burgundy, took the weather in stride, as she proceeded to heat things up musically. Opening the show with “Come Together,” a song she co-wrote with Ruthie Foster, Wonderland offered a taste both vocally and musically of what was to come. With a voice that’s a little Janis Joplin, a little Marsha Ball, a little Susan Tedeschi and a whole lot of powerful, Wonderland vocals are unique and at the same time familiar, as she belts out the blues.\r\n\r\nThroughout the set Wonderland mixed in her own music with that of other musicians, much of it friends and fellow musicians from her home state, careful to give credit on each song to the writer. Gently accepting applause from the crowd with a “thank you kindly,” her southern manners softened the rough edg es of a NYC workday.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-7.jpg\"><img class=\"alignright wp-image-386\" alt=\"KatsTheory-Wonderland-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Wonderland-7-300x200.jpg\" /></a>A little finger pickin’ led the way into “Two Trains,” with tight backing from Rob Hooper on drums and Cole El-Saleh on keyboards and key-bass. Wonderland’s set list was a nice mixture of high, low, fast, and slow numbers, keeping the crowd engaged throughout.\r\n\r\nAfter a few words about her home state’s great music and bad politics, the band launched into a passionate cover of Alice Cooper’s “Only Women Bleed.” She was then joined onstage by fellow blues singer Shelley King for “Money In The Game.” Wonderland then started making a few eclectic choices, sampling a little Los Lobos then going to The Band’s “Don’t Do It,” to Joplin’s “What Good Can Drinking Do.” Coming to the end of the show was “Palace Of The King,” a song written in honor of the late, great bluesman Freddie King.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-16.jpg\"><img class=\"alignleft wp-image-387\" alt=\"KatsTheory-Wonderland-16\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Wonderland-16-200x300.jpg\" /></a>If you know Carolyn Wonderland, you know she has been known to pull out a trumpet and play. The only question was whether she would on this particular evening. As the first few notes of “Walk On” were played, the odds seemed to say yes.KatsTheory-Wonderland-16 Switching effortlessly from a blistering guitar to the trumpet, Wonderland kicked up the heat another level, and closed out a memorable performance.\r\n\r\nSome artists could easily have mailed in their performance for a show like this; early evening show, hot and humid, and a non-paying crowd. Instead, the Carolyn Wonderland Band just blasted it out of the park. They are a hard working three-piece band with full sound, and a band leader with incredible vocals, guitar work and personality to match.\r\n\r\nTexas blues at its best; Carolyn Wonderful.\r\n\r\nReview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@katstheory</a>\r\n\r\nArticle first published in OurVinyl.com as <a href=\"http://ourvinyl.com/carolyn-wonderland-nyc-concert-review/\">CAROLYN WONDERLAND @ NYC – CONCERT REVIEW</a>','Carolyn Wonderland @ NYC Winery','','inherit','open','open','','427-revision-v1','','','2013-11-20 12:17:45','2013-11-20 18:17:45','',427,'http://www.earthhertzrecords.com/2013/11/427-revision-v1/',0,'revision','',0),(428,2,'2013-10-03 21:53:00','2013-10-03 21:53:00','As the final show in The 5th Annual Hudson Square Music & Wine Festival at City Winery in New York City, <a href=\"http://carolynwonderland.com/\">Carolyn Wonderland</a> was the perfect choice to end the free concert series for another year. Held outdoors in the rear of the Manhattan venue, the gates opened at the end of the workday, creating a sweet and stress-free way to start the evening.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-3.jpg\"><img class=\"aligncenter size-large wp-image-383\" alt=\"KatsTheory-Wonderland-3\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-3-1024x682.jpg\" width=\"650\" height=\"432\" /></a>While it seems Carolyn Wonderland has an endless tour schedule, her trips to New York City are to be taken as small gifts to treasure, because her singing and style of blues are exactly that, a treasure. Originally from Houston, her home is now Austin, where she is heavily involved in the music community.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-4.jpg\"><img class=\"alignleft size-medium wp-image-384\" alt=\"KatsTheory-Wonderland-4\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-4-200x300.jpg\" width=\"200\" height=\"300\" /></a>As the temperature ebbed slightly, the humidity did not. Wonderland, dressed in black with boots, guitar strap and hair, all in burgundy, took the weather in stride, as she proceeded to heat things up musically. Opening the show with “Come Together,” a song she co-wrote with Ruthie Foster, Wonderland offered a taste both vocally and musically of what was to come. With a voice that’s a little Janis Joplin, a little Marsha Ball, a little Susan Tedeschi and a whole lot of powerful, Wonderland vocals are unique and at the same time familiar, as she belts out the blues.\r\n\r\nThroughout the set Wonderland mixed in her own music with that of other musicians, much of it friends and fellow musicians from her home state, careful to give credit on each song to the writer. Gently accepting applause from the crowd with a “thank you kindly,” her southern manners softened the rough edg es of a NYC workday.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-7.jpg\"><img class=\"alignright size-medium wp-image-386\" alt=\"KatsTheory-Wonderland-7\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-7-300x200.jpg\" width=\"300\" height=\"200\" /></a>A little finger pickin’ led the way into “Two Trains,” with tight backing from Rob Hooper on drums and Cole El-Saleh on keyboards and key-bass. Wonderland’s set list was a nice mixture of high, low, fast, and slow numbers, keeping the crowd engaged throughout.\r\n\r\nAfter a few words about her home state’s great music and bad politics, the band launched into a passionate cover of Alice Cooper’s “Only Women Bleed.” She was then joined onstage by fellow blues singer Shelley King for “Money In The Game.” Wonderland then started making a few eclectic choices, sampling a little Los Lobos then going to The Band’s “Don’t Do It,” to Joplin’s “What Good Can Drinking Do.” Coming to the end of the show was “Palace Of The King,” a song written in honor of the late, great bluesman Freddie King.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-16.jpg\"><img class=\"alignleft size-medium wp-image-387\" alt=\"KatsTheory-Wonderland-16\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-16-200x300.jpg\" width=\"200\" height=\"300\" /></a>If you know Carolyn Wonderland, you know she has been known to pull out a trumpet and play. The only question was whether she would on this particular evening. As the first few notes of “Walk On” were played, the odds seemed to say yes.KatsTheory-Wonderland-16 Switching effortlessly from a blistering guitar to the trumpet, Wonderland kicked up the heat another level, and closed out a memorable performance.\r\n\r\nSome artists could easily have mailed in their performance for a show like this; early evening show, hot and humid, and a non-paying crowd. Instead, the Carolyn Wonderland Band just blasted it out of the park. They are a hard working three-piece band with full sound, and a band leader with incredible vocals, guitar work and personality to match.\r\n\r\nTexas blues at its best; Carolyn Wonderful.\r\n\r\nReview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@katstheory</a>\r\n\r\nArticle first published in OurVinyl.com as <a href=\"http://ourvinyl.com/carolyn-wonderland-nyc-concert-review/\">CAROLYN WONDERLAND @ NYC – CONCERT REVIEW</a>','Carolyn Wonderland @ NYC Winery 2','','inherit','open','open','','427-revision-v1','','','2013-10-03 21:53:00','2013-10-03 21:53:00','',427,'http://0332c8e.netsolhost.com/WordPress/2013/10/03/427-revision-v1/',0,'revision','',0),(429,2,'2013-10-03 21:57:21','2013-10-03 21:57:21','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-3.jpg\"><img class=\"aligncenter size-large wp-image-383\" alt=\"KatsTheory-Wonderland-3\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-3-1024x682.jpg\" width=\"650\" height=\"432\" /></a>As the final show in The 5th Annual Hudson Square Music & Wine Festival at City Winery in New York City, <a href=\"http://carolynwonderland.com/\">Carolyn Wonderland</a> was the perfect choice to end the free concert series for another year. Held outdoors in the rear of the Manhattan venue, the gates opened at the end of the workday, creating a sweet and stress-free way to start the evening.\r\n\r\nWhile it seems Carolyn Wonderland has an endless tour schedule, her trips to New York City are to be taken as small gifts to treasure, because her singing and style of blues are exactly that, a treasure. Originally from Houston, her home is now Austin, where she is heavily involved in the music community.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-4.jpg\"><img class=\"alignleft size-medium wp-image-384\" alt=\"KatsTheory-Wonderland-4\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-4-200x300.jpg\" width=\"200\" height=\"300\" /></a>As the temperature ebbed slightly, the humidity did not. Wonderland, dressed in black with boots, guitar strap and hair, all in burgundy, took the weather in stride, as she proceeded to heat things up musically. Opening the show with “Come Together,” a song she co-wrote with Ruthie Foster, Wonderland offered a taste both vocally and musically of what was to come. With a voice that’s a little Janis Joplin, a little Marsha Ball, a little Susan Tedeschi and a whole lot of powerful, Wonderland vocals are unique and at the same time familiar, as she belts out the blues.\r\n\r\nThroughout the set Wonderland mixed in her own music with that of other musicians, much of it friends and fellow musicians from her home state, careful to give credit on each song to the writer. Gently accepting applause from the crowd with a “thank you kindly,” her southern manners softened the rough edg es of a NYC workday.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-7.jpg\"><img class=\"alignright size-medium wp-image-386\" alt=\"KatsTheory-Wonderland-7\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-7-300x200.jpg\" width=\"300\" height=\"200\" /></a>A little finger pickin’ led the way into “Two Trains,” with tight backing from Rob Hooper on drums and Cole El-Saleh on keyboards and key-bass. Wonderland’s set list was a nice mixture of high, low, fast, and slow numbers, keeping the crowd engaged throughout.\r\n\r\nAfter a few words about her home state’s great music and bad politics, the band launched into a passionate cover of Alice Cooper’s “Only Women Bleed.” She was then joined onstage by fellow blues singer Shelley King for “Money In The Game.” Wonderland then started making a few eclectic choices, sampling a little Los Lobos then going to The Band’s “Don’t Do It,” to Joplin’s “What Good Can Drinking Do.” Coming to the end of the show was “Palace Of The King,” a song written in honor of the late, great bluesman Freddie King.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-16.jpg\"><img class=\"alignleft size-medium wp-image-387\" alt=\"KatsTheory-Wonderland-16\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-16-200x300.jpg\" width=\"200\" height=\"300\" /></a>If you know Carolyn Wonderland, you know she has been known to pull out a trumpet and play. The only question was whether she would on this particular evening. As the first few notes of “Walk On” were played, the odds seemed to say yes.KatsTheory-Wonderland-16 Switching effortlessly from a blistering guitar to the trumpet, Wonderland kicked up the heat another level, and closed out a memorable performance.\r\n\r\nSome artists could easily have mailed in their performance for a show like this; early evening show, hot and humid, and a non-paying crowd. Instead, the Carolyn Wonderland Band just blasted it out of the park. They are a hard working three-piece band with full sound, and a band leader with incredible vocals, guitar work and personality to match.\r\n\r\nTexas blues at its best; Carolyn Wonderful.\r\n\r\nReview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@katstheory</a>\r\n\r\nArticle first published in OurVinyl.com as <a href=\"http://ourvinyl.com/carolyn-wonderland-nyc-concert-review/\">CAROLYN WONDERLAND @ NYC – CONCERT REVIEW</a>','Carolyn Wonderland @ NYC Winery 2','','inherit','open','open','','427-revision-v1','','','2013-10-03 21:57:21','2013-10-03 21:57:21','',427,'http://0332c8e.netsolhost.com/WordPress/2013/10/03/427-revision-v1/',0,'revision','',0),(430,2,'2013-10-03 23:25:06','2013-10-03 23:25:06','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Bangbangboomboom.jpg\"><img class=\"alignleft wp-image-400\" alt=\"Bangbangboomboom\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Bangbangboomboom.jpg\" /></a>When you talk about a life of highs and lows, <a href=\"http://bethhart.com/\">Beth Hart</a> could be the poster child. While her career was on the rise in the late 90’s, her personal life had crashed and burned. Bi-Polar swings, drugs, alcohol, self-confidence issues, all combined to literally leave her on the floor convulsing, until the love of a man and some self realization enabled her to enter rehab.\r\n\r\nDropped by her label and with a career in the crossroads, slowly Hart started rebuilding her life, and began the long road back to musical relevance. Her acclaimed 2011 collaboration with guitar master Joe Bonamassa, <em>Don’t Explain</em>, had Hart singing the blues but not living them.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-BethHart-1.jpg\"><img class=\"alignright wp-image-401\" alt=\"KatsTheory-BethHart-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-BethHart-1-300x145.jpg\" /></a>Beth Hart’s eighth album <em>Bang Bang Boom Boom</em> shows she hasn’t lost a bit of vocal ability or passion. The album begins with a sad piano and a vocal with a cabaret feel. “Baddest Blues” starts slowly but builds with the chorus. “If this is love, what was I thinking. If this is love, what the hell am I gonna do.” While the feel of the song rings true and overall is a top pick, perhaps it would have been better placed deeper into the album.\r\n\r\nThe title track creates a feeling of a Parisian club. Catchy, fun and a little different from the rest of the songs; it’s pleasant enough and will most likely showcase live much stronger. Once you reach the third track “Better Man,” Hart seems to hit her stride. Moving from blues to a rock beat, the gritty vocal finds a comfortable place between the two.\r\n\r\n“Caught Out In The Rain” is pure blues; sad, sultry and hard-core. Hart spits out the vocal as if the lyrics were burning ash. This is how you sing the blues. Featuring beautiful production by Kevin Shirley, and with the guitar work from Randy Flowers weeping out the story, it’s one of the best tracks on the album.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/bang-bang-boom-boom-beth-hart.jpg\"><img class=\"alignleft wp-image-402\" alt=\"bang-bang-boom-boom-beth-hart\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/bang-bang-boom-boom-beth-hart-300x256.jpg\" /></a>“Swing My Thing Back Around,” evokes a bit of the big band era and swing music. Changing the tempo and feel of the album, it’s a comfortable fit for Hart. “With You Everyday,” brings you back to the blues and the love lost, love found theme which is inherent to the album.\r\n\r\n“Thru The Window Of My Mind” is just a breathtaking journey both lyrically and vocally. Think of opening a window and letting the breeze pull your voice to the sky. “I want to know love before I die. Open the window.” Hart’s soaring range on this track is a joy to hear.\r\n\r\nAs you might expect “Spirit of God” brings in a rockin’ gospel feel, complete with hand-clapping and horn section; sure to get your feet moving. “There In Your Heart” reunites Hart with Joe Bonamassa, as he comes in for a flawless guitar solo made even better as Hart closes out the song on top of it.\r\n\r\n“The Ugliest House On The Block” combines so many sounds and takes so many directions, it’s hard to define. A story, a melody which starts with organ and turns to a bouncy, almost reggae beat, it’s a lot of things but it works. “Everything Must Change” is slow and bluesy, going back again to the painful side of love.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-BethHart-3.jpg\"><img class=\"alignright wp-image-403\" alt=\"KatsTheory-BethHart-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-BethHart-3-300x160.jpg\" /></a>The American version of <em>Bang Bang Boom Boom</em> has a bonus track which was taken from this past year’s Kennedy Center Honors broadcast. If you watched the show, it was one of those moments not to be forgotten. Honoring the legendary Buddy Guy, Hart backed on guitar by Jeff Beck, brought down the house and a tear to the eye, with a rendition of the classic from Etta James, “I’d Rather Go Blind.” Evoking the feeling of resignation rather than desperation, it is a totally delicious way to end the album; Hart delivers an impassioned delivery with Beck adding the exclamation point.\r\n\r\nWith the release of <em>Bang Bang Boom Boom</em>, Beth Hart is poised to regain headliner stature as witnessed by her invite to play this year at Eric Clapton’s Crossroad Festival. While there are a few uneven spots, the sheer delight to be derived from listening to her vocals, makes Hart’s latest release a must have not only for her fans, but for all those in need of a blues fix from a woman whose voice can grip your soul and twist it, or take your heart and lift it.\r\n\r\nReview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@KatsTheory</a>\r\n\r\nFirst published in OurVinyl.com as <a href=\"http://ourvinyl.com/beth-harts-bang-bang-boom-boom-album-review/\">BETH HART’S ‘BANG BANG BOOM BOOM’ – ALBUM REVIEW</a>','Beth Hart: Bang Bang Boom Boom','','publish','open','open','','beth-hart-bang-bang-boom-boom-2','','','2013-11-20 12:15:37','2013-11-20 18:15:37','',0,'http://0332c8e.netsolhost.com/WordPress/?p=430',0,'post','',0),(1298,1,'2013-11-20 12:15:37','2013-11-20 18:15:37','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Bangbangboomboom.jpg\"><img class=\"alignleft wp-image-400\" alt=\"Bangbangboomboom\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Bangbangboomboom.jpg\" /></a>When you talk about a life of highs and lows, <a href=\"http://bethhart.com/\">Beth Hart</a> could be the poster child. While her career was on the rise in the late 90’s, her personal life had crashed and burned. Bi-Polar swings, drugs, alcohol, self-confidence issues, all combined to literally leave her on the floor convulsing, until the love of a man and some self realization enabled her to enter rehab.\r\n\r\nDropped by her label and with a career in the crossroads, slowly Hart started rebuilding her life, and began the long road back to musical relevance. Her acclaimed 2011 collaboration with guitar master Joe Bonamassa, <em>Don’t Explain</em>, had Hart singing the blues but not living them.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-BethHart-1.jpg\"><img class=\"alignright wp-image-401\" alt=\"KatsTheory-BethHart-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-BethHart-1-300x145.jpg\" /></a>Beth Hart’s eighth album <em>Bang Bang Boom Boom</em> shows she hasn’t lost a bit of vocal ability or passion. The album begins with a sad piano and a vocal with a cabaret feel. “Baddest Blues” starts slowly but builds with the chorus. “If this is love, what was I thinking. If this is love, what the hell am I gonna do.” While the feel of the song rings true and overall is a top pick, perhaps it would have been better placed deeper into the album.\r\n\r\nThe title track creates a feeling of a Parisian club. Catchy, fun and a little different from the rest of the songs; it’s pleasant enough and will most likely showcase live much stronger. Once you reach the third track “Better Man,” Hart seems to hit her stride. Moving from blues to a rock beat, the gritty vocal finds a comfortable place between the two.\r\n\r\n“Caught Out In The Rain” is pure blues; sad, sultry and hard-core. Hart spits out the vocal as if the lyrics were burning ash. This is how you sing the blues. Featuring beautiful production by Kevin Shirley, and with the guitar work from Randy Flowers weeping out the story, it’s one of the best tracks on the album.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/bang-bang-boom-boom-beth-hart.jpg\"><img class=\"alignleft wp-image-402\" alt=\"bang-bang-boom-boom-beth-hart\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/bang-bang-boom-boom-beth-hart-300x256.jpg\" /></a>“Swing My Thing Back Around,” evokes a bit of the big band era and swing music. Changing the tempo and feel of the album, it’s a comfortable fit for Hart. “With You Everyday,” brings you back to the blues and the love lost, love found theme which is inherent to the album.\r\n\r\n“Thru The Window Of My Mind” is just a breathtaking journey both lyrically and vocally. Think of opening a window and letting the breeze pull your voice to the sky. “I want to know love before I die. Open the window.” Hart’s soaring range on this track is a joy to hear.\r\n\r\nAs you might expect “Spirit of God” brings in a rockin’ gospel feel, complete with hand-clapping and horn section; sure to get your feet moving. “There In Your Heart” reunites Hart with Joe Bonamassa, as he comes in for a flawless guitar solo made even better as Hart closes out the song on top of it.\r\n\r\n“The Ugliest House On The Block” combines so many sounds and takes so many directions, it’s hard to define. A story, a melody which starts with organ and turns to a bouncy, almost reggae beat, it’s a lot of things but it works. “Everything Must Change” is slow and bluesy, going back again to the painful side of love.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-BethHart-3.jpg\"><img class=\"alignright wp-image-403\" alt=\"KatsTheory-BethHart-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-BethHart-3-300x160.jpg\" /></a>The American version of <em>Bang Bang Boom Boom</em> has a bonus track which was taken from this past year’s Kennedy Center Honors broadcast. If you watched the show, it was one of those moments not to be forgotten. Honoring the legendary Buddy Guy, Hart backed on guitar by Jeff Beck, brought down the house and a tear to the eye, with a rendition of the classic from Etta James, “I’d Rather Go Blind.” Evoking the feeling of resignation rather than desperation, it is a totally delicious way to end the album; Hart delivers an impassioned delivery with Beck adding the exclamation point.\r\n\r\nWith the release of <em>Bang Bang Boom Boom</em>, Beth Hart is poised to regain headliner stature as witnessed by her invite to play this year at Eric Clapton’s Crossroad Festival. While there are a few uneven spots, the sheer delight to be derived from listening to her vocals, makes Hart’s latest release a must have not only for her fans, but for all those in need of a blues fix from a woman whose voice can grip your soul and twist it, or take your heart and lift it.\r\n\r\nReview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@KatsTheory</a>\r\n\r\nFirst published in OurVinyl.com as <a href=\"http://ourvinyl.com/beth-harts-bang-bang-boom-boom-album-review/\">BETH HART’S ‘BANG BANG BOOM BOOM’ – ALBUM REVIEW</a>','Beth Hart: Bang Bang Boom Boom','','inherit','open','open','','430-revision-v1','','','2013-11-20 12:15:37','2013-11-20 18:15:37','',430,'http://www.earthhertzrecords.com/2013/11/430-revision-v1/',0,'revision','',0),(431,2,'2013-10-03 23:24:29','2013-10-03 23:24:29','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Bangbangboomboom.jpg\"><img class=\"alignleft size-full wp-image-400\" alt=\"Bangbangboomboom\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Bangbangboomboom.jpg\" width=\"233\" height=\"216\" /></a>When you talk about a life of highs and lows, <a href=\"http://bethhart.com/\">Beth Hart</a> could be the poster child. While her career was on the rise in the late 90’s, her personal life had crashed and burned. Bi-Polar swings, drugs, alcohol, self-confidence issues, all combined to literally leave her on the floor convulsing, until the love of a man and some self realization enabled her to enter rehab.\r\n\r\nDropped by her label and with a career in the crossroads, slowly Hart started rebuilding her life, and began the long road back to musical relevance. Her acclaimed 2011 collaboration with guitar master Joe Bonamassa, <em>Don’t Explain</em>, had Hart singing the blues but not living them.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-BethHart-1.jpg\"><img class=\"alignright size-medium wp-image-401\" alt=\"KatsTheory-BethHart-1\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-BethHart-1-300x145.jpg\" width=\"300\" height=\"145\" /></a>Beth Hart’s eighth album <em>Bang Bang Boom Boom</em> shows she hasn’t lost a bit of vocal ability or passion. The album begins with a sad piano and a vocal with a cabaret feel. “Baddest Blues” starts slowly but builds with the chorus. “If this is love, what was I thinking. If this is love, what the hell am I gonna do.” While the feel of the song rings true and overall is a top pick, perhaps it would have been better placed deeper into the album.\r\n\r\nThe title track creates a feeling of a Parisian club. Catchy, fun and a little different from the rest of the songs; it’s pleasant enough and will most likely showcase live much stronger. Once you reach the third track “Better Man,” Hart seems to hit her stride. Moving from blues to a rock beat, the gritty vocal finds a comfortable place between the two.\r\n\r\n“Caught Out In The Rain” is pure blues; sad, sultry and hard-core. Hart spits out the vocal as if the lyrics were burning ash. This is how you sing the blues. Featuring beautiful production by Kevin Shirley, and with the guitar work from Randy Flowers weeping out the story, it’s one of the best tracks on the album.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/bang-bang-boom-boom-beth-hart.jpg\"><img class=\"alignleft size-medium wp-image-402\" alt=\"bang-bang-boom-boom-beth-hart\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/bang-bang-boom-boom-beth-hart-300x256.jpg\" width=\"300\" height=\"256\" /></a>“Swing My Thing Back Around,” evokes a bit of the big band era and swing music. Changing the tempo and feel of the album, it’s a comfortable fit for Hart. “With You Everyday,” brings you back to the blues and the love lost, love found theme which is inherent to the album.\r\n\r\n“Thru The Window Of My Mind” is just a breathtaking journey both lyrically and vocally. Think of opening a window and letting the breeze pull your voice to the sky. “I want to know love before I die. Open the window.” Hart’s soaring range on this track is a joy to hear.\r\n\r\nAs you might expect “Spirit of God” brings in a rockin’ gospel feel, complete with hand-clapping and horn section; sure to get your feet moving. “There In Your Heart” reunites Hart with Joe Bonamassa, as he comes in for a flawless guitar solo made even better as Hart closes out the song on top of it.\r\n\r\n“The Ugliest House On The Block” combines so many sounds and takes so many directions, it’s hard to define. A story, a melody which starts with organ and turns to a bouncy, almost reggae beat, it’s a lot of things but it works. “Everything Must Change” is slow and bluesy, going back again to the painful side of love.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-BethHart-3.jpg\"><img class=\"alignright size-medium wp-image-403\" alt=\"KatsTheory-BethHart-3\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-BethHart-3-300x160.jpg\" width=\"300\" height=\"160\" /></a>The American version of <em>Bang Bang Boom Boom</em> has a bonus track which was taken from this past year’s Kennedy Center Honors broadcast. If you watched the show, it was one of those moments not to be forgotten. Honoring the legendary Buddy Guy, Hart backed on guitar by Jeff Beck, brought down the house and a tear to the eye, with a rendition of the classic from Etta James, “I’d Rather Go Blind.” Evoking the feeling of resignation rather than desperation, it is a totally delicious way to end the album; Hart delivers an impassioned delivery with Beck adding the exclamation point.\r\n\r\nWith the release of <em>Bang Bang Boom Boom</em>, Beth Hart is poised to regain headliner stature as witnessed by her invite to play this year at Eric Clapton’s Crossroad Festival. While there are a few uneven spots, the sheer delight to be derived from listening to her vocals, makes Hart’s latest release a must have not only for her fans, but for all those in need of a blues fix from a woman whose voice can grip your soul and twist it, or take your heart and lift it.\r\n\r\nReview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@KatsTheory</a>\r\n\r\nFirst published in OurVinyl.com as <a href=\"http://ourvinyl.com/beth-harts-bang-bang-boom-boom-album-review/\">BETH HART’S ‘BANG BANG BOOM BOOM’ – ALBUM REVIEW</a>','Beth Hart: Bang Bang Boom Boom 2','','inherit','open','open','','430-revision-v1','','','2013-10-03 23:24:29','2013-10-03 23:24:29','',430,'http://0332c8e.netsolhost.com/WordPress/2013/10/03/430-revision-v1/',0,'revision','',0),(432,2,'2013-10-04 00:32:28','2013-10-04 00:32:28','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg\"><img class=\"alignleft wp-image-433\" alt=\"Roy Orbison\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Roy-Orbison.jpg\" /></a>In an age rife with mp3 downloads, boy bands and hip hop samples, the roots of rock and roll have often become shrouded by trends. But as vinyl begins to crackle and pop its way back into the musical landscape and a generation or two become nostalgic for a time when melody and lyrics were king, a listen to the voices and musicianship that helped shape what they grew up on and enjoy today is a welcome treat, as is a read through the history and stories of how it all came to be.\r\n\r\nThat’s exactly what we get with <a href=\"http://johnkruth.com/\">John Kruth</a>‘s biography of the late, great Roy Orbison, Rhapsody In Black. Author of such musical biographies as the award winning To Live’s To Fly: The Ballad of the Late, Great Townes Van Zandt, Kruth weaves a tale transcendent of the typical musical bio-read. His is a tale told from the perspective of a music historian (Kruth is a professor of Musical History) and the voice of a musician whose played the music of which he writes. The author’s trademark folksy musician voice draws the reader deeply into the world inhabited by such musical giants of the 1950s as Elvis Presley, Buddy Holly, Chet Atkins and the legendary Memphis Sun Studios, which launched their careers. A detailed account of the music scene and the rise of Orbison’s career within it sprawl out before the reader like a yellow brick road for the audiophile, while the author closely knits history with anecdotes. It’s a history and a story made vivid and enthralling for both the average music lover and the musician alike.\r\n\r\nPain and longing abound in the music of Roy Orbison, as is evident in his best known hit “Oh, Pretty Woman” and the reasons are well documented here. If the details of Roy’s tragic life have already been made public knowledge, never have they been told in such a way that makes you feel that you were there experiencing the pain and isolation along with Orbison as they are here.\r\n\r\nFrom his days growing up in Texas, to his residency as a Traveling Wilbury and everything in between, we get the chance to walk the straight and narrow with music’s quiet man; more the homebody than rebel rouser, the unmistakeable voice and the legend behind the dark Ray Bans.\r\n\r\n<strong>Review by Linda Roy.</strong>\r\n\r\n<strong>Linda is a writer and musician who blogs at <a href=\"http://elleroywashere.com/\" target=\"_blank\">elleroy was here</a> and <a href=\"http://raisedontheradio.com/\" target=\"_blank\">Raised on the Radio</a>. She leads the Indie Americana band <a href=\"http://jehovawaitresses.com/\" target=\"_blank\">Jehova Waitresses</a> and writes at <a href=\"http://www.aiminglow.com/\" target=\"_blank\">Aiming Low</a>, <a href=\"http://sprocketink.com/\" target=\"_blank\">Sprocket Ink</a> and <a href=\"http://www.funnynotslutty.com/\" target=\"_blank\">Funny Not Slutty</a>. Connect with her on <a href=\"http://www.twitter.com/modmomelleroy\" target=\"_blank\">Twitter</a>, <a href=\"https://www.facebook.com/ModMomBeyondIndieDom\" target=\"_blank\">Facebook</a> and <a href=\"https://plus.google.com/u/0/116644246137576659052/posts\" target=\"_blank\">Google+</a></strong>','Rhapsody in Black: The Life and Music of Roy Orbison','','publish','open','open','','rhapsody-in-black-the-life-and-music-of-roy-orbison','','','2013-11-20 12:18:43','2013-11-20 18:18:43','',0,'http://0332c8e.netsolhost.com/WordPress/?p=432',0,'post','',0),(433,2,'2013-10-04 00:13:22','2013-10-04 00:13:22','','Roy Orbison','','inherit','open','open','','roy-orbison','','','2013-10-04 00:13:22','2013-10-04 00:13:22','',432,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg',0,'attachment','image/jpeg',0),(436,2,'2013-10-04 00:25:18','2013-10-04 00:25:18','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg\"><img class=\"alignleft size-full wp-image-433\" alt=\"Roy Orbison\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg\" width=\"199\" height=\"300\" /></a>In an age rife with mp3 downloads, boy bands and hip hop samples, the roots of rock and roll have often become shrouded by trends. But as vinyl begins to crackle and pop its way back into the musical landscape and a generation or two become nostalgic for a time when melody and lyrics were king, a listen to the voices and musicianship that helped shape what they grew up on and enjoy today is a welcome treat, as is a read through the history and stories of how it all came to be.\r\n\r\nThat’s exactly what we get with <a href=\"http://johnkruth.com/\">John Kruth</a>‘s biography of the late, great Roy Orbison, Rhapsody In Black. Author of such musical biographies as the award winning To Live’s To Fly: The Ballad of the Late, Great Townes Van Zandt, Kruth weaves a tale transcendent of the typical musical bio-read. His is a tale told from the perspective of a music historian (Kruth is a professor of Musical History) and the voice of a musician whose played the music of which he writes. The author’s trademark folksy musician voice draws the reader deeply into the world inhabited by such musical giants of the 1950s as Elvis Presley, Buddy Holly, Chet Atkins and the legendary Memphis Sun Studios, which launched their careers. A detailed account of the music scene and the rise of Orbison’s career within it sprawl out before the reader like a yellow brick road for the audiophile, while the author closely knits history with anecdotes. It’s a history and a story made vivid and enthralling for both the average music lover and the musician alike.\r\n\r\nPain and longing abound in the music of Roy Orbison, as is evident in his best known hit “Oh, Pretty Woman” and the reasons are well documented here. If the details of Roy’s tragic life have already been made public knowledge, never have they been told in such a way that makes you feel that you were there experiencing the pain and isolation along with Orbison as they are here.\r\n\r\nFrom his days growing up in Texas, to his residency as a Traveling Wilbury and everything in between, we get the chance to walk the straight and narrow with music’s quiet man; more the homebody than rebel rouser, the unmistakeable voice and the legend behind the dark Ray Bans.\r\n\r\nReview by Linda Roy.\r\n\r\nLinda is a writer and musician who blogs at <a href=\"http://elleroywashere.com/\" target=\"_blank\">elleroy was here</a> and <a href=\"http://raisedontheradio.com/\" target=\"_blank\">Raised on the Radio</a>. She leads the Indie Americana band <a href=\"http://jehovawaitresses.com/\" target=\"_blank\">Jehova Waitresses</a> and writes at <a href=\"http://www.aiminglow.com/\" target=\"_blank\">Aiming Low</a>, <a href=\"http://sprocketink.com/\" target=\"_blank\">Sprocket Ink</a> and <a href=\"http://www.funnynotslutty.com/\" target=\"_blank\">Funny Not Slutty</a>. Connect with her on <a href=\"http://www.twitter.com/modmomelleroy\" target=\"_blank\">Twitter</a>, <a href=\"https://www.facebook.com/ModMomBeyondIndieDom\" target=\"_blank\">Facebook</a> and <a href=\"https://plus.google.com/u/0/116644246137576659052/posts\" target=\"_blank\">Google+</a>','Rhapsody in Black: The Life and Music of Roy Orbison','','inherit','open','open','','432-revision-v1','','','2013-10-04 00:25:18','2013-10-04 00:25:18','',432,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/432-revision-v1/',0,'revision','',0),(434,2,'2013-10-04 00:15:52','2013-10-04 00:15:52','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg\"><img class=\"alignleft size-full wp-image-433\" alt=\"Roy Orbison\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg\" width=\"199\" height=\"300\" /></a>In an age rife with mp3 downloads, boy bands and hip hop samples, the roots of rock and roll have often become shrouded by trends. But as vinyl begins to crackle and pop its way back into the musical landscape and a generation or two become nostalgic for a time when melody and lyrics were king, a listen to the voices and musicianship that helped shape what they grew up on and enjoy today is a welcome treat, as is a read through the history and stories of how it all came to be.\r\n\r\nThat’s exactly what we get with <a href=\"http://johnkruth.com/\">John Kruth</a>‘s biography of the late, great Roy Orbison,<a href=\"http://www.amazon.com/Rhapsody-Black-Life-Music-Orbison/dp/1476886792\">Rhapsody In Black</a>. Author of such musical biographies as the award winning <a href=\"http://www.amazon.com/To-Lives-Fly-Ballad-Townes/dp/0306816040\">To Live’s To Fly: The Ballad of the Late, Great Townes Van Zandt</a>, Kruth weaves a tale transcendent of the typical musical bio-read. His is a tale told from the perspective of a music historian (Kruth is a professor of Musical History) and the voice of a musician whose played the music of which he writes. The author’s trademark folksy musician voice draws the reader deeply into the world inhabited by such musical giants of the 1950s as Elvis Presley, Buddy Holly, Chet Atkins and the legendary Memphis Sun Studios, which launched their careers. A detailed account of the music scene and the rise of Orbison’s career within it sprawl out before the reader like a yellow brick road for the audiophile, while the author closely knits history with anecdotes. It’s a history and a story made vivid and enthralling for both the average music lover and the musician alike.\r\n\r\nPain and longing abound in the music of Roy Orbison, as is evident in his best known hit “Oh, Pretty Woman” and the reasons are well documented here. If the details of Roy’s tragic life have already been made public knowledge, never have they been told in such a way that makes you feel that you were there experiencing the pain and isolation along with Orbison as they are here.\r\n\r\nFrom his days growing up in Texas, to his residency as a Traveling Wilbury and everything in between, we get the chance to walk the straight and narrow with music’s quiet man; more the homebody than rebel rouser, the unmistakeable voice and the legend behind the dark Ray Bans.\r\n\r\nReview by Linda Roy.\r\n\r\nLinda is a writer and musician who blogs at <a href=\"http://elleroywashere.com/\" target=\"_blank\">elleroy was here</a> and <a href=\"http://raisedontheradio.com/\" target=\"_blank\">Raised on the Radio</a>. She leads the Indie Americana band <a href=\"http://jehovawaitresses.com/\" target=\"_blank\">Jehova Waitresses</a> and writes at <a href=\"http://www.aiminglow.com/\" target=\"_blank\">Aiming Low</a>, <a href=\"http://sprocketink.com/\" target=\"_blank\">Sprocket Ink</a> and <a href=\"http://www.funnynotslutty.com/\" target=\"_blank\">Funny Not Slutty</a>. Connect with her on <a href=\"http://www.twitter.com/modmomelleroy\" target=\"_blank\">Twitter</a>, <a href=\"https://www.facebook.com/ModMomBeyondIndieDom\" target=\"_blank\">Facebook</a> and <a href=\"https://plus.google.com/u/0/116644246137576659052/posts\" target=\"_blank\">Google+</a>','Rhapsody in Black: The Life and Music of Roy Orbison','','inherit','open','open','','432-revision-v1','','','2013-10-04 00:15:52','2013-10-04 00:15:52','',432,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/432-revision-v1/',0,'revision','',0),(435,2,'2013-10-04 00:23:35','2013-10-04 00:23:35','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg\"><img class=\"alignleft size-full wp-image-433\" alt=\"Roy Orbison\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg\" width=\"199\" height=\"300\" /></a>In an age rife with mp3 downloads, boy bands and hip hop samples, the roots of rock and roll have often become shrouded by trends. But as vinyl begins to crackle and pop its way back into the musical landscape and a generation or two become nostalgic for a time when melody and lyrics were king, a listen to the voices and musicianship that helped shape what they grew up on and enjoy today is a welcome treat, as is a read through the history and stories of how it all came to be.\r\n\r\nThat’s exactly what we get with <a href=\"http://johnkruth.com/\">John Kruth</a>‘s biography of the late, great Roy Orbison, Rhapsody In Black. Author of such musical biographies as the award winning <a href=\"http://www.amazon.com/To-Lives-Fly-Ballad-Townes/dp/0306816040\">To Live’s To Fly: The Ballad of the Late, Great Townes Van Zandt</a>, Kruth weaves a tale transcendent of the typical musical bio-read. His is a tale told from the perspective of a music historian (Kruth is a professor of Musical History) and the voice of a musician whose played the music of which he writes. The author’s trademark folksy musician voice draws the reader deeply into the world inhabited by such musical giants of the 1950s as Elvis Presley, Buddy Holly, Chet Atkins and the legendary Memphis Sun Studios, which launched their careers. A detailed account of the music scene and the rise of Orbison’s career within it sprawl out before the reader like a yellow brick road for the audiophile, while the author closely knits history with anecdotes. It’s a history and a story made vivid and enthralling for both the average music lover and the musician alike.\r\n\r\nPain and longing abound in the music of Roy Orbison, as is evident in his best known hit “Oh, Pretty Woman” and the reasons are well documented here. If the details of Roy’s tragic life have already been made public knowledge, never have they been told in such a way that makes you feel that you were there experiencing the pain and isolation along with Orbison as they are here.\r\n\r\nFrom his days growing up in Texas, to his residency as a Traveling Wilbury and everything in between, we get the chance to walk the straight and narrow with music’s quiet man; more the homebody than rebel rouser, the unmistakeable voice and the legend behind the dark Ray Bans.\r\n\r\nReview by Linda Roy.\r\n\r\nLinda is a writer and musician who blogs at <a href=\"http://elleroywashere.com/\" target=\"_blank\">elleroy was here</a> and <a href=\"http://raisedontheradio.com/\" target=\"_blank\">Raised on the Radio</a>. She leads the Indie Americana band <a href=\"http://jehovawaitresses.com/\" target=\"_blank\">Jehova Waitresses</a> and writes at <a href=\"http://www.aiminglow.com/\" target=\"_blank\">Aiming Low</a>, <a href=\"http://sprocketink.com/\" target=\"_blank\">Sprocket Ink</a> and <a href=\"http://www.funnynotslutty.com/\" target=\"_blank\">Funny Not Slutty</a>. Connect with her on <a href=\"http://www.twitter.com/modmomelleroy\" target=\"_blank\">Twitter</a>, <a href=\"https://www.facebook.com/ModMomBeyondIndieDom\" target=\"_blank\">Facebook</a> and <a href=\"https://plus.google.com/u/0/116644246137576659052/posts\" target=\"_blank\">Google+</a>','Rhapsody in Black: The Life and Music of Roy Orbison','','inherit','open','open','','432-revision-v1','','','2013-10-04 00:23:35','2013-10-04 00:23:35','',432,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/432-revision-v1/',0,'revision','',0),(437,2,'2013-10-04 00:29:05','2013-10-04 00:29:05','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg\"><img class=\"alignleft size-full wp-image-433\" alt=\"Roy Orbison\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg\" width=\"199\" height=\"300\" /></a>In an age rife with mp3 downloads, boy bands and hip hop samples, the roots of rock and roll have often become shrouded by trends. But as vinyl begins to crackle and pop its way back into the musical landscape and a generation or two become nostalgic for a time when melody and lyrics were king, a listen to the voices and musicianship that helped shape what they grew up on and enjoy today is a welcome treat, as is a read through the history and stories of how it all came to be.\r\n\r\nThat’s exactly what we get with <a href=\"http://johnkruth.com/\">John Kruth</a>‘s biography of the late, great Roy Orbison, Rhapsody In Black. Author of such musical biographies as the award winning To Live’s To Fly: The Ballad of the Late, Great Townes Van Zandt, Kruth weaves a tale transcendent of the typical musical bio-read. His is a tale told from the perspective of a music historian (Kruth is a professor of Musical History) and the voice of a musician whose played the music of which he writes. The author’s trademark folksy musician voice draws the reader deeply into the world inhabited by such musical giants of the 1950s as Elvis Presley, Buddy Holly, Chet Atkins and the legendary Memphis Sun Studios, which launched their careers. A detailed account of the music scene and the rise of Orbison’s career within it sprawl out before the reader like a yellow brick road for the audiophile, while the author closely knits history with anecdotes. It’s a history and a story made vivid and enthralling for both the average music lover and the musician alike.\r\n\r\nPain and longing abound in the music of Roy Orbison, as is evident in his best known hit “Oh, Pretty Woman” and the reasons are well documented here. If the details of Roy’s tragic life have already been made public knowledge, never have they been told in such a way that makes you feel that you were there experiencing the pain and isolation along with Orbison as they are here.\r\n\r\nFrom his days growing up in Texas, to his residency as a Traveling Wilbury and everything in between, we get the chance to walk the straight and narrow with music’s quiet man; more the homebody than rebel rouser, the unmistakeable voice and the legend behind the dark Ray Bans.\r\n\r\n<strong>Review by Linda Roy.</strong>\r\n\r\nLinda is a writer and musician who blogs at <a href=\"http://elleroywashere.com/\" target=\"_blank\">elleroy was here</a> and <a href=\"http://raisedontheradio.com/\" target=\"_blank\">Raised on the Radio</a>. She leads the Indie Americana band <a href=\"http://jehovawaitresses.com/\" target=\"_blank\">Jehova Waitresses</a> and writes at <a href=\"http://www.aiminglow.com/\" target=\"_blank\">Aiming Low</a>, <a href=\"http://sprocketink.com/\" target=\"_blank\">Sprocket Ink</a> and <a href=\"http://www.funnynotslutty.com/\" target=\"_blank\">Funny Not Slutty</a>. Connect with her on <a href=\"http://www.twitter.com/modmomelleroy\" target=\"_blank\">Twitter</a>, <a href=\"https://www.facebook.com/ModMomBeyondIndieDom\" target=\"_blank\">Facebook</a> and <a href=\"https://plus.google.com/u/0/116644246137576659052/posts\" target=\"_blank\">Google+</a>','Rhapsody in Black: The Life and Music of Roy Orbison','','inherit','open','open','','432-revision-v1','','','2013-10-04 00:29:05','2013-10-04 00:29:05','',432,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/432-revision-v1/',0,'revision','',0),(439,1,'2013-10-04 17:16:07','2013-10-04 17:16:07','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-3.jpg\"><img class=\"aligncenter size-large wp-image-383\" alt=\"KatsTheory-Wonderland-3\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-3-1024x682.jpg\" width=\"650\" height=\"432\" /></a>As the final show in The 5th Annual Hudson Square Music & Wine Festival at City Winery in New York City, <a href=\"http://carolynwonderland.com/\">Carolyn Wonderland</a> was the perfect choice to end the free concert series for another year. Held outdoors in the rear of the Manhattan venue, the gates opened at the end of the workday, creating a sweet and stress-free way to start the evening.\r\n\r\nWhile it seems Carolyn Wonderland has an endless tour schedule, her trips to New York City are to be taken as small gifts to treasure, because her singing and style of blues are exactly that, a treasure. Originally from Houston, her home is now Austin, where she is heavily involved in the music community.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-4.jpg\"><img class=\"alignleft size-medium wp-image-384\" alt=\"KatsTheory-Wonderland-4\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-4-200x300.jpg\" width=\"200\" height=\"300\" /></a>As the temperature ebbed slightly, the humidity did not. Wonderland, dressed in black with boots, guitar strap and hair, all in burgundy, took the weather in stride, as she proceeded to heat things up musically. Opening the show with “Come Together,” a song she co-wrote with Ruthie Foster, Wonderland offered a taste both vocally and musically of what was to come. With a voice that’s a little Janis Joplin, a little Marsha Ball, a little Susan Tedeschi and a whole lot of powerful, Wonderland vocals are unique and at the same time familiar, as she belts out the blues.\r\n\r\nThroughout the set Wonderland mixed in her own music with that of other musicians, much of it friends and fellow musicians from her home state, careful to give credit on each song to the writer. Gently accepting applause from the crowd with a “thank you kindly,” her southern manners softened the rough edg es of a NYC workday.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-7.jpg\"><img class=\"alignright size-medium wp-image-386\" alt=\"KatsTheory-Wonderland-7\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-7-300x200.jpg\" width=\"300\" height=\"200\" /></a>A little finger pickin’ led the way into “Two Trains,” with tight backing from Rob Hooper on drums and Cole El-Saleh on keyboards and key-bass. Wonderland’s set list was a nice mixture of high, low, fast, and slow numbers, keeping the crowd engaged throughout.\r\n\r\nAfter a few words about her home state’s great music and bad politics, the band launched into a passionate cover of Alice Cooper’s “Only Women Bleed.” She was then joined onstage by fellow blues singer Shelley King for “Money In The Game.” Wonderland then started making a few eclectic choices, sampling a little Los Lobos then going to The Band’s “Don’t Do It,” to Joplin’s “What Good Can Drinking Do.” Coming to the end of the show was “Palace Of The King,” a song written in honor of the late, great bluesman Freddie King.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-16.jpg\"><img class=\"alignleft size-medium wp-image-387\" alt=\"KatsTheory-Wonderland-16\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/KatsTheory-Wonderland-16-200x300.jpg\" width=\"200\" height=\"300\" /></a>If you know Carolyn Wonderland, you know she has been known to pull out a trumpet and play. The only question was whether she would on this particular evening. As the first few notes of “Walk On” were played, the odds seemed to say yes.KatsTheory-Wonderland-16 Switching effortlessly from a blistering guitar to the trumpet, Wonderland kicked up the heat another level, and closed out a memorable performance.\r\n\r\nSome artists could easily have mailed in their performance for a show like this; early evening show, hot and humid, and a non-paying crowd. Instead, the Carolyn Wonderland Band just blasted it out of the park. They are a hard working three-piece band with full sound, and a band leader with incredible vocals, guitar work and personality to match.\r\n\r\nTexas blues at its best; Carolyn Wonderful.\r\n\r\nReview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@katstheory</a>\r\n\r\nArticle first published in OurVinyl.com as <a href=\"http://ourvinyl.com/carolyn-wonderland-nyc-concert-review/\">CAROLYN WONDERLAND @ NYC – CONCERT REVIEW</a>','Carolyn Wonderland @ NYC Winery','','inherit','open','open','','427-revision-v1','','','2013-10-04 17:16:07','2013-10-04 17:16:07','',427,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/427-revision-v1/',0,'revision','',0),(440,1,'2013-10-04 17:19:15','2013-10-04 17:19:15','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg\"><img class=\"alignleft wp-image-433\" alt=\"Roy Orbison\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg\" width=\"199\" height=\"300\" /></a>In an age rife with mp3 downloads, boy bands and hip hop samples, the roots of rock and roll have often become shrouded by trends. But as vinyl begins to crackle and pop its way back into the musical landscape and a generation or two become nostalgic for a time when melody and lyrics were king, a listen to the voices and musicianship that helped shape what they grew up on and enjoy today is a welcome treat, as is a read through the history and stories of how it all came to be.\r\n\r\nThat’s exactly what we get with <a href=\"http://johnkruth.com/\">John Kruth</a>‘s biography of the late, great Roy Orbison, Rhapsody In Black. Author of such musical biographies as the award winning To Live’s To Fly: The Ballad of the Late, Great Townes Van Zandt, Kruth weaves a tale transcendent of the typical musical bio-read. His is a tale told from the perspective of a music historian (Kruth is a professor of Musical History) and the voice of a musician whose played the music of which he writes. The author’s trademark folksy musician voice draws the reader deeply into the world inhabited by such musical giants of the 1950s as Elvis Presley, Buddy Holly, Chet Atkins and the legendary Memphis Sun Studios, which launched their careers. A detailed account of the music scene and the rise of Orbison’s career within it sprawl out before the reader like a yellow brick road for the audiophile, while the author closely knits history with anecdotes. It’s a history and a story made vivid and enthralling for both the average music lover and the musician alike.\r\n\r\nPain and longing abound in the music of Roy Orbison, as is evident in his best known hit “Oh, Pretty Woman” and the reasons are well documented here. If the details of Roy’s tragic life have already been made public knowledge, never have they been told in such a way that makes you feel that you were there experiencing the pain and isolation along with Orbison as they are here.\r\n\r\nFrom his days growing up in Texas, to his residency as a Traveling Wilbury and everything in between, we get the chance to walk the straight and narrow with music’s quiet man; more the homebody than rebel rouser, the unmistakeable voice and the legend behind the dark Ray Bans.\r\n\r\n<strong>Review by Linda Roy.</strong>\r\n\r\nLinda is a writer and musician who blogs at <a href=\"http://elleroywashere.com/\" target=\"_blank\">elleroy was here</a> and <a href=\"http://raisedontheradio.com/\" target=\"_blank\">Raised on the Radio</a>. She leads the Indie Americana band <a href=\"http://jehovawaitresses.com/\" target=\"_blank\">Jehova Waitresses</a> and writes at <a href=\"http://www.aiminglow.com/\" target=\"_blank\">Aiming Low</a>, <a href=\"http://sprocketink.com/\" target=\"_blank\">Sprocket Ink</a> and <a href=\"http://www.funnynotslutty.com/\" target=\"_blank\">Funny Not Slutty</a>. Connect with her on <a href=\"http://www.twitter.com/modmomelleroy\" target=\"_blank\">Twitter</a>, <a href=\"https://www.facebook.com/ModMomBeyondIndieDom\" target=\"_blank\">Facebook</a> and <a href=\"https://plus.google.com/u/0/116644246137576659052/posts\" target=\"_blank\">Google+</a>','Rhapsody in Black: The Life and Music of Roy Orbison','','inherit','open','open','','432-revision-v1','','','2013-10-04 17:19:15','2013-10-04 17:19:15','',432,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/432-revision-v1/',0,'revision','',0),(441,1,'2014-04-14 11:16:27','2014-04-14 17:16:27','<span style=\"font-size: 16px;\">\n<strong>Contact Earth Hertz Records</strong>\n<span style=\"font-size: 12px;\">Nashville, TN</span>\n<span style=\"font-size: 12px;\">(615) 824-8649</span>\n</span>\n\n<strong>Robert Xeno\n</strong>CEO\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\n\n<strong>Eloa Xeno </strong>\nCFO and Director of Art\n<a href=\"mailto:exeno@earthhertz.com\">exeno@earthhertz.com</a>\n\n<strong>Kath Galasso </strong>\nNew Media Coordinator and Director of Artist Promotions\n<a href=\"mailto:kgalasso@earthhertz.com\">kgalasso@earthhertz.com</a>\n\n<strong>Ashley Smith </strong>\nCFO and Director of Art\n<a href=\"mailto:exeno@earthhertz.com\">exeno@earthhertz.com</a>\n\n<strong>Joshua Ayers\n</strong>Producer\n<a href=\"mailto:kgalasso@earthhertz.com\">jayers@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-autosave-v1','','','2014-04-14 11:16:27','2014-04-14 17:16:27','',23,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/23-autosave-v1/',0,'revision','',0),(442,1,'2013-10-04 19:55:48','2013-10-04 19:55:48','<strong>Contact Earth Hertz Records\r\n</strong><span style=\"font-size: 16px;\">(615) 824-8649</span>\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>EloaXeno </strong>\r\nCFO and Artist in Residence\r\n<a href=\"mailto:rxeno@earthhertz.com\">eloa@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\n<span style=\"font-size: 16px;\">New Media Coordinator and Director of Artist Promotions </span>\r\n<a href=\"mailto:rxeno@earthhertz.com\">kgalasso@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-10-04 19:55:48','2013-10-04 19:55:48','',23,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/23-revision-v1/',0,'revision','',0),(443,1,'2013-10-04 19:56:55','2013-10-04 19:56:55','<strong>Contact Earth Hertz Records\r\n</strong><span style=\"font-size: 16px;\">(615) 824-8649</span>\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>EloaXeno </strong>\r\nCFO and Artist in Residence\r\n<a href=\"mailto:rxeno@earthhertz.com\">eloa@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\nCFO New Media Coordinator and Director of Artist Promiootions<span style=\"font-size: 16px;\"> </span>\r\n<a href=\"mailto:rxeno@earthhertz.com\">kgalasso@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-10-04 19:56:55','2013-10-04 19:56:55','',23,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/23-revision-v1/',0,'revision','',0),(444,1,'2013-10-04 19:58:17','2013-10-04 19:58:17','<strong>Contact Earth Hertz Records\r\n</strong><span style=\"font-size: 16px;\">(615) 824-8649</span>\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>Eloa Xeno </strong>\r\nCFO and Director of Art\r\n<a href=\"mailto:rxeno@earthhertz.com\">eloa@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\nCFO New Media Coordinator and Director of Artist Promiootions<span style=\"font-size: 16px;\"> </span>\r\n<a href=\"mailto:rxeno@earthhertz.com\">kgalasso@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-10-04 19:58:17','2013-10-04 19:58:17','',23,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/23-revision-v1/',0,'revision','',0),(445,1,'2013-10-04 19:59:19','2013-10-04 19:59:19','<strong>Contact Earth Hertz Records </strong><span style=\"font-size: 16px;\">(615) 824-8649</span>\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>Eloa Xeno </strong>\r\nCFO and Director of Art\r\n<a href=\"mailto:rxeno@earthhertz.com\">eloa@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\nCFO New Media Coordinator and Director of Artist Promiootions<span style=\"font-size: 16px;\"> </span>\r\n<a href=\"mailto:rxeno@earthhertz.com\">kgalasso@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-10-04 19:59:19','2013-10-04 19:59:19','',23,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/23-revision-v1/',0,'revision','',0),(446,1,'2013-10-04 19:59:57','2013-10-04 19:59:57','<strong>Contact Earth Hertz Records\r\nNashville, TN\r\n</strong><span style=\"font-size: 16px;\">(615) 824-8649</span>\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>Eloa Xeno </strong>\r\nCFO and Director of Art\r\n<a href=\"mailto:rxeno@earthhertz.com\">eloa@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\nCFO New Media Coordinator and Director of Artist Promiootions<span style=\"font-size: 16px;\"> </span>\r\n<a href=\"mailto:rxeno@earthhertz.com\">kgalasso@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-10-04 19:59:57','2013-10-04 19:59:57','',23,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/23-revision-v1/',0,'revision','',0),(447,1,'2013-10-04 20:00:39','2013-10-04 20:00:39','<span style=\"font-size: 16px;\">\r\n<strong>Contact Earth Hertz Records\r\nNashville, TN\r\n</strong>\r\n</span>\r\n<span style=\"font-size: 12px;\">(615) 824-8649</span>\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>Eloa Xeno </strong>\r\nCFO and Director of Art\r\n<a href=\"mailto:rxeno@earthhertz.com\">eloa@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\nCFO New Media Coordinator and Director of Artist Promiootions<span style=\"font-size: 16px;\"> </span>\r\n<a href=\"mailto:rxeno@earthhertz.com\">kgalasso@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-10-04 20:00:39','2013-10-04 20:00:39','',23,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/23-revision-v1/',0,'revision','',0),(448,1,'2013-10-04 20:01:08','2013-10-04 20:01:08','<span style=\"font-size: 16px;\">\r\n<strong>Contact Earth Hertz Records\r\nNashville, TN\r\n</strong>\r\n<span style=\"font-size: 12px;\">(615) 824-8649</span>\r\n</span>\r\n\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>Eloa Xeno </strong>\r\nCFO and Director of Art\r\n<a href=\"mailto:rxeno@earthhertz.com\">eloa@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\nCFO New Media Coordinator and Director of Artist Promiootions<span style=\"font-size: 16px;\"> </span>\r\n<a href=\"mailto:rxeno@earthhertz.com\">kgalasso@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-10-04 20:01:08','2013-10-04 20:01:08','',23,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/23-revision-v1/',0,'revision','',0),(449,1,'2013-10-04 20:01:04','2013-10-04 20:01:04','<span style=\"font-size: 16px;\">\r\n<strong>Contact Earth Hertz Records Nashville, TN</strong>\r\n<span style=\"font-size: 12px;\">(615) 824-8649</span>\r\n</span>\r\n\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>Eloa Xeno </strong>\r\nCFO and Director of Art\r\n<a href=\"mailto:rxeno@earthhertz.com\">eloa@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\nCFO New Media Coordinator and Director of Artist Promiootions<span style=\"font-size: 16px;\"> </span>\r\n<a href=\"mailto:rxeno@earthhertz.com\">kgalasso@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-10-04 20:01:04','2013-10-04 20:01:04','',23,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/23-revision-v1/',0,'revision','',0),(450,1,'2013-10-04 20:02:20','2013-10-04 20:02:20','<span style=\"font-size: 16px;\">\r\n<strong>Contact Earth Hertz Records</strong>\r\n<span style=\"font-size: 12px;\">Nashville, TN</span>\r\n<span style=\"font-size: 12px;\">(615) 824-8649</span>\r\n</span>\r\n\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>Eloa Xeno </strong>\r\nCFO and Director of Art\r\n<a href=\"mailto:rxeno@earthhertz.com\">eloa@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\nCFO New Media Coordinator and Director of Artist Promiootions<span style=\"font-size: 16px;\"> </span>\r\n<a href=\"mailto:rxeno@earthhertz.com\">kgalasso@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-10-04 20:02:20','2013-10-04 20:02:20','',23,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/23-revision-v1/',0,'revision','',0),(452,1,'2013-09-18 12:46:01','2013-09-18 12:46:01','Store Infos','STORE','','inherit','open','open','','21-revision-v1','','','2013-09-18 12:46:01','2013-09-18 12:46:01','',21,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/21-revision-v1/',0,'revision','',0),(453,1,'2013-10-04 20:10:36','2013-10-04 20:10:36','<iframe src=\"http://www.streambeam.us\"></iframe> ','STORE','','inherit','open','open','','21-revision-v1','','','2013-10-04 20:10:36','2013-10-04 20:10:36','',21,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/21-revision-v1/',0,'revision','',0),(455,1,'2013-10-04 20:12:53','2013-10-04 20:12:53','','STORE','','inherit','open','open','','21-revision-v1','','','2013-10-04 20:12:53','2013-10-04 20:12:53','',21,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/21-revision-v1/',0,'revision','',0),(454,1,'2013-10-04 20:13:04','2013-10-04 20:13:04','<iframe src=\"http://www.streambeam.us\" seamless></iframe> ','STORE','','inherit','open','open','','21-revision-v1','','','2013-10-04 20:13:04','2013-10-04 20:13:04','',21,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/21-revision-v1/',0,'revision','',0),(456,1,'2013-10-04 20:15:35','2013-10-04 20:15:35','Music\nVideo\nBooks\nClothing\n\nPosters\nArtwork\nMemorabilia\n','STORE','','inherit','open','open','','21-autosave-v1','','','2013-10-04 20:15:35','2013-10-04 20:15:35','',21,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/21-autosave-v1/',0,'revision','',0),(457,1,'2013-10-04 20:16:11','2013-10-04 20:16:11','Music\r\nVideo\r\nBooks\r\nClothing\r\n\r\nPosters\r\nArtwork\r\nMemorabilia\r\n','STORE','','inherit','open','open','','21-revision-v1','','','2013-10-04 20:16:11','2013-10-04 20:16:11','',21,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/21-revision-v1/',0,'revision','',0),(458,1,'2013-10-04 20:15:40','2013-10-04 20:15:40','Music\r\nVideo\r\nBooks\r\nClothing\r\nAccesories\r\nPosters\r\nArtwork\r\nMemorabilia\r\n','STORE','','inherit','open','open','','21-revision-v1','','','2013-10-04 20:15:40','2013-10-04 20:15:40','',21,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/21-revision-v1/',0,'revision','',0),(738,1,'2013-10-12 15:17:16','2013-10-12 15:17:16','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n</strong>\r\n\r\nMP3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk\r\n<strong>\r\n\r\nVideo\r\n</strong>\r\n\"Hey california\"\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/Ql8vvDGth7w\" frameborder=\"0\" allowfullscreen></iframe>','Applegate Nance','','publish','open','open','','applegate-nance-2','','','2013-12-11 16:01:46','2013-12-11 22:01:46','',19,'http://www.earthhertzrecords.com/?page_id=738',0,'page','',5),(464,1,'2013-10-04 20:26:39','2013-10-04 20:26:39','','BLOG','','inherit','open','open','','30-revision-v1','','','2013-10-04 20:26:39','2013-10-04 20:26:39','',30,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/30-revision-v1/',0,'revision','',0),(463,1,'2013-10-04 20:25:50','2013-10-04 20:25:50','Blog links.\r\n<iframe src=\"http://0332c8e.netsolhost.com/WordPress/category/earthhertzblog/\"></iframe> \r\n\r\n\r\n','BLOG','','inherit','open','open','','30-revision-v1','','','2013-10-04 20:25:50','2013-10-04 20:25:50','',30,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/30-revision-v1/',0,'revision','',0),(465,1,'2013-10-04 23:30:40','2013-10-04 23:30:40','[caption id=\"attachment_131\" align=\"alignleft\" width=\"81\"]<img src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/EH_120_360_Skyscraper_2013_07_29_001.png\" alt=\"EHR\" width=\"81\" height=\"83\" class=\"size-full wp-image-131\" /> EHR[/caption]','BLOG','','inherit','open','open','','30-revision-v1','','','2013-10-04 23:30:40','2013-10-04 23:30:40','',30,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/30-revision-v1/',0,'revision','',0),(466,1,'2013-10-04 23:31:58','2013-10-04 23:31:58','[caption id=\"attachment_131\" align=\"alignleft\" width=\"81\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/category/home/blog/earthhertzblog/\"><img class=\"size-full wp-image-131 \" alt=\"EHR\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/EH_120_360_Skyscraper_2013_07_29_001.png\" width=\"81\" height=\"83\" /></a> EHR Blog[/caption]','BLOG','','inherit','open','open','','30-revision-v1','','','2013-10-04 23:31:58','2013-10-04 23:31:58','',30,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/30-revision-v1/',0,'revision','',0),(467,1,'2013-10-04 23:36:13','2013-10-04 23:36:13','[caption id=\"attachment_131\" align=\"alignleft\" width=\"81\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/category/home/blog/earthhertzblog/\"><img class=\"size-full wp-image-131 \" title=\"Earth Hertz Records Blog\" alt=\"Earth Hertz Records Blog\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/EH_120_360_Skyscraper_2013_07_29_001.png\" width=\"81\" height=\"83\" /></a> Earth Hertz Records Blog[/caption]','BLOG','','inherit','open','open','','30-revision-v1','','','2013-10-04 23:36:13','2013-10-04 23:36:13','',30,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/30-revision-v1/',0,'revision','',0),(468,2,'2013-10-04 23:36:55','2013-10-04 23:36:55','<span style=\"font-size: 16px;\">\r\n<strong>Contact Earth Hertz Records</strong>\r\n<span style=\"font-size: 12px;\">Nashville, TN</span>\r\n<span style=\"font-size: 12px;\">(615) 824-8649</span>\r\n</span>\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>Eloa Xeno </strong>\r\nCFO and Director of Art\r\n<a href=\"mailto:rxeno@earthhertz.com\">eloa@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\nNew Media Coordinator and Director of Artist Promotions<span style=\"font-size: 16px;\"> </span>\r\n<a href=\"mailto:rxeno@earthhertz.com\">kgalasso@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-10-04 23:36:55','2013-10-04 23:36:55','',23,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/23-revision-v1/',0,'revision','',0),(1264,2,'2013-11-15 14:12:26','2013-11-15 14:12:26','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/JayBennett1-500x446.jpg\"><img class=\"aligncenter size-full wp-image-1260\" alt=\"JayBennett1-500x446\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/JayBennett1-500x446.jpg\" width=\"500\" height=\"446\" /></a>For those of you who are not familiar with Sam Jones’ 2001 documentary on Wilco, <em>I Am Trying to Break Your Heart</em>, rent it tonight. You will not be disappointed. The film offers a candid view of one of America’s greatest rock bands.\r\n\r\nJones’ film chronicles the band who were in the process of recording a landmark album, <em>Yankee Hotel Foxtrot</em>, when their record company (Reprise) dropped them. Amid the business turmoil, the group’s leader, Jeff Tweedy, who was battling severe migraines at the time, fired band member and producer Jay Bennett. For many of us, it was the last time we ever heard from Bennett.\r\n\r\nAfter his dismissal from Wilco, Jay Bennett embarked on a solo career (releasing five records, one posthumously) that paled in comparison to Wilco’s commercial and critical acclaim.\r\n\r\nBennett was a talented musician, skillful producer and session musician who worked with numerous artists: Garrison Starr, Adam Schmitt, Billy Joe Shaver, Blues Traveler, Allison Moorer, Jellyfish, Sherry Rich, Tim Easton,Tommy Keene, Jeff Black and Sheryl Crow. But what will he be best remembered for?\r\n\r\nA troubled artist? A tortured soul? A frustrated musician and producer who was desperately clinging to a career that was slipping away?\r\n\r\nI’m afraid that it might be all three.\r\n\r\nIn 1995, Bennett joined Wilco for their sophomore effort, <em>Being There. </em>His contributions elevated Tweedy’s alt-country group into new musical terrain. It is somewhat reminiscent of mid-period Beatles, moving forward from <em>Help</em> to <em>Rubber Soul</em>.\r\n\r\nWhen the band released its third studio album, <em>Summerteeth, </em>they continued to experiment, progressing both sonically and musically, such as The Beatles did with <em>Rubber Soul’s </em>successor,<em> Revolver</em>. Wilco sounded like a completely different band from its debut record, 1995′s <em>A.M.</em> <a href=\"http://www.spin.com/blog/what-jay-bennetts-death-made-me-realize-about-wilco/\">Ellen Carpenter</a> of <em>Spin</em> wrote about <em>Summerteeth</em>, “The songs were fuller, warmer, the standard guitar-and-drums set-up of <em>A.M.</em> had been supplemented by a lush psychedelic impressionism that was largely a product of Bennett’s masterful work with farfisa organ, bells, Moog, lap steel guitar, banjo, synthesizer, and other instrumental exotica.”\r\n\r\nWith Wilco’s magnum opus, <em>Yankee Hotel Foxtrot,</em> the album that anointed Wilco as one of the greatest bands of its generation, Jay Bennett’s contributions were enormous, co-writing eight of the eleven songs and producing much of the record himself.\r\n\r\nSince Bennett’s firing, Wilco has released four distinguished records – <em>A Ghost is Born</em> (2004) being the most compelling – but none of them have had the personality, the daring, the audacity and powerfully evocative sounds of the three records Jay Bennett worked on.\r\n\r\n<strong>Post by Richard Fulco. First published on <a href=\"http://www.riffraf.net/2013/10/remembering-jay-bennett/\">Riffraf.net</a></strong>\r\n\r\n<em>Richard Fulco is the founder and editor of <a href=\"http://www.riffraf.net/\">Riffraf.net</a>. His debut novel, There Is No End to This Slope, will be published by Wampus Multimedia in March 2014.</em>','Remembering Jay Bennett','','inherit','open','open','','1259-revision-v1','','','2013-11-15 14:12:26','2013-11-15 14:12:26','',1259,'http://www.earthhertzrecords.com/2013/11/1259-revision-v1/',0,'revision','',0),(475,1,'2013-09-18 12:48:15','2013-09-18 12:48:15','Interviews etc','INTERVIEWS','','inherit','open','open','','26-revision-v1','','','2013-09-18 12:48:15','2013-09-18 12:48:15','',26,'http://0332c8e.netsolhost.com/WordPress/2013/09/18/26-revision-v1/',0,'revision','',0),(476,1,'2013-10-04 23:57:18','2013-10-04 23:57:18','','Robert Xeno signing Arun Shenoy\'s Album Art Poster.','','inherit','open','open','','600073_10200136594029973_529756598_n','','','2013-10-04 23:57:18','2013-10-04 23:57:18','',26,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/600073_10200136594029973_529756598_n.jpg',0,'attachment','image/jpeg',0),(477,1,'2013-10-11 15:15:18','2013-10-11 15:15:18','[caption id=\"attachment_491\" align=\"alignleft\" width=\"150\"]<img class=\"wp-image-491 \" title=\"Five Questions with Matt Guertin of radarTower \" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200-150x150.jpg\" width=\"150\" height=\"150\" /> Five Questions with Matt Guertin of radarTower[/caption]\n\n[caption id=\"attachment_600\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/p3Wu0q-9E\"><img class=\"size-thumbnail wp-image-600 \" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1-150x150.jpg\" width=\"150\" height=\"150\" /></a> Five Questions with Hannah Mae[/caption]\n\n \n\n ','INTERVIEWS','','inherit','open','open','','26-autosave-v1','','','2013-10-11 15:15:18','2013-10-11 15:15:18','',26,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/26-autosave-v1/',0,'revision','',0),(721,1,'2013-10-12 03:01:13','2013-10-12 03:01:13','Music Category','','','publish','open','open','','721','','','2014-03-28 10:20:25','2014-03-28 16:20:25','',6,'http://www.earthhertzrecords.com/?p=721',4,'nav_menu_item','',0),(722,1,'2013-10-13 03:02:22','2013-10-13 03:02:22','<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk','Applegate Nance','','publish','open','open','','applegate-nance','','','2013-10-23 02:59:06','2013-10-23 02:59:06','',0,'http://www.earthhertzrecords.com/?p=722',0,'post','',0),(478,1,'2013-10-04 23:57:51','2013-10-04 23:57:51','<a href=\"http://0332c8e.netsolhost.com/WordPress/category/home/interviews/\"><img class=\"alignleft wp-image-476\" alt=\"Robert Xeno signing Arun Shenoy\'s Album Art Poster.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/600073_10200136594029973_529756598_n.jpg\" width=\"160\" height=\"220\" /></a>','INTERVIEWS','','inherit','open','open','','26-revision-v1','','','2013-10-04 23:57:51','2013-10-04 23:57:51','',26,'http://0332c8e.netsolhost.com/WordPress/2013/10/04/26-revision-v1/',0,'revision','',0),(479,1,'2013-10-05 00:38:42','2013-10-05 00:38:42','<a href=\"http://0332c8e.netsolhost.com/WordPress/category/home/interviews/\"><img class=\"alignleft wp-image-476\" alt=\"Robert Xeno signing 55th Grammy Nominee Arun Shenoy\'s Album Art Poster.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/600073_10200136594029973_529756598_n.jpg\" width=\"160\" height=\"220\" /></a>','INTERVIEWS','','inherit','open','open','','26-revision-v1','','','2013-10-05 00:38:42','2013-10-05 00:38:42','',26,'http://0332c8e.netsolhost.com/WordPress/2013/10/05/26-revision-v1/',0,'revision','',0),(833,1,'2013-10-13 14:35:06','2013-10-13 14:35:06','Intuit','1373403700-1877','Intuit','inherit','open','open','','1373403700-1877','','','2013-10-13 14:35:06','2013-10-13 14:35:06','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/1373403700-1877.png',0,'attachment','image/png',0),(1270,2,'2013-11-17 13:27:25','2013-11-17 13:27:25','<strong>The Man, the Myth, the Music - The Definitive Life</strong>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/lennon.jpg\"><img class=\"aligncenter size-full wp-image-423\" alt=\"lennon\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/lennon.jpg\" width=\"600\" height=\"337\" /></a>There have been so many books written about John Lennon and his landmark band, The Beatles, that book reviews now have a cliche\' opening sentence. Lennon: The Man The Myth The Music - The Definitive Life by Tim Riley is the umpteenth book written about John Lennon and the Beatles. So how can another be worthy of 661 pages on a subject so many know so much about? Because it\'s John Lennon and The Beatles.\r\n\r\nThe bulk of the biography concentrates on his childhood from the ages of 5 to 17. Lennon was abandoned by both his wayward merchant seaman father Alfred, and a domineering, manipulative mother Julia. His Aunt Mimi and Uncle George raised him. You learn that John Lennon was a vicious bully during his grade school years and it wasn\'t until he learned to play guitar at age 16, a Gallotone Champion acoustic, that his temper and personality became more pliable to his friends. It\'s this detail that Tim Riley, music critic for NPR, delves into as a theme of John Lennon\'s life. Mom Julia, emotionally distant, buys the guitar and encourages his artistic freedom on the condition the instrument is delivered to her house and he plays there, while sensible Aunt Mimi, who\'s feeding, clothing, and encouraging his education while offering love and affection tells Lennon \"The guitar\'s all very well John, but you\'ll never make a living out of it\".\r\n\r\nRiley\'s tome provides a lot of psychological analysis of what made John Lennon an artist, not just a star or a celebrity (both of which he publically rejected while privately enjoyed). Lennon\'s teenage years in the \"<a href=\"http://en.wikipedia.org/wiki/Skiffle\">skiffle</a> craze\" of the late 1950s, to meeting Paul McCartney, to leading the revolt against drummer Pete Best for \"not being intellectually sound\" are all fascinating building blocks of what made Lennon so remarkable.\r\n\r\nThe book gets ponderous with the author\'s critiques of John Lennon and The Beatles compositions. My daughters love \"Octopus\' Garden\" so the several paragraphs of Riley killing the song are not for them. The second half of the book concentrates on the music, sprinkling in John Lennon\'s flaws as a man. Let\'s face it, whether you read Riley\'s book or his ex-wife Cynthia\'s one called \"John,\" the man who said \"Give Peace A Chance\" was an angry drunk, an abuser of his ex-wife, and a bad father to his son Julian. Alfred and Julia\'s treatment of him as kid was reiterated by John to Julian.\r\n\r\nThe book is a comprehensive tale of not only what made John Lennon a driven musical artist worthy of The Rock And Roll Hall Of Fame, but also solo accolades. How <em>Double Fantasy</em> was made is great reading. There are snippets of how Lennon actually saved The Beatles from becoming too commercial (they almost did the soundtrack to \'The Jungle Book\' Disney film in 1965, but Lennon refused) and kept them artistic. The alleged \"feud\" between him and Paul was overblown to the public. During the early 1970s, Lennon would stay on the phone for hours with McCartney while he was making his own records, and advise Paul on what he was doing with Wings. This is stuff I never knew.\r\n\r\nSo, why read another book about John Lennon and The Beatles? Because you\'ll learn some things you didn\'t know, while appreciating the music in a new sense with new light shown.\r\n\r\nPost by <strong>Lance Burson</strong>\r\n\r\n<strong><em>Lance Burson is a writer living outside Atlanta, Georgia with his wife and three daughters. He’s the published author of two books, both musically themed, The Ballad of Helene Troy and Soul To Body, found, digitally, on Amazon.com/kindle and in paperback on Lulu.com</em>.<em> He is a writer for <a href=\"http://sprocketink.com/author/lance/\">Sprocket Ink</a> and author of <a href=\"http://lancemyblogcanbeatupyourblog.wordpress.com/\">My Blog Can Beat Up Your Blog</a> Follow him on Twitter <a href=\"https://twitter.com/lanceburson\">@lanceburson</a></em></strong>','LENNON by Tim Riley','','inherit','open','open','','422-revision-v1','','','2013-11-17 13:27:25','2013-11-17 13:27:25','',422,'http://www.earthhertzrecords.com/2013/11/422-revision-v1/',0,'revision','',0),(482,2,'2013-10-05 11:48:22','2013-10-05 11:48:22','','hannah','','inherit','open','open','','hannah','','','2013-10-05 11:48:22','2013-10-05 11:48:22','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/hannah.jpg',0,'attachment','image/jpeg',0),(483,2,'2013-10-05 11:48:48','2013-10-05 11:48:48','','Picture 033','','inherit','open','open','','picture-033','','','2013-10-05 11:48:48','2013-10-05 11:48:48','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Picture-033.jpg',0,'attachment','image/jpeg',0),(1269,2,'2013-11-17 13:26:25','2013-11-17 13:26:25','<strong>The Man, the Myth, the Music - The Definitive Life</strong>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/lennon.jpg\"><img class=\"aligncenter size-full wp-image-423\" alt=\"lennon\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/lennon.jpg\" width=\"600\" height=\"337\" /></a>There have been so many books written about John Lennon and his landmark band, The Beatles, that book reviews now have a cliche\' opening sentence. Lennon: The Man The Myth The Music by Tim Riley is the umpteenth book written about John Lennon and the Beatles. So how can another be worthy of 661 pages on a subject so many know so much about? Because it\'s John Lennon and The Beatles.\r\n\r\nThe bulk of the biography concentrates on his childhood from the ages of 5 to 17. Lennon was abandoned by both his wayward merchant seaman father Alfred, and a domineering, manipulative mother Julia. His Aunt Mimi and Uncle George raised him. You learn that John Lennon was a vicious bully during his grade school years and it wasn\'t until he learned to play guitar at age 16, a Gallotone Champion acoustic, that his temper and personality became more pliable to his friends. It\'s this detail that Tim Riley, music critic for NPR, delves into as a theme of John Lennon\'s life. Mom Julia, emotionally distant, buys the guitar and encourages his artistic freedom on the condition the instrument is delivered to her house and he plays there, while sensible Aunt Mimi, who\'s feeding, clothing, and encouraging his education while offering love and affection tells Lennon \"The guitar\'s all very well John, but you\'ll never make a living out of it\".\r\n\r\nRiley\'s tome provides a lot of psychological analysis of what made John Lennon an artist, not just a star or a celebrity (both of which he publically rejected while privately enjoyed). Lennon\'s teenage years in the \"<a href=\"http://en.wikipedia.org/wiki/Skiffle\">skiffle</a> craze\" of the late 1950s, to meeting Paul McCartney, to leading the revolt against drummer Pete Best for \"not being intellectually sound\" are all fascinating building blocks of what made Lennon so remarkable.\r\n\r\nThe book gets ponderous with the author\'s critiques of John Lennon and The Beatles compositions. My daughters love \"Octopus\' Garden\" so the several paragraphs of Riley killing the song are not for them. The second half of the book concentrates on the music, sprinkling in John Lennon\'s flaws as a man. Let\'s face it, whether you read Riley\'s book or his ex-wife Cynthia\'s one called \"John,\" the man who said \"Give Peace A Chance\" was an angry drunk, an abuser of his ex-wife, and a bad father to his son Julian. Alfred and Julia\'s treatment of him as kid was reiterated by John to Julian.\r\n\r\nThe book is a comprehensive tale of not only what made John Lennon a driven musical artist worthy of The Rock And Roll Hall Of Fame, but also solo accolades. How <em>Double Fantasy</em> was made is great reading. There are snippets of how Lennon actually saved The Beatles from becoming too commercial (they almost did the soundtrack to \'The Jungle Book\' Disney film in 1965, but Lennon refused) and kept them artistic. The alleged \"feud\" between him and Paul was overblown to the public. During the early 1970s, Lennon would stay on the phone for hours with McCartney while he was making his own records, and advise Paul on what he was doing with Wings. This is stuff I never knew.\r\n\r\nSo, why read another book about John Lennon and The Beatles? Because you\'ll learn some things you didn\'t know, while appreciating the music in a new sense with new light shown.\r\n\r\nPost by <strong>Lance Burson</strong>\r\n\r\n<strong><em>Lance Burson is a writer living outside Atlanta, Georgia with his wife and three daughters. He’s the published author of two books, both musically themed, The Ballad of Helene Troy and Soul To Body, found, digitally, on Amazon.com/kindle and in paperback on Lulu.com</em>.<em> He is a writer for <a href=\"http://sprocketink.com/author/lance/\">Sprocket Ink</a> and author of <a href=\"http://lancemyblogcanbeatupyourblog.wordpress.com/\">My Blog Can Beat Up Your Blog</a> Follow him on Twitter <a href=\"https://twitter.com/lanceburson\">@lanceburson</a></em></strong>','LENNON by Tim Riley','','inherit','open','open','','422-revision-v1','','','2013-11-17 13:26:25','2013-11-17 13:26:25','',422,'http://www.earthhertzrecords.com/2013/11/422-revision-v1/',0,'revision','',0),(488,2,'2013-10-05 14:56:14','2013-10-05 14:56:14','','joshayers_200','','inherit','open','open','','joshayers_200','','','2013-10-05 14:56:14','2013-10-05 14:56:14','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/joshayers_200.jpg',0,'attachment','image/jpeg',0),(490,2,'2013-10-13 00:22:44','2013-10-13 00:22:44','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/mathiasmeetstheworld.jpg\"><img class=\"alignleft size-thumbnail wp-image-492\" alt=\"mathiasmeetstheworld\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/mathiasmeetstheworld-150x150.jpg\" width=\"150\" height=\"150\" /></a>Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"alignright size-medium wp-image-501\" alt=\"MattGuertin-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>The changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n<strong>MP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\nComplicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\nNeed To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\nIt\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\nMemories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\nFeelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\nHippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\nGimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\nBefore We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\nSheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\nTime Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\nNeed Someone\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nNeed Someone','radarTower','','inherit','open','open','','246-autosave-v1','','','2013-10-13 00:22:44','2013-10-13 00:22:44','',246,'http://0332c8e.netsolhost.com/WordPress/2013/10/05/246-autosave-v1/',0,'revision','',0),(491,2,'2013-10-05 18:07:27','2013-10-05 18:07:27','','mattguertin_200','','inherit','open','open','','mattguertin_200','','','2013-10-05 18:07:27','2013-10-05 18:07:27','',246,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200.jpg',0,'attachment','image/jpeg',0),(501,2,'2013-10-06 19:38:22','2013-10-06 19:38:22','','MattGuertin-2','','inherit','open','open','','mattguertin-2','','','2013-10-06 19:38:22','2013-10-06 19:38:22','',246,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/MattGuertin-2.jpg',0,'attachment','image/jpeg',0),(492,2,'2013-10-05 18:09:01','2013-10-05 18:09:01','','mathiasmeetstheworld','','inherit','open','open','','mathiasmeetstheworld','','','2013-10-05 18:09:01','2013-10-05 18:09:01','',246,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mathiasmeetstheworld.jpg',0,'attachment','image/jpeg',0),(493,2,'2013-10-05 18:33:51','2013-10-05 18:33:51','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mathiasmeetstheworld.jpg\"><img class=\"alignleft size-medium wp-image-492\" alt=\"mathiasmeetstheworld\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mathiasmeetstheworld-296x300.jpg\" width=\"296\" height=\"300\" /></a>Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200.jpg\"><img class=\"alignright size-full wp-image-491\" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200.jpg\" width=\"240\" height=\"180\" /></a>\r\n\r\nThe changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n ','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-05 18:33:51','2013-10-05 18:33:51','',246,'http://0332c8e.netsolhost.com/WordPress/2013/10/05/246-revision-v1/',0,'revision','',0),(495,2,'2013-10-06 18:42:24','2013-10-06 18:42:24','<strong><a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200.jpg\"><img class=\"alignleft wp-image-491\" alt=\"mattguertin_200\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/mattguertin_200.jpg\" /></a></strong>\r\n\r\n<strong>Matt Guertin</strong> is both the creative and driving force behind <strong>radarTower</strong>. Their first album has just been released through Earth Hertz Records, and the first single \"Need Someone,\" is creating some buzz. I had the chance to speak with Matt just before its release.\r\n\r\n<strong>Give me a little of your background and your early musical influences?</strong>\r\n\r\n<strong></strong>I’m from Valley City, North Dakota, on the eastern side of North Dakota. We’re a pretty small town. I grew up listening to a lot of the stuff my dad did; old blues artists like Robert Johnson and Muddy Waters. And stuff like Stevie Ray Vaughn and Bob Dylan, they were a big part of my songwriting. And definitely The Beatles.\r\n\r\n<strong>How did you get into songwriting?</strong>\r\n\r\nThe way I got into that was in 4<sup>th</sup> grade I met this kid Matt in class and he’d invite me over. His dad taught me how to play guitar on this 1962 vintage Jaguar. It was the first guitar I ever played. The first song he taught me was “Wild Thing,” so me and Matt would jam downstairs in the basement after school. Then Matt started getting projects as a bass player, so I was like “what am I gonna do?” So in fifth grade I wrote my first song. I didn’t want to learn other people’s songs, I wanted to create my own thing.\r\n\r\n<strong>How would you describe your album, <i>Mathias Meets The World?</i></strong>\r\n\r\nI would definitely describe it as rock with a lot of different influences. It’s really hard to pigeonhole, because on the album, there’s a song for everybody. There’s acoustic guitar and piano on “Time Will Tell,” and there’s “Give Me A Sign” where it’s almost grungy vocals with Led Zeppelin style drum sound. Then there are songs leaning toward country. I would say it’s rootsy. It’s definitely rock-alternative rock.\r\n\r\n<strong>Tell me about the first single “Need Someone.”</strong>\r\n\r\nThe way I wrote that song was, I was home and my friend Curtis was over and we were just hanging out when I started playing this riff. The I started singing just what was on my mind and that was it. I was thinking about a girl and if you need someone... you need someone. I just played it and sang it and thought it was cool. So I put my phone recorder on. That’s what I do when I write; I usually sing it and play it at the same time. Improvise it. If I like it, I record it and revise it a bit. It really didn’t need much; it’s a very honest song.\r\n\r\n<strong>What are you looking for going into the future?</strong>\r\n\r\nNo matter what goes on, I’m going to try to stick to the roots in what I sing about, what I play about. I’m going to try to hold true to that. I just want to play live. I don’t care where it is, I just want to play for people. I want people to be interested in my music. This is my life’s work.\r\n\r\nInterview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@KatsTheory</a>','Five Questions with Matt Guertin of radarTower','','publish','open','open','','five-questions-with-matt-guertin-of-radartower','','','2013-11-20 12:13:54','2013-11-20 18:13:54','',0,'http://0332c8e.netsolhost.com/WordPress/?p=495',0,'post','',0),(496,2,'2013-10-06 18:19:18','2013-10-06 18:19:18','<strong>What’s your background and what were your early musical influences?</strong>\r\n\r\n<strong></strong>I’m from Valley City, North Dakota, on the eastern side of North Dakota. We’re a pretty small town. I grew up listening to a lot of the stuff my dad did, like old blues artists like Robert Johnson and Muddy Waters. And especially the songwriting stuff like Stevie Ray Vaughn and Bob Dylan, they were a big part of my songwriting. Definitely The Beatles.\r\n\r\n<strong>How did you get into songwriting?</strong>\r\n\r\nThe way I got into that was in 4<sup>th</sup> grade I met this kid Matt in class and he’d invite me over. His dad taught me how to play guitar on this 1962 vintage Jaguar. It was the first guitar I ever played. The first song he taught me was “Wild Thing,” so me and my friend Matt would jam downstairs in the basement after school. Then Matt started getting projects as a bass player, as young as in 6<sup>th</sup> grade, so I was like “what am I gonna do?” So in fifth grade I wrote my first song, and it came about not from a laziness, but I didn’t want to learn other people’s songs, I wanted to create my own thing.\r\n\r\n<strong>How would you describe your album, <i>Mathias Meets The World?</i></strong>\r\n\r\nI would definitely describe it as rock with a lot of different influences. It’s really hard to pigeonhole, because on the album, there’s a song for everybody. There’s acoustic guitar and piano on “Time Will Tell,” and there’s “Give Me A Sign” where it’s almost grungy vocals with Led Zeppelin style drum sound. Then there’s songs leaning toward country. I would say it’s rootsy. It’s definitely rock-alternative rock.\r\n\r\n \r\n\r\n<strong>Tell me about the first single “Need Someone.”</strong>\r\n\r\nThe way I wrote that song was, I was home and my friend Curtis was over and we were just hanging out when I started playing this riff. The I started singing just what was on my mind and that was it. I was thinking about a girl and if you need someone, you need someone. I just played it and sang it and thought it was cool. So I put my phone recorder on. That’s what I do when I write; I usually sing it and play it at the same time. Improvise it. If I like it, I record it and revise it a bit. It really didn’t need much; it’s a very honest song.\r\n\r\n<strong>What are you looking for going into the future?</strong>\r\n\r\nNo matter what goes on, I’m going to try to stick to the roots in what I sing about, what I play about. I’m going to try to hold true to that. I just want to play live. I don’t care where it is, I just want to play for people. I want people to be interested in my music. This is my life’s work.','5 Questions with Matt Guertin of radarTower','','inherit','open','open','','495-revision-v1','','','2013-10-06 18:19:18','2013-10-06 18:19:18','',495,'http://0332c8e.netsolhost.com/WordPress/2013/10/06/495-revision-v1/',0,'revision','',0),(497,2,'2013-10-06 18:26:31','2013-10-06 18:26:31','<strong><a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200.jpg\"><img class=\"alignleft size-full wp-image-491\" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200.jpg\" width=\"240\" height=\"180\" /></a>Give me a little of your background your early musical influences?</strong>\r\n\r\n<strong></strong>I’m from Valley City, North Dakota, on the eastern side of North Dakota. We’re a pretty small town. I grew up listening to a lot of the stuff my dad did; old blues artists like Robert Johnson and Muddy Waters. And stuff like Stevie Ray Vaughn and Bob Dylan, they were a big part of my songwriting. And definitely The Beatles.\r\n\r\n<strong>How did you get into songwriting?</strong>\r\n\r\nThe way I got into that was in 4<sup>th</sup> grade I met this kid Matt in class and he’d invite me over. His dad taught me how to play guitar on this 1962 vintage Jaguar. It was the first guitar I ever played. The first song he taught me was “Wild Thing,” so me and my friend Matt would jam downstairs in the basement after school. Then Matt started getting projects as a bass player, as young as in 6<sup>th</sup> grade, so I was like “what am I gonna do?” So in fifth grade I wrote my first song, and it came about not from a laziness, but I didn’t want to learn other people’s songs, I wanted to create my own thing.\r\n\r\n<strong>How would you describe your album, <i>Mathias Meets The World?</i></strong>\r\n\r\nI would definitely describe it as rock with a lot of different influences. It’s really hard to pigeonhole, because on the album, there’s a song for everybody. There’s acoustic guitar and piano on “Time Will Tell,” and there’s “Give Me A Sign” where it’s almost grungy vocals with Led Zeppelin style drum sound. Then there’s songs leaning toward country. I would say it’s rootsy. It’s definitely rock-alternative rock.\r\n\r\n<strong>Tell me about the first single “Need Someone.”</strong>\r\n\r\nThe way I wrote that song was, I was home and my friend Curtis was over and we were just hanging out when I started playing this riff. The I started singing just what was on my mind and that was it. I was thinking about a girl and if you need someone, you need someone. I just played it and sang it and thought it was cool. So I put my phone recorder on. That’s what I do when I write; I usually sing it and play it at the same time. Improvise it. If I like it, I record it and revise it a bit. It really didn’t need much; it’s a very honest song.\r\n\r\n<strong>What are you looking for going into the future?</strong>\r\n\r\nNo matter what goes on, I’m going to try to stick to the roots in what I sing about, what I play about. I’m going to try to hold true to that. I just want to play live. I don’t care where it is, I just want to play for people. I want people to be interested in my music. This is my life’s work.','Five Questions with Matt Guertin of radarTower','','inherit','open','open','','495-revision-v1','','','2013-10-06 18:26:31','2013-10-06 18:26:31','',495,'http://0332c8e.netsolhost.com/WordPress/2013/10/06/495-revision-v1/',0,'revision','',0),(498,2,'2013-10-06 18:36:47','2013-10-06 18:36:47','<strong><a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200.jpg\"><img class=\"alignleft size-full wp-image-491\" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200.jpg\" width=\"240\" height=\"180\" /></a></strong>\r\n\r\n<strong>Matt Guertin</strong> is both the creative and driving force behind <strong>radarTower</strong>. Their first album has just been released through Earth Hertz Records, and the first single \"Need Someone,\" is creating some buzz. I had the chance to speak with Matt just before its release.\r\n\r\n<strong>Give me a little of your background and your early musical influences?</strong>\r\n\r\n<strong></strong>I’m from Valley City, North Dakota, on the eastern side of North Dakota. We’re a pretty small town. I grew up listening to a lot of the stuff my dad did; old blues artists like Robert Johnson and Muddy Waters. And stuff like Stevie Ray Vaughn and Bob Dylan, they were a big part of my songwriting. And definitely The Beatles.\r\n\r\n<strong>How did you get into songwriting?</strong>\r\n\r\nThe way I got into that was in 4<sup>th</sup> grade I met this kid Matt in class and he’d invite me over. His dad taught me how to play guitar on this 1962 vintage Jaguar. It was the first guitar I ever played. The first song he taught me was “Wild Thing,” so me and my friend Matt would jam downstairs in the basement after school. Then Matt started getting projects as a bass player, as young as in 6<sup>th</sup> grade, so I was like “what am I gonna do?” So in fifth grade I wrote my first song. I didn’t want to learn other people’s songs, I wanted to create my own thing.\r\n\r\n<strong>How would you describe your album, <i>Mathias Meets The World?</i></strong>\r\n\r\nI would definitely describe it as rock with a lot of different influences. It’s really hard to pigeonhole, because on the album, there’s a song for everybody. There’s acoustic guitar and piano on “Time Will Tell,” and there’s “Give Me A Sign” where it’s almost grungy vocals with Led Zeppelin style drum sound. Then there are songs leaning toward country. I would say it’s rootsy. It’s definitely rock-alternative rock.\r\n\r\n<strong>Tell me about the first single “Need Someone.”</strong>\r\n\r\nThe way I wrote that song was, I was home and my friend Curtis was over and we were just hanging out when I started playing this riff. The I started singing just what was on my mind and that was it. I was thinking about a girl and if you need someone... you need someone. I just played it and sang it and thought it was cool. So I put my phone recorder on. That’s what I do when I write; I usually sing it and play it at the same time. Improvise it. If I like it, I record it and revise it a bit. It really didn’t need much; it’s a very honest song.\r\n\r\n<strong>What are you looking for going into the future?</strong>\r\n\r\nNo matter what goes on, I’m going to try to stick to the roots in what I sing about, what I play about. I’m going to try to hold true to that. I just want to play live. I don’t care where it is, I just want to play for people. I want people to be interested in my music. This is my life’s work.','Five Questions with Matt Guertin of radarTower','','inherit','open','open','','495-revision-v1','','','2013-10-06 18:36:47','2013-10-06 18:36:47','',495,'http://0332c8e.netsolhost.com/WordPress/2013/10/06/495-revision-v1/',0,'revision','',0),(499,2,'2013-10-06 18:42:24','2013-10-06 18:42:24','<strong><a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200.jpg\"><img class=\"alignleft size-full wp-image-491\" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200.jpg\" width=\"240\" height=\"180\" /></a></strong>\r\n\r\n<strong>Matt Guertin</strong> is both the creative and driving force behind <strong>radarTower</strong>. Their first album has just been released through Earth Hertz Records, and the first single \"Need Someone,\" is creating some buzz. I had the chance to speak with Matt just before its release.\r\n\r\n<strong>Give me a little of your background and your early musical influences?</strong>\r\n\r\n<strong></strong>I’m from Valley City, North Dakota, on the eastern side of North Dakota. We’re a pretty small town. I grew up listening to a lot of the stuff my dad did; old blues artists like Robert Johnson and Muddy Waters. And stuff like Stevie Ray Vaughn and Bob Dylan, they were a big part of my songwriting. And definitely The Beatles.\r\n\r\n<strong>How did you get into songwriting?</strong>\r\n\r\nThe way I got into that was in 4<sup>th</sup> grade I met this kid Matt in class and he’d invite me over. His dad taught me how to play guitar on this 1962 vintage Jaguar. It was the first guitar I ever played. The first song he taught me was “Wild Thing,” so me and Matt would jam downstairs in the basement after school. Then Matt started getting projects as a bass player, so I was like “what am I gonna do?” So in fifth grade I wrote my first song. I didn’t want to learn other people’s songs, I wanted to create my own thing.\r\n\r\n<strong>How would you describe your album, <i>Mathias Meets The World?</i></strong>\r\n\r\nI would definitely describe it as rock with a lot of different influences. It’s really hard to pigeonhole, because on the album, there’s a song for everybody. There’s acoustic guitar and piano on “Time Will Tell,” and there’s “Give Me A Sign” where it’s almost grungy vocals with Led Zeppelin style drum sound. Then there are songs leaning toward country. I would say it’s rootsy. It’s definitely rock-alternative rock.\r\n\r\n<strong>Tell me about the first single “Need Someone.”</strong>\r\n\r\nThe way I wrote that song was, I was home and my friend Curtis was over and we were just hanging out when I started playing this riff. The I started singing just what was on my mind and that was it. I was thinking about a girl and if you need someone... you need someone. I just played it and sang it and thought it was cool. So I put my phone recorder on. That’s what I do when I write; I usually sing it and play it at the same time. Improvise it. If I like it, I record it and revise it a bit. It really didn’t need much; it’s a very honest song.\r\n\r\n<strong>What are you looking for going into the future?</strong>\r\n\r\nNo matter what goes on, I’m going to try to stick to the roots in what I sing about, what I play about. I’m going to try to hold true to that. I just want to play live. I don’t care where it is, I just want to play for people. I want people to be interested in my music. This is my life’s work.\r\n\r\nInterview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@KatsTheory</a>','Five Questions with Matt Guertin of radarTower','','inherit','open','open','','495-revision-v1','','','2013-10-06 18:42:24','2013-10-06 18:42:24','',495,'http://0332c8e.netsolhost.com/WordPress/2013/10/06/495-revision-v1/',0,'revision','',0),(502,2,'2013-10-06 19:41:12','2013-10-06 19:41:12','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mathiasmeetstheworld.jpg\"><img class=\"alignleft size-medium wp-image-492\" alt=\"mathiasmeetstheworld\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mathiasmeetstheworld-296x300.jpg\" width=\"296\" height=\"300\" /></a>\r\n\r\n \r\n\r\nGrowing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"alignright size-medium wp-image-501\" alt=\"MattGuertin-2\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>\r\n\r\n \r\n\r\n \r\n\r\nThe changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n ','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-06 19:41:12','2013-10-06 19:41:12','',246,'http://0332c8e.netsolhost.com/WordPress/2013/10/06/246-revision-v1/',0,'revision','',0),(503,1,'2013-10-07 06:00:13','2013-10-07 06:00:13','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-2H\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/glenspreen_dreams_front_001aa/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/josh-ayers/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/template_001ateml/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/mathias_radartoweralbumcoverfinal/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/tbdbalbumcover/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://0332c8e.netsolhost.com/WordPress/artists/theellymaze_nearsouth_front_001b_600x600/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-07 06:00:13','2013-10-07 06:00:13','',19,'http://0332c8e.netsolhost.com/WordPress/2013/10/07/19-revision-v1/',0,'revision','',0),(507,1,'2013-10-07 19:52:49','2013-10-07 19:52:49','[caption id=\"attachment_491\" align=\"alignleft\" width=\"200\"]<a href=\"http://wp.me/p3Wu0q-7Z\"><img class=\" wp-image-491\" title=\"Five Questions with Matt Guertin of radarTower \" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200-150x150.jpg\" width=\"200\" height=\"200\" /></a> Five Questions with Matt Guertin of radarTower[/caption]','INTERVIEWS','','inherit','open','open','','26-revision-v1','','','2013-10-07 19:52:49','2013-10-07 19:52:49','',26,'http://0332c8e.netsolhost.com/WordPress/2013/10/07/26-revision-v1/',0,'revision','',0),(506,1,'2013-10-07 19:50:14','2013-10-07 19:50:14','<a href=\"http://0332c8e.netsolhost.com/WordPress/category/home/interviews/\"><img class=\"alignleft wp-image-476\" alt=\"Robert Xeno signing 55th Grammy Nominee Arun Shenoy\'s Album Art Poster.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/600073_10200136594029973_529756598_n.jpg\" width=\"160\" height=\"200\" /><img class=\"alignleft wp-image-491\" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200-150x150.jpg\" width=\"200\" height=\"200\" /></a>','INTERVIEWS','','inherit','open','open','','26-revision-v1','','','2013-10-07 19:50:14','2013-10-07 19:50:14','',26,'http://0332c8e.netsolhost.com/WordPress/2013/10/07/26-revision-v1/',0,'revision','',0),(508,1,'2013-10-07 19:53:48','2013-10-07 19:53:48','[caption id=\"attachment_491\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/p3Wu0q-7Z\"><img class=\" wp-image-491 \" title=\"Five Questions with Matt Guertin of radarTower \" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200-150x150.jpg\" width=\"150\" height=\"150\" /></a> Five Questions with Matt Guertin of radarTower[/caption]','INTERVIEWS','','inherit','open','open','','26-revision-v1','','','2013-10-07 19:53:48','2013-10-07 19:53:48','',26,'http://0332c8e.netsolhost.com/WordPress/2013/10/07/26-revision-v1/',0,'revision','',0),(510,2,'2013-10-13 00:27:26','2013-10-13 00:27:26','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Oklahoma, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\n\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\n\nMP3s\n\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\nIn My Arms\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\nBounce Up And Down\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\nMovin Groovin\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\nMy Only Way\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\nWaiting For You\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\nToo Many\n\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\nA Loving Revolution\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\nMemphis\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\nLittle Suzie\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\nI\'m Winning\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\nMagic\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\nKnew Her\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\nMaui\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\nMy Only Way (Instrumental)\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\nBounce Up And Down (Instrumental)\n\nVIDEOS\n<iframe src=\"//www.youtube.com/embed/YPfwQveHFNk\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\nMagic\n<iframe src=\"//www.youtube.com/embed/i91x1hqkgas\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\nA Loving Revolution','The Billy David Band','','inherit','open','open','','248-autosave-v1','','','2013-10-13 00:27:26','2013-10-13 00:27:26','',248,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/248-autosave-v1/',0,'revision','',0),(511,2,'2013-10-08 00:33:03','2013-10-08 00:33:03','','EarthHertz-BillyDavid-1','','inherit','open','open','','earthhertz-billydavid-1','','','2013-10-08 00:33:03','2013-10-08 00:33:03','',248,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg',0,'attachment','image/jpeg',0),(512,2,'2013-10-08 00:33:28','2013-10-08 00:33:28','','EarthHertz-BillyDavid-2','','inherit','open','open','','earthhertz-billydavid-2','','','2013-10-08 00:33:28','2013-10-08 00:33:28','',248,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg',0,'attachment','image/jpeg',0),(513,2,'2013-10-08 00:34:47','2013-10-08 00:34:47','','EarthHertz-BillyDavid-3','','inherit','open','open','','earthhertz-billydavid-3','','','2013-10-08 00:34:47','2013-10-08 00:34:47','',248,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg',0,'attachment','image/jpeg',0),(767,1,'2013-10-12 17:13:38','2013-10-12 17:13:38','<img class=\"alignnone size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" />The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Oklahoma, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n<img class=\"size-full wp-image-512 alignright\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" />Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i>\r\n<img class=\"alignnone size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /> Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-12 17:13:38','2013-10-12 17:13:38','',248,'http://www.earthhertzrecords.com/2013/10/12/248-revision-v1/',0,'revision','',0),(514,2,'2013-10-08 00:55:04','2013-10-08 00:55:04','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Oklahoma, David spent years on both land and sea, where he experienced many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i><a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-08 00:55:04','2013-10-08 00:55:04','',248,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/248-revision-v1/',0,'revision','',0),(515,2,'2013-10-08 00:57:06','2013-10-08 00:57:06','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Oklahoma, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i><a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-08 00:57:06','2013-10-08 00:57:06','',248,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/248-revision-v1/',0,'revision','',0),(1043,1,'2013-10-16 11:56:18','2013-10-16 11:56:18','[yop_poll_archive]','Yop Poll Archive','','publish','open','open','','yop-poll-archive','','','2013-10-24 16:37:15','2013-10-24 16:37:15','',0,'http://www.earthhertzrecords.com/yop-poll-archive/',0,'page','',0),(518,2,'2013-10-13 00:28:46','2013-10-13 00:28:46','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/TheEllyMaze_NearSouth_Front_001b_600x600.jpg\"><img class=\"alignleft size-medium wp-image-519\" alt=\"TheEllyMaze_NearSouth_Front_001b_600x600\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/TheEllyMaze_NearSouth_Front_001b_600x600-300x300.jpg\" width=\"300\" height=\"300\" /></a>Johnna Maze and Loretta Vinson met at a music festival open stage and immediately began a musical partnership. As a member of a family of pickers, Johnna plays both guitar and Missouri style bloodbucket mandolin. No stranger to picking herself, Loretta takes on rhythm guitar, upright bass and banjo.\r\n\r\nBlending Bluegrass, Americana, and classic Country, <strong>The Elly Maze</strong> count the Flying Burrito Brothers, Gram Parsons, Emmylou Harris, Buffalo Springfield, Loretta Lynn, George Jones, Merle Haggard, and Marshall Chapman as those who have influenced their career, and their sound which they call Honkygrass-Amerifolk.\r\n\r\n<i>Near South</i>, their release through Earth Hertz Records, features eleven tracks of traditional country flavored joy. Johnna, Loretta and violinist Carolyn Dutton, have created a solid taste of old time American music, full of beautiful melodies and classic country vocals.','The Elly Maze','','inherit','open','open','','252-autosave-v1','','','2013-10-13 00:28:46','2013-10-13 00:28:46','',252,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/252-autosave-v1/',0,'revision','',0),(519,2,'2013-10-08 02:26:27','2013-10-08 02:26:27','','TheEllyMaze_NearSouth_Front_001b_600x600','','inherit','open','open','','theellymaze_nearsouth_front_001b_600x600-2','','','2013-10-08 02:26:27','2013-10-08 02:26:27','',252,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/TheEllyMaze_NearSouth_Front_001b_600x600.jpg',0,'attachment','image/jpeg',0),(520,2,'2013-10-08 12:14:48','2013-10-08 12:14:48','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/TheEllyMaze_NearSouth_Front_001b_600x600.jpg\"><img class=\"alignleft size-medium wp-image-519\" alt=\"TheEllyMaze_NearSouth_Front_001b_600x600\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/TheEllyMaze_NearSouth_Front_001b_600x600-300x300.jpg\" width=\"300\" height=\"300\" /></a>Johnna Maze and Loretta Vinson met at a music festival open stage and immediately began a musical partnership. As a member of a family of pickers, Johnna plays both guitar and Missouri style bloodbucket mandolin. No stranger to picking herself, Loretta takes on rhythm guitar, upright bass and banjo.\r\n\r\nBlending Bluegrass, Americana, and classic Country, <strong>The Elly Maze</strong> count the Flying Burrito Brothers, Gram Parsons, Emmylou Harris, Buffalo Springfield, Loretta Lynn, George Jones and Merle Haggard as a few of their many influences in creating their own sound which they call Honkygrass-Amerifolk.\r\n\r\n<i>Near South</i>, their release through Earth Hertz Records, features eleven tracks of traditional country flavored joy. Johnna, Loretta and violinist Carolyn Dutton, have created a solid taste of old time American music, full of beautiful melodies and classic country vocals.','The Elly Maze','','inherit','open','open','','252-revision-v1','','','2013-10-08 12:14:48','2013-10-08 12:14:48','',252,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/252-revision-v1/',0,'revision','',0),(522,1,'2013-10-08 15:54:08','2013-10-08 15:54:08','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu {\n width: 50px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 15:54:08','2013-10-08 15:54:08','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(523,1,'2013-10-08 15:54:53','2013-10-08 15:54:53','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item-112 {\n width: 50px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 15:54:53','2013-10-08 15:54:53','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(524,1,'2013-10-08 15:57:36','2013-10-08 15:57:36','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item-112 {\n width: 100px;\n height: 100px;\n}\n\n.menu-item-112 {\n width: 100px;\n height: 100px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 15:57:36','2013-10-08 15:57:36','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(525,1,'2013-10-08 15:57:09','2013-10-08 15:57:09','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item-112 {\n width: 100px;\n height: 30px;\n}\n\n.menu-item-113 {\n width: 100px;\n height: 30px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 15:57:09','2013-10-08 15:57:09','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(526,1,'2013-10-08 15:58:42','2013-10-08 15:58:42','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu {\n height: 30px;\n}\n\n.menu-item-112 {\n width: 100px;\n height: 30px;\n}\n\n.menu-item-113 {\n width: 100px;\n height: 30px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 15:58:42','2013-10-08 15:58:42','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(527,1,'2013-10-08 16:00:40','2013-10-08 16:00:40','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu menu-item menu-item-type-post_type menu-item-object-page {\n height: 30px;\n}\n\n.menu-item-112 {\n width: 100px;\n height: 30px;\n}\n\n.menu-item-113 {\n width: 100px;\n height: 30px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:00:40','2013-10-08 16:00:40','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(528,1,'2013-10-08 16:01:11','2013-10-08 16:01:11','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu menu-item menu-item-type-post_type menu-item-object-page {\n height: 10px;\n}\n\n.menu-item-112 {\n width: 100px;\n height: 30px;\n}\n\n.menu-item-113 {\n width: 100px;\n height: 30px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:01:11','2013-10-08 16:01:11','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(529,1,'2013-10-08 16:03:04','2013-10-08 16:03:04','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu {\n height: 10px;\n}\n\n.menu-item {\n height: 10px;\n}\n\n.menu-item-type-custom {\n height: 10px;\n}\n\n.menu-item-object-custom {\n height: 10px;\n}\n\n.menu-item-home {\n height: 10px;\n}\n\n/*\n\n.menu-item-112 {\n width: 100px;\n height: 30px;\n}\n\n.menu-item-113 {\n width: 100px;\n height: 30px;\n}\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:03:04','2013-10-08 16:03:04','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(530,1,'2013-10-08 16:02:29','2013-10-08 16:02:29','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu {\n height: 10px;\n}\n\n.menu-item {\n height: 10px;\n}\n\n.menu-item-type-custom {\n height: 10px;\n}\n\n.menu-item-object-custom {\n height: 10px;\n}\n\n.menu-item-home {\n height: 10px;\n}\n\n.menu-item-112 {\n height: 10px;\n}\n\n/*\n\n\n\n.menu-item-113 {\n width: 100px;\n height: 30px;\n}\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:02:29','2013-10-08 16:02:29','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(533,1,'2013-10-08 16:07:08','2013-10-08 16:07:08','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:07:08','2013-10-08 16:07:08','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(532,1,'2013-10-08 16:06:22','2013-10-08 16:06:22','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item-112 {\n height: 10px;\n}\n\n.menu-item-113 {\n height: 10px;\n}\n\n.menu-item-119 {\n height: 10px;\n}\n\n.menu-item-114 {\n height: 10px;\n}\n\n.menu-item-118 {\n height: 10px;\n}\n\n.menu-item-122 {\n height: 10px;\n}\n\n.menu-item-117 {\n height: 10px;\n}\n\n.menu-item-120 {\n height: 10px;\n}\n\n.menu-item-115 {\n height: 10px;\n}\n\n.menu-item-121 {\n height: 10px;\n}\n\n.menu-item-116 {\n height: 10px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:06:22','2013-10-08 16:06:22','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(531,1,'2013-10-08 16:05:14','2013-10-08 16:05:14','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu {\n height: 10px;\n}\n\n.menu-item {\n height: 10px;\n}\n\n.menu-item-type-custom {\n height: 10px;\n}\n\n.menu-item-object-custom {\n height: 10px;\n}\n\n.menu-item-home {\n height: 10px;\n}\n\n.menu-item-112 {\n height: 10px;\n}\n\n.menu-item-113 {\n height: 10px;\n}\n\n.menu-item-119 {\n height: 10px;\n}\n\n.menu-item-114 {\n height: 10px;\n}\n\n.menu-item-118 {\n height: 10px;\n}\n\n.menu-item-122 {\n height: 10px;\n}\n\n.menu-item-117 {\n height: 10px;\n}\n\n.menu-item-120 {\n height: 10px;\n}\n\n.menu-item-115 {\n height: 10px;\n}\n\n.menu-item-121 {\n height: 10px;\n}\n\n.menu-item-116 {\n height: 10px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:05:14','2013-10-08 16:05:14','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(534,1,'2013-10-08 16:07:48','2013-10-08 16:07:48','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item-116 {\n width: 70px;\n height: 10px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:07:48','2013-10-08 16:07:48','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(537,1,'2013-10-08 16:11:49','2013-10-08 16:11:49','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item-116 {\n margin-left: 2cm;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:11:49','2013-10-08 16:11:49','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(535,1,'2013-10-08 16:07:19','2013-10-08 16:07:19','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item-116 {\n width: 70px;\n height: 10px;\n text-align: center;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:07:19','2013-10-08 16:07:19','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(536,1,'2013-10-08 16:11:19','2013-10-08 16:11:19','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item-116 {\n width: 70px;\n height: 10px;\n text-align: center;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:11:19','2013-10-08 16:11:19','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(538,1,'2013-10-08 16:12:53','2013-10-08 16:12:53','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item-116 {\n margin-left: 2cm;\n padding-left: 2cm;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:12:53','2013-10-08 16:12:53','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(540,1,'2013-10-08 16:15:08','2013-10-08 16:15:08','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item-116 {\n float: left;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:15:08','2013-10-08 16:15:08','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(539,1,'2013-10-08 16:14:42','2013-10-08 16:14:42','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item-116 {\n margin-left: 2cm;\n padding-left: 2cm;\n float: right;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:14:42','2013-10-08 16:14:42','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(541,1,'2013-10-08 16:16:01','2013-10-08 16:16:01','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item-116 {\n text-align: left;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:16:01','2013-10-08 16:16:01','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(545,1,'2013-10-08 16:21:07','2013-10-08 16:21:07','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\nmenu {\n height: 5px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:21:07','2013-10-08 16:21:07','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(542,1,'2013-10-08 16:15:48','2013-10-08 16:15:48','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu {\n text-align: left;\n}\n\n.menu-item-116 {\n text-align: left;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:15:48','2013-10-08 16:15:48','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(544,1,'2013-10-08 16:17:51','2013-10-08 16:17:51','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu {\n height: 5px;\n}\n\n.menu-item-116 {\n text-align: left;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:17:51','2013-10-08 16:17:51','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(543,1,'2013-10-08 16:16:16','2013-10-08 16:16:16','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu {\n text-align: left;\n float: left;\n}\n\n.menu-item-116 {\n text-align: left;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:16:16','2013-10-08 16:16:16','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(546,1,'2013-10-08 16:20:43','2013-10-08 16:20:43','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\ndiv.menu {\n height: 5px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:20:43','2013-10-08 16:20:43','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(547,1,'2013-10-08 16:21:36','2013-10-08 16:21:36','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu {\n height: 5px;\n}\n\n#menu {\n height: 5px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:21:36','2013-10-08 16:21:36','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(548,1,'2013-10-08 16:22:26','2013-10-08 16:22:26','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu {\n text-align: justify;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:22:26','2013-10-08 16:22:26','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(549,1,'2013-10-08 16:24:15','2013-10-08 16:24:15','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.div {\n max-height: 5px;\n}\n\n.menu {\n text-align: justify;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:24:15','2013-10-08 16:24:15','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(562,1,'2013-10-08 16:52:40','2013-10-08 16:52:40','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:52:40','2013-10-08 16:52:40','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(550,1,'2013-10-08 16:26:44','2013-10-08 16:26:44','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.div.menu {\n max-height: 5px;\n}\n\n.menu {\n max-height: 5px;\n text-align: justify;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:26:44','2013-10-08 16:26:44','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(561,1,'2013-10-08 16:51:39','2013-10-08 16:51:39','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:51:39','2013-10-08 16:51:39','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(551,1,'2013-10-08 16:43:46','2013-10-08 16:43:46','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.div.menu {\n max-height: 5px;\n}\n\n.menu {\n max-height: 5px;\n text-align: justify;\n}\n\n.menu-item-112 {\n max-height: 5px;\n text-align: justify;\n}\n\n.menu-item-113 {\n max-height: 5px;\n text-align: justify;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:43:46','2013-10-08 16:43:46','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(552,1,'2013-10-08 16:43:22','2013-10-08 16:43:22','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.div.menu {\n max-height: 5px;\n}\n\n.menu {\n max-height: 5px;\n text-align: justify;\n}\n\n.menu-item-112 {\n max-width: 5px;\n text-align: justify;\n}\n\n.menu-item-113 {\n max-width: 5px;\n text-align: justify;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:43:22','2013-10-08 16:43:22','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(553,1,'2013-10-08 16:43:50','2013-10-08 16:43:50','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.div.menu {\n max-height: 5px;\n}\n\n.menu {\n max-height: 5px;\n text-align: left;\n}\n\n.menu-item-112 {\n max-width: 5px;\n text-align: justify;\n}\n\n.menu-item-113 {\n max-width: 5px;\n text-align: justify;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:43:50','2013-10-08 16:43:50','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(554,1,'2013-10-08 16:44:56','2013-10-08 16:44:56','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.div.menu {\n max-height: 5px;\n}\n\n.menu {\n max-height: 5px;\n text-align: left;\n}\n\n.menu-item-112 {\n max-width: 50px;\n text-align: justify;\n}\n\n.menu-item-113 {\n max-width: 50px;\n text-align: justify;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:44:56','2013-10-08 16:44:56','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(555,1,'2013-10-08 16:45:37','2013-10-08 16:45:37','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.div.menu {\n max-height: 5px;\n}\n\n.menu {\n max-height: 5px;\n text-align: left;\n}\n\n.menu-item-112 {\n max-width: 50px;\n text-align: left;\n}\n\n.menu-item-113 {\n max-width: 50px;\n left: 1px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:45:37','2013-10-08 16:45:37','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(556,1,'2013-10-08 16:46:43','2013-10-08 16:46:43','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.div.menu {\n max-height: 5px;\n}\n\n.menu {\n max-height: 5px;\n text-align: left;\n}\n\n.menu-item-112 {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n.menu-item-113 {\n max-width: 50px;\n max-height: 20px;\n left: 1px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:46:43','2013-10-08 16:46:43','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(560,1,'2013-10-08 16:51:58','2013-10-08 16:51:58','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:51:58','2013-10-08 16:51:58','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(557,1,'2013-10-08 16:47:40','2013-10-08 16:47:40','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.div.menu {\n max-height: 5px;\n}\n\n.menu {\n max-height: 5px;\n text-align: left;\n}\n\nmenu-item \n\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n.menu-item-113 {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n.menu-item-119 {\n max-width: 50px;\n max-height: 20px;\n left: 1px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:47:40','2013-10-08 16:47:40','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(559,1,'2013-10-08 16:50:36','2013-10-08 16:50:36','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:50:36','2013-10-08 16:50:36','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(558,1,'2013-10-08 16:48:18','2013-10-08 16:48:18','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.div.menu {\n max-height: 5px;\n}\n\n.menu {\n max-height: 5px;\n text-align: left;\n}\n\n.menu-item {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n.menu-item-113 {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n.menu-item-119 {\n max-width: 50px;\n max-height: 20px;\n left: 1px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:48:18','2013-10-08 16:48:18','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(565,1,'2013-10-08 16:54:45','2013-10-08 16:54:45','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 50px;\n max-height: 25px;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:54:45','2013-10-08 16:54:45','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(563,1,'2013-10-08 16:53:14','2013-10-08 16:53:14','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item {\n max-width: 80px;\n max-height: 10px;\n text-align: left;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:53:14','2013-10-08 16:53:14','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(564,1,'2013-10-08 16:54:00','2013-10-08 16:54:00','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n\n.menu-item {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:54:00','2013-10-08 16:54:00','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(566,1,'2013-10-08 16:55:10','2013-10-08 16:55:10','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 70px;\n max-height: 25px;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:55:10','2013-10-08 16:55:10','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(567,1,'2013-10-08 16:55:28','2013-10-08 16:55:28','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 80px;\n max-height: 25px;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:55:28','2013-10-08 16:55:28','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(568,1,'2013-10-08 16:55:49','2013-10-08 16:55:49','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 75px;\n max-height: 25px;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:55:49','2013-10-08 16:55:49','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(569,1,'2013-10-08 16:57:41','2013-10-08 16:57:41','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 75px;\n max-height: 25px;\n overflow: hidden;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:57:41','2013-10-08 16:57:41','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(570,1,'2013-10-08 16:59:29','2013-10-08 16:59:29','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 75px;\n max-height: 25px;\n padding-top: 2px;\n overflow: hidden;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:59:29','2013-10-08 16:59:29','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(571,1,'2013-10-08 16:59:08','2013-10-08 16:59:08','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 75px;\n max-height: 25px;\n padding-top: 2px;\n padding-bottom: 2px;\n padding-left: 2px;\n padding-right: 2px;\n overflow: hidden;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 16:59:08','2013-10-08 16:59:08','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(572,1,'2013-10-08 17:00:30','2013-10-08 17:00:30','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 75px;\n max-height: 25px;\n padding-top: 2px;\n padding-bottom: 2px;\n padding-left: 2px;\n padding-right: 2px;\n overflow: hidden;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 17:00:30','2013-10-08 17:00:30','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(573,1,'2013-10-08 17:00:59','2013-10-08 17:00:59','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 75px;\n max-height: 25px;\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 0;\n padding-right: 0;\n overflow: hidden;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 17:00:59','2013-10-08 17:00:59','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(574,1,'2013-10-08 17:02:24','2013-10-08 17:02:24','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 75px;\n max-height: 25px;\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 0;\n padding-right: 0;\n overflow: hidden;\n word-spacing: 30px;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 17:02:24','2013-10-08 17:02:24','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(575,1,'2013-10-08 17:03:33','2013-10-08 17:03:33','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 75px;\n max-height: 25px;\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 0;\n padding-right: 0;\n overflow: hidden;\n word-spacing: 3px;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 17:03:33','2013-10-08 17:03:33','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(596,1,'2013-10-09 02:13:06','2013-10-09 02:13:06','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 90px;\n max-height: 20px;\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 0;\n padding-right: 0;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-09 02:13:06','2013-10-09 02:13:06','',337,'http://www.earthhertzrecords.com/2013/10/09/337-revision-v1/',0,'revision','',0),(576,1,'2013-10-08 17:04:00','2013-10-08 17:04:00','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 75px;\n max-height: 25px;\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 0;\n padding-right: 0;\n overflow: hidden;\n word-spacing: 3px;\n font-size: 10px;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 17:04:00','2013-10-08 17:04:00','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(577,1,'2013-10-08 17:04:13','2013-10-08 17:04:13','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 75px;\n max-height: 25px;\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 0;\n padding-right: 0;\n overflow: hidden;\n word-spacing: 3px;\n font-size: 8px;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-08 17:04:13','2013-10-08 17:04:13','',337,'http://0332c8e.netsolhost.com/WordPress/2013/10/08/337-revision-v1/',0,'revision','',0),(1286,1,'2013-11-20 07:15:31','2013-11-20 07:15:31','[caption id=\"attachment_1285\" align=\"alignnone\" width=\"960\"]<img class=\" wp-image-1285\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/MG_radarTower.png\" width=\"960\" height=\"210\" /> Matt Guertin of radarTower is rocking in the studio with us. Hurry back Matt![/caption]','','','inherit','open','open','','1284-revision-v1','','','2013-11-20 07:15:31','2013-11-20 07:15:31','',1284,'http://www.earthhertzrecords.com/2013/11/1284-revision-v1/',0,'revision','',0),(1288,1,'2013-11-20 07:15:51','2013-11-20 07:15:51','','','','inherit','open','open','','an_video_slider','','','2013-11-20 07:15:51','2013-11-20 07:15:51','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/AN_Video_Slider.png',0,'attachment','image/png',0),(1450,2,'2014-01-03 18:20:52','2014-01-04 00:20:52','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg\"><img class=\"alignright size-full wp-image-1443\" alt=\"macintyre\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg\" width=\"298\" height=\"300\" /></a>Shortly after his eighth place finish on American Idol in 2009 singer/songwriter <a href=\"http://scottmacintyre.com/\">Scott MacIntyre</a> released an EP of Christmas music called <em>Christmas Angel</em>. Since that time, fans have been clamoring for a more full-length version of holiday themed material, and MacIntyre’s new album, <em>Christmas In Paris</em> delivers the goods. His fresh take on traditional songs of the season combined with two original compositions<em>(including the title track)</em> is sure to become a part of holiday tradition.\r\n\r\n2013 has been a big year for MacIntyre. In addition to the new Christmas album, he continues to speak around the country about his book <a href=\"http://www.amazon.com/Faith-Not-Sight-Inspirational-Life-Threatening/dp/0849947219\">“By Faith Not By Sight”</a>, which tells his personal story about overcoming adversity. He’s also performed shows with the likes of The Band Perry, Jonas Brothers and Alice Cooper. MacIntyre even relocated from Arizona to Franklin, TN to be closer to the creative community, and is in production for his next studio album with an anticipated Spring 2014 release.\r\n\r\nI spoke to him about his music as well as his involvement with <a href=\"http://donatelife.net/\">Donate Life America</a>; an alliance of organizations and state teams across the U.S. committed to increasing organ, eye and tissue donation. Another subject that is near and dear to his heart.\r\n\r\n<strong>James Wood: What made you decide to do a Christmas album?</strong>\r\n\r\nScott MacIntyre: Shortly after I left Idol back in 2009, I did a Christmas EP that included my original song, “Christmas Angel”. Since then, my fans have been asking for one, so this is my first full-length Christmas album.\r\n\r\n<strong>How did you determine which songs to include?</strong>\r\n\r\nThere are so many great Christmas songs, but in choosing material for the album I didn’t want to do anything that was too “surfacy”. I wanted to stay true to the melodies, but also wanted to dig into the atmosphere and sound scape of each song and create some really interesting textures.\r\n\r\n<strong>Tell me a little about the title track, “Christmas In Paris”.</strong>\r\n\r\nI wrote it with two amazing songwriters, Ryan Hydro and Aaron Steenhoven. Ryan was the one who came up with the title and as soon as I heard it, I knew it was going to be something that we could really dig into. Sure enough, once we started writing, we could all tell that it was going to be magical.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre.jpg\"><img class=\"alignleft size-medium wp-image-1444\" alt=\"scottmacintyre\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre-300x200.jpg\" width=\"300\" height=\"200\" /></a>What can fans expect from your new album due next year?</strong>\r\n\r\nThe songs for the album will represent another arrival point for me. It’s been an incredible journey having the privilege of working with more amazing songwriters like Cindy Morgan, Steve Dean, Richie Fike and Kyle Lee. Every song on the new album relates to my story and I hope to everyone’s own story as well in some way. It’s going to be a very meaningful album.\r\n\r\n<strong>Let’s discuss your musical background.</strong>\r\n\r\nI actually started messing around on the piano when I was almost two. I think because of my blindness and not being able to experience the world visually like other people do, I was drawn more to the world of sound. I was just fascinated by hearing the pure tone. Up until I was 15 everything that I played was classical, but I remember my Dad would drive me to school and on the way we’d listen to the pop music station on the radio. It was one of the first times that I was exposed to bands like Creed, Train, Vertical Horizon and Tool. I started picking up on patterns in the music and realized that what they were doing was pretty much the same as classical music. It was just represented differently. It was different from a symphony in that you didn’t have to guess it’s interpretation to understand the story. The words and melody were right there. From that point, I started to think that if I could tell stories with my gift, it could be something that everyone could relate to. It would be a powerful way to connect with people and I knew right then that it was the direction that I wanted to go.\r\n\r\n<strong>Tell me about how you came to be involved with Donate Life America.</strong>\r\n\r\nWhen I was 19, I found out that I had Stage 4 kidney failure. It was a scary time and I went through a lot of adversity trying to figure out what my future was going to be like. I eventually became so sick that I was unable to play piano in my own home. Music is like living and breathing to me, so it was pretty devastating. I was on dialysis three times a week for hours on end having a machine do what my kidneys couldn’t. Then in 2007, the wife of my former piano teacher from college donated her kidney and saved my life. Less than a year later, I auditioned for American Idol. I never really talked about any of it until my book came out last year, but I wanted to share that part of my story with people.\r\n\r\nWhen I met the president of Donate Life (David Fleming), I was instantly drawn to the organization and what they do. It’s something that I can really stand behind because I would not be here today if it wasn’t for that life saving gift. It’s so easy to become an organ donor. It only takes a few minutes to designate yourself as one and what better gift is there than to be able to give the gift of life to the thousands of people who are waiting for life saving transplants.\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Scott MacIntyre Talks Christmas Album, New Music','','inherit','open','open','','1442-revision-v1','','','2014-01-03 18:20:52','2014-01-04 00:20:52','',1442,'http://www.earthhertzrecords.com/2014/01/1442-revision-v1/',0,'revision','',0),(1291,1,'2013-11-20 07:18:07','2013-11-20 07:18:07','','','','inherit','open','open','','hippiegirl_slider','','','2013-11-20 07:18:07','2013-11-20 07:18:07','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/HippieGirl_Slider.png',0,'attachment','image/png',0),(579,2,'2013-10-08 23:35:31','2013-10-08 23:35:31','','Wayne Jackson, Elvis Session, 1969','Glen with Wayne Jackson(r) of the Memphis Horns','inherit','open','open','','wayne-jackson-elvis-session-1969','','','2013-10-08 23:35:31','2013-10-08 23:35:31','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Wayne-and-Me.jpg',0,'attachment','image/jpeg',0),(580,2,'2013-10-08 23:37:36','2013-10-08 23:37:36','','Austin show backstage 2011','With B.J. Thomas','inherit','open','open','','austin-show-backstage-2011','','','2013-10-08 23:37:36','2013-10-08 23:37:36','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg',0,'attachment','image/jpeg',0),(581,2,'2013-10-08 23:41:38','2013-10-08 23:41:38','','Glen Spreen-Dreams','','inherit','open','open','','glen-spreen-dreams','','','2013-10-08 23:41:38','2013-10-08 23:41:38','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg',0,'attachment','image/jpeg',0),(1280,1,'2013-11-20 07:09:10','2013-11-20 07:09:10','[caption id=\"attachment_1281\" align=\"alignnone\" width=\"960\"]<img class=\" wp-image-1281\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/AN_Posterized.png\" width=\"960\" height=\"210\" /> Check out Applegate Nance music out now.[/caption]','','','publish','open','open','','1280','','','2014-03-28 11:51:21','2014-03-28 17:51:21','',0,'http://www.earthhertzrecords.com/?p=1280',0,'post','',0),(1281,1,'2013-11-20 07:08:36','2013-11-20 07:08:36','','','','inherit','open','open','','an_posterized','','','2013-11-20 07:08:36','2013-11-20 07:08:36','',1280,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/AN_Posterized.png',0,'attachment','image/png',0),(1282,1,'2013-11-20 07:09:10','2013-11-20 07:09:10','<img class=\"alignnone size-full wp-image-1281\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/AN_Posterized.png\" width=\"960\" height=\"210\" />','','','inherit','open','open','','1280-revision-v1','','','2013-11-20 07:09:10','2013-11-20 07:09:10','',1280,'http://www.earthhertzrecords.com/2013/11/1280-revision-v1/',0,'revision','',0),(1283,1,'2013-11-20 07:11:50','2013-11-20 07:11:50','[caption id=\"attachment_1281\" align=\"alignnone\" width=\"960\"]<img class=\" wp-image-1281\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/AN_Posterized.png\" width=\"960\" height=\"210\" /> Check out Applegate Nance music out now.[/caption]','','','inherit','open','open','','1280-revision-v1','','','2013-11-20 07:11:50','2013-11-20 07:11:50','',1280,'http://www.earthhertzrecords.com/2013/11/1280-revision-v1/',0,'revision','',0),(1284,1,'2013-11-20 07:15:31','2013-11-20 07:15:31','[caption id=\"attachment_1285\" align=\"alignnone\" width=\"960\"]<img class=\" wp-image-1285\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/MG_radarTower.png\" width=\"960\" height=\"210\" /> Matt Guertin of radarTower is rocking in the studio with us. Hurry back Matt![/caption]','','','private','open','open','','1284','','','2014-04-14 11:13:37','2014-04-14 17:13:37','',0,'http://www.earthhertzrecords.com/?p=1284',0,'post','',0),(1285,1,'2013-11-20 07:14:20','2013-11-20 07:14:20','','','','inherit','open','open','','mg_radartower','','','2013-11-20 07:14:20','2013-11-20 07:14:20','',1284,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/MG_radarTower.png',0,'attachment','image/png',0),(1272,1,'2013-11-18 19:23:51','2013-11-18 19:23:51','','Front Page','','publish','open','open','','front-page','','','2013-11-18 19:26:25','2013-11-18 19:26:25','',0,'http://www.earthhertzrecords.com/?page_id=1272',0,'page','',0),(1273,1,'2013-11-18 19:23:51','2013-11-18 19:23:51','','Front Page','','inherit','open','open','','1272-revision-v1','','','2013-11-18 19:23:51','2013-11-18 19:23:51','',1272,'http://www.earthhertzrecords.com/2013/11/1272-revision-v1/',0,'revision','',0),(1274,1,'2013-11-19 03:34:41','2013-11-19 03:34:41','','','','inherit','open','open','','header1_final','','','2013-11-19 03:34:41','2013-11-19 03:34:41','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/Header1_Final.png',0,'attachment','image/png',0),(1275,1,'2013-11-19 03:35:29','2013-11-19 03:35:29','','','','inherit','open','open','','header1_final-2','','','2013-11-19 03:35:29','2013-11-19 03:35:29','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/Header1_Final1.png',0,'attachment','image/png',0),(1276,1,'2013-11-19 03:37:20','2013-11-19 03:37:20','http://www.earthhertzrecords.com/wp-content/uploads/2013/11/Header1_Final2.png','','','inherit','open','open','','header1_final2-png','','','2013-11-19 03:37:20','2013-11-19 03:37:20','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/Header1_Final2.png',0,'attachment','image/png',0),(1277,1,'2013-11-19 03:38:09','2013-11-19 03:38:09','http://www.earthhertzrecords.com/wp-content/uploads/2013/11/Header1_Final3.png','','','inherit','open','open','','header1_final3-png','','','2013-11-19 03:38:09','2013-11-19 03:38:09','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/Header1_Final3.png',0,'attachment','image/png',0),(1278,1,'2013-11-19 03:38:19','2013-11-19 03:38:19','http://www.earthhertzrecords.com/wp-content/uploads/2013/11/Header_Red_White_Final.png','','','inherit','open','open','','header_red_white_final-png','','','2013-11-19 03:38:19','2013-11-19 03:38:19','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/Header_Red_White_Final.png',0,'attachment','image/png',0),(585,2,'2013-10-09 00:53:28','2013-10-09 00:53:28','','meredytheandtherecyclekids','','inherit','open','open','','meredytheandtherecyclekids','','','2013-10-09 00:53:28','2013-10-09 00:53:28','',19,'http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg',0,'attachment','image/jpeg',0),(1265,2,'2013-11-15 14:42:00','2013-11-15 14:42:00','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/JayBennett1-500x446.jpg\"><img class=\"aligncenter size-full wp-image-1260\" alt=\"JayBennett1-500x446\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/JayBennett1-500x446.jpg\" width=\"500\" height=\"446\" /></a>For those of you who are not familiar with Sam Jones’ 2001 documentary on Wilco, <em>I Am Trying to Break Your Heart</em>, rent it tonight. You will not be disappointed. The film offers a candid view of one of America’s greatest rock bands. Jones’ film chronicles the band who were in the process of recording a landmark album, <em>Yankee Hotel Foxtrot</em>, when their record company (Reprise) dropped them. Amid the business turmoil, the group’s leader, Jeff Tweedy, who was battling severe migraines at the time, fired band member and producer Jay Bennett. For many of us, it was the last time we ever heard from Bennett. After his dismissal from Wilco, Jay Bennett embarked on a solo career (releasing five records, one posthumously) that paled in comparison to Wilco’s commercial and critical acclaim. Bennett was a talented musician, skillful producer and session musician who worked with numerous artists: Garrison Starr, Adam Schmitt, Billy Joe Shaver, Blues Traveler, Allison Moorer, Jellyfish, Sherry Rich, Tim Easton,Tommy Keene, Jeff Black and Sheryl Crow. But what will he be best remembered for? A troubled artist? A tortured soul? A frustrated musician and producer who was desperately clinging to a career that was slipping away? I’m afraid that it might be all three. In 1995, Bennett joined Wilco for their sophomore effort, <em>Being There. </em>His contributions elevated Tweedy’s alt-country group into new musical terrain. It is somewhat reminiscent of mid-period Beatles, moving forward from <em>Help</em> to <em>Rubber Soul</em>. When the band released its third studio album, <em>Summerteeth, </em>they continued to experiment, progressing both sonically and musically, such as The Beatles did with <em>Rubber Soul’s </em>successor,<em> Revolver</em>. Wilco sounded like a completely different band from its debut record, 1995′s <em>A.M.</em> <a href=\"http://www.spin.com/blog/what-jay-bennetts-death-made-me-realize-about-wilco/\">Ellen Carpenter</a> of <em>Spin</em> wrote about <em>Summerteeth</em>, “The songs were fuller, warmer, the standard guitar-and-drums set-up of <em>A.M.</em> had been supplemented by a lush psychedelic impressionism that was largely a product of Bennett’s masterful work with farfisa organ, bells, Moog, lap steel guitar, banjo, synthesizer, and other instrumental exotica.” With Wilco’s magnum opus, <em>Yankee Hotel Foxtrot,</em> the album that anointed Wilco as one of the greatest bands of its generation, Jay Bennett’s contributions were enormous, co-writing eight of the eleven songs and producing much of the record himself. Since Bennett’s firing, Wilco has released four distinguished records – <em>A Ghost is Born</em> (2004) being the most compelling – but none of them have had the personality, the daring, the audacity and powerfully evocative sounds of the three records Jay Bennett worked on. <strong>Post by Richard Fulco.</strong>','Remembering Jay Bennett','','inherit','open','open','','1259-autosave-v1','','','2013-11-15 14:42:00','2013-11-15 14:42:00','',1259,'http://www.earthhertzrecords.com/2013/11/1259-autosave-v1/',0,'revision','',0),(590,2,'2013-10-09 01:28:36','2013-10-09 01:28:36','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/TheEllyMaze_NearSouth_Front_001b_600x600.jpg\"><img class=\"alignleft size-medium wp-image-519\" alt=\"TheEllyMaze_NearSouth_Front_001b_600x600\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/TheEllyMaze_NearSouth_Front_001b_600x600-300x300.jpg\" width=\"300\" height=\"300\" /></a>Johnna Maze and Loretta Vinson met at a music festival open stage and immediately began a musical partnership. As a member of a family of pickers, Johnna plays both guitar and Missouri style bloodbucket mandolin. No stranger to picking herself, Loretta takes on rhythm guitar, upright bass and banjo.\r\n\r\nBlending Bluegrass, Americana, and classic Country, <strong>The Elly Maze</strong> count the Flying Burrito Brothers, Gram Parsons, Emmylou Harris, Buffalo Springfield, Loretta Lynn, George Jones, Merle Haggard, and Marshall Chapman as those who have influenced their career, and their sound which they call Honkygrass-Amerifolk.\r\n\r\n<i>Near South</i>, their release through Earth Hertz Records, features eleven tracks of traditional country flavored joy. Johnna, Loretta and violinist Carolyn Dutton, have created a solid taste of old time American music, full of beautiful melodies and classic country vocals.','The Elly Maze','','inherit','open','open','','252-revision-v1','','','2013-10-09 01:28:36','2013-10-09 01:28:36','',252,'http://0332c8e.netsolhost.com/WordPress/2013/10/09/252-revision-v1/',0,'revision','',0),(610,1,'2013-10-11 01:41:11','2013-10-11 01:41:11','Music\r\nVideo\r\nBooks\r\nClothing\r\nAccesories\r\nPosters\r\nArtwork\r\nMemorabilia\r\n','STORE','','inherit','open','open','','21-revision-v1','','','2013-10-11 01:41:11','2013-10-11 01:41:11','',21,'http://www.earthhertzrecords.com/2013/10/11/21-revision-v1/',0,'revision','',0),(609,1,'2013-10-11 01:35:30','2013-10-11 01:35:30','News Page','MUSIC NEWS','','inherit','open','open','','17-revision-v1','','','2013-10-11 01:35:30','2013-10-11 01:35:30','',17,'http://www.earthhertzrecords.com/2013/10/11/17-revision-v1/',0,'revision','',0),(646,1,'2013-10-11 16:48:12','2013-10-11 16:48:12','','MUSIC NEWS','','inherit','open','open','','17-revision-v1','','','2013-10-11 16:48:12','2013-10-11 16:48:12','',17,'http://www.earthhertzrecords.com/2013/10/11/17-revision-v1/',0,'revision','',0),(641,1,'2013-10-11 15:02:02','2013-10-11 15:02:02','[caption id=\"attachment_491\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/p3Wu0q-7Z\"><img class=\"wp-image-491 \" title=\"Five Questions with Matt Guertin of radarTower \" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200-150x150.jpg\" width=\"150\" height=\"150\" /></a> Five Questions with Matt Guertin of radarTower[/caption]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_600\" align=\"alignleft\" width=\"150\"]<img class=\"size-thumbnail wp-image-600\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1-150x150.jpg\" width=\"150\" height=\"150\" /> Hannah Mae[/caption]\r\n\r\n ','INTERVIEWS','','inherit','open','open','','26-revision-v1','','','2013-10-11 15:02:02','2013-10-11 15:02:02','',26,'http://www.earthhertzrecords.com/2013/10/11/26-revision-v1/',0,'revision','',0),(594,1,'2013-10-09 02:11:22','2013-10-09 02:11:22','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 90px;\n max-height: 25px;\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 0;\n padding-right: 0;\n overflow: hidden;\n word-spacing: 3px;\n font-size: 8px;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-09 02:11:22','2013-10-09 02:11:22','',337,'http://www.earthhertzrecords.com/2013/10/09/337-revision-v1/',0,'revision','',0),(595,1,'2013-10-09 02:11:20','2013-10-09 02:11:20','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 90px;\n max-height: 20px;\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 0;\n padding-right: 0;\n overflow: hidden;\n word-spacing: 3px;\n font-size: 8px;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-09 02:11:20','2013-10-09 02:11:20','',337,'http://www.earthhertzrecords.com/2013/10/09/337-revision-v1/',0,'revision','',0),(608,1,'2013-10-11 01:12:04','2013-10-11 01:12:04','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n/*\n.menu-item {\n max-width: 90px;\n max-height: 20px;\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 0;\n padding-right: 0;\n overflow: hidden;\n word-spacing: 3px;\n font-size: 10px;\n}\n*/\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-11 01:12:04','2013-10-11 01:12:04','',337,'http://www.earthhertzrecords.com/2013/10/11/337-revision-v1/',0,'revision','',0),(597,1,'2013-10-09 02:12:53','2013-10-09 02:12:53','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.menu-item {\n max-width: 90px;\n max-height: 20px;\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 0;\n padding-right: 0;\n overflow: hidden;\n word-spacing: 3px;\n font-size: 10px;\n}\n\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-09 02:12:53','2013-10-09 02:12:53','',337,'http://www.earthhertzrecords.com/2013/10/09/337-revision-v1/',0,'revision','',0),(599,2,'2013-10-09 13:56:30','2013-10-09 13:56:30','<b>Tell me how you first got into music.</b>\r\n\r\nI’ve played piano since I was really young. I would sing in church and school in choir. My mom is a flutist; she sings and plays all different instruments, and my dad plays guitar. So you could say I grew up around a musical family. I was always singing or humming, and I started writing songs when I was pretty young, like ten or eleven. I didn’t start performing on my own until I was about seventeen. When I was fifteen or sixteen, I started playing the guitar, I took lessons. Then I started playing out more in singing competitions and random little gigs.\r\n\r\n<b>What are your musical influences?</b>\r\n\r\nI grew up listening to my dad’s oldies and country. I listened to older country when I was younger, and my mom is a big fan of classical music, so those were the main genres I listened to. But then I got more into the pop stuff when I was in my early teens. I listened to a ton of Christina Aguilera because I love her vocals. But I’m very open in my genres, I like everything from country to oldies to pop, then folk and new age stuff. I think the genre that I’ve settled in currently is more like a folk-new age sound.\r\n\r\n<b>What’s your songwriting technique?</b>\r\n\r\nIt changes. When I first started writing, I played piano, so I would always create the melody and then the lyrics. That’s why I started taking guitar lessons. I needed an instrument were I could just pick up and go. A piano is a little hard to carry around. I wanted an instrument that I could take with me and put a melody down when I think of lyrics. Then I switched to thinking of the lyrics first and create the melody with the guitar. It goes back and forth depending on what I have access to.\r\n\r\n<b>Tell me about your first sing released through Earth Hertz, “Run And Guns.”</b>\r\n\r\nI started writing that song when the banjo player I played a few gigs together with started playing this melody on the banjo, and I heard in it this pioneer, western ballad thing going on in my head. I started writing the lyrics while I was thinking about the pioneer and Indian days, and how people had to up and move really quick, and how people had land taken from under them. The lyrics went that way; the melody started me thinking I guess.\r\n\r\n<b>What are your interests outside of music?</b>\r\n\r\nI have a day job where I teach music classes to 3-5 year-olds. It’s really fun. I honestly enjoy working with kids. I like outdoor stuff like hiking and swimming. I am also an artist; I paint, do crafts and art. I’m an acrylic painter. I’m just an artist.\r\n\r\nInterview by Kath Galasso @KatsTheory','Five Questions with Hannah Mae','','inherit','open','open','','598-revision-v1','','','2013-10-09 13:56:30','2013-10-09 13:56:30','',598,'http://www.earthhertzrecords.com/2013/10/09/598-revision-v1/',0,'revision','',0),(600,2,'2013-10-09 14:14:23','2013-10-09 14:14:23','Five Questions with Hannah Mae','Hannah Mae','Hannah Mae','inherit','open','open','','earthhertz-hannahmae-1','','','2013-10-09 14:14:23','2013-10-09 14:14:23','',598,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1.jpg',0,'attachment','image/jpeg',0),(601,2,'2013-10-09 14:16:08','2013-10-09 14:16:08','','EarthHertz-HannahMae-2','','inherit','open','open','','earthhertz-hannahmae-2','','','2013-10-09 14:16:08','2013-10-09 14:16:08','',598,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-2.jpg',0,'attachment','image/jpeg',0),(602,2,'2013-10-09 14:15:58','2013-10-09 14:15:58','<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1.jpg\"><img class=\"alignleft size-medium wp-image-600\" alt=\"EarthHertz-HannahMae-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1-206x300.jpg\" width=\"206\" height=\"300\" /></a>Hannah Mae Rector</strong> grew up surrounded by music, so it wasn\'t a stretch to think she would make it her career. Whether she\'s playing piano or guitar, Hannah\'s vocals combine with her storytelling to create songs filled with imagination and fluid melodies.\r\n\r\n<b>Tell me how you first got into music.</b>\r\n\r\nI’ve played piano since I was really young. I would sing in church and school in choir. My mom is a flutist; she sings and plays all different instruments, and my dad plays guitar. So you could say I grew up around a musical family. I was always singing or humming, and I started writing songs when I was pretty young, like ten or eleven. I didn’t start performing on my own until I was about seventeen. When I was fifteen or sixteen, I started playing the guitar, I took lessons. Then I started playing out more in singing competitions and random little gigs.\r\n\r\n<b>What are your musical influences?</b>\r\n\r\nI grew up listening to my dad’s oldies and country. I listened to older country when I was younger, and my mom is a big fan of classical music, so those were the main genres I listened to. But then I got more into the pop stuff when I was in my early teens. I listened to a ton of Christina Aguilera because I love her vocals. But I’m very open in my genres, I like everything from country to oldies to pop, then folk and new age stuff. I think the genre that I’ve settled in currently is more like a folk-new age sound.\r\n\r\n<b>What’s your songwriting technique?</b>\r\n\r\nIt changes. When I first started writing, I played piano, so I would always create the melody and then the lyrics. That’s why I started taking guitar lessons. I needed an instrument were I could just pick up and go. A piano is a little hard to carry around. I wanted an instrument that I could take with me and put a melody down when I think of lyrics. Then I switched to thinking of the lyrics first and create the melody with the guitar. It goes back and forth depending on what I have access to.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-2.jpg\"><img class=\"alignright size-medium wp-image-601\" alt=\"EarthHertz-HannahMae-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-2-225x300.jpg\" width=\"225\" height=\"300\" /></a>Tell me about your first sing released through Earth Hertz, “Run And Guns.”</b>\r\n\r\nI started writing that song when the banjo player I played a few gigs together with started playing this melody on the banjo, and I heard in it this pioneer, western ballad thing going on in my head. I started writing the lyrics while I was thinking about the pioneer and Indian days, and how people had to up and move really quick, and how people had land taken from under them. The lyrics went that way; the melody started me thinking I guess.\r\n\r\n<b>What are your interests outside of music?</b>\r\n\r\nI have a day job where I teach music classes to 3-5 year-olds. It’s really fun. I honestly enjoy working with kids. I like outdoor stuff like hiking and swimming. I am also an artist; I paint, do crafts and art. I’m an acrylic painter. I’m just an artist.\r\n\r\nInterview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@KatsTheory</a>','Five Questions with Hannah Mae','','inherit','open','open','','598-revision-v1','','','2013-10-09 14:15:58','2013-10-09 14:15:58','',598,'http://www.earthhertzrecords.com/2013/10/09/598-revision-v1/',0,'revision','',0),(603,2,'2013-10-09 14:19:23','2013-10-09 14:19:23','<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1.jpg\"><img class=\"alignleft size-medium wp-image-600\" alt=\"EarthHertz-HannahMae-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1-206x300.jpg\" width=\"206\" height=\"300\" /></a>Hannah Mae Rector</strong> grew up surrounded by music, so it wasn\'t a stretch to think she would make it her career. Whether she\'s playing piano or guitar, Hannah\'s vocals combine with her storytelling to create songs filled with imagination and fluid melodies.\r\n\r\n<b>Tell me how you first got into music.</b>\r\n\r\nI’ve played piano since I was really young. I would sing in church and school in choir. My mom is a flutist; she sings and plays all different instruments, and my dad plays guitar. So you could say I grew up around a musical family. I was always singing or humming, and I started writing songs when I was pretty young, like ten or eleven. I didn’t start performing on my own until I was about seventeen. When I was fifteen or sixteen, I started playing the guitar, I took lessons. Then I started playing out more in singing competitions and random little gigs.\r\n\r\n<b>What are your musical influences?</b>\r\n\r\nI grew up listening to my dad’s oldies and country. I listened to older country when I was younger, and my mom is a big fan of classical music, so those were the main genres I listened to. But then I got more into the pop stuff when I was in my early teens. I listened to a ton of Christina Aguilera because I love her vocals. But I’m very open in my genres, I like everything from country to oldies to pop, then folk and new age stuff. I think the genre that I’ve settled in currently is more like a folk-new age sound.\r\n\r\n<b>How would you describe your songwriting technique?</b>\r\n\r\nIt changes. When I first started writing, I played piano, so I would always create the melody and then the lyrics. That’s why I started taking guitar lessons. I needed an instrument were I could just pick up and go. A piano is a little hard to carry around. I wanted an instrument that I could take with me and put a melody down when I think of lyrics. Then I switched to thinking of the lyrics first and create the melody with the guitar. It goes back and forth depending on what I have access to.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-2.jpg\"><img class=\"alignright size-medium wp-image-601\" alt=\"EarthHertz-HannahMae-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-2-225x300.jpg\" width=\"225\" height=\"300\" /></a>Tell me about your first sing released through Earth Hertz, “Run And Guns.”</b>\r\n\r\nI started writing that song when the banjo player I played a few gigs together with started playing this melody on the banjo, and I heard in it this pioneer, western ballad thing going on in my head. I started writing the lyrics while I was thinking about the pioneer and Indian days, and how people had to up and move really quick, and how people had land taken from under them. The lyrics went that way; the melody started me thinking I guess.\r\n\r\n<b>What are your interests outside of music?</b>\r\n\r\nI have a day job where I teach music classes to 3-5 year-olds. It’s really fun. I honestly enjoy working with kids. I like outdoor stuff like hiking and swimming. I am also an artist; I paint, do crafts and art. I’m an acrylic painter. I’m just an artist.\r\n\r\nInterview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@KatsTheory</a>','Five Questions with Hannah Mae','','inherit','open','open','','598-revision-v1','','','2013-10-09 14:19:23','2013-10-09 14:19:23','',598,'http://www.earthhertzrecords.com/2013/10/09/598-revision-v1/',0,'revision','',0),(604,2,'2013-10-09 14:22:21','2013-10-09 14:22:21','<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1.jpg\"><img class=\"alignleft size-medium wp-image-600\" alt=\"EarthHertz-HannahMae-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1-206x300.jpg\" width=\"206\" height=\"300\" /></a>Hannah Mae Rector</strong> grew up surrounded by music, so it wasn\'t a stretch to think she would make it her career. Whether she\'s playing piano or guitar, Hannah\'s vocals combine with her storytelling to create songs filled with imagination and fluid melodies.\r\n\r\n<b>Tell me how you first got into music.</b>\r\n\r\nI’ve played piano since I was really young. I would sing in church and school in choir. My mom is a flutist; she sings and plays all different instruments, and my dad plays guitar. So you could say I grew up around a musical family. I was always singing or humming, and I started writing songs when I was pretty young, like ten or eleven. I didn’t start performing on my own until I was about seventeen. When I was fifteen or sixteen, I started playing the guitar, I took lessons. Then I started playing out more in singing competitions and random little gigs.\r\n\r\n<b>What are your musical influences?</b>\r\n\r\nI grew up listening to my dad’s oldies and country. I listened to older country when I was younger, and my mom is a big fan of classical music, so those were the main genres I listened to. But then I got more into the pop stuff when I was in my early teens. I listened to a ton of Christina Aguilera because I love her vocals. But I’m very open in my genres, I like everything from country to oldies to pop, then folk and new age stuff. I think the genre that I’ve settled in currently is more like a folk-new age sound.\r\n\r\n<b>How would you describe your songwriting technique?</b>\r\n\r\nIt changes. When I first started writing, I played piano, so I would always create the melody and then the lyrics. That’s why I started taking guitar lessons. I needed an instrument were I could just pick up and go. A piano is a little hard to carry around. I wanted an instrument that I could take with me and put a melody down when I think of lyrics. I switched to thinking of the lyrics first and create the melody with the guitar. It goes back and forth depending on what I have access to.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-2.jpg\"><img class=\"alignright size-medium wp-image-601\" alt=\"EarthHertz-HannahMae-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-2-225x300.jpg\" width=\"225\" height=\"300\" /></a>Tell me about your first single released through Earth Hertz, “Guns And Run.”</b>\r\n\r\nI started writing that song when the banjo player I played a few gigs together with started playing this melody on the banjo, and I heard in it this pioneer, western ballad thing going on in my head. I started writing the lyrics while I was thinking about the Pioneer and Indian days, and how people had to up and move really quick, and how people had land taken from under them. The lyrics went that way; the melody started me thinking I guess.\r\n\r\n<b>What are your interests outside of music?</b>\r\n\r\nI have a day job where I teach music classes to 3-5 year-olds. It’s really fun. I honestly enjoy working with kids. I like outdoor stuff like hiking and swimming. I am also an artist; I paint, do crafts and art. I’m an acrylic painter. I’m just an artist.\r\n\r\nInterview by Kath Galasso <a href=\"https://twitter.com/KatsTheory\">@KatsTheory</a>','Five Questions with Hannah Mae','','inherit','open','open','','598-revision-v1','','','2013-10-09 14:22:21','2013-10-09 14:22:21','',598,'http://www.earthhertzrecords.com/2013/10/09/598-revision-v1/',0,'revision','',0),(605,2,'2013-10-09 14:27:42','2013-10-09 14:27:42','[caption id=\"attachment_491\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/p3Wu0q-7Z\"><img class=\" wp-image-491 \" title=\"Five Questions with Matt Guertin of radarTower \" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200-150x150.jpg\" width=\"150\" height=\"150\" /></a> Five Questions with Matt Guertin of radarTower[/caption]\n\n ','INTERVIEWS','','inherit','open','open','','26-autosave-v1','','','2013-10-09 14:27:42','2013-10-09 14:27:42','',26,'http://www.earthhertzrecords.com/2013/10/09/26-autosave-v1/',0,'revision','',0),(718,1,'2013-10-11 22:24:00','2013-10-11 22:24:00','','INTERVIEWS','','inherit','open','open','','26-revision-v1','','','2013-10-11 22:24:00','2013-10-11 22:24:00','',26,'http://www.earthhertzrecords.com/2013/10/11/26-revision-v1/',0,'revision','',0),(606,2,'2013-10-09 14:28:01','2013-10-09 14:28:01','[caption id=\"attachment_491\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/p3Wu0q-7Z\"><img class=\" wp-image-491 \" title=\"Five Questions with Matt Guertin of radarTower \" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200-150x150.jpg\" width=\"150\" height=\"150\" /></a> Five Questions with Matt Guertin of radarTower\r\n<div class=\"mceTemp\"><dl class=\"wp-caption alignleft\" id=\"attachment_600\" style=\"width: 160px;\"><dt class=\"wp-caption-dt\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1.jpg\"><img class=\"size-thumbnail wp-image-600 \" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1-150x150.jpg\" width=\"150\" height=\"150\" /></a></dt><dd class=\"wp-caption-dd\">Hannah Mae[/caption]\r\n\r\n</dd></dl></div>\r\n \r\n\r\n ','INTERVIEWS','','inherit','open','open','','26-revision-v1','','','2013-10-09 14:28:01','2013-10-09 14:28:01','',26,'http://www.earthhertzrecords.com/2013/10/09/26-revision-v1/',0,'revision','',0),(607,2,'2013-10-09 14:29:35','2013-10-09 14:29:35','[caption id=\"attachment_491\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/p3Wu0q-7Z\"><img class=\" wp-image-491 \" title=\"Five Questions with Matt Guertin of radarTower \" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200-150x150.jpg\" width=\"150\" height=\"150\" /></a> Five Questions with Matt Guertin of radarTower\r\n<div class=\"mceTemp\"><dl class=\"wp-caption alignleft\" id=\"attachment_600\" style=\"width: 160px;\"><dt class=\"wp-caption-dt\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1.jpg\"><img class=\"size-thumbnail wp-image-600 \" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1-150x150.jpg\" width=\"150\" height=\"150\" /></a></dt><dd class=\"wp-caption-dd\">Five Questions with Hannah Mae[/caption]\r\n\r\n</dd></dl></div>\r\n \r\n\r\n ','INTERVIEWS','','inherit','open','open','','26-revision-v1','','','2013-10-09 14:29:35','2013-10-09 14:29:35','',26,'http://www.earthhertzrecords.com/2013/10/09/26-revision-v1/',0,'revision','',0),(616,2,'2013-10-11 11:19:17','2013-10-11 11:19:17','','cassette-1','','inherit','open','open','','cassette-1','','','2013-10-11 11:19:17','2013-10-11 11:19:17','',615,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1.jpg',0,'attachment','image/jpeg',0),(617,2,'2013-10-11 11:20:50','2013-10-11 11:20:50','','cassette-2','','inherit','open','open','','cassette-2','','','2013-10-11 11:20:50','2013-10-11 11:20:50','',615,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2.jpg',0,'attachment','image/jpeg',0),(618,2,'2013-10-11 11:21:47','2013-10-11 11:21:47','','cassette-3','','inherit','open','open','','cassette-3','','','2013-10-11 11:21:47','2013-10-11 11:21:47','',615,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3.jpg',0,'attachment','image/jpeg',0),(619,2,'2013-10-11 11:22:25','2013-10-11 11:22:25','','cassette-4','','inherit','open','open','','cassette-4','','','2013-10-11 11:22:25','2013-10-11 11:22:25','',615,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4.jpg',0,'attachment','image/jpeg',0),(620,2,'2013-10-11 11:23:02','2013-10-11 11:23:02','','cassette-5','','inherit','open','open','','cassette-5','','','2013-10-11 11:23:02','2013-10-11 11:23:02','',615,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5.jpg',0,'attachment','image/jpeg',0),(621,2,'2013-10-11 11:24:07','2013-10-11 11:24:07','','cassette-6','','inherit','open','open','','cassette-6','','','2013-10-11 11:24:07','2013-10-11 11:24:07','',615,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6.jpg',0,'attachment','image/jpeg',0),(622,2,'2013-10-11 11:24:24','2013-10-11 11:24:24','','cassette-7','','inherit','open','open','','cassette-7','','','2013-10-11 11:24:24','2013-10-11 11:24:24','',615,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7.jpg',0,'attachment','image/jpeg',0),(623,2,'2013-10-11 11:24:53','2013-10-11 11:24:53','','cassette-8','','inherit','open','open','','cassette-8','','','2013-10-11 11:24:53','2013-10-11 11:24:53','',615,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8.jpg',0,'attachment','image/jpeg',0),(624,2,'2013-10-11 11:49:41','2013-10-11 11:49:41','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1.jpg\"><img class=\"alignleft size-thumbnail wp-image-616\" alt=\"cassette-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1-150x150.jpg\" width=\"150\" height=\"150\" /></a>In an era of compact disc, blue ray, and iWhateveryouwant, asking people to consider how awesome the cassette is seems impossible. But that cheap plastic casing that you used a pen to rewind the tape inside when your recorder was busted, saved rock and roll.\r\n\r\nGather around the computer screen, kids, the old man with tattoos and ridiculous record collection is telling a story.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2.jpg\"><img class=\"alignleft size-thumbnail wp-image-617\" alt=\"cassette-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2-150x150.jpg\" width=\"150\" height=\"150\" /></a><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3.jpg\"><img class=\"alignright size-thumbnail wp-image-618\" alt=\"cassette-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3-150x150.jpg\" width=\"150\" height=\"150\" /></a>On May 7, 1965, Rolling Stones guitarist, Keith Richards, wakes up in a Jacksonville, Florida hotel room to a startling musical discovery. The Philips Typ EL 3302 cassette recorder his band’s manager had bought for him to write songs revealed an 8-note acoustic guitar hook and the words “I can’t get no satisfaction” then the sound of a guitar pick dropping and 40 minutes of snoring. Three days later, “I Can’t Get No Satisfaction” was recorded at Chess Studios in Chicago, Illinois, and music was never the same. Three years after that, Keef would use the same machine and same overnight accident to record “Street FightingMan.”\r\n\r\nPhilips created the portable cassette tape and recording device in 1962, but didn’t show it to the world until the Berlin Radio Show on August 30, 1963. The technology had been around since the mid 1930s but it had mostly been used by governmental offices for secretarial dictation, and the cassettes themselves were so cheap, they were never saved for posterity. But with pop music and its associated culture exploding in the late 1950s and early 1960s, many communication companies looked for the next cash cow to milk.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4.jpg\"><img class=\"alignleft size-thumbnail wp-image-619\" alt=\"cassette-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4-150x150.jpg\" width=\"150\" height=\"150\" /></a>The first musical collections released on cassette were of the Lena Horne and Johnny Mathis ilk. Most rock and pop bands used cassettes to record demos them depended on the vinyl LP to make them famous, as that’s what stores stocked. After the 8-track boom of the mid 1970s, retailers wanted something smaller, more mobile, and user friendly to sell. The cassette and the mass market became passionate lovers in the 1980s.\r\n\r\nThe rewind button revolutionized how people listened to music. Attention deficit has been around since the cavemen. The cassette recorder just fed the impatience of humans like no other device. With 8-track tapes, you had to listen to the entire recording. There was that clunky fast forward move that beat up the tape. Sure, you could stop a record player, take off the needle, and then conjure the eyesight of a falcon to find the groove to play “Go Your Own Way” by Fleetwood Mac for the 37th time in a row. But with cassette? Hit rewind, guess right 63 percent of the time and voila! “Go Your Own Way” for the 38th time, but quicker.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5.jpg\"><img class=\"alignright size-thumbnail wp-image-620\" alt=\"cassette-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5-150x150.jpg\" width=\"150\" height=\"150\" /></a>My first cassette coincided with my first concert. Billy Joel’s <i>Nylon Curtain</i> album in 1982.\r\n\r\nCassettes were great and not just for the rewind button. In the early 1980s, most cars hadn’t caught up to the technology, so to listen to them you used a stereo or a portable recorder like the one Keef had. It made music more personal.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6.jpg\"><img class=\"alignleft size-thumbnail wp-image-621\" alt=\"cassette-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6-150x150.jpg\" width=\"150\" height=\"150\" /></a>By 1987, cassingles or cassette singles were the rage. This meant people could buy “Here I Go Again” without having to suffer through the whole Whitesnake album.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7.jpg\"><img class=\"alignright size-thumbnail wp-image-622\" alt=\"cassette-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7-150x150.jpg\" width=\"150\" height=\"150\" /></a>Cassettes also propped up three major musical movements – punk, college radio/alternative, and metal – that would later find massive success in the late 1980s and early 1990s. Bands could record demos or even full recordings on blank $1 cassettes then trade them or give them away to complete strangers, as Austin, Texas fast food worker, Daniel Johnston, did in the early 1990s, before becoming an underground sensation thanks to Kurt Cobain wearing his t-shirts in the 1990s.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8.jpg\"><img class=\"alignleft size-thumbnail wp-image-623\" alt=\"cassette-8\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8-150x150.jpg\" width=\"150\" height=\"150\" /></a>Cassettes were how music moved through the Iron Curtain and Communist Bloc countries where rock and roll and popular music was either banned or just unheard. I assume this is how David Hasselhoff became such a “thing” in Germany, because hey, the Hoff was there, man, when the wall came down in 1989.\r\n\r\nCompact disc was supposed to kill cassette. This is the circle of artificial life. But instead, digital made non-digital go underground. Newer technology means it’s more expensive. Indie bands, unsigned artists, and true punks have embraced the cassette. Music stores in America, Canada, Mexico, England and France have Cassette Days. Almost every indie band currently recording offers cassettes of their music on their websites or MySpace pages. It isn’t nostalgia isn’t keeping the cassette around, it’s money. Cassettes are the last bastion for have nots, and there will always be have nots.\r\n\r\nI miss my cassettes. I threw them all away or broke them from overuse. Cassette was how I loved Billy Joel, hair metal, The Smiths, R.E.M., Nirvana, and Tom Petty’s <i>Full Moon Fever</i>. I didn’t join the CD mainstream until my senior year of college, 1992. It seems apropos that most of us, including me, missed the cassette’s birthday on August 30th. I hope this column serves as enough of a belated birthday card.\r\n\r\nPost by Lance Burson\r\n\r\nFirst published on <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a> as <a href=\"http://raisedontheradio.com/2013/09/22/fiftieth-birthday-cassette-still-cant-get-satisfaction/\">On Its Fiftieth Birthday, the Cassette Still Can\'t Get No Satisfaction</a>\r\n\r\n<em>Lance Burson is a writer living outside Atlanta, Georgia with his wife and three daughters. He’s the published author of two books, both musically themed, The Ballad of Helene Troy and Soul To Body, found, digitally, on Amazon.com/kindle and in paperback on Lulu.com</em>.<em> He is a writer for <a href=\"http://sprocketink.com/author/lance/\">Sprocket Ink</a> and author of <a href=\"http://lancemyblogcanbeatupyourblog.wordpress.com/\">My Blog Can Beat Up Your Blog</a> Follow him on Twitter <a href=\"https://twitter.com/lanceburson\">@lanceburson</a></em>','On Its 50th Birthday, the Cassette Still Can\'t Get No Satisfaction','','inherit','open','open','','615-revision-v1','','','2013-10-11 11:49:41','2013-10-11 11:49:41','',615,'http://www.earthhertzrecords.com/2013/10/11/615-revision-v1/',0,'revision','',0),(626,2,'2013-10-11 11:54:53','2013-10-11 11:54:53','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1.jpg\"><img class=\"alignleft size-thumbnail wp-image-616\" alt=\"cassette-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1-150x150.jpg\" width=\"150\" height=\"150\" /></a>In an era of compact disc, blue ray, and iWhateveryouwant, asking people to consider how awesome the cassette is seems impossible. But that cheap plastic casing that you used a pen to rewind the tape inside when your recorder was busted, saved rock and roll. Gather around the computer screen, kids, the old man with tattoos and ridiculous record collection is telling a story. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2.jpg\"><img class=\"alignright size-thumbnail wp-image-617\" alt=\"cassette-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>On May 7, 1965, Rolling Stones guitarist, Keith Richards, wakes up in a Jacksonville, Florida hotel room to a startling musical discovery. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3.jpg\"><img class=\"alignleft size-thumbnail wp-image-618\" alt=\"cassette-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3-150x150.jpg\" width=\"150\" height=\"150\" /></a>The Philips Typ EL 3302 cassette recorder his band’s manager had bought for him to write songs revealed an 8-note acoustic guitar hook and the words “I can’t get no satisfaction” then the sound of a guitar pick dropping and 40 minutes of snoring. Three days later, “I Can’t Get No Satisfaction” was recorded at Chess Studios in Chicago, Illinois, and music was never the same. Three years after that, Keef would use the same machine and same overnight accident to record “Street FightingMan.” Philips created the portable cassette tape and recording device in 1962, but didn’t show it to the world until the Berlin Radio Show on August 30, 1963. The technology had been around since the mid 1930s but it had mostly been used by governmental offices for secretarial dictation, and the cassettes themselves were so cheap, they were never saved for posterity. But with pop music and its associated culture exploding in the late 1950s and early 1960s, many communication companies looked for the next cash cow to milk. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4.jpg\"><img class=\"alignleft size-thumbnail wp-image-619\" alt=\"cassette-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4-150x150.jpg\" width=\"150\" height=\"150\" /></a>The first musical collections released on cassette were of the Lena Horne and Johnny Mathis ilk. Most rock and pop bands used cassettes to record demos them depended on the vinyl LP to make them famous, as that’s what stores stocked. After the 8-track boom of the mid 1970s, retailers wanted something smaller, more mobile, and user friendly to sell. The cassette and the mass market became passionate lovers in the 1980s. The rewind button revolutionized how people listened to music. Attention deficit has been around since the cavemen. The cassette recorder just fed the impatience of humans like no other device. With 8-track tapes, you had to listen to the entire recording. There was that clunky fast forward move that beat up the tape. Sure, you could stop a record player, take off the needle, and then conjure the eyesight of a falcon to find the groove to play “Go Your Own Way” by Fleetwood Mac for the 37th time in a row. But with cassette? Hit rewind, guess right 63 percent of the time and voila! “Go Your Own Way” for the 38th time, but quicker. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5.jpg\"><img class=\"alignright size-thumbnail wp-image-620\" alt=\"cassette-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5-150x150.jpg\" width=\"150\" height=\"150\" /></a>My first cassette coincided with my first concert. Billy Joel’s <i>Nylon Curtain</i> album in 1982. Cassettes were great and not just for the rewind button. In the early 1980s, most cars hadn’t caught up to the technology, so to listen to them you used a stereo or a portable recorder like the one Keef had. It made music more personal. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6.jpg\"><img class=\"alignleft size-thumbnail wp-image-621\" alt=\"cassette-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6-150x150.jpg\" width=\"150\" height=\"150\" /></a>By 1987, cassingles or cassette singles were the rage. This meant people could buy “Here I Go Again” without having to suffer through the whole Whitesnake album. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7.jpg\"><img class=\"alignright size-thumbnail wp-image-622\" alt=\"cassette-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7-150x150.jpg\" width=\"150\" height=\"150\" /></a>Cassettes also propped up three major musical movements – punk, college radio/alternative, and metal – that would later find massive success in the late 1980s and early 1990s. Bands could record demos or even full recordings on blank $1 cassettes then trade them or give them away to complete strangers, as Austin, Texas fast food worker, Daniel Johnston, did in the early 1990s, before becoming an underground sensation thanks to Kurt Cobain wearing his t-shirts in the 1990s. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8.jpg\"><img class=\"alignleft size-thumbnail wp-image-623\" alt=\"cassette-8\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8-150x150.jpg\" width=\"150\" height=\"150\" /></a>Cassettes were how music moved through the Iron Curtain and Communist Bloc countries where rock and roll and popular music was either banned or just unheard. I assume this is how David Hasselhoff became such a “thing” in Germany, because hey, the Hoff was there, man, when the wall came down in 1989. Compact disc was supposed to kill cassette. This is the circle of artificial life. But instead, digital made non-digital go underground. Newer technology means it’s more expensive. Indie bands, unsigned artists, and true punks have embraced the cassette. Music stores in America, Canada, Mexico, England and France have Cassette Days. Almost every indie band currently recording offers cassettes of their music on their websites or MySpace pages. It isn’t nostalgia isn’t keeping the cassette around, it’s money. Cassettes are the last bastion for have nots, and there will always be have nots. I miss my cassettes. I threw them all away or broke them from overuse. Cassette was how I loved Billy Joel, hair metal, The Smiths, R.E.M., Nirvana, and Tom Petty’s <i>Full Moon Fever</i>. I didn’t join the CD mainstream until my senior year of college, 1992. It seems apropos that most of us, including me, missed the cassette’s birthday on August 30th. I hope this column serves as enough of a belated birthday card. Post by Lance Burson First published on <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a> as <a href=\"http://raisedontheradio.com/2013/09/22/fiftieth-birthday-cassette-still-cant-get-satisfaction/\">On Its Fiftieth Birthday, the Cassette Still Can\'t Get No Satisfaction</a> <em>Lance Burson is a writer living outside Atlanta, Georgia with his wife and three daughters. He’s the published author of two books, both musically themed, The Ballad of Helene Troy and Soul To Body, found, digitally, on Amazon.com/kindle and in paperback on Lulu.com</em>.<em> He is a writer for <a href=\"http://sprocketink.com/author/lance/\">Sprocket Ink</a> and author of <a href=\"http://lancemyblogcanbeatupyourblog.wordpress.com/\">My Blog Can Beat Up Your Blog</a> Follow him on Twitter <a href=\"https://twitter.com/lanceburson\">@lanceburson</a></em>','On Its 50th Birthday, the Cassette Still Can\'t Get No Satisfaction','','inherit','open','open','','615-revision-v1','','','2013-10-11 11:54:53','2013-10-11 11:54:53','',615,'http://www.earthhertzrecords.com/2013/10/11/615-revision-v1/',0,'revision','',0),(625,2,'2013-10-11 11:50:54','2013-10-11 11:50:54','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1.jpg\"><img class=\"alignleft size-thumbnail wp-image-616\" alt=\"cassette-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1-150x150.jpg\" width=\"150\" height=\"150\" /></a>In an era of compact disc, blue ray, and iWhateveryouwant, asking people to consider how awesome the cassette is seems impossible. But that cheap plastic casing that you used a pen to rewind the tape inside when your recorder was busted, saved rock and roll.\r\n\r\nGather around the computer screen, kids, the old man with tattoos and ridiculous record collection is telling a story.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2.jpg\"><img class=\"alignleft size-thumbnail wp-image-617\" alt=\"cassette-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>On May 7, 1965, Rolling Stones guitarist, Keith Richards, wakes up in a Jacksonville, Florida hotel room to a startling musical discovery.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3.jpg\"><img class=\"alignright size-thumbnail wp-image-618\" alt=\"cassette-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3-150x150.jpg\" width=\"150\" height=\"150\" /></a>The Philips Typ EL 3302 cassette recorder his band’s manager had bought for him to write songs revealed an 8-note acoustic guitar hook and the words “I can’t get no satisfaction” then the sound of a guitar pick dropping and 40 minutes of snoring. Three days later, “I Can’t Get No Satisfaction” was recorded at Chess Studios in Chicago, Illinois, and music was never the same. Three years after that, Keef would use the same machine and same overnight accident to record “Street FightingMan.”\r\n\r\nPhilips created the portable cassette tape and recording device in 1962, but didn’t show it to the world until the Berlin Radio Show on August 30, 1963. The technology had been around since the mid 1930s but it had mostly been used by governmental offices for secretarial dictation, and the cassettes themselves were so cheap, they were never saved for posterity. But with pop music and its associated culture exploding in the late 1950s and early 1960s, many communication companies looked for the next cash cow to milk.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4.jpg\"><img class=\"alignleft size-thumbnail wp-image-619\" alt=\"cassette-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4-150x150.jpg\" width=\"150\" height=\"150\" /></a>The first musical collections released on cassette were of the Lena Horne and Johnny Mathis ilk. Most rock and pop bands used cassettes to record demos them depended on the vinyl LP to make them famous, as that’s what stores stocked. After the 8-track boom of the mid 1970s, retailers wanted something smaller, more mobile, and user friendly to sell. The cassette and the mass market became passionate lovers in the 1980s.\r\n\r\nThe rewind button revolutionized how people listened to music. Attention deficit has been around since the cavemen. The cassette recorder just fed the impatience of humans like no other device. With 8-track tapes, you had to listen to the entire recording. There was that clunky fast forward move that beat up the tape. Sure, you could stop a record player, take off the needle, and then conjure the eyesight of a falcon to find the groove to play “Go Your Own Way” by Fleetwood Mac for the 37th time in a row. But with cassette? Hit rewind, guess right 63 percent of the time and voila! “Go Your Own Way” for the 38th time, but quicker.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5.jpg\"><img class=\"alignright size-thumbnail wp-image-620\" alt=\"cassette-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5-150x150.jpg\" width=\"150\" height=\"150\" /></a>My first cassette coincided with my first concert. Billy Joel’s <i>Nylon Curtain</i> album in 1982.\r\n\r\nCassettes were great and not just for the rewind button. In the early 1980s, most cars hadn’t caught up to the technology, so to listen to them you used a stereo or a portable recorder like the one Keef had. It made music more personal.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6.jpg\"><img class=\"alignleft size-thumbnail wp-image-621\" alt=\"cassette-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6-150x150.jpg\" width=\"150\" height=\"150\" /></a>By 1987, cassingles or cassette singles were the rage. This meant people could buy “Here I Go Again” without having to suffer through the whole Whitesnake album.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7.jpg\"><img class=\"alignright size-thumbnail wp-image-622\" alt=\"cassette-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7-150x150.jpg\" width=\"150\" height=\"150\" /></a>Cassettes also propped up three major musical movements – punk, college radio/alternative, and metal – that would later find massive success in the late 1980s and early 1990s. Bands could record demos or even full recordings on blank $1 cassettes then trade them or give them away to complete strangers, as Austin, Texas fast food worker, Daniel Johnston, did in the early 1990s, before becoming an underground sensation thanks to Kurt Cobain wearing his t-shirts in the 1990s.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8.jpg\"><img class=\"alignleft size-thumbnail wp-image-623\" alt=\"cassette-8\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8-150x150.jpg\" width=\"150\" height=\"150\" /></a>Cassettes were how music moved through the Iron Curtain and Communist Bloc countries where rock and roll and popular music was either banned or just unheard. I assume this is how David Hasselhoff became such a “thing” in Germany, because hey, the Hoff was there, man, when the wall came down in 1989.\r\n\r\nCompact disc was supposed to kill cassette. This is the circle of artificial life. But instead, digital made non-digital go underground. Newer technology means it’s more expensive. Indie bands, unsigned artists, and true punks have embraced the cassette. Music stores in America, Canada, Mexico, England and France have Cassette Days. Almost every indie band currently recording offers cassettes of their music on their websites or MySpace pages. It isn’t nostalgia isn’t keeping the cassette around, it’s money. Cassettes are the last bastion for have nots, and there will always be have nots.\r\n\r\nI miss my cassettes. I threw them all away or broke them from overuse. Cassette was how I loved Billy Joel, hair metal, The Smiths, R.E.M., Nirvana, and Tom Petty’s <i>Full Moon Fever</i>. I didn’t join the CD mainstream until my senior year of college, 1992. It seems apropos that most of us, including me, missed the cassette’s birthday on August 30th. I hope this column serves as enough of a belated birthday card.\r\n\r\nPost by Lance Burson\r\n\r\nFirst published on <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a> as <a href=\"http://raisedontheradio.com/2013/09/22/fiftieth-birthday-cassette-still-cant-get-satisfaction/\">On Its Fiftieth Birthday, the Cassette Still Can\'t Get No Satisfaction</a>\r\n\r\n<em>Lance Burson is a writer living outside Atlanta, Georgia with his wife and three daughters. He’s the published author of two books, both musically themed, The Ballad of Helene Troy and Soul To Body, found, digitally, on Amazon.com/kindle and in paperback on Lulu.com</em>.<em> He is a writer for <a href=\"http://sprocketink.com/author/lance/\">Sprocket Ink</a> and author of <a href=\"http://lancemyblogcanbeatupyourblog.wordpress.com/\">My Blog Can Beat Up Your Blog</a> Follow him on Twitter <a href=\"https://twitter.com/lanceburson\">@lanceburson</a></em>','On Its 50th Birthday, the Cassette Still Can\'t Get No Satisfaction','','inherit','open','open','','615-revision-v1','','','2013-10-11 11:50:54','2013-10-11 11:50:54','',615,'http://www.earthhertzrecords.com/2013/10/11/615-revision-v1/',0,'revision','',0),(627,2,'2013-10-11 11:58:15','2013-10-11 11:58:15','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1.jpg\"><img class=\"alignleft size-thumbnail wp-image-616\" alt=\"cassette-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1-150x150.jpg\" width=\"150\" height=\"150\" /></a>In an era of compact disc, blue ray, and iWhateveryouwant, asking people to consider how awesome the cassette is seems impossible. But that cheap plastic casing that you used a pen to rewind the tape inside when your recorder was busted, saved rock and roll.\r\n\r\nGather around the computer screen, kids, the old man with tattoos and ridiculous record collection is telling a story. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2.jpg\"><img class=\"alignright size-thumbnail wp-image-617\" alt=\"cassette-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nOn May 7, 1965, Rolling Stones guitarist, Keith Richards, wakes up in a Jacksonville, Florida hotel room to a startling musical discovery. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3.jpg\"><img class=\"alignleft size-thumbnail wp-image-618\" alt=\"cassette-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nThe Philips Typ EL 3302 cassette recorder his band’s manager had bought for him to write songs revealed an 8-note acoustic guitar hook and the words “I can’t get no satisfaction” then the sound of a guitar pick dropping and 40 minutes of snoring. Three days later, “I Can’t Get No Satisfaction” was recorded at Chess Studios in Chicago, Illinois, and music was never the same. Three years after that, Keef would use the same machine and same overnight accident to record “Street FightingMan.”\r\n\r\nPhilips created the portable cassette tape and recording device in 1962, but didn’t show it to the world until the Berlin Radio Show on August 30, 1963. The technology had been around since the mid 1930s but it had mostly been used by governmental offices for secretarial dictation, and the cassettes themselves were so cheap, they were never saved for posterity. But with pop music and its associated culture exploding in the late 1950s and early 1960s, many communication companies looked for the next cash cow to milk. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4.jpg\"><img class=\"alignleft size-thumbnail wp-image-619\" alt=\"cassette-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nThe first musical collections released on cassette were of the Lena Horne and Johnny Mathis ilk. Most rock and pop bands used cassettes to record demos them depended on the vinyl LP to make them famous, as that’s what stores stocked. After the 8-track boom of the mid 1970s, retailers wanted something smaller, more mobile, and user friendly to sell. The cassette and the mass market became passionate lovers in the 1980s.\r\n\r\nThe rewind button revolutionized how people listened to music. Attention deficit has been around since the cavemen. The cassette recorder just fed the impatience of humans like no other device. With 8-track tapes, you had to listen to the entire recording. There was that clunky fast forward move that beat up the tape. Sure, you could stop a record player, take off the needle, and then conjure the eyesight of a falcon to find the groove to play “Go Your Own Way” by Fleetwood Mac for the 37th time in a row. But with cassette? Hit rewind, guess right 63 percent of the time and voila! “Go Your Own Way” for the 38th time, but quicker. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5.jpg\"><img class=\"alignright size-thumbnail wp-image-620\" alt=\"cassette-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nMy first cassette coincided with my first concert. Billy Joel’s <i>Nylon Curtain</i> album in 1982.\r\n\r\nCassettes were great and not just for the rewind button. In the early 1980s, most cars hadn’t caught up to the technology, so to listen to them you used a stereo or a portable recorder like the one Keef had. It made music more personal. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6.jpg\"><img class=\"alignleft size-thumbnail wp-image-621\" alt=\"cassette-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6-150x150.jpg\" width=\"150\" height=\"150\" /></a>By 1987, cassingles or cassette singles were the rage. This meant people could buy “Here I Go Again” without having to suffer through the whole Whitesnake album. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7.jpg\"><img class=\"alignright size-thumbnail wp-image-622\" alt=\"cassette-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nCassettes also propped up three major musical movements – punk, college radio/alternative, and metal – that would later find massive success in the late 1980s and early 1990s. Bands could record demos or even full recordings on blank $1 cassettes then trade them or give them away to complete strangers, as Austin, Texas fast food worker, Daniel Johnston, did in the early 1990s, before becoming an underground sensation thanks to Kurt Cobain wearing his t-shirts in the 1990s. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8.jpg\"><img class=\"alignleft size-thumbnail wp-image-623\" alt=\"cassette-8\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nCassettes were how music moved through the Iron Curtain and Communist Bloc countries where rock and roll and popular music was either banned or just unheard. I assume this is how David Hasselhoff became such a “thing” in Germany, because hey, the Hoff was there, man, when the wall came down in 1989.\r\n\r\nCompact disc was supposed to kill cassette. This is the circle of artificial life. But instead, digital made non-digital go underground. Newer technology means it’s more expensive. Indie bands, unsigned artists, and true punks have embraced the cassette. Music stores in America, Canada, Mexico, England and France have Cassette Days. Almost every indie band currently recording offers cassettes of their music on their websites or MySpace pages. It isn’t nostalgia isn’t keeping the cassette around, it’s money. Cassettes are the last bastion for have nots, and there will always be have nots.\r\n\r\nI miss my cassettes. I threw them all away or broke them from overuse. Cassette was how I loved Billy Joel, hair metal, The Smiths, R.E.M., Nirvana, and Tom Petty’s <i>Full Moon Fever</i>. I didn’t join the CD mainstream until my senior year of college, 1992. It seems apropos that most of us, including me, missed the cassette’s birthday on August 30th. I hope this column serves as enough of a belated birthday card.\r\n\r\nPost by Lance Burson\r\n\r\nFirst published on <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a> as <a href=\"http://raisedontheradio.com/2013/09/22/fiftieth-birthday-cassette-still-cant-get-satisfaction/\">On Its Fiftieth Birthday, the Cassette Still Can\'t Get No Satisfaction</a>\r\n\r\n<em>Lance Burson is a writer living outside Atlanta, Georgia with his wife and three daughters. He’s the published author of two books, both musically themed, The Ballad of Helene Troy and Soul To Body, found, digitally, on Amazon.com/kindle and in paperback on Lulu.com</em>.<em> He is a writer for <a href=\"http://sprocketink.com/author/lance/\">Sprocket Ink</a> and author of <a href=\"http://lancemyblogcanbeatupyourblog.wordpress.com/\">My Blog Can Beat Up Your Blog</a> Follow him on Twitter <a href=\"https://twitter.com/lanceburson\">@lanceburson</a></em>','On Its 50th Birthday, the Cassette Still Can\'t Get No Satisfaction','','inherit','open','open','','615-revision-v1','','','2013-10-11 11:58:15','2013-10-11 11:58:15','',615,'http://www.earthhertzrecords.com/2013/10/11/615-revision-v1/',0,'revision','',0),(628,2,'2013-10-11 12:06:09','2013-10-11 12:06:09','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1.jpg\"><img class=\"alignleft size-thumbnail wp-image-616\" alt=\"cassette-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1-150x150.jpg\" width=\"150\" height=\"150\" /></a>In an era of compact disc, blue ray, and iWhateveryouwant, asking people to consider how awesome the cassette is seems impossible. But that cheap plastic casing that you used a pen to rewind the tape inside when your recorder was busted, saved rock and roll.\r\n\r\nGather around the computer screen, kids, the old man with tattoos and ridiculous record collection is telling a story. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2.jpg\"><img class=\"alignright size-thumbnail wp-image-617\" alt=\"cassette-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nOn May 7, 1965, Rolling Stones guitarist, Keith Richards, wakes up in a Jacksonville, Florida hotel room to a startling musical discovery. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3.jpg\"><img class=\"alignleft size-thumbnail wp-image-618\" alt=\"cassette-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nThe Philips Typ EL 3302 cassette recorder his band’s manager had bought for him to write songs, revealed an 8-note acoustic guitar hook and the words “I can’t get no satisfaction,” then the sound of a guitar pick dropping and 40 minutes of snoring. Three days later, “I Can’t Get No Satisfaction” was recorded at Chess Studios in Chicago, Illinois, and music was never the same. Three years after that, Keef would use the same machine and same overnight accident to record “Street FightingMan.”\r\n\r\nPhilips created the portable cassette tape and recording device in 1962, but didn’t show it to the world until the Berlin Radio Show on August 30, 1963. The technology had been around since the mid 1930s but it had mostly been used by governmental offices for secretarial dictation, and the cassettes themselves were so cheap, they were never saved for posterity. But with pop music and its associated culture exploding in the late 1950s and early 1960s, many communication companies looked for the next cash cow to milk. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4.jpg\"><img class=\"alignleft size-thumbnail wp-image-619\" alt=\"cassette-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nThe first musical collections released on cassette were of the Lena Horne and Johnny Mathis ilk. Most rock and pop bands used cassettes to record demos them depended on the vinyl LP to make them famous, as that’s what stores stocked. After the 8-track boom of the mid 1970s, retailers wanted something smaller, more mobile, and user friendly to sell. The cassette and the mass market became passionate lovers in the 1980s.\r\n\r\nThe rewind button revolutionized how people listened to music. Attention deficit has been around since the cavemen. The cassette recorder just fed the impatience of humans like no other device. With 8-track tapes, you had to listen to the entire recording. There was that clunky fast forward move that beat up the tape. Sure, you could stop a record player, take off the needle, and then conjure the eyesight of a falcon to find the groove to play “Go Your Own Way” by Fleetwood Mac for the 37th time in a row. But with cassette? Hit rewind, guess right 63 percent of the time and voila! “Go Your Own Way” for the 38th time, but quicker. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5.jpg\"><img class=\"alignright size-thumbnail wp-image-620\" alt=\"cassette-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nMy first cassette coincided with my first concert. Billy Joel’s <i>Nylon Curtain</i> album in 1982.\r\n\r\nCassettes were great and not just for the rewind button. In the early 1980s, most cars hadn’t caught up to the technology, so to listen to them you used a stereo or a portable recorder like the one Keef had. It made music more personal. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6.jpg\"><img class=\"alignleft size-thumbnail wp-image-621\" alt=\"cassette-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6-150x150.jpg\" width=\"150\" height=\"150\" /></a>By 1987, cassingles or cassette singles were the rage. This meant people could buy “Here I Go Again” without having to suffer through the whole Whitesnake album. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7.jpg\"><img class=\"alignright size-thumbnail wp-image-622\" alt=\"cassette-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nCassettes also propped up three major musical movements – punk, college radio/alternative, and metal – that would later find massive success in the late 1980s and early 1990s. Bands could record demos or even full recordings on blank $1 cassettes then trade them or give them away to complete strangers, as Austin, Texas fast food worker, Daniel Johnston, did in the early 1990s, before becoming an underground sensation thanks to Kurt Cobain wearing his t-shirts in the 1990s. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8.jpg\"><img class=\"alignleft size-thumbnail wp-image-623\" alt=\"cassette-8\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nCassettes were how music moved through the Iron Curtain and Communist Bloc countries where rock and roll and popular music was either banned or just unheard. I assume this is how David Hasselhoff became such a “thing” in Germany, because hey, the Hoff was there, man, when the wall came down in 1989.\r\n\r\nCompact disc was supposed to kill cassette. This is the circle of artificial life. But instead, digital made non-digital go underground. Newer technology means it’s more expensive. Indie bands, unsigned artists, and true punks have embraced the cassette. Music stores in America, Canada, Mexico, England and France have Cassette Days. Almost every indie band currently recording offers cassettes of their music on their websites or MySpace pages. It isn’t nostalgia keeping the cassette around, it’s money. Cassettes are the last bastion for have nots, and there will always be have nots.\r\n\r\nI miss my cassettes. I threw them all away or broke them from overuse. Cassette was how I loved Billy Joel, hair metal, The Smiths, R.E.M., Nirvana, and Tom Petty’s <i>Full Moon Fever</i>. I didn’t join the CD mainstream until my senior year of college, 1992. It seems apropos that most of us, including me, missed the cassette’s birthday on August 30th. I hope this column serves as enough of a belated birthday card.\r\n\r\nPost by Lance Burson\r\n\r\nFirst published on <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a> as <a href=\"http://raisedontheradio.com/2013/09/22/fiftieth-birthday-cassette-still-cant-get-satisfaction/\">On Its Fiftieth Birthday, the Cassette Still Can\'t Get No Satisfaction</a>\r\n\r\n<em>Lance Burson is a writer living outside Atlanta, Georgia with his wife and three daughters. He’s the published author of two books, both musically themed, The Ballad of Helene Troy and Soul To Body, found, digitally, on Amazon.com/kindle and in paperback on Lulu.com</em>.<em> He is a writer for <a href=\"http://sprocketink.com/author/lance/\">Sprocket Ink</a> and author of <a href=\"http://lancemyblogcanbeatupyourblog.wordpress.com/\">My Blog Can Beat Up Your Blog</a> Follow him on Twitter <a href=\"https://twitter.com/lanceburson\">@lanceburson</a></em>','On Its 50th Birthday, the Cassette Still Can\'t Get No Satisfaction','','inherit','open','open','','615-revision-v1','','','2013-10-11 12:06:09','2013-10-11 12:06:09','',615,'http://www.earthhertzrecords.com/2013/10/11/615-revision-v1/',0,'revision','',0),(631,1,'2013-10-11 14:46:32','2013-10-11 14:46:32',' ','','','publish','open','open','','631','','','2014-03-28 10:20:25','2014-03-28 16:20:25','',0,'http://www.earthhertzrecords.com/?p=631',3,'nav_menu_item','',0),(644,1,'2013-10-11 15:15:17','2013-10-11 15:15:17','[caption id=\"attachment_491\" align=\"alignleft\" width=\"150\"]<img class=\"wp-image-491 \" title=\"Five Questions with Matt Guertin of radarTower \" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200-150x150.jpg\" width=\"150\" height=\"150\" /> Five Questions with Matt Guertin of radarTower[/caption]\r\n\r\n[caption id=\"attachment_600\" align=\"alignleft\" width=\"150\"]<img class=\"size-thumbnail wp-image-600 \" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1-150x150.jpg\" width=\"150\" height=\"150\" /> Five Questions with Hannah Mae[/caption]\r\n\r\n \r\n\r\n ','INTERVIEWS','','inherit','open','open','','26-revision-v1','','','2013-10-11 15:15:17','2013-10-11 15:15:17','',26,'http://www.earthhertzrecords.com/2013/10/11/26-revision-v1/',0,'revision','',0),(642,1,'2013-10-11 15:05:38','2013-10-11 15:05:38','[caption id=\"attachment_491\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/p3Wu0q-7Z\"><img class=\"wp-image-491 \" title=\"Five Questions with Matt Guertin of radarTower \" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200-150x150.jpg\" width=\"150\" height=\"150\" /></a> Five Questions with Matt Guertin of radarTower[/caption]\r\n\r\n[caption id=\"attachment_600\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/p3Wu0q-7Z\"><img class=\"size-thumbnail wp-image-600 \" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1-150x150.jpg\" width=\"150\" height=\"150\" /></a> Five Questions with Hannah Mae[/caption]\r\n\r\n \r\n\r\n ','INTERVIEWS','','inherit','open','open','','26-revision-v1','','','2013-10-11 15:05:38','2013-10-11 15:05:38','',26,'http://www.earthhertzrecords.com/2013/10/11/26-revision-v1/',0,'revision','',0),(635,1,'2013-10-11 14:46:33','2013-10-11 14:46:33',' ','','','publish','open','open','','635','','','2014-03-28 10:20:25','2014-03-28 16:20:25','',0,'http://www.earthhertzrecords.com/?p=635',7,'nav_menu_item','',0),(637,1,'2013-10-11 14:46:33','2013-10-11 14:46:33',' ','','','publish','open','open','','637','','','2014-03-28 10:20:25','2014-03-28 16:20:25','',0,'http://www.earthhertzrecords.com/?p=637',12,'nav_menu_item','',0),(639,1,'2013-10-11 14:46:33','2013-10-11 14:46:33',' ','','','publish','open','open','','639','','','2014-03-28 10:20:25','2014-03-28 16:20:25','',0,'http://www.earthhertzrecords.com/?p=639',13,'nav_menu_item','',0),(643,1,'2013-10-11 15:06:37','2013-10-11 15:06:37','[caption id=\"attachment_491\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/p3Wu0q-7Z\"><img class=\"wp-image-491 \" title=\"Five Questions with Matt Guertin of radarTower \" alt=\"mattguertin_200\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/mattguertin_200-150x150.jpg\" width=\"150\" height=\"150\" /></a> Five Questions with Matt Guertin of radarTower[/caption]\r\n\r\n[caption id=\"attachment_600\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/p3Wu0q-9E\"><img class=\"size-thumbnail wp-image-600 \" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-HannahMae-1-150x150.jpg\" width=\"150\" height=\"150\" /></a> Five Questions with Hannah Mae[/caption]\r\n\r\n \r\n\r\n ','INTERVIEWS','','inherit','open','open','','26-revision-v1','','','2013-10-11 15:06:37','2013-10-11 15:06:37','',26,'http://www.earthhertzrecords.com/2013/10/11/26-revision-v1/',0,'revision','',0),(645,1,'2013-10-11 16:46:00','2013-10-11 16:46:00','Music News Category','','','publish','open','open','','645','','','2014-03-28 10:20:25','2014-03-28 16:20:25','',6,'http://www.earthhertzrecords.com/?p=645',6,'nav_menu_item','',0),(650,1,'2013-10-11 17:44:09','2013-10-11 17:44:09','','Image1','','inherit','open','open','','image1-2','','','2013-10-11 17:44:09','2013-10-11 17:44:09','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Image1.png',0,'attachment','image/png',0),(663,1,'2013-10-11 19:46:36','2013-10-11 19:46:36','Show Reviews Category…. These will all need some form of description','','','publish','open','open','','663','','','2014-03-28 10:20:25','2014-03-28 16:20:25','',10,'http://www.earthhertzrecords.com/?p=663',10,'nav_menu_item','',0),(661,1,'2013-10-11 19:46:36','2013-10-11 19:46:36','Book Reviews Category','','','publish','open','open','','661','','','2014-03-28 10:20:25','2014-03-28 16:20:25','',10,'http://www.earthhertzrecords.com/?p=661',11,'nav_menu_item','',0),(662,1,'2013-10-11 19:46:36','2013-10-11 19:46:36','Music Reviews Category','','xxx','publish','open','open','','662','','','2014-03-28 10:20:25','2014-03-28 16:20:25','',10,'http://www.earthhertzrecords.com/?p=662',9,'nav_menu_item','',0),(660,1,'2013-10-11 19:46:36','2013-10-11 19:46:36','Reviews Category','REVIEWS','','publish','open','open','','660','','','2014-03-28 10:20:25','2014-03-28 16:20:25','',6,'http://www.earthhertzrecords.com/?p=660',8,'nav_menu_item','',0),(677,1,'2013-10-11 20:27:02','2013-10-11 20:27:02','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3l\"><img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers - Waste[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 20:27:02','2013-10-11 20:27:02','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(676,1,'2013-10-11 20:24:23','2013-10-11 20:24:23','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"k: http://www.earthhertzrecords.com/2013/10/11/joshua-ayers-waste/\"><img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers - Waste[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 20:24:23','2013-10-11 20:24:23','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(679,1,'2013-10-11 20:34:22','2013-10-11 20:34:22','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3l\"><img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers - Waste[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 20:34:22','2013-10-11 20:34:22','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(678,1,'2013-10-11 20:28:01','2013-10-11 20:28:01','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3l\" rel=\"http://wp.me/P3Wu0q-3l\"><img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers - Waste[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 20:28:01','2013-10-11 20:28:01','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(680,1,'2013-10-11 20:34:57','2013-10-11 20:34:57','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers - Waste[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 20:34:57','2013-10-11 20:34:57','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(683,1,'2013-10-11 20:45:37','2013-10-11 20:45:37','<iframe src=\"http://www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n ','radarTower','','publish','open','open','','radartower','','','2013-10-11 20:55:14','2013-10-11 20:55:14','',35,'http://www.earthhertzrecords.com/?page_id=683',0,'page','',0),(684,1,'2013-10-11 20:45:37','2013-10-11 20:45:37','<iframe src=\"//youtu.be/B2tIpnigjp8\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n \r\n\r\n \r\n','radarTower - Need Someone','','inherit','open','open','','683-revision-v1','','','2013-10-11 20:45:37','2013-10-11 20:45:37','',683,'http://www.earthhertzrecords.com/2013/10/11/683-revision-v1/',0,'revision','',0),(685,1,'2013-10-11 20:47:43','2013-10-11 20:47:43','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-b1\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers - Waste[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 20:47:43','2013-10-11 20:47:43','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(687,1,'2013-10-11 20:50:33','2013-10-11 20:50:33','<iframe src=\"////www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n ','radarTower','','inherit','open','open','','683-revision-v1','','','2013-10-11 20:50:33','2013-10-11 20:50:33','',683,'http://www.earthhertzrecords.com/2013/10/11/683-revision-v1/',0,'revision','',0),(686,1,'2013-10-11 20:48:59','2013-10-11 20:48:59','<iframe src=\"////www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n ','radarTower - Need Someone','','inherit','open','open','','683-revision-v1','','','2013-10-11 20:48:59','2013-10-11 20:48:59','',683,'http://www.earthhertzrecords.com/2013/10/11/683-revision-v1/',0,'revision','',0),(688,1,'2013-10-11 20:54:22','2013-10-11 20:54:22','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers - Waste[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 20:54:22','2013-10-11 20:54:22','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(689,1,'2013-10-11 20:55:14','2013-10-11 20:55:14','<iframe src=\"http://www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n ','radarTower','','inherit','open','open','','683-revision-v1','','','2013-10-11 20:55:14','2013-10-11 20:55:14','',683,'http://www.earthhertzrecords.com/2013/10/11/683-revision-v1/',0,'revision','',0),(690,1,'2013-10-11 21:15:19','2013-10-11 21:15:19','','Hannah Mae','Hannah Mae','inherit','open','open','','hannahmae_guns_001-2','','','2013-10-11 21:15:19','2013-10-11 21:15:19','',35,'http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg',0,'attachment','image/jpeg',0),(691,1,'2013-10-11 21:16:03','2013-10-11 21:16:03','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers - Waste[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\" wp-image-690 \" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 21:16:03','2013-10-11 21:16:03','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(692,1,'2013-10-11 21:16:24','2013-10-11 21:16:24','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers - Waste[/caption]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\" wp-image-690 \" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 21:16:24','2013-10-11 21:16:24','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(693,1,'2013-10-11 21:22:38','2013-10-11 21:22:38','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower Need Someone[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers - Waste[/caption]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\" wp-image-690 \" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 21:22:38','2013-10-11 21:22:38','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(694,1,'2013-10-11 21:24:37','2013-10-11 21:24:37','','Glen Spreen','','inherit','open','open','','glenspreen_red_001-2','','','2013-10-11 21:24:37','2013-10-11 21:24:37','',35,'http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg',0,'attachment','image/jpeg',0),(697,1,'2013-10-11 21:30:39','2013-10-11 21:30:39','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers[/caption]\r\n\r\n\r\n[caption id=\"attachment_690\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\" wp-image-690 \" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignleft\" width=\"240\"]<img class=\" wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"240\" height=\"140\" /> Glen Spreen[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 21:30:39','2013-10-11 21:30:39','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(695,1,'2013-10-11 21:26:30','2013-10-11 21:26:30','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers[/caption]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\" wp-image-690 \" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignleft\" width=\"240\"]<img class=\" wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"240\" height=\"140\" /> Glen Spreen[/caption]\r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 21:26:30','2013-10-11 21:26:30','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(696,1,'2013-10-11 21:27:39','2013-10-11 21:27:39','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" alt=\"\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671 \" title=\"Waste by Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers[/caption]\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[caption id=\"attachment_690\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\" wp-image-690 \" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignleft\" width=\"240\"]<img class=\" wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"240\" height=\"140\" /> Glen Spreen[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 21:27:39','2013-10-11 21:27:39','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(698,1,'2013-10-11 21:32:12','2013-10-11 21:32:12','[caption id=\"attachment_264\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignleft\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\" wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignleft\" width=\"240\"]<img class=\" wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"240\" height=\"140\" /> Glen Spreen[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 21:32:12','2013-10-11 21:32:12','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(699,1,'2013-10-11 21:36:35','2013-10-11 21:36:35','[caption id=\"attachment_264\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"240\"]<img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"240\" height=\"140\" /> Glen Spreen[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 21:36:35','2013-10-11 21:36:35','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(702,1,'2013-10-11 21:54:07','2013-10-11 21:54:07','[caption id=\"attachment_264\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" title=\"radarTower\" alt=\"radarTower\" width=\"240\" height=\"140\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671\" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" width=\"240\" height=\"140\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\"/></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690\" title=\"Hannah Mae\" alt=\"Hannah Mae\" width=\"240\" height=\"140\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\"/></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"240\"]<img class=\"wp-image-694\" title=\"Glen Spreen\" alt=\"Glen Spreen\" width=\"240\" height=\"140\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\"/> Glen Spreen[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 21:54:07','2013-10-11 21:54:07','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(700,1,'2013-10-11 21:51:01','2013-10-11 21:51:01','[caption id=\"attachment_264\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"160\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"240\"]<img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"240\" height=\"140\" /> Glen Spreen[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 21:51:01','2013-10-11 21:51:01','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(701,1,'2013-10-11 21:51:44','2013-10-11 21:51:44','[caption id=\"attachment_264\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"240\"]<img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"240\" height=\"140\" /> Glen Spreen[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 21:51:44','2013-10-11 21:51:44','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(703,1,'2013-10-11 21:57:43','2013-10-11 21:57:43','<iframe src=\"//www.youtube.com/embed/6OybAAXA0W0\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Glen Spreen','','publish','open','open','','glen-spreen','','','2013-10-11 21:59:44','2013-10-11 21:59:44','',35,'http://www.earthhertzrecords.com/?page_id=703',0,'page','',0),(704,1,'2013-10-11 21:57:43','2013-10-11 21:57:43','<iframe width=\"420\" height=\"315\" src=\"//www.youtube.com/embed/6OybAAXA0W0\" frameborder=\"0\" allowfullscreen></iframe>','Glen Spreen','','inherit','open','open','','703-revision-v1','','','2013-10-11 21:57:43','2013-10-11 21:57:43','',703,'http://www.earthhertzrecords.com/2013/10/11/703-revision-v1/',0,'revision','',0),(707,1,'2013-10-11 22:01:56','2013-10-11 22:01:56','[caption id=\"attachment_264\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-b1\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-3l\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-4n\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-bl\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"240\" height=\"140\" /></a> Glen Spreen[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 22:01:56','2013-10-11 22:01:56','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(705,1,'2013-10-11 21:58:29','2013-10-11 21:58:29','[caption id=\"attachment_264\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264\" title=\"radarTower\" alt=\"radarTower\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/207-2/\"><img class=\"wp-image-671\" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690\" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-bl\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"240\" height=\"140\" /></a> Glen Spreen[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 21:58:29','2013-10-11 21:58:29','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(706,1,'2013-10-11 21:59:44','2013-10-11 21:59:44','<iframe src=\"//www.youtube.com/embed/6OybAAXA0W0\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Glen Spreen','','inherit','open','open','','703-revision-v1','','','2013-10-11 21:59:44','2013-10-11 21:59:44','',703,'http://www.earthhertzrecords.com/2013/10/11/703-revision-v1/',0,'revision','',0),(708,1,'2013-10-11 22:04:43','2013-10-11 22:04:43','<iframe src=\"//www.youtube.com/embed/vnbBRpguG6g\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n1. Waste Acoustic Version\r\n<iframe src=\"//www.youtube.com/embed/jD8UD9dLGaU\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n2. Waste','Joshua Ayers','','publish','open','open','','joshua-ayers','','','2013-10-23 13:39:26','2013-10-23 13:39:26','',35,'http://www.earthhertzrecords.com/?page_id=708',0,'page','',0),(709,1,'2013-10-11 22:04:43','2013-10-11 22:04:43','<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/jD8UD9dLGaU\" frameborder=\"0\" allowfullscreen></iframe>','Joshua Ayers','','inherit','open','open','','708-revision-v1','','','2013-10-11 22:04:43','2013-10-11 22:04:43','',708,'http://www.earthhertzrecords.com/2013/10/11/708-revision-v1/',0,'revision','',0),(710,1,'2013-10-11 22:05:21','2013-10-11 22:05:21','[caption id=\"attachment_264\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-b1\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-bq\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-4n\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-bl\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"240\" height=\"140\" /></a> Glen Spreen[/caption]','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 22:05:21','2013-10-11 22:05:21','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(711,1,'2013-10-11 22:06:11','2013-10-11 22:06:11','','Billy David','','inherit','open','open','','billydavid_magic_001-2','','','2013-10-11 22:06:11','2013-10-11 22:06:11','',35,'http://www.earthhertzrecords.com/wp-content/uploads/2013/09/BillyDavid_Magic_0011.jpg',0,'attachment','image/jpeg',0),(712,1,'2013-10-11 22:07:22','2013-10-11 22:07:22','[caption id=\"attachment_264\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-b1\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-bq\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-4n\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-bl\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"240\" height=\"140\" /></a> Glen Spreen[/caption]\r\n\r\n[caption id=\"attachment_711\" align=\"alignnone\" width=\"240\"]<img class=\" wp-image-711 \" title=\"Billy David\" alt=\"Billy David\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/BillyDavid_Magic_0011.jpg\" width=\"240\" height=\"140\" /> Billy David[/caption]\r\n\r\n \r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 22:07:22','2013-10-11 22:07:22','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(716,1,'2013-10-11 22:13:40','2013-10-11 22:13:40','[caption id=\"attachment_264\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-b1\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-bq\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-4n\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-bl\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"240\" height=\"140\" /></a> Glen Spreen[/caption]\r\n\r\n[caption id=\"attachment_711\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-bw\"><img class=\" wp-image-711 \" title=\"Billy David\" alt=\"Billy David\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/BillyDavid_Magic_0011.jpg\" width=\"240\" height=\"140\" /></a> Billy David[/caption]\r\n\r\n \r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 22:13:40','2013-10-11 22:13:40','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(713,1,'2013-10-11 22:07:58','2013-10-11 22:07:58','[caption id=\"attachment_264\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-b1\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"240\" height=\"140\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-bq\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"240\" height=\"140\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-4n\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"240\" height=\"140\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"240\"]<a href=\"http://wp.me/P3Wu0q-bl\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"240\" height=\"140\" /></a> Glen Spreen[/caption]\r\n\r\n[caption id=\"attachment_711\" align=\"alignnone\" width=\"240\"]<a href=\"http://www.earthhertzrecords.com/wp-admin/<iframe width="560" height="315" src="/www.youtube.com/embed/YPfwQveHFNk" frameborder="0" allowfullscreen></iframe>\"><img class=\" wp-image-711 \" title=\"Billy David\" alt=\"Billy David\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/BillyDavid_Magic_0011.jpg\" width=\"240\" height=\"140\" /></a> Billy David[/caption]\r\n\r\n \r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-11 22:07:58','2013-10-11 22:07:58','',35,'http://www.earthhertzrecords.com/2013/10/11/35-revision-v1/',0,'revision','',0),(714,1,'2013-10-11 22:11:14','2013-10-11 22:11:14','<iframe src=\"//www.youtube.com/embed/YPfwQveHFNk\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','The Billy David Band','','private','open','open','','the-billy-david-band','','','2014-04-13 22:25:09','2014-04-14 04:25:09','',35,'http://www.earthhertzrecords.com/?page_id=714',0,'page','',0),(715,1,'2013-10-11 22:11:14','2013-10-11 22:11:14','<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/YPfwQveHFNk\" frameborder=\"0\" allowfullscreen></iframe>','The Billy David Band','','inherit','open','open','','714-revision-v1','','','2013-10-11 22:11:14','2013-10-11 22:11:14','',714,'http://www.earthhertzrecords.com/2013/10/11/714-revision-v1/',0,'revision','',0),(717,1,'2013-10-11 22:14:22','2013-10-11 22:14:22','<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/YPfwQveHFNk\" frameborder=\"0\" allowfullscreen></iframe>','The Billy David Band','','inherit','open','open','','714-revision-v1','','','2013-10-11 22:14:22','2013-10-11 22:14:22','',714,'http://www.earthhertzrecords.com/2013/10/11/714-revision-v1/',0,'revision','',0),(723,1,'2013-10-12 03:02:22','2013-10-12 03:02:22','','Applegate Nance','','inherit','open','open','','722-revision-v1','','','2013-10-12 03:02:22','2013-10-12 03:02:22','',722,'http://www.earthhertzrecords.com/2013/10/12/722-revision-v1/',0,'revision','',0),(724,1,'2013-10-12 03:03:53','2013-10-12 03:03:53','https://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3','Applegate Nance','','inherit','open','open','','722-revision-v1','','','2013-10-12 03:03:53','2013-10-12 03:03:53','',722,'http://www.earthhertzrecords.com/2013/10/12/722-revision-v1/',0,'revision','',0),(725,1,'2013-10-12 03:11:17','2013-10-12 03:11:17','MP3\nHey California\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\nHere I Go Again\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\nWasting My Time\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\n\nWAV\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia441-16.wav\n','Applegate Nance','','inherit','open','open','','722-autosave-v1','','','2013-10-12 03:11:17','2013-10-12 03:11:17','',722,'http://www.earthhertzrecords.com/2013/10/12/722-autosave-v1/',0,'revision','',0),(726,1,'2013-10-12 03:05:14','2013-10-12 03:05:14','https://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3','Applegate Nance','','inherit','open','open','','722-revision-v1','','','2013-10-12 03:05:14','2013-10-12 03:05:14','',722,'http://www.earthhertzrecords.com/2013/10/12/722-revision-v1/',0,'revision','',0),(729,1,'2013-10-12 03:11:42','2013-10-12 03:11:42','MP3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nGirl Talk\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n\r\n','Applegate Nance','','inherit','open','open','','722-revision-v1','','','2013-10-12 03:11:42','2013-10-12 03:11:42','',722,'http://www.earthhertzrecords.com/2013/10/12/722-revision-v1/',0,'revision','',0),(728,1,'2013-10-12 03:10:11','2013-10-12 03:10:11','MP3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n\r\nWAV\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia441-16.wav\r\n','Applegate Nance','','inherit','open','open','','722-revision-v1','','','2013-10-12 03:10:11','2013-10-12 03:10:11','',722,'http://www.earthhertzrecords.com/2013/10/12/722-revision-v1/',0,'revision','',0),(727,1,'2013-10-12 03:09:07','2013-10-12 03:09:07','MP3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n\r\nWAV\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia441-16.wav\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain441-16.wav\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime441-16.wav\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime441-16.wav\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes441-16.wav\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk441-16.wav','Applegate Nance','','inherit','open','open','','722-revision-v1','','','2013-10-12 03:09:07','2013-10-12 03:09:07','',722,'http://www.earthhertzrecords.com/2013/10/12/722-revision-v1/',0,'revision','',0),(730,1,'2013-10-12 03:12:19','2013-10-12 03:12:19','MP3\r\nHey California https://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHere I Go Again https://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nWasting My Time https://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nMelting In The Summertime https://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nPrivate Eyes https://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nGirl Talk https://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n\r\n','Applegate Nance','','inherit','open','open','','722-revision-v1','','','2013-10-12 03:12:19','2013-10-12 03:12:19','',722,'http://www.earthhertzrecords.com/2013/10/12/722-revision-v1/',0,'revision','',0),(731,1,'2013-10-12 03:13:14','2013-10-12 03:13:14','<strong>MP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','722-revision-v1','','','2013-10-12 03:13:14','2013-10-12 03:13:14','',722,'http://www.earthhertzrecords.com/2013/10/12/722-revision-v1/',0,'revision','',0),(734,1,'2013-10-12 03:18:09','2013-10-12 03:18:09','<a href=\"https://itunes.apple.com/us/album/waste/id705233256?i=705233300&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste.mp3\r\nWaste','Joshua Ayers','','publish','open','open','','joshua-ayers','','','2013-10-13 19:29:38','2013-10-13 19:29:38','',0,'http://www.earthhertzrecords.com/?p=734',0,'post','',0),(735,1,'2013-10-12 03:18:09','2013-10-12 03:18:09','https://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste.mp3\r\nWaste','Joshua Ayers','','inherit','open','open','','734-revision-v1','','','2013-10-12 03:18:09','2013-10-12 03:18:09','',734,'http://www.earthhertzrecords.com/2013/10/12/734-revision-v1/',0,'revision','',0),(736,1,'2013-10-12 03:19:31','2013-10-12 03:19:31','<a href=\"https://itunes.apple.com/us/album/guns-run-single/id705232705?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499300-QMU991100113.mp3\r\nGuns and Run','Hannah Mae','','publish','open','open','','hannah-mae','','','2013-10-14 21:10:07','2013-10-14 21:10:07','',0,'http://www.earthhertzrecords.com/?p=736',0,'post','',0),(737,1,'2013-10-12 03:19:31','2013-10-12 03:19:31','https://s3.amazonaws.com/ehLaunchMP3/723175499300-QMU991100113.mp3','Hannah Mae','','inherit','open','open','','736-revision-v1','','','2013-10-12 03:19:31','2013-10-12 03:19:31','',736,'http://www.earthhertzrecords.com/2013/10/12/736-revision-v1/',0,'revision','',0),(739,1,'2013-10-12 15:17:16','2013-10-12 15:17:16','<p style=\"text-align: center;\"><strong><em><img class=\"alignnone size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" />\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</em> </strong></p>\r\n\r\nThose words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<img class=\"alignnone size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /><strong>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<img class=\"alignnone size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" />Lyrically, the songs of Applegate Nance feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-12 15:17:16','2013-10-12 15:17:16','',738,'http://www.earthhertzrecords.com/2013/10/12/738-revision-v1/',0,'revision','',0),(740,1,'2013-10-12 15:19:06','2013-10-12 15:19:06','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-bU\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3W\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-48\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-44\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-12 15:19:06','2013-10-12 15:19:06','',19,'http://www.earthhertzrecords.com/2013/10/12/19-revision-v1/',0,'revision','',0),(741,1,'2014-04-27 18:19:57','2014-04-28 00:19:57','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\n\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\n\nApplegate Nance.\n\n<strong>The Good, Bad, and The Sunny\n</strong>\n\nMP3\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\n1. Hey California\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\n2. Here I Go Again\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\n3. Wasting My Time\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\n4. Melting In The Summertime\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\n5. Private Eyes\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\n6. Girl Talk\n<strong></strong>\n\nVideo\n\n\"Hey california\"\n<iframe src=\"//www.youtube.com/embed/Ql8vvDGth7w\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Applegate Nance','','inherit','open','open','','738-autosave-v1','','','2014-04-27 18:19:57','2014-04-28 00:19:57','',738,'http://www.earthhertzrecords.com/2013/10/12/738-autosave-v1/',0,'revision','',0),(742,1,'2013-10-12 15:20:48','2013-10-12 15:20:48','<p style=\"text-align: center;\"><strong><em>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</em> </strong></p><img class=\"alignnone size-full wp-image-394\" style=\"line-height: 24px;\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" />\r\n\r\nThose words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<img class=\"alignnone size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /><strong>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<img class=\"alignnone size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" />Lyrically, the songs of Applegate Nance feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-12 15:20:48','2013-10-12 15:20:48','',738,'http://www.earthhertzrecords.com/2013/10/12/738-revision-v1/',0,'revision','',0),(1256,2,'2013-11-12 03:43:07','2013-11-12 03:43:07','On this Veteran’s Day when thoughts of freedom bounce into our brains a little more frequently than usual, a tragedy unfolded in Brooklyn NY; a tragedy which began with a quest for freedom.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/a1544922683_2.jpg\"><img class=\"alignleft size-medium wp-image-1254\" alt=\"a1544922683_2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/a1544922683_2-300x300.jpg\" width=\"300\" height=\"300\" /></a>A local musician killed three members of a band, and wounded another man before turning the gun on himself. The Yellow Dogs, a band made up of Iranian immigrants, came to the United States to play rock music. Playing rock music was something they could not legally do in their homeland.\r\n\r\nThough not a fairy tale success story, the band did have a few moments. While still in Iran, they were featured in an award winning documentary, after which they thought it would be best if they left their home country. In the US where they were given asylum, they had the chance to play at SXSW down in Austin TX.\r\n\r\nA few video clips which featured members of Yellow Dogs showed the band to be happy to be living in New York City, playing their music freely out in the open.\r\n\r\nAs we all know, freedom isn\'t free. On the day when we celebrate the men and women of the armed services who fight to maintain our freedom, three men who sought it were murdered. Not quite the happy ending to the American Dream.\r\n\r\nAnd while it’s doubtful the musicians thought their quest for life, liberty and the pursuit of happiness would result in their deaths here in America, it would not have been out of the realm of possibility in their homeland.\r\n\r\nPut the blame on a simple twist of fate.','The Yellow Dogs: Search for Freedom and Find Death','','inherit','open','open','','1253-revision-v1','','','2013-11-12 03:43:07','2013-11-12 03:43:07','',1253,'http://www.earthhertzrecords.com/2013/11/1253-revision-v1/',0,'revision','',0),(745,1,'2013-10-12 15:23:09','2013-10-12 15:23:09','<strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong><img class=\"size-full wp-image-394 alignright\" style=\"line-height: 24px;\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" />\r\n\r\nThose words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<img class=\"alignnone size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" />\r\n\r\n<strong>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<img class=\"alignnone size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /> Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-12 15:23:09','2013-10-12 15:23:09','',738,'http://www.earthhertzrecords.com/2013/10/12/738-revision-v1/',0,'revision','',0); INSERT INTO `wp_posts` VALUES (744,1,'2013-10-12 15:22:55','2013-10-12 15:22:55','<strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong><img class=\"size-full wp-image-394 alignright\" style=\"line-height: 24px;\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" />\r\n\r\nThose words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<img class=\"alignnone size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" />\r\n\r\n<strong>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<img class=\"alignnone size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /> Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>MP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-12 15:22:55','2013-10-12 15:22:55','',738,'http://www.earthhertzrecords.com/2013/10/12/738-revision-v1/',0,'revision','',0),(746,1,'2013-10-12 15:23:28','2013-10-12 15:23:28','<strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong><img class=\"size-full wp-image-394 alignright\" style=\"line-height: 24px;\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" />\r\n\r\nThose words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<img class=\"alignnone size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" />\r\n\r\n<strong>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<img class=\"alignnone size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /> Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n\r\n<strong>MP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-12 15:23:28','2013-10-12 15:23:28','',738,'http://www.earthhertzrecords.com/2013/10/12/738-revision-v1/',0,'revision','',0),(794,1,'2013-10-12 19:18:22','2013-10-12 19:18:22','https://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','722-revision-v1','','','2013-10-12 19:18:22','2013-10-12 19:18:22','',722,'http://www.earthhertzrecords.com/2013/10/12/722-revision-v1/',0,'revision','',0),(747,1,'2013-10-12 16:45:19','2013-10-12 16:45:19','[caption id=\"attachment_135\" align=\"alignnone\" width=\"960\"]<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\"><img class=\" wp-image-135\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/slide_002_en.png\" width=\"960\" height=\"210\" /></a> Glen Spreen has been enriching our lives thru music for 50 years![/caption]\r\n\r\n\r\n[caption id=\"attachment_579\" align=\"alignright\" width=\"224\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me.jpg\"><img class=\"size-medium wp-image-579\" alt=\"Glen with Wayne Jackson(r) of the Memphis Horns\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me-224x300.jpg\" width=\"224\" height=\"300\" /></a> Glen with Wayne Jackson(r) of the Memphis Horns[/caption]\r\n\r\nMusic has always been a major force in the life of <strong>Glen Spreen</strong>. Music was the reason he left his hometown of Houston, Texas, and it was also the reason he moved to Memphis, Nashville, Atlanta, Europe and California. Even after he retired from a successful career in the music business, he built a recording studio in his home to create the music that played inside his heart.\r\n\r\n[caption id=\"attachment_580\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg\"><img class=\"size-thumbnail wp-image-580\" alt=\"With B.J. Thomas\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011-150x150.jpg\" width=\"150\" height=\"150\" /></a> With B.J. Thomas[/caption]\r\n\r\nThroughout his career in the music business, Glen’s arrangements were known for creating a mood within a song. Working alongside such music legends as Joan Baez, Dave Loggins, Dan Fogelberg, B.J. Thomas and Elvis Presley, Spreen not only arranged, but also wrote, produced and played on a vast music catalog, crossing over many music genres.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg\"><img class=\"alignright size-thumbnail wp-image-581\" alt=\"Glen Spreen-Dreams\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams-150x150.jpg\" width=\"150\" height=\"150\" /></a>In his first release for Earth Hertz Records, Glen Spreen has written, played all instrumentation, and produced an album where the moods are many, and the music is dynamic. <em>Dreams</em> is a instrumental journey through all the emotions your mind and heart can produce. From tension to elation, or serenity to adversity, <em>Dreams</em> uses tempo and melody as a way of passage from one emotion to the next.\r\n\r\n<strong>Dreams\r\n<a href=\"https://itunes.apple.com/us/album/dreams/id694336061?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\n1. Dreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\n2. Whispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\n3. Clouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\n4. Game Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\n5. Horizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\n6. Spirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\n7. Willow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\n8. Pensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\n9. Dim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\n10. Love\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\n11. Naivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\n12. Storms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\n13. Dim Light Reprise\r\n\r\n<strong>Videos</strong>\r\n<iframe src=\"//www.youtube.com/embed/6OybAAXA0W0\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nDreams','Glen Spreen','','publish','open','open','','glen-spreen-2','','','2014-03-28 11:47:21','2014-03-28 17:47:21','',19,'http://www.earthhertzrecords.com/?page_id=747',2,'page','',0),(748,1,'2013-10-12 16:45:19','2013-10-12 16:45:19','<img class=\"alignnone wp-image-579\" alt=\"Wayne Jackson, Elvis Session, 1969\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me.jpg\" width=\"150\" height=\"200\" /> Glen with Wayne Jackson(r) of the Memphis Horns[/caption]\r\n\r\nMusic has always been a major force in the life of <b>Glen Spreen.</b> Music was the reason he left his hometown of Houston, Texas, and it was also the reason he moved to Memphis, Nashville, Atlanta, Europe and California. Even after he retired from a successful career in the music business, he built a recording studio in his home to create the music that played inside his heart.\r\n\r\n<img class=\"alignnone wp-image-580\" alt=\"Austin show backstage 2011\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg\" width=\"200\" height=\"150\" />\r\n\r\nThroughout his career in the music business, Glen’s arrangements were known for creating a mood within a song. Working alongside such music legends as Joan Baez, Dave Loggins, Dan Fogelberg, B.J. Thomas and Elvis Presley, Spreen not only arranged, but also wrote, produced and played on a vast music catalog, crossing over many music genres.\r\n\r\n<img class=\"alignnone wp-image-581\" alt=\"Glen Spreen-Dreams\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg\" width=\"175\" height=\"160\" />In his first release for Earth Hertz Records, Glen Spreen has written, played all instrumentation, and produced an album where the moods are many, and the music is dynamic. <i>Dreams</i> is a instrumental journey through all the emotions your mind and heart can produce. From tension to elation, or serenity to adversity, <i>Dreams</i> uses tempo and melody as a way of passage from one emotion to the next.','Glen Spreen','','inherit','open','open','','747-revision-v1','','','2013-10-12 16:45:19','2013-10-12 16:45:19','',747,'http://www.earthhertzrecords.com/2013/10/12/747-revision-v1/',0,'revision','',0),(749,1,'2013-10-12 16:45:49','2013-10-12 16:45:49','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-bU\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-c3\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-42\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-48\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-44\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-12 16:45:49','2013-10-12 16:45:49','',19,'http://www.earthhertzrecords.com/2013/10/12/19-revision-v1/',0,'revision','',0),(751,1,'2013-10-12 16:52:19','2013-10-12 16:52:19','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah.jpg\"><img class=\"alignleft size-medium wp-image-482\" alt=\"hannah\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah-300x200.jpg\" width=\"300\" height=\"200\" /></a>When performing, most artists strive to do their best. For most, it’s a matter of pride and self-worth. But somewhere back in the subconscious, a little voices pushes them to give it their all because you never know when your music will connect with some random stranger in the crowd.\r\n\r\nOne night <strong>Hannah Mae</strong> was onstage giving it her all, and one member of the crowd was moved enough by her performance to tell another person about her. In this case, that person was record producer Josh Ayers, and upon hearing her, he too was impressed with her talent. So much so, that he recorded Hannah, and brought her to Earth Hertz.\r\n\r\n<img class=\" wp-image-483 alignright\" alt=\"Picture 033\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Picture-033.jpg\" width=\"300\" height=\"225\" />Growing up in Kentucky with musically inclined parents, Hannah was surrounded by all genres of music. Piano lessons led the way for the beginning of her songwriting career. Choir was where her vocal skills were sharpened. Learning to play guitar was a natural progression for a busy songwriter; carrying a guitar and working on a melody is a lot more convenient than going home to the piano.\r\n\r\nHannah’s many musical influences are evident in her work. She comfortably slides through country, folk, blues, pop, and all their combinations. She writes of things in the present, and creates stories from long ago. Her first release from Earth Hertz “Guns And Run,” recalls life on the prairie in vivid and haunting imagery.\r\n\r\nIn addition to her musical talents, Hannah is also an artist. Instead of using notes and lyrics, she portrays her tales in paint.\r\n\r\nHannah is currently working on her first album release for Earth Hertz Records.\r\n\r\nConnect with Hannah Mae on Facebook: <a href=\"https://www.facebook.com/hannah.m.rector.9?fref=ts\">Hannah Mae Rector</a>\r\n\r\n<strong>Guns and Run\r\n\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499300-QMU991100113.mp3\r\n1. Guns and Run\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/yCuoOUG3iOc\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n1. Guns and Run','Hannah Mae','','publish','open','open','','hannah-mae-2','','','2014-02-05 11:25:40','2014-02-05 17:25:40','',19,'http://www.earthhertzrecords.com/?page_id=751',3,'page','',0),(752,1,'2013-10-12 16:52:19','2013-10-12 16:52:19','<img class=\"alignnone wp-image-482\" alt=\"hannah\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah.jpg\" width=\"300\" height=\"200\" />When performing, most artists strive to do their best. For most, it’s a matter of pride and self-worth. But somewhere back in the subconscious, a little voices pushes them to give it their all because you never know when your music will connect with some random stranger in the crowd.\r\n\r\nOne night <strong>Hannah Mae</strong> was onstage giving it her all, and one member of the crowd was moved enough by her performance to tell another person about her. In this case, that person was record producer Josh Ayers, and upon hearing her, he too was impressed with her talent. So much so, that he recorded Hannah, and brought her to Earth Hertz.\r\n\r\n<img class=\" wp-image-483 alignright\" alt=\"Picture 033\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Picture-033.jpg\" width=\"300\" height=\"225\" />Growing up in Kentucky with musically inclined parents, Hannah was surrounded by all genres of music. Piano lessons led the way for the beginning of her songwriting career. Choir was where her vocal skills were sharpened. Learning to play guitar was a natural progression for a busy songwriter; carrying a guitar and working on a melody is a lot more convenient than going home to the piano.\r\n\r\nHannah’s many musical influences are evident in her work. She comfortably slides through country, folk, blues, pop, and all their combinations. She writes of things in the present, and creates stories from long ago. Her first release from Earth Hertz “Guns And Run,” recalls life on the prairie in vivid and haunting imagery.\r\n\r\nIn addition to her musical talents, Hannah is also an artist. Instead of using notes and lyrics, she portrays her tales in paint.\r\n\r\nHannah is currently working on her first album release for Earth Records.','Hannah Mae','','inherit','open','open','','751-revision-v1','','','2013-10-12 16:52:19','2013-10-12 16:52:19','',751,'http://www.earthhertzrecords.com/2013/10/12/751-revision-v1/',0,'revision','',0),(753,1,'2013-10-12 16:53:32','2013-10-12 16:53:32','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-46\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-48\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-44\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-12 16:53:32','2013-10-12 16:53:32','',19,'http://www.earthhertzrecords.com/2013/10/12/19-revision-v1/',0,'revision','',0),(754,1,'2013-10-12 16:54:15','2013-10-12 16:54:15','<img class=\"alignnone wp-image-482\" alt=\"hannah\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah.jpg\" width=\"300\" height=\"200\" />When performing, most artists strive to do their best. For most, it’s a matter of pride and self-worth. But somewhere back in the subconscious, a little voices pushes them to give it their all because you never know when your music will connect with some random stranger in the crowd.\r\n\r\nOne night <strong>Hannah Mae</strong> was onstage giving it her all, and one member of the crowd was moved enough by her performance to tell another person about her. In this case, that person was record producer Josh Ayers, and upon hearing her, he too was impressed with her talent. So much so, that he recorded Hannah, and brought her to Earth Hertz.\r\n\r\n<img class=\" wp-image-483 alignright\" alt=\"Picture 033\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Picture-033.jpg\" width=\"300\" height=\"225\" />Growing up in Kentucky with musically inclined parents, Hannah was surrounded by all genres of music. Piano lessons led the way for the beginning of her songwriting career. Choir was where her vocal skills were sharpened. Learning to play guitar was a natural progression for a busy songwriter; carrying a guitar and working on a melody is a lot more convenient than going home to the piano.\r\n\r\nHannah’s many musical influences are evident in her work. She comfortably slides through country, folk, blues, pop, and all their combinations. She writes of things in the present, and creates stories from long ago. Her first release from Earth Hertz “Guns And Run,” recalls life on the prairie in vivid and haunting imagery.\r\n\r\nIn addition to her musical talents, Hannah is also an artist. Instead of using notes and lyrics, she portrays her tales in paint.\r\n\r\nHannah is currently working on her first album release for Earth Hertz Records.','Hannah Mae','','inherit','open','open','','751-revision-v1','','','2013-10-12 16:54:15','2013-10-12 16:54:15','',751,'http://www.earthhertzrecords.com/2013/10/12/751-revision-v1/',0,'revision','',0),(755,1,'2013-10-12 16:57:14','2013-10-12 16:57:14','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\"><img class=\"alignright size-full wp-image-815\" alt=\"JoshAyers-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\" width=\"178\" height=\"178\" /></a>Having an artist who fully understands the scope of the recording business is a great asset to a record company. <b>Joshua Ayers</b> not only is a talented multi-instrumentalist singer-songwriter, he is also a recording engineer with a keen ear for putting together the right sound.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200.jpg\"><img class=\"alignleft size-thumbnail wp-image-488\" alt=\"joshayers_200\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200-150x150.jpg\" width=\"150\" height=\"150\" /></a>Originally from South Carolina, Josh is now settled in the KnoxvilleTennessee area, after spending some time learning the music business in Nashville. His musical influences range from Tom Waits and Neil Young to Tori Amos. Along with the guitar, Josh plays piano, bass, drums, and is interested in leaning the violin.\r\n\r\nJosh’s first single released through Earth Hertz, is a fine example of both his writing and production techniques. “Waste” was originally written as a song challenge between friends, and is a dark, foreboding look at living a life filled with regret.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n.jpg\"><img class=\"alignright size-thumbnail wp-image-139\" alt=\"577670_595448180581_784630386_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n-150x150.jpg\" width=\"150\" height=\"150\" /></a>Along with his musical career, Josh is also involved in the media business. He can be heard as the host of his own weekly radio program on WHAY 98.3, where he showcases new and independent artists.\r\n\r\nJosh Ayers is currently working on his first album release for Earth Hertz Records.\r\n\r\n<strong>Waste\r\n<a href=\"https://itunes.apple.com/us/album/waste/id705233256?i=705233300&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste.mp3\r\n1. Waste\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/vnbBRpguG6g\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n1. Waste Acoustic Version\r\n<iframe src=\"//www.youtube.com/embed/jD8UD9dLGaU\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n1. Waste','Joshua Ayers','','publish','open','open','','755-2','','','2013-10-23 02:38:35','2013-10-23 02:38:35','',19,'http://www.earthhertzrecords.com/?page_id=755',4,'page','',0),(756,1,'2013-10-12 16:57:14','2013-10-12 16:57:14','<img class=\"alignnone size-full wp-image-488\" alt=\"joshayers_200\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200.jpg\" width=\"240\" height=\"180\" />Having an artist who fully understands the scope of the recording business is a great asset to a record company. <b>Joshua Ayers</b> not only is a talented multi-instrumentalist singer-songwriter, he is also a recording engineer with a keen ear for putting together the right sound.\r\n\r\nOriginally from South Carolina, Josh is now settled in the KnoxvilleTennessee area, after spending some time learning the music business in Nashville. His musical influences range from Tom Waits and Neil Young to Tori Amos. Along with the guitar, Josh plays piano, bass, drums, and is interested in leaning the violin.\r\n\r\n[caption id=\"attachment_140\" align=\"alignnone\" width=\"220\"]<img class=\" wp-image-140 \" alt=\"Joshua Ayers newest single and video.\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/WasteCover750.jpg\" width=\"220\" height=\"200\" /> Joshua Ayers newest single and video.[/caption]\r\n\r\nJosh’s first single released through Earth Hertz, is a fine example of both his writing and production techniques. “Waste” was originally written as a song challenge between friends, and is a dark, foreboding look at living a life filled with regret.\r\n\r\nAlong with his musical career, Josh is also involved in the media business. He can be heard as the host of his own weekly radio program on WHAY 98.3, where he showcases new and independent artists.\r\n\r\nJosh Ayers is currently working on his first album release for Earth Hertz Records.','','','inherit','open','open','','755-revision-v1','','','2013-10-12 16:57:14','2013-10-12 16:57:14','',755,'http://www.earthhertzrecords.com/2013/10/12/755-revision-v1/',0,'revision','',0),(757,1,'2013-10-12 16:58:27','2013-10-12 16:58:27','<img class=\"alignnone size-full wp-image-488\" alt=\"joshayers_200\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200.jpg\" width=\"240\" height=\"180\" />Having an artist who fully understands the scope of the recording business is a great asset to a record company. <b>Joshua Ayers</b> not only is a talented multi-instrumentalist singer-songwriter, he is also a recording engineer with a keen ear for putting together the right sound.\r\n\r\nOriginally from South Carolina, Josh is now settled in the KnoxvilleTennessee area, after spending some time learning the music business in Nashville. His musical influences range from Tom Waits and Neil Young to Tori Amos. Along with the guitar, Josh plays piano, bass, drums, and is interested in leaning the violin.\r\n\r\n[caption id=\"attachment_140\" align=\"alignnone\" width=\"220\"]<img class=\" wp-image-140 \" alt=\"Joshua Ayers newest single and video.\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/WasteCover750.jpg\" width=\"220\" height=\"200\" /> Joshua Ayers newest single and video.[/caption]\r\n\r\nJosh’s first single released through Earth Hertz, is a fine example of both his writing and production techniques. “Waste” was originally written as a song challenge between friends, and is a dark, foreboding look at living a life filled with regret.\r\n\r\nAlong with his musical career, Josh is also involved in the media business. He can be heard as the host of his own weekly radio program on WHAY 98.3, where he showcases new and independent artists.\r\n\r\nJosh Ayers is currently working on his first album release for Earth Hertz Records.','Joshua Ayers','','inherit','open','open','','755-revision-v1','','','2013-10-12 16:58:27','2013-10-12 16:58:27','',755,'http://www.earthhertzrecords.com/2013/10/12/755-revision-v1/',0,'revision','',0),(758,1,'2013-10-12 16:59:10','2013-10-12 16:59:10','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-48\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-44\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-12 16:59:10','2013-10-12 16:59:10','',19,'http://www.earthhertzrecords.com/2013/10/12/19-revision-v1/',0,'revision','',0),(759,1,'2013-10-12 17:00:58','2013-10-12 17:00:58','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\"><img class=\"alignleft size-full wp-image-585\" alt=\"meredytheandtherecyclekids\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\" width=\"224\" height=\"224\" /></a>There are many interesting facts about Meredythe Dee Winter, but the most important ones are that she loves kids, and loves this planet. In fact, she has spent a good part of her life creating projects which help both. Through art, music and television, Meredythe has spread the world about taking care of the Earth, while finding a way of getting the youngest generations involved at the same time.\r\n\r\nThe <strong>Meredythe & The Recycle! Kids</strong> album <i>Let\'s Make Every Day Earth Day!</i> is a creative way of teaching children what it means to be a good citizen of Planet Earth. The songs are not only filled with meaningful lyrics, but the melodies are lively and lighthearted.\r\n\r\n<strong>Let\'s Make Every Day Eart Day!</strong>\r\n\r\nMP3s','Meredythe & The Recycle! Kids','','publish','open','open','','the-meredythe-the-recycle-kids','','','2013-10-23 02:40:38','2013-10-23 02:40:38','',19,'http://www.earthhertzrecords.com/?page_id=759',5,'page','',0),(1056,2,'2013-10-23 01:33:43','2013-10-23 01:33:43','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\"><img class=\"alignleft size-full wp-image-585\" alt=\"meredytheandtherecyclekids\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\" width=\"224\" height=\"224\" /></a>There are many interesting facts about Meredythe Dee Winter, but the most important ones are that she loves kids, and loves this planet. In fact, she has spent a good part of her life creating projects which help both. Through art, music and television, Meredythe has spread the world about taking care of the Earth, while finding a way of getting the youngest generations involved at the same time.\r\n\r\nThe <strong>Meredythe & The Recycle! Kids</strong> album <i>Let\'s Make Every Day Earth Day!</i> is a creative way of teaching children what it means to be a good citizen of Planet Earth. The songs are not only filled with meaningful lyrics, but the melodies are lively and lighthearted.\r\n\r\n<strong>Let\'s Make Every Day Eart Day!\r\n\r\nMP3s</strong>','The Meredythe & The Recycle! Kids','','inherit','open','open','','759-revision-v1','','','2013-10-23 01:33:43','2013-10-23 01:33:43','',759,'http://www.earthhertzrecords.com/2013/10/759-revision-v1/',0,'revision','',0),(760,1,'2013-10-12 17:00:58','2013-10-12 17:00:58','There are many interesting facts about Meredythe Dee Winter, but the most important ones are that she loves kids, and loves this planet. In fact, she has spent a good part of her life creating projects which help both. Through art, music and television, Meredythe has spread the world about taking care of the Earth, while finding a way of getting the youngest generations involved at the same time.\r\n\r\n<img class=\"alignnone size-full wp-image-585\" alt=\"meredytheandtherecyclekids\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\" width=\"224\" height=\"224\" />The Meredythe & The Recycle! Kids album <i>Let\'s Make Every Day Earth Day!</i> is a creative way of teaching children what it means to be a good citizen of Planet Earth. The songs are not only filled with meaningful lyrics, but the melodies are lively and lighthearted.','The Meredythe & The Recycle! Kids','','inherit','open','open','','759-revision-v1','','','2013-10-12 17:00:58','2013-10-12 17:00:58','',759,'http://www.earthhertzrecords.com/2013/10/12/759-revision-v1/',0,'revision','',0),(761,1,'2013-10-12 17:01:56','2013-10-12 17:01:56','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-meredythe-the-recycle-kids/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-3Y\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-44\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-12 17:01:56','2013-10-12 17:01:56','',19,'http://www.earthhertzrecords.com/2013/10/12/19-revision-v1/',0,'revision','',0),(762,1,'2013-10-12 17:03:03','2013-10-12 17:03:03','','Mathias_RadarTowerAlbumCoverFinal','','inherit','open','open','','mathias_radartoweralbumcoverfinal-2','','','2013-10-12 17:03:03','2013-10-12 17:03:03','',246,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Mathias_RadarTowerAlbumCoverFinal.jpg',0,'attachment','image/jpeg',0),(763,1,'2013-10-23 02:40:11','2013-10-23 02:40:11','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\n<img class=\"wp-image-762 alignleft\" alt=\"Mathias_RadarTowerAlbumCoverFinal\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Mathias_RadarTowerAlbumCoverFinal-300x300.jpg\" width=\"250\" height=\"250\" />Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"size-medium wp-image-501 alignright\" title=\"Matt Guertin\" alt=\"Matt Guertin\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>The changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\n\n \n<strong>Mathias Meets The World\n<a href=\"https://itunes.apple.com/us/album/mathias-meets-the-world/id698212389?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\n\nMP3s\n</strong>\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\n1. Complicated\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\n2. Need To Unwind\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\n3. It\'s All The Same\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\n4. Memories From The Past\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\n5. Feelings\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\n6. Hippie Girl\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\n7. Gimme A Sign\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\n8. Before We Break\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\n9. Sheyenne River\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\n10. Time Will Tell\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\nNeed Someone\n\n<strong>VIDEOS</strong>\n<iframe src=\"//www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\nNeed Someone','radarTower','','inherit','open','open','','246-autosave-v1','','','2013-10-23 02:40:11','2013-10-23 02:40:11','',246,'http://www.earthhertzrecords.com/2013/10/12/246-autosave-v1/',0,'revision','',0),(765,1,'2013-10-12 17:04:46','2013-10-12 17:04:46','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-meredythe-the-recycle-kids/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/radartower/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-40\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-44\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-12 17:04:46','2013-10-12 17:04:46','',19,'http://www.earthhertzrecords.com/2013/10/12/19-revision-v1/',0,'revision','',0),(820,2,'2013-10-13 00:27:36','2013-10-13 00:27:36','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Oklahoma, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\nMP3s\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\nIn My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\nBounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\nMovin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\nMy Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\nWaiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\nToo Many\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\nA Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\nMemphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\nLittle Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\nI\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\nMagic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\nKnew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\nMaui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\nMy Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\nBounce Up And Down (Instrumental)\r\n\r\nVIDEOS\r\n<iframe src=\"//www.youtube.com/embed/YPfwQveHFNk\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nMagic\r\n<iframe src=\"//www.youtube.com/embed/i91x1hqkgas\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nA Loving Revolution','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-13 00:27:36','2013-10-13 00:27:36','',248,'http://www.earthhertzrecords.com/2013/10/13/248-revision-v1/',0,'revision','',0),(768,1,'2013-10-12 17:14:37','2013-10-12 17:14:37','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-meredythe-the-recycle-kids/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/radartower/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://wp.me/P3Wu0q-44\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-12 17:14:37','2013-10-12 17:14:37','',19,'http://www.earthhertzrecords.com/2013/10/12/19-revision-v1/',0,'revision','',0),(770,1,'2013-10-12 17:24:45','2013-10-12 17:24:45','<img class=\"alignnone wp-image-519\" alt=\"TheEllyMaze_NearSouth_Front_001b_600x600\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/TheEllyMaze_NearSouth_Front_001b_600x600.jpg\" width=\"300\" height=\"300\" />Johnna Maze and Loretta Vinson met at a music festival open stage and immediately began a musical partnership. As a member of a family of pickers, Johnna plays both guitar and Missouri style bloodbucket mandolin. No stranger to picking herself, Loretta takes on rhythm guitar, upright bass and banjo.\r\n\r\nBlending Bluegrass, Americana, and classic Country, <strong>The Elly Maze</strong> count the Flying Burrito Brothers, Gram Parsons, Emmylou Harris, Buffalo Springfield, Loretta Lynn, George Jones, Merle Haggard, and Marshall Chapman as those who have influenced their career, and their sound which they call Honkygrass-Amerifolk.\r\n\r\n<i>Near South</i>, their release through Earth Hertz Records, features eleven tracks of traditional country flavored joy. Johnna, Loretta and violinist Carolyn Dutton, have created a solid taste of old time American music, full of beautiful melodies and classic country vocals.','The Elly Maze','','inherit','open','open','','252-revision-v1','','','2013-10-12 17:24:45','2013-10-12 17:24:45','',252,'http://www.earthhertzrecords.com/2013/10/12/252-revision-v1/',0,'revision','',0),(771,1,'2013-10-12 17:25:09','2013-10-12 17:25:09','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-meredythe-the-recycle-kids/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/radartower/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-elly-maze/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-12 17:25:09','2013-10-12 17:25:09','',19,'http://www.earthhertzrecords.com/2013/10/12/19-revision-v1/',0,'revision','',0),(772,1,'2013-10-12 17:37:35','2013-10-12 17:37:35','<img class=\"alignnone wp-image-579\" alt=\"Wayne Jackson, Elvis Session, 1969\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me.jpg\" width=\"150\" height=\"200\" /> Glen with Wayne Jackson(r) of the Memphis Horns[/caption]\n\nMusic has always been a major force in the life of <b>Glen Spreen.</b> Music was the reason he left his hometown of Houston, Texas, and it was also the reason he moved to Memphis, Nashville, Atlanta, Europe and California. Even after he retired from a successful career in the music business, he built a recording studio in his home to create the music that played inside his heart.\n\n<img class=\"alignnone wp-image-580\" alt=\"Austin show backstage 2011\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg\" width=\"200\" height=\"150\" />\n\nThroughout his career in the music business, Glen’s arrangements were known for creating a mood within a song. Working alongside such music legends as Joan Baez, Dave Loggins, Dan Fogelberg, B.J. Thomas and Elvis Presley, Spreen not only arranged, but also wrote, produced and played on a vast music catalog, crossing over many music genres.\n\n<img class=\"alignnone wp-image-581\" alt=\"Glen Spreen-Dreams\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg\" width=\"175\" height=\"160\" />In his first release for Earth Hertz Records, Glen Spreen has written, played all instrumentation, and produced an album where the moods are many, and the music is dynamic. <i>Dreams</i> is a instrumental journey through all the emotions your mind and heart can produce. From tension to elation, or serenity to adversity, <i>Dreams</i> uses tempo and melody as a way of passage from one emotion to the next.\n\n<strong>MP3</strong>\n\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\nDreams\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\nWispers Of Sigh\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\nClouds Are Forming\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\nGame Changer\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\nHorizons To Visualize\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\nSpirit\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\nWillow\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\nPensive\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\nDim Light\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\nLove\'s Endless War\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\nNaivety Releasing\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\nStorms of Apria\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\nDim Light Reprise\n\n<strong>Videos</strong>\n\n\n\n','Glen Spreen','','inherit','open','open','','747-autosave-v1','','','2013-10-12 17:37:35','2013-10-12 17:37:35','',747,'http://www.earthhertzrecords.com/2013/10/12/747-autosave-v1/',0,'revision','',0),(774,1,'2013-10-12 17:30:03','2013-10-12 17:30:03','<img class=\"alignnone wp-image-579\" alt=\"Wayne Jackson, Elvis Session, 1969\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me.jpg\" width=\"150\" height=\"200\" /> Glen with Wayne Jackson(r) of the Memphis Horns[/caption]\r\n\r\nMusic has always been a major force in the life of <b>Glen Spreen.</b> Music was the reason he left his hometown of Houston, Texas, and it was also the reason he moved to Memphis, Nashville, Atlanta, Europe and California. Even after he retired from a successful career in the music business, he built a recording studio in his home to create the music that played inside his heart.\r\n\r\n<img class=\"alignnone wp-image-580\" alt=\"Austin show backstage 2011\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg\" width=\"200\" height=\"150\" />\r\n\r\nThroughout his career in the music business, Glen’s arrangements were known for creating a mood within a song. Working alongside such music legends as Joan Baez, Dave Loggins, Dan Fogelberg, B.J. Thomas and Elvis Presley, Spreen not only arranged, but also wrote, produced and played on a vast music catalog, crossing over many music genres.\r\n\r\n<img class=\"alignnone wp-image-581\" alt=\"Glen Spreen-Dreams\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg\" width=\"175\" height=\"160\" />In his first release for Earth Hertz Records, Glen Spreen has written, played all instrumentation, and produced an album where the moods are many, and the music is dynamic. <i>Dreams</i> is a instrumental journey through all the emotions your mind and heart can produce. From tension to elation, or serenity to adversity, <i>Dreams</i> uses tempo and melody as a way of passage from one emotion to the next.\r\n\r\n<strong>MP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\nDreams','Glen Spreen','','inherit','open','open','','747-revision-v1','','','2013-10-12 17:30:03','2013-10-12 17:30:03','',747,'http://www.earthhertzrecords.com/2013/10/12/747-revision-v1/',0,'revision','',0),(773,1,'2013-10-12 17:29:19','2013-10-12 17:29:19','<img class=\"alignnone wp-image-579\" alt=\"Wayne Jackson, Elvis Session, 1969\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me.jpg\" width=\"150\" height=\"200\" /> Glen with Wayne Jackson(r) of the Memphis Horns[/caption]\r\n\r\nMusic has always been a major force in the life of <b>Glen Spreen.</b> Music was the reason he left his hometown of Houston, Texas, and it was also the reason he moved to Memphis, Nashville, Atlanta, Europe and California. Even after he retired from a successful career in the music business, he built a recording studio in his home to create the music that played inside his heart.\r\n\r\n<img class=\"alignnone wp-image-580\" alt=\"Austin show backstage 2011\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg\" width=\"200\" height=\"150\" />\r\n\r\nThroughout his career in the music business, Glen’s arrangements were known for creating a mood within a song. Working alongside such music legends as Joan Baez, Dave Loggins, Dan Fogelberg, B.J. Thomas and Elvis Presley, Spreen not only arranged, but also wrote, produced and played on a vast music catalog, crossing over many music genres.\r\n\r\n<img class=\"alignnone wp-image-581\" alt=\"Glen Spreen-Dreams\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg\" width=\"175\" height=\"160\" />In his first release for Earth Hertz Records, Glen Spreen has written, played all instrumentation, and produced an album where the moods are many, and the music is dynamic. <i>Dreams</i> is a instrumental journey through all the emotions your mind and heart can produce. From tension to elation, or serenity to adversity, <i>Dreams</i> uses tempo and melody as a way of passage from one emotion to the next.\r\n\r\n<strong>MP3</strong>\r\n\r\n<a title=\"https://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\" href=\"https://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\">https://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\nD</a>reams','Glen Spreen','','inherit','open','open','','747-revision-v1','','','2013-10-12 17:29:19','2013-10-12 17:29:19','',747,'http://www.earthhertzrecords.com/2013/10/12/747-revision-v1/',0,'revision','',0),(775,1,'2013-10-12 17:36:30','2013-10-12 17:36:30','<img class=\"alignnone wp-image-579\" alt=\"Wayne Jackson, Elvis Session, 1969\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me.jpg\" width=\"150\" height=\"200\" /> Glen with Wayne Jackson(r) of the Memphis Horns[/caption]\r\n\r\nMusic has always been a major force in the life of <b>Glen Spreen.</b> Music was the reason he left his hometown of Houston, Texas, and it was also the reason he moved to Memphis, Nashville, Atlanta, Europe and California. Even after he retired from a successful career in the music business, he built a recording studio in his home to create the music that played inside his heart.\r\n\r\n<img class=\"alignnone wp-image-580\" alt=\"Austin show backstage 2011\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg\" width=\"200\" height=\"150\" />\r\n\r\nThroughout his career in the music business, Glen’s arrangements were known for creating a mood within a song. Working alongside such music legends as Joan Baez, Dave Loggins, Dan Fogelberg, B.J. Thomas and Elvis Presley, Spreen not only arranged, but also wrote, produced and played on a vast music catalog, crossing over many music genres.\r\n\r\n<img class=\"alignnone wp-image-581\" alt=\"Glen Spreen-Dreams\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg\" width=\"175\" height=\"160\" />In his first release for Earth Hertz Records, Glen Spreen has written, played all instrumentation, and produced an album where the moods are many, and the music is dynamic. <i>Dreams</i> is a instrumental journey through all the emotions your mind and heart can produce. From tension to elation, or serenity to adversity, <i>Dreams</i> uses tempo and melody as a way of passage from one emotion to the next.\r\n\r\n<strong>MP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\nDreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\nWispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\nClouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\nGame Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\nHorizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\nSpirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\nWillow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\nPensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\nDim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\nLove\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\nNaivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\nStorms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\nDim Light Reprise\r\n\r\n\r\n\r\n\r\n','Glen Spreen','','inherit','open','open','','747-revision-v1','','','2013-10-12 17:36:30','2013-10-12 17:36:30','',747,'http://www.earthhertzrecords.com/2013/10/12/747-revision-v1/',0,'revision','',0),(776,1,'2013-10-12 17:39:26','2013-10-12 17:39:26','<img class=\"alignnone wp-image-579\" alt=\"Wayne Jackson, Elvis Session, 1969\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me.jpg\" width=\"150\" height=\"200\" /> Glen with Wayne Jackson(r) of the Memphis Horns[/caption]\r\n\r\nMusic has always been a major force in the life of <b>Glen Spreen.</b> Music was the reason he left his hometown of Houston, Texas, and it was also the reason he moved to Memphis, Nashville, Atlanta, Europe and California. Even after he retired from a successful career in the music business, he built a recording studio in his home to create the music that played inside his heart.\r\n\r\n<img class=\"alignnone wp-image-580\" alt=\"Austin show backstage 2011\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg\" width=\"200\" height=\"150\" />\r\n\r\nThroughout his career in the music business, Glen’s arrangements were known for creating a mood within a song. Working alongside such music legends as Joan Baez, Dave Loggins, Dan Fogelberg, B.J. Thomas and Elvis Presley, Spreen not only arranged, but also wrote, produced and played on a vast music catalog, crossing over many music genres.\r\n\r\n<img class=\"alignnone wp-image-581\" alt=\"Glen Spreen-Dreams\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg\" width=\"175\" height=\"160\" />In his first release for Earth Hertz Records, Glen Spreen has written, played all instrumentation, and produced an album where the moods are many, and the music is dynamic. <i>Dreams</i> is a instrumental journey through all the emotions your mind and heart can produce. From tension to elation, or serenity to adversity, <i>Dreams</i> uses tempo and melody as a way of passage from one emotion to the next.\r\n\r\n<strong>MP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\nDreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\nWispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\nClouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\nGame Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\nHorizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\nSpirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\nWillow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\nPensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\nDim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\nLove\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\nNaivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\nStorms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\nDim Light Reprise\r\n\r\n<strong>Videos</strong>\r\n<iframe width=\"420\" height=\"315\" src=\"//www.youtube.com/embed/6OybAAXA0W0\" frameborder=\"0\" allowfullscreen></iframe>\r\nDreams\r\n','Glen Spreen','','inherit','open','open','','747-revision-v1','','','2013-10-12 17:39:26','2013-10-12 17:39:26','',747,'http://www.earthhertzrecords.com/2013/10/12/747-revision-v1/',0,'revision','',0),(777,1,'2013-10-12 17:54:26','2013-10-12 17:54:26','<img class=\"alignnone wp-image-482\" alt=\"hannah\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah.jpg\" width=\"300\" height=\"200\" />When performing, most artists strive to do their best. For most, it’s a matter of pride and self-worth. But somewhere back in the subconscious, a little voices pushes them to give it their all because you never know when your music will connect with some random stranger in the crowd.\n\nOne night <strong>Hannah Mae</strong> was onstage giving it her all, and one member of the crowd was moved enough by her performance to tell another person about her. In this case, that person was record producer Josh Ayers, and upon hearing her, he too was impressed with her talent. So much so, that he recorded Hannah, and brought her to Earth Hertz.\n\n<img class=\" wp-image-483 alignright\" alt=\"Picture 033\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Picture-033.jpg\" width=\"300\" height=\"225\" />Growing up in Kentucky with musically inclined parents, Hannah was surrounded by all genres of music. Piano lessons led the way for the beginning of her songwriting career. Choir was where her vocal skills were sharpened. Learning to play guitar was a natural progression for a busy songwriter; carrying a guitar and working on a melody is a lot more convenient than going home to the piano.\n\nHannah’s many musical influences are evident in her work. She comfortably slides through country, folk, blues, pop, and all their combinations. She writes of things in the present, and creates stories from long ago. Her first release from Earth Hertz “Guns And Run,” recalls life on the prairie in vivid and haunting imagery.\n\nIn addition to her musical talents, Hannah is also an artist. Instead of using notes and lyrics, she portrays her tales in paint.\n\nHannah is currently working on her first album release for Earth Hertz Records.\n\nMP3s\n\n\n\nVIDEOS\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/yCuoOUG3iOc\" frameborder=\"0\" allowfullscreen></iframe>\nGuns and Run','Hannah Mae','','inherit','open','open','','751-autosave-v1','','','2013-10-12 17:54:26','2013-10-12 17:54:26','',751,'http://www.earthhertzrecords.com/2013/10/12/751-autosave-v1/',0,'revision','',0),(778,1,'2013-10-12 17:56:16','2013-10-12 17:56:16','<img class=\"alignnone wp-image-482\" alt=\"hannah\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah.jpg\" width=\"300\" height=\"200\" />When performing, most artists strive to do their best. For most, it’s a matter of pride and self-worth. But somewhere back in the subconscious, a little voices pushes them to give it their all because you never know when your music will connect with some random stranger in the crowd.\r\n\r\nOne night <strong>Hannah Mae</strong> was onstage giving it her all, and one member of the crowd was moved enough by her performance to tell another person about her. In this case, that person was record producer Josh Ayers, and upon hearing her, he too was impressed with her talent. So much so, that he recorded Hannah, and brought her to Earth Hertz.\r\n\r\n<img class=\" wp-image-483 alignright\" alt=\"Picture 033\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Picture-033.jpg\" width=\"300\" height=\"225\" />Growing up in Kentucky with musically inclined parents, Hannah was surrounded by all genres of music. Piano lessons led the way for the beginning of her songwriting career. Choir was where her vocal skills were sharpened. Learning to play guitar was a natural progression for a busy songwriter; carrying a guitar and working on a melody is a lot more convenient than going home to the piano.\r\n\r\nHannah’s many musical influences are evident in her work. She comfortably slides through country, folk, blues, pop, and all their combinations. She writes of things in the present, and creates stories from long ago. Her first release from Earth Hertz “Guns And Run,” recalls life on the prairie in vivid and haunting imagery.\r\n\r\nIn addition to her musical talents, Hannah is also an artist. Instead of using notes and lyrics, she portrays her tales in paint.\r\n\r\nHannah is currently working on her first album release for Earth Hertz Records.\r\n\r\nMP3s\r\nComing Soon\r\n\r\nVIDEOS\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/yCuoOUG3iOc\" frameborder=\"0\" allowfullscreen></iframe>\r\nGuns and Run','Hannah Mae','','inherit','open','open','','751-revision-v1','','','2013-10-12 17:56:16','2013-10-12 17:56:16','',751,'http://www.earthhertzrecords.com/2013/10/12/751-revision-v1/',0,'revision','',0),(779,1,'2013-10-12 18:07:11','2013-10-12 18:07:11','<img class=\"alignnone wp-image-482\" alt=\"hannah\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah.jpg\" width=\"300\" height=\"200\" />When performing, most artists strive to do their best. For most, it’s a matter of pride and self-worth. But somewhere back in the subconscious, a little voices pushes them to give it their all because you never know when your music will connect with some random stranger in the crowd.\r\n\r\nOne night <strong>Hannah Mae</strong> was onstage giving it her all, and one member of the crowd was moved enough by her performance to tell another person about her. In this case, that person was record producer Josh Ayers, and upon hearing her, he too was impressed with her talent. So much so, that he recorded Hannah, and brought her to Earth Hertz.\r\n\r\n<img class=\" wp-image-483 alignright\" alt=\"Picture 033\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Picture-033.jpg\" width=\"300\" height=\"225\" />Growing up in Kentucky with musically inclined parents, Hannah was surrounded by all genres of music. Piano lessons led the way for the beginning of her songwriting career. Choir was where her vocal skills were sharpened. Learning to play guitar was a natural progression for a busy songwriter; carrying a guitar and working on a melody is a lot more convenient than going home to the piano.\r\n\r\nHannah’s many musical influences are evident in her work. She comfortably slides through country, folk, blues, pop, and all their combinations. She writes of things in the present, and creates stories from long ago. Her first release from Earth Hertz “Guns And Run,” recalls life on the prairie in vivid and haunting imagery.\r\n\r\nIn addition to her musical talents, Hannah is also an artist. Instead of using notes and lyrics, she portrays her tales in paint.\r\n\r\nHannah is currently working on her first album release for Earth Hertz Records.\r\n\r\n<strong>MP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499300-QMU991100113.mp3\r\nGuns and Run\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/yCuoOUG3iOc\" frameborder=\"0\" allowfullscreen></iframe>\r\nGuns and Run','Hannah Mae','','inherit','open','open','','751-revision-v1','','','2013-10-12 18:07:11','2013-10-12 18:07:11','',751,'http://www.earthhertzrecords.com/2013/10/12/751-revision-v1/',0,'revision','',0),(780,1,'2013-10-23 02:00:25','2013-10-23 02:00:25','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\"><img class=\"alignright size-full wp-image-815\" alt=\"JoshAyers-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\" width=\"178\" height=\"178\" /></a>Having an artist who fully understands the scope of the recording business is a great asset to a record company. <b>Joshua Ayers</b> not only is a talented multi-instrumentalist singer-songwriter, he is also a recording engineer with a keen ear for putting together the right sound.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200.jpg\"><img class=\"alignleft size-thumbnail wp-image-488\" alt=\"joshayers_200\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200-150x150.jpg\" width=\"150\" height=\"150\" /></a>Originally from South Carolina, Josh is now settled in the KnoxvilleTennessee area, after spending some time learning the music business in Nashville. His musical influences range from Tom Waits and Neil Young to Tori Amos. Along with the guitar, Josh plays piano, bass, drums, and is interested in leaning the violin.\n\nJosh’s first single released through Earth Hertz, is a fine example of both his writing and production techniques. “Waste” was originally written as a song challenge between friends, and is a dark, foreboding look at living a life filled with regret.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n.jpg\"><img class=\"alignright size-thumbnail wp-image-139\" alt=\"577670_595448180581_784630386_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n-150x150.jpg\" width=\"150\" height=\"150\" /></a>Along with his musical career, Josh is also involved in the media business. He can be heard as the host of his own weekly radio program on WHAY 98.3, where he showcases new and independent artists.\n\nJosh Ayers is currently working on his first album release for Earth Hertz Records.\n\n<strong>Waste\n<a href=\"https://itunes.apple.com/us/album/waste/id705233256?i=705233300&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\nMP3s</strong>\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste.mp3\n1. Waste\n<strong>VIDEOS</strong>\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/vnbBRpguG6g\" frameborder=\"0\" allowfullscreen></iframe>\n1. Waste\n<iframe src=\"//www.youtube.com/embed/jD8UD9dLGaU\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\n1. Waste','Joshua Ayers','','inherit','open','open','','755-autosave-v1','','','2013-10-23 02:00:25','2013-10-23 02:00:25','',755,'http://www.earthhertzrecords.com/2013/10/12/755-autosave-v1/',0,'revision','',0),(781,1,'2013-10-12 18:10:11','2013-10-12 18:10:11','<img class=\"alignnone size-full wp-image-488\" alt=\"joshayers_200\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200.jpg\" width=\"240\" height=\"180\" />Having an artist who fully understands the scope of the recording business is a great asset to a record company. <b>Joshua Ayers</b> not only is a talented multi-instrumentalist singer-songwriter, he is also a recording engineer with a keen ear for putting together the right sound.\r\n\r\nOriginally from South Carolina, Josh is now settled in the KnoxvilleTennessee area, after spending some time learning the music business in Nashville. His musical influences range from Tom Waits and Neil Young to Tori Amos. Along with the guitar, Josh plays piano, bass, drums, and is interested in leaning the violin.\r\n\r\n[caption id=\"attachment_140\" align=\"alignnone\" width=\"220\"]<img class=\" wp-image-140 \" alt=\"Joshua Ayers newest single and video.\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/WasteCover750.jpg\" width=\"220\" height=\"200\" /> Joshua Ayers newest single and video.[/caption]\r\n\r\nJosh’s first single released through Earth Hertz, is a fine example of both his writing and production techniques. “Waste” was originally written as a song challenge between friends, and is a dark, foreboding look at living a life filled with regret.\r\n\r\nAlong with his musical career, Josh is also involved in the media business. He can be heard as the host of his own weekly radio program on WHAY 98.3, where he showcases new and independent artists.\r\n\r\nJosh Ayers is currently working on his first album release for Earth Hertz Records.\r\n\r\n<strong>MP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste.mp3\r\nWaste\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/jD8UD9dLGaU\" frameborder=\"0\" allowfullscreen></iframe>\r\nWaste','Joshua Ayers','','inherit','open','open','','755-revision-v1','','','2013-10-12 18:10:11','2013-10-12 18:10:11','',755,'http://www.earthhertzrecords.com/2013/10/12/755-revision-v1/',0,'revision','',0),(782,1,'2013-10-12 18:31:34','2013-10-12 18:31:34','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n\r\n<img class=\"alignnone wp-image-762\" alt=\"Mathias_RadarTowerAlbumCoverFinal\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Mathias_RadarTowerAlbumCoverFinal.jpg\" width=\"296\" height=\"300\" />\r\n\r\n \r\n\r\nGrowing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<img class=\"alignnone size-full wp-image-501\" alt=\"MattGuertin-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\" width=\"340\" height=\"224\" />\r\n\r\n \r\n\r\n \r\n\r\nThe changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\nMP3s\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\nComplicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\nNeed To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\nIt\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\nMemories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\nFeelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\nHippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\nGimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\nBefore We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\nSheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\nTime Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\nNeed Someone\r\n\r\nVIDEOS\r\n<iframe width=\"420\" height=\"315\" src=\"//www.youtube.com/embed/B2tIpnigjp8\" frameborder=\"0\" allowfullscreen></iframe>\r\nNeed Someone\r\n','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-12 18:31:34','2013-10-12 18:31:34','',246,'http://www.earthhertzrecords.com/2013/10/12/246-revision-v1/',0,'revision','',0),(783,1,'2013-10-12 18:32:08','2013-10-12 18:32:08','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n\r\n<img class=\"alignnone wp-image-762\" alt=\"Mathias_RadarTowerAlbumCoverFinal\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Mathias_RadarTowerAlbumCoverFinal.jpg\" width=\"296\" height=\"300\" />\r\n\r\n \r\n\r\nGrowing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<img class=\"alignnone size-full wp-image-501\" alt=\"MattGuertin-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\" width=\"340\" height=\"224\" />\r\n\r\n \r\n\r\n \r\n\r\nThe changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n<strong>MP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\nComplicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\nNeed To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\nIt\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\nMemories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\nFeelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\nHippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\nGimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\nBefore We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\nSheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\nTime Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\nNeed Someone\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe width=\"420\" height=\"315\" src=\"//www.youtube.com/embed/B2tIpnigjp8\" frameborder=\"0\" allowfullscreen></iframe>\r\nNeed Someone\r\n','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-12 18:32:08','2013-10-12 18:32:08','',246,'http://www.earthhertzrecords.com/2013/10/12/246-revision-v1/',0,'revision','',0),(784,1,'2013-10-12 18:36:58','2013-10-12 18:36:58','<img class=\"alignnone size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" />The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Oklahoma, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n<img class=\"size-full wp-image-512 alignright\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" />Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i>\r\n<img class=\"alignnone size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /> Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\nMP3s\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\n\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\n\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\n\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\n\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\n\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\n\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\n\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\n\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\n\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\n\r\n\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\n\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\n\r\n\r\n\r\n\r\nVIDEOS\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/YPfwQveHFNk\" frameborder=\"0\" allowfullscreen></iframe>\r\nMagic\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/i91x1hqkgas\" frameborder=\"0\" allowfullscreen></iframe>\r\nA Loving Revolution\r\n','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-12 18:36:58','2013-10-12 18:36:58','',248,'http://www.earthhertzrecords.com/2013/10/12/248-revision-v1/',0,'revision','',0),(785,1,'2013-10-12 18:42:34','2013-10-12 18:42:34','<span style=\"font-size: 16px;\">\r\n<strong>Contact Earth Hertz Records</strong>\r\n<span style=\"font-size: 12px;\">Nashville, TN</span>\r\n<span style=\"font-size: 12px;\">(615) 824-8649</span>\r\n</span>\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>Eloa Xeno </strong>\r\nCFO and Director of Art\r\n<a href=\"mailto:exeno@earthhertz.com\">exeno@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\nNew Media Coordinator and Director of Artist Promotions<span style=\"font-size: 16px;\"> </span>\r\n<a href=\"mailto:kgalasso@earthhertz.com\">kgalasso@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-10-12 18:42:34','2013-10-12 18:42:34','',23,'http://www.earthhertzrecords.com/2013/10/12/23-revision-v1/',0,'revision','',0),(786,1,'2013-10-12 18:51:45','2013-10-12 18:51:45','<img class=\"alignnone size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" />The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Oklahoma, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n<img class=\"size-full wp-image-512 alignright\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" />Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i>\r\n<img class=\"alignnone size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /> Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\nMP3s\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\nIn My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\nBounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\nMovin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\nMy Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\nWaiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\nToo Many\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\nA Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\nMemphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\nLittle Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\nI\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\nMagic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\nKnew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\nMaui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\nMy Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\nBounce Up And Down (Instrumental)\r\n\r\nVIDEOS\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/YPfwQveHFNk\" frameborder=\"0\" allowfullscreen></iframe>\r\nMagic\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/i91x1hqkgas\" frameborder=\"0\" allowfullscreen></iframe>\r\nA Loving Revolution','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-12 18:51:45','2013-10-12 18:51:45','',248,'http://www.earthhertzrecords.com/2013/10/12/248-revision-v1/',0,'revision','',0),(1238,1,'2013-11-06 13:06:39','2013-11-06 13:06:39','https://s3.amazonaws.com/storageA/MattGuertirxHippieGirl_16_2013_11_05.mp3\r\n1. Hippie Girl mp3 16k\r\n\r\nhttps://s3.amazonaws.com/storageA/MattGuertirxHippieGirl_24_2013_11_05.mp3\r\n2. Hippie Girl mp3 24k\r\n\r\nhttps://s3.amazonaws.com/storageA/rxHippieGirl_2013_11_05.wav\r\n3. Hippie Girl wav\r\n\r\nhttps://s3.amazonaws.com/storageA/rxHippieGirl_2013_11_06_001.wav\r\n4. Hippie Girl wav (Matts)','','','publish','open','open','carwash','1238','','','2013-11-07 06:43:57','2013-11-07 06:43:57','',0,'http://www.earthhertzrecords.com/?p=1238',0,'post','',0),(790,1,'2013-10-12 19:16:52','2013-10-12 19:16:52','<a href=\"https://itunes.apple.com/us/album/dreams/id694336061?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\n1. Dreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\n2. Whispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\n3. Clouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\n4. Game Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\n5. Horizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\n6. Spirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\n7. Willow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\n8. Pensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\n9. Dim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\n10. Love\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\n11. Naivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\n12. Storms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\n13. Dim Light Reprise','Glen Spreen','','publish','open','open','','glen-spreen','','','2013-10-23 02:56:54','2013-10-23 02:56:54','',0,'http://www.earthhertzrecords.com/?p=790',2,'post','',0),(791,1,'2013-10-12 19:16:52','2013-10-12 19:16:52','https://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\nDreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\nWispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\nClouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\nGame Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\nHorizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\nSpirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\nWillow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\nPensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\nDim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\nLove\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\nNaivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\nStorms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\nDim Light Reprise\r\n','Glen Spreen','','inherit','open','open','','790-revision-v1','','','2013-10-12 19:16:52','2013-10-12 19:16:52','',790,'http://www.earthhertzrecords.com/2013/10/12/790-revision-v1/',0,'revision','',0),(792,1,'2013-10-12 19:17:25','2013-10-12 19:17:25','https://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\nDreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\nWhispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\nClouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\nGame Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\nHorizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\nSpirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\nWillow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\nPensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\nDim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\nLove\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\nNaivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\nStorms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\nDim Light Reprise\r\n','Glen Spreen','','inherit','open','open','','790-revision-v1','','','2013-10-12 19:17:25','2013-10-12 19:17:25','',790,'http://www.earthhertzrecords.com/2013/10/12/790-revision-v1/',0,'revision','',0),(793,1,'2013-10-12 19:17:33','2013-10-12 19:17:33','<img class=\"alignnone wp-image-579\" alt=\"Wayne Jackson, Elvis Session, 1969\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me.jpg\" width=\"150\" height=\"200\" /> Glen with Wayne Jackson(r) of the Memphis Horns[/caption]\r\n\r\nMusic has always been a major force in the life of <b>Glen Spreen.</b> Music was the reason he left his hometown of Houston, Texas, and it was also the reason he moved to Memphis, Nashville, Atlanta, Europe and California. Even after he retired from a successful career in the music business, he built a recording studio in his home to create the music that played inside his heart.\r\n\r\n<img class=\"alignnone wp-image-580\" alt=\"Austin show backstage 2011\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg\" width=\"200\" height=\"150\" />\r\n\r\nThroughout his career in the music business, Glen’s arrangements were known for creating a mood within a song. Working alongside such music legends as Joan Baez, Dave Loggins, Dan Fogelberg, B.J. Thomas and Elvis Presley, Spreen not only arranged, but also wrote, produced and played on a vast music catalog, crossing over many music genres.\r\n\r\n<img class=\"alignnone wp-image-581\" alt=\"Glen Spreen-Dreams\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg\" width=\"175\" height=\"160\" />In his first release for Earth Hertz Records, Glen Spreen has written, played all instrumentation, and produced an album where the moods are many, and the music is dynamic. <i>Dreams</i> is a instrumental journey through all the emotions your mind and heart can produce. From tension to elation, or serenity to adversity, <i>Dreams</i> uses tempo and melody as a way of passage from one emotion to the next.\r\n\r\n<strong>MP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\nDreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\nWhispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\nClouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\nGame Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\nHorizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\nSpirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\nWillow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\nPensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\nDim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\nLove\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\nNaivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\nStorms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\nDim Light Reprise\r\n\r\n<strong>Videos</strong>\r\n<iframe width=\"420\" height=\"315\" src=\"//www.youtube.com/embed/6OybAAXA0W0\" frameborder=\"0\" allowfullscreen></iframe>\r\nDreams\r\n','Glen Spreen','','inherit','open','open','','747-revision-v1','','','2013-10-12 19:17:33','2013-10-12 19:17:33','',747,'http://www.earthhertzrecords.com/2013/10/12/747-revision-v1/',0,'revision','',0),(795,1,'2013-10-12 19:20:13','2013-10-12 19:20:13','<a href=\"https://itunes.apple.com/us/album/mathias-meets-the-world/id698212389?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\n1. Complicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\n2. Need To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\n3. It\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\n4. Memories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\n5. Feelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\n6. Hippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\n7. Gimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\n8. Before We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\n9. Sheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\n10.Time Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\n11. Need Someone','radarTower','','publish','open','open','','radartower','','','2013-10-23 02:55:58','2013-10-23 02:55:58','',0,'http://www.earthhertzrecords.com/?p=795',5,'post','',0),(796,1,'2013-10-12 19:20:13','2013-10-12 19:20:13','https://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\nComplicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\nNeed To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\nIt\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\nMemories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\nFeelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\nHippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\nGimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\nBefore We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\nSheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\nTime Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\nNeed Someone\r\n','radarTower','','inherit','open','open','','795-revision-v1','','','2013-10-12 19:20:13','2013-10-12 19:20:13','',795,'http://www.earthhertzrecords.com/2013/10/12/795-revision-v1/',0,'revision','',0),(797,1,'2013-10-11 19:22:21','2013-10-11 19:22:21','<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\n','The Billy David Band','','publish','open','open','','the-billy-david-band','','','2013-12-08 17:10:41','2013-12-08 23:10:41','',0,'http://www.earthhertzrecords.com/?p=797',22,'post','',0),(798,1,'2013-10-12 19:22:21','2013-10-12 19:22:21','\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\nIn My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\nBounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\nMovin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\nMy Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\nWaiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\nToo Many\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\nA Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\nMemphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\nLittle Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\nI\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\nMagic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\nKnew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\nMaui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\nMy Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\nBounce Up And Down (Instrumental)\r\n','The Billy David Band','','inherit','open','open','','797-revision-v1','','','2013-10-12 19:22:21','2013-10-12 19:22:21','',797,'http://www.earthhertzrecords.com/2013/10/12/797-revision-v1/',0,'revision','',0),(800,1,'2013-10-12 19:31:25','2013-10-12 19:31:25','[caption id=\"attachment_131\" align=\"alignleft\" width=\"81\"]<a href=\"http://www.earthhertzrecords.com/2013/08/29/hello-world/\"><img class=\"size-full wp-image-131 \" title=\"Earth Hertz Records Blog\" alt=\"Earth Hertz Records Blog\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/EH_120_360_Skyscraper_2013_07_29_001.png\" width=\"81\" height=\"83\" /></a> Earth Hertz Records Blog[/caption]','BLOG','','inherit','open','open','','30-revision-v1','','','2013-10-12 19:31:25','2013-10-12 19:31:25','',30,'http://www.earthhertzrecords.com/2013/10/12/30-revision-v1/',0,'revision','',0),(802,1,'2013-10-12 19:36:19','2013-10-12 19:36:19','[caption id=\"attachment_131\" align=\"alignleft\" width=\"81\"]<a href=\"http://www.earthhertzrecords.com/2013/10/04/earth-hertz-blog/ \"><img class=\"size-full wp-image-131 \" title=\"Earth Hertz Records Blog\" alt=\"Earth Hertz Records Blog\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/EH_120_360_Skyscraper_2013_07_29_001.png\" width=\"81\" height=\"83\" /></a> Earth Hertz Records Blog[/caption]','BLOG','','inherit','open','open','','30-revision-v1','','','2013-10-12 19:36:19','2013-10-12 19:36:19','',30,'http://www.earthhertzrecords.com/2013/10/12/30-revision-v1/',0,'revision','',0),(803,1,'2013-10-12 19:46:06','2013-10-12 19:46:06','<h1><strong style=\"font-size: 16px;\">Partnering For Change</strong></h1>\r\nThe music industry is headed for a much needed and long overdue reworking. Both artists and fans are disappointed with record labels, online streaming companies, and internet radio stations raking in the money and fighting to keep it.\r\n\r\nThe time has come for a complete paradigm shift. It is time to treat the artists more fairly, starting with the contracts they sign with labels. Additionally, it is time for online media streaming sites to pay for the plays.\r\n\r\nEarth Hertz Records in partnership with StreamBeam.US determined the time is now, and is poised to deliver the complete solution.\r\n\r\nEarth Hertz Productions, LLC is a 5-tier company with multiple facets comprising each tier.\r\n\r\n1) High Definition Music Recordings\r\n\r\n2) Your Grandma\'s Lower Definition Music\r\n\r\n3) Accepted Content (various definitions from external sources and non-Earth Hertz artists.)\r\n\r\n4) Radio style streaming media just like Spotify, Pandora, iTunes, etc\r\n\r\n5) Earth Hertz/StreamBeam.US internally booked, NO-SCALPING protected concert tours.','Earth Hertz Records Is Live','','publish','open','open','','earth-hertz-records-is-live','','','2013-10-12 19:49:13','2013-10-12 19:49:13','',0,'http://www.earthhertzrecords.com/?p=803',1,'post','',0),(804,1,'2013-10-12 19:46:06','2013-10-12 19:46:06','<h1><strong style=\"font-size: 16px;\">Partnering For Change</strong></h1>\r\nThe music industry is headed for a much needed and long overdue reworking. Both artists and fans are disappointed with record labels, online streaming companies, and internet radio stations raking in the money and fighting to keep it.\r\n\r\nThe time has come for a complete paradigm shift. It is time to treat the artists more fairly, starting with the contracts they sign with labels. Additionally, it is time for online media streaming sites to pay for the plays.\r\n\r\nEarth Hertz Records in partnership with StreamBeam.US determined the time is now, and is poised to deliver the complete solution.\r\n\r\nEarth Hertz Productions, LLC is a 5-tier company with multiple facets comprising each tier.\r\n\r\n1) High Definition Music Recordings\r\n\r\n2) Your Grandma\'s Lower Definition Music\r\n\r\n3) Accepted Content (various definitions from external sources and non-Earth Hertz artists.)\r\n\r\n4) Radio style streaming media just like Spotify, Pandora, iTunes, etc\r\n\r\n5) Earth Hertz/StreamBeam.US internally booked, NO-SCALPING protected concert tours.','Earth Hertz Records Is Live','','inherit','open','open','','803-revision-v1','','','2013-10-12 19:46:06','2013-10-12 19:46:06','',803,'http://www.earthhertzrecords.com/2013/10/12/803-revision-v1/',0,'revision','',0),(805,1,'2013-10-12 19:47:58','2013-10-12 19:47:58','[caption id=\"attachment_131\" align=\"alignleft\" width=\"81\"]<a href=\"http://www.earthhertzrecords.com/2013/10/12/earth-hertz-records-is-live/\"><img class=\"size-full wp-image-131 \" title=\"Earth Hertz Records Blog\" alt=\"Earth Hertz Records Blog\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/EH_120_360_Skyscraper_2013_07_29_001.png\" width=\"81\" height=\"83\" /></a> Earth Hertz Records Blog[/caption]','BLOG','','inherit','open','open','','30-revision-v1','','','2013-10-12 19:47:58','2013-10-12 19:47:58','',30,'http://www.earthhertzrecords.com/2013/10/12/30-revision-v1/',0,'revision','',0),(806,1,'2013-10-12 19:50:44','2013-10-12 19:50:44','[caption id=\"attachment_131\" align=\"alignleft\" width=\"81\"]<a href=\"http://www.earthhertzrecords.com/category/earthhertzblog/\"><img class=\"size-full wp-image-131 \" title=\"Earth Hertz Records Blog\" alt=\"Earth Hertz Records Blog\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/EH_120_360_Skyscraper_2013_07_29_001.png\" width=\"81\" height=\"83\" /></a> Earth Hertz Records Blog[/caption]','BLOG','','inherit','open','open','','30-revision-v1','','','2013-10-12 19:50:44','2013-10-12 19:50:44','',30,'http://www.earthhertzrecords.com/2013/10/12/30-revision-v1/',0,'revision','',0),(807,2,'2013-10-12 23:36:19','2013-10-12 23:36:19','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>MP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','738-autosave-v1','','','2013-10-12 23:36:19','2013-10-12 23:36:19','',738,'http://www.earthhertzrecords.com/2013/10/12/738-autosave-v1/',0,'revision','',0),(808,2,'2013-10-12 23:36:45','2013-10-12 23:36:45','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>MP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-12 23:36:45','2013-10-12 23:36:45','',738,'http://www.earthhertzrecords.com/2013/10/12/738-revision-v1/',0,'revision','',0),(809,2,'2013-10-12 23:56:51','2013-10-12 23:56:51','[caption id=\"attachment_579\" align=\"alignright\" width=\"224\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me.jpg\"><img class=\"size-medium wp-image-579\" alt=\"Glen with Wayne Jackson(r) of the Memphis Horns\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me-224x300.jpg\" width=\"224\" height=\"300\" /></a> Glen with Wayne Jackson(r) of the Memphis Horns[/caption]\r\n\r\nMusic has always been a major force in the life of <strong>Glen Spreen</strong>. Music was the reason he left his hometown of Houston, Texas, and it was also the reason he moved to Memphis, Nashville, Atlanta, Europe and California. Even after he retired from a successful career in the music business, he built a recording studio in his home to create the music that played inside his heart.\r\n\r\n[caption id=\"attachment_580\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg\"><img class=\"size-thumbnail wp-image-580\" alt=\"With B.J. Thomas\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011-150x150.jpg\" width=\"150\" height=\"150\" /></a> With B.J. Thomas[/caption]\r\n\r\nThroughout his career in the music business, Glen’s arrangements were known for creating a mood within a song. Working alongside such music legends as Joan Baez, Dave Loggins, Dan Fogelberg, B.J. Thomas and Elvis Presley, Spreen not only arranged, but also wrote, produced and played on a vast music catalog, crossing over many music genres.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg\"><img class=\"alignright size-thumbnail wp-image-581\" alt=\"Glen Spreen-Dreams\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams-150x150.jpg\" width=\"150\" height=\"150\" /></a>In his first release for Earth Hertz Records, Glen Spreen has written, played all instrumentation, and produced an album where the moods are many, and the music is dynamic. <em>Dreams</em> is a instrumental journey through all the emotions your mind and heart can produce. From tension to elation, or serenity to adversity, <em>Dreams</em> uses tempo and melody as a way of passage from one emotion to the next.\r\n\r\n<strong>MP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\nDreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\nWhispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\nClouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\nGame Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\nHorizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\nSpirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\nWillow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\nPensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\nDim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\nLove\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\nNaivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\nStorms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\nDim Light Reprise\r\n\r\n<strong>Videos</strong>\r\n<iframe src=\"//www.youtube.com/embed/6OybAAXA0W0\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nDreams','Glen Spreen','','inherit','open','open','','747-autosave-v1','','','2013-10-12 23:56:51','2013-10-12 23:56:51','',747,'http://www.earthhertzrecords.com/2013/10/12/747-autosave-v1/',0,'revision','',0),(810,2,'2013-10-12 23:44:01','2013-10-12 23:44:01','[caption id=\"attachment_579\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me.jpg\"><img class=\"size-thumbnail wp-image-579\" alt=\"Glen with Wayne Jackson(r) of the Memphis Horns\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me-150x150.jpg\" width=\"150\" height=\"150\" /></a> Glen with Wayne Jackson(r) of the Memphis Horns[/caption]\r\n\r\nMusic has always been a major force in the life of <strong>Glen Spreen</strong>. Music was the reason he left his hometown of Houston, Texas, and it was also the reason he moved to Memphis, Nashville, Atlanta, Europe and California. Even after he retired from a successful career in the music business, he built a recording studio in his home to create the music that played inside his heart.\r\n\r\n[caption id=\"attachment_580\" align=\"alignright\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg\"><img class=\"size-thumbnail wp-image-580\" alt=\"With B.J. Thomas\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011-150x150.jpg\" width=\"150\" height=\"150\" /></a> With B.J. Thomas[/caption]\r\n\r\nThroughout his career in the music business, Glen’s arrangements were known for creating a mood within a song. Working alongside such music legends as Joan Baez, Dave Loggins, Dan Fogelberg, B.J. Thomas and Elvis Presley, Spreen not only arranged, but also wrote, produced and played on a vast music catalog, crossing over many music genres.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg\"><img class=\"alignleft size-thumbnail wp-image-581\" alt=\"Glen Spreen-Dreams\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams-150x150.jpg\" width=\"150\" height=\"150\" /></a>In his first release for Earth Hertz Records, Glen Spreen has written, played all instrumentation, and produced an album where the moods are many, and the music is dynamic. <em>Dreams</em> is a instrumental journey through all the emotions your mind and heart can produce. From tension to elation, or serenity to adversity, <em>Dreams</em> uses tempo and melody as a way of passage from one emotion to the next.\r\n\r\n<strong>MP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\nDreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\nWhispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\nClouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\nGame Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\nHorizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\nSpirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\nWillow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\nPensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\nDim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\nLove\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\nNaivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\nStorms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\nDim Light Reprise\r\n\r\n<strong>Videos</strong>\r\n<iframe src=\"//www.youtube.com/embed/6OybAAXA0W0\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nDreams','Glen Spreen','','inherit','open','open','','747-revision-v1','','','2013-10-12 23:44:01','2013-10-12 23:44:01','',747,'http://www.earthhertzrecords.com/2013/10/12/747-revision-v1/',0,'revision','',0),(811,2,'2014-02-05 11:19:04','2014-02-05 17:19:04','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah.jpg\"><img class=\"alignleft size-medium wp-image-482\" alt=\"hannah\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah-300x200.jpg\" width=\"300\" height=\"200\" /></a>When performing, most artists strive to do their best. For most, it’s a matter of pride and self-worth. But somewhere back in the subconscious, a little voices pushes them to give it their all because you never know when your music will connect with some random stranger in the crowd.\n\nOne night <strong>Hannah Mae</strong> was onstage giving it her all, and one member of the crowd was moved enough by her performance to tell another person about her. In this case, that person was record producer Josh Ayers, and upon hearing her, he too was impressed with her talent. So much so, that he recorded Hannah, and brought her to Earth Hertz.\n\n<img class=\" wp-image-483 alignright\" alt=\"Picture 033\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Picture-033.jpg\" width=\"300\" height=\"225\" />Growing up in Kentucky with musically inclined parents, Hannah was surrounded by all genres of music. Piano lessons led the way for the beginning of her songwriting career. Choir was where her vocal skills were sharpened. Learning to play guitar was a natural progression for a busy songwriter; carrying a guitar and working on a melody is a lot more convenient than going home to the piano.\n\nHannah’s many musical influences are evident in her work. She comfortably slides through country, folk, blues, pop, and all their combinations. She writes of things in the present, and creates stories from long ago. Her first release from Earth Hertz “Guns And Run,” recalls life on the prairie in vivid and haunting imagery.\n\nIn addition to her musical talents, Hannah is also an artist. Instead of using notes and lyrics, she portrays her tales in paint.\n\nHannah is currently working on her first album release for Earth Hertz Records.\n\nConnect with Hannah Mae on Facebook: <a href=\"https://www.facebook.com/hannah.m.rector.9?fref=ts\">Hannah Mae Rector</a>\n\n<strong>Guns and Run\n\nMP3s</strong>\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499300-QMU991100113.mp3\n1. Guns and Run\n\n<strong>VIDEOS</strong>\n<iframe src=\"//www.youtube.com/embed/yCuoOUG3iOc\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\n1. Guns and Run','Hannah Mae','','inherit','open','open','','751-autosave-v1','','','2014-02-05 11:19:04','2014-02-05 17:19:04','',751,'http://www.earthhertzrecords.com/2013/10/12/751-autosave-v1/',0,'revision','',0),(812,2,'2013-10-12 23:47:17','2013-10-12 23:47:17','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah.jpg\"><img class=\"alignleft size-medium wp-image-482\" alt=\"hannah\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah-300x200.jpg\" width=\"300\" height=\"200\" /></a>When performing, most artists strive to do their best. For most, it’s a matter of pride and self-worth. But somewhere back in the subconscious, a little voices pushes them to give it their all because you never know when your music will connect with some random stranger in the crowd.\r\n\r\nOne night <strong>Hannah Mae</strong> was onstage giving it her all, and one member of the crowd was moved enough by her performance to tell another person about her. In this case, that person was record producer Josh Ayers, and upon hearing her, he too was impressed with her talent. So much so, that he recorded Hannah, and brought her to Earth Hertz.\r\n\r\n<img class=\" wp-image-483 alignright\" alt=\"Picture 033\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Picture-033.jpg\" width=\"300\" height=\"225\" />Growing up in Kentucky with musically inclined parents, Hannah was surrounded by all genres of music. Piano lessons led the way for the beginning of her songwriting career. Choir was where her vocal skills were sharpened. Learning to play guitar was a natural progression for a busy songwriter; carrying a guitar and working on a melody is a lot more convenient than going home to the piano.\r\n\r\nHannah’s many musical influences are evident in her work. She comfortably slides through country, folk, blues, pop, and all their combinations. She writes of things in the present, and creates stories from long ago. Her first release from Earth Hertz “Guns And Run,” recalls life on the prairie in vivid and haunting imagery.\r\n\r\nIn addition to her musical talents, Hannah is also an artist. Instead of using notes and lyrics, she portrays her tales in paint.\r\n\r\nHannah is currently working on her first album release for Earth Hertz Records.\r\n\r\n<strong>MP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499300-QMU991100113.mp3\r\nGuns and Run\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/yCuoOUG3iOc\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nGuns and Run','Hannah Mae','','inherit','open','open','','751-revision-v1','','','2013-10-12 23:47:17','2013-10-12 23:47:17','',751,'http://www.earthhertzrecords.com/2013/10/12/751-revision-v1/',0,'revision','',0),(813,2,'2013-10-12 23:57:35','2013-10-12 23:57:35','[caption id=\"attachment_579\" align=\"alignright\" width=\"224\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me.jpg\"><img class=\"size-medium wp-image-579\" alt=\"Glen with Wayne Jackson(r) of the Memphis Horns\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me-224x300.jpg\" width=\"224\" height=\"300\" /></a> Glen with Wayne Jackson(r) of the Memphis Horns[/caption]\r\n\r\nMusic has always been a major force in the life of <strong>Glen Spreen</strong>. Music was the reason he left his hometown of Houston, Texas, and it was also the reason he moved to Memphis, Nashville, Atlanta, Europe and California. Even after he retired from a successful career in the music business, he built a recording studio in his home to create the music that played inside his heart.\r\n\r\n[caption id=\"attachment_580\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg\"><img class=\"size-thumbnail wp-image-580\" alt=\"With B.J. Thomas\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011-150x150.jpg\" width=\"150\" height=\"150\" /></a> With B.J. Thomas[/caption]\r\n\r\nThroughout his career in the music business, Glen’s arrangements were known for creating a mood within a song. Working alongside such music legends as Joan Baez, Dave Loggins, Dan Fogelberg, B.J. Thomas and Elvis Presley, Spreen not only arranged, but also wrote, produced and played on a vast music catalog, crossing over many music genres.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg\"><img class=\"alignright size-thumbnail wp-image-581\" alt=\"Glen Spreen-Dreams\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams-150x150.jpg\" width=\"150\" height=\"150\" /></a>In his first release for Earth Hertz Records, Glen Spreen has written, played all instrumentation, and produced an album where the moods are many, and the music is dynamic. <em>Dreams</em> is a instrumental journey through all the emotions your mind and heart can produce. From tension to elation, or serenity to adversity, <em>Dreams</em> uses tempo and melody as a way of passage from one emotion to the next.\r\n\r\n<strong>MP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\nDreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\nWhispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\nClouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\nGame Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\nHorizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\nSpirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\nWillow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\nPensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\nDim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\nLove\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\nNaivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\nStorms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\nDim Light Reprise\r\n\r\n<strong>Videos</strong>\r\n<iframe src=\"//www.youtube.com/embed/6OybAAXA0W0\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nDreams','Glen Spreen','','inherit','open','open','','747-revision-v1','','','2013-10-12 23:57:35','2013-10-12 23:57:35','',747,'http://www.earthhertzrecords.com/2013/10/12/747-revision-v1/',0,'revision','',0),(814,2,'2013-10-13 00:11:31','2013-10-13 00:11:31','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\"><img class=\"alignright size-full wp-image-815\" alt=\"JoshAyers-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\" width=\"178\" height=\"178\" /></a>Having an artist who fully understands the scope of the recording business is a great asset to a record company. <b>Joshua Ayers</b> not only is a talented multi-instrumentalist singer-songwriter, he is also a recording engineer with a keen ear for putting together the right sound.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200.jpg\"><img class=\"alignleft size-thumbnail wp-image-488\" alt=\"joshayers_200\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200-150x150.jpg\" width=\"150\" height=\"150\" /></a>Originally from South Carolina, Josh is now settled in the KnoxvilleTennessee area, after spending some time learning the music business in Nashville. His musical influences range from Tom Waits and Neil Young to Tori Amos. Along with the guitar, Josh plays piano, bass, drums, and is interested in leaning the violin.\r\n\r\nJosh’s first single released through Earth Hertz, is a fine example of both his writing and production techniques. “Waste” was originally written as a song challenge between friends, and is a dark, foreboding look at living a life filled with regret.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n.jpg\"><img class=\"alignright size-thumbnail wp-image-139\" alt=\"577670_595448180581_784630386_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n-150x150.jpg\" width=\"150\" height=\"150\" /></a>Along with his musical career, Josh is also involved in the media business. He can be heard as the host of his own weekly radio program on WHAY 98.3, where he showcases new and independent artists.\r\n\r\nJosh Ayers is currently working on his first album release for Earth Hertz Records.\r\n\r\n<strong>MP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste.mp3\r\nWaste\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/jD8UD9dLGaU\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nWaste','Joshua Ayers','','inherit','open','open','','755-autosave-v1','','','2013-10-13 00:11:31','2013-10-13 00:11:31','',755,'http://www.earthhertzrecords.com/2013/10/12/755-autosave-v1/',0,'revision','',0),(815,2,'2013-10-13 00:08:48','2013-10-13 00:08:48','','JoshAyers-1','','inherit','open','open','','joshayers-1','','','2013-10-13 00:08:48','2013-10-13 00:08:48','',755,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg',0,'attachment','image/jpeg',0),(816,2,'2013-10-13 00:12:20','2013-10-13 00:12:20','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\"><img class=\"alignright size-full wp-image-815\" alt=\"JoshAyers-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\" width=\"178\" height=\"178\" /></a>Having an artist who fully understands the scope of the recording business is a great asset to a record company. <b>Joshua Ayers</b> not only is a talented multi-instrumentalist singer-songwriter, he is also a recording engineer with a keen ear for putting together the right sound.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200.jpg\"><img class=\"alignleft size-thumbnail wp-image-488\" alt=\"joshayers_200\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200-150x150.jpg\" width=\"150\" height=\"150\" /></a>Originally from South Carolina, Josh is now settled in the KnoxvilleTennessee area, after spending some time learning the music business in Nashville. His musical influences range from Tom Waits and Neil Young to Tori Amos. Along with the guitar, Josh plays piano, bass, drums, and is interested in leaning the violin.\r\n\r\nJosh’s first single released through Earth Hertz, is a fine example of both his writing and production techniques. “Waste” was originally written as a song challenge between friends, and is a dark, foreboding look at living a life filled with regret.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n.jpg\"><img class=\"alignright size-thumbnail wp-image-139\" alt=\"577670_595448180581_784630386_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n-150x150.jpg\" width=\"150\" height=\"150\" /></a>Along with his musical career, Josh is also involved in the media business. He can be heard as the host of his own weekly radio program on WHAY 98.3, where he showcases new and independent artists.\r\n\r\nJosh Ayers is currently working on his first album release for Earth Hertz Records.\r\n\r\n<strong>MP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste.mp3\r\nWaste\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/jD8UD9dLGaU\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nWaste','Joshua Ayers','','inherit','open','open','','755-revision-v1','','','2013-10-13 00:12:20','2013-10-13 00:12:20','',755,'http://www.earthhertzrecords.com/2013/10/13/755-revision-v1/',0,'revision','',0),(817,2,'2013-10-23 01:34:47','2013-10-23 01:34:47','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\"><img class=\"alignleft size-full wp-image-585\" alt=\"meredytheandtherecyclekids\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\" width=\"224\" height=\"224\" /></a>There are many interesting facts about Meredythe Dee Winter, but the most important ones are that she loves kids, and loves this planet. In fact, she has spent a good part of her life creating projects which help both. Through art, music and television, Meredythe has spread the world about taking care of the Earth, while finding a way of getting the youngest generations involved at the same time.\n\nThe <strong>Meredythe & The Recycle! Kids</strong> album <i>Let\'s Make Every Day Earth Day!</i> is a creative way of teaching children what it means to be a good citizen of Planet Earth. The songs are not only filled with meaningful lyrics, but the melodies are lively and lighthearted.\n\n<strong>Let\'s Make Every Day Eart Day!</strong>\n\nMP3s','The Meredythe & The Recycle! Kids','','inherit','open','open','','759-autosave-v1','','','2013-10-23 01:34:47','2013-10-23 01:34:47','',759,'http://www.earthhertzrecords.com/2013/10/13/759-autosave-v1/',0,'revision','',0),(818,2,'2013-10-13 00:14:40','2013-10-13 00:14:40','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\"><img class=\"alignleft size-full wp-image-585\" alt=\"meredytheandtherecyclekids\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\" width=\"224\" height=\"224\" /></a>There are many interesting facts about Meredythe Dee Winter, but the most important ones are that she loves kids, and loves this planet. In fact, she has spent a good part of her life creating projects which help both. Through art, music and television, Meredythe has spread the world about taking care of the Earth, while finding a way of getting the youngest generations involved at the same time.\r\n\r\nThe Meredythe & The Recycle! Kids album <i>Let\'s Make Every Day Earth Day!</i> is a creative way of teaching children what it means to be a good citizen of Planet Earth. The songs are not only filled with meaningful lyrics, but the melodies are lively and lighthearted.','The Meredythe & The Recycle! Kids','','inherit','open','open','','759-revision-v1','','','2013-10-13 00:14:40','2013-10-13 00:14:40','',759,'http://www.earthhertzrecords.com/2013/10/13/759-revision-v1/',0,'revision','',0),(819,2,'2013-10-13 00:23:17','2013-10-13 00:23:17','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/mathiasmeetstheworld.jpg\"><img class=\"alignleft size-thumbnail wp-image-492\" alt=\"mathiasmeetstheworld\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/mathiasmeetstheworld-150x150.jpg\" width=\"150\" height=\"150\" /></a>Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"alignright size-medium wp-image-501\" alt=\"MattGuertin-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>The changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n<strong>MP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\nComplicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\nNeed To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\nIt\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\nMemories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\nFeelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\nHippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\nGimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\nBefore We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\nSheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\nTime Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\nNeed Someone\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nNeed Someone','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-13 00:23:17','2013-10-13 00:23:17','',246,'http://www.earthhertzrecords.com/2013/10/13/246-revision-v1/',0,'revision','',0),(821,2,'2013-10-13 00:29:36','2013-10-13 00:29:36','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/TheEllyMaze_NearSouth_Front_001b_600x600.jpg\"><img class=\"alignleft size-medium wp-image-519\" alt=\"TheEllyMaze_NearSouth_Front_001b_600x600\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/TheEllyMaze_NearSouth_Front_001b_600x600-300x300.jpg\" width=\"300\" height=\"300\" /></a>Johnna Maze and Loretta Vinson met at a music festival open stage and immediately began a musical partnership. As a member of a family of pickers, Johnna plays both guitar and Missouri style bloodbucket mandolin. No stranger to picking herself, Loretta takes on rhythm guitar, upright bass and banjo.\r\n\r\nBlending Bluegrass, Americana, and classic Country, <strong>The Elly Maze</strong> count the Flying Burrito Brothers, Gram Parsons, Emmylou Harris, Buffalo Springfield, Loretta Lynn, George Jones, Merle Haggard, and Marshall Chapman as those who have influenced their career, and their sound which they call Honkygrass-Amerifolk.\r\n\r\n<i>Near South</i>, their release through Earth Hertz Records, features eleven tracks of traditional country flavored joy. Johnna, Loretta and violinist Carolyn Dutton, have created a solid taste of old time American music, full of beautiful melodies and classic country vocals.','The Elly Maze','','inherit','open','open','','252-revision-v1','','','2013-10-13 00:29:36','2013-10-13 00:29:36','',252,'http://www.earthhertzrecords.com/2013/10/13/252-revision-v1/',0,'revision','',0),(825,1,'2013-10-13 01:18:45','2013-10-13 01:18:45','','','','inherit','open','open','','slide_111_en','','','2013-10-13 01:18:45','2013-10-13 01:18:45','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_111_en.png',0,'attachment','image/png',0),(826,1,'2013-10-13 01:19:29','2013-10-13 01:19:29','','','','inherit','open','open','','slide_111_en-2','','','2013-10-13 01:19:29','2013-10-13 01:19:29','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_111_en1.png',0,'attachment','image/png',0),(827,1,'2013-10-13 01:25:38','2013-10-13 01:25:38','http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_111_en2.png','','','inherit','open','open','','slide_111_en2-png','','','2013-10-13 01:25:38','2013-10-13 01:25:38','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_111_en2.png',0,'attachment','image/png',0),(828,1,'2013-10-13 01:29:14','2013-10-13 01:29:14','http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cropped-slide_111_en3.png','','','inherit','closed','open','','cropped-slide_111_en3-png','','','2013-10-13 01:29:14','2013-10-13 01:29:14','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cropped-slide_111_en3.png',0,'attachment','image/png',0),(829,1,'2013-10-13 01:30:22','2013-10-13 01:30:22','http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cropped-slide_111_en31.png','','','inherit','closed','open','','cropped-slide_111_en31-png','','','2013-10-13 01:30:22','2013-10-13 01:30:22','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cropped-slide_111_en31.png',0,'attachment','image/png',0),(830,1,'2013-10-13 01:34:25','2013-10-13 01:34:25','http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cropped-slide_111_en32.png','','','inherit','closed','open','','cropped-slide_111_en32-png','','','2013-10-13 01:34:25','2013-10-13 01:34:25','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cropped-slide_111_en32.png',0,'attachment','image/png',0),(831,1,'2013-10-01 06:12:03','2013-10-01 06:12:03','<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk','Applegate Nance','','publish','open','open','','applegate-nance-2','','','2013-10-23 02:57:41','2013-10-23 02:57:41','',0,'http://www.earthhertzrecords.com/?p=831',1,'post','',0),(832,1,'2013-10-13 06:12:03','2013-10-13 06:12:03','https://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','831-revision-v1','','','2013-10-13 06:12:03','2013-10-13 06:12:03','',831,'http://www.earthhertzrecords.com/2013/10/13/831-revision-v1/',0,'revision','',0),(834,1,'2013-10-13 14:36:11','2013-10-13 14:36:11','','1373403700-1877','','inherit','open','open','','1373403700-1877-2','','','2013-10-13 14:36:11','2013-10-13 14:36:11','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/1373403700-18771.png',0,'attachment','image/png',0),(1304,2,'2013-11-22 16:47:48','2013-11-22 22:47:48','For a November night in northwest New Jersey, the weather could not have been better. A light jacket was enough to keep you warm, and not crowd you in your seat. Tonight, you wanted to be comfortable for it was to be a night of songs and stories. Arlo Guthrie was in town, and we weren’t the only ones celebrating. With this year marking the 100<sup>th</sup> birthday of Arlo’s father, legendary folk singer and documenter of mid-century America, Woody Guthrie, Arlo was performing many of his dad’s compositions.\r\n\r\nThe Newton Theatre is a reclaimed from the edge of destruction movie theatre. Small and homey, you get to share the experience with 604 new friends. Though we were lucky to be sitting up front, it’s hard to imagine a bad seat in the house.\r\n\r\nWith no opening act, Arlo and his three-piece band took their places. With each member dressed in black, there would be no distraction; this night was about the music and the stories that inspired them. Arlo sat center stage next to his guitar rack with four beauties waiting to be picked.\r\n\r\nArlo began the evening speaking of Woody, and the joy he felt being able to spend nights such as this, singing the songs of his father, the songs of an America past, the songs of justice and injustice, the songs of his family. His voice is filled with more gravel than before, as if age and life’s journey has settled in. But every once in a while, the familiar sound of the Arlo from another time, punctuates a sentence of a story, and all those memories when you heard him say “Officer Obie” or “you remember Alice,” come flooding back. And you smile.\r\n\r\nArlo Guthrie is a superb storyteller. Pulling out a beautiful acoustic Gibson out of the rack, Arlo began talking of the story of Woody’s “Oklahoma Hills,” and you realize just how different the world was back then for a songwriter. You might not even know your song had been recorded until you heard it playing in a jukebox.\r\n\r\nOne of the wonderful attributes of the writing of Woody Guthrie was his ability to put down words explaining injustice, hard times or the beauty of this country, in the most simple of words. Their simplicity making them universally relatable.\r\n\r\nGrowing up Guthrie meant you had the most interesting of extended families. Ramblin’ Jack Elliot, Huddie “Leadbelly” Ledbetter, Cisco Houston. Their songs and their stories were exquisite as told by this grown man who had known them when he was a child.\r\n\r\nThough storytelling and song is his forte, Arlo Guthrie can play a real pretty guitar, though this night he battled with keeping them in tune. As a little tweaking of the strings went on longer than expected, Arlo blamed it in the blue light overhead. The audience laughed as the lighting guy quickly changed the color. It didn’t help. It did make the evening even more real; this was no rock star with a technician handing him a perfectly tuned guitar for every song. This was just a musician sitting in someone’s living room trying to play his best for some new friends.\r\n\r\nListening to the songs of Woody Guthrie is like riding on one of the filled with family and belongings trucks Steinbeck wrote about in <i>The Grapes of Wrath</i>, in fact Guthrie wrote a song condensing the 600 pages of <i>Wrath</i> into a song with twelve verses. This was something Steinbeck took umbrage over. The combination of the songs and the perspective Arlo brings to them is a history lesson so interesting, you wish this was how it was taught in school. After an hour of enjoying the songs and tales of times long ago, Arlo and the band took a short break.\r\n\r\nComing back onstage the music catalog shifted to Arlo’s own. Now it wasn’t only Woody’s songs which were prefaced by a story. “Coming Into Los Angeles” began with a story of his late wife Jackie’s arrest for marijuana at the airport, after a long-forgotten gift to Arlo from a fan, was found in her bag.\r\n\r\nHe then talked about his early memories of Leadbelly in his home, and his search for Leadbelly’s grave somewhere in Louisiana. Leadbelly, who wrote among many others, “Midnight Special” and “Goodnight Irene,” was buried in Shreeveport, and they found the grave with guitar picks scattered over the tombstone. So he pulled out his guitar, sat there, and played some songs for the man he remembered as a two-year old. One of those songs “Alabama Bound,” was Arlo’s next selection.\r\n\r\nOne highlight of the evening was Steve Goodman’s “City Of New Orleans.” Lyrically, you can’t write much more of a poignant ballad. It is a testament to his songwriting that a song so moving is about a train. The story of how Arlo and Steve met is priceless, making his loss at such a young age, even more lamentable.\r\n\r\nRelating of how he first laid eyes on his future wife and singing “Highway In The Wind,” which he wrote for her, must be more than a little bittersweet, a little over a year since the death of the woman to whom he was married for forty-three years.\r\n\r\nGetting close to the end of the show, Arlo pulled out arguable Woody’s most recognizable song, “This Land Is Your Land.” As we approach the Thanksgiving holiday, the imagery of the words was not lost on the audience. Considering there is not another song which embodies the greatness of this country more than this, it is a song that should be taught in every school in this country.\r\n\r\nOf course since we are so close to Thanksgiving, you can be sure there wasn’t a person in the crowd who wasn’t hoping to hear the familiar first few notes of “Alice’s Restaurant.” Arlo did not disappoint. As he began to play, the audience sang along to the beginning chorus. At this point Arlo said “You don’t think I’m really going to sing this whole freakin’ song do you?” And no, I don’t think we really did, and just that one chorus, while a tease, was enough of a taste to keep a smile on everyone’s face. He strummed the melody, while talking about what the song has meant to him and his family over the years… the good and the not so good.\r\n\r\nAs all of our storytellers get older, the danger of losing important parts of our past, grows. Arlo Guthrie not only lived some of the stories first-hand, he grew up surrounded by legends with their own stories to tell. Never miss a chance to hear them because you’ll never forget them once you do. And that keeps them alive.\r\n\r\nThis evening with Arlo Guthrie pickin’, singin’ and tellin’ stories was one of the most enjoyable nights I’ve ever spent in a music hall. It was an honor to hear him speak of his father, and all those who came before. And hopefully by writing about it, the stories keep going just a little longer.\r\n\r\n \r\n\r\n ','','','inherit','open','open','','1303-revision-v1','','','2013-11-22 16:47:48','2013-11-22 22:47:48','',1303,'http://www.earthhertzrecords.com/2013/11/1303-revision-v1/',0,'revision','',0),(837,1,'2013-10-13 17:09:11','2013-10-13 17:09:11','<span style=\"font-size: 16px;\">\r\n<strong>Contact Earth Hertz Records</strong>\r\n<span style=\"font-size: 12px;\">Nashville, TN</span>\r\n<span style=\"font-size: 12px;\">(615) 824-8649</span>\r\n</span>\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>Eloa Xeno </strong>\r\nCFO and Director of Art\r\n<a href=\"mailto:exeno@earthhertz.com\">exeno@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\nNew Media Coordinator and Director of Artist Promotions\r\n<a href=\"mailto:kgalasso@earthhertz.com\">kgalasso@earthhertz.com</a>\r\n\r\n<strong>Christophe Parks </strong>\r\nProducer\r\n<a href=\"mailto:kgalasso@earthhertz.com\">cparks@earthhertz.com</a>\r\n\r\n<strong>Joshua Ayers</strong>\r\nProducer\r\n<a href=\"mailto:kgalasso@earthhertz.com\">jayers@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-10-13 17:09:11','2013-10-13 17:09:11','',23,'http://www.earthhertzrecords.com/2013/10/13/23-revision-v1/',0,'revision','',0),(839,1,'2013-10-13 17:14:13','2013-10-13 17:14:13','[caption id=\"attachment_840\" align=\"alignnone\" width=\"960\"]<a href=\"http://www.earthhertzrecords.com/artists/radartower/\"><img class=\" wp-image-840 \" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" /></a> Matt Guertin\'s radarTower. Awesome young gun from Minneapolis![/caption]','','','private','open','open','','radartower-2','','','2014-04-14 11:12:46','2014-04-14 17:12:46','',0,'http://www.earthhertzrecords.com/?p=839',0,'post','',0),(840,1,'2013-10-13 17:13:43','2013-10-13 17:13:43','','','','inherit','open','open','','slide_019a_en','','','2013-10-13 17:13:43','2013-10-13 17:13:43','',839,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png',0,'attachment','image/png',0),(841,1,'2013-10-13 17:14:13','2013-10-13 17:14:13','<img class=\"alignnone size-full wp-image-840\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" />','radarTower','','inherit','open','open','','839-revision-v1','','','2013-10-13 17:14:13','2013-10-13 17:14:13','',839,'http://www.earthhertzrecords.com/2013/10/13/839-revision-v1/',0,'revision','',0),(1430,2,'2013-12-26 20:36:57','2013-12-27 02:36:57','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/werq.jpg\"><img class=\"alignright size-full wp-image-1432\" alt=\"werq\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/werq.jpg\" width=\"300\" height=\"300\" /></a>Ever since she recorded her debut album with Prince and opened for him on his <em>Diamonds and Pearls Tour</em>, it’s been a burning passion for <a href=\"http://www.carmenelectra.com/\">Carmen Electra</a> to get back up on stage and perform in front of an audience.\r\n\r\nLate in 2012, the former Singled Out, Baywatch beauty officially made her return to music with her infectious single “I Like It Loud”; a track that quickly hit the Top 25 on Billboard’s Dance Club Play Chart.\r\n\r\nAs the follow-up to \"I Like It Loud\" Electra’s back with her new single, \"Werq.\" Produced by Eddie Amador, it’s a fun, positive dance track that basically delivers on what it promises: Own what you’ve got… Know your worth … Make it hot.. Make it Werq.\r\n\r\nElectra’s also making plans for a full-length album to coincide with US Tour in 2014. I spoke with her about the new single and more.\r\n\r\n<strong>James Wood: Was the success of your single “I Like It Loud” what sparked your return to music?</strong>\r\n\r\nCarmen Electra: Ever since I recorded my self-titled album with Prince it’s been a passion of mine. That experience alone and then getting to go on tour with him was surreal. A lot of people probably don’t know this, but my original intention for moving to Los Angeles was to pursue music. For some reason though, it wasn’t meant to be at that time. I was going on auditions and getting offers for movies and TV shows and started modeling. That took off, but during this entire time [on and off again] I’ve also been working on music.<em>\r\n</em>\r\n\r\n<strong>What satisfies you the most about the creative process?</strong>\r\n\r\nThe thing I love most is that I’m able to do whatever I want. With music, I’m not playing a role. It’s my project and it allows me more freedom to just be myself.\r\n\r\n<strong>How did the new single, \"Werq\" come about?</strong>\r\n\r\nOrlando [Puerta] from Citrusonic actually worked with me on the record I did with Prince back when he worked at Warner Brothers. He has his own label now and it was through mutual friends that we connected again. He sent over the music track and I just loved the beat and the way it automatically made me want to dance. It really stood out and I could visually see how it would fit into the show that we’re putting together.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/carmen.jpg\"><img class=\"alignleft size-medium wp-image-1433\" alt=\"carmen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/carmen-252x300.jpg\" width=\"252\" height=\"300\" /></a>What can you tell me about your songwriting process?</strong>\r\n\r\nI love music that makes me want to dance, but I’m not always in the “dance” or “party” mood, so sometimes we’ll go in and start experimenting. We’ve actually just finished recording a song that’s completely different from anything I’ve done yet. It’s all a learning process.\r\n\r\n<strong>What other projects have you been working on?</strong>\r\n\r\nI just finished my 2014 calendar for TF Publishing and am also working on a lingerie line. It’s a lot of work, but I love the challenge.\r\n\r\n<em> </em><strong>Did you ever feel pressure or a need to compete when following Jenny McCarthy [Singled Out] or Pam Anderson [Baywatch]?</strong>\r\n\r\nAbsolutely. In one way, it was a huge accomplishment to be the replacement for Jenny and Pam. But on the other hand, there was always that sense of wanting to live up to what they’ve already done. I was so inspired by both of them so there was some pressure, but I tried to not let it take away from the experience. With ‘Singled Out’, it was especially memorable because my whole life literally changed in one day. I get the call and BAM! It was a new life. It was the same way with Baywatch. Both were important times in my life and career.\r\n\r\n<strong>Do you ever foresee yourself getting more involved in the producing and directing side of things?</strong>\r\n\r\nAt some point I’d love to make the transition. I’ve seen and done a lot, so I think there will be a time where I’ll feel ready to get on the other side of things. But for now, I’m just loving what I do because it’s very fulfilling.\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Carmen Electra is Making it Werq','','publish','open','open','','carmen-electra-is-making-it-werq','','','2013-12-26 20:36:57','2013-12-27 02:36:57','',0,'http://www.earthhertzrecords.com/?p=1430',0,'post','',0),(848,1,'2013-10-13 17:28:33','2013-10-13 17:28:33','<img class=\" wp-image-840\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" />','radarTower','','inherit','open','open','','839-revision-v1','','','2013-10-13 17:28:33','2013-10-13 17:28:33','',839,'http://www.earthhertzrecords.com/2013/10/13/839-revision-v1/',0,'revision','',0),(851,1,'2013-10-13 17:36:58','2013-10-13 17:36:58','<img class=\" wp-image-840 height: 190;\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" />','radarTower','','inherit','open','open','','839-revision-v1','','','2013-10-13 17:36:58','2013-10-13 17:36:58','',839,'http://www.earthhertzrecords.com/2013/10/13/839-revision-v1/',0,'revision','',0),(849,1,'2013-10-13 17:35:35','2013-10-13 17:35:35','[caption id=\"attachment_840\" align=\"alignnone\" width=\"960\"]<img class=\" wp-image-840\" title=\"&nbsp;\" alt=\"&nbsp;\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" /> [/caption]','radarTower','','inherit','open','open','','839-revision-v1','','','2013-10-13 17:35:35','2013-10-13 17:35:35','',839,'http://www.earthhertzrecords.com/2013/10/13/839-revision-v1/',0,'revision','',0),(850,1,'2013-10-13 17:36:42','2013-10-13 17:36:42','<img class=\" wp-image-840\" title=\"&nbsp;\" alt=\"&nbsp;\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" />','radarTower','','inherit','open','open','','839-autosave-v1','','','2013-10-13 17:36:42','2013-10-13 17:36:42','',839,'http://www.earthhertzrecords.com/2013/10/13/839-autosave-v1/',0,'revision','',0),(852,1,'2013-10-13 17:37:37','2013-10-13 17:37:37','<img class=\" wp-image-840\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"190\" />','radarTower','','inherit','open','open','','839-revision-v1','','','2013-10-13 17:37:37','2013-10-13 17:37:37','',839,'http://www.earthhertzrecords.com/2013/10/13/839-revision-v1/',0,'revision','',0),(853,1,'2013-10-13 17:38:08','2013-10-13 17:38:08','<img class=\" wp-image-840\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" />','radarTower','','inherit','open','open','','839-revision-v1','','','2013-10-13 17:38:08','2013-10-13 17:38:08','',839,'http://www.earthhertzrecords.com/2013/10/13/839-revision-v1/',0,'revision','',0),(861,1,'2013-10-13 17:53:03','2013-10-13 17:53:03','<img class=\" wp-image-840\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" />','radarTower','','inherit','open','open','','839-revision-v1','','','2013-10-13 17:53:03','2013-10-13 17:53:03','',839,'http://www.earthhertzrecords.com/2013/10/13/839-revision-v1/',0,'revision','',0),(854,1,'2013-10-13 17:38:45','2013-10-13 17:38:45','<img class=\" wp-image-840\" style=\"margin-top: 10px; margin-bottom: 10px;\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" />','radarTower','','inherit','open','open','','839-revision-v1','','','2013-10-13 17:38:45','2013-10-13 17:38:45','',839,'http://www.earthhertzrecords.com/2013/10/13/839-revision-v1/',0,'revision','',0),(973,1,'2013-10-14 14:30:20','2013-10-14 14:30:20','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 14:30:20','2013-10-14 14:30:20','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(855,1,'2013-10-13 17:44:49','2013-10-13 17:44:49','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\n.imageReviewLink {\n border-width: 1px;\n text-align: center;\n height: 150px;\n width: 650px;\n}\n*/\n.nivo-html-caption {\n visibility: hidden;\n}\n\n/*\n.menu-item {\n max-width: 90px;\n max-height: 20px;\n padding-top: 0;\n padding-bottom: 0;\n padding-left: 0;\n padding-right: 0;\n overflow: hidden;\n word-spacing: 3px;\n font-size: 10px;\n}\n*/\n/*\n.menu-item-type-post_type {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n.menu-item-object-page {\n max-width: 50px;\n max-height: 10px;\n text-align: left;\n}\n\n*/','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-13 17:44:49','2013-10-13 17:44:49','',337,'http://www.earthhertzrecords.com/2013/10/13/337-revision-v1/',0,'revision','',0),(1431,2,'2013-12-26 19:45:02','2013-12-27 01:45:02','Ever since she recorded her debut album with Prince and opened for him on his Diamonds and Pearls Tour, it’s been a burning passion for <a href=\"http://www.carmenelectra.com/\">Carmen Electra</a> to get back up on stage and perform in front of an audience.\r\n\r\nLate in 2012, the former Singled Out, Baywatch beauty officially made her return to music with her infectious single “I Like It Loud”; a track that quickly hit the Top 25 on Billboard’s Dance Club Play Chart.\r\n\r\nAs the follow-up to ‘I Like It Loud’ Electra’s back with her new single, ‘Werq’. Produced by Eddie Amador, it’s a fun, positive dance track that basically delivers on what it promises: Own what you’ve got… Know your worth … Make it hot.. Make it Werq.\r\n\r\nElectra’s also making plans for a full-length album to coincide with US Tour in 2014. I spoke with her about the new single and more.\r\n\r\n<strong>James Wood: Was the success of your single “I Like It Loud” what sparked your return to music?</strong>\r\n\r\nCarmen Electra: Ever since I recorded my self-titled album with Prince it’s been a passion of mine. That experience alone and then getting to go on tour with him was surreal. A lot of people probably don’t know this, but my original intention for moving to Los Angeles was to pursue music. For some reason though, it wasn’t meant to be at that time. I was going on auditions and getting offers for movies and TV shows and started modeling. That took off, but during this entire time [on and off again] I’ve also been working on music.<em>\r\n</em>\r\n\r\n<strong>What satisfies you the most about the creative process?</strong>\r\n\r\nThe thing I love most is that I’m able to do whatever I want. With music, I’m not playing a role. It’s my project and it allows me more freedom to just be myself.\r\n\r\n<strong>How did the new single, ‘Werq’ come about?</strong>\r\n\r\nOrlando [Puerta] from Citrusonic actually worked with me on the record I did with Prince back when he worked at Warner Brothers. He has his own label now and it was through mutual friends that we connected again. He sent over the music track and I just loved the beat and the way it automatically made me want to dance. It really stood out and I could visually see how it would fit into the show that we’re putting together.\r\n\r\n<strong>What can you tell me about your songwriting process?</strong>\r\n\r\nI love music that makes me want to dance, but I’m not always in the “dance” or “party” mood, so sometimes we’ll go in and start experimenting. We’ve actually just finished recording a song that’s completely different from anything I’ve done yet. It’s all a learning process.\r\n\r\n<strong>What other projects have you been working on?</strong>\r\n\r\nI just finished my 2014 calendar for TF Publishing and am also working on a lingerie line. It’s a lot of work, but I love the challenge.\r\n\r\n<em> </em><strong>Did you ever feel pressure or a need to compete when following Jenny McCarthy [Singled Out] or Pam Anderson [Baywatch]?</strong>\r\n\r\nAbsolutely. In one way, it was a huge accomplishment to be the replacement for Jenny and Pam. But on the other hand, there was always that sense of wanting to live up to what they’ve already done. I was so inspired by both of them so there was some pressure, but I tried to not let it take away from the experience. With ‘Singled Out’, it was especially memorable because my whole life literally changed in one day. I get the call and BAM! It was a new life. It was the same way with Baywatch. Both were important times in my life and career.\r\n\r\n<strong>Do you ever foresee yourself getting more involved in the producing and directing side of things?</strong>\r\n\r\nAt some point I’d love to make the transition. I’ve seen and done a lot, so I think there will be a time where I’ll feel ready to get on the other side of things. But for now, I’m just loving what I do because it’s very fulfilling.','Carmen Electra is Making it Werq','','inherit','open','open','','1430-revision-v1','','','2013-12-26 19:45:02','2013-12-27 01:45:02','',1430,'http://www.earthhertzrecords.com/2013/12/1430-revision-v1/',0,'revision','',0),(862,1,'2013-10-13 17:55:40','2013-10-13 17:55:40','<img class=\" wp-image-840\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" />','','','inherit','open','open','','839-revision-v1','','','2013-10-13 17:55:40','2013-10-13 17:55:40','',839,'http://www.earthhertzrecords.com/2013/10/13/839-revision-v1/',0,'revision','',0),(1719,1,'2014-04-29 10:34:05','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-04-29 10:34:05','0000-00-00 00:00:00','',0,'http://www.earthhertzrecords.com/?p=1719',0,'post','',0),(1720,2,'2014-04-29 10:35:12','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-04-29 10:35:12','0000-00-00 00:00:00','',0,'http://www.earthhertzrecords.com/?p=1720',0,'post','',0),(1721,2,'2014-04-29 10:35:45','2014-04-29 16:35:45','So imagine you’ve just watched a music video and your jaw has dropped. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of a day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3.jpg\"><img class=\"alignright size-medium wp-image-1704\" alt=\"mikemasse3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3-300x240.jpg\" width=\"300\" height=\"240\" /></a>\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Shortly before his first birthday, Mike Masse\'s son Noah was diagnosed with brain cancer. Let that set in just a moment. <em>Before his first birthday</em>. During the time of Noah\'s illness, Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nAfter taking time to deal with his family situation, Mike has returned to playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\"><img class=\"alignleft size-full wp-image-1705\" alt=\"bookmikeimg\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\" width=\"141\" height=\"122\" /></a>\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michele who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michele) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow, and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4.jpg\"><img class=\"alignleft size-medium wp-image-1707\" alt=\"mikemasse-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4-300x198.jpg\" width=\"300\" height=\"198\" /></a>\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking with you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story between this, the fact that you’re a lawyer, and then I read about Noah.\r\n</b>\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we needed to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances. I was sitting there thinking I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted.\r\n\r\nSo I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\n<iframe src=\"//www.youtube.com/embed/-YAu-sGIpwQ\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard this was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Goudreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Goudreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5.jpg\"><img class=\"alignright size-medium wp-image-1712\" alt=\"mikemasse-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5-300x200.jpg\" width=\"300\" height=\"200\" /></a>\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry (\"How do you ask a man to be the last man to die for a mistake?\"), and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was.\r\n\r\n<iframe src=\"//www.youtube.com/embed/R3nDuVMey20\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nIt was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<a href=\"http://www.mikemasse.com/\">Mike Masse Website</a>\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-29 10:35:45','2014-04-29 16:35:45','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0),(867,1,'2013-10-13 18:05:56','2013-10-13 18:05:56','[caption id=\"attachment_869\" align=\"alignnone\" width=\"960\"]<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\" wp-image-869\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_004a_en.png\" width=\"960\" height=\"210\" /></a> Applegate Nance, new music from Nashville. Not so country at all.....[/caption]','','','publish','open','open','','867','','','2014-03-28 11:53:12','2014-03-28 17:53:12','',0,'http://www.earthhertzrecords.com/?p=867',0,'post','',0),(868,1,'2013-10-13 18:03:05','2013-10-13 18:03:05','','','','inherit','open','open','','slide_002b_en','','','2013-10-13 18:03:05','2013-10-13 18:03:05','',867,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_002b_en.png',0,'attachment','image/png',0),(869,1,'2013-10-13 18:03:35','2013-10-13 18:03:35','','','','inherit','open','open','','slide_004a_en','','','2013-10-13 18:03:35','2013-10-13 18:03:35','',867,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_004a_en.png',0,'attachment','image/png',0),(870,1,'2013-10-13 18:03:39','2013-10-13 18:03:39','','','','inherit','open','open','','slide_020sv_en','','','2013-10-13 18:03:39','2013-10-13 18:03:39','',867,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_020sv_en.png',0,'attachment','image/png',0),(871,1,'2013-10-13 18:05:56','2013-10-13 18:05:56','<img class=\"alignnone size-full wp-image-869\" alt=\"slide_004a_en\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_004a_en.png\" width=\"960\" height=\"210\" />','','','inherit','open','open','','867-revision-v1','','','2013-10-13 18:05:56','2013-10-13 18:05:56','',867,'http://www.earthhertzrecords.com/2013/10/13/867-revision-v1/',0,'revision','',0),(872,1,'2013-10-13 18:06:34','2013-10-13 18:06:34','[caption id=\"attachment_1670\" align=\"alignnone\" width=\"1016\"]<img class=\" wp-image-1670\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HMslider1.png\" width=\"1016\" height=\"233\" /> Hannah Mae is making music in the woods of Kentucky and we are getting it out there![/caption]','','','publish','open','open','','872','','','2014-03-28 15:19:21','2014-03-28 21:19:21','',0,'http://www.earthhertzrecords.com/?p=872',0,'post','',0),(1669,1,'2014-03-28 14:34:03','2014-03-28 20:34:03','[caption id=\"attachment_1667\" align=\"alignnone\" width=\"1016\"]<img class=\" wp-image-1667\" alt=\"HMslider\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HMslider.png\" width=\"1016\" height=\"233\" /> Hannah Mae is making music in the woods of Kentucky and we are getting it out there![/caption]','','','inherit','open','open','','872-revision-v1','','','2014-03-28 14:34:03','2014-03-28 20:34:03','',872,'http://www.earthhertzrecords.com/2014/03/872-revision-v1/',0,'revision','',0),(873,1,'2013-10-13 18:06:34','2013-10-13 18:06:34','<img class=\"alignnone size-full wp-image-870\" alt=\"slide_020sv_en\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_020sv_en.png\" width=\"960\" height=\"210\" />','','','inherit','open','open','','872-revision-v1','','','2013-10-13 18:06:34','2013-10-13 18:06:34','',872,'http://www.earthhertzrecords.com/2013/10/13/872-revision-v1/',0,'revision','',0),(876,1,'2013-10-13 18:14:58','2013-10-13 18:14:58','','','','inherit','open','open','','slide_0170sv_en','','','2013-10-13 18:14:58','2013-10-13 18:14:58','',877,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_0170sv_en.png',0,'attachment','image/png',0),(877,1,'2013-10-13 18:17:39','2013-10-13 18:17:39','[caption id=\"attachment_1663\" align=\"alignnone\" width=\"960\"]<img class=\" wp-image-1663 \" alt=\"JoshAyers\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers.png\" width=\"960\" height=\"210\" /> Joshua Ayers is an Earth Hertz producer. Watch for many more projects from this talented artist![/caption]\r\n\r\n ','','','publish','open','open','','877','','','2014-03-28 15:21:01','2014-03-28 21:21:01','',0,'http://www.earthhertzrecords.com/?p=877',0,'post','',0),(1665,1,'2014-03-28 14:28:53','2014-03-28 20:28:53','[caption id=\"attachment_1663\" align=\"alignnone\" width=\"960\"]<img class=\" wp-image-1663\" alt=\"JoshAyers\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers.png\" width=\"960\" height=\"210\" /> Joshua Ayers is an Earth Hertz producer. Watch for many more projects from this talented artist![/caption]\r\n\r\n ','','','inherit','open','open','','877-revision-v1','','','2014-03-28 14:28:53','2014-03-28 20:28:53','',877,'http://www.earthhertzrecords.com/2014/03/877-revision-v1/',0,'revision','',0),(878,1,'2013-10-13 18:17:39','2013-10-13 18:17:39','<img class=\"alignnone size-full wp-image-876\" alt=\"slide_0170sv_en\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_0170sv_en.png\" width=\"960\" height=\"210\" />','','','inherit','open','open','','877-revision-v1','','','2013-10-13 18:17:39','2013-10-13 18:17:39','',877,'http://www.earthhertzrecords.com/2013/10/13/877-revision-v1/',0,'revision','',0),(879,1,'2013-10-13 18:23:27','2013-10-13 18:23:27','','AN 200','','inherit','open','open','','an_200','','','2013-10-13 18:23:27','2013-10-13 18:23:27','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/AN_200.jpg',0,'attachment','image/jpeg',0),(880,1,'2013-10-13 18:32:44','2013-10-13 18:32:44','','AN_200','','inherit','open','open','','an_200-2','','','2013-10-13 18:32:44','2013-10-13 18:32:44','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/AN_2001.jpg',0,'attachment','image/jpeg',0),(881,1,'2013-10-13 18:37:04','2013-10-13 18:37:04','11','AN_200','11','inherit','open','open','','an_200-3','','','2013-10-13 18:37:04','2013-10-13 18:37:04','',1637,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/AN_2002.jpg',0,'attachment','image/jpeg',0),(1261,2,'2013-11-15 03:00:56','2013-11-15 03:00:56','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/JayBennett1-500x446.jpg\"><img class=\"aligncenter size-full wp-image-1260\" alt=\"JayBennett1-500x446\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/JayBennett1-500x446.jpg\" width=\"500\" height=\"446\" /></a>For those of you who are not familiar with Sam Jones’ 2001 documentary on Wilco, <em>I Am Trying to Break Your Heart</em>, rent it tonight. You will not be disappointed. The film offers a candid view of one of America’s greatest rock bands.\r\n\r\nJones’ film chronicles the band who were in the process of recording a landmark album, <em>Yankee Hotel Foxtrot</em>, when their record company (Reprise) dropped them. Amid the business turmoil, the group’s leader, Jeff Tweedy, who was battling severe migraines at the time, fired band member and producer Jay Bennett. For many of us, it was the last time we ever heard from Bennett.\r\n\r\nAfter his dismissal from Wilco, Jay Bennett embarked on a solo career (releasing five records, one posthumously) that paled in comparison to Wilco’s commercial and critical acclaim.\r\n\r\nBennett was a talented musician, skillful producer and session musician who worked with numerous artists: Garrison Starr, Adam Schmitt, Billy Joe Shaver, Blues Traveler, Allison Moorer, Jellyfish, Sherry Rich, Tim Easton,Tommy Keene, Jeff Black and Sheryl Crow. But what will he be best remembered for?\r\n\r\nA troubled artist? A tortured soul? A frustrated musician and producer who was desperately clinging to a career that was slipping away?\r\n\r\nI’m afraid that it might be all three.\r\n\r\nIn 1995, Bennett joined Wilco for their sophomore effort, <em>Being There. </em>His contributions elevated Tweedy’s alt-country group into new musical terrain. It is somewhat reminiscent of mid-period Beatles, moving forward from <em>Help</em> to <em>Rubber Soul</em>.\r\n\r\nWhen the band released its third studio album, <em>Summerteeth, </em>they continued to experiment, progressing both sonically and musically, such as The Beatles did with <em>Rubber Soul’s </em>successor,<em> Revolver</em>. Wilco sounded like a completely different band from its debut record, 1995′s <em>A.M.</em> <a href=\"http://www.spin.com/blog/what-jay-bennetts-death-made-me-realize-about-wilco/\">Ellen Carpenter</a> of <em>Spin</em> wrote about <em>Summerteeth</em>, “The songs were fuller, warmer, the standard guitar-and-drums set-up of <em>A.M.</em> had been supplemented by a lush psychedelic impressionism that was largely a product of Bennett’s masterful work with farfisa organ, bells, Moog, lap steel guitar, banjo, synthesizer, and other instrumental exotica.”\r\n\r\nWith Wilco’s magnum opus, <em>Yankee Hotel Foxtrot,</em> the album that anointed Wilco as one of the greatest bands of its generation, Jay Bennett’s contributions were enormous, co-writing eight of the eleven songs and producing much of the record himself.\r\n\r\nSince Bennett’s firing, Wilco has released four distinguished records – <em>A Ghost is Born</em> (2004) being the most compelling – but none of them have had the personality, the daring, the audacity and powerfully evocative sounds of the three records Jay Bennett worked on.\r\n\r\n<strong>Article by Richard Fulco.</strong>','Remembering Jay Bennett','','inherit','open','open','','1259-revision-v1','','','2013-11-15 03:00:56','2013-11-15 03:00:56','',1259,'http://www.earthhertzrecords.com/2013/11/1259-revision-v1/',0,'revision','',0),(1262,2,'2013-11-15 03:02:45','2013-11-15 03:02:45','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/JayBennett1-500x446.jpg\"><img class=\"aligncenter size-full wp-image-1260\" alt=\"JayBennett1-500x446\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/JayBennett1-500x446.jpg\" width=\"500\" height=\"446\" /></a>For those of you who are not familiar with Sam Jones’ 2001 documentary on Wilco, <em>I Am Trying to Break Your Heart</em>, rent it tonight. You will not be disappointed. The film offers a candid view of one of America’s greatest rock bands.\r\n\r\nJones’ film chronicles the band who were in the process of recording a landmark album, <em>Yankee Hotel Foxtrot</em>, when their record company (Reprise) dropped them. Amid the business turmoil, the group’s leader, Jeff Tweedy, who was battling severe migraines at the time, fired band member and producer Jay Bennett. For many of us, it was the last time we ever heard from Bennett.\r\n\r\nAfter his dismissal from Wilco, Jay Bennett embarked on a solo career (releasing five records, one posthumously) that paled in comparison to Wilco’s commercial and critical acclaim.\r\n\r\nBennett was a talented musician, skillful producer and session musician who worked with numerous artists: Garrison Starr, Adam Schmitt, Billy Joe Shaver, Blues Traveler, Allison Moorer, Jellyfish, Sherry Rich, Tim Easton,Tommy Keene, Jeff Black and Sheryl Crow. But what will he be best remembered for?\r\n\r\nA troubled artist? A tortured soul? A frustrated musician and producer who was desperately clinging to a career that was slipping away?\r\n\r\nI’m afraid that it might be all three.\r\n\r\nIn 1995, Bennett joined Wilco for their sophomore effort, <em>Being There. </em>His contributions elevated Tweedy’s alt-country group into new musical terrain. It is somewhat reminiscent of mid-period Beatles, moving forward from <em>Help</em> to <em>Rubber Soul</em>.\r\n\r\nWhen the band released its third studio album, <em>Summerteeth, </em>they continued to experiment, progressing both sonically and musically, such as The Beatles did with <em>Rubber Soul’s </em>successor,<em> Revolver</em>. Wilco sounded like a completely different band from its debut record, 1995′s <em>A.M.</em> <a href=\"http://www.spin.com/blog/what-jay-bennetts-death-made-me-realize-about-wilco/\">Ellen Carpenter</a> of <em>Spin</em> wrote about <em>Summerteeth</em>, “The songs were fuller, warmer, the standard guitar-and-drums set-up of <em>A.M.</em> had been supplemented by a lush psychedelic impressionism that was largely a product of Bennett’s masterful work with farfisa organ, bells, Moog, lap steel guitar, banjo, synthesizer, and other instrumental exotica.”\r\n\r\nWith Wilco’s magnum opus, <em>Yankee Hotel Foxtrot,</em> the album that anointed Wilco as one of the greatest bands of its generation, Jay Bennett’s contributions were enormous, co-writing eight of the eleven songs and producing much of the record himself.\r\n\r\nSince Bennett’s firing, Wilco has released four distinguished records – <em>A Ghost is Born</em> (2004) being the most compelling – but none of them have had the personality, the daring, the audacity and powerfully evocative sounds of the three records Jay Bennett worked on.\r\n\r\n<strong>Post by Richard Fulco.</strong>','Remembering Jay Bennett','','inherit','open','open','','1259-revision-v1','','','2013-11-15 03:02:45','2013-11-15 03:02:45','',1259,'http://www.earthhertzrecords.com/2013/11/1259-revision-v1/',0,'revision','',0),(887,1,'2013-10-13 18:53:08','2013-10-13 18:53:08','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\nMP3 </strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-13 18:53:08','2013-10-13 18:53:08','',738,'http://www.earthhertzrecords.com/2013/10/13/738-revision-v1/',0,'revision','',0),(889,1,'2013-10-13 18:54:47','2013-10-13 18:54:47','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\nMP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-13 18:54:47','2013-10-13 18:54:47','',738,'http://www.earthhertzrecords.com/2013/10/13/738-revision-v1/',0,'revision','',0),(888,1,'2013-10-13 18:54:12','2013-10-13 18:54:12','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\nMP3\r\n</strong>\r\n\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\" style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets//images/web/linkmaker/badge_itunes-sm.png) no-repeat;width:45px;height:15px;@media only screen{background-image:url(<a href=\"https://linkmaker.itunes.apple.com/htmlResources/assets/images/web/linkmaker/badge_itunes-sm.svg);%7d%22%3e%3c/a\">https://linkmaker.itunes.apple.com/htmlResources/assets//images/web/linkmaker/badge_itunes-sm.svg);}\"></a</a>>\r\n\r\n<strong></strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-13 18:54:12','2013-10-13 18:54:12','',738,'http://www.earthhertzrecords.com/2013/10/13/738-revision-v1/',0,'revision','',0),(891,1,'2013-10-13 19:01:29','2013-10-13 19:01:29','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n</strong>\r\n\r\n<strong> MP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-13 19:01:29','2013-10-13 19:01:29','',738,'http://www.earthhertzrecords.com/2013/10/13/738-revision-v1/',0,'revision','',0),(890,1,'2013-10-13 19:00:57','2013-10-13 19:00:57','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n</strong><a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\">Buy on iTunes</a>\r\n\r\n<strong> MP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-13 19:00:57','2013-10-13 19:00:57','',738,'http://www.earthhertzrecords.com/2013/10/13/738-revision-v1/',0,'revision','',0),(892,1,'2013-10-13 19:01:50','2013-10-13 19:01:50','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny</strong>\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\">Buy on iTunes</a>\r\n<strong> MP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-13 19:01:50','2013-10-13 19:01:50','',738,'http://www.earthhertzrecords.com/2013/10/13/738-revision-v1/',0,'revision','',0),(893,1,'2013-10-13 19:02:49','2013-10-13 19:02:49','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny</strong>\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\">Buy on iTunes</a>\r\n\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\" style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets//images/web/linkmaker/badge_itunes-sm.png) no-repeat;width:45px;height:15px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets//images/web/linkmaker/badge_itunes-sm.svg);}\"></a>\r\n<strong> MP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-13 19:02:49','2013-10-13 19:02:49','',738,'http://www.earthhertzrecords.com/2013/10/13/738-revision-v1/',0,'revision','',0),(895,1,'2013-10-13 19:05:45','2013-10-13 19:05:45','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\n</strong>\r\n<strong> MP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-13 19:05:45','2013-10-13 19:05:45','',738,'http://www.earthhertzrecords.com/2013/10/13/738-revision-v1/',0,'revision','',0),(894,1,'2013-10-13 19:03:26','2013-10-13 19:03:26','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny</strong>\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\">Buy on iTunes</a>\r\n\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\" style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets//images/web/linkmaker/badge_itunes-sm.png) no-repeat;width:45px;height:15px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets//images/web/linkmaker/badge_itunes-sm.svg);}\"></a>\r\n\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\n<strong> MP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-13 19:03:26','2013-10-13 19:03:26','',738,'http://www.earthhertzrecords.com/2013/10/13/738-revision-v1/',0,'revision','',0),(896,1,'2013-10-13 19:06:52','2013-10-13 19:06:52','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-13 19:06:52','2013-10-13 19:06:52','',738,'http://www.earthhertzrecords.com/2013/10/13/738-revision-v1/',0,'revision','',0),(897,1,'2013-10-13 19:08:09','2013-10-13 19:08:09','<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','831-revision-v1','','','2013-10-13 19:08:09','2013-10-13 19:08:09','',831,'http://www.earthhertzrecords.com/2013/10/13/831-revision-v1/',0,'revision','',0),(898,1,'2013-10-13 19:09:17','2013-10-13 19:09:17','https://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance <a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>','','inherit','open','open','','722-revision-v1','','','2013-10-13 19:09:17','2013-10-13 19:09:17','',722,'http://www.earthhertzrecords.com/2013/10/13/722-revision-v1/',0,'revision','',0),(899,1,'2013-10-13 19:09:56','2013-10-13 19:09:56','https://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance <a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\" style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets//images/web/linkmaker/badge_itunes-sm.png) no-repeat;width:45px;height:15px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets//images/web/linkmaker/badge_itunes-sm.svg);}\"></a>','','inherit','open','open','','722-revision-v1','','','2013-10-13 19:09:56','2013-10-13 19:09:56','',722,'http://www.earthhertzrecords.com/2013/10/13/722-revision-v1/',0,'revision','',0),(900,1,'2013-10-13 19:10:56','2013-10-13 19:10:56','<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\" style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets//images/web/linkmaker/badge_itunes-sm.png) no-repeat;width:45px;height:15px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets//images/web/linkmaker/badge_itunes-sm.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','831-revision-v1','','','2013-10-13 19:10:56','2013-10-13 19:10:56','',831,'http://www.earthhertzrecords.com/2013/10/13/831-revision-v1/',0,'revision','',0),(901,1,'2013-10-13 19:11:50','2013-10-13 19:11:50','<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','831-revision-v1','','','2013-10-13 19:11:50','2013-10-13 19:11:50','',831,'http://www.earthhertzrecords.com/2013/10/13/831-revision-v1/',0,'revision','',0),(902,1,'2013-10-13 19:12:15','2013-10-13 19:12:15','<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk','Applegate Nance','','inherit','open','open','','722-revision-v1','','','2013-10-13 19:12:15','2013-10-13 19:12:15','',722,'http://www.earthhertzrecords.com/2013/10/13/722-revision-v1/',0,'revision','',0),(903,1,'2013-10-13 19:16:11','2013-10-13 19:16:11','<a href=\"https://itunes.apple.com/us/album/dreams/id694336061?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\nDreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\nWhispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\nClouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\nGame Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\nHorizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\nSpirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\nWillow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\nPensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\nDim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\nLove\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\nNaivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\nStorms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\nDim Light Reprise','Glen Spreen','','inherit','open','open','','790-revision-v1','','','2013-10-13 19:16:11','2013-10-13 19:16:11','',790,'http://www.earthhertzrecords.com/2013/10/13/790-revision-v1/',0,'revision','',0),(904,1,'2013-10-13 19:16:53','2013-10-13 19:16:53','[caption id=\"attachment_579\" align=\"alignright\" width=\"224\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me.jpg\"><img class=\"size-medium wp-image-579\" alt=\"Glen with Wayne Jackson(r) of the Memphis Horns\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me-224x300.jpg\" width=\"224\" height=\"300\" /></a> Glen with Wayne Jackson(r) of the Memphis Horns[/caption]\r\n\r\nMusic has always been a major force in the life of <strong>Glen Spreen</strong>. Music was the reason he left his hometown of Houston, Texas, and it was also the reason he moved to Memphis, Nashville, Atlanta, Europe and California. Even after he retired from a successful career in the music business, he built a recording studio in his home to create the music that played inside his heart.\r\n\r\n[caption id=\"attachment_580\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg\"><img class=\"size-thumbnail wp-image-580\" alt=\"With B.J. Thomas\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011-150x150.jpg\" width=\"150\" height=\"150\" /></a> With B.J. Thomas[/caption]\r\n\r\nThroughout his career in the music business, Glen’s arrangements were known for creating a mood within a song. Working alongside such music legends as Joan Baez, Dave Loggins, Dan Fogelberg, B.J. Thomas and Elvis Presley, Spreen not only arranged, but also wrote, produced and played on a vast music catalog, crossing over many music genres.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg\"><img class=\"alignright size-thumbnail wp-image-581\" alt=\"Glen Spreen-Dreams\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams-150x150.jpg\" width=\"150\" height=\"150\" /></a>In his first release for Earth Hertz Records, Glen Spreen has written, played all instrumentation, and produced an album where the moods are many, and the music is dynamic. <em>Dreams</em> is a instrumental journey through all the emotions your mind and heart can produce. From tension to elation, or serenity to adversity, <em>Dreams</em> uses tempo and melody as a way of passage from one emotion to the next.\r\n\r\n<strong>Dreams\r\n<a href=\"https://itunes.apple.com/us/album/dreams/id694336061?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\nDreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\nWhispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\nClouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\nGame Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\nHorizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\nSpirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\nWillow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\nPensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\nDim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\nLove\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\nNaivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\nStorms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\nDim Light Reprise\r\n\r\n<strong>Videos</strong>\r\n<iframe src=\"//www.youtube.com/embed/6OybAAXA0W0\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nDreams','Glen Spreen','','inherit','open','open','','747-revision-v1','','','2013-10-13 19:16:53','2013-10-13 19:16:53','',747,'http://www.earthhertzrecords.com/2013/10/13/747-revision-v1/',0,'revision','',0),(946,1,'2013-10-14 05:09:06','2013-10-14 05:09:06','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n<img class=\"alignnone wp-image-762\" alt=\"Mathias_RadarTowerAlbumCoverFinal\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Mathias_RadarTowerAlbumCoverFinal-300x300.jpg\" width=\"250\" height=\"250\" />Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"alignright size-medium wp-image-501\" alt=\"MattGuertin-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>The changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n<strong>Mathias Meets The World</strong>\r\n\r\nMP3s\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\nComplicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\nNeed To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\nIt\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\nMemories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\nFeelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\nHippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\nGimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\nBefore We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\nSheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\nTime Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\nNeed Someone\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nNeed Someone','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-14 05:09:06','2013-10-14 05:09:06','',246,'http://www.earthhertzrecords.com/2013/10/14/246-revision-v1/',0,'revision','',0),(945,1,'2013-10-14 05:07:56','2013-10-14 05:07:56','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/mathiasmeetstheworld.jpg\"><img class=\"alignleft wp-image-492\" alt=\"mathiasmeetstheworld\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/mathiasmeetstheworld-150x150.jpg\" width=\"250\" height=\"250\" /></a>Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"alignright size-medium wp-image-501\" alt=\"MattGuertin-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>The changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n<strong>Mathias Meets The World\r\n\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\nComplicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\nNeed To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\nIt\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\nMemories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\nFeelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\nHippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\nGimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\nBefore We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\nSheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\nTime Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\nNeed Someone\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nNeed Someone','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-14 05:07:56','2013-10-14 05:07:56','',246,'http://www.earthhertzrecords.com/2013/10/14/246-revision-v1/',0,'revision','',0),(905,1,'2013-10-13 19:19:29','2013-10-13 19:19:29','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/mathiasmeetstheworld.jpg\"><img class=\"alignleft size-thumbnail wp-image-492\" alt=\"mathiasmeetstheworld\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/mathiasmeetstheworld-150x150.jpg\" width=\"150\" height=\"150\" /></a>Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"alignright size-medium wp-image-501\" alt=\"MattGuertin-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>The changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n<strong>Mathias Meets The World\r\n<a href=\"https://itunes.apple.com/us/album/mathias-meets-the-world/id698212389?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\nComplicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\nNeed To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\nIt\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\nMemories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\nFeelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\nHippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\nGimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\nBefore We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\nSheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\nTime Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\nNeed Someone\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nNeed Someone','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-13 19:19:29','2013-10-13 19:19:29','',246,'http://www.earthhertzrecords.com/2013/10/13/246-revision-v1/',0,'revision','',0),(906,1,'2013-10-13 19:20:12','2013-10-13 19:20:12','<a href=\"https://itunes.apple.com/us/album/mathias-meets-the-world/id698212389?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\nComplicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\nNeed To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\nIt\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\nMemories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\nFeelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\nHippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\nGimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\nBefore We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\nSheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\nTime Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\nNeed Someone','radarTower','','inherit','open','open','','795-revision-v1','','','2013-10-13 19:20:12','2013-10-13 19:20:12','',795,'http://www.earthhertzrecords.com/2013/10/13/795-revision-v1/',0,'revision','',0),(907,1,'2013-10-13 19:22:18','2013-10-13 19:22:18','<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\nIn My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\nBounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\nMovin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\nMy Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\nWaiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\nToo Many\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\nA Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\nMemphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\nLittle Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\nI\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\nMagic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\nKnew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\nMaui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\nMy Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\nBounce Up And Down (Instrumental)','The Billy David Band','','inherit','open','open','','797-revision-v1','','','2013-10-13 19:22:18','2013-10-13 19:22:18','',797,'http://www.earthhertzrecords.com/2013/10/13/797-revision-v1/',0,'revision','',0),(908,1,'2013-10-13 19:23:06','2013-10-13 19:23:06','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Oklahoma, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\n<strong>Magic\r\n<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\nIn My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\nBounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\nMovin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\nMy Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\nWaiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\nToo Many\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\nA Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\nMemphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\nLittle Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\nI\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\nMagic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\nKnew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\nMaui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\nMy Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\nBounce Up And Down (Instrumental)\r\n\r\nVIDEOS\r\n<iframe src=\"//www.youtube.com/embed/YPfwQveHFNk\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nMagic\r\n<iframe src=\"//www.youtube.com/embed/i91x1hqkgas\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nA Loving Revolution','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-13 19:23:06','2013-10-13 19:23:06','',248,'http://www.earthhertzrecords.com/2013/10/13/248-revision-v1/',0,'revision','',0),(909,1,'2013-10-13 19:24:11','2013-10-13 19:24:11','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Oklahoma, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n<br />\r\n<strong>Magic\r\n<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\nIn My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\nBounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\nMovin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\nMy Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\nWaiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\nToo Many\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\nA Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\nMemphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\nLittle Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\nI\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\nMagic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\nKnew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\nMaui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\nMy Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\nBounce Up And Down (Instrumental)\r\n\r\nVIDEOS\r\n<iframe src=\"//www.youtube.com/embed/YPfwQveHFNk\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nMagic\r\n<iframe src=\"//www.youtube.com/embed/i91x1hqkgas\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nA Loving Revolution','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-13 19:24:11','2013-10-13 19:24:11','',248,'http://www.earthhertzrecords.com/2013/10/13/248-revision-v1/',0,'revision','',0),(911,1,'2013-10-13 19:25:32','2013-10-13 19:25:32','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Oklahoma, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\n \r\n\r\n<strong>Magic\r\n\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\nIn My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\nBounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\nMovin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\nMy Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\nWaiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\nToo Many\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\nA Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\nMemphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\nLittle Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\nI\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\nMagic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\nKnew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\nMaui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\nMy Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\nBounce Up And Down (Instrumental)\r\n\r\nVIDEOS\r\n<iframe src=\"//www.youtube.com/embed/YPfwQveHFNk\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nMagic\r\n<iframe src=\"//www.youtube.com/embed/i91x1hqkgas\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nA Loving Revolution','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-13 19:25:32','2013-10-13 19:25:32','',248,'http://www.earthhertzrecords.com/2013/10/13/248-revision-v1/',0,'revision','',0),(910,1,'2013-10-13 19:24:38','2013-10-13 19:24:38','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Oklahoma, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n<br /><br /><br />\r\n<strong>Magic\r\n<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\nIn My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\nBounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\nMovin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\nMy Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\nWaiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\nToo Many\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\nA Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\nMemphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\nLittle Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\nI\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\nMagic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\nKnew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\nMaui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\nMy Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\nBounce Up And Down (Instrumental)\r\n\r\nVIDEOS\r\n<iframe src=\"//www.youtube.com/embed/YPfwQveHFNk\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nMagic\r\n<iframe src=\"//www.youtube.com/embed/i91x1hqkgas\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nA Loving Revolution','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-13 19:24:38','2013-10-13 19:24:38','',248,'http://www.earthhertzrecords.com/2013/10/13/248-revision-v1/',0,'revision','',0),(912,1,'2013-10-13 19:25:58','2013-10-13 19:25:58','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Oklahoma, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\n \r\n\r\n<strong>Magic\r\n</strong><strong>Magic\r\n<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\nMP3s\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\nIn My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\nBounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\nMovin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\nMy Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\nWaiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\nToo Many\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\nA Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\nMemphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\nLittle Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\nI\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\nMagic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\nKnew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\nMaui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\nMy Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\nBounce Up And Down (Instrumental)\r\n\r\nVIDEOS\r\n<iframe src=\"//www.youtube.com/embed/YPfwQveHFNk\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nMagic\r\n<iframe src=\"//www.youtube.com/embed/i91x1hqkgas\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nA Loving Revolution','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-13 19:25:58','2013-10-13 19:25:58','',248,'http://www.earthhertzrecords.com/2013/10/13/248-revision-v1/',0,'revision','',0),(913,1,'2013-10-13 19:26:47','2013-10-13 19:26:47','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Oklahoma, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\n \r\n \r\n\r\n \r\n\r\n<strong>Magic\r\n<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\nIn My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\nBounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\nMovin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\nMy Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\nWaiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\nToo Many\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\nA Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\nMemphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\nLittle Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\nI\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\nMagic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\nKnew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\nMaui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\nMy Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\nBounce Up And Down (Instrumental)\r\n\r\nVIDEOS\r\n<iframe src=\"//www.youtube.com/embed/YPfwQveHFNk\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nMagic\r\n<iframe src=\"//www.youtube.com/embed/i91x1hqkgas\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nA Loving Revolution','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-13 19:26:47','2013-10-13 19:26:47','',248,'http://www.earthhertzrecords.com/2013/10/13/248-revision-v1/',0,'revision','',0),(914,1,'2013-10-13 19:28:45','2013-10-13 19:28:45','\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste.mp3\nWaste','Joshua Ayers','','inherit','open','open','','734-autosave-v1','','','2013-10-13 19:28:45','2013-10-13 19:28:45','',734,'http://www.earthhertzrecords.com/2013/10/13/734-autosave-v1/',0,'revision','',0),(915,1,'2013-10-13 19:29:38','2013-10-13 19:29:38','<a href=\"https://itunes.apple.com/us/album/waste/id705233256?i=705233300&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste.mp3\r\nWaste','Joshua Ayers','','inherit','open','open','','734-revision-v1','','','2013-10-13 19:29:38','2013-10-13 19:29:38','',734,'http://www.earthhertzrecords.com/2013/10/13/734-revision-v1/',0,'revision','',0),(916,1,'2013-10-13 19:30:33','2013-10-13 19:30:33','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\"><img class=\"alignright size-full wp-image-815\" alt=\"JoshAyers-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers-1.jpg\" width=\"178\" height=\"178\" /></a>Having an artist who fully understands the scope of the recording business is a great asset to a record company. <b>Joshua Ayers</b> not only is a talented multi-instrumentalist singer-songwriter, he is also a recording engineer with a keen ear for putting together the right sound.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200.jpg\"><img class=\"alignleft size-thumbnail wp-image-488\" alt=\"joshayers_200\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/joshayers_200-150x150.jpg\" width=\"150\" height=\"150\" /></a>Originally from South Carolina, Josh is now settled in the KnoxvilleTennessee area, after spending some time learning the music business in Nashville. His musical influences range from Tom Waits and Neil Young to Tori Amos. Along with the guitar, Josh plays piano, bass, drums, and is interested in leaning the violin.\r\n\r\nJosh’s first single released through Earth Hertz, is a fine example of both his writing and production techniques. “Waste” was originally written as a song challenge between friends, and is a dark, foreboding look at living a life filled with regret.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n.jpg\"><img class=\"alignright size-thumbnail wp-image-139\" alt=\"577670_595448180581_784630386_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/577670_595448180581_784630386_n-150x150.jpg\" width=\"150\" height=\"150\" /></a>Along with his musical career, Josh is also involved in the media business. He can be heard as the host of his own weekly radio program on WHAY 98.3, where he showcases new and independent artists.\r\n\r\nJosh Ayers is currently working on his first album release for Earth Hertz Records.\r\n\r\n<strong>Waste\r\n<a href=\"https://itunes.apple.com/us/album/waste/id705233256?i=705233300&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499270-QMU991100080-Waste.mp3\r\nWaste\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/jD8UD9dLGaU\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nWaste','Joshua Ayers','','inherit','open','open','','755-revision-v1','','','2013-10-13 19:30:33','2013-10-13 19:30:33','',755,'http://www.earthhertzrecords.com/2013/10/13/755-revision-v1/',0,'revision','',0),(917,1,'2013-10-13 19:32:09','2013-10-13 19:32:09','<a href=\"https://itunes.apple.com/us/album/guns-run-single/id705232705?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499300-QMU991100113.mp3','Hannah Mae','','inherit','open','open','','736-revision-v1','','','2013-10-13 19:32:09','2013-10-13 19:32:09','',736,'http://www.earthhertzrecords.com/2013/10/13/736-revision-v1/',0,'revision','',0),(918,1,'2013-10-13 19:33:26','2013-10-13 19:33:26','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah.jpg\"><img class=\"alignleft size-medium wp-image-482\" alt=\"hannah\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/hannah-300x200.jpg\" width=\"300\" height=\"200\" /></a>When performing, most artists strive to do their best. For most, it’s a matter of pride and self-worth. But somewhere back in the subconscious, a little voices pushes them to give it their all because you never know when your music will connect with some random stranger in the crowd.\r\n\r\nOne night <strong>Hannah Mae</strong> was onstage giving it her all, and one member of the crowd was moved enough by her performance to tell another person about her. In this case, that person was record producer Josh Ayers, and upon hearing her, he too was impressed with her talent. So much so, that he recorded Hannah, and brought her to Earth Hertz.\r\n\r\n<img class=\" wp-image-483 alignright\" alt=\"Picture 033\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Picture-033.jpg\" width=\"300\" height=\"225\" />Growing up in Kentucky with musically inclined parents, Hannah was surrounded by all genres of music. Piano lessons led the way for the beginning of her songwriting career. Choir was where her vocal skills were sharpened. Learning to play guitar was a natural progression for a busy songwriter; carrying a guitar and working on a melody is a lot more convenient than going home to the piano.\r\n\r\nHannah’s many musical influences are evident in her work. She comfortably slides through country, folk, blues, pop, and all their combinations. She writes of things in the present, and creates stories from long ago. Her first release from Earth Hertz “Guns And Run,” recalls life on the prairie in vivid and haunting imagery.\r\n\r\nIn addition to her musical talents, Hannah is also an artist. Instead of using notes and lyrics, she portrays her tales in paint.\r\n\r\nHannah is currently working on her first album release for Earth Hertz Records.\r\n\r\n<strong>Guns and Run\r\n<a href=\"https://itunes.apple.com/us/album/guns-run-single/id705232705?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499300-QMU991100113.mp3\r\nGuns and Run\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/yCuoOUG3iOc\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nGuns and Run','Hannah Mae','','inherit','open','open','','751-revision-v1','','','2013-10-13 19:33:26','2013-10-13 19:33:26','',751,'http://www.earthhertzrecords.com/2013/10/13/751-revision-v1/',0,'revision','',0),(919,1,'2013-10-13 19:35:32','2013-10-13 19:35:32','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\"><img class=\"alignleft size-full wp-image-585\" alt=\"meredytheandtherecyclekids\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/meredytheandtherecyclekids.jpg\" width=\"224\" height=\"224\" /></a>There are many interesting facts about Meredythe Dee Winter, but the most important ones are that she loves kids, and loves this planet. In fact, she has spent a good part of her life creating projects which help both. Through art, music and television, Meredythe has spread the world about taking care of the Earth, while finding a way of getting the youngest generations involved at the same time.\r\n\r\nThe Meredythe & The Recycle! Kids album <i>Let\'s Make Every Day Earth Day!</i> is a creative way of teaching children what it means to be a good citizen of Planet Earth. The songs are not only filled with meaningful lyrics, but the melodies are lively and lighthearted.\r\n\r\n<strong>Let\'s Make Every Day Eart Day!\r\n<a href=\"https://itunes.apple.com/us/album/lets-make-every-day-earth-day!/id566470853?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>','The Meredythe & The Recycle! Kids','','inherit','open','open','','759-revision-v1','','','2013-10-13 19:35:32','2013-10-13 19:35:32','',759,'http://www.earthhertzrecords.com/2013/10/13/759-revision-v1/',0,'revision','',0),(920,1,'2013-10-13 21:10:31','2013-10-13 21:10:31','','Earth Hertz Artists','','inherit','open','open','','slide_0000r_en','','','2013-10-13 21:10:31','2013-10-13 21:10:31','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_0000r_en.png',0,'attachment','image/png',0),(923,1,'2013-10-13 22:05:48','2013-10-13 22:05:48','<a href=\"http://www.earthhertzrecords.com/artists/755-2/\"><img class=\"alignnone wp-image-876\" alt=\"slide_0170sv_en\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_0170sv_en.png\" width=\"960\" height=\"210\" /></a>','','','inherit','open','open','','877-revision-v1','','','2013-10-13 22:05:48','2013-10-13 22:05:48','',877,'http://www.earthhertzrecords.com/2013/10/13/877-revision-v1/',0,'revision','',0),(1668,1,'2014-03-28 15:18:47','2014-03-28 21:18:47','','','','inherit','open','open','','872-autosave-v1','','','2014-03-28 15:18:47','2014-03-28 21:18:47','',872,'http://www.earthhertzrecords.com/2014/03/872-autosave-v1/',0,'revision','',0),(925,1,'2013-10-13 22:06:56','2013-10-13 22:06:56','<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"http://www.earthhertzrecords.com/artists/755-2/\"><img class=\"alignnone wp-image-876\" alt=\"slide_0170sv_en\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_0170sv_en.png\" width=\"960\" height=\"210\" /></a>','','','inherit','open','open','','877-revision-v1','','','2013-10-13 22:06:56','2013-10-13 22:06:56','',877,'http://www.earthhertzrecords.com/2013/10/13/877-revision-v1/',0,'revision','',0),(926,1,'2013-10-13 22:32:54','2013-10-13 22:32:54','<a href=\"http://www.earthhertzrecords.com/artists/radartower/\"><img class=\" wp-image-840\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" /></a>','','','inherit','open','open','','839-revision-v1','','','2013-10-13 22:32:54','2013-10-13 22:32:54','',839,'http://www.earthhertzrecords.com/2013/10/13/839-revision-v1/',0,'revision','',0),(928,1,'2013-10-13 22:34:39','2013-10-13 22:34:39','<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\"alignnone wp-image-869\" alt=\"slide_004a_en\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_004a_en.png\" width=\"960\" height=\"210\" /></a>','','','inherit','open','open','','867-revision-v1','','','2013-10-13 22:34:39','2013-10-13 22:34:39','',867,'http://www.earthhertzrecords.com/2013/10/13/867-revision-v1/',0,'revision','',0),(929,1,'2013-10-13 22:35:48','2013-10-13 22:35:48','<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\"><img class=\"alignnone wp-image-870\" alt=\"slide_020sv_en\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_020sv_en.png\" width=\"960\" height=\"210\" /></a>','','','inherit','open','open','','872-revision-v1','','','2013-10-13 22:35:48','2013-10-13 22:35:48','',872,'http://www.earthhertzrecords.com/2013/10/13/872-revision-v1/',0,'revision','',0),(931,1,'2013-10-13 22:49:44','2013-10-13 22:49:44','The Man, the Myth, the Music - The Definitive Life\r\n<a href=\"https://itunes.apple.com/us/book/lennon/id698944607?mt=11&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_ibooks-lrg.png) no-repeat;width:146px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_ibooks-lrg.svg);}\"></a>\r\n<img class=\"alignleft size-full wp-image-423\" alt=\"LENNON\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/lennon.jpg\" width=\"600\" height=\"337\" />','LENNON by Tim Riley','','inherit','open','open','','422-revision-v1','','','2013-10-13 22:49:44','2013-10-13 22:49:44','',422,'http://www.earthhertzrecords.com/2013/10/13/422-revision-v1/',0,'revision','',0),(932,1,'2013-10-13 22:50:51','2013-10-13 22:50:51','<strong>The Man, the Myth, the Music - The Definitive Life\n<a href=\"https://itunes.apple.com/us/book/lennon/id698944607?mt=11&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_ibooks-lrg.png) no-repeat;width:146px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_ibooks-lrg.svg);}\"></a></strong>\n<img class=\"alignleft size-full wp-image-423\" alt=\"LENNON\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/lennon.jpg\" width=\"600\" height=\"337\" />','LENNON by Tim Riley','','inherit','open','open','','422-autosave-v1','','','2013-10-13 22:50:51','2013-10-13 22:50:51','',422,'http://www.earthhertzrecords.com/2013/10/13/422-autosave-v1/',0,'revision','',0),(933,1,'2013-10-13 22:50:54','2013-10-13 22:50:54','<strong>The Man, the Myth, the Music - The Definitive Life\r\n<a href=\"https://itunes.apple.com/us/book/lennon/id698944607?mt=11&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_ibooks-lrg.png) no-repeat;width:146px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_ibooks-lrg.svg);}\"></a></strong>\r\n<img class=\"alignleft size-full wp-image-423\" alt=\"LENNON\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/lennon.jpg\" width=\"600\" height=\"337\" />','LENNON by Tim Riley','','inherit','open','open','','422-revision-v1','','','2013-10-13 22:50:54','2013-10-13 22:50:54','',422,'http://www.earthhertzrecords.com/2013/10/13/422-revision-v1/',0,'revision','',0),(934,1,'2013-10-13 22:59:40','2013-10-13 22:59:40','This is an incredible book about the early career moves of one Ken Scott of Abby Road and much more.\r\nVery interesting llife and times and back stage scenes of real life rock and roll music making.\r\n<a href=\"https://itunes.apple.com/us/book/abbey-road-to-ziggy-stardust/id534777945?mt=11&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_ibooks-lrg.png) no-repeat;width:146px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_ibooks-lrg.svg);}\"></a>\r\n<img class=\"alignnone wp-image-936\" alt=\"KenScott_AbbyRoad\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KenScott_AbbyRoad.png\" width=\"195\" height=\"300\" />','Abby Road to Ziggy Stardust - Ken Scott & Bobby Owsinski','','publish','open','open','','abby-road-to-ziggy-stardust-ken-scott-bobby-owsinski','','','2013-10-13 23:05:30','2013-10-13 23:05:30','',0,'http://www.earthhertzrecords.com/?p=934',0,'post','',0),(935,1,'2013-10-13 22:59:40','2013-10-13 22:59:40','This is an incredible book about the early career moves of one Ken Scott of Abby Road and much more.\r\nVery interesting llife and times and back stage scenes of real life rock and roll music making.\r\n<a href=\"https://itunes.apple.com/us/book/abbey-road-to-ziggy-stardust/id534777945?mt=11&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_ibooks-lrg.png) no-repeat;width:146px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_ibooks-lrg.svg);}\"></a>','Abby Road to Ziggy Stardust - Ken Scott & Bobby Owsinski','','inherit','open','open','','934-revision-v1','','','2013-10-13 22:59:40','2013-10-13 22:59:40','',934,'http://www.earthhertzrecords.com/2013/10/13/934-revision-v1/',0,'revision','',0),(936,1,'2013-10-13 23:03:17','2013-10-13 23:03:17','','KenScott_AbbyRoad','','inherit','open','open','','kenscott_abbyroad','','','2013-10-13 23:03:17','2013-10-13 23:03:17','',934,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KenScott_AbbyRoad.png',0,'attachment','image/png',0),(937,1,'2013-10-13 23:04:44','2013-10-13 23:04:44','This is an incredible book about the early career moves of one Ken Scott of Abby Road and much more.\nVery interesting llife and times and back stage scenes of real life rock and roll music making.\n\n<img class=\"alignnone wp-image-936\" alt=\"KenScott_AbbyRoad\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KenScott_AbbyRoad.png\" width=\"300\" height=\"400\" />','Abby Road to Ziggy Stardust - Ken Scott & Bobby Owsinski','','inherit','open','open','','934-autosave-v1','','','2013-10-13 23:04:44','2013-10-13 23:04:44','',934,'http://www.earthhertzrecords.com/2013/10/13/934-autosave-v1/',0,'revision','',0),(939,1,'2013-10-13 23:04:56','2013-10-13 23:04:56','This is an incredible book about the early career moves of one Ken Scott of Abby Road and much more.\r\nVery interesting llife and times and back stage scenes of real life rock and roll music making.\r\n\r\n<img class=\"alignnone wp-image-936\" alt=\"KenScott_AbbyRoad\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KenScott_AbbyRoad.png\" width=\"195\" height=\"300\" />','Abby Road to Ziggy Stardust - Ken Scott & Bobby Owsinski','','inherit','open','open','','934-revision-v1','','','2013-10-13 23:04:56','2013-10-13 23:04:56','',934,'http://www.earthhertzrecords.com/2013/10/13/934-revision-v1/',0,'revision','',0),(938,1,'2013-10-13 23:03:37','2013-10-13 23:03:37','This is an incredible book about the early career moves of one Ken Scott of Abby Road and much more.\r\nVery interesting llife and times and back stage scenes of real life rock and roll music making.\r\n<a href=\"https://itunes.apple.com/us/book/abbey-road-to-ziggy-stardust/id534777945?mt=11&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_ibooks-lrg.png) no-repeat;width:146px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_ibooks-lrg.svg);}\"></a>\r\n<img src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KenScott_AbbyRoad.png\" alt=\"KenScott_AbbyRoad\" width=\"446\" height=\"533\" class=\"alignnone size-full wp-image-936\" />','Abby Road to Ziggy Stardust - Ken Scott & Bobby Owsinski','','inherit','open','open','','934-revision-v1','','','2013-10-13 23:03:37','2013-10-13 23:03:37','',934,'http://www.earthhertzrecords.com/2013/10/13/934-revision-v1/',0,'revision','',0),(940,1,'2013-10-13 23:05:30','2013-10-13 23:05:30','This is an incredible book about the early career moves of one Ken Scott of Abby Road and much more.\r\nVery interesting llife and times and back stage scenes of real life rock and roll music making.\r\n<a href=\"https://itunes.apple.com/us/book/abbey-road-to-ziggy-stardust/id534777945?mt=11&uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_ibooks-lrg.png) no-repeat;width:146px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_ibooks-lrg.svg);}\"></a>\r\n<img class=\"alignnone wp-image-936\" alt=\"KenScott_AbbyRoad\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KenScott_AbbyRoad.png\" width=\"195\" height=\"300\" />','Abby Road to Ziggy Stardust - Ken Scott & Bobby Owsinski','','inherit','open','open','','934-revision-v1','','','2013-10-13 23:05:30','2013-10-13 23:05:30','',934,'http://www.earthhertzrecords.com/2013/10/13/934-revision-v1/',0,'revision','',0),(941,1,'2013-10-14 03:36:11','2013-10-14 03:36:11','<iframe src=\"//www.youtube.com/embed/XYlAmuOgPo0\" height=\"315\" width=\"500\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Robert Xeno Earth Hertz Records 2013 ','','publish','open','open','','robert-xeno-earth-hertz-records-2013','','','2013-12-06 12:19:24','2013-12-06 18:19:24','',0,'http://www.earthhertzrecords.com/?p=941',2,'post','',0),(942,1,'2013-10-14 03:36:11','2013-10-14 03:36:11','\r\nhttp://youtu.be/XYlAmuOgPo0 ','Robert Xeno Earth Hertz Records 2013 ','','inherit','open','open','','941-revision-v1','','','2013-10-14 03:36:11','2013-10-14 03:36:11','',941,'http://www.earthhertzrecords.com/2013/10/14/941-revision-v1/',0,'revision','',0),(943,1,'2013-10-14 03:36:36','2013-10-14 03:36:36','<iframe width=\"420\" height=\"315\" src=\"//www.youtube.com/embed/XYlAmuOgPo0\" frameborder=\"0\" allowfullscreen></iframe>','Robert Xeno Earth Hertz Records 2013 ','','inherit','open','open','','941-revision-v1','','','2013-10-14 03:36:36','2013-10-14 03:36:36','',941,'http://www.earthhertzrecords.com/2013/10/14/941-revision-v1/',0,'revision','',0),(944,1,'2013-10-14 03:37:12','2013-10-14 03:37:12','<iframe width=\"500\" height=\"315\" src=\"//www.youtube.com/embed/XYlAmuOgPo0\" frameborder=\"0\" allowfullscreen></iframe>','Robert Xeno Earth Hertz Records 2013 ','','inherit','open','open','','941-revision-v1','','','2013-10-14 03:37:12','2013-10-14 03:37:12','',941,'http://www.earthhertzrecords.com/2013/10/14/941-revision-v1/',0,'revision','',0),(947,1,'2013-10-14 05:09:41','2013-10-14 05:09:41','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n<img class=\"wp-image-762 alignleft\" alt=\"Mathias_RadarTowerAlbumCoverFinal\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Mathias_RadarTowerAlbumCoverFinal-300x300.jpg\" width=\"250\" height=\"250\" />Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"alignright size-medium wp-image-501\" alt=\"MattGuertin-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>The changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n<strong>Mathias Meets The World</strong>\r\n\r\nMP3s\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\nComplicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\nNeed To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\nIt\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\nMemories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\nFeelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\nHippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\nGimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\nBefore We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\nSheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\nTime Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\nNeed Someone\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nNeed Someone','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-14 05:09:41','2013-10-14 05:09:41','',246,'http://www.earthhertzrecords.com/2013/10/14/246-revision-v1/',0,'revision','',0),(948,2,'2013-10-14 10:21:45','2013-10-14 10:21:45','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1.jpg\"><img class=\"alignleft size-thumbnail wp-image-616\" alt=\"cassette-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1-150x150.jpg\" width=\"150\" height=\"150\" /></a>In an era of compact disc, blue ray, and iWhateveryouwant, asking people to consider how awesome the cassette is seems impossible. But that cheap plastic casing that you used a pen to rewind the tape inside when your recorder was busted, saved rock and roll.\r\n\r\nGather around the computer screen, kids, the old man with tattoos and ridiculous record collection is telling a story. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2.jpg\"><img class=\"alignright size-thumbnail wp-image-617\" alt=\"cassette-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nOn May 7, 1965, Rolling Stones guitarist, Keith Richards, wakes up in a Jacksonville, Florida hotel room to a startling musical discovery. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3.jpg\"><img class=\"alignleft size-thumbnail wp-image-618\" alt=\"cassette-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nThe Philips Typ EL 3302 cassette recorder his band’s manager had bought for him to write songs, revealed an 8-note acoustic guitar hook and the words “I can’t get no satisfaction,” then the sound of a guitar pick dropping and 40 minutes of snoring. Three days later, “I Can’t Get No Satisfaction” was recorded at Chess Studios in Chicago, Illinois, and music was never the same. Three years after that, Keef would use the same machine and same overnight accident to record “Street FightingMan.”\r\n\r\nPhilips created the portable cassette tape and recording device in 1962, but didn’t show it to the world until the Berlin Radio Show on August 30, 1963. The technology had been around since the mid 1930s but it had mostly been used by governmental offices for secretarial dictation, and the cassettes themselves were so cheap, they were never saved for posterity. But with pop music and its associated culture exploding in the late 1950s and early 1960s, many communication companies looked for the next cash cow to milk. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4.jpg\"><img class=\"alignleft size-thumbnail wp-image-619\" alt=\"cassette-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nThe first musical collections released on cassette were of the Lena Horne and Johnny Mathis ilk. Most rock and pop bands used cassettes to record demos them depended on the vinyl LP to make them famous, as that’s what stores stocked. After the 8-track boom of the mid 1970s, retailers wanted something smaller, more mobile, and user friendly to sell. The cassette and the mass market became passionate lovers in the 1980s.\r\n\r\nThe rewind button revolutionized how people listened to music. Attention deficit has been around since the cavemen. The cassette recorder just fed the impatience of humans like no other device. With 8-track tapes, you had to listen to the entire recording. There was that clunky fast forward move that beat up the tape. Sure, you could stop a record player, take off the needle, and then conjure the eyesight of a falcon to find the groove to play “Go Your Own Way” by Fleetwood Mac for the 37th time in a row. But with cassette? Hit rewind, guess right 63 percent of the time and voila! “Go Your Own Way” for the 38th time, but quicker. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5.jpg\"><img class=\"alignright size-thumbnail wp-image-620\" alt=\"cassette-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nMy first cassette coincided with my first concert. Billy Joel’s <i>Nylon Curtain</i> album in 1982.\r\n\r\nCassettes were great and not just for the rewind button. In the early 1980s, most cars hadn’t caught up to the technology, so to listen to them you used a stereo or a portable recorder like the one Keef had. It made music more personal. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6.jpg\"><img class=\"alignleft size-thumbnail wp-image-621\" alt=\"cassette-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6-150x150.jpg\" width=\"150\" height=\"150\" /></a>By 1987, cassingles or cassette singles were the rage. This meant people could buy “Here I Go Again” without having to suffer through the whole Whitesnake album. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7.jpg\"><img class=\"alignright size-thumbnail wp-image-622\" alt=\"cassette-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nCassettes also propped up three major musical movements – punk, college radio/alternative, and metal – that would later find massive success in the late 1980s and early 1990s. Bands could record demos or even full recordings on blank $1 cassettes then trade them or give them away to complete strangers, as Austin, Texas fast food worker, Daniel Johnston, did in the early 1990s, before becoming an underground sensation thanks to Kurt Cobain wearing his t-shirts in the 1990s. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8.jpg\"><img class=\"alignleft size-thumbnail wp-image-623\" alt=\"cassette-8\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nCassettes were how music moved through the Iron Curtain and Communist Bloc countries where rock and roll and popular music was either banned or just unheard. I assume this is how David Hasselhoff became such a “thing” in Germany, because hey, the Hoff was there, man, when the wall came down in 1989.\r\n\r\nCompact disc was supposed to kill cassette. This is the circle of artificial life. But instead, digital made non-digital go underground. Newer technology means it’s more expensive. Indie bands, unsigned artists, and true punks have embraced the cassette. Music stores in America, Canada, Mexico, England and France have Cassette Days. Almost every indie band currently recording offers cassettes of their music on their websites or MySpace pages. It isn’t nostalgia keeping the cassette around, it’s money. Cassettes are the last bastion for have nots, and there will always be have nots.\r\n\r\nI miss my cassettes. I threw them all away or broke them from overuse. Cassette was how I loved Billy Joel, hair metal, The Smiths, R.E.M., Nirvana, and Tom Petty’s <i>Full Moon Fever</i>. I didn’t join the CD mainstream until my senior year of college, 1992. It seems apropos that most of us, including me, missed the cassette’s birthday on August 30th. I hope this column serves as enough of a belated birthday card.\r\n\r\nPost by <strong>Lance Burson</strong>\r\n\r\nFirst published on <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a> as <a href=\"http://raisedontheradio.com/2013/09/22/fiftieth-birthday-cassette-still-cant-get-satisfaction/\">On Its Fiftieth Birthday, the Cassette Still Can\'t Get No Satisfaction</a>\r\n\r\n<em>Lance Burson is a writer living outside Atlanta, Georgia with his wife and three daughters. He’s the published author of two books, both musically themed, The Ballad of Helene Troy and Soul To Body, found, digitally, on Amazon.com/kindle and in paperback on Lulu.com</em>.<em> He is a writer for <a href=\"http://sprocketink.com/author/lance/\">Sprocket Ink</a> and author of <a href=\"http://lancemyblogcanbeatupyourblog.wordpress.com/\">My Blog Can Beat Up Your Blog</a> Follow him on Twitter <a href=\"https://twitter.com/lanceburson\">@lanceburson</a></em>','On Its 50th Birthday, the Cassette Still Can\'t Get No Satisfaction','','inherit','open','open','','615-revision-v1','','','2013-10-14 10:21:45','2013-10-14 10:21:45','',615,'http://www.earthhertzrecords.com/2013/10/14/615-revision-v1/',0,'revision','',0),(949,2,'2013-10-14 10:23:21','2013-10-14 10:23:21','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1.jpg\"><img class=\"alignleft size-thumbnail wp-image-616\" alt=\"cassette-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-1-150x150.jpg\" width=\"150\" height=\"150\" /></a>In an era of compact disc, blue ray, and iWhateveryouwant, asking people to consider how awesome the cassette is seems impossible. But that cheap plastic casing that you used a pen to rewind the tape inside when your recorder was busted, saved rock and roll.\r\n\r\nGather around the computer screen, kids, the old man with tattoos and ridiculous record collection is telling a story. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2.jpg\"><img class=\"alignright size-thumbnail wp-image-617\" alt=\"cassette-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nOn May 7, 1965, Rolling Stones guitarist, Keith Richards, wakes up in a Jacksonville, Florida hotel room to a startling musical discovery. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3.jpg\"><img class=\"alignleft size-thumbnail wp-image-618\" alt=\"cassette-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-3-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nThe Philips Typ EL 3302 cassette recorder his band’s manager had bought for him to write songs, revealed an 8-note acoustic guitar hook and the words “I can’t get no satisfaction,” then the sound of a guitar pick dropping and 40 minutes of snoring. Three days later, “I Can’t Get No Satisfaction” was recorded at Chess Studios in Chicago, Illinois, and music was never the same. Three years after that, Keef would use the same machine and same overnight accident to record “Street FightingMan.”\r\n\r\nPhilips created the portable cassette tape and recording device in 1962, but didn’t show it to the world until the Berlin Radio Show on August 30, 1963. The technology had been around since the mid 1930s but it had mostly been used by governmental offices for secretarial dictation, and the cassettes themselves were so cheap, they were never saved for posterity. But with pop music and its associated culture exploding in the late 1950s and early 1960s, many communication companies looked for the next cash cow to milk. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4.jpg\"><img class=\"alignleft size-thumbnail wp-image-619\" alt=\"cassette-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-4-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nThe first musical collections released on cassette were of the Lena Horne and Johnny Mathis ilk. Most rock and pop bands used cassettes to record demos them depended on the vinyl LP to make them famous, as that’s what stores stocked. After the 8-track boom of the mid 1970s, retailers wanted something smaller, more mobile, and user friendly to sell. The cassette and the mass market became passionate lovers in the 1980s.\r\n\r\nThe rewind button revolutionized how people listened to music. Attention deficit has been around since the cavemen. The cassette recorder just fed the impatience of humans like no other device. With 8-track tapes, you had to listen to the entire recording. There was that clunky fast forward move that beat up the tape. Sure, you could stop a record player, take off the needle, and then conjure the eyesight of a falcon to find the groove to play “Go Your Own Way” by Fleetwood Mac for the 37th time in a row. But with cassette? Hit rewind, guess right 63 percent of the time and voila! “Go Your Own Way” for the 38th time, but quicker. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5.jpg\"><img class=\"alignright size-thumbnail wp-image-620\" alt=\"cassette-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-5-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nMy first cassette coincided with my first concert. Billy Joel’s <i>Nylon Curtain</i> album in 1982.\r\n\r\nCassettes were great and not just for the rewind button. In the early 1980s, most cars hadn’t caught up to the technology, so to listen to them you used a stereo or a portable recorder like the one Keef had. It made music more personal. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6.jpg\"><img class=\"alignleft size-thumbnail wp-image-621\" alt=\"cassette-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-6-150x150.jpg\" width=\"150\" height=\"150\" /></a>By 1987, cassingles or cassette singles were the rage. This meant people could buy “Here I Go Again” without having to suffer through the whole Whitesnake album. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7.jpg\"><img class=\"alignright size-thumbnail wp-image-622\" alt=\"cassette-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-7-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nCassettes also propped up three major musical movements – punk, college radio/alternative, and metal – that would later find massive success in the late 1980s and early 1990s. Bands could record demos or even full recordings on blank $1 cassettes then trade them or give them away to complete strangers, as Austin, Texas fast food worker, Daniel Johnston, did in the early 1990s, before becoming an underground sensation thanks to Kurt Cobain wearing his t-shirts in the 1990s. <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8.jpg\"><img class=\"alignleft size-thumbnail wp-image-623\" alt=\"cassette-8\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/cassette-8-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nCassettes were how music moved through the Iron Curtain and Communist Bloc countries where rock and roll and popular music was either banned or just unheard. I assume this is how David Hasselhoff became such a “thing” in Germany, because hey, the Hoff was there, man, when the wall came down in 1989.\r\n\r\nCompact disc was supposed to kill cassette. This is the circle of artificial life. But instead, digital made non-digital go underground. Newer technology means it’s more expensive. Indie bands, unsigned artists, and true punks have embraced the cassette. Music stores in America, Canada, Mexico, England and France have Cassette Days. Almost every indie band currently recording offers cassettes of their music on their websites or MySpace pages. It isn’t nostalgia keeping the cassette around, it’s money. Cassettes are the last bastion for have nots, and there will always be have nots.\r\n\r\nI miss my cassettes. I threw them all away or broke them from overuse. Cassette was how I loved Billy Joel, hair metal, The Smiths, R.E.M., Nirvana, and Tom Petty’s <i>Full Moon Fever</i>. I didn’t join the CD mainstream until my senior year of college, 1992. It seems apropos that most of us, including me, missed the cassette’s birthday on August 30th. I hope this column serves as enough of a belated birthday card.\r\n\r\nPost by <strong>Lance Burson</strong>\r\n\r\nFirst published on <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a> as <a href=\"http://raisedontheradio.com/2013/09/22/fiftieth-birthday-cassette-still-cant-get-satisfaction/\">On Its Fiftieth Birthday, the Cassette Still Can\'t Get No Satisfaction</a>\r\n\r\n<strong><em>Lance Burson is a writer living outside Atlanta, Georgia with his wife and three daughters. He’s the published author of two books, both musically themed, The Ballad of Helene Troy and Soul To Body, found, digitally, on Amazon.com/kindle and in paperback on Lulu.com</em>.<em> He is a writer for <a href=\"http://sprocketink.com/author/lance/\">Sprocket Ink</a> and author of <a href=\"http://lancemyblogcanbeatupyourblog.wordpress.com/\">My Blog Can Beat Up Your Blog</a> Follow him on Twitter <a href=\"https://twitter.com/lanceburson\">@lanceburson</a></em></strong>','On Its 50th Birthday, the Cassette Still Can\'t Get No Satisfaction','','inherit','open','open','','615-revision-v1','','','2013-10-14 10:23:21','2013-10-14 10:23:21','',615,'http://www.earthhertzrecords.com/2013/10/14/615-revision-v1/',0,'revision','',0),(950,2,'2013-10-14 11:18:55','2013-10-14 11:18:55','<a href=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg\"><img class=\"alignleft wp-image-433\" alt=\"Roy Orbison\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/10/Roy-Orbison.jpg\" width=\"199\" height=\"300\" /></a>In an age rife with mp3 downloads, boy bands and hip hop samples, the roots of rock and roll have often become shrouded by trends. But as vinyl begins to crackle and pop its way back into the musical landscape and a generation or two become nostalgic for a time when melody and lyrics were king, a listen to the voices and musicianship that helped shape what they grew up on and enjoy today is a welcome treat, as is a read through the history and stories of how it all came to be.\r\n\r\nThat’s exactly what we get with <a href=\"http://johnkruth.com/\">John Kruth</a>‘s biography of the late, great Roy Orbison, Rhapsody In Black. Author of such musical biographies as the award winning To Live’s To Fly: The Ballad of the Late, Great Townes Van Zandt, Kruth weaves a tale transcendent of the typical musical bio-read. His is a tale told from the perspective of a music historian (Kruth is a professor of Musical History) and the voice of a musician whose played the music of which he writes. The author’s trademark folksy musician voice draws the reader deeply into the world inhabited by such musical giants of the 1950s as Elvis Presley, Buddy Holly, Chet Atkins and the legendary Memphis Sun Studios, which launched their careers. A detailed account of the music scene and the rise of Orbison’s career within it sprawl out before the reader like a yellow brick road for the audiophile, while the author closely knits history with anecdotes. It’s a history and a story made vivid and enthralling for both the average music lover and the musician alike.\r\n\r\nPain and longing abound in the music of Roy Orbison, as is evident in his best known hit “Oh, Pretty Woman” and the reasons are well documented here. If the details of Roy’s tragic life have already been made public knowledge, never have they been told in such a way that makes you feel that you were there experiencing the pain and isolation along with Orbison as they are here.\r\n\r\nFrom his days growing up in Texas, to his residency as a Traveling Wilbury and everything in between, we get the chance to walk the straight and narrow with music’s quiet man; more the homebody than rebel rouser, the unmistakeable voice and the legend behind the dark Ray Bans.\r\n\r\n<strong>Review by Linda Roy.</strong>\r\n\r\n<strong>Linda is a writer and musician who blogs at <a href=\"http://elleroywashere.com/\" target=\"_blank\">elleroy was here</a> and <a href=\"http://raisedontheradio.com/\" target=\"_blank\">Raised on the Radio</a>. She leads the Indie Americana band <a href=\"http://jehovawaitresses.com/\" target=\"_blank\">Jehova Waitresses</a> and writes at <a href=\"http://www.aiminglow.com/\" target=\"_blank\">Aiming Low</a>, <a href=\"http://sprocketink.com/\" target=\"_blank\">Sprocket Ink</a> and <a href=\"http://www.funnynotslutty.com/\" target=\"_blank\">Funny Not Slutty</a>. Connect with her on <a href=\"http://www.twitter.com/modmomelleroy\" target=\"_blank\">Twitter</a>, <a href=\"https://www.facebook.com/ModMomBeyondIndieDom\" target=\"_blank\">Facebook</a> and <a href=\"https://plus.google.com/u/0/116644246137576659052/posts\" target=\"_blank\">Google+</a></strong>','Rhapsody in Black: The Life and Music of Roy Orbison','','inherit','open','open','','432-revision-v1','','','2013-10-14 11:18:55','2013-10-14 11:18:55','',432,'http://www.earthhertzrecords.com/2013/10/14/432-revision-v1/',0,'revision','',0),(951,1,'2013-10-14 11:55:03','2013-10-14 11:55:03','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n<img class=\"wp-image-762 alignleft\" alt=\"Mathias_RadarTowerAlbumCoverFinal\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Mathias_RadarTowerAlbumCoverFinal-300x300.jpg\" width=\"250\" height=\"250\" />Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"alignright size-medium wp-image-501\" alt=\"MattGuertin-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>The changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n \r\n\r\n<strong>Mathias Meets The World\r\nMP3s\r\n</strong>https://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\n\r\nComplicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\nNeed To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\nIt\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\nMemories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\nFeelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\nHippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\nGimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\nBefore We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\nSheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\nTime Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\nNeed Someone\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nNeed Someone','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-14 11:55:03','2013-10-14 11:55:03','',246,'http://www.earthhertzrecords.com/2013/10/14/246-revision-v1/',0,'revision','',0),(952,1,'2013-10-14 11:55:49','2013-10-14 11:55:49','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n<img class=\"wp-image-762 alignleft\" alt=\"Mathias_RadarTowerAlbumCoverFinal\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Mathias_RadarTowerAlbumCoverFinal-300x300.jpg\" width=\"250\" height=\"250\" />Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"alignright size-medium wp-image-501\" alt=\"MattGuertin-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>The changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n \r\n\r\n<strong>Mathias Meets The World\r\nMP3s\r\n</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\nComplicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\nNeed To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\nIt\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\nMemories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\nFeelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\nHippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\nGimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\nBefore We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\nSheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\nTime Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\nNeed Someone\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nNeed Someone','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-14 11:55:49','2013-10-14 11:55:49','',246,'http://www.earthhertzrecords.com/2013/10/14/246-revision-v1/',0,'revision','',0),(953,1,'2013-10-14 11:57:38','2013-10-14 11:57:38','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n<img class=\"wp-image-762 alignleft\" alt=\"Mathias_RadarTowerAlbumCoverFinal\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Mathias_RadarTowerAlbumCoverFinal-300x300.jpg\" width=\"250\" height=\"250\" />Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"size-medium wp-image-501 alignright\" title=\"Matt Guertin\" alt=\"Matt Guertin\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>The changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n \r\n\r\n<strong>Mathias Meets The World\r\nMP3s\r\n</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\nComplicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\nNeed To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\nIt\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\nMemories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\nFeelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\nHippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\nGimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\nBefore We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\nSheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\nTime Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\nNeed Someone\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nNeed Someone','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-14 11:57:38','2013-10-14 11:57:38','',246,'http://www.earthhertzrecords.com/2013/10/14/246-revision-v1/',0,'revision','',0),(1260,2,'2013-11-15 02:58:25','2013-11-15 02:58:25','','JayBennett1-500x446','','inherit','open','open','','jaybennett1-500x446','','','2013-11-15 02:58:25','2013-11-15 02:58:25','',1259,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/JayBennett1-500x446.jpg',0,'attachment','image/jpeg',0),(1037,1,'2013-10-14 21:01:29','2013-10-14 21:01:29','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n\r\nMP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk\r\n\r\n ','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-14 21:01:29','2013-10-14 21:01:29','',738,'http://www.earthhertzrecords.com/2013/10/14/738-revision-v1/',0,'revision','',0),(963,1,'2013-10-14 13:43:09','2013-10-14 13:43:09','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk\r\nx\r\nx\r\nx\r\nx\r\nx\r\nx\r\nx\r\n[s3audibleSingle bucket=\"ehLaunchMP3\" track=\"723175499232-QMU991100036-HeyCalifornia.mp3\" autoplay=\"true\"]','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-14 13:43:09','2013-10-14 13:43:09','',738,'http://www.earthhertzrecords.com/2013/10/14/738-revision-v1/',0,'revision','',0),(965,1,'2013-10-14 13:46:07','2013-10-14 13:46:07','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk\r\n\r\n\r\n\r\nTest\r\n[s3audibleSingle bucket=\"ehLaunchMP3\" track=\"723175499232-QMU991100036-HeyCalifornia.mp3\" autoplay=\"false\"]\r\n\r\n\r\n','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-14 13:46:07','2013-10-14 13:46:07','',738,'http://www.earthhertzrecords.com/2013/10/14/738-revision-v1/',0,'revision','',0),(964,1,'2013-10-14 13:45:10','2013-10-14 13:45:10','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk\r\nx\r\nx\r\nx\r\nx\r\nx\r\nx\r\nx\r\n[s3audibleSingle bucket=\"ehLaunchMP3\" track=\"723175499232-QMU991100036-HeyCalifornia.mp3\" autoplay=\"false\"]\r\n\r\nx\r\nx\r\nx\r\nx\r\n[s3audible bucket=\"ehLaunchMP3\" folder=\"\" autoplay=\"false\" height=\"auto\"]','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-14 13:45:10','2013-10-14 13:45:10','',738,'http://www.earthhertzrecords.com/2013/10/14/738-revision-v1/',0,'revision','',0),(969,1,'2013-10-14 13:48:14','2013-10-14 13:48:14','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-meredythe-the-recycle-kids/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/radartower/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-elly-maze/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]\r\n\r\n','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-14 13:48:14','2013-10-14 13:48:14','',19,'http://www.earthhertzrecords.com/2013/10/14/19-revision-v1/',0,'revision','',0),(966,1,'2013-10-14 13:46:41','2013-10-14 13:46:41','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-meredythe-the-recycle-kids/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/radartower/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-elly-maze/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]\r\n\r\nTest Player..... Enjoy\r\n[s3audible bucket=\"ehLaunchMP3\" folder=\"\" autoplay=\"false\" height=\"auto\"]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-14 13:46:41','2013-10-14 13:46:41','',19,'http://www.earthhertzrecords.com/2013/10/14/19-revision-v1/',0,'revision','',0),(967,1,'2013-10-14 13:47:18','2013-10-14 13:47:18','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-meredythe-the-recycle-kids/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/radartower/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-elly-maze/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]\r\n\r\n\r\n[s3audible bucket=\"ehLaunchMP3\" folder=\"\" autoplay=\"false\" height=\"auto\"]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-14 13:47:18','2013-10-14 13:47:18','',19,'http://www.earthhertzrecords.com/2013/10/14/19-revision-v1/',0,'revision','',0),(968,1,'2013-10-14 13:47:45','2013-10-14 13:47:45','[caption id=\"attachment_173\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\"size-thumbnail wp-image-173 \" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> The music of <b>Applegate Nance</b> is as welcoming as a cool breeze on a hot day. It drifts through the air, touching only your heart and soul.[/caption]\r\n\r\n[caption id=\"attachment_151\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\"size-thumbnail wp-image-151 \" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" width=\"150\" height=\"150\" /></a> Hearing is feeling, as <b>Glen Spreen</b> fuses emotions into melody through “Dreams,” an instrumental journey.[/caption]\r\n\r\n[caption id=\"attachment_145\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\"size-thumbnail wp-image-145 \" alt=\"Hannah Mae new video and single.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>Hannah Mae’s</b> writing enters many dimensions. Explore her music and travel through time, space and emotion.[/caption]\r\n\r\n[caption id=\"attachment_140\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\"size-thumbnail wp-image-140 \" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" width=\"150\" height=\"150\" /></a> Singer-songwriter <b>Joshua Ayers</b> creates music both engaging and introspective. From writing to producing, his music is his signature.[/caption]\r\n\r\n[caption id=\"attachment_150\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-meredythe-the-recycle-kids/\" rel=\"attachment wp-att-150\"><img class=\"size-thumbnail wp-image-150 \" alt=\"Meredythe & The Recycle! Kids\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" width=\"150\" height=\"150\" /></a> For the young and young at heart, <b>Meredythe & The Recycle! Kids</b> sing the message of one world, one planet.[/caption]\r\n\r\n[caption id=\"attachment_149\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/radartower/\" rel=\"attachment wp-att-149\"><img class=\"size-thumbnail wp-image-149 \" alt=\"radarTower new album, single and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" width=\"150\" height=\"150\" /></a> From blues to alternative and beyond, <b>radarTower</b> connects their influences to produce a style of their own.[/caption]\r\n\r\n[caption id=\"attachment_148\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\" rel=\"attachment wp-att-148\"><img class=\"size-thumbnail wp-image-148 \" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" width=\"150\" height=\"150\" /></a> Feel the embrace of the reggae beat, as <b>The Billy David Band</b> takes the rhythm and creates a musical message of hope, and love of spirit.[/caption]\r\n\r\n[caption id=\"attachment_162\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/artists/the-elly-maze/\" rel=\"attachment wp-att-162\"><img class=\"size-thumbnail wp-image-162 \" alt=\"Near South\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" width=\"150\" height=\"150\" /></a> <b>The Elly Maze</b> sound is a serious brew of classic country, bluegrass and Americana, with a little honky tonk thrown in.[/caption]\r\n\r\n<br />\r\n[s3audible bucket=\"ehLaunchMP3\" folder=\"\" autoplay=\"false\" height=\"auto\"]','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-10-14 13:47:45','2013-10-14 13:47:45','',19,'http://www.earthhertzrecords.com/2013/10/14/19-revision-v1/',0,'revision','',0),(1259,2,'2013-11-15 14:14:33','2013-11-15 14:14:33','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/JayBennett1-500x446.jpg\"><img class=\"aligncenter size-full wp-image-1260\" alt=\"JayBennett1-500x446\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/JayBennett1-500x446.jpg\" width=\"500\" height=\"446\" /></a>For those of you who are not familiar with Sam Jones’ 2001 documentary on Wilco, <em>I Am Trying to Break Your Heart</em>, rent it tonight. You will not be disappointed. The film offers a candid view of one of America’s greatest rock bands.\r\n\r\nJones’ film chronicles the band who were in the process of recording a landmark album, <em>Yankee Hotel Foxtrot</em>, when their record company (Reprise) dropped them. Amid the business turmoil, the group’s leader, Jeff Tweedy, who was battling severe migraines at the time, fired band member and producer Jay Bennett. For many of us, it was the last time we ever heard from Bennett.\r\n\r\nAfter his dismissal from Wilco, Jay Bennett embarked on a solo career (releasing five records, one posthumously) that paled in comparison to Wilco’s commercial and critical acclaim.\r\n\r\nBennett was a talented musician, skillful producer and session musician who worked with numerous artists: Garrison Starr, Adam Schmitt, Billy Joe Shaver, Blues Traveler, Allison Moorer, Jellyfish, Sherry Rich, Tim Easton,Tommy Keene, Jeff Black and Sheryl Crow. But what will he be best remembered for?\r\n\r\nA troubled artist? A tortured soul? A frustrated musician and producer who was desperately clinging to a career that was slipping away?\r\n\r\nI’m afraid that it might be all three.\r\n\r\nIn 1995, Bennett joined Wilco for their sophomore effort, <em>Being There. </em>His contributions elevated Tweedy’s alt-country group into new musical terrain. It is somewhat reminiscent of mid-period Beatles, moving forward from <em>Help</em> to <em>Rubber Soul</em>.\r\n\r\nWhen the band released its third studio album, <em>Summerteeth, </em>they continued to experiment, progressing both sonically and musically, such as The Beatles did with <em>Rubber Soul’s </em>successor,<em> Revolver</em>. Wilco sounded like a completely different band from its debut record, 1995′s <em>A.M.</em> <a href=\"http://www.spin.com/blog/what-jay-bennetts-death-made-me-realize-about-wilco/\">Ellen Carpenter</a> of <em>Spin</em> wrote about <em>Summerteeth</em>, “The songs were fuller, warmer, the standard guitar-and-drums set-up of <em>A.M.</em> had been supplemented by a lush psychedelic impressionism that was largely a product of Bennett’s masterful work with farfisa organ, bells, Moog, lap steel guitar, banjo, synthesizer, and other instrumental exotica.”\r\n\r\nWith Wilco’s magnum opus, <em>Yankee Hotel Foxtrot,</em> the album that anointed Wilco as one of the greatest bands of its generation, Jay Bennett’s contributions were enormous, co-writing eight of the eleven songs and producing much of the record himself.\r\n\r\nSince Bennett’s firing, Wilco has released four distinguished records – <em>A Ghost is Born</em> (2004) being the most compelling – but none of them have had the personality, the daring, the audacity and powerfully evocative sounds of the three records Jay Bennett worked on.\r\n\r\n<strong>Post by Richard Fulco. First published on <a href=\"http://www.riffraf.net/2013/10/remembering-jay-bennett/\">Riffraf.net</a></strong>\r\n\r\n<em>Richard Fulco is the founder and editor of <a href=\"http://www.riffraf.net/\">Riffraf.net</a>. His debut novel, There Is No End to This Slope, will be published by Wampus Multimedia in March 2014.</em>','Remembering Jay Bennett','','publish','open','open','','remembering-jay-bennett','','','2013-11-20 00:49:20','2013-11-20 00:49:20','',0,'http://www.earthhertzrecords.com/?p=1259',0,'post','',0),(975,1,'2013-10-14 15:22:08','2013-10-14 15:22:08','<a href=\"http://www.earthhertzrecords.com/artists/radartower/\"><img class=\" wp-image-840 alignnone\" title=\"1\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" /></a>','','','inherit','open','open','','839-revision-v1','','','2013-10-14 15:22:08','2013-10-14 15:22:08','',839,'http://www.earthhertzrecords.com/2013/10/14/839-revision-v1/',0,'revision','',0),(974,1,'2013-10-14 15:21:28','2013-10-14 15:21:28','[caption id=\"attachment_840\" align=\"alignnone\" width=\"960\"]<a href=\"http://www.earthhertzrecords.com/artists/radartower/\"><img class=\" wp-image-840\" title=\"1\" alt=\"2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" /></a> 3[/caption]','','','inherit','open','open','','839-revision-v1','','','2013-10-14 15:21:28','2013-10-14 15:21:28','',839,'http://www.earthhertzrecords.com/2013/10/14/839-revision-v1/',0,'revision','',0),(976,1,'2013-10-14 15:22:52','2013-10-14 15:22:52','[caption id=\"attachment_840\" align=\"alignnone\" width=\"960\"]<a href=\"http://www.earthhertzrecords.com/artists/radartower/\"><img class=\" wp-image-840 \" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" /></a> .....[/caption]','','','inherit','open','open','','839-revision-v1','','','2013-10-14 15:22:52','2013-10-14 15:22:52','',839,'http://www.earthhertzrecords.com/2013/10/14/839-revision-v1/',0,'revision','',0),(977,1,'2013-10-14 15:23:47','2013-10-14 15:23:47','[caption id=\"attachment_840\" align=\"alignnone\" width=\"960\"]<a href=\"http://www.earthhertzrecords.com/artists/radartower/\"><img class=\" wp-image-840 \" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_019a_en.png\" width=\"960\" height=\"210\" /></a> Matt Guertin\'s radarTower. Awesome young gun from Minneapolis![/caption]','','','inherit','open','open','','839-revision-v1','','','2013-10-14 15:23:47','2013-10-14 15:23:47','',839,'http://www.earthhertzrecords.com/2013/10/14/839-revision-v1/',0,'revision','',0),(980,1,'2013-10-14 15:26:43','2013-10-14 15:26:43','[caption id=\"attachment_869\" align=\"alignnone\" width=\"960\"]<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\" wp-image-869\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_004a_en.png\" width=\"960\" height=\"210\" /></a> Applegate Nance, new music from Nashville. Not so country at all.....[/caption]','','','inherit','open','open','','867-revision-v1','','','2013-10-14 15:26:43','2013-10-14 15:26:43','',867,'http://www.earthhertzrecords.com/2013/10/14/867-revision-v1/',0,'revision','',0),(982,1,'2013-10-14 15:28:40','2013-10-14 15:28:40','[caption id=\"attachment_876\" align=\"alignnone\" width=\"960\"]<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"http://www.earthhertzrecords.com/artists/755-2/\"><img class=\" wp-image-876\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_0170sv_en.png\" width=\"960\" height=\"210\" /></a> Joshua Ayers is an Earth Hertz producer. Watch for many more projects from this talented artist![/caption]','','','inherit','open','open','','877-revision-v1','','','2013-10-14 15:28:40','2013-10-14 15:28:40','',877,'http://www.earthhertzrecords.com/2013/10/14/877-revision-v1/',0,'revision','',0),(983,1,'2013-10-14 15:29:54','2013-10-14 15:29:54','[caption id=\"attachment_870\" align=\"alignnone\" width=\"960\"]<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\"><img class=\" wp-image-870\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/slide_020sv_en.png\" width=\"960\" height=\"210\" /></a> Hannah Mae is making music in the woods of Kentucky and we are getting it out there![/caption]','','','inherit','open','open','','872-revision-v1','','','2013-10-14 15:29:54','2013-10-14 15:29:54','',872,'http://www.earthhertzrecords.com/2013/10/14/872-revision-v1/',0,'revision','',0),(984,1,'2013-10-14 17:28:44','2013-10-14 17:28:44','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.current-cat {\n color: 0000ff;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 17:28:44','2013-10-14 17:28:44','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(985,1,'2013-10-14 17:29:11','2013-10-14 17:29:11','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.current-cat {\n color: #0000ff;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 17:29:11','2013-10-14 17:29:11','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(986,1,'2013-10-14 17:29:58','2013-10-14 17:29:58','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.cat-item {\n color: #0000ff;\n}\n\n.cat-item-60 current-cat {\n color: #0000ff;\n}\n\n.current-cat {\n color: #0000ff;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 17:29:58','2013-10-14 17:29:58','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(987,1,'2013-10-14 17:31:51','2013-10-14 17:31:51','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.categories-3 {\n color: #00ff00;\n}\n\n.cat-item {\n color: #00ff00;\n}\n\n.cat-item-60 current-cat {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 17:31:51','2013-10-14 17:31:51','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(988,1,'2013-10-14 17:33:26','2013-10-14 17:33:26','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\nyoyo {\n color: #00ff00;\n}\n\nxoxo {\n color: #00ff00;\n}\n\n.categories-3 {\n color: #00ff00;\n}\n\n.cat-item {\n color: #00ff00;\n}\n\n.cat-item-60 current-cat {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 17:33:26','2013-10-14 17:33:26','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(989,1,'2013-10-14 17:39:56','2013-10-14 17:39:56','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.sidey {\n color: #00ff00;\n}\n\nxoxo {\n color: #00ff00;\n}\n\n.categories-3 {\n color: #00ff00;\n}\n\n.cat-item {\n color: #00ff00;\n}\n\n.cat-item-60 current-cat {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 17:39:56','2013-10-14 17:39:56','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(991,1,'2013-10-14 17:50:12','2013-10-14 17:50:12','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file \n.two-columns-right {\n color: #00ff00;\n}\n*/\nxoxo {\n color: #00ff00;\n}\n\n.categories-3 {\n color: #00ff00;\n}\n\n.cat-item {\n color: #00ff00;\n}\n\n.cat-item-60 current-cat {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 17:50:12','2013-10-14 17:50:12','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(990,1,'2013-10-14 17:49:45','2013-10-14 17:49:45','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.two-columns-right {\n color: #00ff00;\n}\n\nxoxo {\n color: #00ff00;\n}\n\n.categories-3 {\n color: #00ff00;\n}\n\n.cat-item {\n color: #00ff00;\n}\n\n.cat-item-60 current-cat {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 17:49:45','2013-10-14 17:49:45','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(993,1,'2013-10-14 17:52:51','2013-10-14 17:52:51','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file \n.two-columns-right {\n color: #00ff00;\n}\n*/\nxoxo {\n color: #00ff00;\n}\n\n.categories-3 {\n color: #00ff00;\n}\n\n.cat-item {\n color: #00ff00;\n}\n\n.cat-item-60 current-cat {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 17:52:51','2013-10-14 17:52:51','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(992,1,'2013-10-14 17:52:39','2013-10-14 17:52:39','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.two-columns-right {\n color: #00ff00;\n}\n\nxoxo {\n color: #00ff00;\n}\n\n.categories-3 {\n color: #00ff00;\n}\n\n.cat-item {\n color: #00ff00;\n}\n\n.cat-item-60 current-cat {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 17:52:39','2013-10-14 17:52:39','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(995,1,'2013-10-14 18:01:14','2013-10-14 18:01:14','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.a {\n color: #00ff00;\n}\n\n.a:hover {\n color: #0000ff;\n}\n\n {','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:01:14','2013-10-14 18:01:14','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(994,1,'2013-10-14 17:54:03','2013-10-14 17:54:03','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.li.current-menu-ancestor {\n color: #00ff00;\n}\n\nxoxo {\n color: #00ff00;\n}\n\n.categories-3 {\n color: #00ff00;\n}\n\n.cat-item {\n color: #00ff00;\n}\n\n.cat-item-60 current-cat {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 17:54:03','2013-10-14 17:54:03','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(996,1,'2013-10-14 18:01:29','2013-10-14 18:01:29','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.a {\n color: #00ff00;\n}\n\n.a:hover {\n color: #0000ff;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:01:29','2013-10-14 18:01:29','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(997,1,'2013-10-14 18:02:01','2013-10-14 18:02:01','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na {\n color: #00ff00;\n}\n\na:hover {\n color: #0000ff;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:02:01','2013-10-14 18:02:01','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(998,1,'2013-10-14 18:02:51','2013-10-14 18:02:51','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na {\n color: #888888;\n}\n\na:hover {\n color: #ff0000;\n}\n\na:active {\n color: #00ff00;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:02:51','2013-10-14 18:02:51','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(999,1,'2013-10-14 18:03:45','2013-10-14 18:03:45','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:03:45','2013-10-14 18:03:45','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1000,1,'2013-10-14 18:09:27','2013-10-14 18:09:27','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\nbl_categ {\n color: #88ff88;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:09:27','2013-10-14 18:09:27','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1001,1,'2013-10-14 18:09:48','2013-10-14 18:09:48','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.bl_categ {\n color: #88ff88;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:09:48','2013-10-14 18:09:48','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1002,1,'2013-10-14 18:10:58','2013-10-14 18:10:58','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.current-cat {\n color: #88ff88;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:10:58','2013-10-14 18:10:58','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1003,1,'2013-10-14 18:11:44','2013-10-14 18:11:44','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\ncurrent-cat {\n color: #88ff88;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:11:44','2013-10-14 18:11:44','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1004,1,'2013-10-14 18:12:50','2013-10-14 18:12:50','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\ncurrent-cat {\n color: #00ff00;\n}\n\ncat-item-29 {\n color: #00ff00;\n}\n\ncurrent-cat {\n color: #00ff00;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:12:50','2013-10-14 18:12:50','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1005,1,'2013-10-14 18:14:04','2013-10-14 18:14:04','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na:current-cat {\n color: #00ff00;\n}\n\na:cat-item-29 {\n color: #00ff00;\n}\n\na:current-cat {\n color: #00ff00;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:14:04','2013-10-14 18:14:04','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1006,1,'2013-10-14 18:14:46','2013-10-14 18:14:46','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na.current-cat {\n color: #00ff00;\n}\n\na.cat-item-29 {\n color: #00ff00;\n}\n\na.current-cat {\n color: #00ff00;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:14:46','2013-10-14 18:14:46','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1007,1,'2013-10-14 18:15:11','2013-10-14 18:15:11','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.current-cat {\n color: #00ff00;\n}\n\n.cat-item-29 {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:15:11','2013-10-14 18:15:11','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1008,1,'2013-10-14 18:17:12','2013-10-14 18:17:12','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.current-cat {\n color: #00ff00;\n}\n\n.cat-item-29 {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n font-weight: bold;\n}\n\na:active {\n color: #880000;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:17:12','2013-10-14 18:17:12','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1009,1,'2013-10-14 18:17:45','2013-10-14 18:17:45','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.current-cat {\n color: #00ff00;\n}\n\n.cat-item-29 {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n font-weight: bold;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:17:45','2013-10-14 18:17:45','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1012,1,'2013-10-14 18:20:24','2013-10-14 18:20:24','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.current-cat {\n color: #00ff00;\n}\n\n.cat-item-29 {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n font-weight: bold;\n}\n\na:visited {\n color: blue;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:20:24','2013-10-14 18:20:24','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1010,1,'2013-10-14 18:19:12','2013-10-14 18:19:12','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.current-cat {\n color: #00ff00;\n}\n\n.cat-item-29 {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n font-weight: bold;\n}\n\na:visited {\n background-color: orange;\n}\n\na.selected {\n background-color: orange;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:19:12','2013-10-14 18:19:12','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1011,1,'2013-10-14 18:19:57','2013-10-14 18:19:57','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.current-cat {\n color: #00ff00;\n}\n\n.cat-item-29 {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n font-weight: bold;\n}\n\na:visited {\n background-color: blue;\n}\n\na.selected {\n background-color: orange;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:19:57','2013-10-14 18:19:57','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1013,1,'2013-10-14 18:21:57','2013-10-14 18:21:57','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.current-cat {\n color: #00ff00;\n}\n\n.cat-item-29 {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n font-weight: bold;\n}\n\na:visited {\n background-color: blue;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:21:57','2013-10-14 18:21:57','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1018,1,'2013-10-14 18:28:13','2013-10-14 18:28:13','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na:link {\n color: green;\n}\n\na:visited {\n color: green;\n}\n\na:hover {\n color: red;\n}\n\na:active {\n color: yellow;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:28:13','2013-10-14 18:28:13','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1015,1,'2013-10-14 18:24:04','2013-10-14 18:24:04','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.current-cat {\n color: #00ff00;\n}\n\n.cat-item-29 {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n font-weight: bold;\n}\n\na:visited {\n color: blue;\n}\n\na:current {\n color: blue;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:24:04','2013-10-14 18:24:04','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1014,1,'2013-10-14 18:22:42','2013-10-14 18:22:42','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.current-cat {\n color: #00ff00;\n}\n\n.cat-item-29 {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n font-weight: bold;\n}\n\na:visited {\n background-color: blue;\n}\n\na:selected {\n background-color: blue;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:22:42','2013-10-14 18:22:42','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1016,1,'2013-10-14 18:24:25','2013-10-14 18:24:25','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.current-cat {\n color: #00ff00;\n}\n\n.cat-item-29 {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n font-weight: bold;\n}\n\na:visited {\n color: blue;\n}\n\na:current {\n color: blue;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:24:25','2013-10-14 18:24:25','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1017,1,'2013-10-14 18:24:34','2013-10-14 18:24:34','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n.current-cat {\n color: #00ff00;\n}\n\n.cat-item-29 {\n color: #00ff00;\n}\n\n.current-cat {\n color: #00ff00;\n}\n\na {\n color: #888888;\n}\n\na:hover {\n color: #880000;\n}\n\na:active {\n color: #880000;\n font-weight: bold;\n}\n\na:visited {\n color: blue;\n}\n\na:current {\n color: #00ff00;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:24:34','2013-10-14 18:24:34','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1019,1,'2013-10-14 18:30:41','2013-10-14 18:30:41','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na:link {\n color: green;\n}\n\na:visited {\n color: #000000;\n}\n\na:hover {\n color: red;\n}\n\na:active {\n color: yellow;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:30:41','2013-10-14 18:30:41','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1020,1,'2013-10-14 18:31:43','2013-10-14 18:31:43','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na:link {\n color: green;\n}\n\na:visited {\n color: #000000;\n}\n\na:hover {\n color: red;\n}\n\na:active {\n color: #0000ff;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:31:43','2013-10-14 18:31:43','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1021,1,'2013-10-14 18:32:32','2013-10-14 18:32:32','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na:link {\n color: green;\n}\n\na:visited {\n color: #000000;\n}\n\na:hover {\n color: red;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:32:32','2013-10-14 18:32:32','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1022,1,'2013-10-14 18:33:20','2013-10-14 18:33:20','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na:link {\n color: green;\n}\n\na:visited {\n color: #777777;\n}\n\na:hover {\n color: red;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:33:20','2013-10-14 18:33:20','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1023,1,'2013-10-14 18:33:56','2013-10-14 18:33:56','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na:link {\n color: #000000;\n}\n\na:visited {\n color: #777777;\n}\n\na:hover {\n color: red;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:33:56','2013-10-14 18:33:56','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1025,1,'2013-10-14 18:34:52','2013-10-14 18:34:52','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na:link {\n color: #000000;\n}\n\na:visited {\n color: #777777;\n}\n\na:hover {\n color: #ff0000;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:34:52','2013-10-14 18:34:52','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1024,1,'2013-10-14 18:34:11','2013-10-14 18:34:11','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na:link {\n color: #000000;\n}\n\na:visited {\n color: #777777;\n}\n\na:hover {\n color: #ff000000;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:34:11','2013-10-14 18:34:11','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1034,1,'2013-10-14 20:03:22','2013-10-14 20:03:22','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\na:link {\n color: #000000;\n}\n\na:visited {\n color: #777777;\n}\n\na:hover {\n color: #ff0000;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}\n\na:link {\n background-color: #ffffff;\n}\n */','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 20:03:22','2013-10-14 20:03:22','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1026,1,'2013-10-14 18:38:35','2013-10-14 18:38:35','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na:link {\n color: #000000;\n}\n\na:visited {\n color: #777777;\n}\n\na:hover {\n color: #ff0000;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}\n\navatar {\n height: 10px;\n width: 100px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:38:35','2013-10-14 18:38:35','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1027,1,'2013-10-14 18:39:17','2013-10-14 18:39:17','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na:link {\n color: #000000;\n}\n\na:visited {\n color: #777777;\n}\n\na:hover {\n color: #ff0000;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}\n\na:link {\n color: #00ff00;\n background-color: #ff00ff;\n}\n\navatar {\n height: 10px;\n width: 100px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:39:17','2013-10-14 18:39:17','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1028,1,'2013-10-14 18:40:07','2013-10-14 18:40:07','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na:link {\n color: #000000;\n}\n\na:visited {\n color: #777777;\n}\n\na:hover {\n color: #ff0000;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}\n\na:link {\n background-color: #ffffff;\n}\n\navatar {\n height: 10px;\n width: 100px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:40:07','2013-10-14 18:40:07','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1029,1,'2013-10-14 18:41:41','2013-10-14 18:41:41','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\na:link {\n color: #000000;\n}\n\na:visited {\n color: #777777;\n}\n\na:hover {\n color: #ff0000;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}\n\na:link {\n background-color: #ffffff;\n}\n*/\na:link, a:visited {\n color: blue;\n}\n\na.current:link, a.current:visited {\n color: green;\n background-color: blue;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:41:41','2013-10-14 18:41:41','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1030,1,'2013-10-14 18:43:41','2013-10-14 18:43:41','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\na:link {\n color: #000000;\n}\n\na:visited {\n color: #777777;\n}\n\na:hover {\n color: #ff0000;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}\n\na:link {\n background-color: #ffffff;\n}\n*/\na:link, a:visited {\n color: blue;\n}\n\na.current:link, a.current:visited {\n color: green;\n background-color: blue;\n}\n\n#avatar {\n width: 10px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:43:41','2013-10-14 18:43:41','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1031,1,'2013-10-14 18:43:56','2013-10-14 18:43:56','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\na:link {\n color: #000000;\n}\n\na:visited {\n color: #777777;\n}\n\na:hover {\n color: #ff0000;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}\n\na:link {\n background-color: #ffffff;\n}\n*/\na:link, a:visited {\n color: blue;\n}\n\na.current:link, a.current:visited {\n color: green;\n background-color: blue;\n}\n\n#avatar {\n width: 10px;\n height: 10px;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:43:56','2013-10-14 18:43:56','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1033,1,'2013-10-14 18:47:25','2013-10-14 18:47:25','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\na:link {\n color: #000000;\n}\n\na:visited {\n color: #777777;\n}\n\na:hover {\n color: #ff0000;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}\n\na:link {\n background-color: #ffffff;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:47:25','2013-10-14 18:47:25','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1032,1,'2013-10-14 18:46:53','2013-10-14 18:46:53','/*\nWelcome to Custom CSS!\n\nCSS (Cascading Style Sheets) is a kind of code that tells the browser how\nto render a web page. You may delete these comments and get started with\nyour customizations.\n\nBy default, your stylesheet will be loaded after the theme stylesheets,\nwhich means that your rules can take precedence and override the theme CSS\nrules. Just write here what you want to change, you don\'t need to copy all\nyour theme\'s stylesheet content.\n*/\n/* CSS file */\n/*\na:link {\n color: #000000;\n}\n\na:visited {\n color: #777777;\n}\n\na:hover {\n color: #ff0000;\n}\n\na:active {\n color: #0000ff;\n background-color: #ffffff;\n}\n\na:link {\n background-color: #ffffff;\n}\n*/\na:link, a:visited {\n color: blue;\n}\n\na.current:link, a.current:visited {\n color: green;\n background-color: blue;\n}\n\n.currentLink {\n color: #640200;\n background-color: #000000;\n}','safecss','Parabola','inherit','open','open','','337-revision-v1','','','2013-10-14 18:46:53','2013-10-14 18:46:53','',337,'http://www.earthhertzrecords.com/2013/10/14/337-revision-v1/',0,'revision','',0),(1035,1,'2013-10-14 20:12:41','2013-10-14 20:12:41','<span style=\"font-size: 16px;\">\r\n<strong>Contact Earth Hertz Records</strong>\r\n<span style=\"font-size: 12px;\">Nashville, TN</span>\r\n<span style=\"font-size: 12px;\">(615) 824-8649</span>\r\n</span>\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>Eloa Xeno </strong>\r\nCFO and Director of Art\r\n<a href=\"mailto:exeno@earthhertz.com\">exeno@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\nNew Media Coordinator and Director of Artist Promotions\r\n<a href=\"mailto:kgalasso@earthhertz.com\">kgalasso@earthhertz.com</a>\r\n\r\n<strong>Christopher Parks </strong>\r\nProducer\r\n<a href=\"mailto:kgalasso@earthhertz.com\">cparks@earthhertz.com</a>\r\n\r\n<strong>Joshua Ayers</strong>\r\nProducer\r\n<a href=\"mailto:kgalasso@earthhertz.com\">jayers@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2013-10-14 20:12:41','2013-10-14 20:12:41','',23,'http://www.earthhertzrecords.com/2013/10/14/23-revision-v1/',0,'revision','',0),(1036,1,'2013-10-14 20:13:57','2013-10-14 20:13:57','Music\r\nVideo\r\nBooks\r\nClothing\r\nAccessories\r\nPosters\r\nArtwork\r\nMemorabilia','STORE','','inherit','open','open','','21-revision-v1','','','2013-10-14 20:13:57','2013-10-14 20:13:57','',21,'http://www.earthhertzrecords.com/2013/10/14/21-revision-v1/',0,'revision','',0),(1038,1,'2013-10-14 21:10:07','2013-10-14 21:10:07','<a href=\"https://itunes.apple.com/us/album/guns-run-single/id705232705?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499300-QMU991100113.mp3\r\nGuns and Run','Hannah Mae','','inherit','open','open','','736-revision-v1','','','2013-10-14 21:10:07','2013-10-14 21:10:07','',736,'http://www.earthhertzrecords.com/2013/10/14/736-revision-v1/',0,'revision','',0),(1039,1,'2013-10-14 21:11:46','2013-10-14 21:11:46','<p align=\"center\"><b><i>“I try to be soulful as much as possible” ...Matt Guertin</i></b></p>\r\nMatt Guertin of <b>radarTower</b> writes music that is hard to categorize. Taking his influences, ideas and feelings, he blends them together into whatever style of music they seem to fit.\r\n<img class=\"wp-image-762 alignleft\" alt=\"Mathias_RadarTowerAlbumCoverFinal\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Mathias_RadarTowerAlbumCoverFinal-300x300.jpg\" width=\"250\" height=\"250\" />Growing up in North Dakota, Matt moved to Minnesota to attend school for audio engineering. While there, he continued to write and play his music, eventually setting down the tracks for the first radarTower album <i>Mathias Meets The World</i>. Many of Matt’s musical influences can be felt in the songs on the new album. Hearing the old greats like Robert Johnson and Muddy Waters from early in his childhood, Matt takes the soul of the blues and adds in some folk, country and rock. A lot of rock.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2.jpg\"><img class=\"size-medium wp-image-501 alignright\" title=\"Matt Guertin\" alt=\"Matt Guertin\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/MattGuertin-2-300x197.jpg\" width=\"300\" height=\"197\" /></a>The changes in style throughout the album make an exciting format, as Matt’s musical creativity and artistic guitar work are showcased. The first single “Need Someone” is a bluesy, R&B tune with just the right amount of horns, gutsy vocals, and attitude mixed in. As the last track on the album, it ends a musical tour, where each stop offers a different melodic landscape.\r\n\r\n \r\n<strong>Mathias Meets The World\r\n<a href=\"https://itunes.apple.com/us/album/mathias-meets-the-world/id698212389?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\n\r\nMP3s\r\n</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\nComplicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\nNeed To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\nIt\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\nMemories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\nFeelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\nHippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\nGimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\nBefore We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\nSheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\nTime Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\nNeed Someone\r\n\r\n<strong>VIDEOS</strong>\r\n<iframe src=\"//www.youtube.com/embed/B2tIpnigjp8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nNeed Someone','radarTower','','inherit','open','open','','246-revision-v1','','','2013-10-14 21:11:46','2013-10-14 21:11:46','',246,'http://www.earthhertzrecords.com/2013/10/14/246-revision-v1/',0,'revision','',0),(1041,1,'2013-10-15 01:43:54','2013-10-15 01:43:54','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\n\r\nMP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\nHey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\nHere I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\nWasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\nMelting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\nPrivate Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\nGirl Talk\r\n\r\n ','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-10-15 01:43:54','2013-10-15 01:43:54','',738,'http://www.earthhertzrecords.com/2013/10/15/738-revision-v1/',0,'revision','',0),(1042,1,'2013-10-15 04:56:17','2013-10-15 04:56:17','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Alabama, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\n \r\n \r\n\r\n \r\n\r\n<strong>Magic\r\n<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\nIn My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\nBounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\nMovin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\nMy Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\nWaiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\nToo Many\r\n\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\nA Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\nMemphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\nLittle Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\nI\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\nMagic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\nKnew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\nMaui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\nMy Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\nBounce Up And Down (Instrumental)\r\n\r\nVIDEOS\r\n<iframe src=\"//www.youtube.com/embed/YPfwQveHFNk\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nMagic\r\n<iframe src=\"//www.youtube.com/embed/i91x1hqkgas\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nA Loving Revolution','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-15 04:56:17','2013-10-15 04:56:17','',248,'http://www.earthhertzrecords.com/2013/10/15/248-revision-v1/',0,'revision','',0),(1066,1,'2013-12-08 16:41:24','2013-12-08 22:41:24','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Alabama, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\n\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\n\n\n','The Billy David Band','','inherit','open','open','','248-autosave-v1','','','2013-12-08 16:41:24','2013-12-08 22:41:24','',248,'http://www.earthhertzrecords.com/2013/10/248-autosave-v1/',0,'revision','',0),(1395,1,'2013-12-08 16:42:22','2013-12-08 22:42:22','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Alabama, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\n\r\n<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-12-08 16:42:22','2013-12-08 22:42:22','',248,'http://www.earthhertzrecords.com/2013/12/248-revision-v1/',0,'revision','',0),(1067,1,'2013-10-23 02:41:56','2013-10-23 02:41:56','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Alabama, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\n \r\n \r\n\r\n \r\n\r\n<strong>Magic\r\n<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3s</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\n1. In My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\n2. Bounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\n3. Movin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\n4. My Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\n5. Waiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\n6. Too Many\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\n7. A Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\n8. Memphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\n9. Little Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\n10. I\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\n11. Magic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\n12. Knew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\n13. Maui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\n14. My Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\n15. Bounce Up And Down (Instrumental)\r\n\r\nVIDEOS\r\n<iframe src=\"//www.youtube.com/embed/YPfwQveHFNk\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n1. Magic\r\n<iframe src=\"//www.youtube.com/embed/i91x1hqkgas\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n2. A Loving Revolution','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-10-23 02:41:56','2013-10-23 02:41:56','',248,'http://www.earthhertzrecords.com/2013/10/248-revision-v1/',0,'revision','',0),(1396,1,'2013-12-08 17:10:41','2013-12-08 23:10:41','<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\n','The Billy David Band','','inherit','open','open','','797-revision-v1','','','2013-12-08 17:10:41','2013-12-08 23:10:41','',797,'http://www.earthhertzrecords.com/2013/12/797-revision-v1/',0,'revision','',0),(1068,1,'2013-10-23 02:55:10','2013-10-23 02:55:10','<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\n1. In My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\n2. Bounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\n3. Movin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\n4. My Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\n5. Waiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\n6. Too Many\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\n7. A Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\n8. Memphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\n9. Little Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\n10. I\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\n11. Magic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\n12. Knew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\n13. Maui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\n14. My Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\n15. Bounce Up And Down (Instrumental)','The Billy David Band','','inherit','open','open','','797-revision-v1','','','2013-10-23 02:55:10','2013-10-23 02:55:10','',797,'http://www.earthhertzrecords.com/2013/10/797-revision-v1/',0,'revision','',0),(1069,1,'2013-10-23 02:55:58','2013-10-23 02:55:58','<a href=\"https://itunes.apple.com/us/album/mathias-meets-the-world/id698212389?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100102Complicated.mp3\r\n1. Complicated\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100103Need+To+Unwind.mp3\r\n2. Need To Unwind\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100104It%27s+All+The+Same.mp3\r\n3. It\'s All The Same\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100105Memories+From+The+Past.mp3\r\n4. Memories From The Past\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100106Feelings.mp3\r\n5. Feelings\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100107Hippie+Girl.mp3\r\n6. Hippie Girl\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100108Gimme+A+Sign.mp3\r\n7. Gimme A Sign\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100109Before+We+Break.mp3\r\n8. Before We Break\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100110Sheyenne+River.mp3\r\n9. Sheyenne River\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100111Time+Will+Tell.mp3\r\n10.Time Will Tell\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499294QMU991100112Need+Someone.mp3\r\n11. Need Someone','radarTower','','inherit','open','open','','795-revision-v1','','','2013-10-23 02:55:58','2013-10-23 02:55:58','',795,'http://www.earthhertzrecords.com/2013/10/795-revision-v1/',0,'revision','',0),(1070,1,'2013-10-23 02:56:54','2013-10-23 02:56:54','<a href=\"https://itunes.apple.com/us/album/dreams/id694336061?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\n1. Dreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\n2. Whispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\n3. Clouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\n4. Game Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\n5. Horizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\n6. Spirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\n7. Willow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\n8. Pensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\n9. Dim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\n10. Love\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\n11. Naivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\n12. Storms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\n13. Dim Light Reprise','Glen Spreen','','inherit','open','open','','790-revision-v1','','','2013-10-23 02:56:54','2013-10-23 02:56:54','',790,'http://www.earthhertzrecords.com/2013/10/790-revision-v1/',0,'revision','',0),(1071,1,'2013-10-23 02:57:41','2013-10-23 02:57:41','<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk','Applegate Nance','','inherit','open','open','','831-revision-v1','','','2013-10-23 02:57:41','2013-10-23 02:57:41','',831,'http://www.earthhertzrecords.com/2013/10/831-revision-v1/',0,'revision','',0),(1072,1,'2013-10-23 02:59:06','2013-10-23 02:59:06','<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk','Applegate Nance','','inherit','open','open','','722-revision-v1','','','2013-10-23 02:59:06','2013-10-23 02:59:06','',722,'http://www.earthhertzrecords.com/2013/10/722-revision-v1/',0,'revision','',0),(1073,1,'2013-10-23 03:14:51','2013-10-23 03:14:51','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n<table width=\"560\" border=\"0\" cellspacing=\"2\" cellpadding=\"2\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Rover is a 35 foot GM Coach, a former Greyhound, that has found a new skin as a mobile recording studio since 1982 when Bob Skye created Skyelabs Recording in her.<strong>Formerly the Skyelabs Mobile Unit, Rover was very active in teh 80\'s. Rover is now a part of the Earth Hertz Productions repertoire of studio equipment.</strong>Skyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Margouleff became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder.While Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).Below are some of the sessions from Rover\'s past...\r\n\r\n<strong>Past Project List as Bob Skye and SkyeLabs Mobile</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"280\">Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams</td>\r\n<td width=\"280\">Billy Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><strong> Recent Project List as Robert Xeno and Earthlabs Mobile</strong>\r\nTweeter Pie\r\nApplegate Nance\r\nJoshua Ayers\r\nHannah Mae\r\nThe Elly Maze\r\nMeredythe & The Recycle Kids\r\nGlen Spreen\r\nTractor Toe\r\nHooker\r\nMatt Guertin\'s Radar Tower\r\nThe Billy David Band\r\nJoe Guitar Hughes\r\nGtr Slim\r\nLinda Chorney</td>\r\n</tr>\r\n</tbody>\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','publish','open','open','','earthlabs-mobile-unit-now-in-nashville-tn','','','2013-11-20 00:54:20','2013-11-20 00:54:20','',0,'http://www.earthhertzrecords.com/?p=1073',0,'post','',0),(1074,1,'2013-10-23 03:14:51','2013-10-23 03:14:51','','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 03:14:51','2013-10-23 03:14:51','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1075,1,'2013-10-23 03:31:21','2013-10-23 03:31:21','','Rover 2011-06-12','','inherit','open','open','','rover_20110612_4_560','','','2013-10-23 03:31:21','2013-10-23 03:31:21','',1073,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg',0,'attachment','image/jpeg',0),(1076,1,'2013-10-23 03:34:00','2013-10-23 03:34:00','<img src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" alt=\"Rover 2011-06-12\" width=\"560\" height=\"372\" class=\"alignnone size-full wp-image-1075\" />','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 03:34:00','2013-10-23 03:34:00','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1077,1,'2013-10-23 03:36:12','2013-10-23 03:36:12','<img src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" alt=\"Rover 2011-06-12\" width=\"560\" height=\"372\" class=\"alignnone size-full wp-image-1075\" />\r\n\r\n\r\n\r\n\r\n\r\n\r\nThe Grammy winning “Tributes To Miles”\r\nDave Mathews\r\nBruce Hornsby\r\nKeb ‘Mo’\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone’\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52’s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 03:36:12','2013-10-23 03:36:12','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1078,1,'2013-10-23 13:25:51','2013-10-23 13:25:51','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\n<table width=\"560\" border=\"0\" cellspacing=\"2\" cellpadding=\"2\">\n<tbody>\n<tr>\n<td colspan=\"2\">Rover is a 35 foot GM Coach, a former Greyhound, that has found a new skin as a mobile recording studio since 1982 when Bob Skye created Skyelabs Recording in her.<strong>Formerly the Skyelabs Mobile Unit, Rover was very active in teh 80\'s. Rover is now a part of the Earth Hertz Productions repertoire of studio equipment.</strong>Skyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Margouleff became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder.While Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\n\nBelow are some of the sessions from Rover\'s past...\n\n<strong>Past Project List as Bob Skye and SkyeLabs Mobile</strong></td>\n</tr>\n<tr>\n<td width=\"280\">Grammy winning \"Tributes To Miles\"\nDave Mathews\nBruce Hornsby\nKeb \'Mo\'\nSammy Hagar\nBrian Setzer\nOzzy Osbourne\nVan Morrison\nHanson\nHot Tuna\nU2\nStanley Turrentine\nJackson Browne\nRoomful of Blues\nArrested Development\nCraig Chaquico\nRussian National Orchestra\nPearl jam\nHerbie Hancock\nGreg Allman\nJoe Louis Walker\nCrowded House\nChris Isaak\nAC/DC\nMarty Balin\nDavid Bowie\nSan Francisco Opera\nJacques Cousteau\nJudy Collins\nTony-Toni_Tone\'\nClayton-Hamilton Jazz Orchestra\nLos Lobos\nCracker\nJohn Hiatt\nAnita Baker\nEarl Klugh\nNational Public Radio\nBobby McFerrin\nB-52\'s\nJimmy Smith\nTodd Rundgren\nCarmen McRae\n4 Non Blondes\nToots Thielemans\nRonnie James Dio\nKenny Burrell\nSantana\nJoe Williams</td>\n<td width=\"280\">Billy Preston\nChick Corea\nHarry Belafonte\nCowboy Junkies\nPaul Williams\nPeter, Paul, and Mary\nAl Jarreau\nLes McCann\nRobert Cray\nNeil Young\nSan Jose Symphony\nCrosby, Stills & Nash\nHawkins Family\nKirk Hammett\nMiles Davis\nKenny Loggins\nBonham\nJoe Pass\nHuey Lewis\nAmerica\nAaron Neville\nJohn Denver\nTestament\nRay Brown\nHolly Near\nGreg Kihn\nThe Yellow Jackets\nJoe Satriani\nBob Hope\nChambers Bros\nSteve Miller\nDiane Shuur\nTaj Majal\nEddie Money\nGrace Slick\nJesse Colin Young\nABC in Concert\nDirectTV\nKRQR\nKFOG\nKRON\nKOME\nKSAN\nWMAL\nWNET\nWBGO\nWGBH</td>\n</tr>\n<tr>\n<td colspan=\"2\">\n<strong> Recent Project List as Robert Xeno and Earthlabs Mobile</strong>\nTweeter Pie\nApplegate Nance\nAndi Marie Tillman\nJoshua Ayers\nHannah Mae\nThe Elly Maze\nMeredythe & The Recycle Kids\nGlen Spreen\nTractor Toe\nHooker\nMatt Guertin\'s Radar Tower\nThe Billy David Band\nJoe Guitar Hughes\nGtr Slim\nLinda Chorney</td>\n</tr>\n</tbody>\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-autosave-v1','','','2013-10-23 13:25:51','2013-10-23 13:25:51','',1073,'http://www.earthhertzrecords.com/2013/10/1073-autosave-v1/',0,'revision','',0),(1081,1,'2013-10-23 03:45:37','2013-10-23 03:45:37','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n\r\n<code>\r\n<table cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n\r\n<tr>\r\n <td>\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n </td>\r\n <td>\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n\r\n </td>\r\n</tr>\r\n</table>\r\n</code>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 03:45:37','2013-10-23 03:45:37','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1079,1,'2013-10-23 03:44:12','2013-10-23 03:44:12','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n\r\n\r\n<table cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td colspan=\"2\">\r\n Past Clients List\r\n </td>\r\n\r\n</tr>\r\n<tr>\r\n <td>\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n </td>\r\n <td>\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n\r\n </td>\r\n</tr>\r\n</table>\r\n\r\n','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 03:44:12','2013-10-23 03:44:12','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1080,1,'2013-10-23 03:45:04','2013-10-23 03:45:04','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n\r\n<code>\r\n<table cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td colspan=\"2\">\r\n Past Clients List\r\n </td>\r\n\r\n</tr>\r\n<tr>\r\n <td>\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n </td>\r\n <td>\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n\r\n </td>\r\n</tr>\r\n</table>\r\n</code>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 03:45:04','2013-10-23 03:45:04','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1082,1,'2013-10-23 03:49:43','2013-10-23 03:49:43','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n\r\n<code>\r\n<table cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td>\r\n\r\nHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH\r\n<!--more-->\r\n </td><td>\r\n<tr>\r\n\r\n</tr><tr>\r\n <td>\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n </td>\r\n <td>\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n\r\n </td>\r\n</tr>\r\n</td></tr></table>\r\n</code>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 03:49:43','2013-10-23 03:49:43','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1083,1,'2013-10-23 03:53:36','2013-10-23 03:53:36','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n\r\n<code>\r\n<table cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td>\r\n\r\nFormerly the Skyelabs Mobile Uniote, Rover was very active in teh 80\'s. Check out a few of the former sessions list!\r\n<!--more-->\r\n </td><td>\r\n<tr>\r\n\r\n</tr><tr>\r\n <td>\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n </td>\r\n <td>\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n\r\n </td>\r\n</tr>\r\n</td></tr></table>\r\n</code>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 03:53:36','2013-10-23 03:53:36','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1084,1,'2013-10-23 03:54:11','2013-10-23 03:54:11','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n<table cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td>\r\n\r\nFormerly the Skyelabs Mobile Uniote, Rover was very active in teh 80\'s. Check out a few of the former sessions list!\r\n<!--more-->\r\n </td><td>\r\n<tr>\r\n\r\n</tr><tr>\r\n <td>\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n </td>\r\n <td>\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n</td>\r\n</tr>\r\n</td></tr></table>\r\n','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 03:54:11','2013-10-23 03:54:11','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1086,1,'2013-10-23 03:57:43','2013-10-23 03:57:43','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n<table cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td>\r\n\r\nFormerly the Skyelabs Mobile Uniote, Rover was very active in teh 80\'s. Check out a few of the former sessions list!\r\n\r\nSkyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Bob became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder. \r\n\r\nWhile Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n<!--more-->\r\n </td>\r\n</tr>\r\n<tr>\r\n <td>\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n </td>\r\n <td>\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n</td>\r\n</tr>\r\n</table>\r\n','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 03:57:43','2013-10-23 03:57:43','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1085,1,'2013-10-23 03:55:11','2013-10-23 03:55:11','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n<table cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td>\r\n\r\nFormerly the Skyelabs Mobile Uniote, Rover was very active in teh 80\'s. Check out a few of the former sessions list!\r\n\r\nSkyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Bob became my first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder (check the video on the right). \r\n\r\nWhile Bob and Malcolm were making hits with Stevie, I was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group), and I found new interests in acoustics. I added John to my list of favorite gurus in the industry. See the Electro/Acoustic Consulting Page for more about John and my affinity for better audio through smart acoustics.\r\n\r\nYou can find Bob at Mi Casa Multimedia. Aside from the hundreds, if not thousands, of projects Robert has done over the years, he and I have managed to cross paths on many occasions to do some great location recordings with Rover. \r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n\r\n<!--more-->\r\n </td><td>\r\n<tr>\r\n\r\n</tr><tr>\r\n <td>\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n </td>\r\n <td>\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n</td>\r\n</tr>\r\n</td></tr></table>\r\n','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 03:55:11','2013-10-23 03:55:11','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1087,1,'2013-10-23 03:58:11','2013-10-23 03:58:11','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n<table width=\"560\" cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td>\r\n\r\nFormerly the Skyelabs Mobile Uniote, Rover was very active in teh 80\'s. Check out a few of the former sessions list!\r\n\r\nSkyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Bob became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder. \r\n\r\nWhile Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n<!--more-->\r\n </td>\r\n</tr>\r\n<tr>\r\n <td>\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n </td>\r\n <td>\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n</td>\r\n</tr>\r\n</table>\r\n','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 03:58:11','2013-10-23 03:58:11','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1088,1,'2013-10-23 03:58:55','2013-10-23 03:58:55','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n<table width=\"560\" cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td>\r\n\r\nFormerly the Skyelabs Mobile Uniote, Rover was very active in teh 80\'s. Check out a few of the former sessions list!\r\n\r\nSkyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Bob became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder. \r\n\r\nWhile Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n<!--more-->\r\n </td>\r\n</tr>\r\n<tr>\r\n <td>\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\n </td>\r\n <td>\r\n\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n</td>\r\n</tr>\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 03:58:55','2013-10-23 03:58:55','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1089,1,'2013-10-23 03:59:38','2013-10-23 03:59:38','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n<table width=\"560\" cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td>\r\n\r\nFormerly the Skyelabs Mobile Uniote, Rover was very active in teh 80\'s. Check out a few of the former sessions list!\r\n\r\nSkyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Bob became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder. \r\n\r\nWhile Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n<!--more-->\r\n </td>\r\n</tr>\r\n<tr>\r\n <td width=\"280\">\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\n</td>\r\n \r\n<td width=\"280\">\r\n\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n</td>\r\n</tr>\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 03:59:38','2013-10-23 03:59:38','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1090,1,'2013-10-23 04:00:03','2013-10-23 04:00:03','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n<table width=\"560\" cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td>\r\n\r\nFormerly the Skyelabs Mobile Uniote, Rover was very active in teh 80\'s. Check out a few of the former sessions list!\r\n\r\nSkyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Bob became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder. \r\n\r\nWhile Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n<!--more-->\r\n </td>\r\n</tr>\r\n<tr>\r\n <td width=\"280\">\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\n\r\n</td>\r\n \r\n<td width=\"280\">\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n</td>\r\n</tr>\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 04:00:03','2013-10-23 04:00:03','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1091,1,'2013-10-23 04:00:27','2013-10-23 04:00:27','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n<table width=\"560\" cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td colspan=\"2\">\r\n\r\nFormerly the Skyelabs Mobile Uniote, Rover was very active in teh 80\'s. Check out a few of the former sessions list!\r\n\r\nSkyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Bob became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder. \r\n\r\nWhile Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n<!--more-->\r\n </td>\r\n</tr>\r\n<tr>\r\n <td width=\"280\">\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\n\r\n</td>\r\n \r\n<td width=\"280\">\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n</td>\r\n</tr>\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 04:00:27','2013-10-23 04:00:27','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1092,1,'2013-10-23 04:01:24','2013-10-23 04:01:24','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n<table width=\"560\" cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td colspan=\"2\">\r\n\r\nFormerly the Skyelabs Mobile Uniote, Rover was very active in teh 80\'s. Check out a few of the former sessions list!\r\n\r\nSkyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Margouleff became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder. \r\n\r\nWhile Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n<!--more-->\r\n </td>\r\n</tr>\r\n<tr>\r\n <td width=\"280\">\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\n\r\n</td>\r\n \r\n<td width=\"280\">\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n</td>\r\n</tr>\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 04:01:24','2013-10-23 04:01:24','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1093,1,'2013-10-23 04:06:45','2013-10-23 04:06:45','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n<table width=\"560\" cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td colspan=\"2\">\r\n\r\nFormerly the Skyelabs Mobile Unit, Rover was very active in teh 80\'s. Check out a few of the former sessions list!\r\nRover is now a part of the Earth Hertz Productions repertoire of studio equipment.\r\n\r\nSkyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Margouleff became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder. \r\n\r\nWhile Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n<!--more-->\r\n </td>\r\n</tr>\r\n<tr>\r\n <td width=\"280\">\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\n\r\n</td>\r\n \r\n<td width=\"280\">\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n</td>\r\n</tr>\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 04:06:45','2013-10-23 04:06:45','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1094,1,'2013-10-23 04:07:41','2013-10-23 04:07:41','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n<table width=\"560\" cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td colspan=\"2\">\r\n\r\n<strong>Formerly the Skyelabs Mobile Unit, Rover was very active in teh 80\'s. Rover is now a part of the Earth Hertz Productions repertoire of studio equipment.</strong>\r\n\r\nSkyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Margouleff became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder. \r\n\r\nWhile Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n<!--more-->\r\n </td>\r\n</tr>\r\n<tr>\r\n <td width=\"280\">\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\n\r\n</td>\r\n \r\n<td width=\"280\">\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n</td>\r\n</tr>\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 04:07:41','2013-10-23 04:07:41','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1095,1,'2013-10-23 04:13:07','2013-10-23 04:13:07','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n<table width=\"560\" cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td colspan=\"2\">\r\nRover is a 35 foot GM Coach, a former Greyhound, that has found a new skin as a mobile recording studio since 1982 when Bob Skye created Skyelabs Recording in her.\r\n\r\n RECENT CLIENT LIST as ROBERT XENO and EARTHLABS MOBILE\r\n\r\n Tweeter Pie\r\n Applegate Nance\r\n Andi Marie Tillman\r\n Josh Ayers\r\n The Elly Maze\r\n Meredythe & The Recycle Kids\r\n Glen Spreen\r\n Tractor Toe\r\n Hooker\r\n Neil Merryweather\r\n Joe Guitar Hughes\r\n Gtr Slim\r\n Linda Chorney\r\n\r\n\r\n\r\n<strong>Formerly the Skyelabs Mobile Unit, Rover was very active in teh 80\'s. Rover is now a part of the Earth Hertz Productions repertoire of studio equipment.</strong>\r\n\r\nSkyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Margouleff became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder. \r\n\r\nWhile Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n<!--more-->\r\n </td>\r\n</tr>\r\n<tr>\r\n <td width=\"280\">\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\n\r\n</td>\r\n \r\n<td width=\"280\">\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n</td>\r\n</tr>\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 04:13:07','2013-10-23 04:13:07','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1096,1,'2013-10-23 04:14:47','2013-10-23 04:14:47','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n<table width=\"560\" cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td colspan=\"2\">\r\nRover is a 35 foot GM Coach, a former Greyhound, that has found a new skin as a mobile recording studio since 1982 when Bob Skye created Skyelabs Recording in her.\r\n\r\n<strong>Formerly the Skyelabs Mobile Unit, Rover was very active in teh 80\'s. Rover is now a part of the Earth Hertz Productions repertoire of studio equipment.</strong>\r\n\r\nSkyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Margouleff became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder. \r\n\r\nWhile Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n<!--more-->\r\n </td>\r\n</tr>\r\n<tr>\r\n <td width=\"280\">\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\n\r\n</td>\r\n \r\n<td width=\"280\">\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>\r\n\r\n<strong> RECENT CLIENT LIST as ROBERT XENO and EARTHLABS MOBILE</strong>\r\n Tweeter Pie\r\n Applegate Nance\r\n Andi Marie Tillman\r\n Josh Ayers\r\n The Elly Maze\r\n Meredythe & The Recycle Kids\r\n Glen Spreen\r\n Tractor Toe\r\n Hooker\r\n Neil Merryweather\r\n Joe Guitar Hughes\r\n Gtr Slim\r\n Linda Chorney\r\n\r\n</td>\r\n</tr>\r\n\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 04:14:47','2013-10-23 04:14:47','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1097,1,'2013-10-23 04:15:54','2013-10-23 04:15:54','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n\r\n<table width=\"560\" cellspacing=\"2\" cellpadding=\"2\" border=\"0\">\r\n<tr>\r\n <td colspan=\"2\">\r\nRover is a 35 foot GM Coach, a former Greyhound, that has found a new skin as a mobile recording studio since 1982 when Bob Skye created Skyelabs Recording in her.\r\n\r\n<strong>Formerly the Skyelabs Mobile Unit, Rover was very active in teh 80\'s. Rover is now a part of the Earth Hertz Productions repertoire of studio equipment.</strong>\r\n\r\nSkyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Margouleff became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder. \r\n\r\nWhile Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n<!--more-->\r\n </td>\r\n</tr>\r\n<tr>\r\n <td width=\"280\">\r\nThe Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams\r\n\r\n</td>\r\n \r\n<td width=\"280\">\r\nBilly Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH\r\n</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>\r\n\r\n<strong> RECENT CLIENT LIST as ROBERT XENO and EARTHLABS MOBILE</strong>\r\n Tweeter Pie\r\n Applegate Nance\r\n Andi Marie Tillman\r\n Joshua Ayers\r\n Hannah Mae\r\n The Elly Maze\r\n Meredythe & The Recycle Kids\r\n Glen Spreen\r\n Tractor Toe\r\n Hooker\r\n Matt Guertin\'s Radar Tower\r\n The Billy David Band\r\n Joe Guitar Hughes\r\n Gtr Slim\r\n Linda Chorney\r\n\r\n</td>\r\n</tr>\r\n\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 04:15:54','2013-10-23 04:15:54','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1098,1,'2013-10-23 04:17:16','2013-10-23 04:17:16','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n<table width=\"560\" border=\"0\" cellspacing=\"2\" cellpadding=\"2\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Rover is a 35 foot GM Coach, a former Greyhound, that has found a new skin as a mobile recording studio since 1982 when Bob Skye created Skyelabs Recording in her.<strong>Formerly the Skyelabs Mobile Unit, Rover was very active in teh 80\'s. Rover is now a part of the Earth Hertz Productions repertoire of studio equipment.</strong>\r\n\r\nSkyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Margouleff became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder.\r\n\r\nWhile Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n<!--more--></td>\r\n</tr>\r\n<tr>\r\n<td width=\"280\">The Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams</td>\r\n<td width=\"280\">Billy Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH</td>\r\n</tr>\r\n<tr>\r\n<td><strong> RECENT CLIENT LIST as ROBERT XENO and EARTHLABS MOBILE</strong>\r\nTweeter Pie\r\nApplegate Nance\r\nAndi Marie Tillman\r\nJoshua Ayers\r\nHannah Mae\r\nThe Elly Maze\r\nMeredythe & The Recycle Kids\r\nGlen Spreen\r\nTractor Toe\r\nHooker\r\nMatt Guertin\'s Radar Tower\r\nThe Billy David Band\r\nJoe Guitar Hughes\r\nGtr Slim\r\nLinda Chorney</td>\r\n</tr>\r\n</tbody>\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 04:17:16','2013-10-23 04:17:16','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1099,1,'2013-10-23 04:17:57','2013-10-23 04:17:57','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n<table width=\"560\" border=\"0\" cellspacing=\"2\" cellpadding=\"2\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Rover is a 35 foot GM Coach, a former Greyhound, that has found a new skin as a mobile recording studio since 1982 when Bob Skye created Skyelabs Recording in her.<strong>Formerly the Skyelabs Mobile Unit, Rover was very active in teh 80\'s. Rover is now a part of the Earth Hertz Productions repertoire of studio equipment.</strong>Skyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Margouleff became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder.\r\n\r\nWhile Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n<!--more-->\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"280\">The Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams</td>\r\n<td width=\"280\">Billy Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH</td>\r\n</tr>\r\n<tr>\r\n<td><strong> RECENT CLIENT LIST as ROBERT XENO and EARTHLABS MOBILE</strong>\r\nTweeter Pie\r\nApplegate Nance\r\nAndi Marie Tillman\r\nJoshua Ayers\r\nHannah Mae\r\nThe Elly Maze\r\nMeredythe & The Recycle Kids\r\nGlen Spreen\r\nTractor Toe\r\nHooker\r\nMatt Guertin\'s Radar Tower\r\nThe Billy David Band\r\nJoe Guitar Hughes\r\nGtr Slim\r\nLinda Chorney</td>\r\n</tr>\r\n</tbody>\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 04:17:57','2013-10-23 04:17:57','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1101,1,'2013-10-23 12:07:11','2013-10-23 12:07:11','We are very happy to support our artists in this year\'s 56th Grammy® Awards 1st Round Balloting.\r\nTheir entries and category listings are as follows:\r\n\r\n<strong>Best New Artist</strong>\r\nApplegate Nance\r\n\r\n<strong>Best Pop Vocal Album</strong>\r\nTHE GOOD, BAD, AND THE SUNNY\r\nApplegate Nance\r\n\r\n<strong>Best Pop Instrumental</strong>\r\nDREAMS\r\nGlen Spreen\r\n\r\n<strong>Best Engineered Album, Non-Classical</strong>\r\nDREAMS\r\nGlen Spreen, engineer; Eloa Xeno, mastering engineer\r\n<strong>Album Of The Year</strong>\r\nMAGIC\r\nThe Billy David Band\r\n\r\n<strong>Song Of The Year</strong>\r\nMagic\r\nBilly David Millican (Billy David Band)\r\n\r\n<strong>Best Pop Duo/Group Performance</strong>\r\nMagic\r\nBilly David Band\r\n\r\n<strong>Best Reggae Album</strong>\r\nMAGIC\r\nThe Billy David Band\r\n\r\n<strong>Best Rock Album</strong>\r\nMathias Meets the World\r\nRadarTower\r\n\r\n<strong>Best Music Video (Videos are under the Video Menu Tab)</strong>\r\nWaste\r\nJoshua Ayers\r\n\r\nGuns and Run\r\nHannah Mae\r\n\r\nAnd we are also proud of our production credits on Linda Chorney\'s new release.\r\n<strong>Best Pop Solo Performance</strong>\r\nWhen I Sing\r\nLinda Chorney',' The Road to the 56th Grammy® Awards','','publish','open','open','','1101','','','2013-11-20 00:53:32','2013-11-20 00:53:32','',0,'http://www.earthhertzrecords.com/?p=1101',0,'post','',0),(1102,1,'2013-10-23 12:07:11','2013-10-23 12:07:11','We are very happy to support our artists in this years 56th Grammy® Awards 1st Round Balloting.\r\nTheir entries and category listings are as follows;\r\n\r\n<strong>Best New Artist</strong>\r\n Applegate Nance\r\n\r\n<strong>Best Pop Vocal Album</strong>\r\n THE GOOD, BAD, AND THE SUNNY\r\n Applegate Nance\r\n\r\n\r\n<strong>Best Pop Instrumental</strong>\r\n DREAMS\r\n Glen Spreen\r\n\r\n<strong>Best Engineered Album, Non-Classical</strong>\r\n DREAMS\r\n Glen Spreen, engineer; Eloa Xeno, mastering engineer (Glen Spreen)\r\n<strong>Album Of The Year</strong>\r\n MAGIC\r\n The Billy David Band\r\n\r\n<strong>Song Of The Year</strong>\r\n Magic\r\n Billy David Millican (Billy David Band)\r\n\r\n<strong>Best Pop Duo/Group Performance</strong>\r\n Magic\r\n Billy David Band\r\n\r\n<strong>Best Reggae Album</strong>\r\n MAGIC\r\n The Billy David Band\r\n\r\n<strong>Best Rock Album</strong>\r\n MATHIAS MEETS THE WORLD\r\n RadarTower\r\n\r\n<strong>Best Music Video (Videos are under the Video Menu Tab)</strong>\r\n Waste\r\n Joshua \r\n \r\n Guns and Run\r\n Hannah Mae\r\nAnd we are also proud of our production credits on Linda Chorney\'s new release.\r\n<strong>Best Pop Solo Performance</strong>\r\n When I Sing\r\n Linda Chorney','','','inherit','open','open','','1101-revision-v1','','','2013-10-23 12:07:11','2013-10-23 12:07:11','',1101,'http://www.earthhertzrecords.com/2013/10/1101-revision-v1/',0,'revision','',0),(1137,1,'2013-10-23 14:06:09','2013-10-23 14:06:09','We are very happy to support our artists in this years 56th Grammy® Awards 1st Round Balloting.\r\nTheir entries and category listings are as follows:\r\n\r\n<strong>Best New Artist</strong>\r\nApplegate Nance\r\n\r\n<strong>Best Pop Vocal Album</strong>\r\nTHE GOOD, BAD, AND THE SUNNY\r\nApplegate Nance\r\n\r\n<strong>Best Pop Instrumental</strong>\r\nDREAMS\r\nGlen Spreen\r\n\r\n<strong>Best Engineered Album, Non-Classical</strong>\r\nDREAMS\r\nGlen Spreen, engineer; Eloa Xeno, mastering engineer\r\n<strong>Album Of The Year</strong>\r\nMAGIC\r\nThe Billy David Band\r\n\r\n<strong>Song Of The Year</strong>\r\nMagic\r\nBilly David Millican (Billy David Band)\r\n\r\n<strong>Best Pop Duo/Group Performance</strong>\r\nMagic\r\nBilly David Band\r\n\r\n<strong>Best Reggae Album</strong>\r\nMAGIC\r\nThe Billy David Band\r\n\r\n<strong>Best Rock Album</strong>\r\nMathias Meets the World\r\nRadarTower\r\n\r\n<strong>Best Music Video (Videos are under the Video Menu Tab)</strong>\r\nWaste\r\nJoshua Ayers\r\n\r\nGuns and Run\r\nHannah Mae\r\n\r\nAnd we are also proud of our production credits on Linda Chorney\'s new release.\r\n<strong>Best Pop Solo Performance</strong>\r\nWhen I Sing\r\nLinda Chorney',' The Road to the 56th Grammy® Awards','','inherit','open','open','','1101-revision-v1','','','2013-10-23 14:06:09','2013-10-23 14:06:09','',1101,'http://www.earthhertzrecords.com/2013/10/1101-revision-v1/',0,'revision','',0),(1103,1,'2013-10-23 12:08:39','2013-10-23 12:08:39','We are very happy to support our artists in this years 56th Grammy® Awards 1st Round Balloting.\r\nTheir entries and category listings are as follows;\r\n\r\n<strong>Best New Artist</strong>\r\n Applegate Nance\r\n\r\n<strong>Best Pop Vocal Album</strong>\r\n THE GOOD, BAD, AND THE SUNNY\r\n Applegate Nance\r\n\r\n\r\n<strong>Best Pop Instrumental</strong>\r\n DREAMS\r\n Glen Spreen\r\n\r\n<strong>Best Engineered Album, Non-Classical</strong>\r\n DREAMS\r\n Glen Spreen, engineer; Eloa Xeno, mastering engineer (Glen Spreen)\r\n<strong>Album Of The Year</strong>\r\n MAGIC\r\n The Billy David Band\r\n\r\n<strong>Song Of The Year</strong>\r\n Magic\r\n Billy David Millican (Billy David Band)\r\n\r\n<strong>Best Pop Duo/Group Performance</strong>\r\n Magic\r\n Billy David Band\r\n\r\n<strong>Best Reggae Album</strong>\r\n MAGIC\r\n The Billy David Band\r\n\r\n<strong>Best Rock Album</strong>\r\n MATHIAS MEETS THE WORLD\r\n RadarTower\r\n\r\n<strong>Best Music Video (Videos are under the Video Menu Tab)</strong>\r\n Waste\r\n Joshua \r\n \r\n Guns and Run\r\n Hannah Mae\r\nAnd we are also proud of our production credits on Linda Chorney\'s new release.\r\n<strong>Best Pop Solo Performance</strong>\r\n When I Sing\r\n Linda Chorney','56th Grammy® Awards','','inherit','open','open','','1101-revision-v1','','','2013-10-23 12:08:39','2013-10-23 12:08:39','',1101,'http://www.earthhertzrecords.com/2013/10/1101-revision-v1/',0,'revision','',0),(1104,1,'2013-10-23 12:22:52','2013-10-23 12:22:52','','Grammy® Awards','','inherit','open','open','','grammy200','','','2013-10-23 12:22:52','2013-10-23 12:22:52','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Grammy200.jpg',0,'attachment','image/jpeg',0),(1105,1,'2013-10-23 12:25:39','2013-10-23 12:25:39','1','Grammy® Awards','1','inherit','open','open','','grammy200-2','','','2013-10-23 12:25:39','2013-10-23 12:25:39','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Grammy2001.jpg',0,'attachment','image/jpeg',0),(1108,1,'2013-10-23 12:39:12','2013-10-23 12:39:12','We are very happy to support our artists in this years 56th Grammy® Awards 1st Round Balloting.\r\nTheir entries and category listings are as follows;\r\n\r\n<strong>Best New Artist</strong>\r\n Applegate Nance\r\n\r\n<strong>Best Pop Vocal Album</strong>\r\n THE GOOD, BAD, AND THE SUNNY\r\n Applegate Nance\r\n\r\n<strong>Best Pop Instrumental</strong>\r\n DREAMS\r\n Glen Spreen\r\n\r\n<strong>Best Engineered Album, Non-Classical</strong>\r\n DREAMS\r\n Glen Spreen, engineer; Eloa Xeno, mastering engineer\r\n<strong>Album Of The Year</strong>\r\n MAGIC\r\n The Billy David Band\r\n\r\n<strong>Song Of The Year</strong>\r\n Magic\r\n Billy David Millican (Billy David Band)\r\n\r\n<strong>Best Pop Duo/Group Performance</strong>\r\n Magic\r\n Billy David Band\r\n\r\n<strong>Best Reggae Album</strong>\r\n MAGIC\r\n The Billy David Band\r\n\r\n<strong>Best Rock Album</strong>\r\n Mathias Meets the World\r\n RadarTower\r\n\r\n<strong>Best Music Video (Videos are under the Video Menu Tab)</strong>\r\n Waste\r\n Joshua \r\n \r\n Guns and Run\r\n Hannah Mae\r\n\r\nAnd we are also proud of our production credits on Linda Chorney\'s new release.\r\n<strong>Best Pop Solo Performance</strong>\r\n When I Sing\r\n Linda Chorney',' The Road to the 56th Grammy® Awards','','inherit','open','open','','1101-revision-v1','','','2013-10-23 12:39:12','2013-10-23 12:39:12','',1101,'http://www.earthhertzrecords.com/2013/10/1101-revision-v1/',0,'revision','',0),(1106,1,'2013-10-23 12:28:57','2013-10-23 12:28:57','We are very happy to support our artists in this years 56th Grammy® Awards 1st Round Balloting.\r\nTheir entries and category listings are as follows;\r\n\r\n<strong>Best New Artist</strong>\r\n Applegate Nance\r\n\r\n<strong>Best Pop Vocal Album</strong>\r\n THE GOOD, BAD, AND THE SUNNY\r\n Applegate Nance\r\n\r\n\r\n<strong>Best Pop Instrumental</strong>\r\n DREAMS\r\n Glen Spreen\r\n\r\n<strong>Best Engineered Album, Non-Classical</strong>\r\n DREAMS\r\n Glen Spreen, engineer; Eloa Xeno, mastering engineer (Glen Spreen)\r\n<strong>Album Of The Year</strong>\r\n MAGIC\r\n The Billy David Band\r\n\r\n<strong>Song Of The Year</strong>\r\n Magic\r\n Billy David Millican (Billy David Band)\r\n\r\n<strong>Best Pop Duo/Group Performance</strong>\r\n Magic\r\n Billy David Band\r\n\r\n<strong>Best Reggae Album</strong>\r\n MAGIC\r\n The Billy David Band\r\n\r\n<strong>Best Rock Album</strong>\r\n MATHIAS MEETS THE WORLD\r\n RadarTower\r\n\r\n<strong>Best Music Video (Videos are under the Video Menu Tab)</strong>\r\n Waste\r\n Joshua \r\n \r\n Guns and Run\r\n Hannah Mae\r\nAnd we are also proud of our production credits on Linda Chorney\'s new release.\r\n<strong>Best Pop Solo Performance</strong>\r\n When I Sing\r\n Linda Chorney',' The Road to the 56th Grammy® Awards','','inherit','open','open','','1101-revision-v1','','','2013-10-23 12:28:57','2013-10-23 12:28:57','',1101,'http://www.earthhertzrecords.com/2013/10/1101-revision-v1/',0,'revision','',0),(1107,1,'2013-10-23 12:31:07','2013-10-23 12:31:07','We are very happy to support our artists in this years 56th Grammy® Awards 1st Round Balloting.\r\nTheir entries and category listings are as follows;\r\n\r\n<strong>Best New Artist</strong>\r\n Applegate Nance\r\n\r\n<strong>Best Pop Vocal Album</strong>\r\n THE GOOD, BAD, AND THE SUNNY\r\n Applegate Nance\r\n\r\n<strong>Best Pop Instrumental</strong>\r\n DREAMS\r\n Glen Spreen\r\n\r\n<strong>Best Engineered Album, Non-Classical</strong>\r\n DREAMS\r\n Glen Spreen, engineer; Eloa Xeno, mastering engineer (Glen Spreen)\r\n<strong>Album Of The Year</strong>\r\n MAGIC\r\n The Billy David Band\r\n\r\n<strong>Song Of The Year</strong>\r\n Magic\r\n Billy David Millican (Billy David Band)\r\n\r\n<strong>Best Pop Duo/Group Performance</strong>\r\n Magic\r\n Billy David Band\r\n\r\n<strong>Best Reggae Album</strong>\r\n MAGIC\r\n The Billy David Band\r\n\r\n<strong>Best Rock Album</strong>\r\n Mathias Meets the World\r\n RadarTower\r\n\r\n<strong>Best Music Video (Videos are under the Video Menu Tab)</strong>\r\n Waste\r\n Joshua \r\n \r\n Guns and Run\r\n Hannah Mae\r\n\r\nAnd we are also proud of our production credits on Linda Chorney\'s new release.\r\n<strong>Best Pop Solo Performance</strong>\r\n When I Sing\r\n Linda Chorney',' The Road to the 56th Grammy® Awards','','inherit','open','open','','1101-revision-v1','','','2013-10-23 12:31:07','2013-10-23 12:31:07','',1101,'http://www.earthhertzrecords.com/2013/10/1101-revision-v1/',0,'revision','',0),(1110,1,'2013-10-23 12:56:28','2013-10-23 12:56:28','<img class=\" wp-image-1123 alignnone\" alt=\"HajiTruckMain_001_Brown_900-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckMain_001_Brown_900-2.gif\" width=\"560\" height=\"380\" />\r\n\r\n<strong>Haji Mobile Unit</strong>\r\nBuilt in 1972 by Alex Kazanegras and John Fiore\r\n20 Gold and 2 Platinum albums. Truly a legendary part of music history.\r\n\r\nElvis Presley, Frank Sinatra, Barbara Streisand, Mott The Hoople, The Byrds, The Association, Canned Heat, Earth Wind and Fire, Parliment Funkadelic, Loggins and Messina, Joan Baez, Joni Mitchel, Janis Joplin, Neil Young, Firefall, Pope John Paul II, many many more.\r\n\r\n<img class=\"alignnone size-large wp-image-1113\" alt=\"HajiTruckClients\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckClients-996x1024.jpg\" width=\"650\" height=\"668\" />\r\n\r\nWith one of 14 Frank DeMideo API Consoles, Haji had a sound of her own.\r\n\r\n<img class=\"alignnone size-medium wp-image-1115\" alt=\"HajiTruckConsole_002\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckConsole_002-231x300.gif\" width=\"231\" height=\"300\" /><img class=\"size-medium wp-image-1114 alignnone\" alt=\"HajiTruckConsole_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckConsole_001-300x239.gif\" width=\"300\" height=\"239\" /><img class=\"alignnone size-medium wp-image-1117\" alt=\"HajiTruckFiore_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckFiore_001-202x300.gif\" width=\"202\" height=\"300\" /> <img class=\"alignnone size-medium wp-image-1119\" alt=\"HajiTruckRack_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckRack_001-174x300.gif\" width=\"174\" height=\"300\" /><img class=\"alignnone size-medium wp-image-1111\" alt=\"HajiTruckAmpex_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckAmpex_001-197x300.gif\" width=\"197\" height=\"300\" /><img class=\"alignnone wp-image-1116\" alt=\"HajiTruckControlFront_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckControlFront_001-300x207.gif\" width=\"560\" height=\"300\" />','The Haji Truck','','publish','open','open','','the-haji-truck','','','2013-11-20 00:50:07','2013-11-20 00:50:07','',0,'http://www.earthhertzrecords.com/?p=1110',0,'post','',0),(1111,1,'2013-10-23 12:53:26','2013-10-23 12:53:26','','HajiTruckAmpex_001','','inherit','open','open','','hajitruckampex_001','','','2013-10-23 12:53:26','2013-10-23 12:53:26','',1110,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckAmpex_001.gif',0,'attachment','image/gif',0),(1112,1,'2013-10-23 12:53:31','2013-10-23 12:53:31','','HajiTruckBrochure','','inherit','open','open','','hajitruckbrochure','','','2013-10-23 12:53:31','2013-10-23 12:53:31','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckBrochure.jpg',0,'attachment','image/jpeg',0),(1113,1,'2013-10-23 12:53:37','2013-10-23 12:53:37','','HajiTruckClients','','inherit','open','open','','hajitruckclients','','','2013-10-23 12:53:37','2013-10-23 12:53:37','',1110,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckClients.jpg',0,'attachment','image/jpeg',0),(1114,1,'2013-10-23 12:53:42','2013-10-23 12:53:42','','HajiTruckConsole_001','','inherit','open','open','','hajitruckconsole_001','','','2013-10-23 12:53:42','2013-10-23 12:53:42','',1110,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckConsole_001.gif',0,'attachment','image/gif',0),(1115,1,'2013-10-23 12:53:47','2013-10-23 12:53:47','','HajiTruckConsole_002','','inherit','open','open','','hajitruckconsole_002','','','2013-10-23 12:53:47','2013-10-23 12:53:47','',1110,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckConsole_002.gif',0,'attachment','image/gif',0),(1116,1,'2013-10-23 12:53:51','2013-10-23 12:53:51','','HajiTruckControlFront_001','','inherit','open','open','','hajitruckcontrolfront_001','','','2013-10-23 12:53:51','2013-10-23 12:53:51','',1110,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckControlFront_001.gif',0,'attachment','image/gif',0),(1117,1,'2013-10-23 12:53:56','2013-10-23 12:53:56','','HajiTruckFiore_001','','inherit','open','open','','hajitruckfiore_001','','','2013-10-23 12:53:56','2013-10-23 12:53:56','',1110,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckFiore_001.gif',0,'attachment','image/gif',0),(1118,1,'2013-10-23 12:54:00','2013-10-23 12:54:00','','HajiTruckMain_001_Brown_900','','inherit','open','open','','hajitruckmain_001_brown_900','','','2013-10-23 12:54:00','2013-10-23 12:54:00','',1110,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckMain_001_Brown_900.gif',0,'attachment','image/gif',0),(1119,1,'2013-10-23 12:54:05','2013-10-23 12:54:05','','HajiTruckRack_001','','inherit','open','open','','hajitruckrack_001','','','2013-10-23 12:54:05','2013-10-23 12:54:05','',1110,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckRack_001.gif',0,'attachment','image/gif',0),(1218,1,'2013-10-31 14:45:59','2013-10-31 14:45:59','The 1st round ballot for the 56th Grammy® Awards has ended. Musicians, labels, producers, anyone with voting member status could submit music for consideration. Apparently approximately 17,000 submissions were culled down to about 13,000 1st Round Ballot entries.\r\n\r\nOct 30th was the in the office deadline for the ballot returns. Now its a waiting game for the actual nominees to be identified and validated.\r\n\r\nThis news will become public Dec. 6th during the live from Nokia Center broadcast of this year\'s 56th Grammy® Awards Grammy Nominations Concert.\r\n\r\nOur artists are already making more music for next years entries, but with a keen eye on the 6th. Stay tuned for new singles from Hannah Mae, Joshua Ayers and Matt Guertin in the very near future. And Applegate Nance are working up an acoustic album of some live only gems.\r\n\r\nMuch more in the build up stage as the year winds down.','56th Grammy® Awards 1st Round Ballot','','publish','open','open','','56th-grammy-awards-1st-round-ballot','','','2013-11-20 00:55:56','2013-11-20 00:55:56','',0,'http://www.earthhertzrecords.com/?p=1218',0,'post','',0),(1121,1,'2013-10-23 12:56:28','2013-10-23 12:56:28','<img class=\"alignnone wp-image-1118\" alt=\"HajiTruckMain_001_Brown_900\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckMain_001_Brown_900.gif\" width=\"560\" height=\"384\" />','The Haji Truck','','inherit','open','open','','1110-revision-v1','','','2013-10-23 12:56:28','2013-10-23 12:56:28','',1110,'http://www.earthhertzrecords.com/2013/10/1110-revision-v1/',0,'revision','',0),(1122,1,'2013-10-23 13:20:03','2013-10-23 13:20:03','<img class=\" wp-image-1123 alignnone\" alt=\"HajiTruckMain_001_Brown_900-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckMain_001_Brown_900-2.gif\" width=\"560\" height=\"380\" />\n\n<strong>Haji Mobile Unit</strong>\nBuilt in 1972 by Alex Kazanegras and John Fiore\n20 Gold and 2 Platinum albums. Truly a legendary part of music history.\n\nElvis Presley, Frank Sinatra, Barbara Streisand, Mott The Hoople, The Byrds, The Association, Canned Heat, Earth Wind and Fire, Parliment Funkadelic, Loggins and Messina, Joan Baez, Joni Mitchel, Janis Joplin, Neil Young, Firefall, Pope John Paul II, many many more.\n\n<img class=\"alignnone size-large wp-image-1113\" alt=\"HajiTruckClients\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckClients-996x1024.jpg\" width=\"650\" height=\"668\" />\n\nWith one of 14 Frank DeMideo API Consoles, Haji had a sound of her own.\n\n<img class=\"alignnone size-medium wp-image-1115\" alt=\"HajiTruckConsole_002\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckConsole_002-231x300.gif\" width=\"231\" height=\"300\" /><img class=\"size-medium wp-image-1114 alignnone\" alt=\"HajiTruckConsole_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckConsole_001-300x239.gif\" width=\"300\" height=\"239\" /><img class=\"alignnone size-medium wp-image-1117\" alt=\"HajiTruckFiore_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckFiore_001-202x300.gif\" width=\"202\" height=\"300\" /> <img class=\"alignnone size-medium wp-image-1119\" alt=\"HajiTruckRack_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckRack_001-174x300.gif\" width=\"174\" height=\"300\" /><img class=\"alignnone size-medium wp-image-1111\" alt=\"HajiTruckAmpex_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckAmpex_001-197x300.gif\" width=\"197\" height=\"300\" />','The Haji Truck','','inherit','open','open','','1110-autosave-v1','','','2013-10-23 13:20:03','2013-10-23 13:20:03','',1110,'http://www.earthhertzrecords.com/2013/10/1110-autosave-v1/',0,'revision','',0),(1123,1,'2013-10-23 12:58:31','2013-10-23 12:58:31','','HajiTruckMain_001_Brown_900-2','','inherit','open','open','','hajitruckmain_001_brown_900-2','','','2013-10-23 12:58:31','2013-10-23 12:58:31','',1110,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckMain_001_Brown_900-2.gif',0,'attachment','image/gif',0),(1124,1,'2013-10-23 12:59:12','2013-10-23 12:59:12','<img class=\"alignnone wp-image-1123\" alt=\"HajiTruckMain_001_Brown_900-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckMain_001_Brown_900-2.gif\" width=\"560\" height=\"380\" />','The Haji Truck','','inherit','open','open','','1110-revision-v1','','','2013-10-23 12:59:12','2013-10-23 12:59:12','',1110,'http://www.earthhertzrecords.com/2013/10/1110-revision-v1/',0,'revision','',0),(1125,1,'2013-10-23 13:00:15','2013-10-23 13:00:15','[caption id=\"attachment_1123\" align=\"alignnone\" width=\"560\"]<img class=\" wp-image-1123\" alt=\"HajiTruckMain_001_Brown_900-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckMain_001_Brown_900-2.gif\" width=\"560\" height=\"380\" /> The haji Truck. 1972 - 1994 RIP Old Friend[/caption]','The Haji Truck','','inherit','open','open','','1110-revision-v1','','','2013-10-23 13:00:15','2013-10-23 13:00:15','',1110,'http://www.earthhertzrecords.com/2013/10/1110-revision-v1/',0,'revision','',0),(1127,1,'2013-10-23 13:07:58','2013-10-23 13:07:58','<img class=\" wp-image-1123 alignnone\" alt=\"HajiTruckMain_001_Brown_900-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckMain_001_Brown_900-2.gif\" width=\"560\" height=\"380\" />\r\n\r\nHaji.... 20 Gold and 2 Platinum albums. Truly a legendary part of music history.\r\n\r\nElvis Presley, Frank Sinatra, Barbara Streisand, Mott The Hoople, The Byrds, The Association, Canned Heat, Earth Wind and Fire, Parliment Funkadelic, Loggins and Messina, Joan Baez, Joni Mitchel, Janis Joplin, Neil Young, Firefall, Pope John Paul II, many many more.\r\n\r\n<img class=\"alignnone size-large wp-image-1113\" alt=\"HajiTruckClients\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckClients-996x1024.jpg\" width=\"650\" height=\"668\" />\r\n\r\nWith one of 14 Frank DeMideo API Consoles, Haji had a sound of her own.\r\n\r\n<img class=\"alignnone size-medium wp-image-1115\" alt=\"HajiTruckConsole_002\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckConsole_002-231x300.gif\" width=\"231\" height=\"300\" /><img class=\"alignnone size-medium wp-image-1114\" alt=\"HajiTruckConsole_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckConsole_001-300x239.gif\" width=\"300\" height=\"239\" />','The Haji Truck','','inherit','open','open','','1110-revision-v1','','','2013-10-23 13:07:58','2013-10-23 13:07:58','',1110,'http://www.earthhertzrecords.com/2013/10/1110-revision-v1/',0,'revision','',0),(1126,1,'2013-10-23 13:06:37','2013-10-23 13:06:37','[caption id=\"attachment_1123\" align=\"alignnone\" width=\"560\"]<img class=\" wp-image-1123\" alt=\"HajiTruckMain_001_Brown_900-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckMain_001_Brown_900-2.gif\" width=\"560\" height=\"380\" /> The haji Truck. 1972 - 1994 RIP Old Friend[/caption]\r\n\r\nHaji.... 20 Gold and 2 Platinum albums. Truly a legendary part of music history.\r\n\r\nElvis Presley, Frank Sinatra, Barbara Streisand, Mott The Hoople, The Byrds, The Association, Canned Heat, Earth Wind and Fire, Parliment Funkadelic, Loggins and Messina, Joan Baez, Joni Mitchel, Janis Joplin, Neil Young, Firefall, Pope John Paul II, many many more.\r\n\r\n<img class=\"alignnone size-large wp-image-1113\" alt=\"HajiTruckClients\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckClients-996x1024.jpg\" width=\"650\" height=\"668\" />\r\n\r\nWith one of 14 Frank DeMideo API Consoles, Haji had a sound of her own.\r\n\r\n<img class=\"alignnone size-medium wp-image-1115\" alt=\"HajiTruckConsole_002\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckConsole_002-231x300.gif\" width=\"231\" height=\"300\" /><img class=\"alignnone size-medium wp-image-1114\" alt=\"HajiTruckConsole_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckConsole_001-300x239.gif\" width=\"300\" height=\"239\" />','The Haji Truck','','inherit','open','open','','1110-revision-v1','','','2013-10-23 13:06:37','2013-10-23 13:06:37','',1110,'http://www.earthhertzrecords.com/2013/10/1110-revision-v1/',0,'revision','',0),(1128,1,'2013-10-23 13:20:25','2013-10-23 13:20:25','<img class=\" wp-image-1123 alignnone\" alt=\"HajiTruckMain_001_Brown_900-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckMain_001_Brown_900-2.gif\" width=\"560\" height=\"380\" />\r\n\r\n<strong>Haji Mobile Unit</strong>\r\nBuilt in 1972 by Alex Kazanegras and John Fiore\r\n20 Gold and 2 Platinum albums. Truly a legendary part of music history.\r\n\r\nElvis Presley, Frank Sinatra, Barbara Streisand, Mott The Hoople, The Byrds, The Association, Canned Heat, Earth Wind and Fire, Parliment Funkadelic, Loggins and Messina, Joan Baez, Joni Mitchel, Janis Joplin, Neil Young, Firefall, Pope John Paul II, many many more.\r\n\r\n<img class=\"alignnone size-large wp-image-1113\" alt=\"HajiTruckClients\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckClients-996x1024.jpg\" width=\"650\" height=\"668\" />\r\n\r\nWith one of 14 Frank DeMideo API Consoles, Haji had a sound of her own.\r\n\r\n<img class=\"alignnone size-medium wp-image-1115\" alt=\"HajiTruckConsole_002\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckConsole_002-231x300.gif\" width=\"231\" height=\"300\" /><img class=\"size-medium wp-image-1114 alignnone\" alt=\"HajiTruckConsole_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckConsole_001-300x239.gif\" width=\"300\" height=\"239\" /><img class=\"alignnone size-medium wp-image-1117\" alt=\"HajiTruckFiore_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckFiore_001-202x300.gif\" width=\"202\" height=\"300\" /> <img class=\"alignnone size-medium wp-image-1119\" alt=\"HajiTruckRack_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckRack_001-174x300.gif\" width=\"174\" height=\"300\" /><img class=\"alignnone size-medium wp-image-1111\" alt=\"HajiTruckAmpex_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckAmpex_001-197x300.gif\" width=\"197\" height=\"300\" /><img class=\"alignnone wp-image-1116\" alt=\"HajiTruckControlFront_001\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HajiTruckControlFront_001-300x207.gif\" width=\"560\" height=\"300\" />','The Haji Truck','','inherit','open','open','','1110-revision-v1','','','2013-10-23 13:20:25','2013-10-23 13:20:25','',1110,'http://www.earthhertzrecords.com/2013/10/1110-revision-v1/',0,'revision','',0),(1279,2,'2013-11-20 00:54:20','2013-11-20 00:54:20','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n<table width=\"560\" border=\"0\" cellspacing=\"2\" cellpadding=\"2\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Rover is a 35 foot GM Coach, a former Greyhound, that has found a new skin as a mobile recording studio since 1982 when Bob Skye created Skyelabs Recording in her.<strong>Formerly the Skyelabs Mobile Unit, Rover was very active in teh 80\'s. Rover is now a part of the Earth Hertz Productions repertoire of studio equipment.</strong>Skyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Margouleff became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder.While Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).Below are some of the sessions from Rover\'s past...\r\n\r\n<strong>Past Project List as Bob Skye and SkyeLabs Mobile</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"280\">Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams</td>\r\n<td width=\"280\">Billy Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><strong> Recent Project List as Robert Xeno and Earthlabs Mobile</strong>\r\nTweeter Pie\r\nApplegate Nance\r\nJoshua Ayers\r\nHannah Mae\r\nThe Elly Maze\r\nMeredythe & The Recycle Kids\r\nGlen Spreen\r\nTractor Toe\r\nHooker\r\nMatt Guertin\'s Radar Tower\r\nThe Billy David Band\r\nJoe Guitar Hughes\r\nGtr Slim\r\nLinda Chorney</td>\r\n</tr>\r\n</tbody>\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-11-20 00:54:20','2013-11-20 00:54:20','',1073,'http://www.earthhertzrecords.com/2013/11/1073-revision-v1/',0,'revision','',0),(1129,1,'2013-10-23 13:25:58','2013-10-23 13:25:58','<img class=\"alignnone size-full wp-image-1075\" alt=\"Rover 2011-06-12\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/rover_20110612_4_560.jpg\" width=\"560\" height=\"372\" />\r\n<table width=\"560\" border=\"0\" cellspacing=\"2\" cellpadding=\"2\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\">Rover is a 35 foot GM Coach, a former Greyhound, that has found a new skin as a mobile recording studio since 1982 when Bob Skye created Skyelabs Recording in her.<strong>Formerly the Skyelabs Mobile Unit, Rover was very active in teh 80\'s. Rover is now a part of the Earth Hertz Productions repertoire of studio equipment.</strong>Skyelabs was built on the concept of mobile recording and was my dream studio in the early 1970\'s while working with Bob Margouleff at the Record Plant, 3rd Street in L.A. In my quest of electronic music, Margouleff became Bob Skye\'s first studio mentor. It was in this period that Bob and Malcolm were working with Stevie Wonder.While Bob and Malcolm were making hits with Stevie, Skye was recruited to help with the rebuilding of Studio B. John Storyk was brought in for the design work (now of Walters-Storyk Design Group).\r\n\r\nBelow are some of the sessions from Rover\'s past...\r\n\r\n<strong>Past Project List as Bob Skye and SkyeLabs Mobile</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"280\">Grammy winning \"Tributes To Miles\"\r\nDave Mathews\r\nBruce Hornsby\r\nKeb \'Mo\'\r\nSammy Hagar\r\nBrian Setzer\r\nOzzy Osbourne\r\nVan Morrison\r\nHanson\r\nHot Tuna\r\nU2\r\nStanley Turrentine\r\nJackson Browne\r\nRoomful of Blues\r\nArrested Development\r\nCraig Chaquico\r\nRussian National Orchestra\r\nPearl jam\r\nHerbie Hancock\r\nGreg Allman\r\nJoe Louis Walker\r\nCrowded House\r\nChris Isaak\r\nAC/DC\r\nMarty Balin\r\nDavid Bowie\r\nSan Francisco Opera\r\nJacques Cousteau\r\nJudy Collins\r\nTony-Toni_Tone\'\r\nClayton-Hamilton Jazz Orchestra\r\nLos Lobos\r\nCracker\r\nJohn Hiatt\r\nAnita Baker\r\nEarl Klugh\r\nNational Public Radio\r\nBobby McFerrin\r\nB-52\'s\r\nJimmy Smith\r\nTodd Rundgren\r\nCarmen McRae\r\n4 Non Blondes\r\nToots Thielemans\r\nRonnie James Dio\r\nKenny Burrell\r\nSantana\r\nJoe Williams</td>\r\n<td width=\"280\">Billy Preston\r\nChick Corea\r\nHarry Belafonte\r\nCowboy Junkies\r\nPaul Williams\r\nPeter, Paul, and Mary\r\nAl Jarreau\r\nLes McCann\r\nRobert Cray\r\nNeil Young\r\nSan Jose Symphony\r\nCrosby, Stills & Nash\r\nHawkins Family\r\nKirk Hammett\r\nMiles Davis\r\nKenny Loggins\r\nBonham\r\nJoe Pass\r\nHuey Lewis\r\nAmerica\r\nAaron Neville\r\nJohn Denver\r\nTestament\r\nRay Brown\r\nHolly Near\r\nGreg Kihn\r\nThe Yellow Jackets\r\nJoe Satriani\r\nBob Hope\r\nChambers Bros\r\nSteve Miller\r\nDiane Shuur\r\nTaj Majal\r\nEddie Money\r\nGrace Slick\r\nJesse Colin Young\r\nABC in Concert\r\nDirectTV\r\nKRQR\r\nKFOG\r\nKRON\r\nKOME\r\nKSAN\r\nWMAL\r\nWNET\r\nWBGO\r\nWGBH</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\">\r\n<strong> Recent Project List as Robert Xeno and Earthlabs Mobile</strong>\r\nTweeter Pie\r\nApplegate Nance\r\nJoshua Ayers\r\nHannah Mae\r\nThe Elly Maze\r\nMeredythe & The Recycle Kids\r\nGlen Spreen\r\nTractor Toe\r\nHooker\r\nMatt Guertin\'s Radar Tower\r\nThe Billy David Band\r\nJoe Guitar Hughes\r\nGtr Slim\r\nLinda Chorney</td>\r\n</tr>\r\n</tbody>\r\n</table>','Earthlabs Mobile Unit Now In Nashville, TN','','inherit','open','open','','1073-revision-v1','','','2013-10-23 13:25:58','2013-10-23 13:25:58','',1073,'http://www.earthhertzrecords.com/2013/10/1073-revision-v1/',0,'revision','',0),(1130,1,'2013-10-23 13:30:17','2013-10-23 13:30:17','[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://wp.me/P3Wu0q-b1\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://wp.me/P3Wu0q-bq\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://wp.me/P3Wu0q-4n\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://wp.me/P3Wu0q-bl\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\r\n\r\n[caption id=\"attachment_711\" align=\"alignnone\" width=\"560\"]<a href=\"http://wp.me/P3Wu0q-bw\"><img class=\" wp-image-711 \" title=\"Billy David\" alt=\"Billy David\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/BillyDavid_Magic_0011.jpg\" width=\"560\" height=\"327\" /></a> Billy David[/caption]\r\n\r\n \r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-23 13:30:17','2013-10-23 13:30:17','',35,'http://www.earthhertzrecords.com/2013/10/35-revision-v1/',0,'revision','',0),(1131,1,'2013-10-23 13:35:19','2013-10-23 13:35:19','\n\n<iframe src=\"//www.youtube.com/embed/jD8UD9dLGaU\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Joshua Ayers','','inherit','open','open','','708-autosave-v1','','','2013-10-23 13:35:19','2013-10-23 13:35:19','',708,'http://www.earthhertzrecords.com/2013/10/708-autosave-v1/',0,'revision','',0),(1132,1,'2013-10-23 13:36:15','2013-10-23 13:36:15','<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/vnbBRpguG6g\" frameborder=\"0\" allowfullscreen></iframe>\r\n1. Waste Acoustic Version\r\n<iframe src=\"//www.youtube.com/embed/jD8UD9dLGaU\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n2. Waste','Joshua Ayers','','inherit','open','open','','708-revision-v1','','','2013-10-23 13:36:15','2013-10-23 13:36:15','',708,'http://www.earthhertzrecords.com/2013/10/708-revision-v1/',0,'revision','',0),(1133,1,'2013-10-23 13:39:26','2013-10-23 13:39:26','<iframe src=\"//www.youtube.com/embed/vnbBRpguG6g\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n1. Waste Acoustic Version\r\n<iframe src=\"//www.youtube.com/embed/jD8UD9dLGaU\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n2. Waste','Joshua Ayers','','inherit','open','open','','708-revision-v1','','','2013-10-23 13:39:26','2013-10-23 13:39:26','',708,'http://www.earthhertzrecords.com/2013/10/708-revision-v1/',0,'revision','',0),(1134,1,'2013-10-23 13:40:54','2013-10-23 13:40:54','[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://wp.me/P3Wu0q-b1\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/joshua-ayers\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://wp.me/P3Wu0q-4n\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://wp.me/P3Wu0q-bl\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\r\n\r\n[caption id=\"attachment_711\" align=\"alignnone\" width=\"560\"]<a href=\"http://wp.me/P3Wu0q-bw\"><img class=\" wp-image-711 \" title=\"Billy David\" alt=\"Billy David\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/BillyDavid_Magic_0011.jpg\" width=\"560\" height=\"327\" /></a> Billy David[/caption]\r\n\r\n \r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-23 13:40:54','2013-10-23 13:40:54','',35,'http://www.earthhertzrecords.com/2013/10/35-revision-v1/',0,'revision','',0),(1135,1,'2013-10-23 13:43:26','2013-10-23 13:43:26','[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/joshua-ayers\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://wp.me/P3Wu0q-4n\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://wp.me/P3Wu0q-bl\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\r\n\r\n[caption id=\"attachment_711\" align=\"alignnone\" width=\"560\"]<a href=\"http://wp.me/P3Wu0q-bw\"><img class=\" wp-image-711 \" title=\"Billy David\" alt=\"Billy David\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/BillyDavid_Magic_0011.jpg\" width=\"560\" height=\"327\" /></a> Billy David[/caption]\r\n\r\n \r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-23 13:43:26','2013-10-23 13:43:26','',35,'http://www.earthhertzrecords.com/2013/10/35-revision-v1/',0,'revision','',0),(1295,1,'2013-11-20 12:11:32','2013-11-20 18:11:32','<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 alignnone\" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" /></a>\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/joshua-ayers\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/glen-spreen/\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\r\n\r\n[caption id=\"attachment_711\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/the-billy-david-band/\"><img class=\" wp-image-711 \" title=\"Billy David\" alt=\"Billy David\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/BillyDavid_Magic_0011.jpg\" width=\"560\" height=\"327\" /></a> Billy David[/caption]\r\n\r\n \r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-11-20 12:11:32','2013-11-20 18:11:32','',35,'http://www.earthhertzrecords.com/2013/11/35-revision-v1/',0,'revision','',0),(1136,1,'2013-10-23 13:44:36','2013-10-23 13:44:36','[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://0332c8e.netsolhost.com/WordPress/wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/joshua-ayers\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/glen-spreen/\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\r\n\r\n[caption id=\"attachment_711\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/the-billy-david-band/\"><img class=\" wp-image-711 \" title=\"Billy David\" alt=\"Billy David\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/BillyDavid_Magic_0011.jpg\" width=\"560\" height=\"327\" /></a> Billy David[/caption]\r\n\r\n \r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-10-23 13:44:36','2013-10-23 13:44:36','',35,'http://www.earthhertzrecords.com/2013/10/35-revision-v1/',0,'revision','',0),(1138,1,'2013-10-23 14:06:23','2013-10-23 14:06:23','We are very happy to support our artists in this year\'s 56th Grammy® Awards 1st Round Balloting.\r\nTheir entries and category listings are as follows:\r\n\r\n<strong>Best New Artist</strong>\r\nApplegate Nance\r\n\r\n<strong>Best Pop Vocal Album</strong>\r\nTHE GOOD, BAD, AND THE SUNNY\r\nApplegate Nance\r\n\r\n<strong>Best Pop Instrumental</strong>\r\nDREAMS\r\nGlen Spreen\r\n\r\n<strong>Best Engineered Album, Non-Classical</strong>\r\nDREAMS\r\nGlen Spreen, engineer; Eloa Xeno, mastering engineer\r\n<strong>Album Of The Year</strong>\r\nMAGIC\r\nThe Billy David Band\r\n\r\n<strong>Song Of The Year</strong>\r\nMagic\r\nBilly David Millican (Billy David Band)\r\n\r\n<strong>Best Pop Duo/Group Performance</strong>\r\nMagic\r\nBilly David Band\r\n\r\n<strong>Best Reggae Album</strong>\r\nMAGIC\r\nThe Billy David Band\r\n\r\n<strong>Best Rock Album</strong>\r\nMathias Meets the World\r\nRadarTower\r\n\r\n<strong>Best Music Video (Videos are under the Video Menu Tab)</strong>\r\nWaste\r\nJoshua Ayers\r\n\r\nGuns and Run\r\nHannah Mae\r\n\r\nAnd we are also proud of our production credits on Linda Chorney\'s new release.\r\n<strong>Best Pop Solo Performance</strong>\r\nWhen I Sing\r\nLinda Chorney',' The Road to the 56th Grammy® Awards','','inherit','open','open','','1101-revision-v1','','','2013-10-23 14:06:23','2013-10-23 14:06:23','',1101,'http://www.earthhertzrecords.com/2013/10/1101-revision-v1/',0,'revision','',0),(1140,1,'2013-10-23 20:29:32','2013-10-23 20:29:32','Music\r\nVideo\r\nBooks\r\nClothing\r\nAccessories\r\nPosters\r\nArtwork\r\nMemorabilia','STORE','','inherit','open','open','','21-revision-v1','','','2013-10-23 20:29:32','2013-10-23 20:29:32','',21,'http://www.earthhertzrecords.com/2013/10/21-revision-v1/',0,'revision','',0),(1139,1,'2013-10-23 20:28:39','2013-10-23 20:28:39','Music\r\nVideo\r\nBooks\r\nClothing\r\nAccessories\r\nPosters\r\nArtwork\r\nMemorabilia\r\n\r\n[WP_online_store]','STORE','','inherit','open','open','','21-revision-v1','','','2013-10-23 20:28:39','2013-10-23 20:28:39','',21,'http://www.earthhertzrecords.com/2013/10/21-revision-v1/',0,'revision','',0),(1141,1,'2013-10-23 20:47:09','2013-10-23 20:47:09','Hello, My Name is Robert Xeno\r\n\r\nI am Founder and CEO of Earth Hertz Records, StreamBeam.US, and Stream Share Musicians Cooperative.\r\n\r\nI have been in the music business for the last 35 years and have watched with great concern as the major label format has systematically raped, pillaged, and destroyed artists, music in general, and the entire industry as a whole.\r\n\r\nWell, we put our heads together here at Earth Hertz and we believe we have come up with a solution.\r\n\r\nWe are a record label with its own recording studio and production team. This allows us to keep our costs down while affording artists the freedom to take their time and express their art. One of our pet peeves about the record industry is the idea of making artists pay for what they do. It is art, and artists should be free to create. As such, we never charge nor bill the artist for any of the services required to complete their project. Revolutionary.\r\n\r\nWe feel that if we believe in an artist like they do, then they should not be held accountable for un-recouped costs associated with a project. We are down on the line with the artist and all billing is recouped through the project. If the project makes no money, the artist never owes the company for reimbursement. We insist it is time for a change.\r\n\r\nAlso, we have our own media streaming platform, StreamBeam.US. Here, we will stream our artists’ music at the highest resolutions possible. We have been testing from MP3 standards up to 192k wav streams and beyond.\r\n\r\nThe real deal maker here, as if this already wasn’t enough, is our newest venture, Stream Share Musician’s Cooperative. You see, there is a giant green elephant sitting in the corner of the room but no one in the industry is addressing it. They keep the focus on the .0008 cents per stream and below, tied to artists; royalties and copyright/publishing. It’s all smoke and mirrors, folks.\r\n\r\nJust one example, Pandora has already taken in over $500+ million dollars this year, and there is still another quarter to go. We will use the cooperative to share in the ad revenue with the artists. As I said, it’s time for a change.\r\n\r\nBeyond the ideas and the technology, we also have the smarts and the ability to get it all done. We signed 6 artists on our recent launch. All six artists were accepted in the 1<sup>st</sup> round balloting for the 56<sup>th</sup> Grammy® Awards process. In all, we have 12 entries in the running.\r\n\r\nThis next year is clearly going to be one of incredible change in the industry. I believe I have the team and the artists in place to create a new future for the music industry; one where creativity is valued and fairness is the rule.\r\n\r\nEarth Hertz.\r\nYou better believe it.\r\n\r\nRobert Xeno 2013\r\n[yop_poll id=\"2\" tr_id=\"0000001\"]\r\n\r\n ','About','','inherit','open','open','','1049-revision-v1','','','2013-10-23 20:47:09','2013-10-23 20:47:09','',1049,'http://www.earthhertzrecords.com/2013/10/1049-revision-v1/',0,'revision','',0),(1142,1,'2013-10-23 20:48:29','2013-10-24 02:48:29','<strong>CEO / President, CTO, Head of Productions</strong>\r\n\r\n \r\n\r\n ','About: Robert Xeno','','publish','open','open','','about-robert-xeno','','','2013-12-06 12:19:04','2013-12-06 18:19:04','',0,'http://www.earthhertzrecords.com/?p=1142',0,'post','',0),(1159,1,'2013-10-24 05:02:10','2013-10-24 05:02:10','CEO, Head of Productions\r\n\r\n \r\n\r\n ','About: Robert Xeno','','inherit','open','open','','1142-revision-v1','','','2013-10-24 05:02:10','2013-10-24 05:02:10','',1142,'http://www.earthhertzrecords.com/2013/10/1142-revision-v1/',0,'revision','',0),(1160,1,'2013-10-24 05:02:28','2013-10-24 05:02:28','CEO, CTO, Head of Productions\r\n\r\n \r\n\r\n ','About: Robert Xeno','','inherit','open','open','','1142-revision-v1','','','2013-10-24 05:02:28','2013-10-24 05:02:28','',1142,'http://www.earthhertzrecords.com/2013/10/1142-revision-v1/',0,'revision','',0),(1161,1,'2013-10-24 05:02:41','2013-10-24 05:02:41','<strong>CEO, CTO, Head of Productions</strong>\r\n\r\n \r\n\r\n ','About: Robert Xeno','','inherit','open','open','','1142-revision-v1','','','2013-10-24 05:02:41','2013-10-24 05:02:41','',1142,'http://www.earthhertzrecords.com/2013/10/1142-revision-v1/',0,'revision','',0),(1162,1,'2013-10-24 05:03:17','2013-10-24 05:03:17','<strong>Producer, Production Coordinator</strong>','About: Christopher Parks','','inherit','open','open','','1152-revision-v1','','','2013-10-24 05:03:17','2013-10-24 05:03:17','',1152,'http://www.earthhertzrecords.com/2013/10/1152-revision-v1/',0,'revision','',0),(1163,1,'2013-10-24 15:43:59','2013-10-24 15:43:59','<strong>Producer, Production Coordinator, A&R\r\n</strong>Growing up in the small town mountains of east Tennessee, I started playing music around the age of nine. While I began as a drummer, within a few years I switched to electric guitar and that’s when I really fell in love with music. Looking to join a band and fit in with much cooler people, I started playing bass guitar. After being in several bands, I moved to Nashville, Tennessee to become a rock star. In Nashville I found the real music business, and its devilish ways of dealing souls to the next level, so I decided to move into the audio engineering field. I worked with a couple of sound companies running cables, moving speakers, and sleeping in cheap hotel rooms. After some time, I studied and learned the art of audio engineering, eventually becoming a co-head engineer at festivals, and with groups at local bars.\r\n\r\nAfter a while, working in bars until 3 or 4am loading out sound gear took its toll, and it was time to make a change. I spent the next two and a half years sitting back enjoying music and managing hotels in beautiful Savannah, Georgia. Then out of nowhere, the hunger for music came back. I moved back to Nashville, Tennessee, and jumped right back into audio engineering. While it was a great experience, I needed more, and soon a door opened for me to host my own radio show, Josh’s Underground Music Show back in east Tennessee.\r\n\r\nWithout rules, and with the freedom of choosing whatever I wanted to play on air, I knew I had found a home. Now, between the radio show and working with Earth Hertz Records, I am able to discover and develop great new talent. On a daily basis I receive up to 100 new albums, EPs and singles, giving me the opportunity to find artists with great potential in the music business.\r\n\r\nMy job as a Producer/A&R, is to make each artist reach their full capability, even if it means making them sing upside down to create the right vocal track. I take the artists’ vision for their music and guide them to the nearest point it can be achieved. Having worked in the blues, folk, rock, metal, punk and bluegrass genres, I am always looking forward to finding new artists, and new types of music for inspiration.\r\n\r\n \r\n\r\n ','About: Joshua D. Ayers','','publish','open','open','','about-joshua-d-ayers','','','2013-10-28 17:21:32','2013-10-28 17:21:32','',0,'http://www.earthhertzrecords.com/?p=1163',7,'post','',0),(1164,1,'2013-10-24 15:43:59','2013-10-24 15:43:59','<strong>Producer, Production Coordinator, A&R</strong>','About: Joshua D. Ayers','','inherit','open','open','','1163-revision-v1','','','2013-10-24 15:43:59','2013-10-24 15:43:59','',1163,'http://www.earthhertzrecords.com/2013/10/1163-revision-v1/',0,'revision','',0),(1165,1,'2013-10-24 15:44:29','2013-10-24 15:44:29','<strong>Producer, Production Coordinator, A&R</strong>','About: Christopher Parks','','inherit','open','open','','1152-revision-v1','','','2013-10-24 15:44:29','2013-10-24 15:44:29','',1152,'http://www.earthhertzrecords.com/2013/10/1152-revision-v1/',0,'revision','',0),(1437,2,'2014-01-16 07:56:01','2014-01-16 13:56:01','<a href=\"http://www.amazon.com/The-Beatle-Who-Vanished-Berkenstadt/dp/0985667702/ref=sr_1_1?ie=UTF8&qid=1389901855&sr=8-1&keywords=the+beatle+who+vanished\"><img class=\"alignleft size-medium wp-image-1465\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished-207x300.jpg\" width=\"207\" height=\"300\" /></a>Is there a band more recognizable than The Beatles? When searching for the Best Rock Band of All-Time the answer was unanimous. But search for the answer to this question, \"Who is the fifth Beatle?\" and amazingly you will not find the real answer.\n\nOn June 3, 1964 the fate of a successful, but small-time drummer would change forever. Jimmie Nicol would become the fifth Beatle, if only for 13 days, and it would change the trajectory of his life in a way no one could have predicted.\n\nThis is a story that clearly would have never been told if not for the painstaking research done by <a href=\"http://www.thebeatlewhovanished.com/author-bio/\">Jim Berkenstadt</a>. He took what was barely enough material to write an article and meticulously followed the movements of this mysterious person who replaced Ringo Starr for thirteen days on the Beatles first World Tour. <em>The Beatle Who Vanished</em> is a fascinating look inside the history of rock and roll in 1960s London, and the music industry\'s attempt to create pop stars by controlling and molding the musicians who were discovering and exploring this rapidly changing music scene.\n\nJimmie Nicol\'s life was intricately entwined with the birth of Rock and Roll. As Berkenstadt uncovered Nicol\'s history, he discovered a drummer so well regarded that, in 1964, his destiny was most surely on the path for fame. No one denied that Nicol\'s skills were among the top in the clubs and music studios of London, he was well known for his versatility; moving between jazz and rock easily and even combining the two. Often asked to play with many up and coming bands, he was making a decent living as a musician and had become a staple as a session drummer. He was also the drummer for a series called Top Six, a weekly recording of the Top Six hits, often covering Beatles songs to perfection. Who could know how important that would be?\n\nJust when it seemed Jimmie\'s ship had come in, becoming the permanent drummer for Georgie Fame and The Blue Flames, he and his wife were living a comfortable life, and he was guaranteed work at something he loved; his life would take one more turn. Paul McCartney would personally call Georgie Fame and ask if they could \"borrow\" his drummer Nicol.\n\nThe rest they say, is history. But it wasn\'t, not for us, not for him. It is what happened after this amazing story that was a mystery for so many years. Jimmie was a tried and true Beatle for 13 days, it may not seem like a long time, but as you read about the intensity of the touring, traveling and riot like interaction with fans, one can see how it felt like a lifetime for Jimmie. Nichol joined the Beatles as the crescendo of Beatlemania was beginning, but he was ill equipped to be at the center of such fame and adulation. Paul McCartney befriended Jimmie and often asked him if \"it was getting better?\" Jimmie\'s response? \"It\'s getting better all the time.\" After thirteen days of playing multiple shows a day, their songs felt like his songs, and just as he began to feel like a \"real\" Beatle, it was ripped away from him.\n\nEven for those who knew Jimmie well, no one could understand that feeling. He went from being a <em>Beatle</em> to being plain old Jimmie in one day. His attempt at recreating that fame, his subsequent travels, and his disappearance and supposed death are the riveting plots of this wonderful mystery of a biography. Jim Berkenstadt does something for Jimmie that Nichol could never do for himself; he showcases his amazing talent and paints a picture so clear that when you finish this book you will feel like you knew Jimmie all along.\n\nRead more about Jim Berkenstadt\'s <a href=\"http://www.thebeatlewhovanished.com/buy/book-synopsis/\">\"The Beatle Who Vanished\" </a>\n\n<iframe src=\"//www.youtube.com/embed/qumXROSOFJE\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\n\nReview by Jen Kehl.\n\n<strong>Jen Kehl is a writer who blogs at My Skewed View http://jenkehl.com and created the music site Raised on the Radio <a href=\"http://raisedontheradio.com/\" target=\"_blank\" rel=\"nofollow\">http://raisedontheradio.com</a>. She is also a published author as part of the anthology The Mother of All Meltdowns available on Amazon. Connect with her on twitter <a href=\"https://twitter.com/jenkehl\" target=\"_blank\" rel=\"nofollow\">https://twitter.com/jenkehl</a> and Google+ <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\" target=\"_blank\" rel=\"nofollow\">https://plus.google.com/u/0/+JenniferKehl/posts</a></strong>','\"The Beatle Who Vanished\" by Jim Berkenstadt: A Book Review','','publish','open','open','','the-beatle-who-vanished-by-jim-berkenstadt-a-book-review','','','2014-01-16 19:41:37','2014-01-17 01:41:37','',0,'http://www.earthhertzrecords.com/?p=1437',0,'post','',3),(1143,1,'2013-10-23 20:48:29','2013-10-23 20:48:29','Hello, My Name is Robert Xeno\r\n\r\nI am Founder and CEO of Earth Hertz Records, StreamBeam.US, and Stream Share Musicians Cooperative.\r\n\r\nI have been in the music business for the last 35 years and have watched with great concern as the major label format has systematically raped, pillaged, and destroyed artists, music in general, and the entire industry as a whole.\r\n\r\nWell, we put our heads together here at Earth Hertz and we believe we have come up with a solution.\r\n\r\nWe are a record label with its own recording studio and production team. This allows us to keep our costs down while affording artists the freedom to take their time and express their art. One of our pet peeves about the record industry is the idea of making artists pay for what they do. It is art, and artists should be free to create. As such, we never charge nor bill the artist for any of the services required to complete their project. Revolutionary.\r\n\r\nWe feel that if we believe in an artist like they do, then they should not be held accountable for un-recouped costs associated with a project. We are down on the line with the artist and all billing is recouped through the project. If the project makes no money, the artist never owes the company for reimbursement. We insist it is time for a change.\r\n\r\nAlso, we have our own media streaming platform, StreamBeam.US. Here, we will stream our artists’ music at the highest resolutions possible. We have been testing from MP3 standards up to 192k wav streams and beyond.\r\n\r\nThe real deal maker here, as if this already wasn’t enough, is our newest venture, Stream Share Musician’s Cooperative. You see, there is a giant green elephant sitting in the corner of the room but no one in the industry is addressing it. They keep the focus on the .0008 cents per stream and below, tied to artists; royalties and copyright/publishing. It’s all smoke and mirrors, folks.\r\n\r\nJust one example, Pandora has already taken in over $500+ million dollars this year, and there is still another quarter to go. We will use the cooperative to share in the ad revenue with the artists. As I said, it’s time for a change.\r\n\r\nBeyond the ideas and the technology, we also have the smarts and the ability to get it all done. We signed 6 artists on our recent launch. All six artists were accepted in the 1<sup>st</sup> round balloting for the 56<sup>th</sup> Grammy® Awards process. In all, we have 12 entries in the running.\r\n\r\nThis next year is clearly going to be one of incredible change in the industry. I believe I have the team and the artists in place to create a new future for the music industry; one where creativity is valued and fairness is the rule.\r\n\r\nEarth Hertz.\r\nYou better believe it.\r\n\r\nRobert Xeno 2013\r\n[yop_poll id=\"2\" tr_id=\"0000001\"]\r\n\r\n ','About: Robert Xeno','','inherit','open','open','','1142-revision-v1','','','2013-10-23 20:48:29','2013-10-23 20:48:29','',1142,'http://www.earthhertzrecords.com/2013/10/1142-revision-v1/',0,'revision','',0),(1144,1,'2013-10-23 20:49:01','2013-10-24 02:49:01','<strong>Chief Financial Officer, Director of Communications, Art Director</strong>\r\n\r\nHi Im Eloa Xeno','About: Eloa Xeno','','publish','open','open','','about-eloa-xeno','','','2013-12-13 13:06:58','2013-12-13 19:06:58','',0,'http://www.earthhertzrecords.com/?p=1144',2,'post','',0),(1145,1,'2013-10-23 20:49:01','2013-10-23 20:49:01','Hi Im Eloa Xeno','About: Eloa Xeno','','inherit','open','open','','1144-revision-v1','','','2013-10-23 20:49:01','2013-10-23 20:49:01','',1144,'http://www.earthhertzrecords.com/2013/10/1144-revision-v1/',0,'revision','',0),(1146,1,'2013-10-23 20:50:25','2013-10-23 20:50:25','<strong>New Media Coordinator and Director of Artist Promotions</strong>\r\n\r\nSo here\'s the thing. I can\'t read a note of music and I don\'t have the world\'s best ear, but when the music is good, I feel it in my heart. My articles are not technical play-by-plays, but rather honest insight into a particular experience, with a whole lot of attitude thrown in. See, I\'m from Jersey, attitude is what we do.\r\n\r\nLife could be better, so I tell it like it is at <a href=\"http://katstheory.blogspot.com/\">Kat\'s Theory of Life</a>, and music could be a whole lot better, that\'s why Earth Hertz is here, so I bitch a lot about that on <a href=\"http://katstheoryofmusic.blogspot.com/\">Kat\'s Theory of Music</a>. There are other places you can find me too, if you feel like looking.','About: Kath Galasso','','publish','open','open','','about-kath-galasso','','','2013-10-24 05:05:04','2013-10-24 05:05:04','',0,'http://www.earthhertzrecords.com/?p=1146',3,'post','',1),(1147,1,'2013-10-23 20:50:25','2013-10-23 20:50:25','It\'s all about attitude...i have a bad one. that doesn\'t make me a bad person...give me GOOD music and i promise i\'ll be tolerable.\r\n\r\nkGalasso','About: Kath Galasso','','inherit','open','open','','1146-revision-v1','','','2013-10-23 20:50:25','2013-10-23 20:50:25','',1146,'http://www.earthhertzrecords.com/2013/10/1146-revision-v1/',0,'revision','',0),(1148,1,'2013-10-23 21:00:32','2013-10-23 21:00:32','1','staff1','1','inherit','open','open','','staff1','','','2013-10-23 21:00:32','2013-10-23 21:00:32','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/staff1.png',0,'attachment','image/png',0),(1149,1,'2013-10-23 21:11:22','2013-10-23 21:11:22','1','Image3','1','inherit','open','open','','image3','','','2013-10-23 21:11:22','2013-10-23 21:11:22','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Image3.png',0,'attachment','image/png',0),(1150,2,'2013-10-24 01:09:56','2013-10-24 01:09:56','I can\'t read a note of music and I don\'t have the world\'s best ear, but when the music is good, I feel it in my heart. My articles are not technical play-by-plays, but rather honest insight into a particular experience, with a whole lot of attitude thrown in. See, I\'m from Jersey, attitude is what we do.\n\nLife could be better, so I tell it like it is at <a href=\"http://katstheory.blogspot.com/\">Kat\'s Theory of Life</a>, And music could be a whole lot better, that\'s why Earth Hertz is here, so I bitch a lot about that on <a href=\"http://katstheoryofmusic.blogspot.com/\">Kat\'s Theory of Music</a>. There are other places you can find me too, if you feel like looking.','About: Kath Galasso','','inherit','open','open','','1146-autosave-v1','','','2013-10-24 01:09:56','2013-10-24 01:09:56','',1146,'http://www.earthhertzrecords.com/2013/10/1146-autosave-v1/',0,'revision','',0),(1151,2,'2013-10-24 01:13:58','2013-10-24 01:13:58','So here\'s the thing. I can\'t read a note of music and I don\'t have the world\'s best ear, but when the music is good, I feel it in my heart. My articles are not technical play-by-plays, but rather honest insight into a particular experience, with a whole lot of attitude thrown in. See, I\'m from Jersey, attitude is what we do.\r\n\r\nLife could be better, so I tell it like it is at <a href=\"http://katstheory.blogspot.com/\">Kat\'s Theory of Life</a>, and music could be a whole lot better, that\'s why Earth Hertz is here, so I bitch a lot about that on <a href=\"http://katstheoryofmusic.blogspot.com/\">Kat\'s Theory of Music</a>. There are other places you can find me too, if you feel like looking.','About: Kath Galasso','','inherit','open','open','','1146-revision-v1','','','2013-10-24 01:13:58','2013-10-24 01:13:58','',1146,'http://www.earthhertzrecords.com/2013/10/1146-revision-v1/',0,'revision','',0),(1152,1,'2013-10-24 04:41:27','2013-10-24 04:41:27','<strong>Super Producer, Production Coordinator, A&R</strong>\r\n\r\nGrowing up in Massachusetts, I started playing in bands when I was sixteen or seventeen. I played the Boston circuit, and then at about twenty, moved to South Florida. I was in a band called Super Buzz, a jammin’ hard rock band, from ’91-’94, and we had interest from Atlantic and a few Indie labels. For this band I produced everything, did promotions, booked a few venues, wrote all the songs, and was the singer. I started to get involved with other bands and just try to help them. It was just my passion to do it. The response was good, because I just have a knack to feel out the situation, to help artists be the best they can be.\r\n\r\nLater I moved back to Boston where I was a filler acoustic player for a while; just played little cafes here and there. Wanting to take a step back, I got out of the recording business for a while. I had a son and focused on spending time with him. After moving to Minnesota, it was time to get back on a serious career path. When I got together with Matt Guertin (of radarTower), I sat him down in front of a microphone and he just rattled off about twenty songs. He wanted to get a band together and I told him I’d produce them. And it’s come to this. We started making the record a little over a year ago, and have just started to work on the second release from radarTower.\r\n\r\nI love to be involved with music and musicians. I have other projects I’m in the process of tracking, and every time I go out to a show, I’m looking for talent.\r\n\r\nI’m pleased to be involved with Matt, and Earth Hertz Records. I\'m thankful for Robert Xeno and support his vision, and I’m extremely grateful for the continuing guidance and mentoring from Eddie Ciletti.\r\n\r\nJust very happy to have found a home with Earth Hertz - you better believe it.','About: Saint Christopher','','draft','open','open','','about-christopher-parks','','','2014-04-14 11:19:29','2014-04-14 17:19:29','',0,'http://www.earthhertzrecords.com/?p=1152',5,'post','',0),(1153,1,'2013-10-24 04:41:27','2013-10-24 04:41:27','Christopher Parks','About: Christopher Parks','','inherit','open','open','','1152-revision-v1','','','2013-10-24 04:41:27','2013-10-24 04:41:27','',1152,'http://www.earthhertzrecords.com/2013/10/1152-revision-v1/',0,'revision','',0),(1154,1,'2013-10-24 04:56:18','2013-10-24 04:56:18','<strong>Vice President of Sales and Marketing</strong>\r\n\r\nSteve comes from a long list of successes. As former VP of sales and marketing for Mercury Records in Nashville, Steve worked with Billy Ray Cyrus, Shania Twain, Toby Keith, the Kentucky Headhunters, Sammy Kershaw, to name a few. After that, he was Vice President and General Manager of Polydor Records in Nashville.\r\n\r\nSteve has helped guide Earth Hertz Records in becoming a viable music platform that can deliver on a global level.','About: Steve Miller','','publish','open','open','','about-steve-miller-vice-president-of-sales-and-marketing','','','2013-10-24 05:04:56','2013-10-24 05:04:56','',0,'http://www.earthhertzrecords.com/?p=1154',1,'post','',0),(1155,1,'2013-10-24 04:56:18','2013-10-24 04:56:18','Steve comes from a long list of successes. As former VP of sales and marketing for Mercury Records in Nashville, Steve worked with Billy Ray Cyrus, Shania Twain, Toby Keith, the Kentucky Headhunters, Sammy Kershaw, to name a few. After that, he was Vice President and General Manager of Polydor Records in Nashville.\r\n\r\nSteve has helped guide Earth Hertz Records in becoming a viable music platform that can deliver on a global level.','About: Steve Miller Vice President of Sales and Marketing','','inherit','open','open','','1154-revision-v1','','','2013-10-24 04:56:18','2013-10-24 04:56:18','',1154,'http://www.earthhertzrecords.com/2013/10/1154-revision-v1/',0,'revision','',0),(1156,1,'2013-10-24 04:59:29','2013-10-24 04:59:29','<strong>Vice President of Sales and Marketing</strong>\r\n\r\nSteve comes from a long list of successes. As former VP of sales and marketing for Mercury Records in Nashville, Steve worked with Billy Ray Cyrus, Shania Twain, Toby Keith, the Kentucky Headhunters, Sammy Kershaw, to name a few. After that, he was Vice President and General Manager of Polydor Records in Nashville.\r\n\r\nSteve has helped guide Earth Hertz Records in becoming a viable music platform that can deliver on a global level.','About: Steve Miller','','inherit','open','open','','1154-revision-v1','','','2013-10-24 04:59:29','2013-10-24 04:59:29','',1154,'http://www.earthhertzrecords.com/2013/10/1154-revision-v1/',0,'revision','',0),(1157,1,'2013-10-24 05:00:29','2013-10-24 05:00:29','<strong>New Media Coordinator and Director of Artist Promotions</strong>\r\n\r\nSo here\'s the thing. I can\'t read a note of music and I don\'t have the world\'s best ear, but when the music is good, I feel it in my heart. My articles are not technical play-by-plays, but rather honest insight into a particular experience, with a whole lot of attitude thrown in. See, I\'m from Jersey, attitude is what we do.\r\n\r\nLife could be better, so I tell it like it is at <a href=\"http://katstheory.blogspot.com/\">Kat\'s Theory of Life</a>, and music could be a whole lot better, that\'s why Earth Hertz is here, so I bitch a lot about that on <a href=\"http://katstheoryofmusic.blogspot.com/\">Kat\'s Theory of Music</a>. There are other places you can find me too, if you feel like looking.','About: Kath Galasso','','inherit','open','open','','1146-revision-v1','','','2013-10-24 05:00:29','2013-10-24 05:00:29','',1146,'http://www.earthhertzrecords.com/2013/10/1146-revision-v1/',0,'revision','',0),(1158,1,'2013-10-24 05:01:08','2013-10-24 05:01:08','<strong>CFO And Art Director</strong>\r\n\r\nHi Im Eloa Xeno','About: Eloa Xeno','','inherit','open','open','','1144-revision-v1','','','2013-10-24 05:01:08','2013-10-24 05:01:08','',1144,'http://www.earthhertzrecords.com/2013/10/1144-revision-v1/',0,'revision','',0),(1169,1,'2013-10-24 16:37:15','2013-10-24 16:37:15','[yop_poll_archive]','Yop Poll Archive','','inherit','open','open','','1043-revision-v1','','','2013-10-24 16:37:15','2013-10-24 16:37:15','',1043,'http://www.earthhertzrecords.com/2013/10/1043-revision-v1/',0,'revision','',0),(1168,1,'2013-10-24 16:36:28','2013-10-24 16:36:28','[yop_poll_archive]\r\n\r\n \r\n\r\n<div id=\'coolsocialb\'><div id=\'coolsociald\'> <a href=\'http://www.coolsocial.net\'>coolsocial.net</a> <a href=\'http://www.coolsocial.net/sites/www/earthhertzrecords.com.html\'>earthhertzrecords.com</a> </div><script type=\'text/javascript\' id=\'coolsocials\'>(function() {function async_load(){var s = document.createElement(\'script\'); s.type = \'text/javascript\'; s.async = true;s.src = \'http://www.coolsocial.net/get_snippet.aspx?url=earthhertzrecords.com\';var x = document.getElementById(\'coolsocials\'); x.parentNode.insertBefore(s, x); }document.getElementById(\'coolsociald\').innerHTML = \'\';if (window.attachEvent) window.attachEvent(\'onload\', async_load); else window.addEventListener(\'load\', async_load, false);})();</script></div>','Yop Poll Archive','','inherit','open','open','','1043-revision-v1','','','2013-10-24 16:36:28','2013-10-24 16:36:28','',1043,'http://www.earthhertzrecords.com/2013/10/1043-revision-v1/',0,'revision','',0),(1171,1,'2013-10-24 16:37:56','2013-10-24 16:37:56','Hello, My Name is Robert Xeno\r\n\r\nI am Founder and CEO of Earth Hertz Records, StreamBeam.US, and Stream Share Musicians Cooperative.\r\n\r\nI have been in the music business for the last 35 years and have watched with great concern as the major label format has systematically raped, pillaged, and destroyed artists, music in general, and the entire industry as a whole.\r\n\r\nWell, we put our heads together here at Earth Hertz and we believe we have come up with a solution.\r\n\r\nWe are a record label with its own recording studio and production team. This allows us to keep our costs down while affording artists the freedom to take their time and express their art. One of our pet peeves about the record industry is the idea of making artists pay for what they do. It is art, and artists should be free to create. As such, we never charge nor bill the artist for any of the services required to complete their project. Revolutionary.\r\n\r\nWe feel that if we believe in an artist like they do, then they should not be held accountable for un-recouped costs associated with a project. We are down on the line with the artist and all billing is recouped through the project. If the project makes no money, the artist never owes the company for reimbursement. We insist it is time for a change.\r\n\r\nAlso, we have our own media streaming platform, StreamBeam.US. Here, we will stream our artists’ music at the highest resolutions possible. We have been testing from MP3 standards up to 192k wav streams and beyond.\r\n\r\nThe real deal maker here, as if this already wasn’t enough, is our newest venture, Stream Share Musician’s Cooperative. You see, there is a giant green elephant sitting in the corner of the room but no one in the industry is addressing it. They keep the focus on the .0008 cents per stream and below, tied to artists; royalties and copyright/publishing. It’s all smoke and mirrors, folks.\r\n\r\nJust one example, Pandora has already taken in over $500+ million dollars this year, and there is still another quarter to go. We will use the cooperative to share in the ad revenue with the artists. As I said, it’s time for a change.\r\n\r\nBeyond the ideas and the technology, we also have the smarts and the ability to get it all done. We signed 6 artists on our recent launch. All six artists were accepted in the 1<sup>st</sup> round balloting for the 56<sup>th</sup> Grammy® Awards process. In all, we have 12 entries in the running.\r\n\r\nThis next year is clearly going to be one of incredible change in the industry. I believe I have the team and the artists in place to create a new future for the music industry; one where creativity is valued and fairness is the rule.\r\n\r\nEarth Hertz.\r\nYou better believe it.\r\n\r\nRobert Xeno 2013\r\n[yop_poll id=\"2\" tr_id=\"0000001\"]\r\n\r\n ','About','','inherit','open','open','','1049-revision-v1','','','2013-10-24 16:37:56','2013-10-24 16:37:56','',1049,'http://www.earthhertzrecords.com/2013/10/1049-revision-v1/',0,'revision','',0),(1170,1,'2013-10-24 16:37:34','2013-10-24 16:37:34','Hello, My Name is Robert Xeno\r\n\r\nI am Founder and CEO of Earth Hertz Records, StreamBeam.US, and Stream Share Musicians Cooperative.\r\n\r\nI have been in the music business for the last 35 years and have watched with great concern as the major label format has systematically raped, pillaged, and destroyed artists, music in general, and the entire industry as a whole.\r\n\r\nWell, we put our heads together here at Earth Hertz and we believe we have come up with a solution.\r\n\r\nWe are a record label with its own recording studio and production team. This allows us to keep our costs down while affording artists the freedom to take their time and express their art. One of our pet peeves about the record industry is the idea of making artists pay for what they do. It is art, and artists should be free to create. As such, we never charge nor bill the artist for any of the services required to complete their project. Revolutionary.\r\n\r\nWe feel that if we believe in an artist like they do, then they should not be held accountable for un-recouped costs associated with a project. We are down on the line with the artist and all billing is recouped through the project. If the project makes no money, the artist never owes the company for reimbursement. We insist it is time for a change.\r\n\r\nAlso, we have our own media streaming platform, StreamBeam.US. Here, we will stream our artists’ music at the highest resolutions possible. We have been testing from MP3 standards up to 192k wav streams and beyond.\r\n\r\nThe real deal maker here, as if this already wasn’t enough, is our newest venture, Stream Share Musician’s Cooperative. You see, there is a giant green elephant sitting in the corner of the room but no one in the industry is addressing it. They keep the focus on the .0008 cents per stream and below, tied to artists; royalties and copyright/publishing. It’s all smoke and mirrors, folks.\r\n\r\nJust one example, Pandora has already taken in over $500+ million dollars this year, and there is still another quarter to go. We will use the cooperative to share in the ad revenue with the artists. As I said, it’s time for a change.\r\n\r\nBeyond the ideas and the technology, we also have the smarts and the ability to get it all done. We signed 6 artists on our recent launch. All six artists were accepted in the 1<sup>st</sup> round balloting for the 56<sup>th</sup> Grammy® Awards process. In all, we have 12 entries in the running.\r\n\r\nThis next year is clearly going to be one of incredible change in the industry. I believe I have the team and the artists in place to create a new future for the music industry; one where creativity is valued and fairness is the rule.\r\n\r\nEarth Hertz.\r\nYou better believe it.\r\n\r\nRobert Xeno 2013\r\n[yop_poll id=\"2\" tr_id=\"0000001\"]\r\n\r\n<div id=\'coolsocialb\'><div id=\'coolsociald\'> <a href=\'http://www.coolsocial.net\'>coolsocial.net</a> <a href=\'http://www.coolsocial.net/sites/www/earthhertzrecords.com.html\'>earthhertzrecords.com</a> </div><script type=\'text/javascript\' id=\'coolsocials\'>(function() {function async_load(){var s = document.createElement(\'script\'); s.type = \'text/javascript\'; s.async = true;s.src = \'http://www.coolsocial.net/get_snippet.aspx?url=earthhertzrecords.com\';var x = document.getElementById(\'coolsocials\'); x.parentNode.insertBefore(s, x); }document.getElementById(\'coolsociald\').innerHTML = \'\';if (window.attachEvent) window.attachEvent(\'onload\', async_load); else window.addEventListener(\'load\', async_load, false);})();</script></div>','About','','inherit','open','open','','1049-revision-v1','','','2013-10-24 16:37:34','2013-10-24 16:37:34','',1049,'http://www.earthhertzrecords.com/2013/10/1049-revision-v1/',0,'revision','',0),(1172,1,'2013-10-24 16:38:07','2013-10-24 16:38:07','Hello, My Name is Robert Xeno\r\n\r\nI am Founder and CEO of Earth Hertz Records, StreamBeam.US, and Stream Share Musicians Cooperative.\r\n\r\nI have been in the music business for the last 35 years and have watched with great concern as the major label format has systematically raped, pillaged, and destroyed artists, music in general, and the entire industry as a whole.\r\n\r\nWell, we put our heads together here at Earth Hertz and we believe we have come up with a solution.\r\n\r\nWe are a record label with its own recording studio and production team. This allows us to keep our costs down while affording artists the freedom to take their time and express their art. One of our pet peeves about the record industry is the idea of making artists pay for what they do. It is art, and artists should be free to create. As such, we never charge nor bill the artist for any of the services required to complete their project. Revolutionary.\r\n\r\nWe feel that if we believe in an artist like they do, then they should not be held accountable for un-recouped costs associated with a project. We are down on the line with the artist and all billing is recouped through the project. If the project makes no money, the artist never owes the company for reimbursement. We insist it is time for a change.\r\n\r\nAlso, we have our own media streaming platform, StreamBeam.US. Here, we will stream our artists’ music at the highest resolutions possible. We have been testing from MP3 standards up to 192k wav streams and beyond.\r\n\r\nThe real deal maker here, as if this already wasn’t enough, is our newest venture, Stream Share Musician’s Cooperative. You see, there is a giant green elephant sitting in the corner of the room but no one in the industry is addressing it. They keep the focus on the .0008 cents per stream and below, tied to artists; royalties and copyright/publishing. It’s all smoke and mirrors, folks.\r\n\r\nJust one example, Pandora has already taken in over $500+ million dollars this year, and there is still another quarter to go. We will use the cooperative to share in the ad revenue with the artists. As I said, it’s time for a change.\r\n\r\nBeyond the ideas and the technology, we also have the smarts and the ability to get it all done. We signed 6 artists on our recent launch. All six artists were accepted in the 1<sup>st</sup> round balloting for the 56<sup>th</sup> Grammy® Awards process. In all, we have 12 entries in the running.\r\n\r\nThis next year is clearly going to be one of incredible change in the industry. I believe I have the team and the artists in place to create a new future for the music industry; one where creativity is valued and fairness is the rule.\r\n\r\nEarth Hertz.\r\nYou better believe it.\r\n\r\nRobert Xeno 2013\r\n[yop_poll id=\"2\" tr_id=\"0000001\"]\r\n\r\n \r\n<div id=\'coolsocialb\'><div id=\'coolsociald\'> <a href=\'http://www.coolsocial.net\'>coolsocial.net</a> <a href=\'http://www.coolsocial.net/sites/www/earthhertzrecords.com.html\'>earthhertzrecords.com</a> </div><script type=\'text/javascript\' id=\'coolsocials\'>(function() {function async_load(){var s = document.createElement(\'script\'); s.type = \'text/javascript\'; s.async = true;s.src = \'http://www.coolsocial.net/get_snippet.aspx?url=earthhertzrecords.com\';var x = document.getElementById(\'coolsocials\'); x.parentNode.insertBefore(s, x); }document.getElementById(\'coolsociald\').innerHTML = \'\';if (window.attachEvent) window.attachEvent(\'onload\', async_load); else window.addEventListener(\'load\', async_load, false);})();</script></div>','About','','inherit','open','open','','1049-revision-v1','','','2013-10-24 16:38:07','2013-10-24 16:38:07','',1049,'http://www.earthhertzrecords.com/2013/10/1049-revision-v1/',0,'revision','',0),(1173,1,'2013-10-24 16:49:02','2013-10-24 22:49:02','<strong>Label Mascot, Studio Dog</strong>\r\n\r\n ','About: Lucky 11 Xeno','','publish','open','open','','about-lucky-11-xeno','','','2013-12-06 12:21:01','2013-12-06 18:21:01','',0,'http://www.earthhertzrecords.com/?p=1173',99,'post','',0),(1174,1,'2013-10-24 16:49:02','2013-10-24 16:49:02','<strong>Label Mascot, Studio Dog</strong>','About: Lucky 11 Xeno','','inherit','open','open','','1173-revision-v1','','','2013-10-24 16:49:02','2013-10-24 16:49:02','',1173,'http://www.earthhertzrecords.com/2013/10/1173-revision-v1/',0,'revision','',0),(1175,1,'2013-10-24 16:50:07','2013-10-24 16:50:07','<strong>Label Mascot, Studio Dog</strong>\n\n ','About: Lucky 11 Xeno','','inherit','open','open','','1173-autosave-v1','','','2013-10-24 16:50:07','2013-10-24 16:50:07','',1173,'http://www.earthhertzrecords.com/2013/10/1173-autosave-v1/',0,'revision','',0),(1176,1,'2013-10-24 16:56:26','2013-10-24 16:56:26','<strong>Label Mascot, Studio Dog</strong>\r\n\r\n ','About: Lucky 11 Xeno','','inherit','open','open','','1173-revision-v1','','','2013-10-24 16:56:26','2013-10-24 16:56:26','',1173,'http://www.earthhertzrecords.com/2013/10/1173-revision-v1/',0,'revision','',0),(1177,1,'2013-10-24 16:57:07','2013-10-24 16:57:07','<strong>CEO / President, CTO, Head of Productions</strong>\r\n\r\n \r\n\r\n ','About: Robert Xeno','','inherit','open','open','','1142-revision-v1','','','2013-10-24 16:57:07','2013-10-24 16:57:07','',1142,'http://www.earthhertzrecords.com/2013/10/1142-revision-v1/',0,'revision','',0),(1178,1,'2013-12-13 13:06:50','2013-12-13 19:06:50','<strong>Chief Financial Officer, Director of Communications, Art Director</strong>\n\nHi Im Eloa Xeno','About: Eloa Xeno','','inherit','open','open','','1144-autosave-v1','','','2013-12-13 13:06:50','2013-12-13 19:06:50','',1144,'http://www.earthhertzrecords.com/2013/10/1144-autosave-v1/',0,'revision','',0),(1179,1,'2013-10-24 16:59:25','2013-10-24 16:59:25','<strong>Chief Financial Officer, Art Director, and Head of Merchandising</strong>\r\n\r\nHi Im Eloa Xeno','About: Eloa Xeno','','inherit','open','open','','1144-revision-v1','','','2013-10-24 16:59:25','2013-10-24 16:59:25','',1144,'http://www.earthhertzrecords.com/2013/10/1144-revision-v1/',0,'revision','',0),(1180,1,'2013-10-24 17:21:23','2013-10-24 23:21:23','<strong>Executive Producer</strong>','About: Ethan Chen-Xeno','','publish','open','open','','about-ethan-chen-xeno','','','2013-12-06 12:19:45','2013-12-06 18:19:45','',0,'http://www.earthhertzrecords.com/?p=1180',98,'post','',0),(1181,1,'2013-10-24 17:21:23','2013-10-24 17:21:23','<strong>Executive Producer</strong>','About: Ethan Chen-Xeno','','inherit','open','open','','1180-revision-v1','','','2013-10-24 17:21:23','2013-10-24 17:21:23','',1180,'http://www.earthhertzrecords.com/2013/10/1180-revision-v1/',0,'revision','',0),(1182,1,'2013-10-24 18:27:11','2013-10-24 18:27:11','<strong>Director of Photography</strong>','About: Michelle Taylor','','publish','open','open','','about-michelle-taylor','','','2013-10-24 18:42:40','2013-10-24 18:42:40','',0,'http://www.earthhertzrecords.com/?p=1182',9,'post','',0),(1183,1,'2013-10-24 18:27:11','2013-10-24 18:27:11','<strong>Director of Photography</strong>','About: Michelle Taylor','','inherit','open','open','','1182-revision-v1','','','2013-10-24 18:27:11','2013-10-24 18:27:11','',1182,'http://www.earthhertzrecords.com/2013/10/1182-revision-v1/',0,'revision','',0),(1185,1,'2013-10-28 17:21:32','2013-10-28 17:21:32','<strong>Producer, Production Coordinator, A&R\r\n</strong>Growing up in the small town mountains of east Tennessee, I started playing music around the age of nine. While I began as a drummer, within a few years I switched to electric guitar and that’s when I really fell in love with music. Looking to join a band and fit in with much cooler people, I started playing bass guitar. After being in several bands, I moved to Nashville, Tennessee to become a rock star. In Nashville I found the real music business, and its devilish ways of dealing souls to the next level, so I decided to move into the audio engineering field. I worked with a couple of sound companies running cables, moving speakers, and sleeping in cheap hotel rooms. After some time, I studied and learned the art of audio engineering, eventually becoming a co-head engineer at festivals, and with groups at local bars.\r\n\r\nAfter a while, working in bars until 3 or 4am loading out sound gear took its toll, and it was time to make a change. I spent the next two and a half years sitting back enjoying music and managing hotels in beautiful Savannah, Georgia. Then out of nowhere, the hunger for music came back. I moved back to Nashville, Tennessee, and jumped right back into audio engineering. While it was a great experience, I needed more, and soon a door opened for me to host my own radio show, Josh’s Underground Music Show back in east Tennessee.\r\n\r\nWithout rules, and with the freedom of choosing whatever I wanted to play on air, I knew I had found a home. Now, between the radio show and working with Earth Hertz Records, I am able to discover and develop great new talent. On a daily basis I receive up to 100 new albums, EPs and singles, giving me the opportunity to find artists with great potential in the music business.\r\n\r\nMy job as a Producer/A&R, is to make each artist reach their full capability, even if it means making them sing upside down to create the right vocal track. I take the artists’ vision for their music and guide them to the nearest point it can be achieved. Having worked in the blues, folk, rock, metal, punk and bluegrass genres, I am always looking forward to finding new artists, and new types of music for inspiration.\r\n\r\n \r\n\r\n ','About: Joshua D. Ayers','','inherit','open','open','','1163-revision-v1','','','2013-10-28 17:21:32','2013-10-28 17:21:32','',1163,'http://www.earthhertzrecords.com/2013/10/1163-revision-v1/',0,'revision','',0),(1186,1,'2013-10-29 16:41:09','2013-10-29 16:41:09','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs.jpg\"><img class=\"aligncenter size-large wp-image-1192\" alt=\"Winery_Dogs\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs-1024x768.jpg\" width=\"650\" height=\"487\" /></a>It’s not often you get a chance to see one of the best musicians on their instrument be able to do their thing up close and personal.\r\n\r\nLet alone three.\r\n\r\n[caption id=\"attachment_1193\" align=\"alignleft\" width=\"225\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Billy_Sheehan.jpg\"><img class=\"size-medium wp-image-1193\" alt=\"Billy_Sheehan\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Billy_Sheehan-225x300.jpg\" width=\"225\" height=\"300\" /></a> Billy Sheehan[/caption]\r\n\r\nIt’s been a successful opening run for classic power trio, The Winery Dogs. Since the release of the band’s critically acclaimed debut album in June, the “super-group” featuring guitarist Richie Kotzen<em> (Poison, Mr. Big)</em>, bassist Billy Sheehan <em>(Talas, David Lee Roth, Mr. Big)</em> and drummer Mike Portnoy <em>(Dream Theater, Adrenaline Mob) </em>has already toured the U.S and abroad; bringing their unique blend of in your face rock to the hungry masses. So it’s no surprise the band was firing on all cylinders when it made a stop at the Maingate Night Club in Allentown, PA on October 27th.\r\n\r\nSeeing these three virtuosos on stage together on their first tour makes me think of what it must have been like seeing Cream or RUSH early on. No matter what instrument you might play personally, it’s like experiencing musical nirvana.\r\n\r\n[caption id=\"attachment_1194\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Richie_Kotzen.jpg\"><img class=\"size-medium wp-image-1194\" alt=\"Richie_Kotzen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Richie_Kotzen-300x225.jpg\" width=\"300\" height=\"225\" /></a> Richie Kotzen[/caption]\r\n\r\nKotzen, who grew up in nearby Reading, PA saw his very first heavy metal concert at the Allentown Fairgrounds <em>(a venue which stands right next door)</em> and felt right at home on the Maingate’s intimate stage. Since dropping the pick from his guitar repertoire years ago, his playing has matured from metal shredder to blues pioneer.\r\n\r\nPortnoy’s drumming is something to behold. He is one of the few drummers I know of that thankfully doesn’t just relegate himself to keeping a beat behind a kit. He’s all in, on every song.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs2.jpg\"><img class=\"alignleft size-medium wp-image-1195\" alt=\"Winery_Dogs2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs2-300x225.jpg\" width=\"300\" height=\"225\" /></a>\r\n\r\n \r\n\r\nOne of the coolest moments of the night came when Sheehan added a bit of “Sweet Jane” into his bass solo; a tribute to the legendary Lou Reed who sadly passed away earlier that day. The crowd responded enthusiastically to Sheehan’s salute to the Velvet Underground pioneer, and rightfully so. Sheehan, known for his incredible two-handed tapping attack, is the equivalent of Eddie Van Halen on the bass.\r\n\r\nNext To None <em>(a band which features Portnoy’s son Max on drums)</em> helped open the show, performing songs from their debut EP. Perhaps it was a glimpse into the crystal ball at the next generation of great musicianship, and further proving that rock is not dead.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs3.jpg\"><img class=\"alignright size-medium wp-image-1196\" alt=\"Winery_Dogs3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs3-300x168.jpg\" width=\"300\" height=\"168\" /></a>Sheehan once said The Winery Dogs had no intention of capitalizing on what they’ve done individually in other projects, and instead wanted to focus on something that was straight out of the box. Mission accomplished. In an era when auto tune and sampling are all the rage, The Winery Dogs are holding down the fort against the onslaught of the artificial.\r\n\r\nRock on.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','The Winery Dogs Concert Review: Allentown, PA','','publish','open','open','','the-winery-dogs','','','2013-11-20 00:48:16','2013-11-20 00:48:16','',0,'http://www.earthhertzrecords.com/?p=1186',0,'post','',0),(1187,1,'2013-10-29 16:41:09','2013-10-29 16:41:09','','The Winery Dogs','','inherit','open','open','','1186-revision-v1','','','2013-10-29 16:41:09','2013-10-29 16:41:09','',1186,'http://www.earthhertzrecords.com/2013/10/1186-revision-v1/',0,'revision','',0),(1188,1,'2013-10-29 16:41:42','2013-10-29 16:41:42','<i>Howl</i>, the first album from the <a href=\"http://thehowlinbrothers.com/\" target=\"_blank\">Howlin’ Brothers</a> with Brendan Benson as producer was, forgive me, a Howlin’ success. After spending 24 weeks on The Americana Music Radio Chart, and peaking at #6, the Howlin’ Brothers have been busy in the studio and touring virtually non-stop. A new album, also produced by Benson will be released in early 2014. But to whet the appetite of their fans, the band has just dropped a self-produced six song EP, recorded at the legendary Sun Studio in Memphis, Tennessee.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Promo2.jpeg\"><img class=\"alignleft size-medium wp-image-1226\" alt=\"Promo2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Promo2-300x300.jpeg\" width=\"300\" height=\"300\" /></a>Sun Studio has seen the greats walk in to create history. Elvis, Johnny Cash, Roy Orbison, Carl Perkins, and more recently Boz Scaggs recorded his successful album,<i>Memphis</i>. The mystique of the studio is equal only to the ghosts in residence, whether real or imaginary. The Howlin’ Brothers walked in and through osmosis or telepathy, recorded a classic set of songs, dripping with Sun Studio mojo.\r\n\r\nIan Craft, Ben Plasse and Jared Green chose four original songs for the middle of the EP. Ones they felt would cook up like fried chicken in your grandma’s cast iron skillet, knowing the musical flavors cooked into Sun Studio over the years, would produce that subtle taste found nowhere else. Then they took an old favorite, Carl Perkin’s “Dixie Fried,” to open up the session, and to end it, one of their own songs reworked in homage to the studio itself.\r\n\r\nStarting off with an old Sun Studio treasure, the Howlin’ Brothers cover of “Dixie Fried” takes the original and adds a layer of freshness. Sweet pickin’ on top, while the thumping bass of Ben Plasse anchors the energy.\r\n\r\n“Til I Find You” has much more of a traditional Americana feel. The quick tempo, yearning vocals, harmonica and banjo, create the urgency the lyrics convey.\r\n\r\nSlowing the pace down, “Troubled Waltz” gives off an ominous tone. Though only guitar, banjo and bass are heard on this track, there is sufficient fullness of sound to portray the melancholy of the song.\r\n\r\n“Take Me Down” feels more like the sound found on their last release, <i>Howl</i>. Part Country, part Americana, or as the Brothers would probably call it, just good “old-time” music. These songs were recorded live in the studio, and it seems the third take of this tune was the charm.\r\n\r\nQuick paced and ready for dancing, “Charleston Chew” is heavy on the harmonica and gives off a good old bluegrass feel. If you get the chance to see the Howlin’ Brothers live, you can expect to see Jared Green dancing in quickstep to the beat.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/howlin-sss-500x.jpg\"><img class=\"alignright size-medium wp-image-1227\" alt=\"howlin-sss-500x\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/howlin-sss-500x-300x297.jpg\" width=\"300\" height=\"297\" /></a>Seeing the Sun Studio piano while becoming immersed in the ambiance of the room, the Brothers decided to re-record “Tennessee Blues,” off their <i>Howl</i> album. This time the track included only the bass, fiddle and the historically significant piano. The stripped down version fits in perfectly. While Green hits the keys that have created notes for archival moments of music history, Ian Craft sings mournfully, before letting the fiddle finish setting the mood. At first the idea of redoing a song from the previous album seemed a little strange, but not only does the piano take center stage, it finishes the EP with a sweetness and richness that can’t be manufactured. It comes from music produced in that room, sounds that permeated the walls and never left.\r\n\r\nThe Sun Studio Session is only available in digital form, and the session will be broadcast on PBS early in 2014. The EP is as solid as <i>Howl,</i> and is a nice bridge to the highly anticipated release due in February. In the meantime, the Howlin’ Brothers continue to tour, gaining fans and great reviews along the way.\r\n\r\n<strong>Review by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a></strong>\r\n\r\nFirst published on <a href=\"http://ourvinyl.com/howlin-brothers-the-sun-studio-sessions/\">ourvinyl.com</a>','The Howlin\' Brothers: The Sun Studio Sessions','','publish','open','open','','the-howlin-brothers-interview','','','2013-11-20 00:52:38','2013-11-20 00:52:38','',0,'http://www.earthhertzrecords.com/?p=1188',0,'post','',0),(1189,1,'2013-10-29 16:41:42','2013-10-29 16:41:42','','The Howlin Brothers Interview','','inherit','open','open','','1188-revision-v1','','','2013-10-29 16:41:42','2013-10-29 16:41:42','',1188,'http://www.earthhertzrecords.com/2013/10/1188-revision-v1/',0,'revision','',0),(1191,2,'2013-10-29 20:38:53','2013-10-29 20:38:53','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs.jpg\"><img class=\"aligncenter size-large wp-image-1192\" alt=\"Winery_Dogs\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs-1024x768.jpg\" width=\"650\" height=\"487\" /></a>It’s not often you get a chance to see one of the best musicians on their instrument be able to do their thing up close and personal.\r\n\r\nLet alone three.\r\n\r\n[caption id=\"attachment_1193\" align=\"alignleft\" width=\"225\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Billy_Sheehan.jpg\"><img class=\"size-medium wp-image-1193\" alt=\"Billy_Sheehan\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Billy_Sheehan-225x300.jpg\" width=\"225\" height=\"300\" /></a> Billy Sheehan[/caption]\r\n\r\nIt’s been a successful opening run for classic power trio, The Winery Dogs. Since the release of the band’s critically acclaimed debut album in June, the “super-group” featuring guitarist Richie Kotzen<em> (Poison, Mr. Big)</em>, bassist Billy Sheehan <em>(Talas, David Lee Roth, Mr. Big)</em> and drummer Mike Portnoy <em>(Dream Theater, Adrenaline Mob) </em>has already toured the U.S and abroad; bringing their unique blend of in your face rock to the hungry masses. So it’s no surprise the band was firing on all cylinders when it made a stop at the Maingate Night Club in Allentown, PA on October 27th.\r\n\r\nSeeing these three virtuosos on stage together on their first tour makes me think of what it must have been like seeing Cream or RUSH early on. No matter what instrument you might play personally, it’s like experiencing musical nirvana.\r\n\r\n[caption id=\"attachment_1194\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Richie_Kotzen.jpg\"><img class=\"size-medium wp-image-1194\" alt=\"Richie_Kotzen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Richie_Kotzen-300x225.jpg\" width=\"300\" height=\"225\" /></a> Richie Kotzen[/caption]\r\n\r\nKotzen, who grew up in nearby Reading, PA saw his very first heavy metal concert at the Allentown Fairgrounds <em>(a venue which stands right next door)</em> and felt right at home on the Maingate’s intimate stage. Since dropping the pick from his guitar repertoire years ago, his playing has matured from metal shredder to blues pioneer.\r\n\r\nPortnoy’s drumming is something to behold. He is one of the few drummers I know of that thankfully doesn’t just relegate himself to keeping a beat behind a kit. He’s all in, on every song.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs2.jpg\"><img class=\"alignleft size-medium wp-image-1195\" alt=\"Winery_Dogs2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs2-300x225.jpg\" width=\"300\" height=\"225\" /></a>\r\n\r\n \r\n\r\nOne of the coolest moments of the night came when Sheehan added a bit of “Sweet Jane” into his bass solo; a tribute to the legendary Lou Reed who sadly passed away earlier that day. The crowd responded enthusiastically to Sheehan’s salute to the Velvet Underground pioneer, and rightfully so. Sheehan, known for his incredible two-handed tapping attack, is the equivalent of Eddie Van Halen on the bass.\r\n\r\nNext To None <em>(a band which features Portnoy’s son Max on drums)</em> helped open the show, performing songs from their debut EP. Perhaps it was a glimpse into the crystal ball at the next generation of great musicianship, and further proving that rock is not dead.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs3.jpg\"><img class=\"alignright size-medium wp-image-1196\" alt=\"Winery_Dogs3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs3-300x168.jpg\" width=\"300\" height=\"168\" /></a>Sheehan once said The Winery Dogs had no intention of capitalizing on what they’ve done individually in other projects, and instead wanted to focus on something that was straight out of the box. Mission accomplished. In an era when auto tune and sampling are all the rage, The Winery Dogs are holding down the fort against the onslaught of the artificial.\r\n\r\nRock on.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','The Winery Dogs Concert Review: Allentown, PA','','inherit','open','open','','1186-autosave-v1','','','2013-10-29 20:38:53','2013-10-29 20:38:53','',1186,'http://www.earthhertzrecords.com/2013/10/1186-autosave-v1/',0,'revision','',0),(1192,2,'2013-10-29 20:10:17','2013-10-29 20:10:17','','Winery_Dogs','','inherit','open','open','','winery_dogs','','','2013-10-29 20:10:17','2013-10-29 20:10:17','',1186,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs.jpg',0,'attachment','image/jpeg',0),(1193,2,'2013-10-29 20:11:26','2013-10-29 20:11:26','','Billy_Sheehan','','inherit','open','open','','billy_sheehan','','','2013-10-29 20:11:26','2013-10-29 20:11:26','',1186,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Billy_Sheehan.jpg',0,'attachment','image/jpeg',0),(1194,2,'2013-10-29 20:12:03','2013-10-29 20:12:03','','Richie_Kotzen','','inherit','open','open','','richie_kotzen','','','2013-10-29 20:12:03','2013-10-29 20:12:03','',1186,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Richie_Kotzen.jpg',0,'attachment','image/jpeg',0),(1195,2,'2013-10-29 20:12:47','2013-10-29 20:12:47','','Winery_Dogs2','','inherit','open','open','','winery_dogs2','','','2013-10-29 20:12:47','2013-10-29 20:12:47','',1186,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs2.jpg',0,'attachment','image/jpeg',0),(1196,2,'2013-10-29 20:13:17','2013-10-29 20:13:17','','Winery_Dogs3','','inherit','open','open','','winery_dogs3','','','2013-10-29 20:13:17','2013-10-29 20:13:17','',1186,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs3.jpg',0,'attachment','image/jpeg',0),(1197,2,'2013-10-29 20:13:55','2013-10-29 20:13:55','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs.jpg\"><img class=\"aligncenter size-large wp-image-1192\" alt=\"Winery_Dogs\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs-1024x768.jpg\" width=\"650\" height=\"487\" /></a>It’s not often you get a chance to see one of the best musicians on their instrument be able to do their thing up close and personal.\r\n\r\nLet alone three.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Billy_Sheehan.jpg\"><img class=\"alignleft size-medium wp-image-1193\" alt=\"Billy_Sheehan\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Billy_Sheehan-225x300.jpg\" width=\"225\" height=\"300\" /></a>It’s been a successful opening run for classic power trio, The Winery Dogs. Since the release of the band’s critically acclaimed debut album in June, the “super-group” featuring guitarist Richie Kotzen<em> (Poison, Mr. Big)</em>, bassist Billy Sheehan <em>(Talas, David Lee Roth, Mr. Big)</em> and drummer Mike Portnoy <em>(Dream Theater, Adrenaline Mob) </em>has already toured the U.S and abroad; bringing their unique blend of in your face rock to the hungry masses. So it’s no surprise the band was firing on all cylinders when it made a stop at the Maingate Night Club in Allentown, PA on October 27th.\r\n\r\nSeeing these three virtuosos on stage together on their first tour makes me think of what it must have been like seeing Cream or RUSH early on. No matter what instrument you might play personally, it’s like experiencing musical nirvana.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Richie_Kotzen.jpg\"><img class=\"alignright size-medium wp-image-1194\" alt=\"Richie_Kotzen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Richie_Kotzen-300x225.jpg\" width=\"300\" height=\"225\" /></a>Kotzen, who grew up in nearby Reading, PA saw his very first heavy metal concert at the Allentown Fairgrounds <em>(a venue which stands right next door)</em><em> and </em>felt right at home on the Maingate’s intimate stage. Since dropping the pick from his guitar repertoire years ago, his playing has matured from metal shredder to blues pioneer.\r\n\r\nPortnoy’s drumming is something to behold. He is one of the few drummers I know of that thankfully doesn’t just relegate himself to keeping a beat behind a kit. He’s all in, on every song.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs2.jpg\"><img class=\"alignleft size-medium wp-image-1195\" alt=\"Winery_Dogs2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs2-300x225.jpg\" width=\"300\" height=\"225\" /></a>One of the coolest moments of the night came when Sheehan added a bit of “Sweet Jane” into his bass solo; a tribute to the legendary Lou Reed who sadly passed away earlier that day. The crowd responded enthusiastically to Sheehan’s salute to the Velvet Underground pioneer, and rightfully so. Sheehan, known for his incredible two-handed tapping attack, is the equivalent of Eddie Van Halen on the bass.\r\n\r\nNext To None <em>(a band which features Portnoy’s son Max on drums)</em> helped open the show, performing songs from their debut EP. Perhaps it was a glimpse into the crystal ball at the next generation of great musicianship and further proving that rock is not dead.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs3.jpg\"><img class=\"alignright size-medium wp-image-1196\" alt=\"Winery_Dogs3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs3-300x168.jpg\" width=\"300\" height=\"168\" /></a>Sheehan once said The Winery Dogs had no intention of capitalizing on what they’ve done individually in other projects and instead wanted to focus on something that was straight out of the box. Mission accomplished. In an era when auto tune and sampling are all the rage, The Winery Dogs are holding down the fort against the onslaught of the artificial.\r\n\r\nRock on.','Winery Dogs Concert Review: Allentown, PA','','inherit','open','open','','1186-revision-v1','','','2013-10-29 20:13:55','2013-10-29 20:13:55','',1186,'http://www.earthhertzrecords.com/2013/10/1186-revision-v1/',0,'revision','',0),(1198,2,'2013-10-29 20:28:56','2013-10-29 20:28:56','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs.jpg\"><img class=\"aligncenter size-large wp-image-1192\" alt=\"Winery_Dogs\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs-1024x768.jpg\" width=\"650\" height=\"487\" /></a>It’s not often you get a chance to see one of the best musicians on their instrument be able to do their thing up close and personal.\r\n\r\nLet alone three.\r\n\r\n[caption id=\"attachment_1193\" align=\"alignleft\" width=\"225\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Billy_Sheehan.jpg\"><img class=\"size-medium wp-image-1193\" alt=\"Billy_Sheehan\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Billy_Sheehan-225x300.jpg\" width=\"225\" height=\"300\" /></a> Billy Sheehan[/caption]\r\n\r\nIt’s been a successful opening run for classic power trio, The Winery Dogs. Since the release of the band’s critically acclaimed debut album in June, the “super-group” featuring guitarist Richie Kotzen<em> (Poison, Mr. Big)</em>, bassist Billy Sheehan <em>(Talas, David Lee Roth, Mr. Big)</em> and drummer Mike Portnoy <em>(Dream Theater, Adrenaline Mob) </em>has already toured the U.S and abroad; bringing their unique blend of in your face rock to the hungry masses. So it’s no surprise the band was firing on all cylinders when it made a stop at the Maingate Night Club in Allentown, PA on October 27th.\r\n\r\nSeeing these three virtuosos on stage together on their first tour makes me think of what it must have been like seeing Cream or RUSH early on. No matter what instrument you might play personally, it’s like experiencing musical nirvana.\r\n\r\n[caption id=\"attachment_1194\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Richie_Kotzen.jpg\"><img class=\"size-medium wp-image-1194\" alt=\"Richie_Kotzen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Richie_Kotzen-300x225.jpg\" width=\"300\" height=\"225\" /></a> Richie Kotzen[/caption]\r\n\r\nKotzen, who grew up in nearby Reading, PA saw his very first heavy metal concert at the Allentown Fairgrounds <em>(a venue which stands right next door)</em><em> and </em>felt right at home on the Maingate’s intimate stage. Since dropping the pick from his guitar repertoire years ago, his playing has matured from metal shredder to blues pioneer.\r\n\r\nPortnoy’s drumming is something to behold. He is one of the few drummers I know of that thankfully doesn’t just relegate himself to keeping a beat behind a kit. He’s all in, on every song.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs2.jpg\"><img class=\"alignleft size-medium wp-image-1195\" alt=\"Winery_Dogs2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs2-300x225.jpg\" width=\"300\" height=\"225\" /></a>One of the coolest moments of the night came when Sheehan added a bit of “Sweet Jane” into his bass solo; a tribute to the legendary Lou Reed who sadly passed away earlier that day. The crowd responded enthusiastically to Sheehan’s salute to the Velvet Underground pioneer, and rightfully so. Sheehan, known for his incredible two-handed tapping attack, is the equivalent of Eddie Van Halen on the bass.\r\n\r\nNext To None <em>(a band which features Portnoy’s son Max on drums)</em> helped open the show, performing songs from their debut EP. Perhaps it was a glimpse into the crystal ball at the next generation of great musicianship and further proving that rock is not dead.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs3.jpg\"><img class=\"alignright size-medium wp-image-1196\" alt=\"Winery_Dogs3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs3-300x168.jpg\" width=\"300\" height=\"168\" /></a>Sheehan once said The Winery Dogs had no intention of capitalizing on what they’ve done individually in other projects and instead wanted to focus on something that was straight out of the box. Mission accomplished. In an era when auto tune and sampling are all the rage, The Winery Dogs are holding down the fort against the onslaught of the artificial.\r\n\r\nRock on.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>His new children\'s book is now available for purchase : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','The Winery Dogs Concert Review: Allentown, PA','','inherit','open','open','','1186-revision-v1','','','2013-10-29 20:28:56','2013-10-29 20:28:56','',1186,'http://www.earthhertzrecords.com/2013/10/1186-revision-v1/',0,'revision','',0),(1199,2,'2013-10-29 20:38:42','2013-10-29 20:38:42','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs.jpg\"><img class=\"aligncenter size-large wp-image-1192\" alt=\"Winery_Dogs\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs-1024x768.jpg\" width=\"650\" height=\"487\" /></a>It’s not often you get a chance to see one of the best musicians on their instrument be able to do their thing up close and personal.\r\n\r\nLet alone three.\r\n\r\n[caption id=\"attachment_1193\" align=\"alignleft\" width=\"225\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Billy_Sheehan.jpg\"><img class=\"size-medium wp-image-1193\" alt=\"Billy_Sheehan\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Billy_Sheehan-225x300.jpg\" width=\"225\" height=\"300\" /></a> Billy Sheehan[/caption]\r\n\r\nIt’s been a successful opening run for classic power trio, The Winery Dogs. Since the release of the band’s critically acclaimed debut album in June, the “super-group” featuring guitarist Richie Kotzen<em> (Poison, Mr. Big)</em>, bassist Billy Sheehan <em>(Talas, David Lee Roth, Mr. Big)</em> and drummer Mike Portnoy <em>(Dream Theater, Adrenaline Mob) </em>has already toured the U.S and abroad; bringing their unique blend of in your face rock to the hungry masses. So it’s no surprise the band was firing on all cylinders when it made a stop at the Maingate Night Club in Allentown, PA on October 27th.\r\n\r\nSeeing these three virtuosos on stage together on their first tour makes me think of what it must have been like seeing Cream or RUSH early on. No matter what instrument you might play personally, it’s like experiencing musical nirvana.\r\n\r\n[caption id=\"attachment_1194\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Richie_Kotzen.jpg\"><img class=\"size-medium wp-image-1194\" alt=\"Richie_Kotzen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Richie_Kotzen-300x225.jpg\" width=\"300\" height=\"225\" /></a> Richie Kotzen[/caption]\r\n\r\nKotzen, who grew up in nearby Reading, PA saw his very first heavy metal concert at the Allentown Fairgrounds <em>(a venue which stands right next door)</em> and felt right at home on the Maingate’s intimate stage. Since dropping the pick from his guitar repertoire years ago, his playing has matured from metal shredder to blues pioneer.\r\n\r\nPortnoy’s drumming is something to behold. He is one of the few drummers I know of that thankfully doesn’t just relegate himself to keeping a beat behind a kit. He’s all in, on every song.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs2.jpg\"><img class=\"alignleft size-medium wp-image-1195\" alt=\"Winery_Dogs2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs2-300x225.jpg\" width=\"300\" height=\"225\" /></a>\r\n\r\n \r\n\r\nOne of the coolest moments of the night came when Sheehan added a bit of “Sweet Jane” into his bass solo; a tribute to the legendary Lou Reed who sadly passed away earlier that day. The crowd responded enthusiastically to Sheehan’s salute to the Velvet Underground pioneer, and rightfully so. Sheehan, known for his incredible two-handed tapping attack, is the equivalent of Eddie Van Halen on the bass.\r\n\r\nNext To None <em>(a band which features Portnoy’s son Max on drums)</em> helped open the show, performing songs from their debut EP. Perhaps it was a glimpse into the crystal ball at the next generation of great musicianship, and further proving that rock is not dead.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs3.jpg\"><img class=\"alignright size-medium wp-image-1196\" alt=\"Winery_Dogs3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Winery_Dogs3-300x168.jpg\" width=\"300\" height=\"168\" /></a>Sheehan once said The Winery Dogs had no intention of capitalizing on what they’ve done individually in other projects, and instead wanted to focus on something that was straight out of the box. Mission accomplished. In an era when auto tune and sampling are all the rage, The Winery Dogs are holding down the fort against the onslaught of the artificial.\r\n\r\nRock on.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','The Winery Dogs Concert Review: Allentown, PA','','inherit','open','open','','1186-revision-v1','','','2013-10-29 20:38:42','2013-10-29 20:38:42','',1186,'http://www.earthhertzrecords.com/2013/10/1186-revision-v1/',0,'revision','',0),(1200,2,'2013-10-30 00:31:50','2013-10-30 00:31:50','<p style=\"text-align: center;\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\"><img class=\"size-full wp-image-1202 alignnone\" alt=\"KatsTheory-Rascals-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\" width=\"900\" height=\"675\" /></a><strong> <i>“You may leave your cell phones on, take pictures, tweet them, facebook them, </i></strong></p>\r\n<p style=\"text-align: center;\"><strong><i>whatever the fuck you want.”</i></strong></p>\r\nThe pre-show announcement was a little different than most; yeah, this night might just be fun.\r\n\r\nThis night was the first show of a 15-night limited engagement and it was time for local legends to come home. After forty years, <a href=\"http://rascalsdream.com/\" target=\"_blank\"><strong><i>The Rascals</i></strong></a> were back together.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2.jpg\"><img class=\"alignleft size-medium wp-image-1204\" alt=\"KatsTheory-Rascals-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2-300x225.jpg\" width=\"300\" height=\"225\" /></a>As anyone who lived in the NY Metro area in the 60’s will tell you, there were some local bands that made it and you were happy for them. But The Rascals were the band you were proud to call your own, they were the band that rocked it all over the world, even after the Brits came over here and essentially took over the music scene.\r\n\r\nSteven Van Zandt of The E Street Band, was one of the thousands who grew up with The Rascals blend of rock, pop and blue-eyed soul, and never forgot it. For years he tried to get the band back together and for years they turned him down. Forty years after the original quartet last performed, he got his wish.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3.jpg\"><img class=\"alignright size-medium wp-image-1205\" alt=\"KatsTheory-Rascals-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3-300x225.jpg\" width=\"300\" height=\"225\" /></a>Produced by Steven and Maureen Van Zandt and written by Steven Van Zandt, <a href=\"http://www.kickstarter.com/projects/stevenvanzandt/the-rascals-once-upon-a-dream-reunion-shows\" target=\"_blank\"><i>Once Upon A Dream</i></a> is not just a concert, nor is it a revival show. It is one of the best history lessons about the 60’s you will ever see. The stage is without scenery, only the band; with keyboardist Felix Cavaliere and drummer Dino Danelli on separate risers. Using their songs as a backdrop, pieces of history are shown on the giant screen behind the band. The show opens with Sophie Zamchick, looking the part of a flower child, ethereally singing the title song; her image imposed on the curtain at the front of the stage.\r\n\r\nAs the band opened with “It’s Wonderful,” the first thing you notice is the big beat from Danelli. Always recognized as one of the best drummers of the day, the years haven’t taken away a thing. Crisp and precise, his technique is a testament to knowing exactly what is needed and doing it. A momentary technical glitch had lead singer Eddie Brigati’s microphone non-functional for about a minute. After a quick fix, the next two hours were a non-stop journey of the story behind the band, and some of the best music to come out of the seminal era of rock and roll.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4.jpg\"><img class=\"alignleft size-medium wp-image-1206\" alt=\"KatsTheory-Rascals-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4-300x225.jpg\" width=\"300\" height=\"225\" /></a>Between songs, the tale of their beginnings is shared by way of film clips of Felix, Eddie, Gene and Dino talking about how they met, what influenced them and how the music was created. The narrator and tour guide if you will, is Vinny Pastore, “Big Pussy” from the Sopranos, who not only fills in the gaps, but provides a lot of comic relief. From their humble beginnings in New Jersey at The Choo Choo Club, a long-closed bar which stood less than a quarter mile from where this review is being written, to London and their brush with another big act from the 60’s,The Beatles; the story of The Rascals is entertaining to say the least.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6.jpg\"><img class=\"alignright size-medium wp-image-1207\" alt=\"KatsTheory-Rascals-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6-300x225.jpg\" width=\"300\" height=\"225\" /></a>The visual design by Marc Brickman is at times, breathtaking. What he has created using only a video screen is remarkable. Providing a view of all that was current during the time of The Rascals reign, it looks nothing like a documentary. It’s more like a road trip in a VW microbus, with better gas mileage.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5.jpg\"><img class=\"alignleft size-medium wp-image-1208\" alt=\"KatsTheory-Rascals-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5-300x225.jpg\" width=\"300\" height=\"225\" /></a>Four decades is a long time to be out of the public eye, and it’s no longer those four young twenty-somethings on stage. But close your eyes for a minute and you know the sound is the real deal. Felix still has the soulful pipes, Gene, always the showman, connects with the audience and reminds us that shredding is not only a young man’s claim. With double tambourines, or tambourine and maracas, Eddie with his exuberance, is the soul of the show. And Dino is still intense. Pull up “What Is The Reason” on YouTube and you will hear a serious drum line and a solo that every air drummer of the day had in his repertoire. Think Phil Collins “In The Air Tonight,” only more kick-ass.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7.jpg\"><img class=\"alignleft size-medium wp-image-1209\" alt=\"KatsTheory-Rascals-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7-300x225.jpg\" width=\"300\" height=\"225\" /></a>As for the music, all the hits are there along with some lesser-known songs. “Somebody To Love,” while not their biggest hit, was as important as “Groovin” in the history of the band. Bridging a time when the sound of the 60’s was changing from pop to psychedelic, the song showed the true measure of the band. In total there are 28 tunes, all worth the price of admission. On this night, there were three standing ovations during the show itself along with dancing in the aisles. The Rascals were always musicians and still are. While every song is done well, they are not re-creating the sound note-for-note that came out of the 45’s on your record player. It’s a living, breathing show.\r\n\r\nHaving the original members of the band in the show means this is a project that can’t last forever. This run is for 15 shows. Put your money on it popping up from time to time in different places. See it if you can. <i>Once Upon A Dream</i> is truly a once in a lifetime event.\r\n\r\n<strong>Review by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a></strong>\r\n\r\nOriginally published in <a href=\"http://ourvinyl.com/the-rascals-nyc-concert-review/\">ourvinyl.com</a>','The Rascals: Once Upon A Dream','','publish','open','open','','the-rascals-once-upon-a-dream','','','2013-11-20 00:52:03','2013-11-20 00:52:03','',0,'http://www.earthhertzrecords.com/?p=1200',0,'post','',3),(1201,2,'2013-10-29 23:23:57','2013-10-29 23:23:57','<p style=\"text-align: center;\"> <i>“You may leave your cell phones on, take pictures, tweet them, facebook them, whatever the fuck you want.”</i></p>\r\nThe pre-show announcement was a little different than most; yeah, this night might just be fun.\r\n\r\nThis night was the first show of a 15-night limited engagement and it was time for local legends to come home. After forty years, <a href=\"http://rascalsdream.com/\" target=\"_blank\"><strong><i>The Rascals</i></strong></a> were back together.\r\n\r\nAs anyone who lived in the NY Metro area in the 60’s will tell you, there were some local bands that made it and you were happy for them. But The Rascals were the band you were proud to call your own, they were the band that rocked it all over the world, even after the Brits came over here and essentially took over the music scene.\r\n\r\nSteven Van Zandt of The E Street Band, was one of the thousands who grew up with The Rascals blend of rock, pop and blue-eyed soul, and never forgot it. For years he tried to get the band back together and for years they turned him down. Forty years after the original quartet last performed, he got his wish.\r\n\r\nWritten by Van Zandt, <a href=\"http://www.kickstarter.com/projects/stevenvanzandt/the-rascals-once-upon-a-dream-reunion-shows\" target=\"_blank\"><i>Once Upon A Dream</i></a> is not just a concert, nor is it a revival show. It is one of the best history lessons about the 60’s you will ever see. The stage is without scenery, only the band; with keyboardist Felix Cavaliere and drummer Dino Danelli on separate risers. Using their songs as a backdrop, pieces of history are shown on the giant screen behind the band. The show opens with Sophie Zamchick, looking the part of a flower child, ethereally singing the title song; her image imposed on the curtain at the front of the stage.\r\n\r\nAs the band opened with “It’s Wonderful,” the first thing you notice is the big beat from Danelli. Always recognized as one of the best drummers of the day, the years haven’t taken away a thing. Crisp and precise, his technique is a testament to knowing exactly what is needed and doing it. A momentary technical glitch had lead singer Eddie Brigati’s microphone non-functional for about a minute. After a quick fix, the next two hours were a non-stop journey of the story behind the band, and some of the best music to come out of the seminal era of rock and roll.\r\n\r\nBetween songs, the tale of their beginnings is shared by way of film clips of Felix, Eddie, Gene and Dino talking about how they met, what influenced them and how the music was created. The narrator and tour guide if you will, is Vinny Pastore, “Big Pussy” from the Sopranos, who not only fills in the gaps, but provides a lot of comic relief. From their humble beginnings in New Jersey at The Choo Choo Club, a long-closed bar which still stood less than a quarter mile from where this review is being written, to London and their brush with another big act from the 60’s,The Beatles; the story of The Rascals is entertaining to say the least.\r\n\r\nThe visual design by Marc Brickman is at times, breathtaking. What he has created using only a video screen is remarkable. Providing a view of all that was current during the time of The Rascals reign, it looks nothing like a documentary. It’s more like a road trip in a VW microbus, with better gas mileage.\r\n\r\nFour decades is a long time to be out of the public eye, and it’s no longer those four young twenty-somethings on stage. But close your eyes for a minute and you know the sound is the real deal. Felix still has the soulful pipes, Gene, always the showman, connects with the audience and reminds us that shredding is not only a young man’s claim. With double tambourines, or tambourine and maracas, Eddie with his exuberance, is the soul of the show. And Dino is still intense. Pull up “What Is The Reason” on youtube and you will hear a serious drum line and a solo that every air drummer of the day had in his repertoire. Think Phil Collins “In The Air Tonight,” only more kick-ass.\r\n\r\nAs for the music, all the hits are there along with some lesser-known songs. “Somebody To Love,” while not their biggest hit, was as important as “Groovin” in the history of the band. Bridging a time when the sound of the 60’s was changing from pop to psychedelic, the song showed the true measure of the band. In total there are 28 tunes, all worth the price of admission. On this night, there were three standing ovations during the show itself along with dancing in the aisles. The Rascals were always musicians and still are. While every song is done well, they are not re-creating the sound note-for-note that came out of the 45’s on your record player. It’s a living, breathing show.\r\n\r\nHaving the original members of the band in the show means this is a project that can’t last forever. This run is for 15 shows. Put your money on it popping up from time to time in different places. See it if you can. <i>Once Upon A Dream</i> is truly a once in a lifetime event.','','','inherit','open','open','','1200-revision-v1','','','2013-10-29 23:23:57','2013-10-29 23:23:57','',1200,'http://www.earthhertzrecords.com/2013/10/1200-revision-v1/',0,'revision','',0),(1202,2,'2013-10-29 23:47:29','2013-10-29 23:47:29','','KatsTheory-Rascals-1','','inherit','open','open','','katstheory-rascals-1','','','2013-10-29 23:47:29','2013-10-29 23:47:29','',1200,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg',0,'attachment','image/jpeg',0),(1203,2,'2013-10-29 23:48:09','2013-10-29 23:48:09','<p style=\"text-align: center;\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\"><img class=\"size-full wp-image-1202 alignnone\" alt=\"KatsTheory-Rascals-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\" width=\"900\" height=\"675\" /></a> <i>“You may leave your cell phones on, take pictures, tweet them, facebook them, whatever the fuck you want.”</i></p>\r\nThe pre-show announcement was a little different than most; yeah, this night might just be fun.\r\n\r\nThis night was the first show of a 15-night limited engagement and it was time for local legends to come home. After forty years, <a href=\"http://rascalsdream.com/\" target=\"_blank\"><strong><i>The Rascals</i></strong></a> were back together.\r\n\r\nAs anyone who lived in the NY Metro area in the 60’s will tell you, there were some local bands that made it and you were happy for them. But The Rascals were the band you were proud to call your own, they were the band that rocked it all over the world, even after the Brits came over here and essentially took over the music scene.\r\n\r\nSteven Van Zandt of The E Street Band, was one of the thousands who grew up with The Rascals blend of rock, pop and blue-eyed soul, and never forgot it. For years he tried to get the band back together and for years they turned him down. Forty years after the original quartet last performed, he got his wish.\r\n\r\nWritten by Van Zandt, <a href=\"http://www.kickstarter.com/projects/stevenvanzandt/the-rascals-once-upon-a-dream-reunion-shows\" target=\"_blank\"><i>Once Upon A Dream</i></a> is not just a concert, nor is it a revival show. It is one of the best history lessons about the 60’s you will ever see. The stage is without scenery, only the band; with keyboardist Felix Cavaliere and drummer Dino Danelli on separate risers. Using their songs as a backdrop, pieces of history are shown on the giant screen behind the band. The show opens with Sophie Zamchick, looking the part of a flower child, ethereally singing the title song; her image imposed on the curtain at the front of the stage.\r\n\r\nAs the band opened with “It’s Wonderful,” the first thing you notice is the big beat from Danelli. Always recognized as one of the best drummers of the day, the years haven’t taken away a thing. Crisp and precise, his technique is a testament to knowing exactly what is needed and doing it. A momentary technical glitch had lead singer Eddie Brigati’s microphone non-functional for about a minute. After a quick fix, the next two hours were a non-stop journey of the story behind the band, and some of the best music to come out of the seminal era of rock and roll.\r\n\r\nBetween songs, the tale of their beginnings is shared by way of film clips of Felix, Eddie, Gene and Dino talking about how they met, what influenced them and how the music was created. The narrator and tour guide if you will, is Vinny Pastore, “Big Pussy” from the Sopranos, who not only fills in the gaps, but provides a lot of comic relief. From their humble beginnings in New Jersey at The Choo Choo Club, a long-closed bar which still stood less than a quarter mile from where this review is being written, to London and their brush with another big act from the 60’s,The Beatles; the story of The Rascals is entertaining to say the least.\r\n\r\nThe visual design by Marc Brickman is at times, breathtaking. What he has created using only a video screen is remarkable. Providing a view of all that was current during the time of The Rascals reign, it looks nothing like a documentary. It’s more like a road trip in a VW microbus, with better gas mileage.\r\n\r\nFour decades is a long time to be out of the public eye, and it’s no longer those four young twenty-somethings on stage. But close your eyes for a minute and you know the sound is the real deal. Felix still has the soulful pipes, Gene, always the showman, connects with the audience and reminds us that shredding is not only a young man’s claim. With double tambourines, or tambourine and maracas, Eddie with his exuberance, is the soul of the show. And Dino is still intense. Pull up “What Is The Reason” on youtube and you will hear a serious drum line and a solo that every air drummer of the day had in his repertoire. Think Phil Collins “In The Air Tonight,” only more kick-ass.\r\n\r\nAs for the music, all the hits are there along with some lesser-known songs. “Somebody To Love,” while not their biggest hit, was as important as “Groovin” in the history of the band. Bridging a time when the sound of the 60’s was changing from pop to psychedelic, the song showed the true measure of the band. In total there are 28 tunes, all worth the price of admission. On this night, there were three standing ovations during the show itself along with dancing in the aisles. The Rascals were always musicians and still are. While every song is done well, they are not re-creating the sound note-for-note that came out of the 45’s on your record player. It’s a living, breathing show.\r\n\r\nHaving the original members of the band in the show means this is a project that can’t last forever. This run is for 15 shows. Put your money on it popping up from time to time in different places. See it if you can. <i>Once Upon A Dream</i> is truly a once in a lifetime event.','The Rascals: Once Upon A Dream','','inherit','open','open','','1200-revision-v1','','','2013-10-29 23:48:09','2013-10-29 23:48:09','',1200,'http://www.earthhertzrecords.com/2013/10/1200-revision-v1/',0,'revision','',0),(1204,2,'2013-10-30 00:12:32','2013-10-30 00:12:32','','KatsTheory-Rascals-2','','inherit','open','open','','katstheory-rascals-2','','','2013-10-30 00:12:32','2013-10-30 00:12:32','',1200,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2.jpg',0,'attachment','image/jpeg',0),(1205,2,'2013-10-30 00:14:05','2013-10-30 00:14:05','','KatsTheory-Rascals-3','','inherit','open','open','','katstheory-rascals-3','','','2013-10-30 00:14:05','2013-10-30 00:14:05','',1200,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3.jpg',0,'attachment','image/jpeg',0),(1206,2,'2013-10-30 00:15:13','2013-10-30 00:15:13','','KatsTheory-Rascals-4','','inherit','open','open','','katstheory-rascals-4','','','2013-10-30 00:15:13','2013-10-30 00:15:13','',1200,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4.jpg',0,'attachment','image/jpeg',0),(1207,2,'2013-10-30 00:16:16','2013-10-30 00:16:16','','KatsTheory-Rascals-6','','inherit','open','open','','katstheory-rascals-6','','','2013-10-30 00:16:16','2013-10-30 00:16:16','',1200,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6.jpg',0,'attachment','image/jpeg',0),(1208,2,'2013-10-30 00:17:22','2013-10-30 00:17:22','','KatsTheory-Rascals-5','','inherit','open','open','','katstheory-rascals-5','','','2013-10-30 00:17:22','2013-10-30 00:17:22','',1200,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5.jpg',0,'attachment','image/jpeg',0),(1209,2,'2013-10-30 00:18:58','2013-10-30 00:18:58','','KatsTheory-Rascals-7','','inherit','open','open','','katstheory-rascals-7','','','2013-10-30 00:18:58','2013-10-30 00:18:58','',1200,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7.jpg',0,'attachment','image/jpeg',0),(1210,2,'2013-10-30 00:19:15','2013-10-30 00:19:15','<p style=\"text-align: center;\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\"><img class=\"size-full wp-image-1202 alignnone\" alt=\"KatsTheory-Rascals-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\" width=\"900\" height=\"675\" /></a><strong> <i>“You may leave your cell phones on, take pictures, tweet them, facebook them, whatever the fuck you want.”</i></strong></p>\r\nThe pre-show announcement was a little different than most; yeah, this night might just be fun.\r\n\r\nThis night was the first show of a 15-night limited engagement and it was time for local legends to come home. After forty years, <a href=\"http://rascalsdream.com/\" target=\"_blank\"><strong><i>The Rascals</i></strong></a> were back together.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2.jpg\"><img class=\"alignleft size-medium wp-image-1204\" alt=\"KatsTheory-Rascals-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2-300x225.jpg\" width=\"300\" height=\"225\" /></a>As anyone who lived in the NY Metro area in the 60’s will tell you, there were some local bands that made it and you were happy for them. But The Rascals were the band you were proud to call your own, they were the band that rocked it all over the world, even after the Brits came over here and essentially took over the music scene.\r\n\r\nSteven Van Zandt of The E Street Band, was one of the thousands who grew up with The Rascals blend of rock, pop and blue-eyed soul, and never forgot it. For years he tried to get the band back together and for years they turned him down. Forty years after the original quartet last performed, he got his wish.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3.jpg\"><img class=\"alignright size-medium wp-image-1205\" alt=\"KatsTheory-Rascals-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3-300x225.jpg\" width=\"300\" height=\"225\" /></a>Written by Van Zandt, <a href=\"http://www.kickstarter.com/projects/stevenvanzandt/the-rascals-once-upon-a-dream-reunion-shows\" target=\"_blank\"><i>Once Upon A Dream</i></a> is not just a concert, nor is it a revival show. It is one of the best history lessons about the 60’s you will ever see. The stage is without scenery, only the band; with keyboardist Felix Cavaliere and drummer Dino Danelli on separate risers. Using their songs as a backdrop, pieces of history are shown on the giant screen behind the band. The show opens with Sophie Zamchick, looking the part of a flower child, ethereally singing the title song; her image imposed on the curtain at the front of the stage.\r\n\r\nAs the band opened with “It’s Wonderful,” the first thing you notice is the big beat from Danelli. Always recognized as one of the best drummers of the day, the years haven’t taken away a thing. Crisp and precise, his technique is a testament to knowing exactly what is needed and doing it. A momentary technical glitch had lead singer Eddie Brigati’s microphone non-functional for about a minute. After a quick fix, the next two hours were a non-stop journey of the story behind the band, and some of the best music to come out of the seminal era of rock and roll.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4.jpg\"><img class=\"alignleft size-medium wp-image-1206\" alt=\"KatsTheory-Rascals-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4-300x225.jpg\" width=\"300\" height=\"225\" /></a>Between songs, the tale of their beginnings is shared by way of film clips of Felix, Eddie, Gene and Dino talking about how they met, what influenced them and how the music was created. The narrator and tour guide if you will, is Vinny Pastore, “Big Pussy” from the Sopranos, who not only fills in the gaps, but provides a lot of comic relief. From their humble beginnings in New Jersey at The Choo Choo Club, a long-closed bar which still stood less than a quarter mile from where this review is being written, to London and their brush with another big act from the 60’s,The Beatles; the story of The Rascals is entertaining to say the least.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6.jpg\"><img class=\"alignright size-medium wp-image-1207\" alt=\"KatsTheory-Rascals-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6-300x225.jpg\" width=\"300\" height=\"225\" /></a>The visual design by Marc Brickman is at times, breathtaking. What he has created using only a video screen is remarkable. Providing a view of all that was current during the time of The Rascals reign, it looks nothing like a documentary. It’s more like a road trip in a VW microbus, with better gas mileage.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5.jpg\"><img class=\"alignleft size-medium wp-image-1208\" alt=\"KatsTheory-Rascals-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5-300x225.jpg\" width=\"300\" height=\"225\" /></a>Four decades is a long time to be out of the public eye, and it’s no longer those four young twenty-somethings on stage. But close your eyes for a minute and you know the sound is the real deal. Felix still has the soulful pipes, Gene, always the showman, connects with the audience and reminds us that shredding is not only a young man’s claim. With double tambourines, or tambourine and maracas, Eddie with his exuberance, is the soul of the show. And Dino is still intense. Pull up “What Is The Reason” on youtube and you will hear a serious drum line and a solo that every air drummer of the day had in his repertoire. Think Phil Collins “In The Air Tonight,” only more kick-ass.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7.jpg\"><img class=\"alignleft size-medium wp-image-1209\" alt=\"KatsTheory-Rascals-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7-300x225.jpg\" width=\"300\" height=\"225\" /></a>As for the music, all the hits are there along with some lesser-known songs. “Somebody To Love,” while not their biggest hit, was as important as “Groovin” in the history of the band. Bridging a time when the sound of the 60’s was changing from pop to psychedelic, the song showed the true measure of the band. In total there are 28 tunes, all worth the price of admission. On this night, there were three standing ovations during the show itself along with dancing in the aisles. The Rascals were always musicians and still are. While every song is done well, they are not re-creating the sound note-for-note that came out of the 45’s on your record player. It’s a living, breathing show.\r\n\r\nHaving the original members of the band in the show means this is a project that can’t last forever. This run is for 15 shows. Put your money on it popping up from time to time in different places. See it if you can. <i>Once Upon A Dream</i> is truly a once in a lifetime event.','The Rascals: Once Upon A Dream','','inherit','open','open','','1200-revision-v1','','','2013-10-30 00:19:15','2013-10-30 00:19:15','',1200,'http://www.earthhertzrecords.com/2013/10/1200-revision-v1/',0,'revision','',0),(1211,2,'2013-10-30 00:21:43','2013-10-30 00:21:43','<p style=\"text-align: center;\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\"><img class=\"size-full wp-image-1202 alignnone\" alt=\"KatsTheory-Rascals-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\" width=\"900\" height=\"675\" /></a><strong> <i>“You may leave your cell phones on, take pictures, tweet them, facebook them, </i></strong></p>\r\n<p style=\"text-align: center;\"><strong><i>whatever the fuck you want.”</i></strong></p>\r\nThe pre-show announcement was a little different than most; yeah, this night might just be fun.\r\n\r\nThis night was the first show of a 15-night limited engagement and it was time for local legends to come home. After forty years, <a href=\"http://rascalsdream.com/\" target=\"_blank\"><strong><i>The Rascals</i></strong></a> were back together.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2.jpg\"><img class=\"alignleft size-medium wp-image-1204\" alt=\"KatsTheory-Rascals-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2-300x225.jpg\" width=\"300\" height=\"225\" /></a>As anyone who lived in the NY Metro area in the 60’s will tell you, there were some local bands that made it and you were happy for them. But The Rascals were the band you were proud to call your own, they were the band that rocked it all over the world, even after the Brits came over here and essentially took over the music scene.\r\n\r\nSteven Van Zandt of The E Street Band, was one of the thousands who grew up with The Rascals blend of rock, pop and blue-eyed soul, and never forgot it. For years he tried to get the band back together and for years they turned him down. Forty years after the original quartet last performed, he got his wish.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3.jpg\"><img class=\"alignright size-medium wp-image-1205\" alt=\"KatsTheory-Rascals-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3-300x225.jpg\" width=\"300\" height=\"225\" /></a>Written by Van Zandt, <a href=\"http://www.kickstarter.com/projects/stevenvanzandt/the-rascals-once-upon-a-dream-reunion-shows\" target=\"_blank\"><i>Once Upon A Dream</i></a> is not just a concert, nor is it a revival show. It is one of the best history lessons about the 60’s you will ever see. The stage is without scenery, only the band; with keyboardist Felix Cavaliere and drummer Dino Danelli on separate risers. Using their songs as a backdrop, pieces of history are shown on the giant screen behind the band. The show opens with Sophie Zamchick, looking the part of a flower child, ethereally singing the title song; her image imposed on the curtain at the front of the stage.\r\n\r\nAs the band opened with “It’s Wonderful,” the first thing you notice is the big beat from Danelli. Always recognized as one of the best drummers of the day, the years haven’t taken away a thing. Crisp and precise, his technique is a testament to knowing exactly what is needed and doing it. A momentary technical glitch had lead singer Eddie Brigati’s microphone non-functional for about a minute. After a quick fix, the next two hours were a non-stop journey of the story behind the band, and some of the best music to come out of the seminal era of rock and roll.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4.jpg\"><img class=\"alignleft size-medium wp-image-1206\" alt=\"KatsTheory-Rascals-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4-300x225.jpg\" width=\"300\" height=\"225\" /></a>Between songs, the tale of their beginnings is shared by way of film clips of Felix, Eddie, Gene and Dino talking about how they met, what influenced them and how the music was created. The narrator and tour guide if you will, is Vinny Pastore, “Big Pussy” from the Sopranos, who not only fills in the gaps, but provides a lot of comic relief. From their humble beginnings in New Jersey at The Choo Choo Club, a long-closed bar which still stood less than a quarter mile from where this review is being written, to London and their brush with another big act from the 60’s,The Beatles; the story of The Rascals is entertaining to say the least.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6.jpg\"><img class=\"alignright size-medium wp-image-1207\" alt=\"KatsTheory-Rascals-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6-300x225.jpg\" width=\"300\" height=\"225\" /></a>The visual design by Marc Brickman is at times, breathtaking. What he has created using only a video screen is remarkable. Providing a view of all that was current during the time of The Rascals reign, it looks nothing like a documentary. It’s more like a road trip in a VW microbus, with better gas mileage.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5.jpg\"><img class=\"alignleft size-medium wp-image-1208\" alt=\"KatsTheory-Rascals-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5-300x225.jpg\" width=\"300\" height=\"225\" /></a>Four decades is a long time to be out of the public eye, and it’s no longer those four young twenty-somethings on stage. But close your eyes for a minute and you know the sound is the real deal. Felix still has the soulful pipes, Gene, always the showman, connects with the audience and reminds us that shredding is not only a young man’s claim. With double tambourines, or tambourine and maracas, Eddie with his exuberance, is the soul of the show. And Dino is still intense. Pull up “What Is The Reason” on youtube and you will hear a serious drum line and a solo that every air drummer of the day had in his repertoire. Think Phil Collins “In The Air Tonight,” only more kick-ass.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7.jpg\"><img class=\"alignleft size-medium wp-image-1209\" alt=\"KatsTheory-Rascals-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7-300x225.jpg\" width=\"300\" height=\"225\" /></a>As for the music, all the hits are there along with some lesser-known songs. “Somebody To Love,” while not their biggest hit, was as important as “Groovin” in the history of the band. Bridging a time when the sound of the 60’s was changing from pop to psychedelic, the song showed the true measure of the band. In total there are 28 tunes, all worth the price of admission. On this night, there were three standing ovations during the show itself along with dancing in the aisles. The Rascals were always musicians and still are. While every song is done well, they are not re-creating the sound note-for-note that came out of the 45’s on your record player. It’s a living, breathing show.\r\n\r\nHaving the original members of the band in the show means this is a project that can’t last forever. This run is for 15 shows. Put your money on it popping up from time to time in different places. See it if you can. <i>Once Upon A Dream</i> is truly a once in a lifetime event.','The Rascals: Once Upon A Dream','','inherit','open','open','','1200-revision-v1','','','2013-10-30 00:21:43','2013-10-30 00:21:43','',1200,'http://www.earthhertzrecords.com/2013/10/1200-revision-v1/',0,'revision','',0),(1212,2,'2013-10-30 00:30:15','2013-10-30 00:30:15','<p style=\"text-align: center;\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\"><img class=\"size-full wp-image-1202 alignnone\" alt=\"KatsTheory-Rascals-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\" width=\"900\" height=\"675\" /></a><strong> <i>“You may leave your cell phones on, take pictures, tweet them, facebook them, </i></strong></p>\r\n<p style=\"text-align: center;\"><strong><i>whatever the fuck you want.”</i></strong></p>\r\nThe pre-show announcement was a little different than most; yeah, this night might just be fun.\r\n\r\nThis night was the first show of a 15-night limited engagement and it was time for local legends to come home. After forty years, <a href=\"http://rascalsdream.com/\" target=\"_blank\"><strong><i>The Rascals</i></strong></a> were back together.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2.jpg\"><img class=\"alignleft size-medium wp-image-1204\" alt=\"KatsTheory-Rascals-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2-300x225.jpg\" width=\"300\" height=\"225\" /></a>As anyone who lived in the NY Metro area in the 60’s will tell you, there were some local bands that made it and you were happy for them. But The Rascals were the band you were proud to call your own, they were the band that rocked it all over the world, even after the Brits came over here and essentially took over the music scene.\r\n\r\nSteven Van Zandt of The E Street Band, was one of the thousands who grew up with The Rascals blend of rock, pop and blue-eyed soul, and never forgot it. For years he tried to get the band back together and for years they turned him down. Forty years after the original quartet last performed, he got his wish.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3.jpg\"><img class=\"alignright size-medium wp-image-1205\" alt=\"KatsTheory-Rascals-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3-300x225.jpg\" width=\"300\" height=\"225\" /></a>Written by Van Zandt, <a href=\"http://www.kickstarter.com/projects/stevenvanzandt/the-rascals-once-upon-a-dream-reunion-shows\" target=\"_blank\"><i>Once Upon A Dream</i></a> is not just a concert, nor is it a revival show. It is one of the best history lessons about the 60’s you will ever see. The stage is without scenery, only the band; with keyboardist Felix Cavaliere and drummer Dino Danelli on separate risers. Using their songs as a backdrop, pieces of history are shown on the giant screen behind the band. The show opens with Sophie Zamchick, looking the part of a flower child, ethereally singing the title song; her image imposed on the curtain at the front of the stage.\r\n\r\nAs the band opened with “It’s Wonderful,” the first thing you notice is the big beat from Danelli. Always recognized as one of the best drummers of the day, the years haven’t taken away a thing. Crisp and precise, his technique is a testament to knowing exactly what is needed and doing it. A momentary technical glitch had lead singer Eddie Brigati’s microphone non-functional for about a minute. After a quick fix, the next two hours were a non-stop journey of the story behind the band, and some of the best music to come out of the seminal era of rock and roll.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4.jpg\"><img class=\"alignleft size-medium wp-image-1206\" alt=\"KatsTheory-Rascals-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4-300x225.jpg\" width=\"300\" height=\"225\" /></a>Between songs, the tale of their beginnings is shared by way of film clips of Felix, Eddie, Gene and Dino talking about how they met, what influenced them and how the music was created. The narrator and tour guide if you will, is Vinny Pastore, “Big Pussy” from the Sopranos, who not only fills in the gaps, but provides a lot of comic relief. From their humble beginnings in New Jersey at The Choo Choo Club, a long-closed bar which stood less than a quarter mile from where this review is being written, to London and their brush with another big act from the 60’s,The Beatles; the story of The Rascals is entertaining to say the least.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6.jpg\"><img class=\"alignright size-medium wp-image-1207\" alt=\"KatsTheory-Rascals-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6-300x225.jpg\" width=\"300\" height=\"225\" /></a>The visual design by Marc Brickman is at times, breathtaking. What he has created using only a video screen is remarkable. Providing a view of all that was current during the time of The Rascals reign, it looks nothing like a documentary. It’s more like a road trip in a VW microbus, with better gas mileage.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5.jpg\"><img class=\"alignleft size-medium wp-image-1208\" alt=\"KatsTheory-Rascals-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5-300x225.jpg\" width=\"300\" height=\"225\" /></a>Four decades is a long time to be out of the public eye, and it’s no longer those four young twenty-somethings on stage. But close your eyes for a minute and you know the sound is the real deal. Felix still has the soulful pipes, Gene, always the showman, connects with the audience and reminds us that shredding is not only a young man’s claim. With double tambourines, or tambourine and maracas, Eddie with his exuberance, is the soul of the show. And Dino is still intense. Pull up “What Is The Reason” on youtube and you will hear a serious drum line and a solo that every air drummer of the day had in his repertoire. Think Phil Collins “In The Air Tonight,” only more kick-ass.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7.jpg\"><img class=\"alignleft size-medium wp-image-1209\" alt=\"KatsTheory-Rascals-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7-300x225.jpg\" width=\"300\" height=\"225\" /></a>As for the music, all the hits are there along with some lesser-known songs. “Somebody To Love,” while not their biggest hit, was as important as “Groovin” in the history of the band. Bridging a time when the sound of the 60’s was changing from pop to psychedelic, the song showed the true measure of the band. In total there are 28 tunes, all worth the price of admission. On this night, there were three standing ovations during the show itself along with dancing in the aisles. The Rascals were always musicians and still are. While every song is done well, they are not re-creating the sound note-for-note that came out of the 45’s on your record player. It’s a living, breathing show.\r\n\r\nHaving the original members of the band in the show means this is a project that can’t last forever. This run is for 15 shows. Put your money on it popping up from time to time in different places. See it if you can. <i>Once Upon A Dream</i> is truly a once in a lifetime event.\r\n\r\nOriginally published in <a href=\"http://ourvinyl.com/the-rascals-nyc-concert-review/\">ourvinyl.com</a>','The Rascals: Once Upon A Dream','','inherit','open','open','','1200-revision-v1','','','2013-10-30 00:30:15','2013-10-30 00:30:15','',1200,'http://www.earthhertzrecords.com/2013/10/1200-revision-v1/',0,'revision','',0),(1213,2,'2013-10-30 01:21:24','2013-10-30 01:21:24','<p style=\"text-align: center;\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\"><img class=\"size-full wp-image-1202 alignnone\" alt=\"KatsTheory-Rascals-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\" width=\"900\" height=\"675\" /></a><strong> <i>“You may leave your cell phones on, take pictures, tweet them, facebook them, </i></strong></p>\n<p style=\"text-align: center;\"><strong><i>whatever the fuck you want.”</i></strong></p>\nThe pre-show announcement was a little different than most; yeah, this night might just be fun.\n\nThis night was the first show of a 15-night limited engagement and it was time for local legends to come home. After forty years, <a href=\"http://rascalsdream.com/\" target=\"_blank\"><strong><i>The Rascals</i></strong></a> were back together.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2.jpg\"><img class=\"alignleft size-medium wp-image-1204\" alt=\"KatsTheory-Rascals-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2-300x225.jpg\" width=\"300\" height=\"225\" /></a>As anyone who lived in the NY Metro area in the 60’s will tell you, there were some local bands that made it and you were happy for them. But The Rascals were the band you were proud to call your own, they were the band that rocked it all over the world, even after the Brits came over here and essentially took over the music scene.\n\nSteven Van Zandt of The E Street Band, was one of the thousands who grew up with The Rascals blend of rock, pop and blue-eyed soul, and never forgot it. For years he tried to get the band back together and for years they turned him down. Forty years after the original quartet last performed, he got his wish.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3.jpg\"><img class=\"alignright size-medium wp-image-1205\" alt=\"KatsTheory-Rascals-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3-300x225.jpg\" width=\"300\" height=\"225\" /></a>Produced by Steven and Maureen Van Zandt and written by Steven Van Zandt, <a href=\"http://www.kickstarter.com/projects/stevenvanzandt/the-rascals-once-upon-a-dream-reunion-shows\" target=\"_blank\"><i>Once Upon A Dream</i></a> is not just a concert, nor is it a revival show. It is one of the best history lessons about the 60’s you will ever see. The stage is without scenery, only the band; with keyboardist Felix Cavaliere and drummer Dino Danelli on separate risers. Using their songs as a backdrop, pieces of history are shown on the giant screen behind the band. The show opens with Sophie Zamchick, looking the part of a flower child, ethereally singing the title song; her image imposed on the curtain at the front of the stage.\n\nAs the band opened with “It’s Wonderful,” the first thing you notice is the big beat from Danelli. Always recognized as one of the best drummers of the day, the years haven’t taken away a thing. Crisp and precise, his technique is a testament to knowing exactly what is needed and doing it. A momentary technical glitch had lead singer Eddie Brigati’s microphone non-functional for about a minute. After a quick fix, the next two hours were a non-stop journey of the story behind the band, and some of the best music to come out of the seminal era of rock and roll.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4.jpg\"><img class=\"alignleft size-medium wp-image-1206\" alt=\"KatsTheory-Rascals-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4-300x225.jpg\" width=\"300\" height=\"225\" /></a>Between songs, the tale of their beginnings is shared by way of film clips of Felix, Eddie, Gene and Dino talking about how they met, what influenced them and how the music was created. The narrator and tour guide if you will, is Vinny Pastore, “Big Pussy” from the Sopranos, who not only fills in the gaps, but provides a lot of comic relief. From their humble beginnings in New Jersey at The Choo Choo Club, a long-closed bar which stood less than a quarter mile from where this review is being written, to London and their brush with another big act from the 60’s,The Beatles; the story of The Rascals is entertaining to say the least.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6.jpg\"><img class=\"alignright size-medium wp-image-1207\" alt=\"KatsTheory-Rascals-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6-300x225.jpg\" width=\"300\" height=\"225\" /></a>The visual design by Marc Brickman is at times, breathtaking. What he has created using only a video screen is remarkable. Providing a view of all that was current during the time of The Rascals reign, it looks nothing like a documentary. It’s more like a road trip in a VW microbus, with better gas mileage.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5.jpg\"><img class=\"alignleft size-medium wp-image-1208\" alt=\"KatsTheory-Rascals-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5-300x225.jpg\" width=\"300\" height=\"225\" /></a>Four decades is a long time to be out of the public eye, and it’s no longer those four young twenty-somethings on stage. But close your eyes for a minute and you know the sound is the real deal. Felix still has the soulful pipes, Gene, always the showman, connects with the audience and reminds us that shredding is not only a young man’s claim. With double tambourines, or tambourine and maracas, Eddie with his exuberance, is the soul of the show. And Dino is still intense. Pull up “What Is The Reason” on YouTube and you will hear a serious drum line and a solo that every air drummer of the day had in his repertoire. Think Phil Collins “In The Air Tonight,” only more kick-ass.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7.jpg\"><img class=\"alignleft size-medium wp-image-1209\" alt=\"KatsTheory-Rascals-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7-300x225.jpg\" width=\"300\" height=\"225\" /></a>As for the music, all the hits are there along with some lesser-known songs. “Somebody To Love,” while not their biggest hit, was as important as “Groovin” in the history of the band. Bridging a time when the sound of the 60’s was changing from pop to psychedelic, the song showed the true measure of the band. In total there are 28 tunes, all worth the price of admission. On this night, there were three standing ovations during the show itself along with dancing in the aisles. The Rascals were always musicians and still are. While every song is done well, they are not re-creating the sound note-for-note that came out of the 45’s on your record player. It’s a living, breathing show.\n\nHaving the original members of the band in the show means this is a project that can’t last forever. This run is for 15 shows. Put your money on it popping up from time to time in different places. See it if you can. <i>Once Upon A Dream</i> is truly a once in a lifetime event.\n\nReview by Kath Galasso\n\nOriginally published in <a href=\"http://ourvinyl.com/the-rascals-nyc-concert-review/\">ourvinyl.com</a>','The Rascals: Once Upon A Dream','','inherit','open','open','','1200-autosave-v1','','','2013-10-30 01:21:24','2013-10-30 01:21:24','',1200,'http://www.earthhertzrecords.com/2013/10/1200-autosave-v1/',0,'revision','',0),(1214,2,'2013-10-30 00:44:18','2013-10-30 00:44:18','<p style=\"text-align: center;\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\"><img class=\"size-full wp-image-1202 alignnone\" alt=\"KatsTheory-Rascals-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\" width=\"900\" height=\"675\" /></a><strong> <i>“You may leave your cell phones on, take pictures, tweet them, facebook them, </i></strong></p>\r\n<p style=\"text-align: center;\"><strong><i>whatever the fuck you want.”</i></strong></p>\r\nThe pre-show announcement was a little different than most; yeah, this night might just be fun.\r\n\r\nThis night was the first show of a 15-night limited engagement and it was time for local legends to come home. After forty years, <a href=\"http://rascalsdream.com/\" target=\"_blank\"><strong><i>The Rascals</i></strong></a> were back together.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2.jpg\"><img class=\"alignleft size-medium wp-image-1204\" alt=\"KatsTheory-Rascals-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2-300x225.jpg\" width=\"300\" height=\"225\" /></a>As anyone who lived in the NY Metro area in the 60’s will tell you, there were some local bands that made it and you were happy for them. But The Rascals were the band you were proud to call your own, they were the band that rocked it all over the world, even after the Brits came over here and essentially took over the music scene.\r\n\r\nSteven Van Zandt of The E Street Band, was one of the thousands who grew up with The Rascals blend of rock, pop and blue-eyed soul, and never forgot it. For years he tried to get the band back together and for years they turned him down. Forty years after the original quartet last performed, he got his wish.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3.jpg\"><img class=\"alignright size-medium wp-image-1205\" alt=\"KatsTheory-Rascals-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3-300x225.jpg\" width=\"300\" height=\"225\" /></a>Written by Van Zandt, <a href=\"http://www.kickstarter.com/projects/stevenvanzandt/the-rascals-once-upon-a-dream-reunion-shows\" target=\"_blank\"><i>Once Upon A Dream</i></a> is not just a concert, nor is it a revival show. It is one of the best history lessons about the 60’s you will ever see. The stage is without scenery, only the band; with keyboardist Felix Cavaliere and drummer Dino Danelli on separate risers. Using their songs as a backdrop, pieces of history are shown on the giant screen behind the band. The show opens with Sophie Zamchick, looking the part of a flower child, ethereally singing the title song; her image imposed on the curtain at the front of the stage.\r\n\r\nAs the band opened with “It’s Wonderful,” the first thing you notice is the big beat from Danelli. Always recognized as one of the best drummers of the day, the years haven’t taken away a thing. Crisp and precise, his technique is a testament to knowing exactly what is needed and doing it. A momentary technical glitch had lead singer Eddie Brigati’s microphone non-functional for about a minute. After a quick fix, the next two hours were a non-stop journey of the story behind the band, and some of the best music to come out of the seminal era of rock and roll.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4.jpg\"><img class=\"alignleft size-medium wp-image-1206\" alt=\"KatsTheory-Rascals-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4-300x225.jpg\" width=\"300\" height=\"225\" /></a>Between songs, the tale of their beginnings is shared by way of film clips of Felix, Eddie, Gene and Dino talking about how they met, what influenced them and how the music was created. The narrator and tour guide if you will, is Vinny Pastore, “Big Pussy” from the Sopranos, who not only fills in the gaps, but provides a lot of comic relief. From their humble beginnings in New Jersey at The Choo Choo Club, a long-closed bar which stood less than a quarter mile from where this review is being written, to London and their brush with another big act from the 60’s,The Beatles; the story of The Rascals is entertaining to say the least.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6.jpg\"><img class=\"alignright size-medium wp-image-1207\" alt=\"KatsTheory-Rascals-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6-300x225.jpg\" width=\"300\" height=\"225\" /></a>The visual design by Marc Brickman is at times, breathtaking. What he has created using only a video screen is remarkable. Providing a view of all that was current during the time of The Rascals reign, it looks nothing like a documentary. It’s more like a road trip in a VW microbus, with better gas mileage.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5.jpg\"><img class=\"alignleft size-medium wp-image-1208\" alt=\"KatsTheory-Rascals-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5-300x225.jpg\" width=\"300\" height=\"225\" /></a>Four decades is a long time to be out of the public eye, and it’s no longer those four young twenty-somethings on stage. But close your eyes for a minute and you know the sound is the real deal. Felix still has the soulful pipes, Gene, always the showman, connects with the audience and reminds us that shredding is not only a young man’s claim. With double tambourines, or tambourine and maracas, Eddie with his exuberance, is the soul of the show. And Dino is still intense. Pull up “What Is The Reason” on YouTube and you will hear a serious drum line and a solo that every air drummer of the day had in his repertoire. Think Phil Collins “In The Air Tonight,” only more kick-ass.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7.jpg\"><img class=\"alignleft size-medium wp-image-1209\" alt=\"KatsTheory-Rascals-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7-300x225.jpg\" width=\"300\" height=\"225\" /></a>As for the music, all the hits are there along with some lesser-known songs. “Somebody To Love,” while not their biggest hit, was as important as “Groovin” in the history of the band. Bridging a time when the sound of the 60’s was changing from pop to psychedelic, the song showed the true measure of the band. In total there are 28 tunes, all worth the price of admission. On this night, there were three standing ovations during the show itself along with dancing in the aisles. The Rascals were always musicians and still are. While every song is done well, they are not re-creating the sound note-for-note that came out of the 45’s on your record player. It’s a living, breathing show.\r\n\r\nHaving the original members of the band in the show means this is a project that can’t last forever. This run is for 15 shows. Put your money on it popping up from time to time in different places. See it if you can. <i>Once Upon A Dream</i> is truly a once in a lifetime event.\r\n\r\nOriginally published in <a href=\"http://ourvinyl.com/the-rascals-nyc-concert-review/\">ourvinyl.com</a>','The Rascals: Once Upon A Dream','','inherit','open','open','','1200-revision-v1','','','2013-10-30 00:44:18','2013-10-30 00:44:18','',1200,'http://www.earthhertzrecords.com/2013/10/1200-revision-v1/',0,'revision','',0),(1215,2,'2013-10-30 00:47:07','2013-10-30 00:47:07','<p style=\"text-align: center;\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\"><img class=\"size-full wp-image-1202 alignnone\" alt=\"KatsTheory-Rascals-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\" width=\"900\" height=\"675\" /></a><strong> <i>“You may leave your cell phones on, take pictures, tweet them, facebook them, </i></strong></p>\r\n<p style=\"text-align: center;\"><strong><i>whatever the fuck you want.”</i></strong></p>\r\nThe pre-show announcement was a little different than most; yeah, this night might just be fun.\r\n\r\nThis night was the first show of a 15-night limited engagement and it was time for local legends to come home. After forty years, <a href=\"http://rascalsdream.com/\" target=\"_blank\"><strong><i>The Rascals</i></strong></a> were back together.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2.jpg\"><img class=\"alignleft size-medium wp-image-1204\" alt=\"KatsTheory-Rascals-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2-300x225.jpg\" width=\"300\" height=\"225\" /></a>As anyone who lived in the NY Metro area in the 60’s will tell you, there were some local bands that made it and you were happy for them. But The Rascals were the band you were proud to call your own, they were the band that rocked it all over the world, even after the Brits came over here and essentially took over the music scene.\r\n\r\nSteven Van Zandt of The E Street Band, was one of the thousands who grew up with The Rascals blend of rock, pop and blue-eyed soul, and never forgot it. For years he tried to get the band back together and for years they turned him down. Forty years after the original quartet last performed, he got his wish.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3.jpg\"><img class=\"alignright size-medium wp-image-1205\" alt=\"KatsTheory-Rascals-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3-300x225.jpg\" width=\"300\" height=\"225\" /></a>Produced by Steven and Maureen Van Zandt and written by Steven Van Zandt, <a href=\"http://www.kickstarter.com/projects/stevenvanzandt/the-rascals-once-upon-a-dream-reunion-shows\" target=\"_blank\"><i>Once Upon A Dream</i></a> is not just a concert, nor is it a revival show. It is one of the best history lessons about the 60’s you will ever see. The stage is without scenery, only the band; with keyboardist Felix Cavaliere and drummer Dino Danelli on separate risers. Using their songs as a backdrop, pieces of history are shown on the giant screen behind the band. The show opens with Sophie Zamchick, looking the part of a flower child, ethereally singing the title song; her image imposed on the curtain at the front of the stage.\r\n\r\nAs the band opened with “It’s Wonderful,” the first thing you notice is the big beat from Danelli. Always recognized as one of the best drummers of the day, the years haven’t taken away a thing. Crisp and precise, his technique is a testament to knowing exactly what is needed and doing it. A momentary technical glitch had lead singer Eddie Brigati’s microphone non-functional for about a minute. After a quick fix, the next two hours were a non-stop journey of the story behind the band, and some of the best music to come out of the seminal era of rock and roll.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4.jpg\"><img class=\"alignleft size-medium wp-image-1206\" alt=\"KatsTheory-Rascals-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4-300x225.jpg\" width=\"300\" height=\"225\" /></a>Between songs, the tale of their beginnings is shared by way of film clips of Felix, Eddie, Gene and Dino talking about how they met, what influenced them and how the music was created. The narrator and tour guide if you will, is Vinny Pastore, “Big Pussy” from the Sopranos, who not only fills in the gaps, but provides a lot of comic relief. From their humble beginnings in New Jersey at The Choo Choo Club, a long-closed bar which stood less than a quarter mile from where this review is being written, to London and their brush with another big act from the 60’s,The Beatles; the story of The Rascals is entertaining to say the least.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6.jpg\"><img class=\"alignright size-medium wp-image-1207\" alt=\"KatsTheory-Rascals-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6-300x225.jpg\" width=\"300\" height=\"225\" /></a>The visual design by Marc Brickman is at times, breathtaking. What he has created using only a video screen is remarkable. Providing a view of all that was current during the time of The Rascals reign, it looks nothing like a documentary. It’s more like a road trip in a VW microbus, with better gas mileage.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5.jpg\"><img class=\"alignleft size-medium wp-image-1208\" alt=\"KatsTheory-Rascals-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5-300x225.jpg\" width=\"300\" height=\"225\" /></a>Four decades is a long time to be out of the public eye, and it’s no longer those four young twenty-somethings on stage. But close your eyes for a minute and you know the sound is the real deal. Felix still has the soulful pipes, Gene, always the showman, connects with the audience and reminds us that shredding is not only a young man’s claim. With double tambourines, or tambourine and maracas, Eddie with his exuberance, is the soul of the show. And Dino is still intense. Pull up “What Is The Reason” on YouTube and you will hear a serious drum line and a solo that every air drummer of the day had in his repertoire. Think Phil Collins “In The Air Tonight,” only more kick-ass.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7.jpg\"><img class=\"alignleft size-medium wp-image-1209\" alt=\"KatsTheory-Rascals-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7-300x225.jpg\" width=\"300\" height=\"225\" /></a>As for the music, all the hits are there along with some lesser-known songs. “Somebody To Love,” while not their biggest hit, was as important as “Groovin” in the history of the band. Bridging a time when the sound of the 60’s was changing from pop to psychedelic, the song showed the true measure of the band. In total there are 28 tunes, all worth the price of admission. On this night, there were three standing ovations during the show itself along with dancing in the aisles. The Rascals were always musicians and still are. While every song is done well, they are not re-creating the sound note-for-note that came out of the 45’s on your record player. It’s a living, breathing show.\r\n\r\nHaving the original members of the band in the show means this is a project that can’t last forever. This run is for 15 shows. Put your money on it popping up from time to time in different places. See it if you can. <i>Once Upon A Dream</i> is truly a once in a lifetime event.\r\n\r\nOriginally published in <a href=\"http://ourvinyl.com/the-rascals-nyc-concert-review/\">ourvinyl.com</a>','The Rascals: Once Upon A Dream','','inherit','open','open','','1200-revision-v1','','','2013-10-30 00:47:07','2013-10-30 00:47:07','',1200,'http://www.earthhertzrecords.com/2013/10/1200-revision-v1/',0,'revision','',0),(1216,1,'2013-10-30 01:00:09','2013-10-30 01:00:09','<strong>CEO / President, CTO, Head of Productions</strong>\n\nI have loved music my entire life. From my first broom to play along with Elvis, \'till my upgraded and newfangled broom playing along with the Beatles, I have been there.\n\nOr, here, right here. Playing or more importantly listening to music my entire life. I loved music so much that I couldn\'t wait to get to Hollywood aand make the good music. Motown,\n\n ','About: Robert Xeno','','inherit','open','open','','1142-autosave-v1','','','2013-10-30 01:00:09','2013-10-30 01:00:09','',1142,'http://www.earthhertzrecords.com/2013/10/1142-autosave-v1/',0,'revision','',0),(1217,2,'2013-10-30 01:22:12','2013-10-30 01:22:12','<p style=\"text-align: center;\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\"><img class=\"size-full wp-image-1202 alignnone\" alt=\"KatsTheory-Rascals-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-1.jpg\" width=\"900\" height=\"675\" /></a><strong> <i>“You may leave your cell phones on, take pictures, tweet them, facebook them, </i></strong></p>\r\n<p style=\"text-align: center;\"><strong><i>whatever the fuck you want.”</i></strong></p>\r\nThe pre-show announcement was a little different than most; yeah, this night might just be fun.\r\n\r\nThis night was the first show of a 15-night limited engagement and it was time for local legends to come home. After forty years, <a href=\"http://rascalsdream.com/\" target=\"_blank\"><strong><i>The Rascals</i></strong></a> were back together.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2.jpg\"><img class=\"alignleft size-medium wp-image-1204\" alt=\"KatsTheory-Rascals-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-2-300x225.jpg\" width=\"300\" height=\"225\" /></a>As anyone who lived in the NY Metro area in the 60’s will tell you, there were some local bands that made it and you were happy for them. But The Rascals were the band you were proud to call your own, they were the band that rocked it all over the world, even after the Brits came over here and essentially took over the music scene.\r\n\r\nSteven Van Zandt of The E Street Band, was one of the thousands who grew up with The Rascals blend of rock, pop and blue-eyed soul, and never forgot it. For years he tried to get the band back together and for years they turned him down. Forty years after the original quartet last performed, he got his wish.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3.jpg\"><img class=\"alignright size-medium wp-image-1205\" alt=\"KatsTheory-Rascals-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-3-300x225.jpg\" width=\"300\" height=\"225\" /></a>Produced by Steven and Maureen Van Zandt and written by Steven Van Zandt, <a href=\"http://www.kickstarter.com/projects/stevenvanzandt/the-rascals-once-upon-a-dream-reunion-shows\" target=\"_blank\"><i>Once Upon A Dream</i></a> is not just a concert, nor is it a revival show. It is one of the best history lessons about the 60’s you will ever see. The stage is without scenery, only the band; with keyboardist Felix Cavaliere and drummer Dino Danelli on separate risers. Using their songs as a backdrop, pieces of history are shown on the giant screen behind the band. The show opens with Sophie Zamchick, looking the part of a flower child, ethereally singing the title song; her image imposed on the curtain at the front of the stage.\r\n\r\nAs the band opened with “It’s Wonderful,” the first thing you notice is the big beat from Danelli. Always recognized as one of the best drummers of the day, the years haven’t taken away a thing. Crisp and precise, his technique is a testament to knowing exactly what is needed and doing it. A momentary technical glitch had lead singer Eddie Brigati’s microphone non-functional for about a minute. After a quick fix, the next two hours were a non-stop journey of the story behind the band, and some of the best music to come out of the seminal era of rock and roll.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4.jpg\"><img class=\"alignleft size-medium wp-image-1206\" alt=\"KatsTheory-Rascals-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-4-300x225.jpg\" width=\"300\" height=\"225\" /></a>Between songs, the tale of their beginnings is shared by way of film clips of Felix, Eddie, Gene and Dino talking about how they met, what influenced them and how the music was created. The narrator and tour guide if you will, is Vinny Pastore, “Big Pussy” from the Sopranos, who not only fills in the gaps, but provides a lot of comic relief. From their humble beginnings in New Jersey at The Choo Choo Club, a long-closed bar which stood less than a quarter mile from where this review is being written, to London and their brush with another big act from the 60’s,The Beatles; the story of The Rascals is entertaining to say the least.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6.jpg\"><img class=\"alignright size-medium wp-image-1207\" alt=\"KatsTheory-Rascals-6\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-6-300x225.jpg\" width=\"300\" height=\"225\" /></a>The visual design by Marc Brickman is at times, breathtaking. What he has created using only a video screen is remarkable. Providing a view of all that was current during the time of The Rascals reign, it looks nothing like a documentary. It’s more like a road trip in a VW microbus, with better gas mileage.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5.jpg\"><img class=\"alignleft size-medium wp-image-1208\" alt=\"KatsTheory-Rascals-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-5-300x225.jpg\" width=\"300\" height=\"225\" /></a>Four decades is a long time to be out of the public eye, and it’s no longer those four young twenty-somethings on stage. But close your eyes for a minute and you know the sound is the real deal. Felix still has the soulful pipes, Gene, always the showman, connects with the audience and reminds us that shredding is not only a young man’s claim. With double tambourines, or tambourine and maracas, Eddie with his exuberance, is the soul of the show. And Dino is still intense. Pull up “What Is The Reason” on YouTube and you will hear a serious drum line and a solo that every air drummer of the day had in his repertoire. Think Phil Collins “In The Air Tonight,” only more kick-ass.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7.jpg\"><img class=\"alignleft size-medium wp-image-1209\" alt=\"KatsTheory-Rascals-7\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/KatsTheory-Rascals-7-300x225.jpg\" width=\"300\" height=\"225\" /></a>As for the music, all the hits are there along with some lesser-known songs. “Somebody To Love,” while not their biggest hit, was as important as “Groovin” in the history of the band. Bridging a time when the sound of the 60’s was changing from pop to psychedelic, the song showed the true measure of the band. In total there are 28 tunes, all worth the price of admission. On this night, there were three standing ovations during the show itself along with dancing in the aisles. The Rascals were always musicians and still are. While every song is done well, they are not re-creating the sound note-for-note that came out of the 45’s on your record player. It’s a living, breathing show.\r\n\r\nHaving the original members of the band in the show means this is a project that can’t last forever. This run is for 15 shows. Put your money on it popping up from time to time in different places. See it if you can. <i>Once Upon A Dream</i> is truly a once in a lifetime event.\r\n\r\n<strong>Review by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a></strong>\r\n\r\nOriginally published in <a href=\"http://ourvinyl.com/the-rascals-nyc-concert-review/\">ourvinyl.com</a>','The Rascals: Once Upon A Dream','','inherit','open','open','','1200-revision-v1','','','2013-10-30 01:22:12','2013-10-30 01:22:12','',1200,'http://www.earthhertzrecords.com/2013/10/1200-revision-v1/',0,'revision','',0),(1219,1,'2013-10-31 14:45:59','2013-10-31 14:45:59','The 1st round ballot for the 56th Grammy® Awards has ended. Musicians, labels, producers, anyone with voting member status could submit music for consideration. Apparently approximately 17,000 submissions were culled down to about 13,00 1st Round Ballot entries.\r\n\r\nOct 30th was the in the office deadline for the ballot returns. Now its a qwaiting game for the actual nominees to be identified and validated.\r\n\r\nThis news will become public Dec. 6th during the live from Nokia Theater broadcast of this year\'s 56th Grammy® Awards Grammy Nominations Concert.\r\n\r\nOur artists are already making more music for next years entries, but with a keen eye on the 6th. Stay tuned for new singles from Hannah Mae, Joshua Ayers and Matt Guertin in the very near future. And Applegate Nance are working up a live acoustic album of some live only gems.\r\n\r\nMuch more in the build up stage as the year winds down.','56th Grammy® Awards 1st Round Ballot','','inherit','open','open','','1218-revision-v1','','','2013-10-31 14:45:59','2013-10-31 14:45:59','',1218,'http://www.earthhertzrecords.com/2013/10/1218-revision-v1/',0,'revision','',0),(1221,1,'2013-10-31 14:48:45','2013-10-31 14:48:45','The 1st round ballot for the 56th Grammy® Awards has ended. Musicians, labels, producers, anyone with voting member status could submit music for consideration. Apparently approximately 17,000 submissions were culled down to about 13,000 1st Round Ballot entries.\r\n\r\nOct 30th was the in the office deadline for the ballot returns. Now its a waiting game for the actual nominees to be identified and validated.\r\n\r\nThis news will become public Dec. 6th during the live from Nokia Theater broadcast of this year\'s 56th Grammy® Awards Grammy Nominations Concert.\r\n\r\nOur artists are already making more music for next years entries, but with a keen eye on the 6th. Stay tuned for new singles from Hannah Mae, Joshua Ayers and Matt Guertin in the very near future. And Applegate Nance are working up a live acoustic album of some live only gems.\r\n\r\nMuch more in the build up stage as the year winds down.','56th Grammy® Awards 1st Round Ballot','','inherit','open','open','','1218-revision-v1','','','2013-10-31 14:48:45','2013-10-31 14:48:45','',1218,'http://www.earthhertzrecords.com/2013/10/1218-revision-v1/',0,'revision','',0),(1220,1,'2013-10-31 14:47:42','2013-10-31 14:47:42','The 1st round ballot for the 56th Grammy® Awards has ended. Musicians, labels, producers, anyone with voting member status could submit music for consideration. Apparently approximately 17,000 submissions were culled down to about 13,000 1st Round Ballot entries.\r\n\r\nOct 30th was the in the office deadline for the ballot returns. Now its a qwaiting game for the actual nominees to be identified and validated.\r\n\r\nThis news will become public Dec. 6th during the live from Nokia Theater broadcast of this year\'s 56th Grammy® Awards Grammy Nominations Concert.\r\n\r\nOur artists are already making more music for next years entries, but with a keen eye on the 6th. Stay tuned for new singles from Hannah Mae, Joshua Ayers and Matt Guertin in the very near future. And Applegate Nance are working up a live acoustic album of some live only gems.\r\n\r\nMuch more in the build up stage as the year winds down.','56th Grammy® Awards 1st Round Ballot','','inherit','open','open','','1218-revision-v1','','','2013-10-31 14:47:42','2013-10-31 14:47:42','',1218,'http://www.earthhertzrecords.com/2013/10/1218-revision-v1/',0,'revision','',0),(1222,1,'2013-10-31 14:51:13','2013-10-31 14:51:13','The 1st round ballot for the 56th Grammy® Awards has ended. Musicians, labels, producers, anyone with voting member status could submit music for consideration. Apparently approximately 17,000 submissions were culled down to about 13,000 1st Round Ballot entries.\r\n\r\nOct 30th was the in the office deadline for the ballot returns. Now its a waiting game for the actual nominees to be identified and validated.\r\n\r\nThis news will become public Dec. 6th during the live from Nokia Theater broadcast of this year\'s 56th Grammy® Awards Grammy Nominations Concert.\r\n\r\nOur artists are already making more music for next years entries, but with a keen eye on the 6th. Stay tuned for new singles from Hannah Mae, Joshua Ayers and Matt Guertin in the very near future. And Applegate Nance are working up an acoustic album of some live only gems.\r\n\r\nMuch more in the build up stage as the year winds down.','56th Grammy® Awards 1st Round Ballot','','inherit','open','open','','1218-revision-v1','','','2013-10-31 14:51:13','2013-10-31 14:51:13','',1218,'http://www.earthhertzrecords.com/2013/10/1218-revision-v1/',0,'revision','',0),(1223,1,'2013-10-31 15:12:40','2013-10-31 15:12:40','The 1st round ballot for the 56th Grammy® Awards has ended. Musicians, labels, producers, anyone with voting member status could submit music for consideration. Apparently approximately 17,000 submissions were culled down to about 13,000 1st Round Ballot entries.\r\n\r\nOct 30th was the in the office deadline for the ballot returns. Now its a waiting game for the actual nominees to be identified and validated.\r\n\r\nThis news will become public Dec. 6th during the live from Nokia Center broadcast of this year\'s 56th Grammy® Awards Grammy Nominations Concert.\r\n\r\nOur artists are already making more music for next years entries, but with a keen eye on the 6th. Stay tuned for new singles from Hannah Mae, Joshua Ayers and Matt Guertin in the very near future. And Applegate Nance are working up an acoustic album of some live only gems.\r\n\r\nMuch more in the build up stage as the year winds down.','56th Grammy® Awards 1st Round Ballot','','inherit','open','open','','1218-revision-v1','','','2013-10-31 15:12:40','2013-10-31 15:12:40','',1218,'http://www.earthhertzrecords.com/2013/10/1218-revision-v1/',0,'revision','',0),(1226,2,'2013-10-31 23:13:59','2013-10-31 23:13:59','','Promo2','','inherit','open','open','','promo2','','','2013-10-31 23:13:59','2013-10-31 23:13:59','',1188,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Promo2.jpeg',0,'attachment','image/jpeg',0),(1227,2,'2013-10-31 23:15:21','2013-10-31 23:15:21','','howlin-sss-500x','','inherit','open','open','','howlin-sss-500x','','','2013-10-31 23:15:21','2013-10-31 23:15:21','',1188,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/howlin-sss-500x.jpg',0,'attachment','image/jpeg',0),(1228,2,'2013-10-31 23:15:35','2013-10-31 23:15:35','<i>Howl</i>, the first album from the <a href=\"http://thehowlinbrothers.com/\" target=\"_blank\">Howlin’ Brothers</a> with Brendan Benson as producer was, forgive me, a Howlin’ success. After spending 24 weeks on The Americana Music Radio Chart, and peaking at #6, the Howlin’ Brothers have been busy in the studio and touring virtually non-stop. A new album, also produced by Benson will be released in early 2014. But to whet the appetite of their fans, the band has just dropped a self-produced six song EP, recorded at the legendary Sun Studio in Memphis, Tennessee.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Promo2.jpeg\"><img class=\"alignleft size-medium wp-image-1226\" alt=\"Promo2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Promo2-300x300.jpeg\" width=\"300\" height=\"300\" /></a>Sun Studio has seen the greats walk in to create history. Elvis, Johnny Cash, Roy Orbison, Carl Perkins, and more recently Boz Scaggs recorded his successful album,<i>Memphis</i>. The mystique of the studio is equal only to the ghosts in residence, whether real or imaginary. The Howlin’ Brothers walked in and through osmosis or telepathy, recorded a classic set of songs, dripping with Sun Studio mojo.\r\n\r\nIan Craft, Ben Plasse and Jared Green chose four original songs for the middle of the EP. Ones they felt would cook up like fried chicken in your grandma’s cast iron skillet, knowing the musical flavors cooked into Sun Studio over the years, would produce that subtle taste found nowhere else. Then they took an old favorite, Carl Perkin’s “Dixie Fried,” to open up the session, and to end it, one of their own songs reworked in homage to the studio itself.\r\n\r\nStarting off with an old Sun Studio treasure, the Howlin’ Brothers cover of “Dixie Fried” takes the original and adds a layer of freshness. Sweet pickin’ on top, while the thumping bass of Ben Plasse anchors the energy.\r\n\r\n“Til I Find You” has much more of a traditional Americana feel. The quick tempo, yearning vocals, harmonica and banjo, create the urgency the lyrics convey.\r\n\r\nSlowing the pace down, “Troubled Waltz” gives off an ominous tone. Though only guitar, banjo and bass are heard on this track, there is sufficient fullness of sound to portray the melancholy of the song.\r\n\r\n“Take Me Down” feels more like the sound found on their last release, <i>Howl</i>. Part Country, part Americana, or as the Brothers would probably call it, just good “old-time” music. These songs were recorded live in the studio, and it seems the third take of this tune was the charm.\r\n\r\nQuick paced and ready for dancing, “Charleston Chew” is heavy on the harmonica and gives off a good old bluegrass feel. If you get the chance to see the Howlin’ Brothers live, you can expect to see Jared Green dancing in quickstep to the beat.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/howlin-sss-500x.jpg\"><img class=\"alignright size-medium wp-image-1227\" alt=\"howlin-sss-500x\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/howlin-sss-500x-300x297.jpg\" width=\"300\" height=\"297\" /></a>Seeing the Sun Studio piano while becoming immersed in the ambiance of the room, the Brothers decided to re-record “Tennessee Blues,” off their <i>Howl</i> album. This time the track included only the bass, fiddle and the historically significant piano. The stripped down version fits in perfectly. While Green hits the keys that have created notes for archival moments of music history, Ian Craft sings mournfully, before letting the fiddle finish setting the mood. At first the idea of redoing a song from the previous album seemed a little strange, but not only does the piano take center stage, it finishes the EP with a sweetness and richness that can’t be manufactured. It comes from music produced in that room, sounds that permeated the walls and never left.\r\n\r\nThe Sun Studio Session is only available in digital form, and the session will be broadcast on PBS early in 2014. The EP is as solid as <i>Howl,</i> and is a nice bridge to the highly anticipated release due in February. In the meantime, the Howlin’ Brothers continue to tour, gaining fans and great reviews along the way.','The Howlin Brothers: The Sun Studio Sessions','','inherit','open','open','','1188-revision-v1','','','2013-10-31 23:15:35','2013-10-31 23:15:35','',1188,'http://www.earthhertzrecords.com/2013/10/1188-revision-v1/',0,'revision','',0),(1229,2,'2013-10-31 23:23:02','2013-10-31 23:23:02','<i>Howl</i>, the first album from the <a href=\"http://thehowlinbrothers.com/\" target=\"_blank\">Howlin’ Brothers</a> with Brendan Benson as producer was, forgive me, a Howlin’ success. After spending 24 weeks on The Americana Music Radio Chart, and peaking at #6, the Howlin’ Brothers have been busy in the studio and touring virtually non-stop. A new album, also produced by Benson will be released in early 2014. But to whet the appetite of their fans, the band has just dropped a self-produced six song EP, recorded at the legendary Sun Studio in Memphis, Tennessee.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Promo2.jpeg\"><img class=\"alignleft size-medium wp-image-1226\" alt=\"Promo2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Promo2-300x300.jpeg\" width=\"300\" height=\"300\" /></a>Sun Studio has seen the greats walk in to create history. Elvis, Johnny Cash, Roy Orbison, Carl Perkins, and more recently Boz Scaggs recorded his successful album,<i>Memphis</i>. The mystique of the studio is equal only to the ghosts in residence, whether real or imaginary. The Howlin’ Brothers walked in and through osmosis or telepathy, recorded a classic set of songs, dripping with Sun Studio mojo.\r\n\r\nIan Craft, Ben Plasse and Jared Green chose four original songs for the middle of the EP. Ones they felt would cook up like fried chicken in your grandma’s cast iron skillet, knowing the musical flavors cooked into Sun Studio over the years, would produce that subtle taste found nowhere else. Then they took an old favorite, Carl Perkin’s “Dixie Fried,” to open up the session, and to end it, one of their own songs reworked in homage to the studio itself.\r\n\r\nStarting off with an old Sun Studio treasure, the Howlin’ Brothers cover of “Dixie Fried” takes the original and adds a layer of freshness. Sweet pickin’ on top, while the thumping bass of Ben Plasse anchors the energy.\r\n\r\n“Til I Find You” has much more of a traditional Americana feel. The quick tempo, yearning vocals, harmonica and banjo, create the urgency the lyrics convey.\r\n\r\nSlowing the pace down, “Troubled Waltz” gives off an ominous tone. Though only guitar, banjo and bass are heard on this track, there is sufficient fullness of sound to portray the melancholy of the song.\r\n\r\n“Take Me Down” feels more like the sound found on their last release, <i>Howl</i>. Part Country, part Americana, or as the Brothers would probably call it, just good “old-time” music. These songs were recorded live in the studio, and it seems the third take of this tune was the charm.\r\n\r\nQuick paced and ready for dancing, “Charleston Chew” is heavy on the harmonica and gives off a good old bluegrass feel. If you get the chance to see the Howlin’ Brothers live, you can expect to see Jared Green dancing in quickstep to the beat.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/howlin-sss-500x.jpg\"><img class=\"alignright size-medium wp-image-1227\" alt=\"howlin-sss-500x\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/howlin-sss-500x-300x297.jpg\" width=\"300\" height=\"297\" /></a>Seeing the Sun Studio piano while becoming immersed in the ambiance of the room, the Brothers decided to re-record “Tennessee Blues,” off their <i>Howl</i> album. This time the track included only the bass, fiddle and the historically significant piano. The stripped down version fits in perfectly. While Green hits the keys that have created notes for archival moments of music history, Ian Craft sings mournfully, before letting the fiddle finish setting the mood. At first the idea of redoing a song from the previous album seemed a little strange, but not only does the piano take center stage, it finishes the EP with a sweetness and richness that can’t be manufactured. It comes from music produced in that room, sounds that permeated the walls and never left.\r\n\r\nThe Sun Studio Session is only available in digital form, and the session will be broadcast on PBS early in 2014. The EP is as solid as <i>Howl,</i> and is a nice bridge to the highly anticipated release due in February. In the meantime, the Howlin’ Brothers continue to tour, gaining fans and great reviews along the way.\r\n\r\nReview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>\r\n\r\nFirst published on <a href=\"http://ourvinyl.com/howlin-brothers-the-sun-studio-sessions/\">ourvinyl.com</a>','The Howlin Brothers: The Sun Studio Sessions','','inherit','open','open','','1188-revision-v1','','','2013-10-31 23:23:02','2013-10-31 23:23:02','',1188,'http://www.earthhertzrecords.com/2013/10/1188-revision-v1/',0,'revision','',0),(1230,2,'2013-10-31 23:25:29','2013-10-31 23:25:29','<i>Howl</i>, the first album from the <a href=\"http://thehowlinbrothers.com/\" target=\"_blank\">Howlin’ Brothers</a> with Brendan Benson as producer was, forgive me, a Howlin’ success. After spending 24 weeks on The Americana Music Radio Chart, and peaking at #6, the Howlin’ Brothers have been busy in the studio and touring virtually non-stop. A new album, also produced by Benson will be released in early 2014. But to whet the appetite of their fans, the band has just dropped a self-produced six song EP, recorded at the legendary Sun Studio in Memphis, Tennessee.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Promo2.jpeg\"><img class=\"alignleft size-medium wp-image-1226\" alt=\"Promo2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Promo2-300x300.jpeg\" width=\"300\" height=\"300\" /></a>Sun Studio has seen the greats walk in to create history. Elvis, Johnny Cash, Roy Orbison, Carl Perkins, and more recently Boz Scaggs recorded his successful album,<i>Memphis</i>. The mystique of the studio is equal only to the ghosts in residence, whether real or imaginary. The Howlin’ Brothers walked in and through osmosis or telepathy, recorded a classic set of songs, dripping with Sun Studio mojo.\r\n\r\nIan Craft, Ben Plasse and Jared Green chose four original songs for the middle of the EP. Ones they felt would cook up like fried chicken in your grandma’s cast iron skillet, knowing the musical flavors cooked into Sun Studio over the years, would produce that subtle taste found nowhere else. Then they took an old favorite, Carl Perkin’s “Dixie Fried,” to open up the session, and to end it, one of their own songs reworked in homage to the studio itself.\r\n\r\nStarting off with an old Sun Studio treasure, the Howlin’ Brothers cover of “Dixie Fried” takes the original and adds a layer of freshness. Sweet pickin’ on top, while the thumping bass of Ben Plasse anchors the energy.\r\n\r\n“Til I Find You” has much more of a traditional Americana feel. The quick tempo, yearning vocals, harmonica and banjo, create the urgency the lyrics convey.\r\n\r\nSlowing the pace down, “Troubled Waltz” gives off an ominous tone. Though only guitar, banjo and bass are heard on this track, there is sufficient fullness of sound to portray the melancholy of the song.\r\n\r\n“Take Me Down” feels more like the sound found on their last release, <i>Howl</i>. Part Country, part Americana, or as the Brothers would probably call it, just good “old-time” music. These songs were recorded live in the studio, and it seems the third take of this tune was the charm.\r\n\r\nQuick paced and ready for dancing, “Charleston Chew” is heavy on the harmonica and gives off a good old bluegrass feel. If you get the chance to see the Howlin’ Brothers live, you can expect to see Jared Green dancing in quickstep to the beat.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/howlin-sss-500x.jpg\"><img class=\"alignright size-medium wp-image-1227\" alt=\"howlin-sss-500x\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/howlin-sss-500x-300x297.jpg\" width=\"300\" height=\"297\" /></a>Seeing the Sun Studio piano while becoming immersed in the ambiance of the room, the Brothers decided to re-record “Tennessee Blues,” off their <i>Howl</i> album. This time the track included only the bass, fiddle and the historically significant piano. The stripped down version fits in perfectly. While Green hits the keys that have created notes for archival moments of music history, Ian Craft sings mournfully, before letting the fiddle finish setting the mood. At first the idea of redoing a song from the previous album seemed a little strange, but not only does the piano take center stage, it finishes the EP with a sweetness and richness that can’t be manufactured. It comes from music produced in that room, sounds that permeated the walls and never left.\r\n\r\nThe Sun Studio Session is only available in digital form, and the session will be broadcast on PBS early in 2014. The EP is as solid as <i>Howl,</i> and is a nice bridge to the highly anticipated release due in February. In the meantime, the Howlin’ Brothers continue to tour, gaining fans and great reviews along the way.\r\n\r\n<strong>Review by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a></strong>\r\n\r\nFirst published on <a href=\"http://ourvinyl.com/howlin-brothers-the-sun-studio-sessions/\">ourvinyl.com</a>','The Howlin Brothers: The Sun Studio Sessions','','inherit','open','open','','1188-revision-v1','','','2013-10-31 23:25:29','2013-10-31 23:25:29','',1188,'http://www.earthhertzrecords.com/2013/10/1188-revision-v1/',0,'revision','',0),(1231,2,'2013-10-31 23:27:42','2013-10-31 23:27:42','<i>Howl</i>, the first album from the <a href=\"http://thehowlinbrothers.com/\" target=\"_blank\">Howlin’ Brothers</a> with Brendan Benson as producer was, forgive me, a Howlin’ success. After spending 24 weeks on The Americana Music Radio Chart, and peaking at #6, the Howlin’ Brothers have been busy in the studio and touring virtually non-stop. A new album, also produced by Benson will be released in early 2014. But to whet the appetite of their fans, the band has just dropped a self-produced six song EP, recorded at the legendary Sun Studio in Memphis, Tennessee.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Promo2.jpeg\"><img class=\"alignleft size-medium wp-image-1226\" alt=\"Promo2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Promo2-300x300.jpeg\" width=\"300\" height=\"300\" /></a>Sun Studio has seen the greats walk in to create history. Elvis, Johnny Cash, Roy Orbison, Carl Perkins, and more recently Boz Scaggs recorded his successful album,<i>Memphis</i>. The mystique of the studio is equal only to the ghosts in residence, whether real or imaginary. The Howlin’ Brothers walked in and through osmosis or telepathy, recorded a classic set of songs, dripping with Sun Studio mojo.\r\n\r\nIan Craft, Ben Plasse and Jared Green chose four original songs for the middle of the EP. Ones they felt would cook up like fried chicken in your grandma’s cast iron skillet, knowing the musical flavors cooked into Sun Studio over the years, would produce that subtle taste found nowhere else. Then they took an old favorite, Carl Perkin’s “Dixie Fried,” to open up the session, and to end it, one of their own songs reworked in homage to the studio itself.\r\n\r\nStarting off with an old Sun Studio treasure, the Howlin’ Brothers cover of “Dixie Fried” takes the original and adds a layer of freshness. Sweet pickin’ on top, while the thumping bass of Ben Plasse anchors the energy.\r\n\r\n“Til I Find You” has much more of a traditional Americana feel. The quick tempo, yearning vocals, harmonica and banjo, create the urgency the lyrics convey.\r\n\r\nSlowing the pace down, “Troubled Waltz” gives off an ominous tone. Though only guitar, banjo and bass are heard on this track, there is sufficient fullness of sound to portray the melancholy of the song.\r\n\r\n“Take Me Down” feels more like the sound found on their last release, <i>Howl</i>. Part Country, part Americana, or as the Brothers would probably call it, just good “old-time” music. These songs were recorded live in the studio, and it seems the third take of this tune was the charm.\r\n\r\nQuick paced and ready for dancing, “Charleston Chew” is heavy on the harmonica and gives off a good old bluegrass feel. If you get the chance to see the Howlin’ Brothers live, you can expect to see Jared Green dancing in quickstep to the beat.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/howlin-sss-500x.jpg\"><img class=\"alignright size-medium wp-image-1227\" alt=\"howlin-sss-500x\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/howlin-sss-500x-300x297.jpg\" width=\"300\" height=\"297\" /></a>Seeing the Sun Studio piano while becoming immersed in the ambiance of the room, the Brothers decided to re-record “Tennessee Blues,” off their <i>Howl</i> album. This time the track included only the bass, fiddle and the historically significant piano. The stripped down version fits in perfectly. While Green hits the keys that have created notes for archival moments of music history, Ian Craft sings mournfully, before letting the fiddle finish setting the mood. At first the idea of redoing a song from the previous album seemed a little strange, but not only does the piano take center stage, it finishes the EP with a sweetness and richness that can’t be manufactured. It comes from music produced in that room, sounds that permeated the walls and never left.\r\n\r\nThe Sun Studio Session is only available in digital form, and the session will be broadcast on PBS early in 2014. The EP is as solid as <i>Howl,</i> and is a nice bridge to the highly anticipated release due in February. In the meantime, the Howlin’ Brothers continue to tour, gaining fans and great reviews along the way.\r\n\r\n<strong>Review by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a></strong>\r\n\r\nFirst published on <a href=\"http://ourvinyl.com/howlin-brothers-the-sun-studio-sessions/\">ourvinyl.com</a>','The Howlin\' Brothers: The Sun Studio Sessions','','inherit','open','open','','1188-revision-v1','','','2013-10-31 23:27:42','2013-10-31 23:27:42','',1188,'http://www.earthhertzrecords.com/2013/10/1188-revision-v1/',0,'revision','',0),(1232,1,'2013-12-06 12:25:20','2013-12-06 18:25:20','Hello, My Name is Robert Xeno\n\nI am Founder and CEO of Earth Hertz Records, StreamBeam.US, and Stream Share Musicians Cooperative.\n\nI have been in the music business for the last 35 years and have watched with great concern as the major label format has systematically raped, pillaged, and destroyed artists, music in general, and the entire industry as a whole.\n\nWell, we put our heads together here at Earth Hertz and we believe we have come up with a solution.\n\nWe are a record label with its own recording studio and production team. This allows us to keep our costs down while affording artists the freedom to take their time and express their art. One of our pet peeves about the record industry is the idea of making artists pay for what they do. It is art, and artists should be free to create. As such, we never charge nor bill the artist for any of the services required to complete their project. Revolutionary.\n\nWe feel that if we believe in an artist like they do, then they should not be held accountable for un-recouped costs associated with a project. We are down on the line with the artist and all billing is recouped through the project. If the project makes no money, the artist never owes the company for reimbursement. We insist it is time for a change.\n\nAlso, we have our own media streaming platform, StreamBeam.US. Here, we will stream our artists’ music at the highest resolutions possible. We have been testing from MP3 standards up to 192k wav streams and beyond.\n\nThe real deal maker here, as if this already wasn’t enough, is our newest venture, Stream Share Musician’s Cooperative. You see, there is a giant green elephant sitting in the corner of the room but no one in the industry is addressing it. They keep the focus on the .0008 cents per stream and below, tied to artists; royalties and copyright/publishing. It’s all smoke and mirrors, folks.\n\nJust one example, a certain large internet radio has already taken in over $500+ million dollars this year, and there is still another quarter to go. We will use the cooperative to share in the ad revenue we generate with the artists. As I said, it’s time for a change.\n\nBeyond the ideas and the technology, we also have the smarts and the ability to get it all done. We signed 6 artists on our recent launch. All six artists were accepted in the 1<sup>st</sup> round balloting for the 56<sup>th</sup> Grammy® Awards process. In all, we have 12 entries in the running.\n\nThis next year is clearly going to be one of incredible change in the industry. I believe I have the team and the artists in place to create a new future for the music industry; one where creativity is valued and fairness is the rule.\n\nEarth Hertz.\nYou better believe it.\n\nRobert Xeno 2013\n[yop_poll id=\"2\" tr_id=\"0000001\"]\n\n \n<div id=\"coolsocialb\">\n<div id=\"coolsociald\"><a href=\"http://www.coolsocial.net\">coolsocial.net</a> <a href=\"http://www.coolsocial.net/sites/www/earthhertzrecords.com.html\">earthhertzrecords.com</a></div>\n<script id=\"coolsocials\" type=\"text/javascript\">// < ![CDATA[\n// < ![CDATA[\n// < ![CDATA[\n(function() {function async_load(){var s = document.createElement(\'script\'); s.type = \'text/javascript\'; s.async = true;s.src = \'http://www.coolsocial.net/get_snippet.aspx?url=earthhertzrecords.com\';var x = document.getElementById(\'coolsocials\'); x.parentNode.insertBefore(s, x); }document.getElementById(\'coolsociald\').innerHTML = \'\';if (window.attachEvent) window.attachEvent(\'onload\', async_load); else window.addEventListener(\'load\', async_load, false);})();\n// ]]></script>\n\n</div>','About','','inherit','open','open','','1049-autosave-v1','','','2013-12-06 12:25:20','2013-12-06 18:25:20','',1049,'http://www.earthhertzrecords.com/2013/11/1049-autosave-v1/',0,'revision','',0),(1308,2,'2013-11-22 18:17:52','2013-11-23 00:17:52','','KatsTheory-Arlo-4','','inherit','open','open','','katstheory-arlo-4','','','2013-11-22 18:17:52','2013-11-23 00:17:52','',1303,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg',0,'attachment','image/jpeg',0),(1309,2,'2013-11-22 18:20:37','2013-11-23 00:20:37','','KatsTheory-Arlo-21','','inherit','open','open','','katstheory-arlo-21','','','2013-11-22 18:20:37','2013-11-23 00:20:37','',1303,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg',0,'attachment','image/jpeg',0),(1310,2,'2013-11-22 18:22:20','2013-11-23 00:22:20','','KatsTheory-Arlo-31','','inherit','open','open','','katstheory-arlo-31','','','2013-11-22 18:22:20','2013-11-23 00:22:20','',1303,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31.jpg',0,'attachment','image/jpeg',0),(1311,2,'2013-11-22 18:23:20','2013-11-23 00:23:20','','KatsTheory-Arlo-11','','inherit','open','open','','katstheory-arlo-11','','','2013-11-22 18:23:20','2013-11-23 00:23:20','',1303,'http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg',0,'attachment','image/jpeg',0),(1312,2,'2013-11-22 18:23:44','2013-11-23 00:23:44','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\"><img class=\"aligncenter size-full wp-image-1309\" alt=\"KatsTheory-Arlo-21\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-21.jpg\" width=\"1000\" height=\"860\" /></a>For a November night in northwest New Jersey, the weather could not have been better. A light jacket was enough to keep you warm, but not crowd you in your seat. Tonight you wanted to be comfortable for it was to be a night of songs and stories. Arlo Guthrie was in town, and we weren’t the only ones celebrating. With this year marking the 100<sup>th</sup> birthday of Arlo’s father, legendary folk singer and documenter of mid-century America, Woody Guthrie, Arlo was performing many of his dad’s compositions.\r\n\r\nThe Newton Theatre is a reclaimed from the edge of destruction movie theatre. Small and intimate, you get to share the experience with 604 new friends. Though we were lucky to be sitting up front, it’s hard to imagine a bad seat in the house.\r\n\r\nWith no opening act, Arlo and his three-piece band took their places onstage. With each member dressed in black, there would be no distraction; this night was about the music and the stories that inspired them. Arlo sat center stage next to his guitar rack with four beauties waiting to be picked.\r\n\r\nArlo began the evening speaking of Woody, and the joy he felt being able to spend nights such as this, singing the songs of his father, the songs of an America past, the songs of justice and injustice, the songs of his family. His voice is filled with more gravel than before, as if age and life’s journey has settled in. But every once in a while, the familiar sound of the Arlo from another time, punctuates a sentence of a story, and all those memories when you heard him say “Officer Obie” or “you remember Alice,” come flooding back. And you smile.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4.jpg\"><img class=\"alignleft size-medium wp-image-1308\" alt=\"KatsTheory-Arlo-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-4-300x179.jpg\" width=\"300\" height=\"179\" /></a>Arlo Guthrie is a superb storyteller. Pulling out a beautiful acoustic Gibson out of the rack, Arlo began telling the story of Woody’s “Oklahoma Hills,” and you realize just how different the world was back then for a songwriter. You might not even know your song had been recorded until you heard it playing in a jukebox.\r\n\r\nOne of the wonderful attributes of the writing of Woody Guthrie was his ability to put down words explaining injustice, hard times, or the beauty of this country, in the most simple of words. Their simplicity making them universally relatable.\r\n\r\nGrowing up Guthrie meant you had the most interesting of extended families. Ramblin’ Jack Elliot, Huddie “Leadbelly” Ledbetter, Cisco Houston. Their songs and their stories were exquisite as told by this grown man who had known these legends when he was a child.\r\n\r\nThough storytelling and song is his forte, Arlo Guthrie can play a real pretty guitar, though this night he battled with keeping them in tune. As a little tweaking of the strings went on longer than expected, Arlo blamed it in the blue light overhead. The audience laughed as the lighting guy quickly changed the color. It didn’t help. It did make the evening even more real; this was no rock star with a technician handing him a perfectly tuned guitar for every song. This was just a musician sitting in someone’s living room trying to play his best for some new friends.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31.jpg\"><img class=\"alignleft size-medium wp-image-1310\" alt=\"KatsTheory-Arlo-31\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-31-300x232.jpg\" width=\"300\" height=\"232\" /></a>Listening to the songs of Woody Guthrie is like riding on one of the filled-with-family-and-belongings trucks Steinbeck wrote about in <i>The Grapes of Wrath.</i> In fact Guthrie wrote a song condensing the 600 pages of <i>Wrath</i> into a song with twelve verses. This was something over which Steinbeck took umbrage. The combination of the songs and the perspective Arlo brings to them is a history lesson so interesting, you wish this was how it was taught in school. After an hour of enjoying the songs and tales of times long ago, Arlo and the band took a short break.\r\n\r\nComing back onstage the music catalog shifted to Arlo’s own. Now it wasn’t only Woody’s songs which were prefaced by a story. “Coming Into Los Angeles” began with a story of his late wife Jackie’s arrest for marijuana at the airport, after a long-forgotten gift from a fan to Arlo, was found in her bag.\r\n\r\nHe then talked about his early memories of Leadbelly in his home, and his search for Leadbelly’s grave somewhere in Louisiana. Leadbelly, who wrote among many others, “Midnight Special” and “Goodnight Irene,” was buried in Shreeveport, and they found the grave with guitar picks scattered over the tombstone. So he pulled out his guitar, sat there, and played some songs for the man he remembered as a two-year old. One of those songs “Alabama Bound,” was Arlo’s next selection.\r\n\r\nOne highlight of the evening was Steve Goodman’s “City Of New Orleans.” Lyrically, you can’t write much more of a poignant ballad. It is a testament to his songwriting that a song so moving, is about a train. The story of how Arlo and Steve met is priceless, making his loss at such a young age, even more lamentable.\r\n\r\nRelating how he first laid eyes on his future wife and singing “Highway In The Wind,” which he wrote for her, must be more than a little bittersweet, a little over a year since the death of the woman to whom he was married for forty-three years.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11.jpg\"><img class=\"alignright size-medium wp-image-1311\" alt=\"KatsTheory-Arlo-11\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/KatsTheory-Arlo-11-300x200.jpg\" width=\"300\" height=\"200\" /></a>Getting close to the end of the show, Arlo pulled out arguably Woody’s most recognizable song, “This Land Is Your Land.” As we approach the Thanksgiving holiday, the imagery of the words was not lost on the audience. Considering there is not another song which embodies the greatness of this country more than this, it is a song that should be taught in every school in this country.\r\n\r\nOf course since we are so close to Thanksgiving, you can be sure there wasn’t a person in the crowd who wasn’t hoping to hear the familiar first few notes of “Alice’s Restaurant.” Arlo did not disappoint. As he began to play, the audience sang along to the beginning chorus. At this point Arlo said “You don’t think I’m really going to sing this whole freakin’ song do you?” And no, I don’t think we really did. And just that one chorus, while a tease, was enough of a taste to keep a smile on everyone’s face. He picked the melody while talking about what the song has meant to him and his family over the years… the good and the not so good.\r\n\r\nAs all of our storytellers get older, the danger of losing important parts of our past, grows. Arlo Guthrie not only lived some of the stories first-hand, he grew up surrounded by legends with their own stories to tell. Never miss a chance to hear them because you’ll never forget them once you do. And that keeps them alive.\r\n\r\nThis evening with Arlo Guthrie pickin’, singin’ and tellin’ stories was one of the most enjoyable nights I’ve ever spent in a music hall. It was an honor to hear him speak of his father, and all those who came before. And hopefully by writing about it, the stories keep going just a little longer.\r\n\r\n \r\n\r\n ','Arlo Guthrie at the Newton Theatre: A Night of Songs and Stories','','inherit','open','open','','1303-revision-v1','','','2013-11-22 18:23:44','2013-11-23 00:23:44','',1303,'http://www.earthhertzrecords.com/2013/11/1303-revision-v1/',0,'revision','',0),(1307,1,'2013-11-22 17:49:21','2013-11-22 23:49:21','More about us soon......\r\n<div id=\"coolsocialb\">\r\n\r\n<script id=\"coolsocials\" type=\"text/javascript\">// < ![CDATA[\r\n// < ![CDATA[\r\n(function() {function async_load(){var s = document.createElement(\'script\'); s.type = \'text/javascript\'; s.async = true;s.src = \'http://www.coolsocial.net/get_snippet.aspx?url=earthhertzrecords.com\';var x = document.getElementById(\'coolsocials\'); x.parentNode.insertBefore(s, x); }document.getElementById(\'coolsociald\').innerHTML = \'\';if (window.attachEvent) window.attachEvent(\'onload\', async_load); else window.addEventListener(\'load\', async_load, false);})();\r\n// ]]></script>\r\n\r\n</div>','About','','inherit','open','open','','1049-revision-v1','','','2013-11-22 17:49:21','2013-11-22 23:49:21','',1049,'http://www.earthhertzrecords.com/2013/11/1049-revision-v1/',0,'revision','',0),(1233,1,'2013-11-01 12:55:56','2013-11-01 12:55:56','Hello, My Name is Robert Xeno\r\n\r\nI am Founder and CEO of Earth Hertz Records, StreamBeam.US, and Stream Share Musicians Cooperative.\r\n\r\nI have been in the music business for the last 35 years and have watched with great concern as the major label format has systematically raped, pillaged, and destroyed artists, music in general, and the entire industry as a whole.\r\n\r\nWell, we put our heads together here at Earth Hertz and we believe we have come up with a solution.\r\n\r\nWe are a record label with its own recording studio and production team. This allows us to keep our costs down while affording artists the freedom to take their time and express their art. One of our pet peeves about the record industry is the idea of making artists pay for what they do. It is art, and artists should be free to create. As such, we never charge nor bill the artist for any of the services required to complete their project. Revolutionary.\r\n\r\nWe feel that if we believe in an artist like they do, then they should not be held accountable for un-recouped costs associated with a project. We are down on the line with the artist and all billing is recouped through the project. If the project makes no money, the artist never owes the company for reimbursement. We insist it is time for a change.\r\n\r\nAlso, we have our own media streaming platform, StreamBeam.US. Here, we will stream our artists’ music at the highest resolutions possible. We have been testing from MP3 standards up to 192k wav streams and beyond.\r\n\r\nThe real deal maker here, as if this already wasn’t enough, is our newest venture, Stream Share Musician’s Cooperative. You see, there is a giant green elephant sitting in the corner of the room but no one in the industry is addressing it. They keep the focus on the .0008 cents per stream and below, tied to artists; royalties and copyright/publishing. It’s all smoke and mirrors, folks.\r\n\r\nJust one example, a certain large internet radio has already taken in over $500+ million dollars this year, and there is still another quarter to go. We will use the cooperative to share in the ad revenue we generate with the artists. As I said, it’s time for a change.\r\n\r\nBeyond the ideas and the technology, we also have the smarts and the ability to get it all done. We signed 6 artists on our recent launch. All six artists were accepted in the 1<sup>st</sup> round balloting for the 56<sup>th</sup> Grammy® Awards process. In all, we have 12 entries in the running.\r\n\r\nThis next year is clearly going to be one of incredible change in the industry. I believe I have the team and the artists in place to create a new future for the music industry; one where creativity is valued and fairness is the rule.\r\n\r\nEarth Hertz.\r\nYou better believe it.\r\n\r\nRobert Xeno 2013\r\n[yop_poll id=\"2\" tr_id=\"0000001\"]\r\n\r\n \r\n<div id=\"coolsocialb\">\r\n<div id=\"coolsociald\"><a href=\"http://www.coolsocial.net\">coolsocial.net</a> <a href=\"http://www.coolsocial.net/sites/www/earthhertzrecords.com.html\">earthhertzrecords.com</a></div>\r\n<script id=\"coolsocials\" type=\"text/javascript\">// < ![CDATA[\r\n(function() {function async_load(){var s = document.createElement(\'script\'); s.type = \'text/javascript\'; s.async = true;s.src = \'http://www.coolsocial.net/get_snippet.aspx?url=earthhertzrecords.com\';var x = document.getElementById(\'coolsocials\'); x.parentNode.insertBefore(s, x); }document.getElementById(\'coolsociald\').innerHTML = \'\';if (window.attachEvent) window.attachEvent(\'onload\', async_load); else window.addEventListener(\'load\', async_load, false);})();\r\n// ]]></script>\r\n\r\n</div>','About','','inherit','open','open','','1049-revision-v1','','','2013-11-01 12:55:56','2013-11-01 12:55:56','',1049,'http://www.earthhertzrecords.com/2013/11/1049-revision-v1/',0,'revision','',0),(1234,1,'2013-11-01 23:55:59','2013-11-01 23:55:59','<strong>Super Producer, Production Coordinator, A&R</strong>','About: Saint Christopher Parks','','inherit','open','open','','1152-revision-v1','','','2013-11-01 23:55:59','2013-11-01 23:55:59','',1152,'http://www.earthhertzrecords.com/2013/11/1152-revision-v1/',0,'revision','',0),(1235,1,'2013-11-01 23:56:28','2013-11-01 23:56:28','<strong>SUPER PRODUCER, Production Coordinator, A&R</strong>','About: Saint Christopher Parks','','inherit','open','open','','1152-revision-v1','','','2013-11-01 23:56:28','2013-11-01 23:56:28','',1152,'http://www.earthhertzrecords.com/2013/11/1152-revision-v1/',0,'revision','',0),(1236,1,'2013-11-02 01:11:46','2013-11-02 01:11:46','<strong>Super Producer, Production Coordinator, A&R</strong>','About: Saint Christopher','','inherit','open','open','','1152-revision-v1','','','2013-11-02 01:11:46','2013-11-02 01:11:46','',1152,'http://www.earthhertzrecords.com/2013/11/1152-revision-v1/',0,'revision','',0),(1339,2,'2013-11-26 17:08:14','2013-11-26 23:08:14','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\"><img class=\"alignleft size-full wp-image-1332\" alt=\"LindaRonstadt\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\" width=\"260\" height=\"391\" /></a>When I heard the news I cried.\r\n\r\nLinda Ronstadt was the first female singer to truly inspire me to sing. Her music - at once country, tinged with folk, and mixed with rock overtones, and her voice - strong and throaty, powerful yet tender with a full range of nuances - was an inspiration; an elixir to soothe my youthful soul. From the beautiful harpsichord flavored \"Different Drum\" written by Monkees alum Michael Nesmith, to the defiant rock kiss off \"You\'re No Good\", Linda Ronstadt\'s music bridged genres to captivate audiences throughout her 40 year career.\r\n\r\nAnd then, just shy of releasing her memoir <em>Linda Ronstadt Simple Dreams: A Musical Memoir</em> (Simon & Schuster) she announced to AARP that she has Parkinson\'s disease and can no longer sing, saying \"I can\'t sing a note.\" adding “I can’t sing at all,” matter-of-factly. “I’m truly not able. I can’t sing ‘Happy Birthday,’ really.” Parkinson\'s affects the ability to move and control the vocal chords - a critical function of singing.\r\n\r\nMy memories of Linda Ronstadt date back as far as I can remember, back to the days when I first started playing guitar at the age of eight, when my extremely supportive mother not only trudged through the rain at an outdoor concert venue to see Ronstadt in concert, but also took me weekly for lessons at a nearby house full of hippies, one of whom would accompany me on bass, singing harmonies to songs by Ronstadt and The Eagles, coaxing me to hit the high notes on \"Heat Wave\". I had the iconic Ronstadt poster in my room in homage to this almost other worldly model of womanhood and talent, and I spent hours in my room mimicking her vocal prowess as her records spun on my JC Penney turntable - my favorite of which was 1976\'s <em>Hasten Down the Wind</em>. The opening strains of that record still give me chills.\r\n\r\n<em>Save me...free me from my heart this time...</em>\r\n\r\nJust like Ronstadt herself, it begins quietly and builds to a powerful and skillfully controlled crescendo of tuneful and emotional bliss. The mere thought that this songbird has been forever silenced brings a sadness that reminds this child of the 70s of the immense uniqueness of a musical era which will have no equal.\r\n\r\nLinda Maria Ronstadt was born on July 15, 1946 in Tuscon, Arizona to Gilbert, a machinery merchant who ran The Ronstadt Co. and homemaker, Ruth Mary Ronstadt. Raised on a 10 acre ranch with three siblings - all of whom were musical; including Gilbert, who himself was a musician in mariachi bands. The family was of German and Mexican descent and together sang the traditional songs of their Mexican heritage.\r\n\r\nAt 18, Ronstadt headed to California at the suggestion of musical pal Bob Kimmel and together with him and Kenny Edwards, formed and sang lead in The Stone Poneys, which garnered the hit \"Different Drum\" and led to relationships with a slew of then unknown singers, musicians and songwriters and placed her at the forefront of a burgeoning California rock music scene, later to be crowned the Queen Of Rock - a distinction she did not at all embrace, saying that she felt rock music never defined her. And it didn\'t.\r\n\r\nIf you\'re expecting the book to be a kiss and tell, or a searing tell all concerning the main players of the time, you might be disappointed. Ronstadt stays true to her word; when she calls the book a musical memoir, she means it. The book recounts a rich and detailed musical legacy that lets both the music aficionado and the casual music lover glimpse into recording sessions, the formation of important relationships (yes, Glen Frey and Don Henley first met as members of Ronstadt\'s touring band and immediately formed what would become The Eagles.), chronicles life on the road and at least one epic all night jam session involving Keith Richards. But at its core, this is an overview of a brilliant career which spanned forty years and included some of the major artists of the day - many of whom continue to enjoy mainstream success. She recalls her collaborations with such musical luminaries as Jackson Browne, the Eagles, J.D. Souther, Warren Zevon, Chris Hillman, Gram Parsons, Neil Young, Frank Zappa, Emmylou Harris, Dolly Parton, Aaron Neville, and Nelson Riddle. She mentions touring early on in her career as an opener for The Doors and minces no words as to her opinion of front man Jim Morrison. She also chronicles her professional relationship with manager Peter Asher, whose understanding of business, music and performance proved crucial to the development and guidance of her illustrious careers.\r\n\r\nThe book mentions romantic relationships only in passing and although as a musician, I devoured the musical anecdotes and behind the scenes tales of studio and songwriting sessions, I admit to feeling a little gipped when it came to details of her personal life, of which there weren\'t many. Ronstadt recalls \"keeping company\" with then California governor Jerry Brown, and living with J.D. Souther, as well as mentions meeting and later being signed by David Geffen who formed Asylum Records, but makes no mention of Albert Brooks or George Lucas, and though she mentions a friendship with then up and coming comedian Steve Martin, she neglects to mention that they dated.\r\n\r\nThe omission of such details does nothing to detract from this engrossing and well written read. Ronstadt, who did not write her own songs, displays an impressive writing talent, articulate and especially knowledgable in her musical commentary.\r\n\r\nPersonal details are left mostly to those of her childhood, growing up in the Arizona desert with her family, which gives insight into her musical roots. Finished before her Parkinson\'s diagnosis was made public, the book makes no mention of her illness but instead, takes the reader on the journey from childhood all the way through the early days of California rock, to her time on Broadway in <em>Pirates of Penzance</em>, her foray into the Great American songbook with Nelson Riddle and his orchestra, her duets with Aaron Neville, collaborations with Emmylou Harris and Dolly Parton and the rediscovery of her Mexican musical roots toward the end of her career.\r\n\r\n<em>Simple Dreams</em> is not just an enjoyable read by one of music\'s most beloved songstresses, it is a seat on the tour bus at an unforgettable time in music.\r\n\r\nReview by Linda Roy\r\n\r\nFirst published on <a href=\"http://raisedontheradio.com/\">RaisedOnTheRadio.com</a>\r\n\r\n<strong>Linda is a writer and musician who blogs at <a href=\"http://elleroywashere.com/\" target=\"_blank\">elleroy was here</a> and <a href=\"http://raisedontheradio.com/\" target=\"_blank\">Raised on the Radio</a>. She leads the Indie Americana band <a href=\"http://jehovawaitresses.com/\" target=\"_blank\">Jehova Waitresses</a> and writes at <a href=\"http://www.aiminglow.com/\" target=\"_blank\">Aiming Low</a>, <a href=\"http://sprocketink.com/\" target=\"_blank\">Sprocket Ink</a> and <a href=\"http://www.funnynotslutty.com/\" target=\"_blank\">Funny Not Slutty</a>. Connect with her on <a href=\"http://www.twitter.com/modmomelleroy\" target=\"_blank\">Twitter</a>, <a href=\"https://www.facebook.com/ModMomBeyondIndieDom\" target=\"_blank\">Facebook</a> and <a href=\"https://plus.google.com/u/0/116644246137576659052/posts\" target=\"_blank\">Google+</a></strong>','Linda Ronstadt: Simple Dreams Made Musical Reality','','inherit','open','open','','1331-revision-v1','','','2013-11-26 17:08:14','2013-11-26 23:08:14','',1331,'http://www.earthhertzrecords.com/2013/11/1331-revision-v1/',0,'revision','',0),(1340,2,'2013-11-26 17:12:15','2013-11-26 23:12:15','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\"><img class=\"alignleft size-full wp-image-1332\" alt=\"LindaRonstadt\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/11/LindaRonstadt.jpg\" width=\"260\" height=\"391\" /></a>When I heard the news I cried.\r\n\r\nLinda Ronstadt was the first female singer to truly inspire me to sing. Her music - at once country, tinged with folk, and mixed with rock overtones, and her voice - strong and throaty, powerful yet tender with a full range of nuances - was an inspiration; an elixir to soothe my youthful soul. From the beautiful harpsichord flavored \"Different Drum\" written by Monkees alum Michael Nesmith, to the defiant rock kiss off \"You\'re No Good\", Linda Ronstadt\'s music bridged genres to captivate audiences throughout her 40 year career.\r\n\r\nAnd then, just shy of releasing her memoir <em>Linda Ronstadt Simple Dreams: A Musical Memoir</em> (Simon & Schuster) she announced to AARP that she has Parkinson\'s disease and can no longer sing, saying \"I can\'t sing a note.\" adding “I can’t sing at all,” matter-of-factly. “I’m truly not able. I can’t sing ‘Happy Birthday,’ really.” Parkinson\'s affects the ability to move and control the vocal chords - a critical function of singing.\r\n\r\nMy memories of Linda Ronstadt date back as far as I can remember, back to the days when I first started playing guitar at the age of eight, when my extremely supportive mother not only trudged through the rain at an outdoor concert venue to see Ronstadt in concert, but also took me weekly for lessons at a nearby house full of hippies, one of whom would accompany me on bass, singing harmonies to songs by Ronstadt and The Eagles, coaxing me to hit the high notes on \"Heat Wave\". I had the iconic Ronstadt poster in my room in homage to this almost other worldly model of womanhood and talent, and I spent hours in my room mimicking her vocal prowess as her records spun on my JC Penney turntable - my favorite of which was 1976\'s <em>Hasten Down the Wind</em>. The opening strains of that record still give me chills.\r\n\r\n<em>Save me...free me from my heart this time...</em>\r\n\r\nJust like Ronstadt herself, it begins quietly and builds to a powerful and skillfully controlled crescendo of tuneful and emotional bliss. The mere thought that this songbird has been forever silenced brings a sadness that reminds this child of the 70s of the immense uniqueness of a musical era which will have no equal.\r\n\r\nLinda Maria Ronstadt was born on July 15, 1946 in Tuscon, Arizona to Gilbert, a machinery merchant who ran The Ronstadt Co. and homemaker, Ruth Mary Ronstadt. Raised on a 10 acre ranch with three siblings - all of whom were musical; including Gilbert, who himself was a musician in mariachi bands. The family was of German and Mexican descent and together sang the traditional songs of their Mexican heritage.\r\n\r\nAt 18, Ronstadt headed to California at the suggestion of musical pal Bob Kimmel and together with him and Kenny Edwards, formed and sang lead in The Stone Poneys, which garnered the hit \"Different Drum\" and led to relationships with a slew of then unknown singers, musicians and songwriters, and placed her at the forefront of a burgeoning California rock music scene, later to be crowned the Queen Of Rock - a distinction she did not at all embrace, saying that she felt rock music never defined her. And it didn\'t.\r\n\r\nIf you\'re expecting the book to be a kiss and tell, or a searing tell all concerning the main players of the time, you might be disappointed. Ronstadt stays true to her word; when she calls the book a musical memoir, she means it. The book recounts a rich and detailed musical legacy that lets both the music aficionado and the casual music lover glimpse into recording sessions, the formation of important relationships (yes, Glen Frey and Don Henley first met as members of Ronstadt\'s touring band and immediately formed what would become The Eagles.), chronicles life on the road and at least one epic all night jam session involving Keith Richards. But at its core, this is an overview of a brilliant career which spanned forty years and included some of the major artists of the day - many of whom continue to enjoy mainstream success. She recalls her collaborations with such musical luminaries as Jackson Browne, the Eagles, J.D. Souther, Warren Zevon, Chris Hillman, Gram Parsons, Neil Young, Frank Zappa, Emmylou Harris, Dolly Parton, Aaron Neville, and Nelson Riddle. She mentions touring early on in her career as an opener for The Doors and minces no words as to her opinion of front man Jim Morrison. She also chronicles her professional relationship with manager Peter Asher, whose understanding of business, music and performance proved crucial to the development and guidance of her illustrious careers.\r\n\r\nThe book mentions romantic relationships only in passing and although as a musician, I devoured the musical anecdotes and behind the scenes tales of studio and songwriting sessions, I admit to feeling a little gipped when it came to details of her personal life, of which there weren\'t many. Ronstadt recalls \"keeping company\" with then California governor Jerry Brown, and living with J.D. Souther, as well as mentions meeting and later being signed by David Geffen who formed Asylum Records, but makes no mention of Albert Brooks or George Lucas, and though she mentions a friendship with then up and coming comedian Steve Martin, she neglects to mention that they dated.\r\n\r\nThe omission of such details does nothing to detract from this engrossing and well written read. Ronstadt, who did not write her own songs, displays an impressive writing talent, articulate and especially knowledgable in her musical commentary.\r\n\r\nPersonal details are left mostly to those of her childhood, growing up in the Arizona desert with her family, which gives insight into her musical roots. Finished before her Parkinson\'s diagnosis was made public, the book makes no mention of her illness but instead, takes the reader on the journey from childhood all the way through the early days of California rock, to her time on Broadway in <em>Pirates of Penzance</em>, her foray into the Great American songbook with Nelson Riddle and his orchestra, her duets with Aaron Neville, collaborations with Emmylou Harris and Dolly Parton and the rediscovery of her Mexican musical roots toward the end of her career.\r\n\r\n<em>Simple Dreams</em> is not just an enjoyable read by one of music\'s most beloved songstresses, it is a seat on the tour bus at an unforgettable time in music.\r\n\r\n<strong>Review by Linda Roy</strong>\r\n\r\nFirst published on <a href=\"http://raisedontheradio.com/\">RaisedOnTheRadio.com</a>\r\n\r\n<strong>Linda is a writer and musician who blogs at <a href=\"http://elleroywashere.com/\" target=\"_blank\">elleroy was here</a> and <a href=\"http://raisedontheradio.com/\" target=\"_blank\">Raised on the Radio</a>. She leads the Indie Americana band <a href=\"http://jehovawaitresses.com/\" target=\"_blank\">Jehova Waitresses</a> and writes at <a href=\"http://www.aiminglow.com/\" target=\"_blank\">Aiming Low</a>, <a href=\"http://sprocketink.com/\" target=\"_blank\">Sprocket Ink</a> and <a href=\"http://www.funnynotslutty.com/\" target=\"_blank\">Funny Not Slutty</a>. Connect with her on <a href=\"http://www.twitter.com/modmomelleroy\" target=\"_blank\">Twitter</a>, <a href=\"https://www.facebook.com/ModMomBeyondIndieDom\" target=\"_blank\">Facebook</a> and <a href=\"https://plus.google.com/u/0/116644246137576659052/posts\" target=\"_blank\">Google+</a></strong>','Linda Ronstadt: Simple Dreams Made Musical Reality','','inherit','open','open','','1331-revision-v1','','','2013-11-26 17:12:15','2013-11-26 23:12:15','',1331,'http://www.earthhertzrecords.com/2013/11/1331-revision-v1/',0,'revision','',0),(1341,2,'2013-11-28 06:48:02','2013-11-28 12:48:02','As we enter the holiday season, it\'s a very busy time at Earth Hertz Records. The initial insanity which surrounded our launch has settled into organized chaos, as we look ahead to the coming months. And, we like what we see.\r\n\r\nLook for two new videos to be released very soon. \"Hey California\" from Applegate Nance showcases the spirit of the duo, and offers a nice taste of their songwriting and vocal chops. The second upcoming video is \"Hippie Girl\" from Matt Guertin and radarTower. This video will definitely get your attention.\r\n\r\nBesides the videos, look for some new sounds from artist-producer Joshua Ayres. Josh has been wearing both of his hats lately, working on his follow-up to his first single \"Waste,\" and producing Hannah Mae, as she finishes up her debut album.\r\n\r\nProducer Saint Christopher has also been busy. His work has been centered on finishing up some projects and evaluating new talent. And he seems to be finding a lot of it.\r\n\r\nYou could say things are shakin\' over at Earth Hertz, and we\'re just getting started. We have been lucky to have some really great writers posting reviews, interviews and music articles on the site, and we look forward to sharing some really exciting writing that\'s coming up very soon.\r\n\r\nThanks to all of you for checking us out, and with new content being added on the website regularly, you need to keep stopping by. Make it easy, follow us on twitter @EarthHertz and Like us on Facebook.\r\n\r\nEarth Hertz Records, bringing you new music and so much more.\r\n\r\nYou better believe it.','Ain\'t No Turkeys Here','','publish','open','open','','aint-no-turkeys-here','','','2013-11-28 11:03:32','2013-11-28 17:03:32','',0,'http://www.earthhertzrecords.com/?p=1341',0,'post','',0),(1342,2,'2013-11-27 19:40:35','2013-11-28 01:40:35','As we enter the holiday season, it\'s a very busy time at Earth Hertz records. The initial insanity which surrounded our launch has settled into organized chaos, as we look ahead to the coming months. And, we like what we see.\r\n\r\nLook for two new videos to be released very soon. \"Hey California\" from Applegate Nance showcases the spirit of the duo, and offers a nice taste of their songwriting and vocal chops. The second upcoming video is \"Hippie Girl\" from Matt Guertin and radarTower. This video will definitely get your attention.\r\n\r\nBesides the videos, look for some new sounds from artist-producer Joshua Ayres. Josh has been wearing both of his hats lately, both working on his follow-up to his first single \"Waste,\" and producing Hannah Mae, as she finishes up her debut album.\r\n\r\nProducer St. Christopher has also been busy. His work has been centered on finishing up some projects and evaluating new talent. And he seems to be finding a lot of it.\r\n\r\nYou could say things are shakin\' over at Earth Hertz, and we\'re just getting started. We have been lucky to have some really great writers posting reviews, interviews and music articles on the site, and we look forward to sharing some really exciting writing that\'s coming up very soon.\r\n\r\nThanks to all of you for checking us out, and with new content being added on the website regularly, you need to keep stopping by. Earth Hertz Records, bringing you new music and so much more.\r\n\r\nYou better believe it.','Ain\'t No Turkeys Here','','inherit','open','open','','1341-revision-v1','','','2013-11-27 19:40:35','2013-11-28 01:40:35','',1341,'http://www.earthhertzrecords.com/2013/11/1341-revision-v1/',0,'revision','',0),(1343,2,'2013-11-27 19:50:46','2013-11-28 01:50:46','As we enter the holiday season, it\'s a very busy time at Earth Hertz records. The initial insanity which surrounded our launch has settled into organized chaos, as we look ahead to the coming months. And, we like what we see.\r\n\r\nLook for two new videos to be released very soon. \"Hey California\" from Applegate Nance showcases the spirit of the duo, and offers a nice taste of their songwriting and vocal chops. The second upcoming video is \"Hippie Girl\" from Matt Guertin and radarTower. This video will definitely get your attention.\r\n\r\nBesides the videos, look for some new sounds from artist-producer Joshua Ayres. Josh has been wearing both of his hats lately, both working on his follow-up to his first single \"Waste,\" and producing Hannah Mae, as she finishes up her debut album.\r\n\r\nProducer St. Christopher has also been busy. His work has been centered on finishing up some projects and evaluating new talent. And he seems to be finding a lot of it.\r\n\r\nYou could say things are shakin\' over at Earth Hertz, and we\'re just getting started. We have been lucky to have some really great writers posting reviews, interviews and music articles on the site, and we look forward to sharing some really exciting writing that\'s coming up very soon.\r\n\r\nThanks to all of you for checking us out, and with new content being added on the website regularly, you need to keep stopping by. Make it easy, follow us on twitter @EarthHertz and Like us on Facebook.\r\n\r\nEarth Hertz Records, bringing you new music and so much more.\r\n\r\nYou better believe it.','Ain\'t No Turkeys Here','','inherit','open','open','','1341-revision-v1','','','2013-11-27 19:50:46','2013-11-28 01:50:46','',1341,'http://www.earthhertzrecords.com/2013/11/1341-revision-v1/',0,'revision','',0),(1344,2,'2013-11-28 06:40:22','2013-11-28 12:40:22','As we enter the holiday season, it\'s a very busy time at Earth Hertz Records. The initial insanity which surrounded our launch has settled into organized chaos, as we look ahead to the coming months. And, we like what we see.\r\n\r\nLook for two new videos to be released very soon. \"Hey California\" from Applegate Nance showcases the spirit of the duo, and offers a nice taste of their songwriting and vocal chops. The second upcoming video is \"Hippie Girl\" from Matt Guertin and radarTower. This video will definitely get your attention.\r\n\r\nBesides the videos, look for some new sounds from artist-producer Joshua Ayres. Josh has been wearing both of his hats lately, working on his follow-up to his first single \"Waste,\" and producing Hannah Mae, as she finishes up her debut album.\r\n\r\nProducer St. Christopher has also been busy. His work has been centered on finishing up some projects and evaluating new talent. And he seems to be finding a lot of it.\r\n\r\nYou could say things are shakin\' over at Earth Hertz, and we\'re just getting started. We have been lucky to have some really great writers posting reviews, interviews and music articles on the site, and we look forward to sharing some really exciting writing that\'s coming up very soon.\r\n\r\nThanks to all of you for checking us out, and with new content being added on the website regularly, you need to keep stopping by. Make it easy, follow us on twitter @EarthHertz and Like us on Facebook.\r\n\r\nEarth Hertz Records, bringing you new music and so much more.\r\n\r\nYou better believe it.','Ain\'t No Turkeys Here','','inherit','open','open','','1341-revision-v1','','','2013-11-28 06:40:22','2013-11-28 12:40:22','',1341,'http://www.earthhertzrecords.com/2013/11/1341-revision-v1/',0,'revision','',0),(1345,1,'2013-11-28 11:03:32','2013-11-28 17:03:32','As we enter the holiday season, it\'s a very busy time at Earth Hertz Records. The initial insanity which surrounded our launch has settled into organized chaos, as we look ahead to the coming months. And, we like what we see.\r\n\r\nLook for two new videos to be released very soon. \"Hey California\" from Applegate Nance showcases the spirit of the duo, and offers a nice taste of their songwriting and vocal chops. The second upcoming video is \"Hippie Girl\" from Matt Guertin and radarTower. This video will definitely get your attention.\r\n\r\nBesides the videos, look for some new sounds from artist-producer Joshua Ayres. Josh has been wearing both of his hats lately, working on his follow-up to his first single \"Waste,\" and producing Hannah Mae, as she finishes up her debut album.\r\n\r\nProducer Saint Christopher has also been busy. His work has been centered on finishing up some projects and evaluating new talent. And he seems to be finding a lot of it.\r\n\r\nYou could say things are shakin\' over at Earth Hertz, and we\'re just getting started. We have been lucky to have some really great writers posting reviews, interviews and music articles on the site, and we look forward to sharing some really exciting writing that\'s coming up very soon.\r\n\r\nThanks to all of you for checking us out, and with new content being added on the website regularly, you need to keep stopping by. Make it easy, follow us on twitter @EarthHertz and Like us on Facebook.\r\n\r\nEarth Hertz Records, bringing you new music and so much more.\r\n\r\nYou better believe it.','Ain\'t No Turkeys Here','','inherit','open','open','','1341-revision-v1','','','2013-11-28 11:03:32','2013-11-28 17:03:32','',1341,'http://www.earthhertzrecords.com/2013/11/1341-revision-v1/',0,'revision','',0),(1347,2,'2013-12-01 17:55:44','2013-12-01 23:55:44','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/losethisfeeling.jpg\"><img class=\"alignright size-full wp-image-1352\" alt=\"losethisfeeling\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/losethisfeeling.jpg\" width=\"280\" height=\"280\" /></a>After reaching mainstream success on Season 3 of NBC’s “The Voice”, singer Terry McDermott is showing no signs of slowing down. Since the show’s conclusion, McDermott’s been busily writing and recording new music while simultaneously building a loyal following.\r\n\r\nHis fan base, known collectively as “McHobbits”, have rallied behind the singer’s every endeavor; even propelling his first hook-laden single, “Pictures” to the #1 spot on the iTunes Rock Singles chart in less than 24 hours.\r\n\r\nMcDermott’s follow-up single, “Lose This Feeling” is a personal introspective that forges new ground while also paving the way for his forth-coming EP <i>(due early in the new year)</i>. Penned along with friend and musical collaborator Todd Burman, “Lose This Feeling” continues the trend of showcasing McDermott’s infectious songwriting ability as well as his commanding vocals.\r\n\r\nOn Sunday, December 8th McDermott will have the honor of performing the National Anthem at the New Orleans Saints NFL game before heading off for more shows in Vietnam, the U.K and Jamaica. McDermott’s band, The Bonfires includes guitarist David Rosser (<i>Afghan Wigs);</i> bassist Alex Smith<i> (World Leader Pretend); </i>drummer Eric Bolivar <i>(Anders Osborne)</i> and keyboardist Rich Hyland, who played in a rival Scottish band back in Aberdeen when McDermott was a member of the band Driveblind.\r\n\r\nI spoke with McDermott about his upcoming EP as well as what he thinks makes classic rock<i> (the genre he highlighted while competing on “The Voice”)</i> so special.\r\n\r\n<b>James Wood: What can you tell us about your upcoming album?</b>\r\n\r\n<b></b>Terry McDermott: It’s a five-song EP with a culmination of material that was written with the band along with some songs I wrote with the guitar player from my previous band. There’s also a song on there that I wrote with a Grammy winner friend of mine that I’m really excited about.\r\n\r\n<b>What was the inspiration behind your new single, “Lose This Feeling”?</b>\r\n\r\nThe basic inspiration for the song was always there. It was just a matter of capturing it at the right time. I had spent a lot of time working with Todd [Burman] at his Hollywood studio. He told me about an idea that he had and wanted me to come in and work on it with him. It was shortly before that encounter that my daughter had been born.\r\n\r\nI had lost my mother eleven years ago and when my daughter was born she was a spitting image of her, which was something I wasn’t really prepared for. It really made me think about the bitter-sweet nature of our existence on this ball of rock. It’s that perpetual feeling. One of being so blessed and lucky to have this wonderful child in your life and then thinking about the strange, sometimes cruel nature of it. It’s part of life. That became the inspiration for the song.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/mcdermott1.jpg\"><img class=\"alignnone size-full wp-image-1349\" alt=\"mcdermott1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/mcdermott1.jpg\" width=\"483\" height=\"342\" /></a>\r\n\r\n<b>Was there a reason why many of the songs you performed on “The Voice” were from the classic rock genre?</b>\r\n\r\nThat style of music is what really inspired me growing up and made it very easy for me to enjoy my time on the show.\r\n\r\n<b>What do you think makes that style of music so appealing?</b>\r\n\r\nIf you go back to the music industry in the 1970′s when bands like The Eagles were selling records, people were buying and cherishing albums. They were physically picking albums up off the shelves, taking them home and wearing them out. Bands back then were held up on a pedestal with tremendous loyalty from their fans and as those fans aged, the bands never lost that sparkle.\r\n\r\nYou also can’t take anything away from the songwriting either. It was much more singer/songwriter oriented back then as opposed to today. Just listen to any Glen Frey or Don Henley track. They’re timeless pieces. They’re songs that you can break down to just one man and a guitar and the quality will still shine through. Anything that has longevity like that should feel like classic rock, because it’s got a chance to stay on the shelf.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/mcdermottband.jpg\"><img class=\"alignnone size-medium wp-image-1350\" alt=\"mcdermottband\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/mcdermottband-300x204.jpg\" width=\"300\" height=\"204\" /></a>\r\n\r\n<b>How important are the fans to you and your music?</b>\r\n\r\nYou really can’t talk about one and not the other. There’s something very organic and truthful about playing shows and having your fans fly in from all over the country just to see you. It’s very rewarding. It’s also a great example of the modern-day synergy that exists between the fans and the artist. Where the record label has become superfluous to many to some degree. If you’ve got the fan base who believes in you, you can bring material to them and cut out the middleman.\r\n\r\nIt’s a great time and a lot of fun to be an independent artist. You have more flexibility to control your own destiny.\r\n\r\n<span style=\"line-height: 24px;\">For more on Terry McDermott, be sure to check out his </span><a style=\"line-height: 24px;\" href=\"http://terrymcdermottmusic.com/\" target=\"_blank\">Official Website</a><span style=\"line-height: 24px;\"> and </span><a style=\"line-height: 24px;\" href=\"https://www.facebook.com/terrymacmusic\" target=\"_blank\">Facebook</a>\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children’s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Vocalist Terry McDermott Discusses New Single, EP and the Allure of Classic Rock','','publish','open','open','','vocalist-terry-mcdermott-discusses-new-single-ep-and-the-allure-of-classic-rock','','','2013-12-01 17:55:44','2013-12-01 23:55:44','',0,'http://www.earthhertzrecords.com/?p=1347',0,'post','',0),(1352,2,'2013-12-01 17:53:21','2013-12-01 23:53:21','','losethisfeeling','','inherit','open','open','','losethisfeeling','','','2013-12-01 17:53:21','2013-12-01 23:53:21','',1347,'http://www.earthhertzrecords.com/wp-content/uploads/2013/12/losethisfeeling.jpg',0,'attachment','image/jpeg',0),(1349,2,'2013-12-01 17:46:05','2013-12-01 23:46:05','','mcdermott1','','inherit','open','open','','mcdermott1','','','2013-12-01 17:46:05','2013-12-01 23:46:05','',1347,'http://www.earthhertzrecords.com/wp-content/uploads/2013/12/mcdermott1.jpg',0,'attachment','image/jpeg',0),(1350,2,'2013-12-01 17:47:48','2013-12-01 23:47:48','','mcdermottband','','inherit','open','open','','mcdermottband','','','2013-12-01 17:47:48','2013-12-01 23:47:48','',1347,'http://www.earthhertzrecords.com/wp-content/uploads/2013/12/mcdermottband.jpg',0,'attachment','image/jpeg',0),(1351,2,'2013-12-01 17:48:09','2013-12-01 23:48:09','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/ltf-coversm.jpg\"><img class=\"alignright size-full wp-image-1348\" alt=\"ltf-coversm\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/ltf-coversm.jpg\" width=\"300\" height=\"300\" /></a>After reaching mainstream success on Season 3 of NBC’s “The Voice”, singer Terry McDermott is showing no signs of slowing down. Since the show’s conclusion, McDermott’s been busily writing and recording new music while simultaneously building a loyal following.\r\n\r\nHis fan base, known collectively as “McHobbits”, have rallied behind the singer’s every endeavor; even propelling his first hook-laden single, “Pictures” to the #1 spot on the iTunes Rock Singles chart in less than 24 hours.\r\n\r\nMcDermott’s follow-up single, “Lose This Feeling” is a personal introspective that forges new ground while also paving the way for his forth-coming EP <i>(due early in the new year)</i>. Penned along with friend and musical collaborator Todd Burman, “Lose This Feeling” continues the trend of showcasing McDermott’s infectious songwriting ability as well as his commanding vocals.\r\n\r\nOn Sunday, December 8th McDermott will have the honor of performing the National Anthem at the New Orleans Saints NFL game before heading off for more shows in Vietnam, the U.K and Jamaica. McDermott’s band, The Bonfires includes guitarist David Rosser (<i>Afghan Wigs);</i> bassist Alex Smith<i> (World Leader Pretend); </i>drummer Eric Bolivar <i>(Anders Osborne)</i> and keyboardist Rich Hyland, who played in a rival Scottish band back in Aberdeen when McDermott was a member of the band Driveblind.\r\n\r\nI spoke with McDermott about his upcoming EP as well as what he thinks makes classic rock<i> (the genre he highlighted while competing on “The Voice”)</i> so special.\r\n\r\n<b>James Wood: What can you tell us about your upcoming album?</b>\r\n\r\n<b></b>Terry McDermott: It’s a five-song EP with a culmination of material that was written with the band along with some songs I wrote with the guitar player from my previous band. There’s also a song on there that I wrote with a Grammy winner friend of mine that I’m really excited about.\r\n\r\n<b>What was the inspiration behind your new single, “Lose This Feeling”?</b>\r\n\r\nThe basic inspiration for the song was always there. It was just a matter of capturing it at the right time. I had spent a lot of time working with Todd [Burman] at his Hollywood studio. He told me about an idea that he had and wanted me to come in and work on it with him. It was shortly before that encounter that my daughter had been born.\r\n\r\nI had lost my mother eleven years ago and when my daughter was born she was a spitting image of her, which was something I wasn’t really prepared for. It really made me think about the bitter-sweet nature of our existence on this ball of rock. It’s that perpetual feeling. One of being so blessed and lucky to have this wonderful child in your life and then thinking about the strange, sometimes cruel nature of it. It’s part of life. That became the inspiration for the song.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/mcdermott1.jpg\"><img class=\"alignnone size-full wp-image-1349\" alt=\"mcdermott1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/mcdermott1.jpg\" width=\"483\" height=\"342\" /></a>\r\n\r\n<b>Was there a reason why many of the songs you performed on “The Voice” were from the classic rock genre?</b>\r\n\r\nThat style of music is what really inspired me growing up and made it very easy for me to enjoy my time on the show.\r\n\r\n<b>What do you think makes that style of music so appealing?</b>\r\n\r\nIf you go back to the music industry in the 1970′s when bands like The Eagles were selling records, people were buying and cherishing albums. They were physically picking albums up off the shelves, taking them home and wearing them out. Bands back then were held up on a pedestal with tremendous loyalty from their fans and as those fans aged, the bands never lost that sparkle.\r\n\r\nYou also can’t take anything away from the songwriting either. It was much more singer/songwriter oriented back then as opposed to today. Just listen to any Glen Frey or Don Henley track. They’re timeless pieces. They’re songs that you can break down to just one man and a guitar and the quality will still shine through. Anything that has longevity like that should feel like classic rock, because it’s got a chance to stay on the shelf.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/mcdermottband.jpg\"><img class=\"alignnone size-medium wp-image-1350\" alt=\"mcdermottband\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/mcdermottband-300x204.jpg\" width=\"300\" height=\"204\" /></a>\r\n\r\n<b>How important are the fans to you and your music?</b>\r\n\r\nYou really can’t talk about one and not the other. There’s something very organic and truthful about playing shows and having your fans fly in from all over the country just to see you. It’s very rewarding. It’s also a great example of the modern-day synergy that exists between the fans and the artist. Where the record label has become superfluous to many to some degree. If you’ve got the fan base who believes in you, you can bring material to them and cut out the middleman.\r\n\r\nIt’s a great time and a lot of fun to be an independent artist. You have more flexibility to control your own destiny.\r\n\r\n<span style=\"line-height: 24px;\">For more on Terry McDermott, be sure to check out his </span><a style=\"line-height: 24px;\" href=\"http://terrymcdermottmusic.com/\" target=\"_blank\">Official Website</a><span style=\"line-height: 24px;\"> and </span><a style=\"line-height: 24px;\" href=\"https://www.facebook.com/terrymacmusic\" target=\"_blank\">Facebook</a>\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children’s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Vocalist Terry McDermott Discusses New Single, EP and the Allure of Classic Rock','','inherit','open','open','','1347-revision-v1','','','2013-12-01 17:48:09','2013-12-01 23:48:09','',1347,'http://www.earthhertzrecords.com/2013/12/1347-revision-v1/',0,'revision','',0),(1353,2,'2013-12-01 17:54:24','2013-12-01 23:54:24','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/losethisfeeling.jpg\"><img class=\"alignright size-full wp-image-1352\" alt=\"losethisfeeling\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/losethisfeeling.jpg\" width=\"280\" height=\"280\" /></a>After reaching mainstream success on Season 3 of NBC’s “The Voice”, singer Terry McDermott is showing no signs of slowing down. Since the show’s conclusion, McDermott’s been busily writing and recording new music while simultaneously building a loyal following.\r\n\r\nHis fan base, known collectively as “McHobbits”, have rallied behind the singer’s every endeavor; even propelling his first hook-laden single, “Pictures” to the #1 spot on the iTunes Rock Singles chart in less than 24 hours.\r\n\r\nMcDermott’s follow-up single, “Lose This Feeling” is a personal introspective that forges new ground while also paving the way for his forth-coming EP <i>(due early in the new year)</i>. Penned along with friend and musical collaborator Todd Burman, “Lose This Feeling” continues the trend of showcasing McDermott’s infectious songwriting ability as well as his commanding vocals.\r\n\r\nOn Sunday, December 8th McDermott will have the honor of performing the National Anthem at the New Orleans Saints NFL game before heading off for more shows in Vietnam, the U.K and Jamaica. McDermott’s band, The Bonfires includes guitarist David Rosser (<i>Afghan Wigs);</i> bassist Alex Smith<i> (World Leader Pretend); </i>drummer Eric Bolivar <i>(Anders Osborne)</i> and keyboardist Rich Hyland, who played in a rival Scottish band back in Aberdeen when McDermott was a member of the band Driveblind.\r\n\r\nI spoke with McDermott about his upcoming EP as well as what he thinks makes classic rock<i> (the genre he highlighted while competing on “The Voice”)</i> so special.\r\n\r\n<b>James Wood: What can you tell us about your upcoming album?</b>\r\n\r\n<b></b>Terry McDermott: It’s a five-song EP with a culmination of material that was written with the band along with some songs I wrote with the guitar player from my previous band. There’s also a song on there that I wrote with a Grammy winner friend of mine that I’m really excited about.\r\n\r\n<b>What was the inspiration behind your new single, “Lose This Feeling”?</b>\r\n\r\nThe basic inspiration for the song was always there. It was just a matter of capturing it at the right time. I had spent a lot of time working with Todd [Burman] at his Hollywood studio. He told me about an idea that he had and wanted me to come in and work on it with him. It was shortly before that encounter that my daughter had been born.\r\n\r\nI had lost my mother eleven years ago and when my daughter was born she was a spitting image of her, which was something I wasn’t really prepared for. It really made me think about the bitter-sweet nature of our existence on this ball of rock. It’s that perpetual feeling. One of being so blessed and lucky to have this wonderful child in your life and then thinking about the strange, sometimes cruel nature of it. It’s part of life. That became the inspiration for the song.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/mcdermott1.jpg\"><img class=\"alignnone size-full wp-image-1349\" alt=\"mcdermott1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/mcdermott1.jpg\" width=\"483\" height=\"342\" /></a>\r\n\r\n<b>Was there a reason why many of the songs you performed on “The Voice” were from the classic rock genre?</b>\r\n\r\nThat style of music is what really inspired me growing up and made it very easy for me to enjoy my time on the show.\r\n\r\n<b>What do you think makes that style of music so appealing?</b>\r\n\r\nIf you go back to the music industry in the 1970′s when bands like The Eagles were selling records, people were buying and cherishing albums. They were physically picking albums up off the shelves, taking them home and wearing them out. Bands back then were held up on a pedestal with tremendous loyalty from their fans and as those fans aged, the bands never lost that sparkle.\r\n\r\nYou also can’t take anything away from the songwriting either. It was much more singer/songwriter oriented back then as opposed to today. Just listen to any Glen Frey or Don Henley track. They’re timeless pieces. They’re songs that you can break down to just one man and a guitar and the quality will still shine through. Anything that has longevity like that should feel like classic rock, because it’s got a chance to stay on the shelf.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/mcdermottband.jpg\"><img class=\"alignnone size-medium wp-image-1350\" alt=\"mcdermottband\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/mcdermottband-300x204.jpg\" width=\"300\" height=\"204\" /></a>\r\n\r\n<b>How important are the fans to you and your music?</b>\r\n\r\nYou really can’t talk about one and not the other. There’s something very organic and truthful about playing shows and having your fans fly in from all over the country just to see you. It’s very rewarding. It’s also a great example of the modern-day synergy that exists between the fans and the artist. Where the record label has become superfluous to many to some degree. If you’ve got the fan base who believes in you, you can bring material to them and cut out the middleman.\r\n\r\nIt’s a great time and a lot of fun to be an independent artist. You have more flexibility to control your own destiny.\r\n\r\n<span style=\"line-height: 24px;\">For more on Terry McDermott, be sure to check out his </span><a style=\"line-height: 24px;\" href=\"http://terrymcdermottmusic.com/\" target=\"_blank\">Official Website</a><span style=\"line-height: 24px;\"> and </span><a style=\"line-height: 24px;\" href=\"https://www.facebook.com/terrymacmusic\" target=\"_blank\">Facebook</a>\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children’s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Vocalist Terry McDermott Discusses New Single, EP and the Allure of Classic Rock','','inherit','open','open','','1347-revision-v1','','','2013-12-01 17:54:24','2013-12-01 23:54:24','',1347,'http://www.earthhertzrecords.com/2013/12/1347-revision-v1/',0,'revision','',0),(1355,2,'2013-12-02 14:45:02','0000-00-00 00:00:00','Earth Hertz Records producer St. Christopher has been busy checking out new talent, and taking care of business in the studio. Recently, he has been working','','','draft','open','open','','','','','2013-12-02 14:45:02','2013-12-02 20:45:02','',0,'http://www.earthhertzrecords.com/?p=1355',0,'post','',0),(1440,2,'2014-01-02 17:16:16','2014-01-02 23:16:16','Is there a band more recognizable than The Beatles? When searching for the Best Rock Band of All-Time the answer was unanimous. But search for the answer to this question, \"Who is the fifth Beatle?\" and amazingly you will not find the real answer.\r\n\r\nOn June 3, 1964 the fate of a successful, but small-time drummer would change forever. Jimmie Nicol would become the fifth Beatle, if only for 13 days, and it would change the trajectory of his life in a way no one could have predicted.\r\n\r\nThis is a story that clearly would have never been told if not for the painstaking research done by Jim Berkenstadt. He took what was barely enough material to write an article and meticulously followed the movements of this mysterious person who replaced Ringo Starr for thirteen days on the Beatles first World Tour. <em>The Beatle Who Vanished</em> is a fascinating look inside the history of rock and roll in 1960s London, and the music industry\'s attempt to create pop stars by controlling and molding the musicians who were discovering and exploring this rapidly changing music scene.\r\n\r\nJimmie Nicol\'s life was intricately entwined with the birth of Rock and Roll. As Berkenstadt uncovered Nicol\'s history, he discovered a drummer so well regarded that, in 1964, his destiny was most surely on the path for fame. No one denied that Nicol\'s skills were among the top in the clubs and music studios of London, he was well known for his versatility; moving between jazz and rock easily and even combining the two. Often asked to play with many up and coming bands, he was making a decent living as a musician and had become a staple as a session drummer. He was also the drummer for a series called Top Six, a weekly recording of the Top Six hits, often covering Beatles songs to perfection. Who could know how important that would be?\r\n\r\nJust when it seemed Jimmie\'s ship had come in, becoming the permanent drummer for Georgie Fame and The Blue Flames, he and his wife were living a comfortable life, and he was guaranteed work at something he loved; his life would take one more turn. Paul McCartney would personally call Georgie Fame and ask if they could \"borrow\" his drummer Nicols.\r\n\r\nThe rest they say, is history. But it wasn\'t, not for us, not for him. It is what happened after this amazing story that was a mystery for so many years. Jimmie was a tried and true Beatle for 13 days, it may not seem like a long time, but as you read about the intensity of the touring, traveling and riot like interaction with fans, one can see how it felt like a lifetime for Jimmie. Nichol joined the Beatles as the crescendo of Beatlemania was beginning, but he was ill equipped to be at the center of such fame and adulation. Paul McCartney befriended Jimmie and often asked him if \"it was getting better?\" Jimmie\'s response? \"It\'s getting better all the time.\" After thirteen days of playing multiple shows a day, their songs felt like his songs, and just as he began to feel like a \"real\" Beatle, it was ripped away from him.\r\n\r\nEven for those who knew Jimmie well, no one could understand that feeling. He went from being a <em>Beatle</em> to being plain old Jimmie in one day. His attempt at recreating that fame, his subsequent travels, and his disappearance and supposed death are the riveting plots of this wonderful mystery of a biography. Jim Berkenstadt does something for Jimmie that he could never do, he showcases his amazing talent and paints a picture so clear that when you finish this book you will feel like you knew Jimmie all along.','\"The Beatle Who Vanished\" by Jim Berkenstadt: A Book Review','','inherit','open','open','','1437-revision-v1','','','2014-01-02 17:16:16','2014-01-02 23:16:16','',1437,'http://www.earthhertzrecords.com/2014/01/1437-revision-v1/',0,'revision','',0),(1357,2,'2013-12-02 17:33:54','2013-12-02 23:33:54','','HowlinBrothers-2','','inherit','open','open','','howlinbrothers-2','','','2013-12-02 17:33:54','2013-12-02 23:33:54','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/12/HowlinBrothers-2.jpeg',0,'attachment','image/jpeg',0),(1358,2,'2013-12-02 17:34:47','2013-12-02 23:34:47','','HowlinBrothers-3','','inherit','open','open','','howlinbrothers-3','','','2013-12-02 17:34:47','2013-12-02 23:34:47','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2013/12/HowlinBrothers-3.jpeg',0,'attachment','image/jpeg',0),(1439,2,'2014-01-02 17:12:25','2014-01-02 23:12:25','Is there a band more recognizable than The Beatles? When searching for the Best Rock Band of All-Time the answer was unanimous. But search for the answer to this question, \"Who is the fifth Beatle?\" and amazingly you will not find the real answer.\r\n\r\nOn June 3, 1964 the fate of a successful, but small-time drummer would change forever. Jimmie Nicol would become the fifth Beatle, if only for 13 days, and it would change the trajectory of his life in a way no one could have predicted.\r\n\r\nThis is a story that clearly would have never been told if not for the painstaking research done by Jim Berkenstadt. He took what was barely enough material to write an article and meticulously followed the movements of this mysterious person who replaced Ringo Starr for thirteen days on the Beatles first World Tour. <em>The Beatle Who Vanished</em> is a fascinating look inside the history of rock and roll in 1960s London, and the music industry\'s attempt to create pop stars by controlling and molding the musicians who were discovering and exploring this rapidly changing music scene.\r\n\r\nJimmie Nicol\'s life was intricately entwined with the birth of Rock and Roll. As Berkenstadt uncovered Nicol\'s history, he discovered a drummer so well regarded that, in 1964, his destiny was most surely on the path for fame. No one denied that Nicol\'s skills were among the top in the clubs and music studios of London, he was well known for his versatility; moving between jazz and rock easily and even combining the two. Often asked to play with many up and coming bands, he was making a decent living as a musician and had become a staple as a session drummer. He was also the drummer for a series called Top Six, a weekly recording of the Top Six hits, often covering Beatles songs to perfection. Who could know how important that would be?\r\n\r\nJust when it seemed Jimmie\'s ship had come in, becoming the permanent drummer for Georgie Fame and The Blue Flames, he and his wife were living a comfortable life, and he was guaranteed work at something he loved; his life would take one more turn. Paul McCartney would personally call Georgie Fame and ask if they could \"borrow\" his drummer Nicols.\r\n\r\nThe rest they say, is history. But it wasn\'t, not for us, not for him. It is what happened after this amazing story that was a mystery for so many years. Jimmie was a tried and true Beatle for 13 days, it may not seem like a long time, but as you read about the intensity of the touring, traveling and riot like interaction with fans, one can see how it felt like a lifetime for Jimmie. Nichol joined the Beatles as the crescendo of Beatlemania was beginning, but he was ill equipped to be at the center of such fame and adulation. Paul McCartney befriended Jimmie and often asked him if \"it was getting better?\" Jimmie\'s response? \"It\'s getting better all the time.\" After thirteen days of playing multiple shows a day, their songs felt like his songs, and just as he began to feel like a \"real\" Beatle, it was ripped away from him.\r\n\r\nEven for those who knew Jimmie well, no one could understand that feeling. He went from being a <em>Beatle</em> to being plain old Jimmie in one day. His attempt at recreating that fame, his subsequent travels, and his disappearance and supposed death are the riveting plots of this wonderful mystery of a biography. Jim Berkenstadt does something for Jimmie that he could never do, he showcases his amazing talent and paints a picture so clear that when you finish this book you will feel like you knew Jimmie all along.','The Beatle Who Vanished by Jim Berkenstadt: A Book Review','','inherit','open','open','','1437-revision-v1','','','2014-01-02 17:12:25','2014-01-02 23:12:25','',1437,'http://www.earthhertzrecords.com/2014/01/1437-revision-v1/',0,'revision','',0),(1438,2,'2014-01-02 16:53:22','2014-01-02 22:53:22','Is there a band more recognizable than The Beatles? When searching for the Best Rock Band of All-Time the answer was unanimous. But search for the answer to this question, \"Who is the fifth Beatle?\" and amazingly you will not find the real answer.\r\n\r\nOn June 3, 1964 the fate of a successful, but small-time drummer would change forever. Jimmie Nicol would become the fifth Beatle, if only for 13 days, and it would change the trajectory of his life in a way no one could have predicted.\r\n\r\nThis is a story that clearly would have never been told if not for the painstaking research done by Jim Berkenstadt. He took what was barely enough material to write an article and meticulously followed the movements of this mysterious person who replaced Ringo Starr for the Beatles first World Tour for 13 days. The Beatle Who Vanished is a fascinating look inside the history of rock and roll in London, and the music industry\'s attempt to create pop stars by controlling and molding the musicians who were discovering and exploring this rapidly changing music scene.\r\n\r\nJimmie Nicol\'s life was intricately intertwined with the birth of Rock and Roll. As Berkenstadt uncovered Nicol\'s history, he discovered a drummer so well regarded that, in 1964, his destiny was most surely on the path for fame. No one denied that Nicol\'s skills were among the top in the clubs and music studios of London, he was well known for his versatility; moving between jazz and rock easily and even combining the two. Often asked to play with many up and coming bands he was making a decent living as a musician and had become a staple as a session drummer, he was also the drummer for a series called Top Six, a weekly recording if the Top Six hits, often covering Beatles songs to perfection, who could know how important that would be?\r\n\r\nJust when it seemed Jimmie\'s ship had come in because he had become the permanent drummer for Georgie Fame and The Blue Flames, he and his wife were living a comfortable life, and he was guaranteed work at something he loved; his life would take one more turn. Paul McCartney would personally call Georgie Fame and ask if they could \"borrow\" his drummer Nicols.\r\n\r\nThe rest they say, is history. But it wasn\'t, not for us, not for him. It is what happened after this amazing story that was a mystery for so many years. Jimmie was a tried and true Beatle for 13 days, it may not seem like a long time, but as you read about the intensity of the touring, traveling and riot like interaction with fans, one can see how it felt like a lifetime for Jimmie. Jimmie joined the Beatles as the crescendo of Beatlemania was beginning, he was ill equipped to be at the center of such fame and adulation, Paul McCartney befriended Jimmie and often asked him if \"It was getting better?\" Jimmie\'s response? \"It\'s getting better all the time.\" 13 days of playing multiple shows a day, their songs felt like his songs, and just as he began to feel like a \"real\" Beatle, it was ripped away from him.\r\n\r\nEven for those who new Jimmie well, no one could understand that feeling. He went from being a <em>Beatle</em> to being plain old Jimmie in one day. His attempt at recreating that fame, his subsequent travels and his disappearance and supposed death are the riveting plots of this wonderful mystery of a biography. Jim Berkenstadt does something for Jimmie that he could never do, he showcases his amazing talent and paints a picture so clear that when you finish this book you will feel like you knew Jimmie all along.\r\n\r\n<img alt=\"jimmie nicol\" src=\"http://raisedontheradio.com/wp-content/uploads/2014/01/jimmie-nicol.jpeg\" width=\"292\" height=\"173\" />','The Beatle Who Vanished by Jim Berkenstadt: A Book Review','','inherit','open','open','','1437-revision-v1','','','2014-01-02 16:53:22','2014-01-02 22:53:22','',1437,'http://www.earthhertzrecords.com/2014/01/1437-revision-v1/',0,'revision','',0),(1361,1,'2013-12-02 19:26:26','0000-00-00 00:00:00','','13 and Under Instagram Account?','','draft','open','open','','','','','2013-12-02 19:26:26','2013-12-03 01:26:26','',0,'http://www.earthhertzrecords.com/?page_id=1361',0,'page','',0),(1362,1,'2013-12-02 19:33:23','2013-12-03 01:33:23','Just looking to see how you all feel about the 13 and over age restrictions and how you handle them with your preteens.\r\n[yop_poll id=\"3\" tr_id=\"000002\"]','Would you let your under 13 year old have an Instagram or Facebook Account?','','publish','open','open','','would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account','','','2013-12-02 19:35:57','2013-12-03 01:35:57','',1043,'http://www.earthhertzrecords.com/?page_id=1362',0,'page','',0),(1363,1,'2013-12-02 19:33:23','2013-12-03 01:33:23','Just looking to see how you all feel about the 13 and over age restrictions and how you handle them with your preteens.\r\n[yop_poll id=\"3\" tr_id=\"000002\"]','Would you let your under 13 year old have an Instagram or Facebook Account?','','inherit','open','open','','1362-revision-v1','','','2013-12-02 19:33:23','2013-12-03 01:33:23','',1362,'http://www.earthhertzrecords.com/2013/12/1362-revision-v1/',0,'revision','',0),(1364,1,'2013-12-03 15:12:03','2013-12-03 21:12:03','<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/Ql8vvDGth7w\" frameborder=\"0\" allowfullscreen></iframe>','Applegate Nance','','inherit','open','open','','1318-revision-v1','','','2013-12-03 15:12:03','2013-12-03 21:12:03','',1318,'http://www.earthhertzrecords.com/2013/12/1318-revision-v1/',0,'revision','',0),(1371,1,'2013-12-04 10:06:57','2013-12-04 16:06:57','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n</strong>\r\n\r\nMP3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk\r\n<strong>Video: Hey California\r\n<iframe src=\"//www.youtube.com/embed/Ql8vvDGth7w\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe></strong>','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-12-04 10:06:57','2013-12-04 16:06:57','',738,'http://www.earthhertzrecords.com/2013/12/738-revision-v1/',0,'revision','',0),(1365,1,'2013-12-03 15:29:22','2013-12-03 21:29:22','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n<a href=\"https://itunes.apple.com/us/album/the-good-bad-and-the-sunny-ep/id694043396?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\n\r\nMP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk\r\n\r\n \r\n<strong>Video: Hey California\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/Ql8vvDGth7w\" frameborder=\"0\" allowfullscreen></iframe></strong>','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-12-03 15:29:22','2013-12-03 21:29:22','',738,'http://www.earthhertzrecords.com/2013/12/738-revision-v1/',0,'revision','',0),(1366,1,'2013-12-03 15:46:33','2013-12-03 21:46:33','','Applegate Nance','','inherit','open','open','','an_videoslider','','','2013-12-03 15:46:33','2013-12-03 21:46:33','',1367,'http://www.earthhertzrecords.com/wp-content/uploads/2013/12/AN_VideoSlider.png',0,'attachment','image/png',0),(1367,1,'2013-12-03 15:48:44','2013-12-03 21:48:44','[caption id=\"attachment_1366\" align=\"alignnone\" width=\"960\"]<img class=\" wp-image-1366\" alt=\"Applegate Nance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/AN_VideoSlider.png\" width=\"960\" height=\"210\" /> Hey California, new video from Applegate Nance Available Now![/caption]','','','publish','open','open','','1367','','','2014-03-28 11:49:26','2014-03-28 17:49:26','',0,'http://www.earthhertzrecords.com/?p=1367',0,'post','',0),(1369,1,'2013-12-03 15:50:55','2013-12-03 21:50:55','<img class=\"alignnone wp-image-1366\" alt=\"Applegate Nance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/AN_VideoSlider.png\" width=\"960\" height=\"210\" />','','','inherit','open','open','','1367-revision-v1','','','2013-12-03 15:50:55','2013-12-03 21:50:55','',1367,'http://www.earthhertzrecords.com/2013/12/1367-revision-v1/',0,'revision','',0),(1368,1,'2013-12-03 15:48:44','2013-12-03 21:48:44','<img class=\"alignnone size-full wp-image-1366\" alt=\"Applegate Nance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/AN_VideoSlider.png\" width=\"960\" height=\"210\" />','','','inherit','open','open','','1367-revision-v1','','','2013-12-03 15:48:44','2013-12-03 21:48:44','',1367,'http://www.earthhertzrecords.com/2013/12/1367-revision-v1/',0,'revision','',0),(1370,1,'2013-12-03 15:54:19','2013-12-03 21:54:19','[caption id=\"attachment_1366\" align=\"alignnone\" width=\"960\"]<img class=\" wp-image-1366\" alt=\"Applegate Nance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/AN_VideoSlider.png\" width=\"960\" height=\"210\" /> Hey California, new video from Applegate Nance Available Now![/caption]','','','inherit','open','open','','1367-revision-v1','','','2013-12-03 15:54:19','2013-12-03 21:54:19','',1367,'http://www.earthhertzrecords.com/2013/12/1367-revision-v1/',0,'revision','',0),(1377,1,'2013-12-05 08:50:19','2013-12-05 14:50:19','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n</strong>\r\n\r\nMP3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk\r\n<strong>\r\n</strong>','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-12-05 08:50:19','2013-12-05 14:50:19','',738,'http://www.earthhertzrecords.com/2013/12/738-revision-v1/',0,'revision','',0),(1374,1,'2013-12-04 12:54:16','2013-12-04 18:54:16','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n</strong>\r\n\r\nMP3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk\r\n<strong>Video: Hey California\r\n<iframe src=\"//www.youtube.com/embed/Ql8vvDGth7w\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe></strong>\r\n\"Hey California\" Music Video is lead single from the Applegate Nance CD The Good, Bad And the Sunny \r\non Earth Hertz Records. \r\nThis Clip was directed and produced by: H.L. Jarboe of Bell-Jarboe FIlms on location in Nashville, Tennessee\r\nVideo Editor: Scott Simmons\r\n©℗ Applegate Nance Publishing (BMI)\r\n© 2013 Earth Hertz Records','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-12-04 12:54:16','2013-12-04 18:54:16','',738,'http://www.earthhertzrecords.com/2013/12/738-revision-v1/',0,'revision','',0),(1372,1,'2013-12-04 12:52:49','2013-12-04 18:52:49','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n</strong>\r\n\r\nMP3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk\r\n<strong>Video: Hey California\r\n<iframe src=\"//www.youtube.com/embed/Ql8vvDGth7w\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe></strong>\r\n\"Hey California\" Music Video is lead single from the\r\nApplegate Nance CD The Good, Bad And the Sunny \r\non Earth Hertz Records. \r\nThis Clip was directed and produced by:\r\nH.L. Jarboe of Bell-Jarboe FIlms on location in Nashville, Tennessee\r\nVideo Editor: Scott Simmons\r\nhttps://www.facebook.com/applegatenance\r\nhttp://www.bell-jarboefilms.com\r\nhttp://www.earthhertzrecords.com\r\n\"Hey California\"\r\nBy Applegate Nance\r\n©℗ Applegate Nance Publishing (BMI)\r\n© 2013 Earth Hertz Records','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-12-04 12:52:49','2013-12-04 18:52:49','',738,'http://www.earthhertzrecords.com/2013/12/738-revision-v1/',0,'revision','',0),(1373,1,'2013-12-04 12:53:19','2013-12-04 18:53:19','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n</strong>\r\n\r\nMP3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk\r\n<strong>Video: Hey California\r\n<iframe src=\"//www.youtube.com/embed/Ql8vvDGth7w\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe></strong>\r\n\"Hey California\" Music Video is lead single from the Applegate Nance CD The Good, Bad And the Sunny \r\non Earth Hertz Records. \r\nThis Clip was directed and produced by: H.L. Jarboe of Bell-Jarboe FIlms on location in Nashville, Tennessee\r\nVideo Editor: Scott Simmons\r\nhttps://www.facebook.com/applegatenance\r\nhttp://www.bell-jarboefilms.com\r\nhttp://www.earthhertzrecords.com\r\n\"Hey California\"\r\nBy Applegate Nance\r\n©℗ Applegate Nance Publishing (BMI)\r\n© 2013 Earth Hertz Records','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-12-04 12:53:19','2013-12-04 18:53:19','',738,'http://www.earthhertzrecords.com/2013/12/738-revision-v1/',0,'revision','',0),(1375,1,'2013-12-04 12:55:13','2013-12-04 18:55:13','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n</strong>\r\n\r\nMP3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk\r\n<strong>Video: Hey California\r\n<iframe src=\"//www.youtube.com/embed/Ql8vvDGth7w\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe></strong>\r\n\"Hey California\" Music Video is lead single from the Applegate Nance CD The Good, Bad And the Sunny \r\non Earth Hertz Records. \r\nThis Clip was directed and produced by: H.L. Jarboe of Bell-Jarboe Films\r\nOn location in Nashville, Tennessee\r\nVideo Editor: Scott Simmons\r\n©℗ Applegate Nance Publishing (BMI)\r\n© 2013 Earth Hertz Records','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-12-04 12:55:13','2013-12-04 18:55:13','',738,'http://www.earthhertzrecords.com/2013/12/738-revision-v1/',0,'revision','',0),(1376,1,'2013-12-17 10:06:05','2013-12-17 16:06:05','<iframe src=\"//www.youtube.com/embed/Ql8vvDGth7w\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Applegate Nance','','inherit','open','open','','1318-autosave-v1','','','2013-12-17 10:06:05','2013-12-17 16:06:05','',1318,'http://www.earthhertzrecords.com/2013/12/1318-autosave-v1/',0,'revision','',0),(1379,1,'2013-12-06 12:18:25','2013-12-06 18:18:25','<strong>Chief Financial Officer, Art Director</strong>\r\n\r\nHi Im Eloa Xeno','About: Eloa Xeno','','inherit','open','open','','1144-revision-v1','','','2013-12-06 12:18:25','2013-12-06 18:18:25','',1144,'http://www.earthhertzrecords.com/2013/12/1144-revision-v1/',0,'revision','',0),(1380,1,'2013-12-06 12:19:24','2013-12-06 18:19:24','<iframe src=\"//www.youtube.com/embed/XYlAmuOgPo0\" height=\"315\" width=\"500\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Robert Xeno Earth Hertz Records 2013 ','','inherit','open','open','','941-revision-v1','','','2013-12-06 12:19:24','2013-12-06 18:19:24','',941,'http://www.earthhertzrecords.com/2013/12/941-revision-v1/',0,'revision','',0),(1381,1,'2013-12-06 12:24:10','2013-12-06 18:24:10','Hello, My Name is Robert Xeno\r\n\r\nI am Founder and CEO of Earth Hertz Records, StreamBeam.US, and Stream Share Musicians Cooperative.\r\n\r\nI have been in the music business for the last 35 years and have watched with great concern as the major label format has systematically raped, pillaged, and destroyed artists, music in general, and the entire industry as a whole.\r\n\r\nWell, we put our heads together here at Earth Hertz and we believe we have come up with a solution.\r\n\r\nWe are a record label with its own recording studio and production team. This allows us to keep our costs down while affording artists the freedom to take their time and express their art. One of our pet peeves about the record industry is the idea of making artists pay for what they do. It is art, and artists should be free to create. As such, we never charge nor bill the artist for any of the services required to complete their project. Revolutionary.\r\n\r\nWe feel that if we believe in an artist like they do, then they should not be held accountable for un-recouped costs associated with a project. We are down on the line with the artist and all billing is recouped through the project. If the project makes no money, the artist never owes the company for reimbursement. We insist it is time for a change.\r\n\r\nAlso, we have our own media streaming platform, StreamBeam.US. Here, we will stream our artists’ music at the highest resolutions possible. We have been testing from MP3 standards up to 192k wav streams and beyond.\r\n\r\nThe real deal maker here, as if this already wasn’t enough, is our newest venture, Stream Share Musician’s Cooperative. You see, there is a giant green elephant sitting in the corner of the room but no one in the industry is addressing it. They keep the focus on the .0008 cents per stream and below, tied to artists; royalties and copyright/publishing. It’s all smoke and mirrors, folks.\r\n\r\nJust one example, a certain large internet radio has already taken in over $500+ million dollars this year, and there is still another quarter to go. We will use the cooperative to share in the ad revenue we generate with the artists. As I said, it’s time for a change.\r\n\r\nBeyond the ideas and the technology, we also have the smarts and the ability to get it all done. We signed 6 artists on our recent launch. All six artists were accepted in the 1<sup>st</sup> round balloting for the 56<sup>th</sup> Grammy® Awards process. In all, we have 12 entries in the running.\r\n\r\nThis next year is clearly going to be one of incredible change in the industry. I believe I have the team and the artists in place to create a new future for the music industry; one where creativity is valued and fairness is the rule.\r\n\r\nEarth Hertz.\r\nYou better believe it.\r\n\r\nRobert Xeno 2013\r\n[yop_poll id=\"2\" tr_id=\"0000001\"]\r\n\r\n \r\n<div id=\"coolsocialb\">\r\n<div id=\"coolsociald\"><a href=\"http://www.coolsocial.net\">coolsocial.net</a> <a href=\"http://www.coolsocial.net/sites/www/earthhertzrecords.com.html\">earthhertzrecords.com</a></div>\r\n<script id=\"coolsocials\" type=\"text/javascript\">// < ![CDATA[\r\n(function() {function async_load(){var s = document.createElement(\'script\'); s.type = \'text/javascript\'; s.async = true;s.src = \'http://www.coolsocial.net/get_snippet.aspx?url=earthhertzrecords.com\';var x = document.getElementById(\'coolsocials\'); x.parentNode.insertBefore(s, x); }document.getElementById(\'coolsociald\').innerHTML = \'\';if (window.attachEvent) window.attachEvent(\'onload\', async_load); else window.addEventListener(\'load\', async_load, false);})();\r\n// ]]></script>\r\n\r\n</div>','About','','inherit','open','open','','1049-revision-v1','','','2013-12-06 12:24:10','2013-12-06 18:24:10','',1049,'http://www.earthhertzrecords.com/2013/12/1049-revision-v1/',0,'revision','',0),(1382,1,'2013-12-06 12:24:17','2013-12-06 18:24:17','Hello, My Name is Robert Xeno\r\n\r\nI am Founder and CEO of Earth Hertz Records, StreamBeam.US, and Stream Share Musicians Cooperative.\r\n\r\nI have been in the music business for the last 35 years and have watched with great concern as the major label format has systematically raped, pillaged, and destroyed artists, music in general, and the entire industry as a whole.\r\n\r\nWell, we put our heads together here at Earth Hertz and we believe we have come up with a solution.\r\n\r\nWe are a record label with its own recording studio and production team. This allows us to keep our costs down while affording artists the freedom to take their time and express their art. One of our pet peeves about the record industry is the idea of making artists pay for what they do. It is art, and artists should be free to create. As such, we never charge nor bill the artist for any of the services required to complete their project. Revolutionary.\r\n\r\nWe feel that if we believe in an artist like they do, then they should not be held accountable for un-recouped costs associated with a project. We are down on the line with the artist and all billing is recouped through the project. If the project makes no money, the artist never owes the company for reimbursement. We insist it is time for a change.\r\n\r\nAlso, we have our own media streaming platform, StreamBeam.US. Here, we will stream our artists’ music at the highest resolutions possible. We have been testing from MP3 standards up to 192k wav streams and beyond.\r\n\r\nThe real deal maker here, as if this already wasn’t enough, is our newest venture, Stream Share Musician’s Cooperative. You see, there is a giant green elephant sitting in the corner of the room but no one in the industry is addressing it. They keep the focus on the .0008 cents per stream and below, tied to artists; royalties and copyright/publishing. It’s all smoke and mirrors, folks.\r\n\r\nJust one example, a certain large internet radio has already taken in over $500+ million dollars this year, and there is still another quarter to go. We will use the cooperative to share in the ad revenue we generate with the artists. As I said, it’s time for a change.\r\n\r\nBeyond the ideas and the technology, we also have the smarts and the ability to get it all done. We signed 6 artists on our recent launch. All six artists were accepted in the 1<sup>st</sup> round balloting for the 56<sup>th</sup> Grammy® Awards process. In all, we have 12 entries in the running.\r\n\r\nThis next year is clearly going to be one of incredible change in the industry. I believe I have the team and the artists in place to create a new future for the music industry; one where creativity is valued and fairness is the rule.\r\n\r\nEarth Hertz.\r\nYou better believe it.\r\n\r\nRobert Xeno 2013\r\n[yop_poll id=\"2\" tr_id=\"0000001\"]\r\n\r\n \r\n<div id=\"coolsocialb\">\r\n<div id=\"coolsociald\"><a href=\"http://www.coolsocial.net\">coolsocial.net</a> <a href=\"http://www.coolsocial.net/sites/www/earthhertzrecords.com.html\">earthhertzrecords.com</a></div>\r\n<script id=\"coolsocials\" type=\"text/javascript\">// < ![CDATA[\r\n// < ![CDATA[\r\n(function() {function async_load(){var s = document.createElement(\'script\'); s.type = \'text/javascript\'; s.async = true;s.src = \'http://www.coolsocial.net/get_snippet.aspx?url=earthhertzrecords.com\';var x = document.getElementById(\'coolsocials\'); x.parentNode.insertBefore(s, x); }document.getElementById(\'coolsociald\').innerHTML = \'\';if (window.attachEvent) window.attachEvent(\'onload\', async_load); else window.addEventListener(\'load\', async_load, false);})();\r\n// ]]></script>\r\n\r\n</div>','About','','inherit','open','open','','1049-revision-v1','','','2013-12-06 12:24:17','2013-12-06 18:24:17','',1049,'http://www.earthhertzrecords.com/2013/12/1049-revision-v1/',0,'revision','',0),(1383,2,'2013-12-07 07:51:39','2013-12-07 13:51:39','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Billy David Millican of <a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\">The Billy David Band</a> recently answered a few questions from RiffRaf Magazine. Check it out as David talks about his influences, writing, and passion for the honey bee.\r\n\r\nRead the interview here: <a href=\"http://www.riffraf.net/2013/12/indie-spotlight-billy-david-band-3/\">Indie Spotlight: The Billy David Band</a>','The Billy David Band Interview on RiffRaf','','publish','open','open','','the-billy-david-band-interview-on-riffraf','','','2013-12-07 07:51:39','2013-12-07 13:51:39','',0,'http://www.earthhertzrecords.com/?p=1383',0,'post','',0),(1384,2,'2013-12-07 07:47:16','2013-12-07 13:47:16','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Billy David Millican of <a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\">The Billy David Band</a> recently answered a few questions from RiffRaf Magazine. Check it out and find about about David\'s influences, writing and his passion for the honey bee.\r\n\r\nRead the interview here: <a href=\"http://www.riffraf.net/2013/12/indie-spotlight-billy-david-band-3/\">Indie Spotlight: The Billy David Band</a>','The Billy David Band Interview','','inherit','open','open','','1383-revision-v1','','','2013-12-07 07:47:16','2013-12-07 13:47:16','',1383,'http://www.earthhertzrecords.com/2013/12/1383-revision-v1/',0,'revision','',0),(1385,2,'2013-12-07 07:48:59','2013-12-07 13:48:59','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Billy David Millican of <a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\">The Billy David Band</a> recently answered a few questions from RiffRaf Magazine. Check it out and find about about David\'s influences, writing and his passion for the honey bee.\r\n\r\nRead the interview here: <a href=\"http://www.riffraf.net/2013/12/indie-spotlight-billy-david-band-3/\">Indie Spotlight: The Billy David Band</a>','The Billy David Band Interview on RiffRaf','','inherit','open','open','','1383-revision-v1','','','2013-12-07 07:48:59','2013-12-07 13:48:59','',1383,'http://www.earthhertzrecords.com/2013/12/1383-revision-v1/',0,'revision','',0),(1386,2,'2013-12-07 07:50:38','2013-12-07 13:50:38','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Billy David Millican of <a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\">The Billy David Band</a> recently answered a few questions from RiffRaf Magazine. Check it out as Billy David Millican talks about his influences, writing and passion for the honey bee.\r\n\r\nRead the interview here: <a href=\"http://www.riffraf.net/2013/12/indie-spotlight-billy-david-band-3/\">Indie Spotlight: The Billy David Band</a>','The Billy David Band Interview on RiffRaf','','inherit','open','open','','1383-revision-v1','','','2013-12-07 07:50:38','2013-12-07 13:50:38','',1383,'http://www.earthhertzrecords.com/2013/12/1383-revision-v1/',0,'revision','',0),(1387,2,'2013-12-07 07:51:39','2013-12-07 13:51:39','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Billy David Millican of <a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\">The Billy David Band</a> recently answered a few questions from RiffRaf Magazine. Check it out as David talks about his influences, writing, and passion for the honey bee.\r\n\r\nRead the interview here: <a href=\"http://www.riffraf.net/2013/12/indie-spotlight-billy-david-band-3/\">Indie Spotlight: The Billy David Band</a>','The Billy David Band Interview on RiffRaf','','inherit','open','open','','1383-revision-v1','','','2013-12-07 07:51:39','2013-12-07 13:51:39','',1383,'http://www.earthhertzrecords.com/2013/12/1383-revision-v1/',0,'revision','',0),(1388,2,'2013-12-08 08:27:21','2013-12-08 14:27:21','<p style=\"text-align: center;\"><em>\"He\'s a doctor, wife\'s a lawyer, got two kids, drives a range Rover.\" - Applegate Nance \"Wasting My Time.\"</em></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignleft size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>They want their music to make you smile, cry, sing and dance. And, it will.\r\n\r\nEarth Hertz artists <a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\">Mike Applegate and Kyle Nance</a> recently talked with RiffRaf Magazine about their influences, writing and their view of themselves and their music.\r\n\r\nCheck out the interview in RiffRaf: <a href=\"http://www.riffraf.net/2013/12/indie-spotlight-applegate-nance-3/\">Indie Spotlight: Applegate Nance</a>','The Applegate Nance Interview on RiffRaf','','publish','open','open','','the-applegate-nance-interview-on-riffraf','','','2013-12-08 08:27:21','2013-12-08 14:27:21','',0,'http://www.earthhertzrecords.com/?p=1388',0,'post','',0),(1389,2,'2013-12-08 08:25:04','2013-12-08 14:25:04','<p style=\"text-align: center;\"><em>\"He\'s a doctor, wife\'s a lawyer, got two kids, drives a range Rover.\" - Applegate Nance \"Wasting My Time.\"</em></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignleft size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>They want their music to make you smile, cry, sing and dance. And, it will.\r\n\r\nEarth Hertz artists <a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\">Mike Applegate and Kyle Nance</a> recently talked with RiffRaf Magazine about their influences, writing and their view of themselves and their music.\r\n\r\nCheck out their interview in RiffRaf here: <a href=\"http://www.riffraf.net/2013/12/indie-spotlight-applegate-nance-3/\">Indie Spotlight: Applegate Nance</a>','The Applegate Nance Interview on RiffRaf','','inherit','open','open','','1388-revision-v1','','','2013-12-08 08:25:04','2013-12-08 14:25:04','',1388,'http://www.earthhertzrecords.com/2013/12/1388-revision-v1/',0,'revision','',0),(1390,2,'2013-12-08 08:26:25','2013-12-08 14:26:25','<p style=\"text-align: center;\"><em>\"He\'s a doctor, wife\'s a lawyer, got two kids, drives a range Rover.\" - Applegate Nance \"Wasting My Time.\"</em></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignleft size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>They want their music to make you smile, cry, sing and dance. And, it will.\r\n\r\nEarth Hertz artists <a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\">Mike Applegate and Kyle Nance</a> recently talked with RiffRaf Magazine about their influences, writing and their view of themselves and their music.\r\n\r\nCheck out the interview in RiffRaf: <a href=\"http://www.riffraf.net/2013/12/indie-spotlight-applegate-nance-3/\">Indie Spotlight: Applegate Nance</a>','The Applegate Nance Interview on RiffRaf','','inherit','open','open','','1388-revision-v1','','','2013-12-08 08:26:25','2013-12-08 14:26:25','',1388,'http://www.earthhertzrecords.com/2013/12/1388-revision-v1/',0,'revision','',0),(1391,1,'2013-12-08 16:23:53','2013-12-08 22:23:53','<a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\"><img class=\" wp-image-173 alignleft\" title=\"Applegate Nance\" alt=\"Applegate Nance\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/AlbumCoverFinal-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\" rel=\"attachment wp-att-151\"><img class=\" wp-image-151 alignleft\" alt=\"Glen Spreen Dreams, new album and videos.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/glenSpreen_Dreams_Front_001AA-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/hannah-mae-2/\" rel=\"attachment wp-att-145\"><img class=\" wp-image-145 alignleft\" alt=\"Hannah Mae new video and single.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/217897_10151273041892521_836830802_n-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/755-2/\" rel=\"attachment wp-att-140\"><img class=\" wp-image-140 alignleft\" title=\"Joshua Ayers WASTE\" alt=\"Joshua Ayers newest single and video.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/WasteCover750-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/the-meredythe-the-recycle-kids/\" rel=\"attachment wp-att-150\"><img class=\" wp-image-150 alignleft\" alt=\"Meredythe & The Recycle! Kids\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/template_001aTeml-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/radartower/\" rel=\"attachment wp-att-149\"><img class=\" wp-image-149 alignleft\" alt=\"radarTower new album, single and videos.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/Mathias_RadarTowerAlbumCoverFinal-150x150.jpg\" /></a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/the-elly-maze/\" rel=\"attachment wp-att-162\"><img class=\" wp-image-162 alignleft\" alt=\"Near South\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/TheEllyMaze_NearSouth_Front_001b_600x600-150x150.jpg\" /></a>\r\n\r\n\r\n<a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\" rel=\"attachment wp-att-148\"><img class=\" wp-image-148 alignleft\" title=\"The Billy David Band MAGIC\" alt=\"The Billy David Band new single, album and videos.\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/TBDBAlbumCover-150x150.jpg\" /></a>\r\n','ARTISTS','','inherit','open','open','','19-revision-v1','','','2013-12-08 16:23:53','2013-12-08 22:23:53','',19,'http://www.earthhertzrecords.com/2013/12/19-revision-v1/',0,'revision','',0),(1394,1,'2013-12-08 16:40:20','2013-12-08 22:40:20','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Alabama, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n ','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-12-08 16:40:20','2013-12-08 22:40:20','',248,'http://www.earthhertzrecords.com/2013/12/248-revision-v1/',0,'revision','',0),(1392,1,'2013-12-08 16:38:56','2013-12-08 22:38:56','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Alabama, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\n \r\n \r\n\r\n \r\n\r\n<strong>Magic\r\n<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\n</strong>\r\n<!-----\r\nMP3s\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\n1. In My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\n2. Bounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\n3. Movin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\n4. My Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\n5. Waiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\n6. Too Many\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\n7. A Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\n8. Memphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\n9. Little Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\n10. I\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\n11. Magic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\n12. Knew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\n13. Maui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\n14. My Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\n15. Bounce Up And Down (Instrumental)\r\n\r\nVIDEOS\r\n<iframe src=\"//www.youtube.com/embed/YPfwQveHFNk\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\">\r\n1. Magic\r\n<iframe src=\"//www.youtube.com/embed/i91x1hqkgas\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n2. A Loving Revolution\r\n----->','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-12-08 16:38:56','2013-12-08 22:38:56','',248,'http://www.earthhertzrecords.com/2013/12/248-revision-v1/',0,'revision','',0),(1393,1,'2013-12-08 16:39:27','2013-12-08 22:39:27','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Alabama, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\n \r\n \r\n\r\n \r\n\r\n<strong>Magic\r\n<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\n</strong>\r\n\r\nMP3s\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100048-InMyArms441-16.mp3\r\n1. In My Arms\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100049-BounceUpandDown441-16.mp3\r\n2. Bounce Up And Down\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100050-MovinGroovin441-16.mp3\r\n3. Movin Groovin\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100051-MyOnlyWay441-16.mp3\r\n4. My Only Way\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100052-WaitingForYou441-16.mp3\r\n5. Waiting For You\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100053-TooMany441-16.mp3\r\n6. Too Many\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100054-ALovingRevolution441-16.mp3\r\n7. A Loving Revolution\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100055-Memphis441-16.mp3\r\n8. Memphis\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100056-LittleSuzie441-16.mp3\r\n9. Little Suzie\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100057-ImWinning441-16.mp3\r\n10. I\'m Winning\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100047-Magic441-16.mp3\r\n11. Magic\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100025-KnewHer441-16.mp3\r\n12. Knew Her\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100026-Maui441-16.mp3\r\n13. Maui\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100027-MyOnlyWayINST441-16.mp3\r\n14. My Only Way (Instrumental)\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499249-QMU991100028-BounceUpandDown-Inst441-16.mp3\r\n15. Bounce Up And Down (Instrumental)\r\n\r\nVIDEOS\r\n<iframe src=\"//www.youtube.com/embed/YPfwQveHFNk\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\">\r\n1. Magic\r\n</iframe><iframe src=\"//www.youtube.com/embed/i91x1hqkgas\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n2. A Loving Revolution\r\n','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2013-12-08 16:39:27','2013-12-08 22:39:27','',248,'http://www.earthhertzrecords.com/2013/12/248-revision-v1/',0,'revision','',0),(1399,2,'2013-12-10 08:17:09','2013-12-10 14:17:09','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey2.jpg\"><img class=\"alignright size-medium wp-image-1401\" alt=\"margorey2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey2-207x300.jpg\" width=\"207\" height=\"300\" /></a>Vocalist <a href=\"http://margorey.com/\">Margo Rey\'s</a> Christmas classic, \"This Holiday Night\" has become a staple of December. A vision of the holidays as seen through the eyes of a child, the beautiful song conjures up warm images of family tradition and memories of years gone by.\r\n\r\nRey describes her style of music as \'Organica\'; a unique blend of musical texture and groove, but it\'s the infectiousness of her voice that really makes you stand up and take notice. Her album <em>Habit,</em> remained on the charts for an astonishing 21 weeks and contained the singles “Let the Rain” and “Saturn Returns”, both co-written with the legendary John Oates.\r\n\r\nHer latest single, a cover of the Squeeze song \"Tempted\" adds her distinctive vibe to the classic 80\'s hit.\r\n\r\nIn addition to her amazing vocal prowess and songwriting skills, Rey\'s personal mission really makes her a true inspiration. A cancer warrior, Rey volunteers her time and talent to Brides Against Breast Cancer, an organization that contributes to programs for cancer patients and their families while raising funds in a rather cool and unique way.\r\n\r\nA recent bride herself, Rey is married to comedian Ron White. While presenting an interesting dynamic, their relationship is a communion of two artists in awe of each others craft, while not being in competition with each other. <em>\r\n</em>\r\n\r\nI spoke with Rey about her passion, her music and her cause.\r\n\r\n<strong>James Wood: You consider your style of music \'Organica\'. How would you describe it?</strong>\r\n\r\nMargo Rey: It\'s an unorthodox hybrid of adult pop music that\'s deeply rooted in jazz and R&B grooves with a lot of ambient vocals and texture. I like my vocals to be lush and for them to be an instrument as well.\r\n\r\n<strong>Tell me the origin of your song \"This Holiday Night\".</strong>\r\n\r\nI really wanted to write a song that sounded like a Christmas classic. A song about the way a child experiences all the goings on in a house around the holidays. I had this idea that it was going to be a waltz and I wanted every line to end with \"this holiday night\". I started out writing the melody, chords and most of the lyrics and then called up my friend Barrett Yeretsian, who had been working on songs for my <em>Habit</em> album. The two of us started kicking around images of what the holidays were like when we were growing up. We put the pieces together and that\'s how it happened.\r\n\r\n<strong>Let\'s discuss a few tracks that you wrote with John Oates from the <em>Habit</em> album.\r\n</strong>\r\n\r\n<strong>\"Let The Rain\"</strong>\r\n\r\nJohn and I actually wrote \"Let The Rain\" the day that we first met. He had written some chords based on some of my music and when I heard it, I remember saying, \"I think I have something for that.\" It was a melody and lyrics that I had written around the time Ron and I were getting engaged. I had a lot of verses, but wasn\'t quite sure what to make the chorus about. That\'s when I told John about how I used to love playing in the rain with my Mom in the summers in Texas, and he told me to write the song about that. So we came up with the melody for the chorus together and from there it took on a life of its own.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-1.jpg\"><img class=\"aligncenter size-full wp-image-1402\" alt=\"margorey-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-1.jpg\" width=\"480\" height=\"360\" /></a>\r\n\r\n<strong>\"Saturn Returns\"</strong>\r\n\r\nI had just been diagnosed with cancer four days before our writing session and the doctors were trying to get me to stay to get an MRI. I said, \"No way, man! I\'m going to write a song with John Oates\" [laughs]. I remember telling that story to John and his eyes got really big and he was worried. I said \"No! No! I\'m going to be fine. This is a cancer free zone!\" I showed him a chorus that I had been working on and he thought it was fantastic, but he told me that it has to be my story. So I went back to my condo that night, wrote the rest of the lyrics and we put it all together the next day.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-3.jpg\"><img class=\"alignleft size-thumbnail wp-image-1403\" alt=\"margorey-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-3-150x150.jpg\" width=\"150\" height=\"150\" /></a>Tell me a little about your most recent single, \"Tempted\".</strong>\r\n\r\nI\'ve always loved the band Squeeze and that song always made me happy whenever I sang it. So when my radio team approached me about releasing a cover song, I told them that I wanted to do \"Tempted\", but with an R&B groove.\r\n\r\n<strong>Did you always want to be a singer?</strong>\r\n\r\nWhen I was young, I used to always sing in the grocery cart whenever I was at the store with my mom. I would always sing a lot of crooner songs by Nat King Cole, Engelbert Humperdinck or Hank Williams. Then one day when I was 4, I was at my brother\'s school play when this girl who was supposed to sing \"Oh Jolly Playmate\" started crying because she had suddenly developed stage fright. I remember going up to the school principal and telling him that I could sing, and that I knew all the words. So he let me go out and sing in front of 300 people.\r\n\r\nA lot of things crystallized for me in that moment. It was the first time that I had ever sang with a mic and saw my shadow in the spotlight behind me. I knew right then that it was something that I wanted to do and so a few years later, I started classical training.\r\n\r\n<strong>Let\'s discuss your involvement with <a href=\"http://www.bridesagainstbreastcancer.org/\">Brides Against Breast Cancer</a>.</strong>\r\n\r\nI volunteer a lot my time towards this cause and this past May, they selected me as a National Ambassador. The money they raise goes to providing free programs and services to people living with cancer. Programs people need where the doctor kind of leaves off; like wellness, nutrition and counseling. They even provide these services for family members too.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-4.jpg\"><img class=\"alignleft size-thumbnail wp-image-1404\" alt=\"margorey-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-4-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nThe really cool thing is how they raise money; by having brides and gown designers donate their wedding gowns. Some of the gowns that are donated by designers are unused, while others may have only been used one time. Then they\'ll take the gowns that are donated on a \"Nationwide Tour of Gowns\" that travels to roughly 120 cities a year, selling them at a discounted price. I travel to some of the events to tell my story and to inform people about how important it is to provide these services. What better way is there to give that dress that made you so happy a life of its own than to make someone else happy and also provide programs and services to people who need them? It\'s a win-win.\r\n\r\n<strong>What\'s next for you?</strong>\r\n\r\nI\'m putting together an arsenal of songs to release in the coming year. A ballad called<strong> </strong>\"Colors Never Fade\" that\'s about standing up to what it is that scares you and never fading or getting washed out in a sea of gray. \"Beautiful Train Wreck\" is a song that has a cool, funky groove. It\'s about how we\'re all beautiful even when we\'re in the midst of being a train wreck. We\'re all trying to find our way. Then there\'s \"Happy\", which is another song that I wrote with John [Oates]. It\'s about the simplicity of just being happy and how it\'s never too late to be kind.\r\n\r\n<a href=\"http://www.bridesagainstbreastcancer.org/\" target=\"_blank\">I</a>nterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Inspirational People: Vocalist Margo Rey Discusses Music, Mission','','publish','open','open','','inspirational-people-vocalist-margo-rey-discusses-music-mission','','','2013-12-10 08:17:09','2013-12-10 14:17:09','',0,'http://www.earthhertzrecords.com/?p=1399',0,'post','',0),(1400,2,'2013-12-08 18:03:23','2013-12-09 00:03:23','Vocalist Margo Rey\'s Christmas classic, \"This Holiday Night\" has become a staple of December. A vision of the holidays as seen through the eyes of a child, the beautiful song conjures up warm images of family tradition and memories of years gone by.\r\n\r\nRey describes her style of music as \'Organica\'; a unique blend of musical texture and groove, but it\'s the infectiousness of her voice that really makes you stand up and take notice. Her album, \"Habit\" remained on the charts for an astonishing 21 weeks and contained the singles “Let the Rain” and “Saturn Returns”, both co-written with the legendary John Oates.\r\n\r\nHer latest single, a cover of the Squeeze song \"Tempted\" adds her distinctive vibe to the classic 80\'s hit.\r\n\r\nIn addition to her amazing vocal prowess and songwriting skills, Rey\'s personal mission really makes her a true inspiration. A cancer warrior, Rey volunteers her time and talent to Brides Against Breast Cancer, an organization that contributes to programs for cancer patients and their families while raising funds in a rather cool and unique way.\r\n\r\nA recent bride herself, Rey is married to comedian Ron White. While presenting an interesting dynamic, their relationship is a communion of two artists in awe of each others craft, while not being in competition with each other. <em>\r\n</em>\r\n\r\nI spoke with Rey about her passion, her music and her cause.\r\n\r\n<strong>James Wood: You consider your style of music \'Organica\'. How would you describe it?</strong>\r\n\r\nMargo Rey: It\'s an unorthodox hybrid of adult pop music that\'s deeply rooted in jazz and R&B grooves with a lot of ambient vocals and texture. I like my vocals to be lush and for them to be an instrument as well.\r\n\r\n<strong>Tell me the origin of your song \"This Holiday Night\".</strong>\r\n\r\nI really wanted to write a song that sounded like a Christmas classic. A song about the way a child experiences all the goings on in a house around the holidays. I had this idea that it was going to be a waltz and I wanted every line to end with \"this holiday night\". I started out writing the melody, chords and most of the lyrics and then called up my friend Barrett Yeretsian, who had been working on songs for my \"Habit\" album. The two of us started kicking around images of what the holidays were like when we were growing up. We put the pieces together and that\'s how it happened.\r\n\r\n<strong>Let\'s discuss a few tracks that you wrote with John Oates from the <em>Habit</em> album.\r\n</strong>\r\n\r\n<strong>\"Let The Rain\"</strong>\r\n\r\nJohn and I actually wrote \"Let The Rain\" the day that we first met. He had written some chords based on some of my music and when I heard it, I remember saying, \"I think I have something for that.\" It was a melody and lyrics that I had written around the time Ron and I were getting engaged. I had a lot of verses, but wasn\'t quite sure what to make the chorus about. That\'s when I told John about how I used to love playing in the rain with my Mom in the summer\'s in Texas and he told me to write the song about that. So we came up with the melody for the chorus together and from there it took on a life of its own.\r\n\r\n<strong>\"Saturn Returns\"</strong>\r\n\r\nI had just been diagnosed with cancer four days before our writing session and the doctors were trying to get me to stay to get an MRI. I said, \"No way, man! I\'m going to write a song with John Oates\" [laughs]. I remember telling that story to John and his eyes got really big and he was worried. I said \"No! No! I\'m going to be fine. This is a cancer free zone!\" I showed him a chorus that I had been working on and he thought it was fantastic, but he told me that it has to be my story. So I went back to my condo that night, wrote the rest of the lyrics and we put it all together the next day.\r\n\r\n<strong>Tell me a little about your most recent single, \"Tempted\".</strong>\r\n\r\nI\'ve always loved the band Squeeze and that song always made me happy whenever I sang it. So when my radio team approached me about releasing a cover song, I told them that I wanted to do \"Tempted\", but with an R&B groove.\r\n\r\n<strong>Did you always want to be a singer?</strong>\r\n\r\nWhen I was young, I used to always sing in the grocery cart whenever I was at the store with my mom. I would always sing a lot of crooner songs by Nat King Cole, Engelbert Humperdinck or Hank Williams. Then one day when I was 4, I was at my brother\'s school play when this girl who was supposed to sing \"Oh Jolly Playmate\" started crying because she had suddenly developed stage fright. I remember going up to the school principal and telling him that I could sing, and that I knew all the words. So he let me go out and sing in front of 300 people.\r\n\r\nA lot of things crystallized for me in that moment. It was the first time that I had ever sang with a mic and saw my shadow in the spotlight behind me. I knew right then that it was something that I wanted to do and so a few years later, I started classical training.\r\n\r\n<strong>Let\'s discuss your involvement with Brides Against Breast Cancer.</strong>\r\n\r\nI volunteer a lot my time towards this cause and this past May, they selected me as a National Ambassador. The money they raise goes to providing free programs and services to people living with cancer. Programs people need where the doctor kind of leaves off; like wellness, nutrition and counseling. They even provide these services for family members too.\r\n\r\n ','','','inherit','open','open','','1399-revision-v1','','','2013-12-08 18:03:23','2013-12-09 00:03:23','',1399,'http://www.earthhertzrecords.com/2013/12/1399-revision-v1/',0,'revision','',0),(1401,2,'2013-12-08 19:04:03','2013-12-09 01:04:03','','margorey2','','inherit','open','open','','margorey2','','','2013-12-08 19:04:03','2013-12-09 01:04:03','',1399,'http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey2.jpg',0,'attachment','image/jpeg',0),(1402,2,'2013-12-08 19:05:43','2013-12-09 01:05:43','','margorey-1','','inherit','open','open','','margorey-1','','','2013-12-08 19:05:43','2013-12-09 01:05:43','',1399,'http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-1.jpg',0,'attachment','image/jpeg',0),(1403,2,'2013-12-08 19:08:28','2013-12-09 01:08:28','','margorey-3','','inherit','open','open','','margorey-3','','','2013-12-08 19:08:28','2013-12-09 01:08:28','',1399,'http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-3.jpg',0,'attachment','image/jpeg',0),(1404,2,'2013-12-08 19:10:04','2013-12-09 01:10:04','','margorey-4','','inherit','open','open','','margorey-4','','','2013-12-08 19:10:04','2013-12-09 01:10:04','',1399,'http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-4.jpg',0,'attachment','image/jpeg',0),(1405,2,'2013-12-08 19:19:44','2013-12-09 01:19:44','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey2.jpg\"><img class=\"alignright size-medium wp-image-1401\" alt=\"margorey2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey2-207x300.jpg\" width=\"207\" height=\"300\" /></a>Vocalist <a href=\"http://margorey.com/\">Margo Rey\'s</a> Christmas classic, \"This Holiday Night\" has become a staple of December. A vision of the holidays as seen through the eyes of a child, the beautiful song conjures up warm images of family tradition and memories of years gone by.\r\n\r\nRey describes her style of music as \'Organica\'; a unique blend of musical texture and groove, but it\'s the infectiousness of her voice that really makes you stand up and take notice. Her album <em>Habit,</em> remained on the charts for an astonishing 21 weeks and contained the singles “Let the Rain” and “Saturn Returns”, both co-written with the legendary John Oates.\r\n\r\nHer latest single, a cover of the Squeeze song \"Tempted\" adds her distinctive vibe to the classic 80\'s hit.\r\n\r\nIn addition to her amazing vocal prowess and songwriting skills, Rey\'s personal mission really makes her a true inspiration. A cancer warrior, Rey volunteers her time and talent to Brides Against Breast Cancer, an organization that contributes to programs for cancer patients and their families while raising funds in a rather cool and unique way.\r\n\r\nA recent bride herself, Rey is married to comedian Ron White. While presenting an interesting dynamic, their relationship is a communion of two artists in awe of each others craft, while not being in competition with each other. <em>\r\n</em>\r\n\r\nI spoke with Rey about her passion, her music and her cause.\r\n\r\n<strong>James Wood: You consider your style of music \'Organica\'. How would you describe it?</strong>\r\n\r\nMargo Rey: It\'s an unorthodox hybrid of adult pop music that\'s deeply rooted in jazz and R&B grooves with a lot of ambient vocals and texture. I like my vocals to be lush and for them to be an instrument as well.\r\n\r\n<strong>Tell me the origin of your song \"This Holiday Night\".</strong>\r\n\r\nI really wanted to write a song that sounded like a Christmas classic. A song about the way a child experiences all the goings on in a house around the holidays. I had this idea that it was going to be a waltz and I wanted every line to end with \"this holiday night\". I started out writing the melody, chords and most of the lyrics and then called up my friend Barrett Yeretsian, who had been working on songs for my <em>Habit</em> album. The two of us started kicking around images of what the holidays were like when we were growing up. We put the pieces together and that\'s how it happened.\r\n\r\n<strong>Let\'s discuss a few tracks that you wrote with John Oates from the <em>Habit</em> album.\r\n</strong>\r\n\r\n<strong>\"Let The Rain\"</strong>\r\n\r\nJohn and I actually wrote \"Let The Rain\" the day that we first met. He had written some chords based on some of my music and when I heard it, I remember saying, \"I think I have something for that.\" It was a melody and lyrics that I had written around the time Ron and I were getting engaged. I had a lot of verses, but wasn\'t quite sure what to make the chorus about. That\'s when I told John about how I used to love playing in the rain with my Mom in the summers in Texas, and he told me to write the song about that. So we came up with the melody for the chorus together and from there it took on a life of its own.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-1.jpg\"><img class=\"aligncenter size-full wp-image-1402\" alt=\"margorey-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-1.jpg\" width=\"480\" height=\"360\" /></a>\r\n\r\n<strong>\"Saturn Returns\"</strong>\r\n\r\nI had just been diagnosed with cancer four days before our writing session and the doctors were trying to get me to stay to get an MRI. I said, \"No way, man! I\'m going to write a song with John Oates\" [laughs]. I remember telling that story to John and his eyes got really big and he was worried. I said \"No! No! I\'m going to be fine. This is a cancer free zone!\" I showed him a chorus that I had been working on and he thought it was fantastic, but he told me that it has to be my story. So I went back to my condo that night, wrote the rest of the lyrics and we put it all together the next day.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-3.jpg\"><img class=\"alignleft size-thumbnail wp-image-1403\" alt=\"margorey-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-3-150x150.jpg\" width=\"150\" height=\"150\" /></a>Tell me a little about your most recent single, \"Tempted\".</strong>\r\n\r\nI\'ve always loved the band Squeeze and that song always made me happy whenever I sang it. So when my radio team approached me about releasing a cover song, I told them that I wanted to do \"Tempted\", but with an R&B groove.\r\n\r\n<strong>Did you always want to be a singer?</strong>\r\n\r\nWhen I was young, I used to always sing in the grocery cart whenever I was at the store with my mom. I would always sing a lot of crooner songs by Nat King Cole, Engelbert Humperdinck or Hank Williams. Then one day when I was 4, I was at my brother\'s school play when this girl who was supposed to sing \"Oh Jolly Playmate\" started crying because she had suddenly developed stage fright. I remember going up to the school principal and telling him that I could sing, and that I knew all the words. So he let me go out and sing in front of 300 people.\r\n\r\nA lot of things crystallized for me in that moment. It was the first time that I had ever sang with a mic and saw my shadow in the spotlight behind me. I knew right then that it was something that I wanted to do and so a few years later, I started classical training.\r\n\r\n<strong>Let\'s discuss your involvement with <a href=\"http://www.bridesagainstbreastcancer.org/\">Brides Against Breast Cancer</a>.</strong>\r\n\r\nI volunteer a lot my time towards this cause and this past May, they selected me as a National Ambassador. The money they raise goes to providing free programs and services to people living with cancer. Programs people need where the doctor kind of leaves off; like wellness, nutrition and counseling. They even provide these services for family members too.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-4.jpg\"><img class=\"alignleft size-thumbnail wp-image-1404\" alt=\"margorey-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/margorey-4-150x150.jpg\" width=\"150\" height=\"150\" /></a>\r\n\r\nThe really cool thing is how they raise money; by having brides and gown designers donate their wedding gowns. Some of the gowns that are donated by designers are unused, while others may have only been used one time. Then they\'ll take the gowns that are donated on a \"Nationwide Tour of Gowns\" that travels to roughly 120 cities a year, selling them at a discounted price. I travel to some of the events to tell my story and to inform people about how important it is to provide these services. What better way is there to give that dress that made you so happy a life of its own than to make someone else happy and also provide programs and services to people who need them? It\'s a win-win.\r\n\r\n<strong>What\'s next for you?</strong>\r\n\r\nI\'m putting together an arsenal of songs to release in the coming year. A ballad called<strong> </strong>\"Colors Never Fade\" that\'s about standing up to what it is that scares you and never fading or getting washed out in a sea of gray. \"Beautiful Train Wreck\" is a song that has a cool, funky groove. It\'s about how we\'re all beautiful even when we\'re in the midst of being a train wreck. We\'re all trying to find our way. Then there\'s \"Happy\", which is another song that I wrote with John [Oates]. It\'s about the simplicity of just being happy and how it\'s never too late to be kind.\r\n\r\n<a href=\"http://www.bridesagainstbreastcancer.org/\" target=\"_blank\">I</a>nterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Inspirational People: Vocalist Margo Rey Discusses Music, Mission','','inherit','open','open','','1399-revision-v1','','','2013-12-08 19:19:44','2013-12-09 01:19:44','',1399,'http://www.earthhertzrecords.com/2013/12/1399-revision-v1/',0,'revision','',0),(1408,1,'2013-12-10 14:07:49','2013-12-10 20:07:49','<strong>Director of Merchandising</strong>','About: Tony -The MerchGuy- Longval','','publish','open','open','','about-tony-the-merchguy-longval','','','2014-04-16 18:46:08','2014-04-17 00:46:08','',0,'http://www.earthhertzrecords.com/?p=1408',66,'post','',0),(1409,1,'2013-12-10 14:07:49','2013-12-10 20:07:49','Director of Mwerchandising','About: Tony -The MerchGuy- Longval','','inherit','open','open','','1408-revision-v1','','','2013-12-10 14:07:49','2013-12-10 20:07:49','',1408,'http://www.earthhertzrecords.com/2013/12/1408-revision-v1/',0,'revision','',0),(1410,1,'2013-12-10 14:08:31','2013-12-10 20:08:31','<strong>Director of Merhcandising</strong>','About: Tony -The MerchGuy- Longval','','inherit','open','open','','1408-revision-v1','','','2013-12-10 14:08:31','2013-12-10 20:08:31','',1408,'http://www.earthhertzrecords.com/2013/12/1408-revision-v1/',0,'revision','',0),(1411,1,'2013-12-11 16:00:55','2013-12-11 22:00:55','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n</strong>\r\n\r\nMP3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk\r\n<strong>\r\n</strong>\r\n\r\n<strong>\r\nVideo\r\n</strong>\r\n\"Hey california\"\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/Ql8vvDGth7w\" frameborder=\"0\" allowfullscreen></iframe>','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-12-11 16:00:55','2013-12-11 22:00:55','',738,'http://www.earthhertzrecords.com/2013/12/738-revision-v1/',0,'revision','',0),(1412,1,'2013-12-11 16:01:46','2013-12-11 22:01:46','<p style=\"text-align: center;\"><strong>\"You\'ve got to wake up everyday, think that it\'s a new day and you\'ve got things to do, places to be, and you\'ve got a best friend there to lean on when times get tough.\"</strong></p>\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\"><img class=\"alignright size-full wp-image-394\" alt=\"apple-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-4.jpg\" width=\"178\" height=\"178\" /></a>Those words from Mike Applegate describe his friendship and working partnership with Kyle Nance; one based on trust, fun, and defined goals.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\"><img class=\"alignleft size-full wp-image-395\" alt=\"apple-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-3.jpg\" width=\"178\" height=\"178\" /></a>Applegate Nance</strong> began with two high school friends from Ohio sharing a mutual love of music, and possessing the intangible factor beyond talent, to make a musical alliance successful. Moving to Nashville after graduation, the duo learned the art of songwriting from Kyle\'s father, Country singer-songwriter Wil Nance, and other friends in the Nashville songwriting community. The results of that education have been noteworthy. They have created a sound blending laid back melodies with influences ranging from folk, reggae, and hip hop to alternative.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\"><img class=\"alignright size-full wp-image-393\" alt=\"apple-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/apple-1.jpg\" width=\"178\" height=\"178\" /></a>Lyrically, the songs of <strong>Applegate Nance</strong> feature well crafted verses fitting together effortlessly. Strong harmonies are a cornerstone of their sound, playing against each other\'s vocal strength. Listening to each song, there is an ease and comfort in their professional style. One, no doubt based on trust, fun, and defined goals.\r\n\r\nApplegate Nance.\r\n\r\n<strong>The Good, Bad, and The Sunny\r\n</strong>\r\n\r\nMP3\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100036-HeyCalifornia.mp3\r\n1. Hey California\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100037-HereIGoAgain.mp3\r\n2. Here I Go Again\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100038-WastingMyTime.mp3\r\n3. Wasting My Time\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100039-MeltingInTheSummerTime.mp3\r\n4. Melting In The Summertime\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100040-PrivateEyes.mp3\r\n5. Private Eyes\r\nhttps://s3.amazonaws.com/ehLaunchMP3/723175499232-QMU991100041-GirlTalk.mp3\r\n6. Girl Talk\r\n<strong>\r\n\r\nVideo\r\n</strong>\r\n\"Hey california\"\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/Ql8vvDGth7w\" frameborder=\"0\" allowfullscreen></iframe>','Applegate Nance','','inherit','open','open','','738-revision-v1','','','2013-12-11 16:01:46','2013-12-11 22:01:46','',738,'http://www.earthhertzrecords.com/2013/12/738-revision-v1/',0,'revision','',0),(1414,1,'2013-12-11 16:05:18','2013-12-11 22:05:18','[caption id=\"attachment_173\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/applegate-nance-hey-california/\"><img class=\" wp-image-173 \" alt=\"Applegate Nance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/1002907_10200864656471494_1994384480_n.jpg\" width=\"560\" height=\"327\" /></a> Applegate Nance - \"Hey California\"[/caption]\r\n\r\n[caption id=\"attachment_264\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/radartower/\" rel=\"attachment wp-att-264\"><img class=\"wp-image-264 \" title=\"radarTower\" alt=\"radarTower\" src=\"http://www.earthhertzrecords.com//wp-content/uploads/2013/09/radarTower_Need_001-300x190.jpg\" width=\"560\" height=\"327\" /></a> Matt Guertin\'s radarTower[/caption]\r\n\r\n[caption id=\"attachment_671\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/joshua-ayers\"><img class=\"wp-image-671 \" title=\"Joshua Ayers\" alt=\"Josh Ayers Waste\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/JoshAyers_Waste_0011.jpg\" width=\"560\" height=\"327\" /></a> Joshua Ayers[/caption]\r\n\r\n[caption id=\"attachment_690\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/hannah-mae/\"><img class=\"wp-image-690 \" title=\"Hannah Mae\" alt=\"Hannah Mae\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/HannahMae_Guns_0011.jpg\" width=\"560\" height=\"327\" /></a> Hannah Mae[/caption]\r\n\r\n[caption id=\"attachment_694\" align=\"alignnone\" width=\"560\"]<a href=\"http://www.earthhertzrecords.com/videos/glen-spreen/\"><img class=\"wp-image-694 \" title=\"Glen Spreen\" alt=\"Glen Spreen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/GlenSpreen_red_0011.jpg\" width=\"560\" height=\"327\" /></a> Glen Spreen[/caption]\r\n\r\n ','VIDEOS','','inherit','open','open','','35-revision-v1','','','2013-12-11 16:05:18','2013-12-11 22:05:18','',35,'http://www.earthhertzrecords.com/2013/12/35-revision-v1/',0,'revision','',0),(1415,1,'2013-12-13 13:06:58','2013-12-13 19:06:58','<strong>Chief Financial Officer, Director of Communications, Art Director</strong>\r\n\r\nHi Im Eloa Xeno','About: Eloa Xeno','','inherit','open','open','','1144-revision-v1','','','2013-12-13 13:06:58','2013-12-13 19:06:58','',1144,'http://www.earthhertzrecords.com/2013/12/1144-revision-v1/',0,'revision','',0),(1416,2,'2013-12-14 16:10:24','2013-12-14 22:10:24','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/beyonce-new-album.jpg\"><img class=\"alignleft size-medium wp-image-1417\" alt=\"beyonce-new-album\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/beyonce-new-album-300x300.jpg\" width=\"300\" height=\"300\" /></a>It was almost a Santa Claus moment. Right around midnight, the time we associate with the jolly, fat man, Beyonce released a new album. And no one knew it was coming. Really. In this day and age of hype, pre-hype, and hype til-you\'re-sick-of-hearing-about-it-hype, Beyonce just opened up her bag of gifts and dropped a big one down to her fans. They must have been either very naughty or very nice.\r\n\r\nI cannot even begin to explain how exciting I find all of this. Not the album, personally I couldn\'t care less when, where or if she ever releases another album. No, I find it absolutely fascinating that there were no leaks of its existence. Think about it, fourteen tracks and seventeen videos... seventeen videos, and not a peep about it, even though the videos were filmed on location all over the world.\r\n\r\n<a href=\"http://www.virtualpressoffice.com/RODAccess?did=1264248984781&pid=1438353&ct=C\">Beyonce has stated </a>that she was bored with the usual way of doing business and just wanted to connect with her fans. Maybe. Excuse me if I\'m a bit skeptical. Lack of pre-hype does not mean this new way of getting her music out there is not just another, more subtle form of PR. In the first three hours of it\'s release, her sales for the album were somewhere in the neighborhood of $1.3 million, and none of those dollars will be paying for a pre-release marketing campaign.\r\n\r\nThis album release excites me for another reason as well. Actually two. First, there is no single song purchasing. Ya gotta buy the whole album... just like the old days. Remember when artists had a vision and put together a cohesive set of tunes, it wasn\'t necessarily a concept album, just a compilation of songs that worked together, and the artist wanted them heard that way. The other reason this release is so interesting is it is only being sold through iTunes, at least for the moment.\r\n\r\nIt goes without saying, music PR people and other executives are watching this release carefully. Could this be the next big thing? Recording artists just surprising their fans rather than beating them down for six months as they are told when and where their favorite singer\'s new album will come out, all while being brainwashed into accepting that the new album will be incredibly good, even if it\'s a piece of crap. Probably not. But it is a small crack in the usual way the music business has been conducted as of late.\r\n\r\nNow if Santa could help with a few more changes in the music industry, I\'d leave him a whole box of cookies. And a six-pack.\r\n\r\n ','Beyonce\'s Midnight Surprise','','publish','open','open','','beyonces-midnight-surprise','','','2013-12-14 16:19:47','2013-12-14 22:19:47','',0,'http://www.earthhertzrecords.com/?p=1416',0,'post','',0),(1417,2,'2013-12-14 16:04:17','2013-12-14 22:04:17','','beyonce-new-album','','inherit','open','open','','beyonce-new-album','','','2013-12-14 16:04:17','2013-12-14 22:04:17','',1416,'http://www.earthhertzrecords.com/wp-content/uploads/2013/12/beyonce-new-album.jpg',0,'attachment','image/jpeg',0),(1418,2,'2013-12-14 16:06:09','2013-12-14 22:06:09','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/beyonce-new-album.jpg\"><img class=\"alignleft size-medium wp-image-1417\" alt=\"beyonce-new-album\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/beyonce-new-album-300x300.jpg\" width=\"300\" height=\"300\" /></a>It was almost a Santa Claus moment. Right around midnight, the time we associate with the jolly, fat man, Beyonce released a new album. And no one knew it was coming. Really. In this day and age of hype, pre-hype, and hype til-you\'re-sick-of-hearing-about-it-hype, Beyonce just opened up her bag of gifts and dropped a big one down to her fans. They must have been either very naughty or very nice.\r\n\r\nI cannot even begin to explain how exciting I find all of this. Not the album, personally I couldn\'t care less when, where or if she ever releases another album. No, I find it absolutely fascinating that there were no leaks to its existence. Think about it, fourteen tracks and seventeen videos... seventeen videos, and not a peep about it, even though the videos were filmed on location all over the world.\r\n\r\nBeyonce has stated that she was bored with the usual way of doing business and just wanted to connect with her fans. Maybe. Excuse me if I\'m a bit skeptical. Lack of pre-hype does not mean this new way of getting her music out there is not just another, more subtle form of PR. In the first three hours of it\'s release, she sold somewhere in the neighborhood of $1.3 million, and none of that will be paying for a pre-release marketing campaign.\r\n\r\nThis album release excites me for another reason as well. Actually two. First, there is no single song purchasing. Ya gotta buy the whole album... just like the old days. Remember when artists had a vision and put together a cohesive set of tunes, it wasn\'t necessarily a concept album, just a compilation of songs that worked together, and the artist wanted them heard that way. The other reason this release is so interesting is it is only being song through iTunes, at least for the moment.\r\n\r\nIt goes without saying, music PR people and other executives are watching this release carefully. Could this be the next big thing? Recording artists just surprising their fans rather than beating them down for six months as they are told when and where their favorite singer\'s new album will come out, all while being brainwashed into accepting that the new album will be incredibly good, even if it\'s a piece of crap. Probably not. But it is a small crack in the usual way the music business has been conducted as of late.\r\n\r\nNow if Santa could help with a few more changes in the music industry, I\'d leave him a whole box of cookies. And a six-pack.\r\n\r\n ','Beyonce\'s Midnight Surprise','','inherit','open','open','','1416-revision-v1','','','2013-12-14 16:06:09','2013-12-14 22:06:09','',1416,'http://www.earthhertzrecords.com/2013/12/1416-revision-v1/',0,'revision','',0),(1419,2,'2013-12-14 16:10:11','2013-12-14 22:10:11','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/beyonce-new-album.jpg\"><img class=\"alignleft size-medium wp-image-1417\" alt=\"beyonce-new-album\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/beyonce-new-album-300x300.jpg\" width=\"300\" height=\"300\" /></a>It was almost a Santa Claus moment. Right around midnight, the time we associate with the jolly, fat man, Beyonce released a new album. And no one knew it was coming. Really. In this day and age of hype, pre-hype, and hype til-you\'re-sick-of-hearing-about-it-hype, Beyonce just opened up her bag of gifts and dropped a big one down to her fans. They must have been either very naughty or very nice.\r\n\r\nI cannot even begin to explain how exciting I find all of this. Not the album, personally I couldn\'t care less when, where or if she ever releases another album. No, I find it absolutely fascinating that there were no leaks of its existence. Think about it, fourteen tracks and seventeen videos... seventeen videos, and not a peep about it, even though the videos were filmed on location all over the world.\r\n\r\nBeyonce has stated that she was bored with the usual way of doing business and just wanted to connect with her fans. Maybe. Excuse me if I\'m a bit skeptical. Lack of pre-hype does not mean this new way of getting her music out there is not just another, more subtle form of PR. In the first three hours of it\'s release, her sales for the album were somewhere in the neighborhood of $1.3 million, and none of those dollars will be paying for a pre-release marketing campaign.\r\n\r\nThis album release excites me for another reason as well. Actually two. First, there is no single song purchasing. Ya gotta buy the whole album... just like the old days. Remember when artists had a vision and put together a cohesive set of tunes, it wasn\'t necessarily a concept album, just a compilation of songs that worked together, and the artist wanted them heard that way. The other reason this release is so interesting is it is only being song through iTunes, at least for the moment.\r\n\r\nIt goes without saying, music PR people and other executives are watching this release carefully. Could this be the next big thing? Recording artists just surprising their fans rather than beating them down for six months as they are told when and where their favorite singer\'s new album will come out, all while being brainwashed into accepting that the new album will be incredibly good, even if it\'s a piece of crap. Probably not. But it is a small crack in the usual way the music business has been conducted as of late.\r\n\r\nNow if Santa could help with a few more changes in the music industry, I\'d leave him a whole box of cookies. And a six-pack.\r\n\r\n ','Beyonce\'s Midnight Surprise','','inherit','open','open','','1416-revision-v1','','','2013-12-14 16:10:11','2013-12-14 22:10:11','',1416,'http://www.earthhertzrecords.com/2013/12/1416-revision-v1/',0,'revision','',0),(1420,2,'2013-12-14 16:18:50','2013-12-14 22:18:50','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/beyonce-new-album.jpg\"><img class=\"alignleft size-medium wp-image-1417\" alt=\"beyonce-new-album\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/beyonce-new-album-300x300.jpg\" width=\"300\" height=\"300\" /></a>It was almost a Santa Claus moment. Right around midnight, the time we associate with the jolly, fat man, Beyonce released a new album. And no one knew it was coming. Really. In this day and age of hype, pre-hype, and hype til-you\'re-sick-of-hearing-about-it-hype, Beyonce just opened up her bag of gifts and dropped a big one down to her fans. They must have been either very naughty or very nice.\r\n\r\nI cannot even begin to explain how exciting I find all of this. Not the album, personally I couldn\'t care less when, where or if she ever releases another album. No, I find it absolutely fascinating that there were no leaks of its existence. Think about it, fourteen tracks and seventeen videos... seventeen videos, and not a peep about it, even though the videos were filmed on location all over the world.\r\n\r\nBeyonce has stated that she was bored with the usual way of doing business and just wanted to connect with her fans. Maybe. Excuse me if I\'m a bit skeptical. Lack of pre-hype does not mean this new way of getting her music out there is not just another, more subtle form of PR. In the first three hours of it\'s release, her sales for the album were somewhere in the neighborhood of $1.3 million, and none of those dollars will be paying for a pre-release marketing campaign.\r\n\r\nThis album release excites me for another reason as well. Actually two. First, there is no single song purchasing. Ya gotta buy the whole album... just like the old days. Remember when artists had a vision and put together a cohesive set of tunes, it wasn\'t necessarily a concept album, just a compilation of songs that worked together, and the artist wanted them heard that way. The other reason this release is so interesting is it is only being sold through iTunes, at least for the moment.\r\n\r\nIt goes without saying, music PR people and other executives are watching this release carefully. Could this be the next big thing? Recording artists just surprising their fans rather than beating them down for six months as they are told when and where their favorite singer\'s new album will come out, all while being brainwashed into accepting that the new album will be incredibly good, even if it\'s a piece of crap. Probably not. But it is a small crack in the usual way the music business has been conducted as of late.\r\n\r\nNow if Santa could help with a few more changes in the music industry, I\'d leave him a whole box of cookies. And a six-pack.\r\n\r\n ','Beyonce\'s Midnight Surprise','','inherit','open','open','','1416-revision-v1','','','2013-12-14 16:18:50','2013-12-14 22:18:50','',1416,'http://www.earthhertzrecords.com/2013/12/1416-revision-v1/',0,'revision','',0),(1421,2,'2013-12-14 16:19:47','2013-12-14 22:19:47','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/beyonce-new-album.jpg\"><img class=\"alignleft size-medium wp-image-1417\" alt=\"beyonce-new-album\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/beyonce-new-album-300x300.jpg\" width=\"300\" height=\"300\" /></a>It was almost a Santa Claus moment. Right around midnight, the time we associate with the jolly, fat man, Beyonce released a new album. And no one knew it was coming. Really. In this day and age of hype, pre-hype, and hype til-you\'re-sick-of-hearing-about-it-hype, Beyonce just opened up her bag of gifts and dropped a big one down to her fans. They must have been either very naughty or very nice.\r\n\r\nI cannot even begin to explain how exciting I find all of this. Not the album, personally I couldn\'t care less when, where or if she ever releases another album. No, I find it absolutely fascinating that there were no leaks of its existence. Think about it, fourteen tracks and seventeen videos... seventeen videos, and not a peep about it, even though the videos were filmed on location all over the world.\r\n\r\n<a href=\"http://www.virtualpressoffice.com/RODAccess?did=1264248984781&pid=1438353&ct=C\">Beyonce has stated </a>that she was bored with the usual way of doing business and just wanted to connect with her fans. Maybe. Excuse me if I\'m a bit skeptical. Lack of pre-hype does not mean this new way of getting her music out there is not just another, more subtle form of PR. In the first three hours of it\'s release, her sales for the album were somewhere in the neighborhood of $1.3 million, and none of those dollars will be paying for a pre-release marketing campaign.\r\n\r\nThis album release excites me for another reason as well. Actually two. First, there is no single song purchasing. Ya gotta buy the whole album... just like the old days. Remember when artists had a vision and put together a cohesive set of tunes, it wasn\'t necessarily a concept album, just a compilation of songs that worked together, and the artist wanted them heard that way. The other reason this release is so interesting is it is only being sold through iTunes, at least for the moment.\r\n\r\nIt goes without saying, music PR people and other executives are watching this release carefully. Could this be the next big thing? Recording artists just surprising their fans rather than beating them down for six months as they are told when and where their favorite singer\'s new album will come out, all while being brainwashed into accepting that the new album will be incredibly good, even if it\'s a piece of crap. Probably not. But it is a small crack in the usual way the music business has been conducted as of late.\r\n\r\nNow if Santa could help with a few more changes in the music industry, I\'d leave him a whole box of cookies. And a six-pack.\r\n\r\n ','Beyonce\'s Midnight Surprise','','inherit','open','open','','1416-revision-v1','','','2013-12-14 16:19:47','2013-12-14 22:19:47','',1416,'http://www.earthhertzrecords.com/2013/12/1416-revision-v1/',0,'revision','',0),(1422,2,'2013-12-17 10:12:17','2013-12-17 16:12:17','The Rock and Roll Hall of Fame has just announced its inductees for its class of 2014. They are: Nirvana, Kiss, Peter Gabriel, Cat Stevens, Linda Rondstadt, and Hall and Oates. Additionally, the E Street Band will be given an award for musical excellence, and Beatles manager Brian Epstein and Rolling Stones original manager Andrew Loog Oldham will receive the Ahmet Ertegun Award for non-performers.\r\n\r\nWhile there hasn\'t been a year in quite awhile where I haven\'t been upset by an exclusion, or more frequently, an inclusion in the nominees, honestly, I can\'t really complain about those nominated this year. They have all paid their dues, and withstood the test of time. And as each new generation takes the place of the one before, comparisons are made. Are these new bands worthy, do they have the talent and all that it takes to think about consideration 25-30 years down the road?\r\n\r\nIn a recent <a href=\"http://www.riffraf.net/2013/12/indie-spotlight-applegate-nance-3/\">interview published on Riffraf Magazine</a>, Earth Hertz artists Applegate Nance were asked to whom in the world of music they have been compared. It seems since they started playing in Nashville, the comparison they received most often was to new Rock and Roll Hall of Fame inductees, Hall and Oates. Not a bad comparison at all. If you listen to the songwriting, harmonies, and overall feeling from Applegate Nance, it\'s all there. While their tunes are catchy and fun, there is no mistaking the quality of their work.\r\n\r\nHall and Oates will be inducted on April 10th, 2014. Their career speaks for itself. New music is being made everyday, and whether or not their careers will be considered for the Hall somewhere down the road, it\'s time for groups like Applegate Nance to let their music do the talking. We\'ve already started to hear the whispers.\r\n\r\nTake a listen here on the <a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\">Applegate Nance page</a>. And watch the video for their first single \"Hey California.\"\r\n\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/Ql8vvDGth7w\" frameborder=\"0\" allowfullscreen></iframe>\r\n\r\n \r\n\r\n \r\n\r\n ','The Rock and Roll Hall of Fame Class of 2014: Worthy or Not?','','publish','open','open','','the-rock-and-roll-hall-of-fame-class-of-2014-worthy-or-not','','http://www.riffraf.net/2013/12/indie-spotlight-applegate-nance-3/\nhttp://www.earthhertzrecords.com/artists/applegate-nance-2/','2013-12-17 10:13:14','2013-12-17 16:13:14','',0,'http://www.earthhertzrecords.com/?p=1422',0,'post','',0),(1424,2,'2013-12-17 07:39:54','2013-12-17 13:39:54','The Rock and Roll Hall of Fame has just announced its inductees for its class of 2014. They are: Nirvana, Kiss, Peter Gabriel, Cat Stevens, Linda Rondstadt, and Hall and Oates. Additionally, the E Street Band will be given an award for musical excellence, and Beatles manager Brian Epstein and Rolling Stones original manager Andrew Loog Oldham will receive the Ahmet Ertegun Award for non-performers.\r\n\r\nWhile there hasn\'t been a year in quite awhile where I haven\'t been upset by an exclusion, or more frequently, an inclusion in the nominees, honestly, I can\'t really complain about those nominated this year. They have all paid their dues, and withstood the test of time. And as each new generation takes the place of the one before, comparisons are made. Are these new bands worthy, do they have the talent and all that it takes to think about consideration 25-30 years down the road?\r\n\r\nIn a recent <a href=\"http://www.riffraf.net/2013/12/indie-spotlight-applegate-nance-3/\">interview published on Riffraf Magazine</a>, Earth Hertz artists Applegate Nance were asked to whom in the world of music they have been compared. It seems since they started playing in Nashville, the comparison they received most often was to new Rock and Roll Hall of Fame inductees, Hall and Oates. Not a bad comparison at all. If you listen to the songwriting, harmonies, and overall feeling from Applegate Nance, it\'s all there. While their tunes are catchy and fun, there is no mistaking the quality of their work.\r\n\r\nHall and Oates will be inducted on April 10th, 2014. Their career speaks for itself. New music is being made everyday, and whether or not their careers will be considered for the Hall somewhere down the road, it\'s time for groups like Applegate Nance to let their music do the talking. We\'ve already started to hear the whispers.\r\n\r\nTake a listen here on the <a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\">Applegate Nance page</a>. And watch the video for their first single \"Hey California.\"\r\n\r\n \r\n\r\n \r\n\r\n ','The Rock and Roll Hall of Fame Class of 2014: Worthy or Not?','','inherit','open','open','','1422-revision-v1','','','2013-12-17 07:39:54','2013-12-17 13:39:54','',1422,'http://www.earthhertzrecords.com/2013/12/1422-revision-v1/',0,'revision','',0),(1426,2,'2013-12-17 10:08:30','2013-12-17 16:08:30','The Rock and Roll Hall of Fame has just announced its inductees for its class of 2014. They are: Nirvana, Kiss, Peter Gabriel, Cat Stevens, Linda Rondstadt, and Hall and Oates. Additionally, the E Street Band will be given an award for musical excellence, and Beatles manager Brian Epstein and Rolling Stones original manager Andrew Loog Oldham will receive the Ahmet Ertegun Award for non-performers.\r\n\r\nWhile there hasn\'t been a year in quite awhile where I haven\'t been upset by an exclusion, or more frequently, an inclusion in the nominees, honestly, I can\'t really complain about those nominated this year. They have all paid their dues, and withstood the test of time. And as each new generation takes the place of the one before, comparisons are made. Are these new bands worthy, do they have the talent and all that it takes to think about consideration 25-30 years down the road?\r\n\r\nIn a recent <a href=\"http://www.riffraf.net/2013/12/indie-spotlight-applegate-nance-3/\">interview published on Riffraf Magazine</a>, Earth Hertz artists Applegate Nance were asked to whom in the world of music they have been compared. It seems since they started playing in Nashville, the comparison they received most often was to new Rock and Roll Hall of Fame inductees, Hall and Oates. Not a bad comparison at all. If you listen to the songwriting, harmonies, and overall feeling from Applegate Nance, it\'s all there. While their tunes are catchy and fun, there is no mistaking the quality of their work.\r\n\r\nHall and Oates will be inducted on April 10th, 2014. Their career speaks for itself. New music is being made everyday, and whether or not their careers will be considered for the Hall somewhere down the road, it\'s time for groups like Applegate Nance to let their music do the talking. We\'ve already started to hear the whispers.\r\n\r\nTake a listen here on the <a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\">Applegate Nance page</a>. And watch the video for their first single \"Hey California.\"\r\n\r\n<iframe src=\"//www.youtube.com/embed/Ql8vvDGth7w\" height=\"560\" width=\"315\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n \r\n\r\n \r\n\r\n ','The Rock and Roll Hall of Fame Class of 2014: Worthy or Not?','','inherit','open','open','','1422-revision-v1','','','2013-12-17 10:08:30','2013-12-17 16:08:30','',1422,'http://www.earthhertzrecords.com/2013/12/1422-revision-v1/',0,'revision','',0),(1427,2,'2013-12-17 10:10:35','2013-12-17 16:10:35','The Rock and Roll Hall of Fame has just announced its inductees for its class of 2014. They are: Nirvana, Kiss, Peter Gabriel, Cat Stevens, Linda Rondstadt, and Hall and Oates. Additionally, the E Street Band will be given an award for musical excellence, and Beatles manager Brian Epstein and Rolling Stones original manager Andrew Loog Oldham will receive the Ahmet Ertegun Award for non-performers.\r\n\r\nWhile there hasn\'t been a year in quite awhile where I haven\'t been upset by an exclusion, or more frequently, an inclusion in the nominees, honestly, I can\'t really complain about those nominated this year. They have all paid their dues, and withstood the test of time. And as each new generation takes the place of the one before, comparisons are made. Are these new bands worthy, do they have the talent and all that it takes to think about consideration 25-30 years down the road?\r\n\r\nIn a recent <a href=\"http://www.riffraf.net/2013/12/indie-spotlight-applegate-nance-3/\">interview published on Riffraf Magazine</a>, Earth Hertz artists Applegate Nance were asked to whom in the world of music they have been compared. It seems since they started playing in Nashville, the comparison they received most often was to new Rock and Roll Hall of Fame inductees, Hall and Oates. Not a bad comparison at all. If you listen to the songwriting, harmonies, and overall feeling from Applegate Nance, it\'s all there. While their tunes are catchy and fun, there is no mistaking the quality of their work.\r\n\r\nHall and Oates will be inducted on April 10th, 2014. Their career speaks for itself. New music is being made everyday, and whether or not their careers will be considered for the Hall somewhere down the road, it\'s time for groups like Applegate Nance to let their music do the talking. We\'ve already started to hear the whispers.\r\n\r\nTake a listen here on the <a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\">Applegate Nance page</a>. And watch the video for their first single \"Hey California.\"\r\n\r\n<iframe width=\"315\" height=\"560\" src=\"//www.youtube.com/embed/Ql8vvDGth7w\" frameborder=\"0\" allowfullscreen></iframe>\r\n\r\n \r\n\r\n \r\n\r\n ','The Rock and Roll Hall of Fame Class of 2014: Worthy or Not?','','inherit','open','open','','1422-revision-v1','','','2013-12-17 10:10:35','2013-12-17 16:10:35','',1422,'http://www.earthhertzrecords.com/2013/12/1422-revision-v1/',0,'revision','',0),(1428,2,'2013-12-17 10:13:14','2013-12-17 16:13:14','The Rock and Roll Hall of Fame has just announced its inductees for its class of 2014. They are: Nirvana, Kiss, Peter Gabriel, Cat Stevens, Linda Rondstadt, and Hall and Oates. Additionally, the E Street Band will be given an award for musical excellence, and Beatles manager Brian Epstein and Rolling Stones original manager Andrew Loog Oldham will receive the Ahmet Ertegun Award for non-performers.\r\n\r\nWhile there hasn\'t been a year in quite awhile where I haven\'t been upset by an exclusion, or more frequently, an inclusion in the nominees, honestly, I can\'t really complain about those nominated this year. They have all paid their dues, and withstood the test of time. And as each new generation takes the place of the one before, comparisons are made. Are these new bands worthy, do they have the talent and all that it takes to think about consideration 25-30 years down the road?\r\n\r\nIn a recent <a href=\"http://www.riffraf.net/2013/12/indie-spotlight-applegate-nance-3/\">interview published on Riffraf Magazine</a>, Earth Hertz artists Applegate Nance were asked to whom in the world of music they have been compared. It seems since they started playing in Nashville, the comparison they received most often was to new Rock and Roll Hall of Fame inductees, Hall and Oates. Not a bad comparison at all. If you listen to the songwriting, harmonies, and overall feeling from Applegate Nance, it\'s all there. While their tunes are catchy and fun, there is no mistaking the quality of their work.\r\n\r\nHall and Oates will be inducted on April 10th, 2014. Their career speaks for itself. New music is being made everyday, and whether or not their careers will be considered for the Hall somewhere down the road, it\'s time for groups like Applegate Nance to let their music do the talking. We\'ve already started to hear the whispers.\r\n\r\nTake a listen here on the <a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\">Applegate Nance page</a>. And watch the video for their first single \"Hey California.\"\r\n\r\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/Ql8vvDGth7w\" frameborder=\"0\" allowfullscreen></iframe>\r\n\r\n \r\n\r\n \r\n\r\n ','The Rock and Roll Hall of Fame Class of 2014: Worthy or Not?','','inherit','open','open','','1422-revision-v1','','','2013-12-17 10:13:14','2013-12-17 16:13:14','',1422,'http://www.earthhertzrecords.com/2013/12/1422-revision-v1/',0,'revision','',0),(1432,2,'2013-12-26 19:48:02','2013-12-27 01:48:02','','werq','','inherit','open','open','','werq','','','2013-12-26 19:48:02','2013-12-27 01:48:02','',1430,'http://www.earthhertzrecords.com/wp-content/uploads/2013/12/werq.jpg',0,'attachment','image/jpeg',0),(1433,2,'2013-12-26 19:49:04','2013-12-27 01:49:04','','carmen','','inherit','open','open','','carmen','','','2013-12-26 19:49:04','2013-12-27 01:49:04','',1430,'http://www.earthhertzrecords.com/wp-content/uploads/2013/12/carmen.jpg',0,'attachment','image/jpeg',0),(1434,2,'2013-12-26 19:52:15','2013-12-27 01:52:15','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/werq.jpg\"><img class=\"alignright size-full wp-image-1432\" alt=\"werq\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/werq.jpg\" width=\"300\" height=\"300\" /></a>Ever since she recorded her debut album with Prince and opened for him on his Diamonds and Pearls Tour, it’s been a burning passion for <a href=\"http://www.carmenelectra.com/\">Carmen Electra</a> to get back up on stage and perform in front of an audience.\r\n\r\nLate in 2012, the former Singled Out, Baywatch beauty officially made her return to music with her infectious single “I Like It Loud”; a track that quickly hit the Top 25 on Billboard’s Dance Club Play Chart.\r\n\r\nAs the follow-up to ‘I Like It Loud’ Electra’s back with her new single, ‘Werq’. Produced by Eddie Amador, it’s a fun, positive dance track that basically delivers on what it promises: Own what you’ve got… Know your worth … Make it hot.. Make it Werq.\r\n\r\nElectra’s also making plans for a full-length album to coincide with US Tour in 2014. I spoke with her about the new single and more.\r\n\r\n<strong>James Wood: Was the success of your single “I Like It Loud” what sparked your return to music?</strong>\r\n\r\nCarmen Electra: Ever since I recorded my self-titled album with Prince it’s been a passion of mine. That experience alone and then getting to go on tour with him was surreal. A lot of people probably don’t know this, but my original intention for moving to Los Angeles was to pursue music. For some reason though, it wasn’t meant to be at that time. I was going on auditions and getting offers for movies and TV shows and started modeling. That took off, but during this entire time [on and off again] I’ve also been working on music.<em>\r\n</em>\r\n\r\n<strong>What satisfies you the most about the creative process?</strong>\r\n\r\nThe thing I love most is that I’m able to do whatever I want. With music, I’m not playing a role. It’s my project and it allows me more freedom to just be myself.\r\n\r\n<strong>How did the new single, ‘Werq’ come about?</strong>\r\n\r\nOrlando [Puerta] from Citrusonic actually worked with me on the record I did with Prince back when he worked at Warner Brothers. He has his own label now and it was through mutual friends that we connected again. He sent over the music track and I just loved the beat and the way it automatically made me want to dance. It really stood out and I could visually see how it would fit into the show that we’re putting together.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/carmen.jpg\"><img class=\"alignleft size-medium wp-image-1433\" alt=\"carmen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/carmen-252x300.jpg\" width=\"252\" height=\"300\" /></a>What can you tell me about your songwriting process?</strong>\r\n\r\nI love music that makes me want to dance, but I’m not always in the “dance” or “party” mood, so sometimes we’ll go in and start experimenting. We’ve actually just finished recording a song that’s completely different from anything I’ve done yet. It’s all a learning process.\r\n\r\n<strong>What other projects have you been working on?</strong>\r\n\r\nI just finished my 2014 calendar for TF Publishing and am also working on a lingerie line. It’s a lot of work, but I love the challenge.\r\n\r\n<em> </em><strong>Did you ever feel pressure or a need to compete when following Jenny McCarthy [Singled Out] or Pam Anderson [Baywatch]?</strong>\r\n\r\nAbsolutely. In one way, it was a huge accomplishment to be the replacement for Jenny and Pam. But on the other hand, there was always that sense of wanting to live up to what they’ve already done. I was so inspired by both of them so there was some pressure, but I tried to not let it take away from the experience. With ‘Singled Out’, it was especially memorable because my whole life literally changed in one day. I get the call and BAM! It was a new life. It was the same way with Baywatch. Both were important times in my life and career.\r\n\r\n<strong>Do you ever foresee yourself getting more involved in the producing and directing side of things?</strong>\r\n\r\nAt some point I’d love to make the transition. I’ve seen and done a lot, so I think there will be a time where I’ll feel ready to get on the other side of things. But for now, I’m just loving what I do because it’s very fulfilling.\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Carmen Electra is Making it Werq','','inherit','open','open','','1430-revision-v1','','','2013-12-26 19:52:15','2013-12-27 01:52:15','',1430,'http://www.earthhertzrecords.com/2013/12/1430-revision-v1/',0,'revision','',0),(1435,2,'2013-12-26 20:00:43','2013-12-27 02:00:43','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/werq.jpg\"><img class=\"alignright size-full wp-image-1432\" alt=\"werq\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/werq.jpg\" width=\"300\" height=\"300\" /></a>Ever since she recorded her debut album with Prince and opened for him on his <em>Diamonds and Pearls Tour</em>, it’s been a burning passion for <a href=\"http://www.carmenelectra.com/\">Carmen Electra</a> to get back up on stage and perform in front of an audience.\r\n\r\nLate in 2012, the former Singled Out, Baywatch beauty officially made her return to music with her infectious single “I Like It Loud”; a track that quickly hit the Top 25 on Billboard’s Dance Club Play Chart.\r\n\r\nAs the follow-up to \"I Like It Loud\" Electra’s back with her new single, \"Werq.\" Produced by Eddie Amador, it’s a fun, positive dance track that basically delivers on what it promises: Own what you’ve got… Know your worth … Make it hot.. Make it Werq.\r\n\r\nElectra’s also making plans for a full-length album to coincide with US Tour in 2014. I spoke with her about the new single and more.\r\n\r\n<strong>James Wood: Was the success of your single “I Like It Loud” what sparked your return to music?</strong>\r\n\r\nCarmen Electra: Ever since I recorded my self-titled album with Prince it’s been a passion of mine. That experience alone and then getting to go on tour with him was surreal. A lot of people probably don’t know this, but my original intention for moving to Los Angeles was to pursue music. For some reason though, it wasn’t meant to be at that time. I was going on auditions and getting offers for movies and TV shows and started modeling. That took off, but during this entire time [on and off again] I’ve also been working on music.<em>\r\n</em>\r\n\r\n<strong>What satisfies you the most about the creative process?</strong>\r\n\r\nThe thing I love most is that I’m able to do whatever I want. With music, I’m not playing a role. It’s my project and it allows me more freedom to just be myself.\r\n\r\n<strong>How did the new single, \"Werq\" come about?</strong>\r\n\r\nOrlando [Puerta] from Citrusonic actually worked with me on the record I did with Prince back when he worked at Warner Brothers. He has his own label now and it was through mutual friends that we connected again. He sent over the music track and I just loved the beat and the way it automatically made me want to dance. It really stood out and I could visually see how it would fit into the show that we’re putting together.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/carmen.jpg\"><img class=\"alignleft size-medium wp-image-1433\" alt=\"carmen\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/12/carmen-252x300.jpg\" width=\"252\" height=\"300\" /></a>What can you tell me about your songwriting process?</strong>\r\n\r\nI love music that makes me want to dance, but I’m not always in the “dance” or “party” mood, so sometimes we’ll go in and start experimenting. We’ve actually just finished recording a song that’s completely different from anything I’ve done yet. It’s all a learning process.\r\n\r\n<strong>What other projects have you been working on?</strong>\r\n\r\nI just finished my 2014 calendar for TF Publishing and am also working on a lingerie line. It’s a lot of work, but I love the challenge.\r\n\r\n<em> </em><strong>Did you ever feel pressure or a need to compete when following Jenny McCarthy [Singled Out] or Pam Anderson [Baywatch]?</strong>\r\n\r\nAbsolutely. In one way, it was a huge accomplishment to be the replacement for Jenny and Pam. But on the other hand, there was always that sense of wanting to live up to what they’ve already done. I was so inspired by both of them so there was some pressure, but I tried to not let it take away from the experience. With ‘Singled Out’, it was especially memorable because my whole life literally changed in one day. I get the call and BAM! It was a new life. It was the same way with Baywatch. Both were important times in my life and career.\r\n\r\n<strong>Do you ever foresee yourself getting more involved in the producing and directing side of things?</strong>\r\n\r\nAt some point I’d love to make the transition. I’ve seen and done a lot, so I think there will be a time where I’ll feel ready to get on the other side of things. But for now, I’m just loving what I do because it’s very fulfilling.\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Carmen Electra is Making it Werq','','inherit','open','open','','1430-revision-v1','','','2013-12-26 20:00:43','2013-12-27 02:00:43','',1430,'http://www.earthhertzrecords.com/2013/12/1430-revision-v1/',0,'revision','',0),(1441,2,'2014-01-02 18:53:45','2014-01-03 00:53:45','Is there a band more recognizable than The Beatles? When searching for the Best Rock Band of All-Time the answer was unanimous. But search for the answer to this question, \"Who is the fifth Beatle?\" and amazingly you will not find the real answer.\r\n\r\nOn June 3, 1964 the fate of a successful, but small-time drummer would change forever. Jimmie Nicol would become the fifth Beatle, if only for 13 days, and it would change the trajectory of his life in a way no one could have predicted.\r\n\r\nThis is a story that clearly would have never been told if not for the painstaking research done by Jim Berkenstadt. He took what was barely enough material to write an article and meticulously followed the movements of this mysterious person who replaced Ringo Starr for thirteen days on the Beatles first World Tour. <em>The Beatle Who Vanished</em> is a fascinating look inside the history of rock and roll in 1960s London, and the music industry\'s attempt to create pop stars by controlling and molding the musicians who were discovering and exploring this rapidly changing music scene.\r\n\r\nJimmie Nicol\'s life was intricately entwined with the birth of Rock and Roll. As Berkenstadt uncovered Nicol\'s history, he discovered a drummer so well regarded that, in 1964, his destiny was most surely on the path for fame. No one denied that Nicol\'s skills were among the top in the clubs and music studios of London, he was well known for his versatility; moving between jazz and rock easily and even combining the two. Often asked to play with many up and coming bands, he was making a decent living as a musician and had become a staple as a session drummer. He was also the drummer for a series called Top Six, a weekly recording of the Top Six hits, often covering Beatles songs to perfection. Who could know how important that would be?\r\n\r\nJust when it seemed Jimmie\'s ship had come in, becoming the permanent drummer for Georgie Fame and The Blue Flames, he and his wife were living a comfortable life, and he was guaranteed work at something he loved; his life would take one more turn. Paul McCartney would personally call Georgie Fame and ask if they could \"borrow\" his drummer Nicols.\r\n\r\nThe rest they say, is history. But it wasn\'t, not for us, not for him. It is what happened after this amazing story that was a mystery for so many years. Jimmie was a tried and true Beatle for 13 days, it may not seem like a long time, but as you read about the intensity of the touring, traveling and riot like interaction with fans, one can see how it felt like a lifetime for Jimmie. Nichol joined the Beatles as the crescendo of Beatlemania was beginning, but he was ill equipped to be at the center of such fame and adulation. Paul McCartney befriended Jimmie and often asked him if \"it was getting better?\" Jimmie\'s response? \"It\'s getting better all the time.\" After thirteen days of playing multiple shows a day, their songs felt like his songs, and just as he began to feel like a \"real\" Beatle, it was ripped away from him.\r\n\r\nEven for those who knew Jimmie well, no one could understand that feeling. He went from being a <em>Beatle</em> to being plain old Jimmie in one day. His attempt at recreating that fame, his subsequent travels, and his disappearance and supposed death are the riveting plots of this wonderful mystery of a biography. Jim Berkenstadt does something for Jimmie that he could never do, he showcases his amazing talent and paints a picture so clear that when you finish this book you will feel like you knew Jimmie all along.\r\n\r\nReview by Jen Kehl.','\"The Beatle Who Vanished\" by Jim Berkenstadt: A Book Review','','inherit','open','open','','1437-revision-v1','','','2014-01-02 18:53:45','2014-01-03 00:53:45','',1437,'http://www.earthhertzrecords.com/2014/01/1437-revision-v1/',0,'revision','',0),(1442,2,'2014-01-06 08:44:34','2014-01-06 14:44:34','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg\"><img class=\"alignright size-full wp-image-1443\" alt=\"macintyre\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg\" width=\"298\" height=\"300\" /></a>Shortly after his eighth place finish on American Idol in 2009 singer/songwriter <a href=\"http://scottmacintyre.com/\">Scott MacIntyre</a> released an EP of Christmas music called <em>Christmas Angel</em>. Since that time, fans have been clamoring for a more full-length version of holiday themed material, and MacIntyre’s new album, <em>Christmas In Paris</em> delivers the goods. His fresh take on traditional songs of the season combined with two original compositions<em>(including the title track)</em> is sure to become a part of holiday tradition.\r\n\r\n2013 has been a big year for MacIntyre. In addition to the new Christmas album, he continues to speak around the country about his book <a href=\"http://www.amazon.com/Faith-Not-Sight-Inspirational-Life-Threatening/dp/0849947219\">“By Faith Not By Sight”</a>, which tells his personal story about overcoming adversity. He’s also performed shows with the likes of The Band Perry, Jonas Brothers and Alice Cooper. MacIntyre even relocated from Arizona to Franklin, TN to be closer to the creative community, and is in production for his next studio album with an anticipated Spring 2014 release.\r\n\r\nI spoke to him about his music as well as his involvement with <a href=\"http://donatelife.net/\">Donate Life America</a>; an alliance of organizations and state teams across the U.S. committed to increasing organ, eye and tissue donation. Another subject that is near and dear to his heart.\r\n\r\n<strong>James Wood: What made you decide to do a Christmas album?</strong>\r\n\r\nScott MacIntyre: Shortly after I left Idol back in 2009, I did a Christmas EP that included my original song, “Christmas Angel”. Since then, my fans have been asking for one, so this is my first full-length Christmas album.\r\n\r\n<strong>How did you determine which songs to include?</strong>\r\n\r\nThere are so many great Christmas songs, but in choosing material for the album I didn’t want to do anything that was too “surfacy”. I wanted to stay true to the melodies, but also wanted to dig into the atmosphere and sound scape of each song and create some really interesting textures.\r\n\r\n<strong>Tell me a little about the title track, “Christmas In Paris”.</strong>\r\n\r\nI wrote it with two amazing songwriters, Ryan Hydro and Aaron Steenhoven. Ryan was the one who came up with the title and as soon as I heard it, I knew it was going to be something that we could really dig into. Sure enough, once we started writing, we could all tell that it was going to be magical.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre.jpg\"><img class=\"alignleft size-medium wp-image-1444\" alt=\"scottmacintyre\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre-300x200.jpg\" width=\"300\" height=\"200\" /></a>What can fans expect from your new album due next year?</strong>\r\n\r\nThe songs for the album will represent another arrival point for me. It’s been an incredible journey having the privilege of working with more amazing songwriters like Cindy Morgan, Steve Dean, Richie Fike and Kyle Lee. Every song on the new album relates to my story and I hope to everyone’s own story as well in some way. It’s going to be a very meaningful album.\r\n\r\n<strong>Let’s discuss your musical background.</strong>\r\n\r\nI actually started messing around on the piano when I was almost two. I think because of my blindness and not being able to experience the world visually like other people do, I was drawn more to the world of sound. I was just fascinated by hearing the pure tone. Up until I was 15 everything that I played was classical, but I remember my Dad would drive me to school and on the way we’d listen to the pop music station on the radio. It was one of the first times that I was exposed to bands like Creed, Train, Vertical Horizon and Tool. I started picking up on patterns in the music and realized that what they were doing was pretty much the same as classical music. It was just represented differently. It was different from a symphony in that you didn’t have to guess it’s interpretation to understand the story. The words and melody were right there. From that point, I started to think that if I could tell stories with my gift, it could be something that everyone could relate to. It would be a powerful way to connect with people and I knew right then that it was the direction that I wanted to go.\r\n\r\n<strong>Tell me about how you came to be involved with Donate Life America.</strong>\r\n\r\nWhen I was 19, I found out that I had Stage 4 kidney failure. It was a scary time and I went through a lot of adversity trying to figure out what my future was going to be like. I eventually became so sick that I was unable to play piano in my own home. Music is like living and breathing to me, so it was pretty devastating. I was on dialysis three times a week for hours on end having a machine do what my kidneys couldn’t. Then in 2007, the wife of my former piano teacher from college donated her kidney and saved my life. Less than a year later, I auditioned for American Idol. I never really talked about any of it until my book came out last year, but I wanted to share that part of my story with people.\r\n\r\nWhen I met the president of Donate Life (David Fleming), I was instantly drawn to the organization and what they do. It’s something that I can really stand behind because I would not be here today if it wasn’t for that life saving gift. It’s so easy to become an organ donor. It only takes a few minutes to designate yourself as one and what better gift is there than to be able to give the gift of life to the thousands of people who are waiting for life saving transplants.\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','A Conversation with Scott MacIntyre ','','publish','open','open','','a-conversation-with-scott-macintyre','','','2014-01-06 08:44:34','2014-01-06 14:44:34','',0,'http://www.earthhertzrecords.com/?p=1442',0,'post','',0),(1443,2,'2014-01-02 19:06:18','2014-01-03 01:06:18','','macintyre','','inherit','open','open','','macintyre','','','2014-01-02 19:06:18','2014-01-03 01:06:18','',1442,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg',0,'attachment','image/jpeg',0),(1444,2,'2014-01-02 19:07:13','2014-01-03 01:07:13','','scottmacintyre','','inherit','open','open','','scottmacintyre','','','2014-01-02 19:07:13','2014-01-03 01:07:13','',1442,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre.jpg',0,'attachment','image/jpeg',0),(1445,2,'2014-01-02 19:07:44','2014-01-03 01:07:44','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg\"><img class=\"alignright size-full wp-image-1443\" alt=\"macintyre\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg\" width=\"298\" height=\"300\" /></a>Shortly after his eighth place finish on American Idol in 2009 singer/songwriter <a href=\"http://scottmacintyre.com/\">Scott MacIntyre</a> released an EP of Christmas music called <em>Christmas Angel</em>. Since that time, fans have been clamoring for a more full-length version of holiday themed material and MacIntyre’s new album, <em>Christmas In Paris</em> delivers the goods. His fresh take on traditional songs of the season combined with two original compositions<em>(including the title track)</em> is sure to become a part of holiday tradition.\r\n\r\n2013 has been a big year for MacIntyre. In addition to the new Christmas album, he continues to speak around the country about his book “By Faith Not By Sight”, which tells his personal story about overcoming adversity. He’s also performed shows with the likes of The Band Perry, Jonas Brothers and Alice Cooper. MacIntyre even relocated from Arizona to Franklin, TN to be closer to the creative community and is in production for his next studio album with an anticipated Spring 2014 release.\r\n\r\nI spoke to him about his music as well as his involvement with <a href=\"http://donatelife.net/\">Donate Life America</a>; an alliance of organizations and state teams across the U.S. committed to increasing organ, eye and tissue donation. Another subject that is near and dear to his heart.\r\n\r\n<strong>Jim Wood: What made you decide to do a Christmas album?</strong>\r\n\r\nScott MacIntyre: Shortly after I left Idol back in 2009, I did a Christmas EP that included my original song, “Christmas Angel”. Since then, my fans have been asking for one, so this is my first full-length Christmas album.\r\n\r\n<strong>How did you determine which songs to include?</strong>\r\n\r\nThere are so many great Christmas songs, but in choosing material for the album I didn’t want to do anything that was too “surfacy”. I wanted to stay true to the melodies, but also wanted to dig into the atmosphere and sound scape of each song and create some really interesting textures.\r\n\r\n<strong>Tell me a little about the title track, “Christmas In Paris”.</strong>\r\n\r\nI wrote it with two amazing songwriters, Ryan Hydro and Aaron Steenhoven. Ryan was the one who came up with the title and as soon as I heard it, I knew it was going to be something that we could really dig into. Sure enough, once we started writing, we could all tell that it was going to be magical.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre.jpg\"><img class=\"alignleft size-medium wp-image-1444\" alt=\"scottmacintyre\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre-300x200.jpg\" width=\"300\" height=\"200\" /></a>What can fans expect from your new album due next year?</strong>\r\n\r\nThe songs for the album will represent another arrival point for me. It’s been an incredible journey having the privilege of working with more amazing songwriters like Cindy Morgan, Steve Dean, Richie Fike and Kyle Lee. Every song on the new album relates to my story and I hope to everyone’s own story as well in some way. It’s going to be a very meaningful album.\r\n\r\n<strong>Let’s discuss your musical background.</strong>\r\n\r\nI actually started messing around on the piano when I was almost two. I think because of my blindness and not being able to experience the world visually like other people do, I was drawn more to the world of sound. I was just fascinated by hearing the pure tone. Up until I was 15 everything that I played was classical, but I remember my Dad would drive me to school and on the way we’d listen to the pop music station on the radio. It was one of the first times that I was exposed to bands like Creed, Train, Vertical Horizon and Tool. I started picking up on patterns in the music and realized that what they were doing was pretty much the same as classical music. It was just represented differently. It was different from a symphony in that you didn’t have to guess it’s interpretation to understand the story. The words and melody were right there. From that point, I started to think that if I could tell stories with my gift, it could be something that everyone could relate to. It would be a powerful way to connect with people and I knew right then that it was the direction that I wanted to go.\r\n\r\n<strong>Tell me about how you came to be involved with Donate Life America.</strong>\r\n\r\nWhen I was 19, I found out that I had Stage 4 kidney failure. It was a scary time and I went through a lot of adversity trying to figure out what my future was going to be like. I eventually became so sick that I was unable to play piano in my own home. Music is like living and breathing to me, so it was pretty devastating. I was on dialysis three times a week for hours on end having a machine do what my kidneys couldn’t. Then in 2007, the wife of my former piano teacher from college donated her kidney and saved my life. Less than a year later, I auditioned for American Idol. I never really talked about any of it until my book came out last year, but I wanted to share that part of my story with people.\r\n\r\nWhen I met the president of Donate Life (David Fleming), I was instantly drawn to the organization and what they do. It’s something that I can really stand behind because I would not be here today if it wasn’t for that life saving gift. It’s so easy to become an organ donor. It only takes a few minutes to designate yourself as one and what better gift is there than to be able to give the gift of life to the thousands of people who are waiting for life saving transplants.\r\n\r\n ','Scott MacIntyre Talks Christmas Album, New Music','','inherit','open','open','','1442-revision-v1','','','2014-01-02 19:07:44','2014-01-03 01:07:44','',1442,'http://www.earthhertzrecords.com/2014/01/1442-revision-v1/',0,'revision','',0),(1446,2,'2014-01-02 19:14:51','2014-01-03 01:14:51','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg\"><img class=\"alignright size-full wp-image-1443\" alt=\"macintyre\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg\" width=\"298\" height=\"300\" /></a>Shortly after his eighth place finish on American Idol in 2009 singer/songwriter <a href=\"http://scottmacintyre.com/\">Scott MacIntyre</a> released an EP of Christmas music called <em>Christmas Angel</em>. Since that time, fans have been clamoring for a more full-length version of holiday themed material and MacIntyre’s new album, <em>Christmas In Paris</em> delivers the goods. His fresh take on traditional songs of the season combined with two original compositions<em>(including the title track)</em> is sure to become a part of holiday tradition.\r\n\r\n2013 has been a big year for MacIntyre. In addition to the new Christmas album, he continues to speak around the country about his book “By Faith Not By Sight”, which tells his personal story about overcoming adversity. He’s also performed shows with the likes of The Band Perry, Jonas Brothers and Alice Cooper. MacIntyre even relocated from Arizona to Franklin, TN to be closer to the creative community and is in production for his next studio album with an anticipated Spring 2014 release.\r\n\r\nI spoke to him about his music as well as his involvement with <a href=\"http://donatelife.net/\">Donate Life America</a>; an alliance of organizations and state teams across the U.S. committed to increasing organ, eye and tissue donation. Another subject that is near and dear to his heart.\r\n\r\n<strong>James Wood: What made you decide to do a Christmas album?</strong>\r\n\r\nScott MacIntyre: Shortly after I left Idol back in 2009, I did a Christmas EP that included my original song, “Christmas Angel”. Since then, my fans have been asking for one, so this is my first full-length Christmas album.\r\n\r\n<strong>How did you determine which songs to include?</strong>\r\n\r\nThere are so many great Christmas songs, but in choosing material for the album I didn’t want to do anything that was too “surfacy”. I wanted to stay true to the melodies, but also wanted to dig into the atmosphere and sound scape of each song and create some really interesting textures.\r\n\r\n<strong>Tell me a little about the title track, “Christmas In Paris”.</strong>\r\n\r\nI wrote it with two amazing songwriters, Ryan Hydro and Aaron Steenhoven. Ryan was the one who came up with the title and as soon as I heard it, I knew it was going to be something that we could really dig into. Sure enough, once we started writing, we could all tell that it was going to be magical.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre.jpg\"><img class=\"alignleft size-medium wp-image-1444\" alt=\"scottmacintyre\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre-300x200.jpg\" width=\"300\" height=\"200\" /></a>What can fans expect from your new album due next year?</strong>\r\n\r\nThe songs for the album will represent another arrival point for me. It’s been an incredible journey having the privilege of working with more amazing songwriters like Cindy Morgan, Steve Dean, Richie Fike and Kyle Lee. Every song on the new album relates to my story and I hope to everyone’s own story as well in some way. It’s going to be a very meaningful album.\r\n\r\n<strong>Let’s discuss your musical background.</strong>\r\n\r\nI actually started messing around on the piano when I was almost two. I think because of my blindness and not being able to experience the world visually like other people do, I was drawn more to the world of sound. I was just fascinated by hearing the pure tone. Up until I was 15 everything that I played was classical, but I remember my Dad would drive me to school and on the way we’d listen to the pop music station on the radio. It was one of the first times that I was exposed to bands like Creed, Train, Vertical Horizon and Tool. I started picking up on patterns in the music and realized that what they were doing was pretty much the same as classical music. It was just represented differently. It was different from a symphony in that you didn’t have to guess it’s interpretation to understand the story. The words and melody were right there. From that point, I started to think that if I could tell stories with my gift, it could be something that everyone could relate to. It would be a powerful way to connect with people and I knew right then that it was the direction that I wanted to go.\r\n\r\n<strong>Tell me about how you came to be involved with Donate Life America.</strong>\r\n\r\nWhen I was 19, I found out that I had Stage 4 kidney failure. It was a scary time and I went through a lot of adversity trying to figure out what my future was going to be like. I eventually became so sick that I was unable to play piano in my own home. Music is like living and breathing to me, so it was pretty devastating. I was on dialysis three times a week for hours on end having a machine do what my kidneys couldn’t. Then in 2007, the wife of my former piano teacher from college donated her kidney and saved my life. Less than a year later, I auditioned for American Idol. I never really talked about any of it until my book came out last year, but I wanted to share that part of my story with people.\r\n\r\nWhen I met the president of Donate Life (David Fleming), I was instantly drawn to the organization and what they do. It’s something that I can really stand behind because I would not be here today if it wasn’t for that life saving gift. It’s so easy to become an organ donor. It only takes a few minutes to designate yourself as one and what better gift is there than to be able to give the gift of life to the thousands of people who are waiting for life saving transplants.\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Scott MacIntyre Talks Christmas Album, New Music','','inherit','open','open','','1442-revision-v1','','','2014-01-02 19:14:51','2014-01-03 01:14:51','',1442,'http://www.earthhertzrecords.com/2014/01/1442-revision-v1/',0,'revision','',0); INSERT INTO `wp_posts` VALUES (1447,2,'2014-01-02 19:21:15','2014-01-03 01:21:15','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg\"><img class=\"alignright size-full wp-image-1443\" alt=\"macintyre\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg\" width=\"298\" height=\"300\" /></a>Shortly after his eighth place finish on American Idol in 2009 singer/songwriter <a href=\"http://scottmacintyre.com/\">Scott MacIntyre</a> released an EP of Christmas music called <em>Christmas Angel</em>. Since that time, fans have been clamoring for a more full-length version of holiday themed material, and MacIntyre’s new album, <em>Christmas In Paris</em> delivers the goods. His fresh take on traditional songs of the season combined with two original compositions<em>(including the title track)</em> is sure to become a part of holiday tradition.\r\n\r\n2013 has been a big year for MacIntyre. In addition to the new Christmas album, he continues to speak around the country about his book “By Faith Not By Sight”, which tells his personal story about overcoming adversity. He’s also performed shows with the likes of The Band Perry, Jonas Brothers and Alice Cooper. MacIntyre even relocated from Arizona to Franklin, TN to be closer to the creative community and is in production for his next studio album with an anticipated Spring 2014 release.\r\n\r\nI spoke to him about his music as well as his involvement with <a href=\"http://donatelife.net/\">Donate Life America</a>; an alliance of organizations and state teams across the U.S. committed to increasing organ, eye and tissue donation. Another subject that is near and dear to his heart.\r\n\r\n<strong>James Wood: What made you decide to do a Christmas album?</strong>\r\n\r\nScott MacIntyre: Shortly after I left Idol back in 2009, I did a Christmas EP that included my original song, “Christmas Angel”. Since then, my fans have been asking for one, so this is my first full-length Christmas album.\r\n\r\n<strong>How did you determine which songs to include?</strong>\r\n\r\nThere are so many great Christmas songs, but in choosing material for the album I didn’t want to do anything that was too “surfacy”. I wanted to stay true to the melodies, but also wanted to dig into the atmosphere and sound scape of each song and create some really interesting textures.\r\n\r\n<strong>Tell me a little about the title track, “Christmas In Paris”.</strong>\r\n\r\nI wrote it with two amazing songwriters, Ryan Hydro and Aaron Steenhoven. Ryan was the one who came up with the title and as soon as I heard it, I knew it was going to be something that we could really dig into. Sure enough, once we started writing, we could all tell that it was going to be magical.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre.jpg\"><img class=\"alignleft size-medium wp-image-1444\" alt=\"scottmacintyre\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre-300x200.jpg\" width=\"300\" height=\"200\" /></a>What can fans expect from your new album due next year?</strong>\r\n\r\nThe songs for the album will represent another arrival point for me. It’s been an incredible journey having the privilege of working with more amazing songwriters like Cindy Morgan, Steve Dean, Richie Fike and Kyle Lee. Every song on the new album relates to my story and I hope to everyone’s own story as well in some way. It’s going to be a very meaningful album.\r\n\r\n<strong>Let’s discuss your musical background.</strong>\r\n\r\nI actually started messing around on the piano when I was almost two. I think because of my blindness and not being able to experience the world visually like other people do, I was drawn more to the world of sound. I was just fascinated by hearing the pure tone. Up until I was 15 everything that I played was classical, but I remember my Dad would drive me to school and on the way we’d listen to the pop music station on the radio. It was one of the first times that I was exposed to bands like Creed, Train, Vertical Horizon and Tool. I started picking up on patterns in the music and realized that what they were doing was pretty much the same as classical music. It was just represented differently. It was different from a symphony in that you didn’t have to guess it’s interpretation to understand the story. The words and melody were right there. From that point, I started to think that if I could tell stories with my gift, it could be something that everyone could relate to. It would be a powerful way to connect with people and I knew right then that it was the direction that I wanted to go.\r\n\r\n<strong>Tell me about how you came to be involved with Donate Life America.</strong>\r\n\r\nWhen I was 19, I found out that I had Stage 4 kidney failure. It was a scary time and I went through a lot of adversity trying to figure out what my future was going to be like. I eventually became so sick that I was unable to play piano in my own home. Music is like living and breathing to me, so it was pretty devastating. I was on dialysis three times a week for hours on end having a machine do what my kidneys couldn’t. Then in 2007, the wife of my former piano teacher from college donated her kidney and saved my life. Less than a year later, I auditioned for American Idol. I never really talked about any of it until my book came out last year, but I wanted to share that part of my story with people.\r\n\r\nWhen I met the president of Donate Life (David Fleming), I was instantly drawn to the organization and what they do. It’s something that I can really stand behind because I would not be here today if it wasn’t for that life saving gift. It’s so easy to become an organ donor. It only takes a few minutes to designate yourself as one and what better gift is there than to be able to give the gift of life to the thousands of people who are waiting for life saving transplants.\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Scott MacIntyre Talks Christmas Album, New Music','','inherit','open','open','','1442-revision-v1','','','2014-01-02 19:21:15','2014-01-03 01:21:15','',1442,'http://www.earthhertzrecords.com/2014/01/1442-revision-v1/',0,'revision','',0),(1448,2,'2014-01-02 21:10:41','2014-01-03 03:10:41','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg\"><img class=\"alignright size-full wp-image-1443\" alt=\"macintyre\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg\" width=\"298\" height=\"300\" /></a>Shortly after his eighth place finish on American Idol in 2009 singer/songwriter <a href=\"http://scottmacintyre.com/\">Scott MacIntyre</a> released an EP of Christmas music called <em>Christmas Angel</em>. Since that time, fans have been clamoring for a more full-length version of holiday themed material, and MacIntyre’s new album, <em>Christmas In Paris</em> delivers the goods. His fresh take on traditional songs of the season combined with two original compositions<em>(including the title track)</em> is sure to become a part of holiday tradition.\r\n\r\n2013 has been a big year for MacIntyre. In addition to the new Christmas album, he continues to speak around the country about his book “By Faith Not By Sight”, which tells his personal story about overcoming adversity. He’s also performed shows with the likes of The Band Perry, Jonas Brothers and Alice Cooper. MacIntyre even relocated from Arizona to Franklin, TN to be closer to the creative community, and is in production for his next studio album with an anticipated Spring 2014 release.\r\n\r\nI spoke to him about his music as well as his involvement with <a href=\"http://donatelife.net/\">Donate Life America</a>; an alliance of organizations and state teams across the U.S. committed to increasing organ, eye and tissue donation. Another subject that is near and dear to his heart.\r\n\r\n<strong>James Wood: What made you decide to do a Christmas album?</strong>\r\n\r\nScott MacIntyre: Shortly after I left Idol back in 2009, I did a Christmas EP that included my original song, “Christmas Angel”. Since then, my fans have been asking for one, so this is my first full-length Christmas album.\r\n\r\n<strong>How did you determine which songs to include?</strong>\r\n\r\nThere are so many great Christmas songs, but in choosing material for the album I didn’t want to do anything that was too “surfacy”. I wanted to stay true to the melodies, but also wanted to dig into the atmosphere and sound scape of each song and create some really interesting textures.\r\n\r\n<strong>Tell me a little about the title track, “Christmas In Paris”.</strong>\r\n\r\nI wrote it with two amazing songwriters, Ryan Hydro and Aaron Steenhoven. Ryan was the one who came up with the title and as soon as I heard it, I knew it was going to be something that we could really dig into. Sure enough, once we started writing, we could all tell that it was going to be magical.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre.jpg\"><img class=\"alignleft size-medium wp-image-1444\" alt=\"scottmacintyre\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre-300x200.jpg\" width=\"300\" height=\"200\" /></a>What can fans expect from your new album due next year?</strong>\r\n\r\nThe songs for the album will represent another arrival point for me. It’s been an incredible journey having the privilege of working with more amazing songwriters like Cindy Morgan, Steve Dean, Richie Fike and Kyle Lee. Every song on the new album relates to my story and I hope to everyone’s own story as well in some way. It’s going to be a very meaningful album.\r\n\r\n<strong>Let’s discuss your musical background.</strong>\r\n\r\nI actually started messing around on the piano when I was almost two. I think because of my blindness and not being able to experience the world visually like other people do, I was drawn more to the world of sound. I was just fascinated by hearing the pure tone. Up until I was 15 everything that I played was classical, but I remember my Dad would drive me to school and on the way we’d listen to the pop music station on the radio. It was one of the first times that I was exposed to bands like Creed, Train, Vertical Horizon and Tool. I started picking up on patterns in the music and realized that what they were doing was pretty much the same as classical music. It was just represented differently. It was different from a symphony in that you didn’t have to guess it’s interpretation to understand the story. The words and melody were right there. From that point, I started to think that if I could tell stories with my gift, it could be something that everyone could relate to. It would be a powerful way to connect with people and I knew right then that it was the direction that I wanted to go.\r\n\r\n<strong>Tell me about how you came to be involved with Donate Life America.</strong>\r\n\r\nWhen I was 19, I found out that I had Stage 4 kidney failure. It was a scary time and I went through a lot of adversity trying to figure out what my future was going to be like. I eventually became so sick that I was unable to play piano in my own home. Music is like living and breathing to me, so it was pretty devastating. I was on dialysis three times a week for hours on end having a machine do what my kidneys couldn’t. Then in 2007, the wife of my former piano teacher from college donated her kidney and saved my life. Less than a year later, I auditioned for American Idol. I never really talked about any of it until my book came out last year, but I wanted to share that part of my story with people.\r\n\r\nWhen I met the president of Donate Life (David Fleming), I was instantly drawn to the organization and what they do. It’s something that I can really stand behind because I would not be here today if it wasn’t for that life saving gift. It’s so easy to become an organ donor. It only takes a few minutes to designate yourself as one and what better gift is there than to be able to give the gift of life to the thousands of people who are waiting for life saving transplants.\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Scott MacIntyre Talks Christmas Album, New Music','','inherit','open','open','','1442-revision-v1','','','2014-01-02 21:10:41','2014-01-03 03:10:41','',1442,'http://www.earthhertzrecords.com/2014/01/1442-revision-v1/',0,'revision','',0),(1449,2,'2014-01-02 21:12:43','2014-01-03 03:12:43','Is there a band more recognizable than The Beatles? When searching for the Best Rock Band of All-Time the answer was unanimous. But search for the answer to this question, \"Who is the fifth Beatle?\" and amazingly you will not find the real answer.\r\n\r\nOn June 3, 1964 the fate of a successful, but small-time drummer would change forever. Jimmie Nicol would become the fifth Beatle, if only for 13 days, and it would change the trajectory of his life in a way no one could have predicted.\r\n\r\nThis is a story that clearly would have never been told if not for the painstaking research done by Jim Berkenstadt. He took what was barely enough material to write an article and meticulously followed the movements of this mysterious person who replaced Ringo Starr for thirteen days on the Beatles first World Tour. <em>The Beatle Who Vanished</em> is a fascinating look inside the history of rock and roll in 1960s London, and the music industry\'s attempt to create pop stars by controlling and molding the musicians who were discovering and exploring this rapidly changing music scene.\r\n\r\nJimmie Nicol\'s life was intricately entwined with the birth of Rock and Roll. As Berkenstadt uncovered Nicol\'s history, he discovered a drummer so well regarded that, in 1964, his destiny was most surely on the path for fame. No one denied that Nicol\'s skills were among the top in the clubs and music studios of London, he was well known for his versatility; moving between jazz and rock easily and even combining the two. Often asked to play with many up and coming bands, he was making a decent living as a musician and had become a staple as a session drummer. He was also the drummer for a series called Top Six, a weekly recording of the Top Six hits, often covering Beatles songs to perfection. Who could know how important that would be?\r\n\r\nJust when it seemed Jimmie\'s ship had come in, becoming the permanent drummer for Georgie Fame and The Blue Flames, he and his wife were living a comfortable life, and he was guaranteed work at something he loved; his life would take one more turn. Paul McCartney would personally call Georgie Fame and ask if they could \"borrow\" his drummer Nicols.\r\n\r\nThe rest they say, is history. But it wasn\'t, not for us, not for him. It is what happened after this amazing story that was a mystery for so many years. Jimmie was a tried and true Beatle for 13 days, it may not seem like a long time, but as you read about the intensity of the touring, traveling and riot like interaction with fans, one can see how it felt like a lifetime for Jimmie. Nichol joined the Beatles as the crescendo of Beatlemania was beginning, but he was ill equipped to be at the center of such fame and adulation. Paul McCartney befriended Jimmie and often asked him if \"it was getting better?\" Jimmie\'s response? \"It\'s getting better all the time.\" After thirteen days of playing multiple shows a day, their songs felt like his songs, and just as he began to feel like a \"real\" Beatle, it was ripped away from him.\r\n\r\nEven for those who knew Jimmie well, no one could understand that feeling. He went from being a <em>Beatle</em> to being plain old Jimmie in one day. His attempt at recreating that fame, his subsequent travels, and his disappearance and supposed death are the riveting plots of this wonderful mystery of a biography. Jim Berkenstadt does something for Jimmie that he could never do, he showcases his amazing talent and paints a picture so clear that when you finish this book you will feel like you knew Jimmie all along.\r\n\r\nReview by Jen Kehl.\r\n\r\n<strong>Jen Kehl is a writer who blogs at My Skewed View htttp://jenkehl.com and created the music site Raised on the Radio <a href=\"http://raisedontheradio.com/\" target=\"_blank\" rel=\"nofollow\">http://raisedontheradio.com</a>. She is also a published author as part of the anthology The Mother of All Meltdowns available on Amazon. Connect with her on twitter <a href=\"https://twitter.com/jenkehl\" target=\"_blank\" rel=\"nofollow\">https://twitter.com/jenkehl</a> and Google+ <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\" target=\"_blank\" rel=\"nofollow\">https://plus.google.com/u/0/+JenniferKehl/posts</a></strong>','\"The Beatle Who Vanished\" by Jim Berkenstadt: A Book Review','','inherit','open','open','','1437-revision-v1','','','2014-01-02 21:12:43','2014-01-03 03:12:43','',1437,'http://www.earthhertzrecords.com/2014/01/1437-revision-v1/',0,'revision','',0),(1452,2,'2014-01-06 07:14:49','2014-01-06 13:14:49','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg\"><img class=\"alignright size-full wp-image-1443\" alt=\"macintyre\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/macintyre.jpg\" width=\"298\" height=\"300\" /></a>Shortly after his eighth place finish on American Idol in 2009 singer/songwriter <a href=\"http://scottmacintyre.com/\">Scott MacIntyre</a> released an EP of Christmas music called <em>Christmas Angel</em>. Since that time, fans have been clamoring for a more full-length version of holiday themed material, and MacIntyre’s new album, <em>Christmas In Paris</em> delivers the goods. His fresh take on traditional songs of the season combined with two original compositions<em>(including the title track)</em> is sure to become a part of holiday tradition.\r\n\r\n2013 has been a big year for MacIntyre. In addition to the new Christmas album, he continues to speak around the country about his book <a href=\"http://www.amazon.com/Faith-Not-Sight-Inspirational-Life-Threatening/dp/0849947219\">“By Faith Not By Sight”</a>, which tells his personal story about overcoming adversity. He’s also performed shows with the likes of The Band Perry, Jonas Brothers and Alice Cooper. MacIntyre even relocated from Arizona to Franklin, TN to be closer to the creative community, and is in production for his next studio album with an anticipated Spring 2014 release.\r\n\r\nI spoke to him about his music as well as his involvement with <a href=\"http://donatelife.net/\">Donate Life America</a>; an alliance of organizations and state teams across the U.S. committed to increasing organ, eye and tissue donation. Another subject that is near and dear to his heart.\r\n\r\n<strong>James Wood: What made you decide to do a Christmas album?</strong>\r\n\r\nScott MacIntyre: Shortly after I left Idol back in 2009, I did a Christmas EP that included my original song, “Christmas Angel”. Since then, my fans have been asking for one, so this is my first full-length Christmas album.\r\n\r\n<strong>How did you determine which songs to include?</strong>\r\n\r\nThere are so many great Christmas songs, but in choosing material for the album I didn’t want to do anything that was too “surfacy”. I wanted to stay true to the melodies, but also wanted to dig into the atmosphere and sound scape of each song and create some really interesting textures.\r\n\r\n<strong>Tell me a little about the title track, “Christmas In Paris”.</strong>\r\n\r\nI wrote it with two amazing songwriters, Ryan Hydro and Aaron Steenhoven. Ryan was the one who came up with the title and as soon as I heard it, I knew it was going to be something that we could really dig into. Sure enough, once we started writing, we could all tell that it was going to be magical.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre.jpg\"><img class=\"alignleft size-medium wp-image-1444\" alt=\"scottmacintyre\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/scottmacintyre-300x200.jpg\" width=\"300\" height=\"200\" /></a>What can fans expect from your new album due next year?</strong>\r\n\r\nThe songs for the album will represent another arrival point for me. It’s been an incredible journey having the privilege of working with more amazing songwriters like Cindy Morgan, Steve Dean, Richie Fike and Kyle Lee. Every song on the new album relates to my story and I hope to everyone’s own story as well in some way. It’s going to be a very meaningful album.\r\n\r\n<strong>Let’s discuss your musical background.</strong>\r\n\r\nI actually started messing around on the piano when I was almost two. I think because of my blindness and not being able to experience the world visually like other people do, I was drawn more to the world of sound. I was just fascinated by hearing the pure tone. Up until I was 15 everything that I played was classical, but I remember my Dad would drive me to school and on the way we’d listen to the pop music station on the radio. It was one of the first times that I was exposed to bands like Creed, Train, Vertical Horizon and Tool. I started picking up on patterns in the music and realized that what they were doing was pretty much the same as classical music. It was just represented differently. It was different from a symphony in that you didn’t have to guess it’s interpretation to understand the story. The words and melody were right there. From that point, I started to think that if I could tell stories with my gift, it could be something that everyone could relate to. It would be a powerful way to connect with people and I knew right then that it was the direction that I wanted to go.\r\n\r\n<strong>Tell me about how you came to be involved with Donate Life America.</strong>\r\n\r\nWhen I was 19, I found out that I had Stage 4 kidney failure. It was a scary time and I went through a lot of adversity trying to figure out what my future was going to be like. I eventually became so sick that I was unable to play piano in my own home. Music is like living and breathing to me, so it was pretty devastating. I was on dialysis three times a week for hours on end having a machine do what my kidneys couldn’t. Then in 2007, the wife of my former piano teacher from college donated her kidney and saved my life. Less than a year later, I auditioned for American Idol. I never really talked about any of it until my book came out last year, but I wanted to share that part of my story with people.\r\n\r\nWhen I met the president of Donate Life (David Fleming), I was instantly drawn to the organization and what they do. It’s something that I can really stand behind because I would not be here today if it wasn’t for that life saving gift. It’s so easy to become an organ donor. It only takes a few minutes to designate yourself as one and what better gift is there than to be able to give the gift of life to the thousands of people who are waiting for life saving transplants.\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','A Conversation with Scott MacIntyre ','','inherit','open','open','','1442-revision-v1','','','2014-01-06 07:14:49','2014-01-06 13:14:49','',1442,'http://www.earthhertzrecords.com/2014/01/1442-revision-v1/',0,'revision','',0),(1453,2,'2014-01-08 07:37:04','2014-01-08 13:37:04','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/tim-butler.jpg\"><img class=\"alignright size-medium wp-image-1455\" alt=\"tim-butler\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/tim-butler-300x226.jpg\" width=\"300\" height=\"226\" /></a>Guitarist <a href=\"http://www.reverbnation.com/timbutler\">Tim Butler’s</a> love of music goes back much further than the twenty years he’s been performing in the Philadelphia area. From his early years singing in boys choirs, to his stints in high school musicals and teaching himself to play the instrument he loves, Butler is the pure definition of singer songwriter.\r\n\r\nHis catchy, hook ridden original songs have received lavish praise and his tasteful renditions of songs by such artists as Crowded House and Mister Mister have been pleasing audiences for more than two decades. But the thing that really makes Butler unique is that he’s just as comfortable performing solo as he is with a full-band; both of which being a must see.\r\n\r\nButler took a bit of a hiatus in 2013, but will return to his native Lehigh Valley for a show at the Nazareth Center for the Arts on Saturday, January 18th. In addition, he’s also been working on a CD of brand new material that’s expected to be released in February. I spoke with him about both and more in this exclusive interview.<strong></strong>\r\n\r\n<strong>James Wood: Tell me a little about your upcoming show.</strong>\r\n\r\nTim Butler: The show will feature 2 performers. Opening will be a musician by the name of “Not for Coltrane.” He’s local to the Lehigh Valley and has a very cool alt-folk-rock type of sound. Due to some of the constraints of the venue, I will not be playing full-band and instead will be doing a duo performance with my long time bass player, Rick Delana.\r\n\r\n<strong>How would you describe the sound of your music?</strong>\r\n\r\nI have really been described as many things: rock, pop, alt folk, alt country, folk rock, it goes on an on. Hearing that entertains me, but it also makes me realize that listeners can hear a lot of different things. I will tell you that I cut my teeth on pop and rock. Structurally, most of my songs are pop tunes. I love hooks and big choruses. But there is definitely a “rock” sound to many of my tunes, especially when I’m playing with the full band.\r\n\r\n<em></em><strong>What are your thoughts on performing cover material?</strong>\r\n\r\nI’m primarily an artist that does original music but I do enjoy sprinkling in some covers. Sometimes I’ll play something because someone asks me to, but 90% of the time the covers that I do really mean something to me or sometimes its just because I like the song or band.\r\n\r\n<strong>Can you give us an update on your new CD?</strong>\r\n\r\nIt’s likely the new recording will be ready to drop by early to mid February. Most of the tracking is completed. There’s still some lead guitar work that needs to be done and then we are on to mixing and engineering.\r\n\r\n<strong>Is there a particular song from the new CD that excites you?\r\n</strong>\r\nOne of my faves from the new CD is a song called “We’ll Be Happy.” It comes from a place that is my bread and butter: pop, with lush harmonies. It may sound a little “Beach Boys”, but I’m ok with that. I went in that direction with the instrumentation and harmonies. I didn’t fight it at all. In fact, with this CD I decided at the outset to just let the songs go wherever they wanted to go. Every song on this release I just let happen.\r\n\r\n<strong>What’s your songwriting process like?</strong>\r\n\r\nI am primarily a music first kind of guy. Sometimes a song will start with just a riff or a chorus structure or sometimes it might just be a “sound.” From there, I usually work through melody lines, etc. By that time, I’ve typically created a theme in my head and create lyrics based on that. It’s really worked well for me.\r\n\r\n<strong>When did you first get bitten by the music bug?</strong>\r\n\r\nI started singing at a very young age. I was in a touring boys choir starting in 5th grade and sang in choirs and in stage performances for a very long time. I took piano lessons for a short while and didn’t pick up a guitar until my senior year of college.\r\n\r\n<strong>Tell me a little about your music experience in high school.</strong>\r\n\r\nI have a lot of very fond memories of high school. It was there that I decided that I wanted to stick with music. It solidified that I would have music in my life in some organized fashion even if I didn’t major in it in college.\r\n\r\nComing into EAHS [Easton Area High School], I was actually all “choired out” and avoided singing altogether. I remember people were always trying to get me involved, but I just wasn’t into it. Then one day, Ed Milisits [EAHS choir director] tracked me down and “drafted” me. I remember he was very persuasive about it and I ended up joining the Concert Choir and also being in a few school musicals. Those years were a big part of my life.\r\n\r\n<strong>What are you most looking forward to in 2014?\r\n</strong>\r\n\r\nI have been doing this pretty much non-stop since 1994 and last year decided to take a bit of a break (although I did perform a few random shows and at fundraising events). I discovered that I really missed making music, so getting back in the studio was GREAT! I’m very excited about 2014. Although I won’t be setting out onto a full-fledged tour, I will be doing more shows that give me the opportunity to share some music. For me, I’m blown away with everything I’ve been blessed with over the years and am just so thankful! Musically, I hope to continue to do something that I really love to do. If someone likes it, loves it or it can mean something to them, then that’s a huge win for me.\r\n\r\nTim Butler Will Perform at the <strong>Nazareth Center for the Arts</strong>\r\n30 Belvidere St. Nazareth, PA 18064\r\n<strong>January 18th, 2014 @ 7:00pm</strong>\r\nTickets are $8 in advance / $10 @ door\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Singer-Songwriter Tim Butler Talks Nazareth Show And New Music','','publish','open','open','','singer-songwriter-tim-butler-talks-nazareth-show-and-new-music','','','2014-01-08 07:37:04','2014-01-08 13:37:04','',0,'http://www.earthhertzrecords.com/?p=1453',0,'post','',0),(1454,2,'2014-01-07 19:14:17','2014-01-08 01:14:17','Guitarist <a href=\"http://www.reverbnation.com/timbutler\">Tim Butler’s</a> love of music goes back much further than the twenty years he’s been performing in the Philadelphia area. From his early years singing in boys choirs, to his stints in high school musicals and teaching himself to play the instrument he loves, Butler is the pure definition of singer songwriter.\r\n\r\nHis catchy, hook ridden original songs have received lavish praise and his tasteful renditions of songs by such artists as Crowded House and Mister Mister have been pleasing audiences for more than two decades. But the thing that really makes Butler unique is that he’s just as comfortable performing solo as he is with a full-band; both of which being a must see.\r\n\r\nButler took a bit of a hiatus in 2013, but will return to his native Lehigh Valley for a show at the Nazareth Center for the Arts on Saturday, January 18th. In addition, he’s also been working on a CD of brand new material that’s expected to be released in February. I spoke with him about both and more in this exclusive interview.<strong></strong>\r\n\r\n<strong>James wood: Tell me a little about your upcoming show.</strong>\r\n\r\nTim Butler: The show will feature 2 performers. Opening will be a musician by the name of “Not for Coltrane.” He’s local to the Lehigh Valley and has a very cool alt-folk-rock type of sound. Due to some of the constraints of the venue, I will not be playing full-band and instead will be doing a duo performance with my long time bass player, Rick Delana.\r\n\r\n<strong>How would you describe the sound of your music?</strong>\r\n\r\nI have really been described as many things: rock, pop, alt folk, alt country, folk rock, it goes on an on. Hearing that entertains me, but it also makes me realize that listeners can hear a lot of different things. I will tell you that I cut my teeth on pop and rock. Structurally, most of my songs are pop tunes. I love hooks and big choruses. But there is definitely a “rock” sound to many of my tunes, especially when I’m playing with the full band.\r\n\r\n<em></em><strong>What are your thoughts on performing cover material?</strong>\r\n\r\nI’m primarily an artist that does original music but I do enjoy sprinkling in some covers. Sometimes I’ll play something because someone asks me to, but 90% of the time the covers that I do really mean something to me or sometimes its just because I like the song or band.\r\n\r\n<strong>Can you give us an update on your new CD?</strong>\r\n\r\nIt’s likely the new recording will be ready to drop by early to mid February. Most of the tracking is completed. There’s still some lead guitar work that needs to be done and then we are on to mixing and engineering.\r\n\r\n<strong>Is there a particular song from the new CD that excites you?\r\n</strong>\r\nOne of my faves from the new CD is a song called “We’ll Be Happy.” It comes from a place that is my bread and butter: pop, with lush harmonies. It may sound a little “Beach Boys”, but I’m ok with that. I went in that direction with the instrumentation and harmonies. I didn’t fight it at all. In fact, with this CD I decided at the outset to just let the songs go wherever they wanted to go. Every song on this release I just let happen.\r\n\r\n<strong>What’s your songwriting process like?</strong>\r\n\r\nI am primarily a music first kind of guy. Sometimes a song will start with just a riff or a chorus structure or sometimes it might just be a “sound.” From there, I usually work through melody lines, etc. By that time, I’ve typically created a theme in my head and create lyrics based on that. It’s really worked well for me.\r\n\r\n<strong>When did you first get bitten by the music bug?</strong>\r\n\r\nI started singing at a very young age. I was in a touring boys choir starting in 5th grade and sang in choirs and in stage performances for a very long time. I took piano lessons for a short while and didn’t pick up a guitar until my senior year of college.\r\n\r\n<strong>Tell me a little about your music experience in high school.</strong>\r\n\r\nI have a lot of very fond memories of high school. It was there that I decided that I wanted to stick with music. It solidified that I would have music in my life in some organized fashion even if I didn’t major in it in college.\r\n\r\nComing into EAHS [Easton Area High School], I was actually all “choired out” and avoided singing altogether. I remember people were always trying to get me involved, but I just wasn’t into it. Then one day, Ed Milisits [EAHS choir director] tracked me down and “drafted” me. I remember he was very persuasive about it and I ended up joining the Concert Choir and also being in a few school musicals. Those years were a big part of my life.\r\n\r\n<strong>What are you most looking forward to in 2014?\r\n</strong>\r\n\r\nI have been doing this pretty much non-stop since 1994 and last year decided to take a bit of a break (although I did perform a few random shows and at fundraising events). I discovered that I really missed making music, so getting back in the studio was GREAT! I’m very excited about 2014. Although I won’t be setting out onto a full-fledged tour, I will be doing more shows that give me the opportunity to share some music. For me, I’m blown away with everything I’ve been blessed with over the years and am just so thankful! Musically, I hope to continue to do something that I really love to do. If someone likes it, loves it or it can mean something to them, then that’s a huge win for me.\r\n\r\nTim Butler Will Perform at the <strong>Nazareth Center for the Arts</strong>\r\n30 Belvidere St. Nazareth, PA 18064\r\n<strong>January 18th, 2014 @ 7:00pm</strong>\r\nTickets are $8 in advance / $10 @ door\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Singer-Songwriter Tim Butler Talks Nazareth Show And New Music','','inherit','open','open','','1453-revision-v1','','','2014-01-07 19:14:17','2014-01-08 01:14:17','',1453,'http://www.earthhertzrecords.com/2014/01/1453-revision-v1/',0,'revision','',0),(1455,2,'2014-01-07 19:29:37','2014-01-08 01:29:37','','tim-butler','','inherit','open','open','','tim-butler','','','2014-01-07 19:29:37','2014-01-08 01:29:37','',1453,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/tim-butler.jpg',0,'attachment','image/jpeg',0),(1456,2,'2014-01-07 19:29:52','2014-01-08 01:29:52','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/tim-butler.jpg\"><img class=\"alignright size-medium wp-image-1455\" alt=\"tim-butler\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/tim-butler-300x226.jpg\" width=\"300\" height=\"226\" /></a>Guitarist <a href=\"http://www.reverbnation.com/timbutler\">Tim Butler’s</a> love of music goes back much further than the twenty years he’s been performing in the Philadelphia area. From his early years singing in boys choirs, to his stints in high school musicals and teaching himself to play the instrument he loves, Butler is the pure definition of singer songwriter.\r\n\r\nHis catchy, hook ridden original songs have received lavish praise and his tasteful renditions of songs by such artists as Crowded House and Mister Mister have been pleasing audiences for more than two decades. But the thing that really makes Butler unique is that he’s just as comfortable performing solo as he is with a full-band; both of which being a must see.\r\n\r\nButler took a bit of a hiatus in 2013, but will return to his native Lehigh Valley for a show at the Nazareth Center for the Arts on Saturday, January 18th. In addition, he’s also been working on a CD of brand new material that’s expected to be released in February. I spoke with him about both and more in this exclusive interview.<strong></strong>\r\n\r\n<strong>James wood: Tell me a little about your upcoming show.</strong>\r\n\r\nTim Butler: The show will feature 2 performers. Opening will be a musician by the name of “Not for Coltrane.” He’s local to the Lehigh Valley and has a very cool alt-folk-rock type of sound. Due to some of the constraints of the venue, I will not be playing full-band and instead will be doing a duo performance with my long time bass player, Rick Delana.\r\n\r\n<strong>How would you describe the sound of your music?</strong>\r\n\r\nI have really been described as many things: rock, pop, alt folk, alt country, folk rock, it goes on an on. Hearing that entertains me, but it also makes me realize that listeners can hear a lot of different things. I will tell you that I cut my teeth on pop and rock. Structurally, most of my songs are pop tunes. I love hooks and big choruses. But there is definitely a “rock” sound to many of my tunes, especially when I’m playing with the full band.\r\n\r\n<em></em><strong>What are your thoughts on performing cover material?</strong>\r\n\r\nI’m primarily an artist that does original music but I do enjoy sprinkling in some covers. Sometimes I’ll play something because someone asks me to, but 90% of the time the covers that I do really mean something to me or sometimes its just because I like the song or band.\r\n\r\n<strong>Can you give us an update on your new CD?</strong>\r\n\r\nIt’s likely the new recording will be ready to drop by early to mid February. Most of the tracking is completed. There’s still some lead guitar work that needs to be done and then we are on to mixing and engineering.\r\n\r\n<strong>Is there a particular song from the new CD that excites you?\r\n</strong>\r\nOne of my faves from the new CD is a song called “We’ll Be Happy.” It comes from a place that is my bread and butter: pop, with lush harmonies. It may sound a little “Beach Boys”, but I’m ok with that. I went in that direction with the instrumentation and harmonies. I didn’t fight it at all. In fact, with this CD I decided at the outset to just let the songs go wherever they wanted to go. Every song on this release I just let happen.\r\n\r\n<strong>What’s your songwriting process like?</strong>\r\n\r\nI am primarily a music first kind of guy. Sometimes a song will start with just a riff or a chorus structure or sometimes it might just be a “sound.” From there, I usually work through melody lines, etc. By that time, I’ve typically created a theme in my head and create lyrics based on that. It’s really worked well for me.\r\n\r\n<strong>When did you first get bitten by the music bug?</strong>\r\n\r\nI started singing at a very young age. I was in a touring boys choir starting in 5th grade and sang in choirs and in stage performances for a very long time. I took piano lessons for a short while and didn’t pick up a guitar until my senior year of college.\r\n\r\n<strong>Tell me a little about your music experience in high school.</strong>\r\n\r\nI have a lot of very fond memories of high school. It was there that I decided that I wanted to stick with music. It solidified that I would have music in my life in some organized fashion even if I didn’t major in it in college.\r\n\r\nComing into EAHS [Easton Area High School], I was actually all “choired out” and avoided singing altogether. I remember people were always trying to get me involved, but I just wasn’t into it. Then one day, Ed Milisits [EAHS choir director] tracked me down and “drafted” me. I remember he was very persuasive about it and I ended up joining the Concert Choir and also being in a few school musicals. Those years were a big part of my life.\r\n\r\n<strong>What are you most looking forward to in 2014?\r\n</strong>\r\n\r\nI have been doing this pretty much non-stop since 1994 and last year decided to take a bit of a break (although I did perform a few random shows and at fundraising events). I discovered that I really missed making music, so getting back in the studio was GREAT! I’m very excited about 2014. Although I won’t be setting out onto a full-fledged tour, I will be doing more shows that give me the opportunity to share some music. For me, I’m blown away with everything I’ve been blessed with over the years and am just so thankful! Musically, I hope to continue to do something that I really love to do. If someone likes it, loves it or it can mean something to them, then that’s a huge win for me.\r\n\r\nTim Butler Will Perform at the <strong>Nazareth Center for the Arts</strong>\r\n30 Belvidere St. Nazareth, PA 18064\r\n<strong>January 18th, 2014 @ 7:00pm</strong>\r\nTickets are $8 in advance / $10 @ door\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Singer-Songwriter Tim Butler Talks Nazareth Show And New Music','','inherit','open','open','','1453-revision-v1','','','2014-01-07 19:29:52','2014-01-08 01:29:52','',1453,'http://www.earthhertzrecords.com/2014/01/1453-revision-v1/',0,'revision','',0),(1457,2,'2014-01-07 19:31:36','2014-01-08 01:31:36','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/tim-butler.jpg\"><img class=\"alignright size-medium wp-image-1455\" alt=\"tim-butler\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/tim-butler-300x226.jpg\" width=\"300\" height=\"226\" /></a>Guitarist <a href=\"http://www.reverbnation.com/timbutler\">Tim Butler’s</a> love of music goes back much further than the twenty years he’s been performing in the Philadelphia area. From his early years singing in boys choirs, to his stints in high school musicals and teaching himself to play the instrument he loves, Butler is the pure definition of singer songwriter.\r\n\r\nHis catchy, hook ridden original songs have received lavish praise and his tasteful renditions of songs by such artists as Crowded House and Mister Mister have been pleasing audiences for more than two decades. But the thing that really makes Butler unique is that he’s just as comfortable performing solo as he is with a full-band; both of which being a must see.\r\n\r\nButler took a bit of a hiatus in 2013, but will return to his native Lehigh Valley for a show at the Nazareth Center for the Arts on Saturday, January 18th. In addition, he’s also been working on a CD of brand new material that’s expected to be released in February. I spoke with him about both and more in this exclusive interview.<strong></strong>\r\n\r\n<strong>James Wood: Tell me a little about your upcoming show.</strong>\r\n\r\nTim Butler: The show will feature 2 performers. Opening will be a musician by the name of “Not for Coltrane.” He’s local to the Lehigh Valley and has a very cool alt-folk-rock type of sound. Due to some of the constraints of the venue, I will not be playing full-band and instead will be doing a duo performance with my long time bass player, Rick Delana.\r\n\r\n<strong>How would you describe the sound of your music?</strong>\r\n\r\nI have really been described as many things: rock, pop, alt folk, alt country, folk rock, it goes on an on. Hearing that entertains me, but it also makes me realize that listeners can hear a lot of different things. I will tell you that I cut my teeth on pop and rock. Structurally, most of my songs are pop tunes. I love hooks and big choruses. But there is definitely a “rock” sound to many of my tunes, especially when I’m playing with the full band.\r\n\r\n<em></em><strong>What are your thoughts on performing cover material?</strong>\r\n\r\nI’m primarily an artist that does original music but I do enjoy sprinkling in some covers. Sometimes I’ll play something because someone asks me to, but 90% of the time the covers that I do really mean something to me or sometimes its just because I like the song or band.\r\n\r\n<strong>Can you give us an update on your new CD?</strong>\r\n\r\nIt’s likely the new recording will be ready to drop by early to mid February. Most of the tracking is completed. There’s still some lead guitar work that needs to be done and then we are on to mixing and engineering.\r\n\r\n<strong>Is there a particular song from the new CD that excites you?\r\n</strong>\r\nOne of my faves from the new CD is a song called “We’ll Be Happy.” It comes from a place that is my bread and butter: pop, with lush harmonies. It may sound a little “Beach Boys”, but I’m ok with that. I went in that direction with the instrumentation and harmonies. I didn’t fight it at all. In fact, with this CD I decided at the outset to just let the songs go wherever they wanted to go. Every song on this release I just let happen.\r\n\r\n<strong>What’s your songwriting process like?</strong>\r\n\r\nI am primarily a music first kind of guy. Sometimes a song will start with just a riff or a chorus structure or sometimes it might just be a “sound.” From there, I usually work through melody lines, etc. By that time, I’ve typically created a theme in my head and create lyrics based on that. It’s really worked well for me.\r\n\r\n<strong>When did you first get bitten by the music bug?</strong>\r\n\r\nI started singing at a very young age. I was in a touring boys choir starting in 5th grade and sang in choirs and in stage performances for a very long time. I took piano lessons for a short while and didn’t pick up a guitar until my senior year of college.\r\n\r\n<strong>Tell me a little about your music experience in high school.</strong>\r\n\r\nI have a lot of very fond memories of high school. It was there that I decided that I wanted to stick with music. It solidified that I would have music in my life in some organized fashion even if I didn’t major in it in college.\r\n\r\nComing into EAHS [Easton Area High School], I was actually all “choired out” and avoided singing altogether. I remember people were always trying to get me involved, but I just wasn’t into it. Then one day, Ed Milisits [EAHS choir director] tracked me down and “drafted” me. I remember he was very persuasive about it and I ended up joining the Concert Choir and also being in a few school musicals. Those years were a big part of my life.\r\n\r\n<strong>What are you most looking forward to in 2014?\r\n</strong>\r\n\r\nI have been doing this pretty much non-stop since 1994 and last year decided to take a bit of a break (although I did perform a few random shows and at fundraising events). I discovered that I really missed making music, so getting back in the studio was GREAT! I’m very excited about 2014. Although I won’t be setting out onto a full-fledged tour, I will be doing more shows that give me the opportunity to share some music. For me, I’m blown away with everything I’ve been blessed with over the years and am just so thankful! Musically, I hope to continue to do something that I really love to do. If someone likes it, loves it or it can mean something to them, then that’s a huge win for me.\r\n\r\nTim Butler Will Perform at the <strong>Nazareth Center for the Arts</strong>\r\n30 Belvidere St. Nazareth, PA 18064\r\n<strong>January 18th, 2014 @ 7:00pm</strong>\r\nTickets are $8 in advance / $10 @ door\r\n\r\nInterview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>','Singer-Songwriter Tim Butler Talks Nazareth Show And New Music','','inherit','open','open','','1453-revision-v1','','','2014-01-07 19:31:36','2014-01-08 01:31:36','',1453,'http://www.earthhertzrecords.com/2014/01/1453-revision-v1/',0,'revision','',0),(1458,2,'2014-01-13 07:39:01','2014-01-13 13:39:01','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance.png\"><img class=\"alignright size-full wp-image-1459\" alt=\"reomoondance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance.png\" width=\"300\" height=\"268\" /></a>It was a cold winter’s night back in 1985 when I braved the frigid February elements and drove my beat up rickety Toyota station wagon to a local college gymnasium to see REO Speedwagon. I was just a wiry, sixteen-year old at the time. A novice of the live band brouhaha and attending one of my very first concerts.\r\n\r\nI’m not sure whether it was REO’s performance that night, or the fact that I was in the thick of what would one day become known as the “classic rock” era of music <em>[more likely a combination of the two]</em>, but that night still reigns as one of my favorite shows ever.\r\n\r\nNow almost thirty years later and with 40 million albums sold world-wide and thousands of more shows under their belts, attending an REO Speedwagon concert isn’t just an event, it’s an experience<em>.</em> I liken it to being witness to the opening of a time capsule of classic rock goodness.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance-2.jpg\"><img class=\"alignleft size-medium wp-image-1460\" alt=\"reomoondance-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance-2-300x297.jpg\" width=\"300\" height=\"297\" /></a>A lot of people seem to forget that it was REO Speedwagon’s mid-west work ethic in the early 1970s that paved the way for bands like Styx, Kansas and Cheap Trick. They’re also one of few bands from that so-called bygone era who still continuously tour year after year. And why not? The band’s blockbuster album, <em>Hi Infidelity</em> sold more than 9 million copies alone and spent an astounding 15 weeks in the #1 slot. A feat that’s simply unattainable in music today.\r\n\r\nREO’s new album/DVD, <em>Live at Moondance Jam</em> was recorded in 2010 at the annual mid-summer festival in Walker, MN and once again showcases the band at its absolute finest. A performance that begins with a superfecta of songs from the Fidelity album before bounding around the Speedwagon catalog of hits that include “Roll With The Changes”, “Time For Me To Fly” and “Ridin’ The Storm Out”. Every song on this live album package was at one time or another burned out on a vinyl turntable or cassette deck.\r\n\r\nConsisting of lead singer/guitarist Kevin Cronin<em> (who’s penned not one, but two #1 hits; both of which are performed here)</em>, Neal Doughty <em>(founding member of the band)</em>; Bruce Hall <em>(Bass)</em>; Dave Amato <em>(Lead guitar/Vocals)</em> and Bryan Hitt<em> (Drums),</em> REO Speedwagon continues to prove that real rock is alive and well and hard work pays off.\r\n\r\n<em>Live At Moondance</em> <em>Jam</em> is a concert experience you won’t have to brave the elements to attend, but one that’s a must have for your collection.\r\n\r\n<strong>Tracklisting:</strong>\r\n\r\n<strong>CD: </strong><em>Don’t Let Him Go; Keep on Loving You; In Your Letter; Take It on the Run; Keep Pushin’; Golden Country; Can’t Fight This Feeling; Like You Do; Time for Me to Fly; Back on the Road Again; Roll with the Changes; Ridin’ the Storm Out; 157 Riverside Avenue.</em>\r\n\r\n<strong>DVD / Blu Ray: </strong><em>Don’t Let Him Go; Keep on Loving You; In Your Letter; Take It on the Run; Keep Pushin’; Golden Country; Can’t Fight This Feeling; Like You Do; Time for Me to Fly; Back on the Road Again; Roll with the Changes; Ridin’ the Storm Out; 157 Riverside Avenue. Bonus : Interview with Kevin Cronin</em>\r\n\r\n<strong>REO Speedwagon:</strong>\r\n\r\nNeal Doughty – keyboards, organ, piano, synthesizer\r\nKevin Cronin – lead vocals, rhythm guitar, piano, keyboards\r\nBruce Hall – bass guitar, vocals\r\nDave Amato – lead guitar, vocals\r\nBryan Hitt – drums, percussion\r\n\r\nReview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>\r\n\r\n ','REO Speedwagon: Live at Moondance Jam','','publish','open','open','','reo-speedwagon-live-at-moondance-jam','','','2014-01-13 07:39:01','2014-01-13 13:39:01','',0,'http://www.earthhertzrecords.com/?p=1458',0,'post','',0),(1459,2,'2014-01-12 18:03:34','2014-01-13 00:03:34','','reomoondance','','inherit','open','open','','reomoondance','','','2014-01-12 18:03:34','2014-01-13 00:03:34','',1458,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance.png',0,'attachment','image/png',0),(1460,2,'2014-01-12 18:04:36','2014-01-13 00:04:36','','reomoondance-2','','inherit','open','open','','reomoondance-2','','','2014-01-12 18:04:36','2014-01-13 00:04:36','',1458,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance-2.jpg',0,'attachment','image/jpeg',0),(1461,2,'2014-01-12 18:05:30','2014-01-13 00:05:30','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance.png\"><img class=\"alignright size-full wp-image-1459\" alt=\"reomoondance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance.png\" width=\"300\" height=\"268\" /></a>It was a cold winter’s night back in 1985 when I braved the frigid February elements and drove my beat up rickety Toyota station wagon to a local college gymnasium to see REO Speedwagon. I was just a wiry, sixteen-year old at the time. A novice of the live band brouhaha and attending one of my very first concerts.\r\n\r\nI’m not sure whether it was REO’s performance that night, or the fact that I was in the thick of what would one day become known as the “classic rock” era of music <em>[more likely a combination of the two]</em>, but that night still reigns as one of my favorite shows ever.\r\n\r\nNow almost thirty years later and with 40 million albums sold world-wide and thousands of more shows under their belts, attending an REO Speedwagon concert isn’t just an event, it’s an experience <em>[and trust me, I\'ve seen many of them].</em> I liken it to being witness to the opening of a time capsule of classic rock goodness.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance-2.jpg\"><img class=\"alignleft size-medium wp-image-1460\" alt=\"reomoondance-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance-2-300x297.jpg\" width=\"300\" height=\"297\" /></a>A lot of people seem to forget that it was REO Speedwagon’s mid-west work ethic in the early 1970s that paved the way for bands like Styx, Kansas and Cheap Trick. They’re also one of few bands from that so-called bygone era who still continuously tour year after year. And why not? The band’s blockbuster album, “<em>Hi Infidelity”</em> sold more than 9 million copies alone and spent an astounding 15 weeks in the #1 slot. A feat that’s simply unattainable in music today.\r\n\r\nREO’s new album/DVD, <em>Live at Moondance Jam</em> was recorded in 2010 at the annual mid-summer festival in Walker, MN and once again showcases the band at its absolute finest. A performance that begins with a superfecta of songs from the Fidelity album before bounding around the Speedwagon catalog of hits that include “Roll With The Changes”, “Time For Me To Fly” and “Ridin’ The Storm Out”. Every song on this live album package was at one time or another burned out on a vinyl turntable or cassette deck.\r\n\r\nConsisting of lead singer/guitarist Kevin Cronin<em> (who’s penned not one, but two #1 hits; both of which are performed here)</em>, Neal Doughty <em>(founding member of the band)</em>; Bruce Hall <em>(Bass)</em>; Dave Amato <em>(Lead guitar/Vocals)</em> and Bryan Hitt<em> (Drums),</em> REO Speedwagon continues to prove that real rock is alive and well and hard work pays off.\r\n\r\n<em>Live At Moondance</em> <em>Jam</em> is a concert experience you won’t have to brave the elements to attend, but one that’s a must have for your collection.\r\n\r\nTracklisting:\r\n\r\n<strong>CD: </strong><em>Don’t Let Him Go; Keep on Loving You; In Your Letter; Take It on the Run; Keep Pushin’; Golden Country; Can’t Fight This Feeling; Like You Do; Time for Me to Fly; Back on the Road Again; Roll with the Changes; Ridin’ the Storm Out; 157 Riverside Avenue.</em>\r\n\r\n<strong>DVD / Blu Ray: </strong><em>Don’t Let Him Go; Keep on Loving You; In Your Letter; Take It on the Run; Keep Pushin’; Golden Country; Can’t Fight This Feeling; Like You Do; Time for Me to Fly; Back on the Road Again; Roll with the Changes; Ridin’ the Storm Out; 157 Riverside Avenue. Bonus : Interview with Kevin Cronin</em>\r\n\r\n<strong>REO Speedwagon:</strong>\r\n\r\nNeal Doughty – keyboards, organ, piano, synthesizer\r\nKevin Cronin – lead vocals, rhythm guitar, piano, keyboards\r\nBruce Hall – bass guitar, vocals\r\nDave Amato – lead guitar, vocals\r\nBryan Hitt – drums, percussion\r\n\r\nReview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>\r\n\r\n ','REO Speedwagon: Live at Moondance Jam','','inherit','open','open','','1458-revision-v1','','','2014-01-12 18:05:30','2014-01-13 00:05:30','',1458,'http://www.earthhertzrecords.com/2014/01/1458-revision-v1/',0,'revision','',0),(1463,2,'2014-01-13 07:30:42','2014-01-13 13:30:42','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance.png\"><img class=\"alignright size-full wp-image-1459\" alt=\"reomoondance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance.png\" width=\"300\" height=\"268\" /></a>It was a cold winter’s night back in 1985 when I braved the frigid February elements and drove my beat up rickety Toyota station wagon to a local college gymnasium to see REO Speedwagon. I was just a wiry, sixteen-year old at the time. A novice of the live band brouhaha and attending one of my very first concerts.\r\n\r\nI’m not sure whether it was REO’s performance that night, or the fact that I was in the thick of what would one day become known as the “classic rock” era of music <em>[more likely a combination of the two]</em>, but that night still reigns as one of my favorite shows ever.\r\n\r\nNow almost thirty years later and with 40 million albums sold world-wide and thousands of more shows under their belts, attending an REO Speedwagon concert isn’t just an event, it’s an experience<em>.</em> I liken it to being witness to the opening of a time capsule of classic rock goodness.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance-2.jpg\"><img class=\"alignleft size-medium wp-image-1460\" alt=\"reomoondance-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance-2-300x297.jpg\" width=\"300\" height=\"297\" /></a>A lot of people seem to forget that it was REO Speedwagon’s mid-west work ethic in the early 1970s that paved the way for bands like Styx, Kansas and Cheap Trick. They’re also one of few bands from that so-called bygone era who still continuously tour year after year. And why not? The band’s blockbuster album, <em>Hi Infidelity</em> sold more than 9 million copies alone and spent an astounding 15 weeks in the #1 slot. A feat that’s simply unattainable in music today.\r\n\r\nREO’s new album/DVD, <em>Live at Moondance Jam</em> was recorded in 2010 at the annual mid-summer festival in Walker, MN and once again showcases the band at its absolute finest. A performance that begins with a superfecta of songs from the Fidelity album before bounding around the Speedwagon catalog of hits that include “Roll With The Changes”, “Time For Me To Fly” and “Ridin’ The Storm Out”. Every song on this live album package was at one time or another burned out on a vinyl turntable or cassette deck.\r\n\r\nConsisting of lead singer/guitarist Kevin Cronin<em> (who’s penned not one, but two #1 hits; both of which are performed here)</em>, Neal Doughty <em>(founding member of the band)</em>; Bruce Hall <em>(Bass)</em>; Dave Amato <em>(Lead guitar/Vocals)</em> and Bryan Hitt<em> (Drums),</em> REO Speedwagon continues to prove that real rock is alive and well and hard work pays off.\r\n\r\n<em>Live At Moondance</em> <em>Jam</em> is a concert experience you won’t have to brave the elements to attend, but one that’s a must have for your collection.\r\n\r\n<strong>Tracklisting:</strong>\r\n\r\n<strong>CD: </strong><em>Don’t Let Him Go; Keep on Loving You; In Your Letter; Take It on the Run; Keep Pushin’; Golden Country; Can’t Fight This Feeling; Like You Do; Time for Me to Fly; Back on the Road Again; Roll with the Changes; Ridin’ the Storm Out; 157 Riverside Avenue.</em>\r\n\r\n<strong>DVD / Blu Ray: </strong><em>Don’t Let Him Go; Keep on Loving You; In Your Letter; Take It on the Run; Keep Pushin’; Golden Country; Can’t Fight This Feeling; Like You Do; Time for Me to Fly; Back on the Road Again; Roll with the Changes; Ridin’ the Storm Out; 157 Riverside Avenue. Bonus : Interview with Kevin Cronin</em>\r\n\r\n<strong>REO Speedwagon:</strong>\r\n\r\nNeal Doughty – keyboards, organ, piano, synthesizer\r\nKevin Cronin – lead vocals, rhythm guitar, piano, keyboards\r\nBruce Hall – bass guitar, vocals\r\nDave Amato – lead guitar, vocals\r\nBryan Hitt – drums, percussion\r\n\r\nReview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>\r\n\r\n ','REO Speedwagon: Live at Moondance Jam','','inherit','open','open','','1458-revision-v1','','','2014-01-13 07:30:42','2014-01-13 13:30:42','',1458,'http://www.earthhertzrecords.com/2014/01/1458-revision-v1/',0,'revision','',0),(1462,2,'2014-01-12 18:09:12','2014-01-13 00:09:12','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance.png\"><img class=\"alignright size-full wp-image-1459\" alt=\"reomoondance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance.png\" width=\"300\" height=\"268\" /></a>It was a cold winter’s night back in 1985 when I braved the frigid February elements and drove my beat up rickety Toyota station wagon to a local college gymnasium to see REO Speedwagon. I was just a wiry, sixteen-year old at the time. A novice of the live band brouhaha and attending one of my very first concerts.\r\n\r\nI’m not sure whether it was REO’s performance that night, or the fact that I was in the thick of what would one day become known as the “classic rock” era of music <em>[more likely a combination of the two]</em>, but that night still reigns as one of my favorite shows ever.\r\n\r\nNow almost thirty years later and with 40 million albums sold world-wide and thousands of more shows under their belts, attending an REO Speedwagon concert isn’t just an event, it’s an experience <em>[and trust me, I\'ve seen many of them].</em> I liken it to being witness to the opening of a time capsule of classic rock goodness.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance-2.jpg\"><img class=\"alignleft size-medium wp-image-1460\" alt=\"reomoondance-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance-2-300x297.jpg\" width=\"300\" height=\"297\" /></a>A lot of people seem to forget that it was REO Speedwagon’s mid-west work ethic in the early 1970s that paved the way for bands like Styx, Kansas and Cheap Trick. They’re also one of few bands from that so-called bygone era who still continuously tour year after year. And why not? The band’s blockbuster album, “<em>Hi Infidelity”</em> sold more than 9 million copies alone and spent an astounding 15 weeks in the #1 slot. A feat that’s simply unattainable in music today.\r\n\r\nREO’s new album/DVD, <em>Live at Moondance Jam</em> was recorded in 2010 at the annual mid-summer festival in Walker, MN and once again showcases the band at its absolute finest. A performance that begins with a superfecta of songs from the Fidelity album before bounding around the Speedwagon catalog of hits that include “Roll With The Changes”, “Time For Me To Fly” and “Ridin’ The Storm Out”. Every song on this live album package was at one time or another burned out on a vinyl turntable or cassette deck.\r\n\r\nConsisting of lead singer/guitarist Kevin Cronin<em> (who’s penned not one, but two #1 hits; both of which are performed here)</em>, Neal Doughty <em>(founding member of the band)</em>; Bruce Hall <em>(Bass)</em>; Dave Amato <em>(Lead guitar/Vocals)</em> and Bryan Hitt<em> (Drums),</em> REO Speedwagon continues to prove that real rock is alive and well and hard work pays off.\r\n\r\n<em>Live At Moondance</em> <em>Jam</em> is a concert experience you won’t have to brave the elements to attend, but one that’s a must have for your collection.\r\n\r\n<strong>Tracklisting:</strong>\r\n\r\n<strong>CD: </strong><em>Don’t Let Him Go; Keep on Loving You; In Your Letter; Take It on the Run; Keep Pushin’; Golden Country; Can’t Fight This Feeling; Like You Do; Time for Me to Fly; Back on the Road Again; Roll with the Changes; Ridin’ the Storm Out; 157 Riverside Avenue.</em>\r\n\r\n<strong>DVD / Blu Ray: </strong><em>Don’t Let Him Go; Keep on Loving You; In Your Letter; Take It on the Run; Keep Pushin’; Golden Country; Can’t Fight This Feeling; Like You Do; Time for Me to Fly; Back on the Road Again; Roll with the Changes; Ridin’ the Storm Out; 157 Riverside Avenue. Bonus : Interview with Kevin Cronin</em>\r\n\r\n<strong>REO Speedwagon:</strong>\r\n\r\nNeal Doughty – keyboards, organ, piano, synthesizer\r\nKevin Cronin – lead vocals, rhythm guitar, piano, keyboards\r\nBruce Hall – bass guitar, vocals\r\nDave Amato – lead guitar, vocals\r\nBryan Hitt – drums, percussion\r\n\r\nReview by James Wood.\r\n\r\n<em><strong>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website, <a href=\"http://gojimmygo.net/\">GoJimmyGo.net</a>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter <a href=\"https://twitter.com/JimEWood\">@JimEWood</a>.</strong></em>\r\n\r\n<em><strong>Check out his new children\'s book at : <a href=\"http://www.doodledogbooks.com/\">www.doodledogbooks.com</a></strong></em>\r\n\r\n ','REO Speedwagon: Live at Moondance Jam','','inherit','open','open','','1458-revision-v1','','','2014-01-12 18:09:12','2014-01-13 00:09:12','',1458,'http://www.earthhertzrecords.com/2014/01/1458-revision-v1/',0,'revision','',0),(1465,2,'2014-01-16 06:14:15','2014-01-16 12:14:15','','Beatle-who-vanished','','inherit','open','open','','beatle-who-vanished','','','2014-01-16 06:14:15','2014-01-16 12:14:15','',1437,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished.jpg',0,'attachment','image/jpeg',0),(1466,2,'2014-01-16 07:22:17','2014-01-16 13:22:17','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished.jpg\"><img class=\"alignleft size-medium wp-image-1465\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished-207x300.jpg\" width=\"207\" height=\"300\" /></a>Is there a band more recognizable than The Beatles? When searching for the Best Rock Band of All-Time the answer was unanimous. But search for the answer to this question, \"Who is the fifth Beatle?\" and amazingly you will not find the real answer.\r\n\r\nOn June 3, 1964 the fate of a successful, but small-time drummer would change forever. Jimmie Nicol would become the fifth Beatle, if only for 13 days, and it would change the trajectory of his life in a way no one could have predicted.\r\n\r\nThis is a story that clearly would have never been told if not for the painstaking research done by <a href=\"http://www.thebeatlewhovanished.com/author-bio/\">Jim Berkenstadt</a>. He took what was barely enough material to write an article and meticulously followed the movements of this mysterious person who replaced Ringo Starr for thirteen days on the Beatles first World Tour. <em>The Beatle Who Vanished</em> is a fascinating look inside the history of rock and roll in 1960s London, and the music industry\'s attempt to create pop stars by controlling and molding the musicians who were discovering and exploring this rapidly changing music scene.\r\n\r\nJimmie Nicol\'s life was intricately entwined with the birth of Rock and Roll. As Berkenstadt uncovered Nicol\'s history, he discovered a drummer so well regarded that, in 1964, his destiny was most surely on the path for fame. No one denied that Nicol\'s skills were among the top in the clubs and music studios of London, he was well known for his versatility; moving between jazz and rock easily and even combining the two. Often asked to play with many up and coming bands, he was making a decent living as a musician and had become a staple as a session drummer. He was also the drummer for a series called Top Six, a weekly recording of the Top Six hits, often covering Beatles songs to perfection. Who could know how important that would be?\r\n\r\nJust when it seemed Jimmie\'s ship had come in, becoming the permanent drummer for Georgie Fame and The Blue Flames, he and his wife were living a comfortable life, and he was guaranteed work at something he loved; his life would take one more turn. Paul McCartney would personally call Georgie Fame and ask if they could \"borrow\" his drummer Nicols.\r\n\r\nThe rest they say, is history. But it wasn\'t, not for us, not for him. It is what happened after this amazing story that was a mystery for so many years. Jimmie was a tried and true Beatle for 13 days, it may not seem like a long time, but as you read about the intensity of the touring, traveling and riot like interaction with fans, one can see how it felt like a lifetime for Jimmie. Nichol joined the Beatles as the crescendo of Beatlemania was beginning, but he was ill equipped to be at the center of such fame and adulation. Paul McCartney befriended Jimmie and often asked him if \"it was getting better?\" Jimmie\'s response? \"It\'s getting better all the time.\" After thirteen days of playing multiple shows a day, their songs felt like his songs, and just as he began to feel like a \"real\" Beatle, it was ripped away from him.\r\n\r\nEven for those who knew Jimmie well, no one could understand that feeling. He went from being a <em>Beatle</em> to being plain old Jimmie in one day. His attempt at recreating that fame, his subsequent travels, and his disappearance and supposed death are the riveting plots of this wonderful mystery of a biography. Jim Berkenstadt does something for Jimmie that he could never do, he showcases his amazing talent and paints a picture so clear that when you finish this book you will feel like you knew Jimmie all along.\r\n\r\nRead more about Jim Berkenstadt\'s <a href=\"http://www.thebeatlewhovanished.com/buy/book-synopsis/\">\"The Beatle Who Vanished\" </a>\r\n\r\nReview by Jen Kehl.\r\n\r\n<strong>Jen Kehl is a writer who blogs at My Skewed View htttp://jenkehl.com and created the music site Raised on the Radio <a href=\"http://raisedontheradio.com/\" target=\"_blank\" rel=\"nofollow\">http://raisedontheradio.com</a>. She is also a published author as part of the anthology The Mother of All Meltdowns available on Amazon. Connect with her on twitter <a href=\"https://twitter.com/jenkehl\" target=\"_blank\" rel=\"nofollow\">https://twitter.com/jenkehl</a> and Google+ <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\" target=\"_blank\" rel=\"nofollow\">https://plus.google.com/u/0/+JenniferKehl/posts</a></strong>','\"The Beatle Who Vanished\" by Jim Berkenstadt: A Book Review','','inherit','open','open','','1437-revision-v1','','','2014-01-16 07:22:17','2014-01-16 13:22:17','',1437,'http://www.earthhertzrecords.com/2014/01/1437-revision-v1/',0,'revision','',0),(1467,2,'2014-01-16 07:48:39','2014-01-16 13:48:39','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished.jpg\"><img class=\"alignleft size-medium wp-image-1465\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished-207x300.jpg\" width=\"207\" height=\"300\" /></a>Is there a band more recognizable than The Beatles? When searching for the Best Rock Band of All-Time the answer was unanimous. But search for the answer to this question, \"Who is the fifth Beatle?\" and amazingly you will not find the real answer.\r\n\r\nOn June 3, 1964 the fate of a successful, but small-time drummer would change forever. Jimmie Nicol would become the fifth Beatle, if only for 13 days, and it would change the trajectory of his life in a way no one could have predicted.\r\n\r\nThis is a story that clearly would have never been told if not for the painstaking research done by <a href=\"http://www.thebeatlewhovanished.com/author-bio/\">Jim Berkenstadt</a>. He took what was barely enough material to write an article and meticulously followed the movements of this mysterious person who replaced Ringo Starr for thirteen days on the Beatles first World Tour. <em>The Beatle Who Vanished</em> is a fascinating look inside the history of rock and roll in 1960s London, and the music industry\'s attempt to create pop stars by controlling and molding the musicians who were discovering and exploring this rapidly changing music scene.\r\n\r\nJimmie Nicol\'s life was intricately entwined with the birth of Rock and Roll. As Berkenstadt uncovered Nicol\'s history, he discovered a drummer so well regarded that, in 1964, his destiny was most surely on the path for fame. No one denied that Nicol\'s skills were among the top in the clubs and music studios of London, he was well known for his versatility; moving between jazz and rock easily and even combining the two. Often asked to play with many up and coming bands, he was making a decent living as a musician and had become a staple as a session drummer. He was also the drummer for a series called Top Six, a weekly recording of the Top Six hits, often covering Beatles songs to perfection. Who could know how important that would be?\r\n\r\nJust when it seemed Jimmie\'s ship had come in, becoming the permanent drummer for Georgie Fame and The Blue Flames, he and his wife were living a comfortable life, and he was guaranteed work at something he loved; his life would take one more turn. Paul McCartney would personally call Georgie Fame and ask if they could \"borrow\" his drummer Nicol.\r\n\r\nThe rest they say, is history. But it wasn\'t, not for us, not for him. It is what happened after this amazing story that was a mystery for so many years. Jimmie was a tried and true Beatle for 13 days, it may not seem like a long time, but as you read about the intensity of the touring, traveling and riot like interaction with fans, one can see how it felt like a lifetime for Jimmie. Nichol joined the Beatles as the crescendo of Beatlemania was beginning, but he was ill equipped to be at the center of such fame and adulation. Paul McCartney befriended Jimmie and often asked him if \"it was getting better?\" Jimmie\'s response? \"It\'s getting better all the time.\" After thirteen days of playing multiple shows a day, their songs felt like his songs, and just as he began to feel like a \"real\" Beatle, it was ripped away from him.\r\n\r\nEven for those who knew Jimmie well, no one could understand that feeling. He went from being a <em>Beatle</em> to being plain old Jimmie in one day. His attempt at recreating that fame, his subsequent travels, and his disappearance and supposed death are the riveting plots of this wonderful mystery of a biography. Jim Berkenstadt does something for Jimmie that Nichol could never do for himself; he showcases his amazing talent and paints a picture so clear that when you finish this book you will feel like you knew Jimmie all along.\r\n\r\nRead more about Jim Berkenstadt\'s <a href=\"http://www.thebeatlewhovanished.com/buy/book-synopsis/\">\"The Beatle Who Vanished\" </a>\r\n\r\nReview by Jen Kehl.\r\n\r\n<strong>Jen Kehl is a writer who blogs at My Skewed View htttp://jenkehl.com and created the music site Raised on the Radio <a href=\"http://raisedontheradio.com/\" target=\"_blank\" rel=\"nofollow\">http://raisedontheradio.com</a>. She is also a published author as part of the anthology The Mother of All Meltdowns available on Amazon. Connect with her on twitter <a href=\"https://twitter.com/jenkehl\" target=\"_blank\" rel=\"nofollow\">https://twitter.com/jenkehl</a> and Google+ <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\" target=\"_blank\" rel=\"nofollow\">https://plus.google.com/u/0/+JenniferKehl/posts</a></strong>','\"The Beatle Who Vanished\" by Jim Berkenstadt: A Book Review','','inherit','open','open','','1437-revision-v1','','','2014-01-16 07:48:39','2014-01-16 13:48:39','',1437,'http://www.earthhertzrecords.com/2014/01/1437-revision-v1/',0,'revision','',0),(1468,2,'2014-01-16 07:52:46','2014-01-16 13:52:46','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished.jpg\"><img class=\"alignleft size-medium wp-image-1465\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished-207x300.jpg\" width=\"207\" height=\"300\" /></a>Is there a band more recognizable than The Beatles? When searching for the Best Rock Band of All-Time the answer was unanimous. But search for the answer to this question, \"Who is the fifth Beatle?\" and amazingly you will not find the real answer.\r\n\r\nOn June 3, 1964 the fate of a successful, but small-time drummer would change forever. Jimmie Nicol would become the fifth Beatle, if only for 13 days, and it would change the trajectory of his life in a way no one could have predicted.\r\n\r\nThis is a story that clearly would have never been told if not for the painstaking research done by <a href=\"http://www.thebeatlewhovanished.com/author-bio/\">Jim Berkenstadt</a>. He took what was barely enough material to write an article and meticulously followed the movements of this mysterious person who replaced Ringo Starr for thirteen days on the Beatles first World Tour. <em>The Beatle Who Vanished</em> is a fascinating look inside the history of rock and roll in 1960s London, and the music industry\'s attempt to create pop stars by controlling and molding the musicians who were discovering and exploring this rapidly changing music scene.\r\n\r\nJimmie Nicol\'s life was intricately entwined with the birth of Rock and Roll. As Berkenstadt uncovered Nicol\'s history, he discovered a drummer so well regarded that, in 1964, his destiny was most surely on the path for fame. No one denied that Nicol\'s skills were among the top in the clubs and music studios of London, he was well known for his versatility; moving between jazz and rock easily and even combining the two. Often asked to play with many up and coming bands, he was making a decent living as a musician and had become a staple as a session drummer. He was also the drummer for a series called Top Six, a weekly recording of the Top Six hits, often covering Beatles songs to perfection. Who could know how important that would be?\r\n\r\nJust when it seemed Jimmie\'s ship had come in, becoming the permanent drummer for Georgie Fame and The Blue Flames, he and his wife were living a comfortable life, and he was guaranteed work at something he loved; his life would take one more turn. Paul McCartney would personally call Georgie Fame and ask if they could \"borrow\" his drummer Nicol.\r\n\r\nThe rest they say, is history. But it wasn\'t, not for us, not for him. It is what happened after this amazing story that was a mystery for so many years. Jimmie was a tried and true Beatle for 13 days, it may not seem like a long time, but as you read about the intensity of the touring, traveling and riot like interaction with fans, one can see how it felt like a lifetime for Jimmie. Nichol joined the Beatles as the crescendo of Beatlemania was beginning, but he was ill equipped to be at the center of such fame and adulation. Paul McCartney befriended Jimmie and often asked him if \"it was getting better?\" Jimmie\'s response? \"It\'s getting better all the time.\" After thirteen days of playing multiple shows a day, their songs felt like his songs, and just as he began to feel like a \"real\" Beatle, it was ripped away from him.\r\n\r\nEven for those who knew Jimmie well, no one could understand that feeling. He went from being a <em>Beatle</em> to being plain old Jimmie in one day. His attempt at recreating that fame, his subsequent travels, and his disappearance and supposed death are the riveting plots of this wonderful mystery of a biography. Jim Berkenstadt does something for Jimmie that Nichol could never do for himself; he showcases his amazing talent and paints a picture so clear that when you finish this book you will feel like you knew Jimmie all along.\r\n\r\nRead more about Jim Berkenstadt\'s <a href=\"http://www.thebeatlewhovanished.com/buy/book-synopsis/\">\"The Beatle Who Vanished\" </a>\r\n\r\n<iframe width=\"420\" height=\"315\" src=\"//www.youtube.com/embed/qumXROSOFJE\" frameborder=\"0\" allowfullscreen></iframe>\r\n\r\nReview by Jen Kehl.\r\n\r\n<strong>Jen Kehl is a writer who blogs at My Skewed View htttp://jenkehl.com and created the music site Raised on the Radio <a href=\"http://raisedontheradio.com/\" target=\"_blank\" rel=\"nofollow\">http://raisedontheradio.com</a>. She is also a published author as part of the anthology The Mother of All Meltdowns available on Amazon. Connect with her on twitter <a href=\"https://twitter.com/jenkehl\" target=\"_blank\" rel=\"nofollow\">https://twitter.com/jenkehl</a> and Google+ <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\" target=\"_blank\" rel=\"nofollow\">https://plus.google.com/u/0/+JenniferKehl/posts</a></strong>','\"The Beatle Who Vanished\" by Jim Berkenstadt: A Book Review','','inherit','open','open','','1437-revision-v1','','','2014-01-16 07:52:46','2014-01-16 13:52:46','',1437,'http://www.earthhertzrecords.com/2014/01/1437-revision-v1/',0,'revision','',0),(1469,2,'2014-01-16 07:53:01','2014-01-16 13:53:01','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished.jpg\"><img class=\"alignleft size-medium wp-image-1465\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished-207x300.jpg\" width=\"207\" height=\"300\" /></a>Is there a band more recognizable than The Beatles? When searching for the Best Rock Band of All-Time the answer was unanimous. But search for the answer to this question, \"Who is the fifth Beatle?\" and amazingly you will not find the real answer.\r\n\r\nOn June 3, 1964 the fate of a successful, but small-time drummer would change forever. Jimmie Nicol would become the fifth Beatle, if only for 13 days, and it would change the trajectory of his life in a way no one could have predicted.\r\n\r\nThis is a story that clearly would have never been told if not for the painstaking research done by <a href=\"http://www.thebeatlewhovanished.com/author-bio/\">Jim Berkenstadt</a>. He took what was barely enough material to write an article and meticulously followed the movements of this mysterious person who replaced Ringo Starr for thirteen days on the Beatles first World Tour. <em>The Beatle Who Vanished</em> is a fascinating look inside the history of rock and roll in 1960s London, and the music industry\'s attempt to create pop stars by controlling and molding the musicians who were discovering and exploring this rapidly changing music scene.\r\n\r\nJimmie Nicol\'s life was intricately entwined with the birth of Rock and Roll. As Berkenstadt uncovered Nicol\'s history, he discovered a drummer so well regarded that, in 1964, his destiny was most surely on the path for fame. No one denied that Nicol\'s skills were among the top in the clubs and music studios of London, he was well known for his versatility; moving between jazz and rock easily and even combining the two. Often asked to play with many up and coming bands, he was making a decent living as a musician and had become a staple as a session drummer. He was also the drummer for a series called Top Six, a weekly recording of the Top Six hits, often covering Beatles songs to perfection. Who could know how important that would be?\r\n\r\nJust when it seemed Jimmie\'s ship had come in, becoming the permanent drummer for Georgie Fame and The Blue Flames, he and his wife were living a comfortable life, and he was guaranteed work at something he loved; his life would take one more turn. Paul McCartney would personally call Georgie Fame and ask if they could \"borrow\" his drummer Nicol.\r\n\r\nThe rest they say, is history. But it wasn\'t, not for us, not for him. It is what happened after this amazing story that was a mystery for so many years. Jimmie was a tried and true Beatle for 13 days, it may not seem like a long time, but as you read about the intensity of the touring, traveling and riot like interaction with fans, one can see how it felt like a lifetime for Jimmie. Nichol joined the Beatles as the crescendo of Beatlemania was beginning, but he was ill equipped to be at the center of such fame and adulation. Paul McCartney befriended Jimmie and often asked him if \"it was getting better?\" Jimmie\'s response? \"It\'s getting better all the time.\" After thirteen days of playing multiple shows a day, their songs felt like his songs, and just as he began to feel like a \"real\" Beatle, it was ripped away from him.\r\n\r\nEven for those who knew Jimmie well, no one could understand that feeling. He went from being a <em>Beatle</em> to being plain old Jimmie in one day. His attempt at recreating that fame, his subsequent travels, and his disappearance and supposed death are the riveting plots of this wonderful mystery of a biography. Jim Berkenstadt does something for Jimmie that Nichol could never do for himself; he showcases his amazing talent and paints a picture so clear that when you finish this book you will feel like you knew Jimmie all along.\r\n\r\nRead more about Jim Berkenstadt\'s <a href=\"http://www.thebeatlewhovanished.com/buy/book-synopsis/\">\"The Beatle Who Vanished\" </a>\r\n\r\n<iframe src=\"//www.youtube.com/embed/qumXROSOFJE\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nReview by Jen Kehl.\r\n\r\n<strong>Jen Kehl is a writer who blogs at My Skewed View htttp://jenkehl.com and created the music site Raised on the Radio <a href=\"http://raisedontheradio.com/\" target=\"_blank\" rel=\"nofollow\">http://raisedontheradio.com</a>. She is also a published author as part of the anthology The Mother of All Meltdowns available on Amazon. Connect with her on twitter <a href=\"https://twitter.com/jenkehl\" target=\"_blank\" rel=\"nofollow\">https://twitter.com/jenkehl</a> and Google+ <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\" target=\"_blank\" rel=\"nofollow\">https://plus.google.com/u/0/+JenniferKehl/posts</a></strong>','\"The Beatle Who Vanished\" by Jim Berkenstadt: A Book Review','','inherit','open','open','','1437-revision-v1','','','2014-01-16 07:53:01','2014-01-16 13:53:01','',1437,'http://www.earthhertzrecords.com/2014/01/1437-revision-v1/',0,'revision','',0),(1470,2,'2014-01-16 09:39:04','2014-01-16 15:39:04','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished.jpg\"><img class=\"alignleft size-medium wp-image-1465\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished-207x300.jpg\" width=\"207\" height=\"300\" /></a>Is there a band more recognizable than The Beatles? When searching for the Best Rock Band of All-Time the answer was unanimous. But search for the answer to this question, \"Who is the fifth Beatle?\" and amazingly you will not find the real answer.\r\n\r\nOn June 3, 1964 the fate of a successful, but small-time drummer would change forever. Jimmie Nicol would become the fifth Beatle, if only for 13 days, and it would change the trajectory of his life in a way no one could have predicted.\r\n\r\nThis is a story that clearly would have never been told if not for the painstaking research done by <a href=\"http://www.thebeatlewhovanished.com/author-bio/\">Jim Berkenstadt</a>. He took what was barely enough material to write an article and meticulously followed the movements of this mysterious person who replaced Ringo Starr for thirteen days on the Beatles first World Tour. <em>The Beatle Who Vanished</em> is a fascinating look inside the history of rock and roll in 1960s London, and the music industry\'s attempt to create pop stars by controlling and molding the musicians who were discovering and exploring this rapidly changing music scene.\r\n\r\nJimmie Nicol\'s life was intricately entwined with the birth of Rock and Roll. As Berkenstadt uncovered Nicol\'s history, he discovered a drummer so well regarded that, in 1964, his destiny was most surely on the path for fame. No one denied that Nicol\'s skills were among the top in the clubs and music studios of London, he was well known for his versatility; moving between jazz and rock easily and even combining the two. Often asked to play with many up and coming bands, he was making a decent living as a musician and had become a staple as a session drummer. He was also the drummer for a series called Top Six, a weekly recording of the Top Six hits, often covering Beatles songs to perfection. Who could know how important that would be?\r\n\r\nJust when it seemed Jimmie\'s ship had come in, becoming the permanent drummer for Georgie Fame and The Blue Flames, he and his wife were living a comfortable life, and he was guaranteed work at something he loved; his life would take one more turn. Paul McCartney would personally call Georgie Fame and ask if they could \"borrow\" his drummer Nicol.\r\n\r\nThe rest they say, is history. But it wasn\'t, not for us, not for him. It is what happened after this amazing story that was a mystery for so many years. Jimmie was a tried and true Beatle for 13 days, it may not seem like a long time, but as you read about the intensity of the touring, traveling and riot like interaction with fans, one can see how it felt like a lifetime for Jimmie. Nichol joined the Beatles as the crescendo of Beatlemania was beginning, but he was ill equipped to be at the center of such fame and adulation. Paul McCartney befriended Jimmie and often asked him if \"it was getting better?\" Jimmie\'s response? \"It\'s getting better all the time.\" After thirteen days of playing multiple shows a day, their songs felt like his songs, and just as he began to feel like a \"real\" Beatle, it was ripped away from him.\r\n\r\nEven for those who knew Jimmie well, no one could understand that feeling. He went from being a <em>Beatle</em> to being plain old Jimmie in one day. His attempt at recreating that fame, his subsequent travels, and his disappearance and supposed death are the riveting plots of this wonderful mystery of a biography. Jim Berkenstadt does something for Jimmie that Nichol could never do for himself; he showcases his amazing talent and paints a picture so clear that when you finish this book you will feel like you knew Jimmie all along.\r\n\r\nRead more about Jim Berkenstadt\'s <a href=\"http://www.thebeatlewhovanished.com/buy/book-synopsis/\">\"The Beatle Who Vanished\" </a>\r\n\r\n<iframe src=\"//www.youtube.com/embed/qumXROSOFJE\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nReview by Jen Kehl.\r\n\r\n<strong>Jen Kehl is a writer who blogs at My Skewed View http://jenkehl.com and created the music site Raised on the Radio <a href=\"http://raisedontheradio.com/\" target=\"_blank\" rel=\"nofollow\">http://raisedontheradio.com</a>. She is also a published author as part of the anthology The Mother of All Meltdowns available on Amazon. Connect with her on twitter <a href=\"https://twitter.com/jenkehl\" target=\"_blank\" rel=\"nofollow\">https://twitter.com/jenkehl</a> and Google+ <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\" target=\"_blank\" rel=\"nofollow\">https://plus.google.com/u/0/+JenniferKehl/posts</a></strong>','\"The Beatle Who Vanished\" by Jim Berkenstadt: A Book Review','','inherit','open','open','','1437-revision-v1','','','2014-01-16 09:39:04','2014-01-16 15:39:04','',1437,'http://www.earthhertzrecords.com/2014/01/1437-revision-v1/',0,'revision','',0),(1471,2,'2014-01-16 14:31:28','2014-01-16 20:31:28','<a href=\"http://www.amazon.com/The-Beatle-Who-Vanished-Berkenstadt/dp/0985667702/ref=sr_1_1?ie=UTF8&qid=1389901855&sr=8-1&keywords=the+beatle+who+vanished\"><img class=\"alignleft size-medium wp-image-1465\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished-207x300.jpg\" width=\"207\" height=\"300\" /></a>Is there a band more recognizable than The Beatles? When searching for the Best Rock Band of All-Time the answer was unanimous. But search for the answer to this question, \"Who is the fifth Beatle?\" and amazingly you will not find the real answer.\n\nOn June 3, 1964 the fate of a successful, but small-time drummer would change forever. Jimmie Nicol would become the fifth Beatle, if only for 13 days, and it would change the trajectory of his life in a way no one could have predicted.\n\nThis is a story that clearly would have never been told if not for the painstaking research done by <a href=\"http://www.thebeatlewhovanished.com/author-bio/\">Jim Berkenstadt</a>. He took what was barely enough material to write an article and meticulously followed the movements of this mysterious person who replaced Ringo Starr for thirteen days on the Beatles first World Tour. <em>The Beatle Who Vanished</em> is a fascinating look inside the history of rock and roll in 1960s London, and the music industry\'s attempt to create pop stars by controlling and molding the musicians who were discovering and exploring this rapidly changing music scene.\n\nJimmie Nicol\'s life was intricately entwined with the birth of Rock and Roll. As Berkenstadt uncovered Nicol\'s history, he discovered a drummer so well regarded that, in 1964, his destiny was most surely on the path for fame. No one denied that Nicol\'s skills were among the top in the clubs and music studios of London, he was well known for his versatility; moving between jazz and rock easily and even combining the two. Often asked to play with many up and coming bands, he was making a decent living as a musician and had become a staple as a session drummer. He was also the drummer for a series called Top Six, a weekly recording of the Top Six hits, often covering Beatles songs to perfection. Who could know how important that would be?\n\nJust when it seemed Jimmie\'s ship had come in, becoming the permanent drummer for Georgie Fame and The Blue Flames, he and his wife were living a comfortable life, and he was guaranteed work at something he loved; his life would take one more turn. Paul McCartney would personally call Georgie Fame and ask if they could \"borrow\" his drummer Nicol.\n\nThe rest they say, is history. But it wasn\'t, not for us, not for him. It is what happened after this amazing story that was a mystery for so many years. Jimmie was a tried and true Beatle for 13 days, it may not seem like a long time, but as you read about the intensity of the touring, traveling and riot like interaction with fans, one can see how it felt like a lifetime for Jimmie. Nichol joined the Beatles as the crescendo of Beatlemania was beginning, but he was ill equipped to be at the center of such fame and adulation. Paul McCartney befriended Jimmie and often asked him if \"it was getting better?\" Jimmie\'s response? \"It\'s getting better all the time.\" After thirteen days of playing multiple shows a day, their songs felt like his songs, and just as he began to feel like a \"real\" Beatle, it was ripped away from him.\n\nEven for those who knew Jimmie well, no one could understand that feeling. He went from being a <em>Beatle</em> to being plain old Jimmie in one day. His attempt at recreating that fame, his subsequent travels, and his disappearance and supposed death are the riveting plots of this wonderful mystery of a biography. Jim Berkenstadt does something for Jimmie that Nichol could never do for himself; he showcases his amazing talent and paints a picture so clear that when you finish this book you will feel like you knew Jimmie all along.\n\nRead more about Jim Berkenstadt\'s <a href=\"http://www.thebeatlewhovanished.com/buy/book-synopsis/\">\"The Beatle Who Vanished\" </a>\n\n<iframe src=\"//www.youtube.com/embed/qumXROSOFJE\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\n\nReview by Jen Kehl.\n\n<strong>Jen Kehl is a writer who blogs at My Skewed View http://jenkehl.com and created the music site Raised on the Radio <a href=\"http://raisedontheradio.com/\" target=\"_blank\" rel=\"nofollow\">http://raisedontheradio.com</a>. She is also a published author as part of the anthology The Mother of All Meltdowns available on Amazon. Connect with her on twitter <a href=\"https://twitter.com/jenkehl\" target=\"_blank\" rel=\"nofollow\">https://twitter.com/jenkehl</a> and Google+ <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\" target=\"_blank\" rel=\"nofollow\">https://plus.google.com/u/0/+JenniferKehl/posts</a></strong>','\"The Beatle Who Vanished\" by Jim Berkenstadt: A Book Review','','inherit','open','open','','1437-autosave-v1','','','2014-01-16 14:31:28','2014-01-16 20:31:28','',1437,'http://www.earthhertzrecords.com/2014/01/1437-autosave-v1/',0,'revision','',0),(1472,2,'2014-01-16 19:41:37','2014-01-17 01:41:37','<a href=\"http://www.amazon.com/The-Beatle-Who-Vanished-Berkenstadt/dp/0985667702/ref=sr_1_1?ie=UTF8&qid=1389901855&sr=8-1&keywords=the+beatle+who+vanished\"><img class=\"alignleft size-medium wp-image-1465\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished-207x300.jpg\" width=\"207\" height=\"300\" /></a>Is there a band more recognizable than The Beatles? When searching for the Best Rock Band of All-Time the answer was unanimous. But search for the answer to this question, \"Who is the fifth Beatle?\" and amazingly you will not find the real answer.\n\nOn June 3, 1964 the fate of a successful, but small-time drummer would change forever. Jimmie Nicol would become the fifth Beatle, if only for 13 days, and it would change the trajectory of his life in a way no one could have predicted.\n\nThis is a story that clearly would have never been told if not for the painstaking research done by <a href=\"http://www.thebeatlewhovanished.com/author-bio/\">Jim Berkenstadt</a>. He took what was barely enough material to write an article and meticulously followed the movements of this mysterious person who replaced Ringo Starr for thirteen days on the Beatles first World Tour. <em>The Beatle Who Vanished</em> is a fascinating look inside the history of rock and roll in 1960s London, and the music industry\'s attempt to create pop stars by controlling and molding the musicians who were discovering and exploring this rapidly changing music scene.\n\nJimmie Nicol\'s life was intricately entwined with the birth of Rock and Roll. As Berkenstadt uncovered Nicol\'s history, he discovered a drummer so well regarded that, in 1964, his destiny was most surely on the path for fame. No one denied that Nicol\'s skills were among the top in the clubs and music studios of London, he was well known for his versatility; moving between jazz and rock easily and even combining the two. Often asked to play with many up and coming bands, he was making a decent living as a musician and had become a staple as a session drummer. He was also the drummer for a series called Top Six, a weekly recording of the Top Six hits, often covering Beatles songs to perfection. Who could know how important that would be?\n\nJust when it seemed Jimmie\'s ship had come in, becoming the permanent drummer for Georgie Fame and The Blue Flames, he and his wife were living a comfortable life, and he was guaranteed work at something he loved; his life would take one more turn. Paul McCartney would personally call Georgie Fame and ask if they could \"borrow\" his drummer Nicol.\n\nThe rest they say, is history. But it wasn\'t, not for us, not for him. It is what happened after this amazing story that was a mystery for so many years. Jimmie was a tried and true Beatle for 13 days, it may not seem like a long time, but as you read about the intensity of the touring, traveling and riot like interaction with fans, one can see how it felt like a lifetime for Jimmie. Nichol joined the Beatles as the crescendo of Beatlemania was beginning, but he was ill equipped to be at the center of such fame and adulation. Paul McCartney befriended Jimmie and often asked him if \"it was getting better?\" Jimmie\'s response? \"It\'s getting better all the time.\" After thirteen days of playing multiple shows a day, their songs felt like his songs, and just as he began to feel like a \"real\" Beatle, it was ripped away from him.\n\nEven for those who knew Jimmie well, no one could understand that feeling. He went from being a <em>Beatle</em> to being plain old Jimmie in one day. His attempt at recreating that fame, his subsequent travels, and his disappearance and supposed death are the riveting plots of this wonderful mystery of a biography. Jim Berkenstadt does something for Jimmie that Nichol could never do for himself; he showcases his amazing talent and paints a picture so clear that when you finish this book you will feel like you knew Jimmie all along.\n\nRead more about Jim Berkenstadt\'s <a href=\"http://www.thebeatlewhovanished.com/buy/book-synopsis/\">\"The Beatle Who Vanished\" </a>\n\n<iframe src=\"//www.youtube.com/embed/qumXROSOFJE\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\n\nReview by Jen Kehl.\n\n<strong>Jen Kehl is a writer who blogs at My Skewed View http://jenkehl.com and created the music site Raised on the Radio <a href=\"http://raisedontheradio.com/\" target=\"_blank\" rel=\"nofollow\">http://raisedontheradio.com</a>. She is also a published author as part of the anthology The Mother of All Meltdowns available on Amazon. Connect with her on twitter <a href=\"https://twitter.com/jenkehl\" target=\"_blank\" rel=\"nofollow\">https://twitter.com/jenkehl</a> and Google+ <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\" target=\"_blank\" rel=\"nofollow\">https://plus.google.com/u/0/+JenniferKehl/posts</a></strong>','\"The Beatle Who Vanished\" by Jim Berkenstadt: A Book Review','','inherit','open','open','','1437-revision-v1','','','2014-01-16 19:41:37','2014-01-17 01:41:37','',1437,'http://www.earthhertzrecords.com/2014/01/1437-revision-v1/',0,'revision','',0),(1473,2,'2014-01-17 06:37:11','2014-01-17 12:37:11','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/laura_hmb_300dpi-300x400.jpg\"><img class=\"alignleft size-medium wp-image-1476\" alt=\"laura_hmb_300dpi-300x400\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/laura_hmb_300dpi-300x400-225x300.jpg\" width=\"225\" height=\"300\" /></a>Creating music in the purest sense, is piecing together notes which are born in the soul, take their first steps in the heart, and are given flight through a musical instrument. Nowhere is that more evident than with instrumental music. Without the aid of lyrics, a composer must channel the life-cycle of the music, and convey to the listener, every emotion experienced during the writing process.\r\n\r\nPianist Laura Sullivan’s new album <i>Love’s River</i>, does exactly that. <a href=\"http://www.grammy.com/files/pages/56thpresslist-final-secured.pdf\">Nominated as Best New Age Album</a> in the upcoming 56th Annual Grammy Awards, Ms. Sullivan’s seventh album has proven to be the lucky one. The album reached #2 on the<a href=\"http://www.zonemusicreporter.com/\"> ZoneMusicReporter</a> chart, the industry standard for radio airplay of New Age music. As only the ninth woman to receive a Grammy nomination in this category, Laura has already reached a level attained by only a few.\r\n\r\nThe music of <a href=\"http://www.laura-sullivan.com/\">Laura Sullivan</a> is well known and respected within the industry. Her music has appeared on television shows such as “So You Think You Can Dance,” national commercials, and she has written the musical scores for many television shows and feature films.\r\n\r\nWhile savoring her first Grammy nomination, Laura is well aware of her competition. The other nominees in her category are: Kitaro, Peter Kater, Brian Eno and, R. Carlos Nakai and Will Clipman. Combined, these artists have over forty Grammy nominations on their resumes.\r\n\r\nWhile trying to manage life and all that goes along with being a Grammy nominee in the weeks before the Awards, Laura spent some time talking with me about the emotions in being nominated, her writing process and her hopes for Grammy night.\r\n\r\n<b>Kath Galasso: In the 27 year history of the Best New Age Album category, you are only the ninth woman to receive a Grammy nomination. While a couple of women have been part of a winning band, the only other female solo artist to win this category has been Enya. Before the nomination, were you aware of how few women had been nominated and actually taken home a Grammy?</b>\r\n\r\n<em>Laura Sullivan: I didn’t have the exact stats on that beforehand, I knew that it wasn’t too many. I hadn’t gone in and really checked it.</em>\r\n\r\n<b>Your category was not announced on the Grammy nomination TV special, so you had to wait until after it was over to view the full online list of nominees. Where you working that night or were you watching the show?</b>\r\n\r\n<em>We had taped the show, and I think I was putting my daughter to bed or something like that, and I got a call from a friend. She was just screaming into the phone… in a good way, so I knew that something was up. Then we checked online and saw that I was nominated. It was very exciting.</em>\r\n\r\n<b><a href=\"http://www.laura-sullivan.com/\"><img class=\"alignright size-medium wp-image-1477\" alt=\"1370062464_laura-sullivan-loves-river-2012-400x400\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1370062464_laura-sullivan-loves-river-2012-400x400-300x300.jpg\" width=\"300\" height=\"300\" /></a>The time between Grammy submissions and the actual nomination is totally insane with trying to promote your music, whether it’s in print, TV or social media, yet during that time you still need to focus on your job, which is writing music, and your family. How were you able to get a balance in your life?</b>\r\n\r\n<em>Oh my goodness, that is a great question. I wasn’t prepared for the PR end of this at all. For example, we just got a press release out today, and many other nominees had a press release that went out the day after the nominations were announced. So being this is my first nomination, I’m just sort of learning the ropes, and it feels kind of fresh. It’s exactly what you’re saying, you nailed it on the head, I’m trying to balance my family, things like finding the clothing and also continuing to make music. I also write for a publisher in New York, writing TV underscores, so I’ve tried to keep that going a little bit too. Then the promotion of the nomination, and it has been quite a bit.</em>\r\n\r\n<b>Is it a little better now that all the ballots have been submitted?</b>\r\n\r\n<em>Yeah, a little bit. It’s kind of a feeling of relief I guess, just to know that it’s all done and whatever happens, happens. And I’m really going to be excited and happy for whoever wins. I feel like I’ve already won in a way, just by being nominated. And I’m truly going to celebrate with whoever brings home that little statue.</em>\r\n\r\n<b>It’s </b><b></b><b>funny that you say you’re going to be happy for whoever actually wins. I had never been involved in the Grammy process before, and you always hear people say that it’s a thrill to be nominated, but having been involved with the process of getting our (Earth Hertz Records) artists submitted in for the first round, and seeing how much works goes into it, to actually be one of those people nominated… I get it now. I understand how you could feel that way.</b>\r\n\r\n<em>Absolutely, yes it’s quite an honor. And the people I’m nominated with, I admire them so much. So yes, I’m overwhelmed with how big a thrill it is and what an honor it is.</em>\r\n\r\n<b>Tell me about your writing process. Is the writing different when you are writing for a show, something you’ve been contracted to write specifically for, than when you’re just writing from inspiration?</b>\r\n\r\n<em>Yes, it is. I feel a lot more freedom when I’m creating a project that will be my own project, like Love’s River was, in that it’s coming from my own heart, from what I want to express as an artist. I try to make the album cohesive in that the songs go together in some way, but it’s only being dictated by what I want to express, and not by anyone else. And that’s a lot of fun.</em>\r\n\r\n<b>I’m always interested as to how instrumentalists title their songs. How do you come up with the titles for your songs?</b>\r\n\r\n<em>I think it happens a little bit within the process of writing the music. The imagery that comes to my mind as I’m coming up with the ideas for the melodies and the harmony. Also the events in my life, emotions that I’m feeling are emotions that come out in the music as well.</em>\r\n\r\n<b>I don’t think you could have come up with a better title for “Wishing on a Dandelion.” You can almost picture the dandelion blowing away as you play. You have an animated video for it featuring drawings of yourself and your daughter. It is just wonderful, tell me about how it was developed.</b>\r\n\r\n<em>Thank you. The video was created by an artist (Robert Capria) in New York and he was really able to capture my feeling of joy in being a parent; that it took so long to conceive. This song is really about my gratefulness, and a kind of celebration of finally being a parent. That video came about in my discussions with the artist, in talking about what that song means, and it comes from sharing photographs of myself and my daughter. He used those to work with.</em>\r\n\r\n<iframe src=\"//www.youtube.com/embed/eE6vv0IRnuo\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n<b>Have you ever worked with a lyricist?</b>\r\n\r\n<em>No, not really. I have in the past, done some music with lyrics, with my own vocals. But I haven’t really worked collaboratively with a lyricist before.</em>\r\n\r\n<b>You started playing the piano at age four, I’m sure you were trained in many types of music, when did you realize that your calling was to the New Age genre?</b>\r\n\r\n<em>I guess I was in college and playing around on the piano, I would make up my own little compositions. I was talking with some friends about recording an album, I had the idea to do that, and one of my friends said “oh that’s like George Winston, that’s New Age music. And I was like “oh really? Ok.” I had heard his music, but I wasn’t aware that it was called New Age music. I liked the style. As a student, I used to arrange some classical music pieces and do them the wrong way. It was just fun for me to play around with melodies. I was influenced a lot by my classical training, and playing around with classical melodies got me started.</em>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan_aec_4.jpg\"><img class=\"alignright size-medium wp-image-1479\" alt=\"Laura-Sullivan_aec_4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan_aec_4-300x225.jpg\" width=\"300\" height=\"225\" /></a>On January 26th, you’re up against some big names in your genre. Of course your hope is to win, but what else do you hope to take away from the experience?</b>\r\n\r\n<em>I think I just want to really be in the moment and enjoy being there. This is such an incredible experience to have, I just want to soak it in and just have fun. I’m really looking forward to seeing a lot of friends there, and I’m so happy to have a lot of family close to me there. So it will be fun to share that moment with everyone.</em>\r\n\r\nBe sure to catch the 56th Annual Grammy Awards, which will be held on January 26th on CBS.\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>\r\n\r\nFirst published as <a href=\"http://ourvinyl.com/laura-sullivan-interview/\">Laura Sullivan - An Interview</a> in OurVinyl.com','An Interview with Grammy Nominee Laura Sullivan','','publish','open','open','','an-interview-with-grammy-nominee-laura-sullivan','','','2014-01-17 08:03:32','2014-01-17 14:03:32','',0,'http://www.earthhertzrecords.com/?p=1473',0,'post','',1),(1474,2,'2014-01-17 06:02:29','2014-01-17 12:02:29','Creating music in the purest sense, is piecing together notes which are born in the soul, take their first steps in the heart, and are given flight through a musical instrument. Nowhere is that more evident than with instrumental music. Without the aid of lyrics, a composer must channel the life-cycle of the music, and convey to the listener, every emotion experienced during the writing process.\r\n\r\nPianist Laura Sullivan’s new album <i>Love’s River</i>, does exactly that. Nominated as Best New Age Album in the upcoming 56th Annual Grammy Awards, Ms. Sullivan’s seventh album has proven to be the lucky one. The album reached #2 on the<a href=\"http://www.zonemusicreporter.com/\"> ZoneMusicReporter</a> chart, the industry standard for radio airplay of New Age music. As only the ninth woman to receive a Grammy nomination in this category, Laura has already reached a level attained by only a few.\r\n\r\nThe music of <a href=\"http://www.laura-sullivan.com/\">Laura Sullivan</a> is well known and respected within the industry. Her music has appeared on television shows such as “So You Think You Can Dance,” national commercials, and she has written the musical scores for many television shows and feature films.\r\n\r\nWhile savoring her first Grammy nomination, Laura is well aware of her competition. The other nominees in her category are: Kitaro, Peter Kater, Brian Eno and, R. Carlos Nakai and Will Clipman. Combined, these artists have over forty Grammy nominations on their resumes.\r\n\r\nWhile trying to manage life and all that goes along with being a Grammy nominee in the weeks before the Awards, Laura spent some time talking with me about the emotions in being nominated, her writing process and her hopes for Grammy night.\r\n\r\n<b>Kath Galasso: In the 27 year history of the Best New Age Album category, you are only the ninth woman to receive a Grammy nomination. While a couple of women have been part of a winning band, the only other female solo artist to win this category has been Enya. Before the nomination, were you aware of how few women had been nominated and actually taken home a Grammy?</b>\r\n\r\n<em>Laura Sullivan: I didn’t have the exact stats on that beforehand, I knew that it wasn’t too many. I hadn’t gone in and really checked it.</em>\r\n\r\n<b>Your category was not announced on the Grammy nomination TV special, so you had to wait until after it was over to view the full online list of nominees. Where you working that night or were you watching the show?</b>\r\n\r\n<em>We had taped the show, and I think I was putting my daughter to bed or something like that, and I got a call from a friend. She was just screaming into the phone… in a good way, so I knew that something was up. Then we checked online and saw that I was nominated. It was very exciting.</em>\r\n\r\n<b>The time between Grammy submissions and the actual nomination is totally insane with trying to promote your music, whether it’s in print, TV or social media, yet during that time you still need to focus on your job, which is writing music, and your family. How were you able to get a balance in your life?</b>\r\n\r\n<em>Oh my goodness, that is a great question. I wasn’t prepared for the PR end of this at all. For example, we just got a press release out today, and many other nominees had a press release that went out the day after the nominations were announced. So being this is my first nomination, I’m just sort of learning the ropes, and it feels kind of fresh. It’s exactly what you’re saying, you nailed it on the head, I’m trying to balance my family, things like finding the clothing and also continuing to make music. I also write for a publisher in New York, writing TV underscores, so I’ve tried to keep that going a little bit too. Then the promotion of the nomination, and it has been quite a bit.</em>\r\n\r\n<b>Is it a little better now that all the ballots have been submitted?</b>\r\n\r\n<em>Yeah, a little bit. It’s kind of a feeling of relief I guess, just to know that it’s all done and whatever happens, happens. And I’m really going to be excited and happy for whoever wins. I feel like I’ve already won in a way, just by being nominated. And I’m truly going to celebrate with whoever brings home that little statue.</em>\r\n\r\n<b>It’s </b><b></b><b>funny that you say you’re going to be happy for whoever actually wins. I had never been involved in the Grammy process before, and you always hear people say that it’s a thrill to be nominated, but having been involved with the process of getting our (Earth Hertz Records) artists submitted in for the first round, and seeing how much works goes into it, to actually be one of those people nominated… I get it now. I understand how you could feel that way.</b>\r\n\r\n<em>Absolutely, yes it’s quite an honor. And the people I’m nominated with, I admire them so much. So yes, I’m overwhelmed with how big a thrill it is and what an honor it is.</em>\r\n\r\n<b>Tell me about your writing process. Is the writing different when you are writing for a show, something you’ve been contracted to write specifically for, than when you’re just writing from inspiration?</b>\r\n\r\n<em>Yes, it is. I feel a lot more freedom when I’m creating a project that will be my own project, like Love’s River was, in that it’s coming from my own heart, from what I want to express as an artist. I try to make the album cohesive in that the songs go together in some way, but it’s only being dictated by what I want to express, and not by anyone else. And that’s a lot of fun.</em>\r\n\r\n<b>I’m always interested as to how instrumentalists title their songs. How do you come up with the titles for your songs?</b>\r\n\r\n<em>I think it happens a little bit within the process of writing the music. The imagery that comes to my mind as I’m coming up with the ideas for the melodies and the harmony. Also the events in my life, emotions that I’m feeling are emotions that come out in the music as well.</em>\r\n\r\n<b>I don’t think you could have come up with a better title for “Wishing on a Dandelion.” You can almost picture the dandelion blowing away as you play. You have an animated video for it featuring drawings of yourself and your daughter. It is just wonderful, tell me about how it was developed.</b>\r\n\r\n<em>Thank you. The video was created by an artist (Robert Capria) in New York and he was really able to capture my feeling of joy in being a parent; that it took so long to conceive. This song is really about my gratefulness, and a kind of celebration of finally being a parent. That video came about in my discussions with the artist, in talking about what that song means, and it comes from sharing photographs of myself and my daughter. He used those to work with.</em>\r\n\r\n<b>Have you ever worked with a lyricist?</b>\r\n\r\n<em>No, not really. I have in the past, done some music with lyrics, with my own vocals. But I haven’t really worked collaboratively with a lyricist before.</em>\r\n\r\n<b>You started playing the piano at age four, I’m sure you were trained in many types of music, when did you realize that your calling was to the New Age genre?</b>\r\n\r\n<em>I guess I was in college and playing around on the piano, I would make up my own little compositions. I was talking with some friends about recording an album, I had the idea to do that, and one of my friends said “oh that’s like George Winston, that’s New Age music. And I was like “oh really? Ok.” I had heard his music, but I wasn’t aware that it was called New Age music. I liked the style. As a student, I used to arrange some classical music pieces and do them the wrong way. It was just fun for me to play around with melodies. I was influenced a lot by my classical training, and playing around with classical melodies got me started.</em>\r\n\r\n<b>On January 26th, you’re up against some big names in your genre. Of course your hope is to win, but what else do you hope to take away from the experience?</b>\r\n\r\n<em>I think I just want to really be in the moment and enjoy being there. This is such an incredible experience to have, I just want to soak it in and just have fun. I’m really looking forward to seeing a lot of friends there, and I’m so happy to have a lot of family close to me there. So it will be fun to share that moment with everyone.</em>\r\n\r\nBe sure to catch the 56th Annual Grammy Awards, which will be held on January 26th on CBS.','','','inherit','open','open','','1473-revision-v1','','','2014-01-17 06:02:29','2014-01-17 12:02:29','',1473,'http://www.earthhertzrecords.com/2014/01/1473-revision-v1/',0,'revision','',0),(1475,2,'2014-01-17 06:04:30','2014-01-17 12:04:30','Creating music in the purest sense, is piecing together notes which are born in the soul, take their first steps in the heart, and are given flight through a musical instrument. Nowhere is that more evident than with instrumental music. Without the aid of lyrics, a composer must channel the life-cycle of the music, and convey to the listener, every emotion experienced during the writing process.\r\n\r\nPianist Laura Sullivan’s new album <i>Love’s River</i>, does exactly that. Nominated as Best New Age Album in the upcoming 56th Annual Grammy Awards, Ms. Sullivan’s seventh album has proven to be the lucky one. The album reached #2 on the<a href=\"http://www.zonemusicreporter.com/\"> ZoneMusicReporter</a> chart, the industry standard for radio airplay of New Age music. As only the ninth woman to receive a Grammy nomination in this category, Laura has already reached a level attained by only a few.\r\n\r\nThe music of <a href=\"http://www.laura-sullivan.com/\">Laura Sullivan</a> is well known and respected within the industry. Her music has appeared on television shows such as “So You Think You Can Dance,” national commercials, and she has written the musical scores for many television shows and feature films.\r\n\r\nWhile savoring her first Grammy nomination, Laura is well aware of her competition. The other nominees in her category are: Kitaro, Peter Kater, Brian Eno and, R. Carlos Nakai and Will Clipman. Combined, these artists have over forty Grammy nominations on their resumes.\r\n\r\nWhile trying to manage life and all that goes along with being a Grammy nominee in the weeks before the Awards, Laura spent some time talking with me about the emotions in being nominated, her writing process and her hopes for Grammy night.\r\n\r\n<b>Kath Galasso: In the 27 year history of the Best New Age Album category, you are only the ninth woman to receive a Grammy nomination. While a couple of women have been part of a winning band, the only other female solo artist to win this category has been Enya. Before the nomination, were you aware of how few women had been nominated and actually taken home a Grammy?</b>\r\n\r\n<em>Laura Sullivan: I didn’t have the exact stats on that beforehand, I knew that it wasn’t too many. I hadn’t gone in and really checked it.</em>\r\n\r\n<b>Your category was not announced on the Grammy nomination TV special, so you had to wait until after it was over to view the full online list of nominees. Where you working that night or were you watching the show?</b>\r\n\r\n<em>We had taped the show, and I think I was putting my daughter to bed or something like that, and I got a call from a friend. She was just screaming into the phone… in a good way, so I knew that something was up. Then we checked online and saw that I was nominated. It was very exciting.</em>\r\n\r\n<b>The time between Grammy submissions and the actual nomination is totally insane with trying to promote your music, whether it’s in print, TV or social media, yet during that time you still need to focus on your job, which is writing music, and your family. How were you able to get a balance in your life?</b>\r\n\r\n<em>Oh my goodness, that is a great question. I wasn’t prepared for the PR end of this at all. For example, we just got a press release out today, and many other nominees had a press release that went out the day after the nominations were announced. So being this is my first nomination, I’m just sort of learning the ropes, and it feels kind of fresh. It’s exactly what you’re saying, you nailed it on the head, I’m trying to balance my family, things like finding the clothing and also continuing to make music. I also write for a publisher in New York, writing TV underscores, so I’ve tried to keep that going a little bit too. Then the promotion of the nomination, and it has been quite a bit.</em>\r\n\r\n<b>Is it a little better now that all the ballots have been submitted?</b>\r\n\r\n<em>Yeah, a little bit. It’s kind of a feeling of relief I guess, just to know that it’s all done and whatever happens, happens. And I’m really going to be excited and happy for whoever wins. I feel like I’ve already won in a way, just by being nominated. And I’m truly going to celebrate with whoever brings home that little statue.</em>\r\n\r\n<b>It’s </b><b></b><b>funny that you say you’re going to be happy for whoever actually wins. I had never been involved in the Grammy process before, and you always hear people say that it’s a thrill to be nominated, but having been involved with the process of getting our (Earth Hertz Records) artists submitted in for the first round, and seeing how much works goes into it, to actually be one of those people nominated… I get it now. I understand how you could feel that way.</b>\r\n\r\n<em>Absolutely, yes it’s quite an honor. And the people I’m nominated with, I admire them so much. So yes, I’m overwhelmed with how big a thrill it is and what an honor it is.</em>\r\n\r\n<b>Tell me about your writing process. Is the writing different when you are writing for a show, something you’ve been contracted to write specifically for, than when you’re just writing from inspiration?</b>\r\n\r\n<em>Yes, it is. I feel a lot more freedom when I’m creating a project that will be my own project, like Love’s River was, in that it’s coming from my own heart, from what I want to express as an artist. I try to make the album cohesive in that the songs go together in some way, but it’s only being dictated by what I want to express, and not by anyone else. And that’s a lot of fun.</em>\r\n\r\n<b>I’m always interested as to how instrumentalists title their songs. How do you come up with the titles for your songs?</b>\r\n\r\n<em>I think it happens a little bit within the process of writing the music. The imagery that comes to my mind as I’m coming up with the ideas for the melodies and the harmony. Also the events in my life, emotions that I’m feeling are emotions that come out in the music as well.</em>\r\n\r\n<b>I don’t think you could have come up with a better title for “Wishing on a Dandelion.” You can almost picture the dandelion blowing away as you play. You have an animated video for it featuring drawings of yourself and your daughter. It is just wonderful, tell me about how it was developed.</b>\r\n\r\n<em>Thank you. The video was created by an artist (Robert Capria) in New York and he was really able to capture my feeling of joy in being a parent; that it took so long to conceive. This song is really about my gratefulness, and a kind of celebration of finally being a parent. That video came about in my discussions with the artist, in talking about what that song means, and it comes from sharing photographs of myself and my daughter. He used those to work with.</em>\r\n\r\n<b>Have you ever worked with a lyricist?</b>\r\n\r\n<em>No, not really. I have in the past, done some music with lyrics, with my own vocals. But I haven’t really worked collaboratively with a lyricist before.</em>\r\n\r\n<b>You started playing the piano at age four, I’m sure you were trained in many types of music, when did you realize that your calling was to the New Age genre?</b>\r\n\r\n<em>I guess I was in college and playing around on the piano, I would make up my own little compositions. I was talking with some friends about recording an album, I had the idea to do that, and one of my friends said “oh that’s like George Winston, that’s New Age music. And I was like “oh really? Ok.” I had heard his music, but I wasn’t aware that it was called New Age music. I liked the style. As a student, I used to arrange some classical music pieces and do them the wrong way. It was just fun for me to play around with melodies. I was influenced a lot by my classical training, and playing around with classical melodies got me started.</em>\r\n\r\n<b>On January 26th, you’re up against some big names in your genre. Of course your hope is to win, but what else do you hope to take away from the experience?</b>\r\n\r\n<em>I think I just want to really be in the moment and enjoy being there. This is such an incredible experience to have, I just want to soak it in and just have fun. I’m really looking forward to seeing a lot of friends there, and I’m so happy to have a lot of family close to me there. So it will be fun to share that moment with everyone.</em>\r\n\r\nBe sure to catch the 56th Annual Grammy Awards, which will be held on January 26th on CBS.\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','An Interview with Grammy Nominee Laura Sullivan','','inherit','open','open','','1473-revision-v1','','','2014-01-17 06:04:30','2014-01-17 12:04:30','',1473,'http://www.earthhertzrecords.com/2014/01/1473-revision-v1/',0,'revision','',0),(1476,2,'2014-01-17 06:07:47','2014-01-17 12:07:47','','laura_hmb_300dpi-300x400','','inherit','open','open','','laura_hmb_300dpi-300x400','','','2014-01-17 06:07:47','2014-01-17 12:07:47','',1473,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/laura_hmb_300dpi-300x400.jpg',0,'attachment','image/jpeg',0),(1477,2,'2014-01-17 06:08:46','2014-01-17 12:08:46','','1370062464_laura-sullivan-loves-river-2012-400x400','','inherit','open','open','','1370062464_laura-sullivan-loves-river-2012-400x400','','','2014-01-17 06:08:46','2014-01-17 12:08:46','',1473,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1370062464_laura-sullivan-loves-river-2012-400x400.jpg',0,'attachment','image/jpeg',0),(1478,2,'2014-01-17 06:12:32','2014-01-17 12:12:32','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/laura_hmb_300dpi-300x400.jpg\"><img class=\"alignleft size-medium wp-image-1476\" alt=\"laura_hmb_300dpi-300x400\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/laura_hmb_300dpi-300x400-225x300.jpg\" width=\"225\" height=\"300\" /></a>Creating music in the purest sense, is piecing together notes which are born in the soul, take their first steps in the heart, and are given flight through a musical instrument. Nowhere is that more evident than with instrumental music. Without the aid of lyrics, a composer must channel the life-cycle of the music, and convey to the listener, every emotion experienced during the writing process.\r\n\r\nPianist Laura Sullivan’s new album <i>Love’s River</i>, does exactly that. Nominated as Best New Age Album in the upcoming 56th Annual Grammy Awards, Ms. Sullivan’s seventh album has proven to be the lucky one. The album reached #2 on the<a href=\"http://www.zonemusicreporter.com/\"> ZoneMusicReporter</a> chart, the industry standard for radio airplay of New Age music. As only the ninth woman to receive a Grammy nomination in this category, Laura has already reached a level attained by only a few.\r\n\r\nThe music of <a href=\"http://www.laura-sullivan.com/\">Laura Sullivan</a> is well known and respected within the industry. Her music has appeared on television shows such as “So You Think You Can Dance,” national commercials, and she has written the musical scores for many television shows and feature films.\r\n\r\nWhile savoring her first Grammy nomination, Laura is well aware of her competition. The other nominees in her category are: Kitaro, Peter Kater, Brian Eno and, R. Carlos Nakai and Will Clipman. Combined, these artists have over forty Grammy nominations on their resumes.\r\n\r\nWhile trying to manage life and all that goes along with being a Grammy nominee in the weeks before the Awards, Laura spent some time talking with me about the emotions in being nominated, her writing process and her hopes for Grammy night.\r\n\r\n<b>Kath Galasso: In the 27 year history of the Best New Age Album category, you are only the ninth woman to receive a Grammy nomination. While a couple of women have been part of a winning band, the only other female solo artist to win this category has been Enya. Before the nomination, were you aware of how few women had been nominated and actually taken home a Grammy?</b>\r\n\r\n<em>Laura Sullivan: I didn’t have the exact stats on that beforehand, I knew that it wasn’t too many. I hadn’t gone in and really checked it.</em>\r\n\r\n<b>Your category was not announced on the Grammy nomination TV special, so you had to wait until after it was over to view the full online list of nominees. Where you working that night or were you watching the show?</b>\r\n\r\n<em>We had taped the show, and I think I was putting my daughter to bed or something like that, and I got a call from a friend. She was just screaming into the phone… in a good way, so I knew that something was up. Then we checked online and saw that I was nominated. It was very exciting.</em>\r\n\r\n<b>The time between Grammy submissions and the actual nomination is totally insane with trying to promote your music, whether it’s in print, TV or social media, yet during that time you still need to focus on your job, which is writing music, and your family. How were you able to get a balance in your life?</b>\r\n\r\n<em>Oh my goodness, that is a great question. I wasn’t prepared for the PR end of this at all. For example, we just got a press release out today, and many other nominees had a press release that went out the day after the nominations were announced. So being this is my first nomination, I’m just sort of learning the ropes, and it feels kind of fresh. It’s exactly what you’re saying, you nailed it on the head, I’m trying to balance my family, things like finding the clothing and also continuing to make music. I also write for a publisher in New York, writing TV underscores, so I’ve tried to keep that going a little bit too. Then the promotion of the nomination, and it has been quite a bit.</em>\r\n\r\n<b>Is it a little better now that all the ballots have been submitted?</b>\r\n\r\n<em>Yeah, a little bit. It’s kind of a feeling of relief I guess, just to know that it’s all done and whatever happens, happens. And I’m really going to be excited and happy for whoever wins. I feel like I’ve already won in a way, just by being nominated. And I’m truly going to celebrate with whoever brings home that little statue.</em>\r\n\r\n<b>It’s </b><b></b><b>funny that you say you’re going to be happy for whoever actually wins. I had never been involved in the Grammy process before, and you always hear people say that it’s a thrill to be nominated, but having been involved with the process of getting our (Earth Hertz Records) artists submitted in for the first round, and seeing how much works goes into it, to actually be one of those people nominated… I get it now. I understand how you could feel that way.</b>\r\n\r\n<em>Absolutely, yes it’s quite an honor. And the people I’m nominated with, I admire them so much. So yes, I’m overwhelmed with how big a thrill it is and what an honor it is.</em>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1370062464_laura-sullivan-loves-river-2012-400x400.jpg\"><img class=\"alignright size-medium wp-image-1477\" alt=\"1370062464_laura-sullivan-loves-river-2012-400x400\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1370062464_laura-sullivan-loves-river-2012-400x400-300x300.jpg\" width=\"300\" height=\"300\" /></a>Tell me about your writing process. Is the writing different when you are writing for a show, something you’ve been contracted to write specifically for, than when you’re just writing from inspiration?</b>\r\n\r\n<em>Yes, it is. I feel a lot more freedom when I’m creating a project that will be my own project, like Love’s River was, in that it’s coming from my own heart, from what I want to express as an artist. I try to make the album cohesive in that the songs go together in some way, but it’s only being dictated by what I want to express, and not by anyone else. And that’s a lot of fun.</em>\r\n\r\n<b>I’m always interested as to how instrumentalists title their songs. How do you come up with the titles for your songs?</b>\r\n\r\n<em>I think it happens a little bit within the process of writing the music. The imagery that comes to my mind as I’m coming up with the ideas for the melodies and the harmony. Also the events in my life, emotions that I’m feeling are emotions that come out in the music as well.</em>\r\n\r\n<b>I don’t think you could have come up with a better title for “Wishing on a Dandelion.” You can almost picture the dandelion blowing away as you play. You have an animated video for it featuring drawings of yourself and your daughter. It is just wonderful, tell me about how it was developed.</b>\r\n\r\n<em>Thank you. The video was created by an artist (Robert Capria) in New York and he was really able to capture my feeling of joy in being a parent; that it took so long to conceive. This song is really about my gratefulness, and a kind of celebration of finally being a parent. That video came about in my discussions with the artist, in talking about what that song means, and it comes from sharing photographs of myself and my daughter. He used those to work with.</em>\r\n\r\n<iframe src=\"//www.youtube.com/embed/eE6vv0IRnuo\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n<b>Have you ever worked with a lyricist?</b>\r\n\r\n<em>No, not really. I have in the past, done some music with lyrics, with my own vocals. But I haven’t really worked collaboratively with a lyricist before.</em>\r\n\r\n<b>You started playing the piano at age four, I’m sure you were trained in many types of music, when did you realize that your calling was to the New Age genre?</b>\r\n\r\n<em>I guess I was in college and playing around on the piano, I would make up my own little compositions. I was talking with some friends about recording an album, I had the idea to do that, and one of my friends said “oh that’s like George Winston, that’s New Age music. And I was like “oh really? Ok.” I had heard his music, but I wasn’t aware that it was called New Age music. I liked the style. As a student, I used to arrange some classical music pieces and do them the wrong way. It was just fun for me to play around with melodies. I was influenced a lot by my classical training, and playing around with classical melodies got me started.</em>\r\n\r\n<b>On January 26th, you’re up against some big names in your genre. Of course your hope is to win, but what else do you hope to take away from the experience?</b>\r\n\r\n<em>I think I just want to really be in the moment and enjoy being there. This is such an incredible experience to have, I just want to soak it in and just have fun. I’m really looking forward to seeing a lot of friends there, and I’m so happy to have a lot of family close to me there. So it will be fun to share that moment with everyone.</em>\r\n\r\nBe sure to catch the 56th Annual Grammy Awards, which will be held on January 26th on CBS.\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','An Interview with Grammy Nominee Laura Sullivan','','inherit','open','open','','1473-revision-v1','','','2014-01-17 06:12:32','2014-01-17 12:12:32','',1473,'http://www.earthhertzrecords.com/2014/01/1473-revision-v1/',0,'revision','',0),(1479,2,'2014-01-17 06:13:40','2014-01-17 12:13:40','','Laura-Sullivan_aec_4','','inherit','open','open','','laura-sullivan_aec_4','','','2014-01-17 06:13:40','2014-01-17 12:13:40','',1473,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan_aec_4.jpg',0,'attachment','image/jpeg',0),(1480,2,'2014-01-17 06:13:54','2014-01-17 12:13:54','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/laura_hmb_300dpi-300x400.jpg\"><img class=\"alignleft size-medium wp-image-1476\" alt=\"laura_hmb_300dpi-300x400\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/laura_hmb_300dpi-300x400-225x300.jpg\" width=\"225\" height=\"300\" /></a>Creating music in the purest sense, is piecing together notes which are born in the soul, take their first steps in the heart, and are given flight through a musical instrument. Nowhere is that more evident than with instrumental music. Without the aid of lyrics, a composer must channel the life-cycle of the music, and convey to the listener, every emotion experienced during the writing process.\r\n\r\nPianist Laura Sullivan’s new album <i>Love’s River</i>, does exactly that. Nominated as Best New Age Album in the upcoming 56th Annual Grammy Awards, Ms. Sullivan’s seventh album has proven to be the lucky one. The album reached #2 on the<a href=\"http://www.zonemusicreporter.com/\"> ZoneMusicReporter</a> chart, the industry standard for radio airplay of New Age music. As only the ninth woman to receive a Grammy nomination in this category, Laura has already reached a level attained by only a few.\r\n\r\nThe music of <a href=\"http://www.laura-sullivan.com/\">Laura Sullivan</a> is well known and respected within the industry. Her music has appeared on television shows such as “So You Think You Can Dance,” national commercials, and she has written the musical scores for many television shows and feature films.\r\n\r\nWhile savoring her first Grammy nomination, Laura is well aware of her competition. The other nominees in her category are: Kitaro, Peter Kater, Brian Eno and, R. Carlos Nakai and Will Clipman. Combined, these artists have over forty Grammy nominations on their resumes.\r\n\r\nWhile trying to manage life and all that goes along with being a Grammy nominee in the weeks before the Awards, Laura spent some time talking with me about the emotions in being nominated, her writing process and her hopes for Grammy night.\r\n\r\n<b>Kath Galasso: In the 27 year history of the Best New Age Album category, you are only the ninth woman to receive a Grammy nomination. While a couple of women have been part of a winning band, the only other female solo artist to win this category has been Enya. Before the nomination, were you aware of how few women had been nominated and actually taken home a Grammy?</b>\r\n\r\n<em>Laura Sullivan: I didn’t have the exact stats on that beforehand, I knew that it wasn’t too many. I hadn’t gone in and really checked it.</em>\r\n\r\n<b>Your category was not announced on the Grammy nomination TV special, so you had to wait until after it was over to view the full online list of nominees. Where you working that night or were you watching the show?</b>\r\n\r\n<em>We had taped the show, and I think I was putting my daughter to bed or something like that, and I got a call from a friend. She was just screaming into the phone… in a good way, so I knew that something was up. Then we checked online and saw that I was nominated. It was very exciting.</em>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1370062464_laura-sullivan-loves-river-2012-400x400.jpg\"><img class=\"alignright size-medium wp-image-1477\" alt=\"1370062464_laura-sullivan-loves-river-2012-400x400\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1370062464_laura-sullivan-loves-river-2012-400x400-300x300.jpg\" width=\"300\" height=\"300\" /></a>The time between Grammy submissions and the actual nomination is totally insane with trying to promote your music, whether it’s in print, TV or social media, yet during that time you still need to focus on your job, which is writing music, and your family. How were you able to get a balance in your life?</b>\r\n\r\n<em>Oh my goodness, that is a great question. I wasn’t prepared for the PR end of this at all. For example, we just got a press release out today, and many other nominees had a press release that went out the day after the nominations were announced. So being this is my first nomination, I’m just sort of learning the ropes, and it feels kind of fresh. It’s exactly what you’re saying, you nailed it on the head, I’m trying to balance my family, things like finding the clothing and also continuing to make music. I also write for a publisher in New York, writing TV underscores, so I’ve tried to keep that going a little bit too. Then the promotion of the nomination, and it has been quite a bit.</em>\r\n\r\n<b>Is it a little better now that all the ballots have been submitted?</b>\r\n\r\n<em>Yeah, a little bit. It’s kind of a feeling of relief I guess, just to know that it’s all done and whatever happens, happens. And I’m really going to be excited and happy for whoever wins. I feel like I’ve already won in a way, just by being nominated. And I’m truly going to celebrate with whoever brings home that little statue.</em>\r\n\r\n<b>It’s </b><b></b><b>funny that you say you’re going to be happy for whoever actually wins. I had never been involved in the Grammy process before, and you always hear people say that it’s a thrill to be nominated, but having been involved with the process of getting our (Earth Hertz Records) artists submitted in for the first round, and seeing how much works goes into it, to actually be one of those people nominated… I get it now. I understand how you could feel that way.</b>\r\n\r\n<em>Absolutely, yes it’s quite an honor. And the people I’m nominated with, I admire them so much. So yes, I’m overwhelmed with how big a thrill it is and what an honor it is.</em>\r\n\r\n<b>Tell me about your writing process. Is the writing different when you are writing for a show, something you’ve been contracted to write specifically for, than when you’re just writing from inspiration?</b>\r\n\r\n<em>Yes, it is. I feel a lot more freedom when I’m creating a project that will be my own project, like Love’s River was, in that it’s coming from my own heart, from what I want to express as an artist. I try to make the album cohesive in that the songs go together in some way, but it’s only being dictated by what I want to express, and not by anyone else. And that’s a lot of fun.</em>\r\n\r\n<b>I’m always interested as to how instrumentalists title their songs. How do you come up with the titles for your songs?</b>\r\n\r\n<em>I think it happens a little bit within the process of writing the music. The imagery that comes to my mind as I’m coming up with the ideas for the melodies and the harmony. Also the events in my life, emotions that I’m feeling are emotions that come out in the music as well.</em>\r\n\r\n<b>I don’t think you could have come up with a better title for “Wishing on a Dandelion.” You can almost picture the dandelion blowing away as you play. You have an animated video for it featuring drawings of yourself and your daughter. It is just wonderful, tell me about how it was developed.</b>\r\n\r\n<em>Thank you. The video was created by an artist (Robert Capria) in New York and he was really able to capture my feeling of joy in being a parent; that it took so long to conceive. This song is really about my gratefulness, and a kind of celebration of finally being a parent. That video came about in my discussions with the artist, in talking about what that song means, and it comes from sharing photographs of myself and my daughter. He used those to work with.</em>\r\n\r\n<iframe src=\"//www.youtube.com/embed/eE6vv0IRnuo\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n<b>Have you ever worked with a lyricist?</b>\r\n\r\n<em>No, not really. I have in the past, done some music with lyrics, with my own vocals. But I haven’t really worked collaboratively with a lyricist before.</em>\r\n\r\n<b>You started playing the piano at age four, I’m sure you were trained in many types of music, when did you realize that your calling was to the New Age genre?</b>\r\n\r\n<em>I guess I was in college and playing around on the piano, I would make up my own little compositions. I was talking with some friends about recording an album, I had the idea to do that, and one of my friends said “oh that’s like George Winston, that’s New Age music. And I was like “oh really? Ok.” I had heard his music, but I wasn’t aware that it was called New Age music. I liked the style. As a student, I used to arrange some classical music pieces and do them the wrong way. It was just fun for me to play around with melodies. I was influenced a lot by my classical training, and playing around with classical melodies got me started.</em>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan_aec_4.jpg\"><img class=\"alignright size-medium wp-image-1479\" alt=\"Laura-Sullivan_aec_4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan_aec_4-300x225.jpg\" width=\"300\" height=\"225\" /></a>On January 26th, you’re up against some big names in your genre. Of course your hope is to win, but what else do you hope to take away from the experience?</b>\r\n\r\n<em>I think I just want to really be in the moment and enjoy being there. This is such an incredible experience to have, I just want to soak it in and just have fun. I’m really looking forward to seeing a lot of friends there, and I’m so happy to have a lot of family close to me there. So it will be fun to share that moment with everyone.</em>\r\n\r\nBe sure to catch the 56th Annual Grammy Awards, which will be held on January 26th on CBS.\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','An Interview with Grammy Nominee Laura Sullivan','','inherit','open','open','','1473-revision-v1','','','2014-01-17 06:13:54','2014-01-17 12:13:54','',1473,'http://www.earthhertzrecords.com/2014/01/1473-revision-v1/',0,'revision','',0),(1481,2,'2014-01-17 06:20:23','2014-01-17 12:20:23','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/laura_hmb_300dpi-300x400.jpg\"><img class=\"alignleft size-medium wp-image-1476\" alt=\"laura_hmb_300dpi-300x400\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/laura_hmb_300dpi-300x400-225x300.jpg\" width=\"225\" height=\"300\" /></a>Creating music in the purest sense, is piecing together notes which are born in the soul, take their first steps in the heart, and are given flight through a musical instrument. Nowhere is that more evident than with instrumental music. Without the aid of lyrics, a composer must channel the life-cycle of the music, and convey to the listener, every emotion experienced during the writing process.\r\n\r\nPianist Laura Sullivan’s new album <i>Love’s River</i>, does exactly that. Nominated as Best New Age Album in the upcoming 56th Annual Grammy Awards, Ms. Sullivan’s seventh album has proven to be the lucky one. The album reached #2 on the<a href=\"http://www.zonemusicreporter.com/\"> ZoneMusicReporter</a> chart, the industry standard for radio airplay of New Age music. As only the ninth woman to receive a Grammy nomination in this category, Laura has already reached a level attained by only a few.\r\n\r\nThe music of <a href=\"http://www.laura-sullivan.com/\">Laura Sullivan</a> is well known and respected within the industry. Her music has appeared on television shows such as “So You Think You Can Dance,” national commercials, and she has written the musical scores for many television shows and feature films.\r\n\r\nWhile savoring her first Grammy nomination, Laura is well aware of her competition. The other nominees in her category are: Kitaro, Peter Kater, Brian Eno and, R. Carlos Nakai and Will Clipman. Combined, these artists have over forty Grammy nominations on their resumes.\r\n\r\nWhile trying to manage life and all that goes along with being a Grammy nominee in the weeks before the Awards, Laura spent some time talking with me about the emotions in being nominated, her writing process and her hopes for Grammy night.\r\n\r\n<b>Kath Galasso: In the 27 year history of the Best New Age Album category, you are only the ninth woman to receive a Grammy nomination. While a couple of women have been part of a winning band, the only other female solo artist to win this category has been Enya. Before the nomination, were you aware of how few women had been nominated and actually taken home a Grammy?</b>\r\n\r\n<em>Laura Sullivan: I didn’t have the exact stats on that beforehand, I knew that it wasn’t too many. I hadn’t gone in and really checked it.</em>\r\n\r\n<b>Your category was not announced on the Grammy nomination TV special, so you had to wait until after it was over to view the full online list of nominees. Where you working that night or were you watching the show?</b>\r\n\r\n<em>We had taped the show, and I think I was putting my daughter to bed or something like that, and I got a call from a friend. She was just screaming into the phone… in a good way, so I knew that something was up. Then we checked online and saw that I was nominated. It was very exciting.</em>\r\n\r\n<b><a href=\"http://www.laura-sullivan.com/\"><img class=\"alignright size-medium wp-image-1477\" alt=\"1370062464_laura-sullivan-loves-river-2012-400x400\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1370062464_laura-sullivan-loves-river-2012-400x400-300x300.jpg\" width=\"300\" height=\"300\" /></a>The time between Grammy submissions and the actual nomination is totally insane with trying to promote your music, whether it’s in print, TV or social media, yet during that time you still need to focus on your job, which is writing music, and your family. How were you able to get a balance in your life?</b>\r\n\r\n<em>Oh my goodness, that is a great question. I wasn’t prepared for the PR end of this at all. For example, we just got a press release out today, and many other nominees had a press release that went out the day after the nominations were announced. So being this is my first nomination, I’m just sort of learning the ropes, and it feels kind of fresh. It’s exactly what you’re saying, you nailed it on the head, I’m trying to balance my family, things like finding the clothing and also continuing to make music. I also write for a publisher in New York, writing TV underscores, so I’ve tried to keep that going a little bit too. Then the promotion of the nomination, and it has been quite a bit.</em>\r\n\r\n<b>Is it a little better now that all the ballots have been submitted?</b>\r\n\r\n<em>Yeah, a little bit. It’s kind of a feeling of relief I guess, just to know that it’s all done and whatever happens, happens. And I’m really going to be excited and happy for whoever wins. I feel like I’ve already won in a way, just by being nominated. And I’m truly going to celebrate with whoever brings home that little statue.</em>\r\n\r\n<b>It’s </b><b></b><b>funny that you say you’re going to be happy for whoever actually wins. I had never been involved in the Grammy process before, and you always hear people say that it’s a thrill to be nominated, but having been involved with the process of getting our (Earth Hertz Records) artists submitted in for the first round, and seeing how much works goes into it, to actually be one of those people nominated… I get it now. I understand how you could feel that way.</b>\r\n\r\n<em>Absolutely, yes it’s quite an honor. And the people I’m nominated with, I admire them so much. So yes, I’m overwhelmed with how big a thrill it is and what an honor it is.</em>\r\n\r\n<b>Tell me about your writing process. Is the writing different when you are writing for a show, something you’ve been contracted to write specifically for, than when you’re just writing from inspiration?</b>\r\n\r\n<em>Yes, it is. I feel a lot more freedom when I’m creating a project that will be my own project, like Love’s River was, in that it’s coming from my own heart, from what I want to express as an artist. I try to make the album cohesive in that the songs go together in some way, but it’s only being dictated by what I want to express, and not by anyone else. And that’s a lot of fun.</em>\r\n\r\n<b>I’m always interested as to how instrumentalists title their songs. How do you come up with the titles for your songs?</b>\r\n\r\n<em>I think it happens a little bit within the process of writing the music. The imagery that comes to my mind as I’m coming up with the ideas for the melodies and the harmony. Also the events in my life, emotions that I’m feeling are emotions that come out in the music as well.</em>\r\n\r\n<b>I don’t think you could have come up with a better title for “Wishing on a Dandelion.” You can almost picture the dandelion blowing away as you play. You have an animated video for it featuring drawings of yourself and your daughter. It is just wonderful, tell me about how it was developed.</b>\r\n\r\n<em>Thank you. The video was created by an artist (Robert Capria) in New York and he was really able to capture my feeling of joy in being a parent; that it took so long to conceive. This song is really about my gratefulness, and a kind of celebration of finally being a parent. That video came about in my discussions with the artist, in talking about what that song means, and it comes from sharing photographs of myself and my daughter. He used those to work with.</em>\r\n\r\n<iframe src=\"//www.youtube.com/embed/eE6vv0IRnuo\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n<b>Have you ever worked with a lyricist?</b>\r\n\r\n<em>No, not really. I have in the past, done some music with lyrics, with my own vocals. But I haven’t really worked collaboratively with a lyricist before.</em>\r\n\r\n<b>You started playing the piano at age four, I’m sure you were trained in many types of music, when did you realize that your calling was to the New Age genre?</b>\r\n\r\n<em>I guess I was in college and playing around on the piano, I would make up my own little compositions. I was talking with some friends about recording an album, I had the idea to do that, and one of my friends said “oh that’s like George Winston, that’s New Age music. And I was like “oh really? Ok.” I had heard his music, but I wasn’t aware that it was called New Age music. I liked the style. As a student, I used to arrange some classical music pieces and do them the wrong way. It was just fun for me to play around with melodies. I was influenced a lot by my classical training, and playing around with classical melodies got me started.</em>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan_aec_4.jpg\"><img class=\"alignright size-medium wp-image-1479\" alt=\"Laura-Sullivan_aec_4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan_aec_4-300x225.jpg\" width=\"300\" height=\"225\" /></a>On January 26th, you’re up against some big names in your genre. Of course your hope is to win, but what else do you hope to take away from the experience?</b>\r\n\r\n<em>I think I just want to really be in the moment and enjoy being there. This is such an incredible experience to have, I just want to soak it in and just have fun. I’m really looking forward to seeing a lot of friends there, and I’m so happy to have a lot of family close to me there. So it will be fun to share that moment with everyone.</em>\r\n\r\nBe sure to catch the 56th Annual Grammy Awards, which will be held on January 26th on CBS.\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>\r\n\r\nFirst published as <a href=\"http://ourvinyl.com/laura-sullivan-interview/\">Laura Sullivan - An Interview</a> in OurVinyl.com','An Interview with Grammy Nominee Laura Sullivan','','inherit','open','open','','1473-revision-v1','','','2014-01-17 06:20:23','2014-01-17 12:20:23','',1473,'http://www.earthhertzrecords.com/2014/01/1473-revision-v1/',0,'revision','',0),(1482,2,'2014-01-17 06:30:39','2014-01-17 12:30:39','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/laura_hmb_300dpi-300x400.jpg\"><img class=\"alignleft size-medium wp-image-1476\" alt=\"laura_hmb_300dpi-300x400\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/laura_hmb_300dpi-300x400-225x300.jpg\" width=\"225\" height=\"300\" /></a>Creating music in the purest sense, is piecing together notes which are born in the soul, take their first steps in the heart, and are given flight through a musical instrument. Nowhere is that more evident than with instrumental music. Without the aid of lyrics, a composer must channel the life-cycle of the music, and convey to the listener, every emotion experienced during the writing process.\r\n\r\nPianist Laura Sullivan’s new album <i>Love’s River</i>, does exactly that. <a href=\"http://www.grammy.com/files/pages/56thpresslist-final-secured.pdf\">Nominated as Best New Age Album</a> in the upcoming 56th Annual Grammy Awards, Ms. Sullivan’s seventh album has proven to be the lucky one. The album reached #2 on the<a href=\"http://www.zonemusicreporter.com/\"> ZoneMusicReporter</a> chart, the industry standard for radio airplay of New Age music. As only the ninth woman to receive a Grammy nomination in this category, Laura has already reached a level attained by only a few.\r\n\r\nThe music of <a href=\"http://www.laura-sullivan.com/\">Laura Sullivan</a> is well known and respected within the industry. Her music has appeared on television shows such as “So You Think You Can Dance,” national commercials, and she has written the musical scores for many television shows and feature films.\r\n\r\nWhile savoring her first Grammy nomination, Laura is well aware of her competition. The other nominees in her category are: Kitaro, Peter Kater, Brian Eno and, R. Carlos Nakai and Will Clipman. Combined, these artists have over forty Grammy nominations on their resumes.\r\n\r\nWhile trying to manage life and all that goes along with being a Grammy nominee in the weeks before the Awards, Laura spent some time talking with me about the emotions in being nominated, her writing process and her hopes for Grammy night.\r\n\r\n<b>Kath Galasso: In the 27 year history of the Best New Age Album category, you are only the ninth woman to receive a Grammy nomination. While a couple of women have been part of a winning band, the only other female solo artist to win this category has been Enya. Before the nomination, were you aware of how few women had been nominated and actually taken home a Grammy?</b>\r\n\r\n<em>Laura Sullivan: I didn’t have the exact stats on that beforehand, I knew that it wasn’t too many. I hadn’t gone in and really checked it.</em>\r\n\r\n<b>Your category was not announced on the Grammy nomination TV special, so you had to wait until after it was over to view the full online list of nominees. Where you working that night or were you watching the show?</b>\r\n\r\n<em>We had taped the show, and I think I was putting my daughter to bed or something like that, and I got a call from a friend. She was just screaming into the phone… in a good way, so I knew that something was up. Then we checked online and saw that I was nominated. It was very exciting.</em>\r\n\r\n<b><a href=\"http://www.laura-sullivan.com/\"><img class=\"alignright size-medium wp-image-1477\" alt=\"1370062464_laura-sullivan-loves-river-2012-400x400\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1370062464_laura-sullivan-loves-river-2012-400x400-300x300.jpg\" width=\"300\" height=\"300\" /></a>The time between Grammy submissions and the actual nomination is totally insane with trying to promote your music, whether it’s in print, TV or social media, yet during that time you still need to focus on your job, which is writing music, and your family. How were you able to get a balance in your life?</b>\r\n\r\n<em>Oh my goodness, that is a great question. I wasn’t prepared for the PR end of this at all. For example, we just got a press release out today, and many other nominees had a press release that went out the day after the nominations were announced. So being this is my first nomination, I’m just sort of learning the ropes, and it feels kind of fresh. It’s exactly what you’re saying, you nailed it on the head, I’m trying to balance my family, things like finding the clothing and also continuing to make music. I also write for a publisher in New York, writing TV underscores, so I’ve tried to keep that going a little bit too. Then the promotion of the nomination, and it has been quite a bit.</em>\r\n\r\n<b>Is it a little better now that all the ballots have been submitted?</b>\r\n\r\n<em>Yeah, a little bit. It’s kind of a feeling of relief I guess, just to know that it’s all done and whatever happens, happens. And I’m really going to be excited and happy for whoever wins. I feel like I’ve already won in a way, just by being nominated. And I’m truly going to celebrate with whoever brings home that little statue.</em>\r\n\r\n<b>It’s </b><b></b><b>funny that you say you’re going to be happy for whoever actually wins. I had never been involved in the Grammy process before, and you always hear people say that it’s a thrill to be nominated, but having been involved with the process of getting our (Earth Hertz Records) artists submitted in for the first round, and seeing how much works goes into it, to actually be one of those people nominated… I get it now. I understand how you could feel that way.</b>\r\n\r\n<em>Absolutely, yes it’s quite an honor. And the people I’m nominated with, I admire them so much. So yes, I’m overwhelmed with how big a thrill it is and what an honor it is.</em>\r\n\r\n<b>Tell me about your writing process. Is the writing different when you are writing for a show, something you’ve been contracted to write specifically for, than when you’re just writing from inspiration?</b>\r\n\r\n<em>Yes, it is. I feel a lot more freedom when I’m creating a project that will be my own project, like Love’s River was, in that it’s coming from my own heart, from what I want to express as an artist. I try to make the album cohesive in that the songs go together in some way, but it’s only being dictated by what I want to express, and not by anyone else. And that’s a lot of fun.</em>\r\n\r\n<b>I’m always interested as to how instrumentalists title their songs. How do you come up with the titles for your songs?</b>\r\n\r\n<em>I think it happens a little bit within the process of writing the music. The imagery that comes to my mind as I’m coming up with the ideas for the melodies and the harmony. Also the events in my life, emotions that I’m feeling are emotions that come out in the music as well.</em>\r\n\r\n<b>I don’t think you could have come up with a better title for “Wishing on a Dandelion.” You can almost picture the dandelion blowing away as you play. You have an animated video for it featuring drawings of yourself and your daughter. It is just wonderful, tell me about how it was developed.</b>\r\n\r\n<em>Thank you. The video was created by an artist (Robert Capria) in New York and he was really able to capture my feeling of joy in being a parent; that it took so long to conceive. This song is really about my gratefulness, and a kind of celebration of finally being a parent. That video came about in my discussions with the artist, in talking about what that song means, and it comes from sharing photographs of myself and my daughter. He used those to work with.</em>\r\n\r\n<iframe src=\"//www.youtube.com/embed/eE6vv0IRnuo\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n<b>Have you ever worked with a lyricist?</b>\r\n\r\n<em>No, not really. I have in the past, done some music with lyrics, with my own vocals. But I haven’t really worked collaboratively with a lyricist before.</em>\r\n\r\n<b>You started playing the piano at age four, I’m sure you were trained in many types of music, when did you realize that your calling was to the New Age genre?</b>\r\n\r\n<em>I guess I was in college and playing around on the piano, I would make up my own little compositions. I was talking with some friends about recording an album, I had the idea to do that, and one of my friends said “oh that’s like George Winston, that’s New Age music. And I was like “oh really? Ok.” I had heard his music, but I wasn’t aware that it was called New Age music. I liked the style. As a student, I used to arrange some classical music pieces and do them the wrong way. It was just fun for me to play around with melodies. I was influenced a lot by my classical training, and playing around with classical melodies got me started.</em>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan_aec_4.jpg\"><img class=\"alignright size-medium wp-image-1479\" alt=\"Laura-Sullivan_aec_4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan_aec_4-300x225.jpg\" width=\"300\" height=\"225\" /></a>On January 26th, you’re up against some big names in your genre. Of course your hope is to win, but what else do you hope to take away from the experience?</b>\r\n\r\n<em>I think I just want to really be in the moment and enjoy being there. This is such an incredible experience to have, I just want to soak it in and just have fun. I’m really looking forward to seeing a lot of friends there, and I’m so happy to have a lot of family close to me there. So it will be fun to share that moment with everyone.</em>\r\n\r\nBe sure to catch the 56th Annual Grammy Awards, which will be held on January 26th on CBS.\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>\r\n\r\nFirst published as <a href=\"http://ourvinyl.com/laura-sullivan-interview/\">Laura Sullivan - An Interview</a> in OurVinyl.com','An Interview with Grammy Nominee Laura Sullivan','','inherit','open','open','','1473-revision-v1','','','2014-01-17 06:30:39','2014-01-17 12:30:39','',1473,'http://www.earthhertzrecords.com/2014/01/1473-revision-v1/',0,'revision','',0),(1483,2,'2014-01-20 10:18:37','2014-01-20 16:18:37','It\'s an exciting time in the entertainment business. The People\'s Choice, Golden Globes and SAG awards have all been given out. The Oscars nominations have been announced, and this Sunday, the 56th Annual Grammy Awards will take place. Some of us at Earth Hertz will be lucky enough to attend, so we\'ve been getting our heads in the game by saluting the Grammys on our website.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance2.png\"><img class=\"alignleft size-thumbnail wp-image-1485\" alt=\"reomoondance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance2-150x150.png\" width=\"150\" height=\"150\" /></a>In case you missed anything from last week, Jim Wood posted a great review of the latest from classic rockers REO Speedwagon. You can read it here: <a href=\"http://www.earthhertzrecords.com/2014/01/reo-speedwagon-live-at-moondance-jam/\">REO Speedwagon, Live at Moondance Jam</a>. Then we had <a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\">Jen Kehl\'s spot-on review of the book about the lost Beatle from Jim Berkenstadt \"The Beatle Who Vanished.</a>\"\r\n\r\n \r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Following this review, and to commemorate the 50th anniversary of The Beatles coming to America, we will be featuring a two-part interview with the author, Jim Berkenstadt this week on <a href=\"http://www.earthhertzrecords.com/\">EarthHertz.com</a>. This is a man who spent eight years tracking down as much information as possible about Jimmie Nicol, the drummer who replaced Ringo for two weeks during their first tour. The book is fascinating, so is the author.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan-LovesRiver.jpg\"><img class=\"alignleft size-thumbnail wp-image-1487\" alt=\"Laura-Sullivan-LovesRiver\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan-LovesRiver-150x150.jpg\" width=\"150\" height=\"150\" /></a>We also had the good fortune to interview one of this year\'s Grammy nominees. With all the fuss lately over Indie artists never being nominated for Grammy awards, Laura Sullivan shows how to handle the pressure and the press, with dignity and class. Check out what being a Grammy nominee means in real life in her interview here: <a href=\"http://www.earthhertzrecords.com/2014/01/an-interview-with-grammy-nominee-laura-sullivan/\">An Interview with Grammy Nominee Laura Sullivan.</a>\r\n\r\nSo look out this week for an engaging and insightful conversation with one of the world\'s foremost authorities on The Beatles, and more Grammy related posts.\r\n\r\nAnd to keep up with all the latest news from Earth Hertz, you can find us on Twitter @EarthHertz, and Facebook, Pinterest, Tumblr and Stumbleupon as Earth Hertz Records.','The Countdown to the Grammys at Earth Hertz Records','','publish','open','open','','the-countdown-to-the-grammys-at-earth-hertz-records','','','2014-01-20 10:18:37','2014-01-20 16:18:37','',0,'http://www.earthhertzrecords.com/?p=1483',0,'post','',0),(1484,2,'2014-01-19 13:20:03','2014-01-19 19:20:03','','reomoondance','','inherit','open','open','','reomoondance-3','','','2014-01-19 13:20:03','2014-01-19 19:20:03','',1483,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance1.png',0,'attachment','image/png',0),(1485,2,'2014-01-19 13:20:28','2014-01-19 19:20:28','','reomoondance','','inherit','open','open','','reomoondance-4','','','2014-01-19 13:20:28','2014-01-19 19:20:28','',1483,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance2.png',0,'attachment','image/png',0),(1486,2,'2014-01-19 13:23:55','2014-01-19 19:23:55','','Beatle-who-vanished','','inherit','open','open','','beatle-who-vanished-2','','','2014-01-19 13:23:55','2014-01-19 19:23:55','',1483,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg',0,'attachment','image/jpeg',0),(1487,2,'2014-01-19 13:24:50','2014-01-19 19:24:50','','Laura-Sullivan-LovesRiver','','inherit','open','open','','laura-sullivan-lovesriver','','','2014-01-19 13:24:50','2014-01-19 19:24:50','',1483,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan-LovesRiver.jpg',0,'attachment','image/jpeg',0),(1488,2,'2014-01-19 13:30:41','2014-01-19 19:30:41','It\'s an exciting time in the entertainment business. The People\'s Choice, Golden Globes and SAG awards have all been given out. The Oscars nominations have been announced, and this Sunday, the 56th Annual Grammy Awards will take place. Some of us at Earth Hertz will be lucky enough to attend, so we\'ve been getting our heads in the game by saluting the Grammys on our website.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance2.png\"><img class=\"alignleft size-thumbnail wp-image-1485\" alt=\"reomoondance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance2-150x150.png\" width=\"150\" height=\"150\" /></a>In case you missed anything from last week, Jim Wood posted a great review of the latest from classic rockers REO Speedwagon. You can read it here: <a href=\"http://www.earthhertzrecords.com/2014/01/reo-speedwagon-live-at-moondance-jam/\">REO Speedwagon, Live at Moondance Jam</a>. Then we had <a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\">Jen Kehl\'s spot-on review of the book about the lost Beatle from Jim Berkenstadt \"The Beatle Who Vanished.\'</a>\r\n\r\n \r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Following this review, and to commemorate the 50th anniversary of The Beatles coming to America, we will be featuring a two-part interview with the author, Jim Berkenstadt this week on <a href=\"http://www.earthhertzrecords.com/\">EarthHertz.com</a>. This is a man who spent eight years tracking down as much information as possible about Jimmie Nichol, the drummer who replaced Ringo for two weeks during their first tour. The book is fascinating, so is the author.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan-LovesRiver.jpg\"><img class=\"alignleft size-thumbnail wp-image-1487\" alt=\"Laura-Sullivan-LovesRiver\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan-LovesRiver-150x150.jpg\" width=\"150\" height=\"150\" /></a>We also had the good fortune to interview one of this year\'s Grammy nominees. With all the fuss lately over Indie artists never being nominated for Grammy awards, Laura Sullivan shows how to handle the pressure and press, with dignity and class. Check out what being a Grammy nominee means in real life in her interview here: <a href=\"http://www.earthhertzrecords.com/2014/01/an-interview-with-grammy-nominee-laura-sullivan/\">An Interview with Grammy Nominee Laura Sullivan.</a>\r\n\r\nSo look out this week for an engaging and insightful conversation with one of the world\'s foremost authorities on The Beatles, and more Grammy related posts.\r\n\r\n ','','','inherit','open','open','','1483-revision-v1','','','2014-01-19 13:30:41','2014-01-19 19:30:41','',1483,'http://www.earthhertzrecords.com/2014/01/1483-revision-v1/',0,'revision','',0),(1489,2,'2014-01-19 13:59:42','2014-01-19 19:59:42','It\'s an exciting time in the entertainment business. The People\'s Choice, Golden Globes and SAG awards have all been given out. The Oscars nominations have been announced, and this Sunday, the 56th Annual Grammy Awards will take place. Some of us at Earth Hertz will be lucky enough to attend, so we\'ve been getting our heads in the game by saluting the Grammys on our website.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance2.png\"><img class=\"alignleft size-thumbnail wp-image-1485\" alt=\"reomoondance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance2-150x150.png\" width=\"150\" height=\"150\" /></a>In case you missed anything from last week, Jim Wood posted a great review of the latest from classic rockers REO Speedwagon. You can read it here: <a href=\"http://www.earthhertzrecords.com/2014/01/reo-speedwagon-live-at-moondance-jam/\">REO Speedwagon, Live at Moondance Jam</a>. Then we had <a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\">Jen Kehl\'s spot-on review of the book about the lost Beatle from Jim Berkenstadt \"The Beatle Who Vanished.</a>\"\r\n\r\n \r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Following this review, and to commemorate the 50th anniversary of The Beatles coming to America, we will be featuring a two-part interview with the author, Jim Berkenstadt this week on <a href=\"http://www.earthhertzrecords.com/\">EarthHertz.com</a>. This is a man who spent eight years tracking down as much information as possible about Jimmie Nichol, the drummer who replaced Ringo for two weeks during their first tour. The book is fascinating, so is the author.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan-LovesRiver.jpg\"><img class=\"alignleft size-thumbnail wp-image-1487\" alt=\"Laura-Sullivan-LovesRiver\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan-LovesRiver-150x150.jpg\" width=\"150\" height=\"150\" /></a>We also had the good fortune to interview one of this year\'s Grammy nominees. With all the fuss lately over Indie artists never being nominated for Grammy awards, Laura Sullivan shows how to handle the pressure and press, with dignity and class. Check out what being a Grammy nominee means in real life in her interview here: <a href=\"http://www.earthhertzrecords.com/2014/01/an-interview-with-grammy-nominee-laura-sullivan/\">An Interview with Grammy Nominee Laura Sullivan.</a>\r\n\r\nSo look out this week for an engaging and insightful conversation with one of the world\'s foremost authorities on The Beatles, and more Grammy related posts.\r\n\r\nAnd to keep up with all the latest news from Earth Hertz, you can find us on Twitter @EarthHertz, and Facebook, Pinterest, Tumblr and Stumbleupon as Earth Hertz Records.','The Countdown to the Grammys at Earth Hertz Records','','inherit','open','open','','1483-revision-v1','','','2014-01-19 13:59:42','2014-01-19 19:59:42','',1483,'http://www.earthhertzrecords.com/2014/01/1483-revision-v1/',0,'revision','',0),(1490,2,'2014-01-19 14:16:46','2014-01-19 20:16:46','It\'s an exciting time in the entertainment business. The People\'s Choice, Golden Globes and SAG awards have all been given out. The Oscars nominations have been announced, and this Sunday, the 56th Annual Grammy Awards will take place. Some of us at Earth Hertz will be lucky enough to attend, so we\'ve been getting our heads in the game by saluting the Grammys on our website.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance2.png\"><img class=\"alignleft size-thumbnail wp-image-1485\" alt=\"reomoondance\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/reomoondance2-150x150.png\" width=\"150\" height=\"150\" /></a>In case you missed anything from last week, Jim Wood posted a great review of the latest from classic rockers REO Speedwagon. You can read it here: <a href=\"http://www.earthhertzrecords.com/2014/01/reo-speedwagon-live-at-moondance-jam/\">REO Speedwagon, Live at Moondance Jam</a>. Then we had <a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\">Jen Kehl\'s spot-on review of the book about the lost Beatle from Jim Berkenstadt \"The Beatle Who Vanished.</a>\"\r\n\r\n \r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Following this review, and to commemorate the 50th anniversary of The Beatles coming to America, we will be featuring a two-part interview with the author, Jim Berkenstadt this week on <a href=\"http://www.earthhertzrecords.com/\">EarthHertz.com</a>. This is a man who spent eight years tracking down as much information as possible about Jimmie Nicol, the drummer who replaced Ringo for two weeks during their first tour. The book is fascinating, so is the author.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan-LovesRiver.jpg\"><img class=\"alignleft size-thumbnail wp-image-1487\" alt=\"Laura-Sullivan-LovesRiver\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Laura-Sullivan-LovesRiver-150x150.jpg\" width=\"150\" height=\"150\" /></a>We also had the good fortune to interview one of this year\'s Grammy nominees. With all the fuss lately over Indie artists never being nominated for Grammy awards, Laura Sullivan shows how to handle the pressure and the press, with dignity and class. Check out what being a Grammy nominee means in real life in her interview here: <a href=\"http://www.earthhertzrecords.com/2014/01/an-interview-with-grammy-nominee-laura-sullivan/\">An Interview with Grammy Nominee Laura Sullivan.</a>\r\n\r\nSo look out this week for an engaging and insightful conversation with one of the world\'s foremost authorities on The Beatles, and more Grammy related posts.\r\n\r\nAnd to keep up with all the latest news from Earth Hertz, you can find us on Twitter @EarthHertz, and Facebook, Pinterest, Tumblr and Stumbleupon as Earth Hertz Records.','The Countdown to the Grammys at Earth Hertz Records','','inherit','open','open','','1483-revision-v1','','','2014-01-19 14:16:46','2014-01-19 20:16:46','',1483,'http://www.earthhertzrecords.com/2014/01/1483-revision-v1/',0,'revision','',0),(1491,2,'2014-01-19 19:34:49','2014-01-20 01:34:49','Doin’ it old school.\r\n\r\nYou know what I mean. The way we sometimes describe how things were done, when they were done right. Where attention was paid to detail, where people were treated with respect. In the music business, it’s still there although it’s getting harder to find.\r\n\r\nHad the chance to be at the receiving end of some rockers still “doin’ it old school.” For the second year in a row, I accompanied a friend to BB King’s in NYC, where she was scheduled to pick up some lovely parting gifts in return for her donation to a fundraiser at <a href=\"http://www.wnti.org/\">WNTI</a>, a local public radio station. And, for the second year in a row the band involved was local favorites and New Jersey residents, <a href=\"http://officialsmithereens.com/\">The Smithereens</a>.\r\n\r\nAlthough we had met the band and their tour manager John Kennedy the year before, in reality, it’s really just another gig with some pictures to be taken, some memorabilia to be presented and a few words with the band. But in this case, it really wasn’t.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-8.jpg\"><img class=\"alignleft size-medium wp-image-1492\" alt=\"KatsTheory-Smithereens-8\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-8-300x300.jpg\" width=\"300\" height=\"300\" /></a>It’s about JK taking the time to be sure our experience was as good as it possibly could be amid the chaos of soundcheck, seeing the band backstage, the show, and the after-show insanity. Now granted we’re not hard to please. Put us in a music hall, have the drummer hit a cymbal or the guitarist play a familiar riff, and we feel our blood pressure rise, our eyes widen and our smiles broaden.\r\n\r\nLast night, we had a lot to smile about. From guitarist Jim Babjak coming over to sit with us and just talk, for no other reason than we were there, to spending a few extra minutes with drummer Dennis Diken talking about the town where we were both born, to being greeted by lead singer Pat DiNizio as he was getting his arms and fingers massaged, the Smithereens did it old school. The band had a gig the night before in Philadelphia and, late shows and long rides home are not that easy for a band that has been together for over thirty years.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-a.jpg\"><img class=\"alignleft size-medium wp-image-1494\" alt=\"KatsTheory-Smithereens-a\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-a-300x200.jpg\" width=\"300\" height=\"200\" /></a>As tired as they probably were, when the music started, again, they did it old school. They played with heart, they played with soul, they played for the crowd who came to see them.\r\n\r\nThey did it old school. And they did it well.','The Smithereens, Still Doing It Right','','publish','open','open','','the-smithereens-still-doing-it-right','','','2014-01-20 06:37:32','2014-01-20 12:37:32','',0,'http://www.earthhertzrecords.com/?p=1491',0,'post','',2),(1492,2,'2014-01-19 18:54:07','2014-01-20 00:54:07','','KatsTheory-Smithereens-8','','inherit','open','open','','katstheory-smithereens-8','','','2014-01-19 18:54:07','2014-01-20 00:54:07','',1491,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-8.jpg',0,'attachment','image/jpeg',0),(1493,2,'2014-01-19 19:04:23','2014-01-20 01:04:23','Doin’ it old school.\r\n\r\nYou know what I mean. The way the old-timers describe how things were done right. Where attention was paid to detail, where people were treated with respect. In the music business, it’s still there although it’s getting harder to find.\r\n\r\nHad the chance to be at the receiving end of some rockers still “doin’ it old school.” For the second year in a row, I accompanied a friend to BB King’s in NYC, where she was scheduled to pick up some lovely parting gifts in return for her donation to a fundraiser at WNTI, a local public radio station. And, for the second year in a row the band involved was local favorites and New Jersey residents, The Smithereens.\r\n\r\nAlthough we had met the band and their tour manager John Kennedy the year before, in reality, it’s really just another gig with some pictures to be taken, some memorabilia to be presented and a few words with the band. But in this case, it really wasn’t.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-8.jpg\"><img class=\"alignleft size-medium wp-image-1492\" alt=\"KatsTheory-Smithereens-8\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-8-300x300.jpg\" width=\"300\" height=\"300\" /></a>It’s about JK taking the time to be sure our experience was as good as it possibly amid the chaos of soundcheck, seeing the band backstage, the show and the after-show insanity. Now, granted we’re not hard to please. Put us in a music hall, have the drummer hit a cymbal or the guitarist play a familiar riff, and we feel our blood pressure drop, our eyes widen and our smiles broaden.\r\n\r\nLast night, we had a lot to smile about. From guitarist Jim Babjak coming over to sit with us and just talk, for no other reason than we were there, to spending a few extra minutes with drummer Dennis Diken talking about the town where we were both born, to being greeting by Pat DiNizio as he was getting his upper body massaged, the Smithereens did it old school. The band had a gig the night before in Philadelphia and, late shows and long rides home are not that easy for a band that has been together for over thirty years.\r\n\r\nAs tired as they probably were, when the music started, again, they did it old school. They played with heart, they played with soul, they played for the crowd who came to see them.\r\n\r\nThey did it old school. And they did it well.','','','inherit','open','open','','1491-revision-v1','','','2014-01-19 19:04:23','2014-01-20 01:04:23','',1491,'http://www.earthhertzrecords.com/2014/01/1491-revision-v1/',0,'revision','',0),(1494,2,'2014-01-19 19:20:53','2014-01-20 01:20:53','','KatsTheory-Smithereens-a','','inherit','open','open','','katstheory-smithereens-a','','','2014-01-19 19:20:53','2014-01-20 01:20:53','',1491,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-a.jpg',0,'attachment','image/jpeg',0),(1495,2,'2014-01-19 19:21:11','2014-01-20 01:21:11','Doin’ it old school.\r\n\r\nYou know what I mean. The way the old-timers describe how things were done right. Where attention was paid to detail, where people were treated with respect. In the music business, it’s still there although it’s getting harder to find.\r\n\r\nHad the chance to be at the receiving end of some rockers still “doin’ it old school.” For the second year in a row, I accompanied a friend to BB King’s in NYC, where she was scheduled to pick up some lovely parting gifts in return for her donation to a fundraiser at WNTI, a local public radio station. And, for the second year in a row the band involved was local favorites and New Jersey residents, The Smithereens.\r\n\r\nAlthough we had met the band and their tour manager John Kennedy the year before, in reality, it’s really just another gig with some pictures to be taken, some memorabilia to be presented and a few words with the band. But in this case, it really wasn’t.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-8.jpg\"><img class=\"alignleft size-medium wp-image-1492\" alt=\"KatsTheory-Smithereens-8\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-8-300x300.jpg\" width=\"300\" height=\"300\" /></a>It’s about JK taking the time to be sure our experience was as good as it possibly amid the chaos of soundcheck, seeing the band backstage, the show and the after-show insanity. Now, granted we’re not hard to please. Put us in a music hall, have the drummer hit a cymbal or the guitarist play a familiar riff, and we feel our blood pressure drop, our eyes widen and our smiles broaden.\r\n\r\nLast night, we had a lot to smile about. From guitarist Jim Babjak coming over to sit with us and just talk, for no other reason than we were there, to spending a few extra minutes with drummer Dennis Diken talking about the town where we were both born, to being greeting by Pat DiNizio as he was getting his upper body massaged, the Smithereens did it old school. The band had a gig the night before in Philadelphia and, late shows and long rides home are not that easy for a band that has been together for over thirty years.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-a.jpg\"><img class=\"alignleft size-medium wp-image-1494\" alt=\"KatsTheory-Smithereens-a\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-a-300x200.jpg\" width=\"300\" height=\"200\" /></a>As tired as they probably were, when the music started, again, they did it old school. They played with heart, they played with soul, they played for the crowd who came to see them.\r\n\r\nThey did it old school. And they did it well.','','','inherit','open','open','','1491-revision-v1','','','2014-01-19 19:21:11','2014-01-20 01:21:11','',1491,'http://www.earthhertzrecords.com/2014/01/1491-revision-v1/',0,'revision','',0),(1496,2,'2014-01-19 19:26:21','2014-01-20 01:26:21','Doin’ it old school.\r\n\r\nYou know what I mean. The way the old-timers describe how things were done right. Where attention was paid to detail, where people were treated with respect. In the music business, it’s still there although it’s getting harder to find.\r\n\r\nHad the chance to be at the receiving end of some rockers still “doin’ it old school.” For the second year in a row, I accompanied a friend to BB King’s in NYC, where she was scheduled to pick up some lovely parting gifts in return for her donation to a fundraiser at WNTI, a local public radio station. And, for the second year in a row the band involved was local favorites and New Jersey residents, The Smithereens.\r\n\r\nAlthough we had met the band and their tour manager John Kennedy the year before, in reality, it’s really just another gig with some pictures to be taken, some memorabilia to be presented and a few words with the band. But in this case, it really wasn’t.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-8.jpg\"><img class=\"alignleft size-medium wp-image-1492\" alt=\"KatsTheory-Smithereens-8\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-8-300x300.jpg\" width=\"300\" height=\"300\" /></a>It’s about JK taking the time to be sure our experience was as good as it possibly could be amid the chaos of soundcheck, seeing the band backstage, the show, and the after-show insanity. Now granted we’re not hard to please. Put us in a music hall, have the drummer hit a cymbal or the guitarist play a familiar riff, and we feel our blood pressure rise, our eyes widen and our smiles broaden.\r\n\r\nLast night, we had a lot to smile about. From guitarist Jim Babjak coming over to sit with us and just talk, for no other reason than we were there, to spending a few extra minutes with drummer Dennis Diken talking about the town where we were both born, to being greeted by lead singer Pat DiNizio as he was getting his arms and fingers massaged, the Smithereens did it old school. The band had a gig the night before in Philadelphia and, late shows and long rides home are not that easy for a band that has been together for over thirty years.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-a.jpg\"><img class=\"alignleft size-medium wp-image-1494\" alt=\"KatsTheory-Smithereens-a\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-a-300x200.jpg\" width=\"300\" height=\"200\" /></a>As tired as they probably were, when the music started, again, they did it old school. They played with heart, they played with soul, they played for the crowd who came to see them.\r\n\r\nThey did it old school. And they did it well.','The Smithereens, Still Doing It Right','','inherit','open','open','','1491-revision-v1','','','2014-01-19 19:26:21','2014-01-20 01:26:21','',1491,'http://www.earthhertzrecords.com/2014/01/1491-revision-v1/',0,'revision','',0),(1497,2,'2014-01-19 19:30:04','2014-01-20 01:30:04','Doin’ it old school.\r\n\r\nYou know what I mean. The way the old-timers describe how things were done right. Where attention was paid to detail, where people were treated with respect. In the music business, it’s still there although it’s getting harder to find.\r\n\r\nHad the chance to be at the receiving end of some rockers still “doin’ it old school.” For the second year in a row, I accompanied a friend to BB King’s in NYC, where she was scheduled to pick up some lovely parting gifts in return for her donation to a fundraiser at <a href=\"http://www.wnti.org/\">WNTI</a>, a local public radio station. And, for the second year in a row the band involved was local favorites and New Jersey residents, <a href=\"http://officialsmithereens.com/\">The Smithereens</a>.\r\n\r\nAlthough we had met the band and their tour manager John Kennedy the year before, in reality, it’s really just another gig with some pictures to be taken, some memorabilia to be presented and a few words with the band. But in this case, it really wasn’t.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-8.jpg\"><img class=\"alignleft size-medium wp-image-1492\" alt=\"KatsTheory-Smithereens-8\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-8-300x300.jpg\" width=\"300\" height=\"300\" /></a>It’s about JK taking the time to be sure our experience was as good as it possibly could be amid the chaos of soundcheck, seeing the band backstage, the show, and the after-show insanity. Now granted we’re not hard to please. Put us in a music hall, have the drummer hit a cymbal or the guitarist play a familiar riff, and we feel our blood pressure rise, our eyes widen and our smiles broaden.\r\n\r\nLast night, we had a lot to smile about. From guitarist Jim Babjak coming over to sit with us and just talk, for no other reason than we were there, to spending a few extra minutes with drummer Dennis Diken talking about the town where we were both born, to being greeted by lead singer Pat DiNizio as he was getting his arms and fingers massaged, the Smithereens did it old school. The band had a gig the night before in Philadelphia and, late shows and long rides home are not that easy for a band that has been together for over thirty years.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-a.jpg\"><img class=\"alignleft size-medium wp-image-1494\" alt=\"KatsTheory-Smithereens-a\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-a-300x200.jpg\" width=\"300\" height=\"200\" /></a>As tired as they probably were, when the music started, again, they did it old school. They played with heart, they played with soul, they played for the crowd who came to see them.\r\n\r\nThey did it old school. And they did it well.','The Smithereens, Still Doing It Right','','inherit','open','open','','1491-revision-v1','','','2014-01-19 19:30:04','2014-01-20 01:30:04','',1491,'http://www.earthhertzrecords.com/2014/01/1491-revision-v1/',0,'revision','',0),(1498,2,'2014-01-19 19:32:06','2014-01-20 01:32:06','Doin’ it old school.\r\n\r\nYou know what I mean. The way we sometimes describe how things were done, when they were done right. Where attention was paid to detail, where people were treated with respect. In the music business, it’s still there although it’s getting harder to find.\r\n\r\nHad the chance to be at the receiving end of some rockers still “doin’ it old school.” For the second year in a row, I accompanied a friend to BB King’s in NYC, where she was scheduled to pick up some lovely parting gifts in return for her donation to a fundraiser at <a href=\"http://www.wnti.org/\">WNTI</a>, a local public radio station. And, for the second year in a row the band involved was local favorites and New Jersey residents, <a href=\"http://officialsmithereens.com/\">The Smithereens</a>.\r\n\r\nAlthough we had met the band and their tour manager John Kennedy the year before, in reality, it’s really just another gig with some pictures to be taken, some memorabilia to be presented and a few words with the band. But in this case, it really wasn’t.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-8.jpg\"><img class=\"alignleft size-medium wp-image-1492\" alt=\"KatsTheory-Smithereens-8\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-8-300x300.jpg\" width=\"300\" height=\"300\" /></a>It’s about JK taking the time to be sure our experience was as good as it possibly could be amid the chaos of soundcheck, seeing the band backstage, the show, and the after-show insanity. Now granted we’re not hard to please. Put us in a music hall, have the drummer hit a cymbal or the guitarist play a familiar riff, and we feel our blood pressure rise, our eyes widen and our smiles broaden.\r\n\r\nLast night, we had a lot to smile about. From guitarist Jim Babjak coming over to sit with us and just talk, for no other reason than we were there, to spending a few extra minutes with drummer Dennis Diken talking about the town where we were both born, to being greeted by lead singer Pat DiNizio as he was getting his arms and fingers massaged, the Smithereens did it old school. The band had a gig the night before in Philadelphia and, late shows and long rides home are not that easy for a band that has been together for over thirty years.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-a.jpg\"><img class=\"alignleft size-medium wp-image-1494\" alt=\"KatsTheory-Smithereens-a\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Smithereens-a-300x200.jpg\" width=\"300\" height=\"200\" /></a>As tired as they probably were, when the music started, again, they did it old school. They played with heart, they played with soul, they played for the crowd who came to see them.\r\n\r\nThey did it old school. And they did it well.','The Smithereens, Still Doing It Right','','inherit','open','open','','1491-revision-v1','','','2014-01-19 19:32:06','2014-01-20 01:32:06','',1491,'http://www.earthhertzrecords.com/2014/01/1491-revision-v1/',0,'revision','',0),(1499,2,'2014-01-21 10:50:19','2014-01-21 16:50:19','<p style=\"text-align: center;\"><strong><i>You never know where your journey in life will lead, but if you follow your passion…</i></strong></p>\r\n\r\n\r\n[caption id=\"attachment_1503\" align=\"alignleft\" width=\"139\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\"><img class=\" wp-image-1503\" alt=\"jim-berkenstadt-new-book-199x300\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\" width=\"139\" height=\"210\" /></a> Photo of Jim Berkenstadt © Narayan Mayhon[/caption]\r\n\r\nGrowing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually, taking his knowledge of music, he began another career as a writer; first with articles, then books. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame. However, his favorite subject matter was The Beatles, and that interest would lay the foundation for another career path.\r\n\r\nCombining his affection for music with his researching skills, Jim founded <a href=\"http://www.rockandrolldetective.com/\">The Rock and Roll Detective</a>, a company which provides to the entertainment industry, research, writing, and basically the ability to find a needle in a haystack. His research skills proved invaluable while writing his latest book, <i><a href=\"http://www.thebeatlewhovanished.com/\">The Beatle Who Vanished</a>.</i> It is the story of Jimmie Nicol, who replaced Ringo Starr on part of The Beatle’s first world tour. Though he was a Beatle for less than two weeks, Nicol’s life would be forever changed. The story is a fascinating trip from the birth of rock and roll in Great Britain through the insanity that was Beatlemania. It follows the trail of a man who would be famous, who never quite was, and who became an enigma, as well as a footnote in musical history.\r\n\r\nAs we approach the 50<sup>th</sup> anniversary of The Beatles coming to the United States, I had the pleasure of speaking with Jim Berkenstadt about his quest to find <em>The Beatle Who Vanished.</em>\r\n\r\n<b>Part 1</b>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Kath Galasso: Before we talk about the book, how did you get into the whole research/historian aspect of these rock and roll projects?</b>\r\n\r\nJim Berkenstadt: As a young guy growing up, I would always be the one who would study and learn all the information off the back covers of albums, then later CD booklets. I wanted to know who produced it, who were the session players, what instruments did they play. Almost like kids who learn all the statistics off their favorite baseball player’s trading card, I was learning all this stuff out of a passion to learn more about rock & roll people.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall.gif\"><img class=\"alignright size-thumbnail wp-image-1504\" alt=\"JimmyNicholsCentenialHall\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall-150x150.gif\" width=\"150\" height=\"150\" /></a>Then I pretty much specialized in The Beatles, and over time when The Beatles broke up, I started to collect “lost” recordings of concerts that would leak out. I had over ten hours of \"The Beatles on the BBC\" recordings. I started collecting all their solo work, their interviews, and so I became an expert on their recordings, which led me to working with George Harrison and now with Olivia Harrison on a number of projects. From George Harrison, that led me to Apple, where they have asked me to work on various projects. As people wanted to work on various boxed sets, they would hear about me and I would try to help them out by finding lost recordings or video clips, or find a photo of this artist when they were at a show. Another thing that’s really helpful is finding interviews by the artist, especially if the artist has passed away, so that the artists can speak in their own words.\r\n\r\n<b>You researched this book for six years. I’m assuming it wasn’t something you did constantly, but you would go back to it as you found a piece, but how did you keep focus?</b>\r\n\r\n[caption id=\"attachment_1507\" align=\"alignright\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\"><img class=\"size-full wp-image-1507\" alt=\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\" width=\"280\" height=\"179\" /></a> Image (c) Roland Ferneborg[/caption]\r\n\r\nI often did ask myself ‘am I ever going to find all the pieces’ because I don’t want to put the book out unless I do. And there were some big gaps. A year after The Beatles, Jimmie gets a call out of the blue from <a href=\"http://en.wikipedia.org/wiki/The_Spotnicks\">The Spotnicks</a> and played with them for two years, and I was able to document that quite well. I was able to find two or three Spotnicks who were very helpful in providing pictures and actual recordings. They had old listings of concert dates, where they went and what times, so there was really a lot of great information.\r\n\r\nThen they said one night he walked in on a Mexican gig and Jimmie got on a stool and started to play. He was so drugged up, he fell off the stool and their manager fired him. He walked off into the night and vanished. They never saw him again. It was a dead end that I had to sit on for quite a while. So I would set that aside and go work on an area where you know you can get the information and fill it in, or go travel to London and walk in his footsteps… go to the coffeehouses where he started, to the recording studios where he recorded, do all of that footwork. It’s real easy to find stories about Jimmie Nicol attached to The Beatles for that thirteen day period, but it’s very difficult to find many stories about him otherwise. So it did take six years to really accumulate enough newspaper stories.\r\n\r\n<b>I always look at the quirky things of how things happen, and one of the things I found really interesting was even though he wasn’t the first choice to replace Ringo, he was choice number three, but he had the right look, and in fact he was the right size. Who would think that he would need to fit into Ringo’s suits? I just found this so fascinating.</b>\r\n\r\n[caption id=\"attachment_1505\" align=\"alignleft\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\"><img class=\"size-full wp-image-1505\" alt=\"jimmie_nicol_hong_kong_19641-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\" width=\"280\" height=\"179\" /></a> Topham (c) Top Foto Image Works[/caption]\r\n\r\nI did too. This could have been a real glitch in the road for The Beatles if they had to cancel these things, it would have been world-wide news. It would have been seen as a major failure early on in their career. The stars really aligned for The Beatles. They not only found a guy that had started growing a Beatle (hair) cut, and fit into Ringo’s outfits, but also already knew Ringo’s drum parts on two-thirds of their songs. That’s really some good karma.\r\n\r\n[caption id=\"attachment_1506\" align=\"alignright\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar.jpg\"><img class=\"size-thumbnail wp-image-1506\" alt=\"2i\'s-coffee-bar\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar-150x150.jpg\" width=\"150\" height=\"150\" /></a> Photo: http://en.wikipedia.org/[/caption]\r\n\r\n<b>Now the <a href=\"http://en.wikipedia.org/wiki/The_2i\'s_Coffee_Bar\">2I’s Coffee Bar</a> where Jimmie played early on and which was one of the early hotbeds of rock and roll in England, there was basically one way in and one way out. The musicians had to carry their instruments down the stairs and over their heads to get through the crowd. I can’t even imagine the smoke and the amount of people, and the firetrap situation.</b>\r\n\r\nI wanted to make some of these places as vivid as possible, because I think a lot of people are used to reading novels, fiction, and I thought why not give them the types of descriptions when I have them, of what the scene was like in those days, rather than oh they set up and then they played these songs, then they went here, and then they went there. I really tried to get that, and <a href=\"http://en.wikipedia.org/wiki/Vince_Eager\">Vince Eager</a>, who was hanging around those clubs at that time trying to make it, really provided me with a lot of that feel. Then <a href=\"http://en.wikipedia.org/wiki/Tommy_Steele\">Tommy Steele</a> had written some sort of book, or someone wrote it for him, right after he got famous, and there was some good commentary in there about what it was like in those clubs. I really tried to combine all those things to give the reader a feel because that was really the happening place long before <a href=\"http://en.wikipedia.org/wiki/The_Cavern_Club\">The Cavern Club</a> really became the next happening place in Liverpool.\r\n\r\n<b>Were you able to get inside of the 2i\'s, or just see it on the outside?</b>\r\n\r\nI got to the outside, but it was locked up. It’s kind of a landmark, but nobody appears to be using it on any type of regular basis. Once a year, a lot of those old guys who played there, all get together and they open it up and they play a show for their old fans. The other place, The Flamingo, that’s right around the corner and I went in there because now it’s a Chinese fast food restaurant, which is very disappointing. I’m glad they preserved the 2i’s Coffee Bar.\r\n\r\n<b>Well, your description was not lost on the masses because it definitely caught my attention. When you were talking about the width… two and a half arm’s length. This place was tiny. Unbelievable.</b>\r\n\r\nIt is unbelievable. You know I enjoy all those little arcane details. My wife got up to about the third chapter and said I had too many details. But I thought it was fascinating because I don’t think anybody has really written about the first generation of rock and roll in British music. So I thought it was a good way to write about it through Jimmie’s experience.\r\n\r\n<b>When Jimmie was with Vince Eager, they had almost a stage show, with the lights from Jimmie’s drums and the shooting of a pistol. That would never be allowed… a mock shooting.</b>\r\n\r\nI know. With a real gun and blanks.\r\n\r\n<b>Were you ever able to find out why they did a stage show in addition to being a rock and roll band?</b>\r\n\r\nWell, they were coming from a Vaudevillian type era. A lot of these rockers had grown up and seen Vaudeville shows, and in Vince Eager’s case, he was the only artist on the whole roster of artists that would go out on these packaged tours, that never had a radio hit. So he felt in order to be more interesting than the other bands that all had hits, he would play a real variety of music. Some ballads, rock and roll, all types of styles. But he would also add comedic bits, like the lighting of the bongo drums. He wanted to make it more of an all-around entertainment, rather than strictly rock and roll. And as a result, he oftentimes blew the other artists off the stage.\r\n\r\n<b>Now when Jimmie got the call from <a href=\"http://en.wikipedia.org/wiki/George_Martin\">George Martin</a>, you could say he was shocked to get the call, but not surprised that he was chosen. He knew his ability, he knew most of the songs, he had the connections, and he was respected. But still, it’s interesting he would have that reaction, I mean we’re talking about <em>The Beatles</em>. And that he would just go back, sit on his couch and mull it over in his mind a little bit before he even said anything about it.</b>\r\n\r\nYeah, I thought that was interesting, and again I’m lucky because I have a guy in the room, who was there. So it’s not one of those things where some authors make up the scenarios out of thin air, because it looks and sounds dramatic. In my case, John Hopkinson was actually there, saw him take the call, and saw him sit there sort of quietly, and after a while sort of exploded saying “do you know who that was? I’m going down to Abbey Road to try out with The Beatles.” It’s fun if you’re lucky enough to ask the right questions, to get the right response.\r\n\r\n<strong>In Part 2 of the interview, Jim Berkenstadt talks about Jimmie Nicol\'s time as a Beatle, how it affected his life, and what became of the man who filled in for the most famous drummer in the world.</strong>\r\n\r\nClick here for <a href=\"http://www.earthhertzrecords.com/2014/01/author-jim-berkenstadt-talks-about-the-beatle-who-vanished-part-2/\">Part 2 of the Interview with Jim Berkenstadt</a>.\r\n\r\nTo read a review of The Beatle Who Vanished,<a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\"> click here</a>\r\n\r\n<iframe src=\"//www.youtube.com/embed/qumXROSOFJE\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n<iframe src=\"//www.youtube.com/embed/qHuTMAXOrsM\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Author Jim Berkenstadt Talks About \"The Beatle Who Vanished\"','','publish','open','open','','author-jim-berkenstadt-talks-about-the-beatle-who-vanished','','','2014-02-10 16:44:00','2014-02-10 22:44:00','',0,'http://www.earthhertzrecords.com/?p=1499',0,'post','',0),(1502,2,'2014-01-21 07:23:44','2014-01-21 13:23:44','','jim-berkenstadt-new-book-199x300','','inherit','open','open','','jim-berkenstadt-new-book-199x300','','','2014-01-21 07:23:44','2014-01-21 13:23:44','',1499,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x300.jpg',0,'attachment','image/jpeg',0),(1503,2,'2014-01-21 07:24:19','2014-01-21 13:24:19','','jim-berkenstadt-new-book-199x300','','inherit','open','open','','jim-berkenstadt-new-book-199x300-2','','','2014-01-21 07:24:19','2014-01-21 13:24:19','',1499,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg',0,'attachment','image/jpeg',0),(1504,2,'2014-01-21 07:26:40','2014-01-21 13:26:40','','JimmyNicholsCentenialHall','','inherit','open','open','','jimmynicholscentenialhall','','','2014-01-21 07:26:40','2014-01-21 13:26:40','',1499,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall.gif',0,'attachment','image/gif',0),(1501,2,'2014-01-20 19:36:29','2014-01-21 01:36:29','<b>Kath Galasso: Before we get into talking about the book, how did you get into the whole research/historian aspect of these rock and roll projects?</b>\r\n\r\nJim Berkenstadt: As a young guy growing up, I would always be the one who would study and learn all the information off the back covers of albums, then later CD booklets. I wanted to know who produced it, who were the session players, what instruments did they play. Almost like kids who learn all the statistics off their favorite baseball player’s trading card, I was learning all this stuff out of a passion to learn more about rock & roll people.\r\n\r\nThen I pretty much specialized in The Beatles, and over time when The Beatles broke up, I started to collect “lost” recordings, like concerts that would leak out. This was long before The Beatles started releasing these BBC collections on CD. I had over ten hours of The Beatles on the BBC recordings. I started collecting all their solo work, I started collecting their interviews, so I became an expert on their recordings, which led me to working with George Harrison and now with Olivia Harrison on a number of projects. From George Harrison, that led me to Apple, where they have asked me to work on various projects. I’ve worked with Scotty Moore, who was in Elvis Presley’s original band. I’ve done work for Mrs. Buddy Holly and Roy Orbison’s widow. As people wanted to work on various boxed sets and things, they would hear about me and I would try to help them out by finding lost recordings or video clips, or find a photo of this artist when they were at a show, or can you find me a headline about this? Another thing that’s really helpful is finding interviews by the artist, especially if the artist has passed away. So that that artists can speak in their own words.\r\n\r\n<b>You researched this book for six years. I’m assuming it wasn’t something you did constantly, but you would go back to it as you found a piece, but how did you keep focus?</b>\r\n\r\nI often did ask myself ‘am I ever going to find all the pieces’ because I don’t want to put the book out unless I do. And there were some big gaps, like a year after The Beatles, Jimmie gets a call out of the blue from <a href=\"http://en.wikipedia.org/wiki/The_Spotnicks\">The Spotnicks</a> and played with them for two years, and I was able to document that quite well. I was able to find two or three Spotnicks who were very helpful in interviews, and I could always call them back or email them. They were helpful in providing pictures and actual recordings and things. So that provides more detail. But then, when they said one night he walked in on a Mexican gig and Jimmie got on a stool and started to play, and he was so drugged up he fell off the stool and their manager fired him. He walked off into the night and vanished. They never saw him again. It was a dead end that I had to sit on for quite a while.\r\n\r\nI began typing in all types of things to Google, just hoping for the smallest little clue. When you’d type in: Jimmie Nicol, Mexico, whatever, nothing was really coming up. So I would set that aside and say ok, go work on an area where you know you can get the information and fill it in, or go travel to London and walk in his footsteps… go to the coffeehouses where he started, to the recording studios where he recorded, do all of that footwork. It’s real easy to find stories about Jimmie Nichol attached to The Beatles for that thirteen day period, but it’s very difficult to find many stories about him otherwise. So it did take six years to really accumulate enough newspaper stories.\r\n\r\n<b>I always look at the quirky things of how things happen, and one of the things I found really interesting was even though he wasn’t the first choice to replace Ringo, he was choice number three, but he had the right look, and in fact he was the right size. Who would think that he would need to fit into Ringo’s suits? I just found this so fascinating.</b>\r\n\r\nI did too. This could have been a real glitch in the road for The Beatles if they had to cancel these things, it would have been world-wide news. It would have been seen as a major failure early on in their career. I thought, boy, the stars really aligned for The Beatles. They not only found a guy that had started growing a Beatle (hair) cut, and fit into Ringo’s outfits, but also already knew Ringo’s drum parts on two-thirds of their songs. That’s really some good karma.\r\n\r\n<b>Now the <a href=\"http://en.wikipedia.org/wiki/The_2i\'s_Coffee_Bar\">2i’s Coffee Bar</a> where Jimmie played early on and which was one of the early hotbeds of rock and roll in England, I was reading your description of it, how there was basically one way in and one way out. The musicians had to carry their instruments down the stairs and over their heads to get through the crowd. I can’t even imagine the smoke and the amount of people, and the firetrap situation.</b>\r\n\r\nI wanted to make some of these places as vivid as possible, because I think a lot of people are used to reading novels, fiction, and I thought why not give them the types of descriptions when I have them, of what the scene was like in those days, rather than they set up and then they played these songs, then they went here, and then they went there. <a href=\"http://en.wikipedia.org/wiki/Vince_Eager\">Vince Eager, </a>who was hanging around those clubs at that time trying to make it, really provided me with a lot of that feel. Then <a href=\"http://en.wikipedia.org/wiki/Tommy_Steele\">Tommy Steele</a> had written some sort of book, or someone wrote it for him, right after he got famous, and there was some good commentary in there about what it was like in those clubs. And I think there were a couple other artists I interviewed. I really tried to combine all those things to give the reader a feel because that was really the happening place long before the <a href=\"http://en.wikipedia.org/wiki/The_Cavern_Club#The_Cavern_Club_today\">Cavern Club</a> really became the next happening place in Liverpool.\r\n\r\n<b>Were you able to get inside of that of it, or just see it on the outside?</b>\r\n\r\nI got to the outside, but it was locked up. It’s kind of a landmark, but nobody appears to be using it on any type of regular basis. Once a year, a lot of those old guys who played there, all get together and they open it up and they play a show for their old fans. The other place, The Flamingo, that’s right around the corner and I went in there because now it’s a Chinese fast food restaurant, which is very disappointing. I’m glad they preserved the 2i’s Coffee Bar.\r\n\r\n<b>Well, your description was not lost on the masses because it definitely caught my attention. When you were talking about the width… two and a half arm’s length. This place was tiny. Unbelievable.</b>\r\n\r\nIt is unbelievable. You know I enjoy all those little arcane details. My wife got up to about the third chapter and said I had too many details. But I thought it was fascinating because I don’t think anybody has really written about the first generation of rock and roll in British music. So I thought it was a good way to write about it through Jimmie’s experience.\r\n\r\n<b>When Jimmie was with Vince Eager, they had almost a stage show, with the lights from Jimmie’s drums and the shooting of a pistol. That would never be allowed… a mock shooting.</b>\r\n\r\nI know. With a real gun and blanks.\r\n\r\n<b>Were you ever able to find out why they did a stage show in addition to being a rock and roll band?</b>\r\n\r\nWell, they were coming from a Vaudevillian type era. A lot of these rockers had grown up and seen Vaudeville shows, and in Vince Eager’s case, he was the only artist on the whole roster of artists that would go out on these packaged tours that never had a radio hit. So he felt in order to be more interesting than the other bands that all had hits, that he would play a real variety of music. Some ballads, rock and roll, all types of styles. But he would also add comedic bits, the lighting of the bongo drums. He wanted to make it more of an all-around entertainment, rather than strictly rock and roll. And as a result, he oftentimes blew the other artists off the stage.\r\n\r\n<b>Now when Jimmie got the call from<a href=\"http://en.wikipedia.org/wiki/George_Martin\"> George Martin</a>, you could say he was shocked to get the call, but not surprised that he was chosen. He knew his ability, he knew most of the songs, he had the connections, and he was respected. So it wasn’t a surprise to him that he was called. But still, it’s interesting that he would have that reaction, I mean we’re talking The Beatles. And that he would just go back and sit on his couch and mull it over in his mind a little bit before he even said anything about it.</b>\r\n\r\nYeah, I thought that was interesting, and again I’m lucky because I have a guy in the room, who was there. So it’s not one of those things where some authors make up the scenarios out of thin air, because it looks and sounds dramatic. But in my case, John Hopkinson was actually there, saw him take the call, and saw him sit there sort of quietly, and after a while sort of exploded saying “do you know who that was? I’m going down to Abbey Road to try out with The Beatles.” It’s fun if you’re lucky enough to ask the right questions, to get the right response.\r\n\r\n<b>Now once they were on tour, of course nobody knew who he was, so he was able to sneak out and blend in with the crowd. A couple of times he was out with the crowd looking up at the balcony of the hotel, like everyone else was. Can you imagine what must have been going on in his mind? They’re looking for The Beatles, now he’s a Beatle and he’s among them and they don’t even know it.</b>\r\n\r\nRight. When I discovered that, it was such an interesting juxtaposition, and it allows him to think about, that just a few days ago, if I happened to be walking past the hotel and it was The Beatles, I’d be looking up at them. But they don’t know that I’m in the entourage, I just put on some different clothes and I’m able to blend in, but those other guys upstairs… they’re prisoners. They have to go from box to box to box, and they can’t get out. Yet when he’s with them he gets to experience the high of that type of adulation, popularity, of people tearing at your clothes and screaming for you. I think it was after the first full day of Beatlemania where he was able to leave the hotel, go outside and sneak around. I thought that had to have been an amazing moment for him.\r\n\r\n<b>That quote you just said about the series of boxes, that was a very fascinating quote for me. He hated the idea of how they lived, but he craved it. How do you think he reconciled that?</b>\r\n\r\nI don’t think he ever did reconcile it. I really think it was a struggle, a back and forth thing. On the one hand, when he came back from The Beatles tour, he was telling his friend it’s really crazy the way they live, in the boxes, <a href=\"http://en.wikipedia.org/wiki/Brian_Epstein\">Brian Epstein</a> doesn’t give them a lot of freedom to move about. Yet, what he tried to do as soon as he got back, was to create his band, record another song, tried to get his songs on the radio, tried to get mass appeal, go on tour. He really was trying to compete against The Beatles and reach that pinnacle on his own. So even though he didn’t necessarily like the way they lived, he wanted to achieve that goal. I think he was clearly torn between those ideas, and later when things didn’t always work out for him, he would always blame Brian Epstein and claim that he was blacklisting him.\r\n\r\n<b>But you never found any evidence of that.</b>\r\n\r\nI did not, other than coming from Jimmie Nicol. I sort of discounted the evidence because Brian Epstein clearly created a concert of The Beatles and invited Jimmie Nichol to be on the bill (after Jimmie Nicol left The Beatles), which to me was a thank you gift. You’re going to get all these fans, and there’s going to be your band on the bill. The Beatles, The Shubdubs and Jimmie Nichol all got to hang out afterwards. I talked to Tony Bramwell, who at the time was an assistant to Brian Epstein, and he said “we” meaning the organization, all felt very grateful to Jimmie because he saved the day. On top of that Tony Bramwell in all the years he worked for him (Epstein), he never saw Brian blacklist anyone.\r\n\r\nTo me it was more of him not taking responsibility for his own choices. Number one, he was originally managing his own band, as well as being in the band and it was a lot of work. It was probably one that he was not cut out for, in terms of business expenses and how it all gets done. He also, I think was choosing which songs were going to go up as singles on the radio, and clearly a lot of the B sides were better than the A sides. And if he had picked them, he might have had a better shot. He made some poor choices and I feel he used Brian Epstein to blame when things didn’t work out for him.','','','inherit','open','open','','1499-revision-v1','','','2014-01-20 19:36:29','2014-01-21 01:36:29','',1499,'http://www.earthhertzrecords.com/2014/01/1499-revision-v1/',0,'revision','',0),(1500,2,'2014-01-20 19:23:51','2014-01-21 01:23:51','<b>Kath Galasso: Before we get into talking about the book, how did you get into the whole research/historian aspect of these rock and roll projects?</b>\r\n\r\nJim Berkenstadt: As a young guy growing up, I would always be the one who would study and learn all the information off the back covers of albums, then later CD booklets. I wanted to know who produced it, who were the session players, what instruments did they play. Almost like kids who learn all the statistics off their favorite baseball player’s trading card, I was learning all this stuff out of a passion to learn more about rock & roll people. It was interesting to notice that once people found other musicians they were comfortable with, whether they had a full band or they used session players, they would tend to use the same groupings of people over again.\r\n\r\nThen I pretty much specialized in The Beatles, and over time when The Beatles broke up, I started to collect “lost” recordings like concerts that would leak out. This was long before The Beatles started releasing these BBC collections on CD. I had over ten hours of The Beatles on the BBC recordings. I started collecting all their solo work, I started collecting their interviews, so I became an expert on their recordings, which led me to working with George Harrison and now with Olivia Harrison on a number of projects. From George Harrison, that led me to Apple, where they have asked me to work on various projects. I’ve worked with Scotty Moore, who was in Elvis Presley’s original band. I’ve done work for Mrs. Buddy Holly and Roy Orbison’s widow. As people wanted to work on various boxed sets and things, they would hear about me and I would try to help them out by finding lost recordings or video clips, or find a photo of this artist when they were at a show, or can you find me a headline about this? Another thing that’s really helpful is finding interviews by the artist, especially if the artist has passed away. So that that artists can speak in their own words.\r\n\r\n<b>You researched this book for six years. I’m assuming it wasn’t something you did constantly, but you would go back to it as you found a piece, but how did you keep focus?</b>\r\n\r\nI often did ask myself ‘am I ever going to find all the pieces’ cause I don’t want to put the book out unless I do. And there were some big gaps, like a year after The Beatles, Jimmie gets a call out of the blue from <a href=\"http://en.wikipedia.org/wiki/The_Spotnicks\">The Spotnicks</a> and played with them for two years, and I was able to document that quite well. I was able to find two or three Spotnicks who were very helpful in interviews, and I could always call them back or email them. They were helpful in providing pictures and actual recordings and things. So that provides more detail. They had old listings of concert dates, where they went and what times, so there was really a lot of great information. But then, when they said one night he walked in on a Mexican gig and Jimmie got on a stool and started to play, and he was so drugged up he fell off the stool and their manager fired him. He walked off into the night and vanished. They never saw him again. It was a dead end that I had to sit on for quite a while. I began typing in all types of things to Google, just hoping for the smallest little clue. When you’d type in: Jimmie Nicol, Mexico, whatever, nothing was really coming up. So I would set that aside and say ok, go work on an area where you know you can get the information and fill it in, or go travel to London and walk in his footsteps… go to the coffeehouses where he started, to the recording studios where he recorded, do all of that footwork. It’s real easy to find stories about Jimmie Nichol attached to The Beatles for that thirteen day period, but it’s very difficult to find many stories about him otherwise. So it did take six years to really accumulate enough newspaper stories.\r\n\r\n<b>I always look at the quirky things of how things happen, and one of the things I found really interesting was even though he wasn’t the first choice to replace Ringo, he was choice number three, but he had the right look, and in fact he was the right size. Who would think that he would need to fit into Ringo’s suits? I just found this so fascinating.</b>\r\n\r\nI did too. This could have been a real glitch in the road for The Beatles if they had to cancel these things, it would have been world-wide news. It would have been seen as a major failure early on in their career. I thought, boy, the stars really aligned for The Beatles. They not only found a guy that had started growing a Beatle (hair) cut, and fit into Ringo’s outfits, but also already knew Ringo’s drum parts on two-thirds of their songs. That’s really some good karma.\r\n\r\n<b>Now the <a href=\"http://en.wikipedia.org/wiki/The_2i\'s_Coffee_Bar\">2i’s Coffee Bar</a> where Jimmie played early on and which was one of the early hotbeds of rock and roll in England, I was reading your description of it, how there was basically one way in and one way out. The musicians had to carry their instruments down the stairs and over their heads to get through the crowd. I can’t even imagine the smoke and the amount of people, and the firetrap situation.</b>\r\n\r\nI wanted to make some of these places as vivid as possible, because I think a lot of people are used to reading novels, fiction, and I thought why not give them the types of descriptions when I have them, of what the scene was like in those days, rather than oh they set up and then they played these songs, then they went here, and then they went there. I really tried to get that, and I think <a href=\"http://en.wikipedia.org/wiki/Vince_Eager\">Vince Eager, </a>who was hanging around those clubs at that time trying to make it, he really provided me with a lot of that feel. Then <a href=\"http://en.wikipedia.org/wiki/Tommy_Steele\">Tommy Steele</a> had written some sort of book, or someone wrote it for him, right after he got famous, and there was some good commentary in there about what it was like in those clubs. And I think there were a couple other artists I interviewed. I really tried to combine all those things to give the reader a feel because that was really the happening place long before the <a href=\"http://en.wikipedia.org/wiki/The_Cavern_Club#The_Cavern_Club_today\">Cavern Club</a> really became the next happening place in Liverpool.\r\n\r\n<b>Were you able to get inside of that place, or just see it on the outside?</b>\r\n\r\nI got to the outside, but it was locked up. It’s kind of a landmark, but nobody appears to be using it on any type of regular basis. Once a year, a lot of those old guys who played there, all get together and they open it up and they play a show for their old fans. The other place, The Flamingo, that’s right around the corner and I went in there because now it’s a Chinese fast food restaurant, which is very disappointing. I’m glad they preserved the 2i’s coffee club.\r\n\r\n<b>Well, your description was not lost on the masses because it definitely caught my attention. When you were talking about the width… two and a half arm’s length. This place was tiny. Unbelievable.</b>\r\n\r\nIt is unbelievable. You know I enjoy all those little arcane details. My wife got up to about the third chapter and said I had too many details. But I thought it was fascinating because I don’t think anybody has really written about the first generation of rock and roll in British music. So I thought it was a good way to write about it through Jimmie’s experience.\r\n\r\n<b>When Jimmie was with Vince Eager, they had almost a stage show, with the lights from Jimmie’s drums and the shooting of a pistol. That would never be allowed… a mock shooting.</b>\r\n\r\nI know. With a real gun and blanks.\r\n\r\n<b>Were you ever able to find out why they did a stage show in addition to being a rock and roll band?</b>\r\n\r\nWell, they were coming from a Vaudevillian type era. A lot of these rockers had grown up and seen Vaudeville shows, and in Vince Eager’s case, he was the only artist on the whole roster of artists that would go out on these packaged tours that never had a radio hit. So he felt in order to be more interesting than the other bands that all had hits, that he would play a real variety of music. Some ballads, rock and roll, all types of styles. But he would also add comedic bits, the lighting of the bongo drums. He wanted to make it more of an all-around entertainment, rather than strictly rock and roll. And as a result, he oftentimes blew the other artists off the stage.\r\n\r\n<b>Now when Jimmie got the call from<a href=\"http://en.wikipedia.org/wiki/George_Martin\"> George Martin</a>, you could say he was shocked to get the call, but not surprised that he was chosen. He knew his ability, he knew most of the songs, he had the connections, and he was respected. So it wasn’t a surprise to him that he was called. But still, it’s interesting that he would have that reaction, I mean we’re talking The Beatles. And that he would just go back and sit on his couch and put it over in his mind a little bit before he even said anything about it.</b>\r\n\r\nYeah, I thought that was interesting, and again I’m lucky because I have a guy in the room, who was there. So it’s not one of those things where some authors make up the scenarios out of thin air, because it looks and sounds dramatic. But in my case, John Hopkinson was actually there, saw him take the call, and saw him sit there sort of quietly, and after a while sort of exploded saying “do you know who that was? I’m going down to Abbey Road to try out with The Beatles.” It’s fun if you’re lucky enough to ask the right questions, to get the right response.\r\n\r\n<b>Now once they were on tour, of course nobody knew who he was, so he was able to sneak out and blend in with the crowd. A couple of times he was out with the crowd looking up at the balcony of the hotel, like everyone else was. Can you imagine what must have been going on in his mind? They’re looking for The Beatles, now he’s a Beatle and he’s among them and they don’t even know it.</b>\r\n\r\nRight. When I discovered that, it was such an interesting juxtaposition, and it allows him to think about, that just a few days ago, if I happened to be walking past the hotel and it was The Beatles, I’d be looking up at them. But they don’t know that I’m in the entourage, I just put on some different clothes and I’m able to blend in, but those other guys upstairs… they’re prisoners. They have to go from box to box to box, and they can’t get out. Yet when he’s with them he gets to experience the high of that type of adulation, popularity, of people tearing at your clothes and screaming for you. I think it was after the first full day of Beatlemania where he was able to leave the hotel, go outside and sneak around. I thought that had to have been an amazing moment for him.\r\n\r\n<b>That quote you just said about the series of boxes, that was a very fascinating quote for me. He hated the idea of how they lived, but he craved it. How do you think he reconciled that?</b>\r\n\r\nI don’t think he ever did reconcile it. I really think it was a struggle, a back and forth thing. On the one hand, when he came back from The Beatles tour, he was telling his friend it’s really crazy the way they live, in the boxes, <a href=\"http://en.wikipedia.org/wiki/Brian_Epstein\">Brian Epstein</a> doesn’t give them a lot of freedom to move about. Yet, what he tried to do as soon as he got back, was to create his band, record another song, tried to get his songs on the radio, tried to get mass appeal, go on tour. He really was trying to compete against The Beatles and reach that pinnacle on his own. So even though he didn’t necessarily like the way they lived, he wanted to achieve that goal. I think he was clearly torn between those ideas, and later when things didn’t always work out for him, he would always blame Brian Epstein and claim that he was blacklisting him.\r\n\r\n<b>But you never found any evidence of that.</b>\r\n\r\nI did not, other than coming from Jimmie Nicol. I sort of discounted the evidence because Brian Epstein clearly created a concert of The Beatles and invited Jimmie Nichol to be on the bill (after Jimmie Nicol left The Beatles), which to me was a thank you gift. You’re going to get all these fans, and there’s going to be your band on the bill. The Beatles, The Shubdubs and Jimmie Nichol all got to hang out afterwards. I talked to Tony Bramwell, who at the time was an assistant to Brian Epstein, and he said “we” meaning the organization, all felt very grateful to Jimmie because he saved the day. On top of that Tony Bramwell in all the years he worked for him (Epstein), he never saw Brian blacklist anyone.\r\n\r\nTo me it was more of him not taking responsibility for his own choices. Number one, he was originally managing his own band, as well as being in the band and it was a lot of work. It was probably one that he was not cut out for, in terms of business expenses and how it all gets done. He also, I think was choosing which songs were going to go up as singles on the radio, and clearly a lot of the B sides were better than the A sides. And if he had picked them, he might have had a better shot. He made some poor choices and I feel he used Brian Epstein to blame when things didn’t work out for him.','','','inherit','open','open','','1499-revision-v1','','','2014-01-20 19:23:51','2014-01-21 01:23:51','',1499,'http://www.earthhertzrecords.com/2014/01/1499-revision-v1/',0,'revision','',0),(1505,2,'2014-01-21 07:29:39','2014-01-21 13:29:39','','jimmie_nicol_hong_kong_19641-280x179','','inherit','open','open','','jimmie_nicol_hong_kong_19641-280x179','','','2014-01-21 07:29:39','2014-01-21 13:29:39','',1499,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg',0,'attachment','image/jpeg',0),(1506,2,'2014-01-21 07:31:37','2014-01-21 13:31:37','','2i\'s-coffee-bar','','inherit','open','open','','2is-coffee-bar','','','2014-01-21 07:31:37','2014-01-21 13:31:37','',1499,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar.jpg',0,'attachment','image/jpeg',0),(1507,2,'2014-01-21 07:36:52','2014-01-21 13:36:52','','Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179','','inherit','open','open','','jimmie-nicol-with-the-spotnicks-paris-france-c-roland-ferneborg-280x179','','','2014-01-21 07:36:52','2014-01-21 13:36:52','',1499,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg',0,'attachment','image/jpeg',0),(1508,2,'2014-01-21 07:37:53','2014-01-21 13:37:53','<p style=\"text-align: center;\"><i>Many times in life, you just never know where your journey will lead, but if you follow your passion…</i></p>\r\n\r\n\r\n[caption id=\"attachment_1503\" align=\"alignleft\" width=\"139\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\"><img class=\" wp-image-1503\" alt=\"jim-berkenstadt-new-book-199x300\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\" width=\"139\" height=\"210\" /></a> Photo of Jim Berkenstadt © Narayan Mayhon[/caption]\r\n\r\nGrowing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually taking his knowledge of music, he began another career as a writer, first with articles, then books. His favorite subject matter was The Beatles. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame.\r\n\r\nCombining his affection for music with his researching skills, Jim founded <a href=\"http://www.rockandrolldetective.com/\">The Rock and Roll Detective</a>, a company which provides research, writing, and basically the ability to find a needle in a haystack, to the entertainment industry. Nowhere did those research skills more valuable than while writing his latest book, <i>The Beatle Who Vanished</i>, the story of Jimmie Nicol, who replaced Ringo Starr on part of The Beatle’s first world tour. Though only a Beatle for less than two weeks, Nicol’s life would be forever changed. The story is a fascinating trip from the birth of rock and roll in England through Beatlemania. It follows the trail of a man who would be famous, who never quite was, and who became both an enigma, as well as a footnote in musical history.\r\n\r\nAs we approach the 50<sup>th</sup> anniversary of The Beatles coming to the United States, I had the pleasure of speaking with Jim Berkenstadt about his quest to find The Beatle Who Vanished.\r\n\r\n<b>Part 1</b>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Kath Galasso: Before we get into talking about the book, how did you get into the whole research/historian aspect of these rock and roll projects?</b>\r\n\r\nJim Berkenstadt: As a young guy growing up, I would always be the one who would study and learn all the information off the back covers of albums, then later CD booklets. I wanted to know who produced it, who were the session players, what instruments did they play. Almost like kids who learn all the statistics off their favorite baseball player’s trading card, I was learning all this stuff out of a passion to learn more about rock & roll people. It was interesting to notice that once people found other musicians they were comfortable with, whether they had a full band or they used session players, they would tend to use the same groupings of people over again.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall.gif\"><img class=\"alignright size-thumbnail wp-image-1504\" alt=\"JimmyNicholsCentenialHall\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall-150x150.gif\" width=\"150\" height=\"150\" /></a>Then I pretty much specialized in The Beatles, and over time when The Beatles broke up, I started to collect “lost” recordings like concerts that would leak out. This was long before The Beatles started releasing these BBC collections on CD. I had over ten hours of The Beatles on the BBC recordings. I started collecting all their solo work, I started collecting their interviews, so I became an expert on their recordings, which led me to working with George Harrison and now with Olivia Harrison on a number of projects. From George Harrison, that led me to Apple, where they have asked me to work on various projects. I’ve worked with Scotty Moore, who was in Elvis Presley’s original band. I’ve done work for Mrs. Buddy Holly and Roy Orbison’s widow. As people wanted to work on various boxed sets and things, they would hear about me and I would try to help them out by finding lost recordings or video clips, or find a photo of this artist when they were at a show, or can you find me a headline about this? Another thing that’s really helpful is finding interviews by the artist, especially if the artist has passed away. So that that artists can speak in their own words.\r\n\r\n<b>You researched this book for six years. I’m assuming it wasn’t something you did constantly, but you would go back to it as you found a piece, but how did you keep focus?</b>\r\n\r\n[caption id=\"attachment_1507\" align=\"alignright\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\"><img class=\"size-full wp-image-1507\" alt=\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\" width=\"280\" height=\"179\" /></a> Image (c) Roland Ferneborg[/caption]\r\n\r\nI often did ask myself ‘am I ever going to find all the pieces’ cause I don’t want to put the book out unless I do. And there were some big gaps, like a year after The Beatles, Jimmie gets a call out of the blue from The Spotniks and played with them for two years, and I was able to document that quite well. I was able to find two or three Spotniks who were very helpful in interviews, and I could always call them back or email them. They were helpful in providing pictures and actual recordings and things. So that provides more detail. They had old listings of concert dates, where they went and what times, so there was really a lot of great information. But then, when they said one night he walked in on a Mexican gig and Jimmie got on a stool and started to play, and he was so drugged up he fell off the stool and their manager fired him. He walked off into the night and vanished. They never saw him again. It was a dead end that I had to sit on for quite a while. I began typing in all types of things to Google, just hoping for the smallest little clue. When you’d type in: Jimmie Nichol, Mexico, whatever, nothing was really coming up. So I would set that aside and say ok, go work on an area where you know you can get the information and fill it in, or go travel to London and walk in his footsteps… go to the coffeehouses where he started, to the recording studios where he recorded, do all of that footwork. It’s real easy to find stories about Jimmie Nichol attached to The Beatles for that thirteen day period, but it’s very difficult to find many stories about him otherwise. So it did take six years to really accumulate enough newspaper stories.\r\n\r\n[caption id=\"attachment_1505\" align=\"alignleft\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\"><img class=\"size-full wp-image-1505\" alt=\"jimmie_nicol_hong_kong_19641-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\" width=\"280\" height=\"179\" /></a> Topham (c) Top Foto Image Works[/caption]\r\n\r\nI did too. This could have been a real glitch in the road for The Beatles if they had to cancel these things, it would have been world-wide news. It would have been seen as a major failure early on in their career. I thought, boy, the stars really aligned for The Beatles. They not only found a guy that had started growing a Beatle (hair) cut, and fit into Ringo’s outfits, but also already knew Ringo’s drum parts on two-thirds of their songs. That’s really some good karma.\r\n\r\n[caption id=\"attachment_1506\" align=\"alignright\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar.jpg\"><img class=\"size-thumbnail wp-image-1506\" alt=\"2i\'s-coffee-bar\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar-150x150.jpg\" width=\"150\" height=\"150\" /></a> Photo: http://en.wikipedia.org/[/caption]\r\n\r\nI wanted to make some of these places as vivid as possible, because I think a lot of people are used to reading novels, fiction, and I thought why not give them the types of descriptions when I have them, of what the scene was like in those days, rather than oh they set up and then they played these songs, then they went here, and then they went there. I really tried to get that, and I think Vince Eager, who was hanging around those clubs at that time trying to make it, he really provided me with a lot of that feel. Then Tommy Steele had written some sort of book, or someone wrote it for him, right after he got famous, and there was some good commentary in there about what it was like in those clubs. And I think there were a couple other artists I interviewed. I really tried to combine all those things to give the reader a feel because that was really the happening place long before the Cavern Club really became the next happening place in Liverpool.\r\n\r\n<b>Were you able to get inside of that place, or just see it on the outside?</b>\r\n\r\nI got to the outside, but it was locked up. It’s kind of a landmark, but nobody appears to be using it on any type of regular basis. Once a year, a lot of those old guys who played there, all get together and they open it up and they play a show for their old fans. The other place, The Flamingo, that’s right around the corner and I went in there because now it’s a Chinese fast food restaurant, which is very disappointing. I’m glad they preserved the 2I’s coffee club.\r\n\r\n<b>Well, your description was not lost on the masses because it definitely caught my attention. When you were talking about the width… two and a half arm’s length. This place was tiny. Unbelievable.</b>\r\n\r\nIt is unbelievable. You know I enjoy all those little arcane details. My wife got up to about the third chapter and said I had too many details. But I thought it was fascinating because I don’t think anybody has really written about the first generation of rock and roll I British music. So I thought it was a good way to write about it through Jimmie’s experience.\r\n\r\n<b>When Jimmie was with Vince Eager, they had almost a stage show, with the lights from Jimmie’s drums and the shooting of a pistol. That would never be allowed… a mock shooting.</b>\r\n\r\nI know. With a real gun and blanks.\r\n\r\n<b>Were you ever able to find out why they did a stage show in addition to being a rock and roll band?</b>\r\n\r\nWell, they were coming from a Vaudevillian type era. A lot of these rockers had grown up and seen Vaudeville shows, and in Vince Eager’s case, he was the only artist on the whole roster of artists that would go out on these packaged tours that never had a radio hit. So he felt in order to be more interesting than the other bands that all had hits, that he would play a real variety of music. Some ballads, rock and roll, all types of styles. But he would also add comedic bits, the lighting of the bongo drums. He wanted to make it more of an all-around entertainment, rather than strictly rock and roll. And as a result, he oftentimes blew the other artists off the stage.\r\n\r\n<b>Now when Jimmie got the call from George Martin, you could say he was shocked to get the call, but not surprised that he was chosen. He knew his ability, he knew most of the songs, he had the connections, and he was respected. So it wasn’t a surprise to him that he was called. But still, it’s interesting that he would have that reaction, I mean we’re talking The Beatles. And that he would just go back and sit on his couch and put it over in his mind a little bit before he even said anything about it.</b>\r\n\r\nYeah, I thought that was interesting, and again I’m lucky because I have a guy in the room, who was there. So it’s not one of those things where some authors make up the scenarios out of thin air, because it looks and sounds dramatic. But in my case, John Hopkinson was actually there, saw him take the call, and saw him sit there sort of quietly, and after a while sort of exploded saying “do you know who that was? I’m going down to Abbey Road to try out with The Beatles.” It’s fun if you’re lucky enough to ask the right questions, to get the right response.\r\n\r\n<strong>In Part 2 of the interview, Jim Berkenstadt talks about Jimmie Nicol\'s time as a Beatle, how it affected his life, and what became of the man who filled in for the most famous drummer in the world.</strong>\r\n\r\nTo read a review of The Beatle Who Vanished,<a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\"> click here</a>\r\n\r\n ','','','inherit','open','open','','1499-revision-v1','','','2014-01-21 07:37:53','2014-01-21 13:37:53','',1499,'http://www.earthhertzrecords.com/2014/01/1499-revision-v1/',0,'revision','',0),(1511,2,'2014-01-21 08:21:39','2014-01-21 14:21:39','<p style=\"text-align: center;\"><strong><i>Many times in life, you just never know where your journey will lead, but if you follow your passion…</i></strong></p>\r\n\r\n\r\n[caption id=\"attachment_1503\" align=\"alignleft\" width=\"139\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\"><img class=\" wp-image-1503\" alt=\"jim-berkenstadt-new-book-199x300\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\" width=\"139\" height=\"210\" /></a> Photo of Jim Berkenstadt © Narayan Mayhon[/caption]\r\n\r\nGrowing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually, taking his knowledge of music, he began another career as a writer; first with articles, then books. His favorite subject matter was The Beatles. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame.\r\n\r\nCombining his affection for music with his researching skills, Jim founded <a href=\"http://www.rockandrolldetective.com/\">The Rock and Roll Detective</a>, a company which provides to the entertainment industry, research, writing, and basically the ability to find a needle in a haystack. His research skills proved invaluable while writing his latest book, <i><a href=\"http://www.thebeatlewhovanished.com/\">The Beatle Who Vanished</a>.</i> It is the story of Jimmie Nicol, who replaced Ringo Starr on part of The Beatle’s first world tour. Though he was a Beatle for less than two weeks, Nicol’s life would be forever changed. The story is a fascinating trip from the birth of rock and roll in England through the insanity that was Beatlemania. It follows the trail of a man who would be famous, who never quite was, and who became both an enigma, as well as a footnote in musical history.\r\n\r\nAs we approach the 50<sup>th</sup> anniversary of The Beatles coming to the United States, I had the pleasure of speaking with Jim Berkenstadt about his quest to find <em>The Beatle Who Vanished.</em>\r\n\r\n<b>Part 1</b>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Kath Galasso: Before we get into talking about the book, how did you get into the whole research/historian aspect of these rock and roll projects?</b>\r\n\r\nJim Berkenstadt: As a young guy growing up, I would always be the one who would study and learn all the information off the back covers of albums, then later CD booklets. I wanted to know who produced it, who were the session players, what instruments did they play. Almost like kids who learn all the statistics off their favorite baseball player’s trading card, I was learning all this stuff out of a passion to learn more about rock & roll people. It was interesting to notice that once people found other musicians they were comfortable with, whether they had a full band or they used session players, they would tend to use the same groupings of people over again.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall.gif\"><img class=\"alignright size-thumbnail wp-image-1504\" alt=\"JimmyNicholsCentenialHall\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall-150x150.gif\" width=\"150\" height=\"150\" /></a>Then I pretty much specialized in The Beatles, and over time when The Beatles broke up, I started to collect “lost” recordings of concerts that would leak out. I had over ten hours of The Beatles on the BBC recordings. I started collecting all their solo work, their interviews, and so I became an expert on their recordings, which led me to working with George Harrison and now with Olivia Harrison on a number of projects. From George Harrison, that led me to Apple, where they have asked me to work on various projects. As people wanted to work on various boxed sets and things, they would hear about me and I would try to help them out by finding lost recordings or video clips, or find a photo of this artist when they were at a show. Another thing that’s really helpful is finding interviews by the artist, especially if the artist has passed away. So that that artists can speak in their own words.\r\n\r\n<b>You researched this book for six years. I’m assuming it wasn’t something you did constantly, but you would go back to it as you found a piece, but how did you keep focus?</b>\r\n\r\n[caption id=\"attachment_1507\" align=\"alignright\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\"><img class=\"size-full wp-image-1507\" alt=\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\" width=\"280\" height=\"179\" /></a> Image (c) Roland Ferneborg[/caption]\r\n\r\nI often did ask myself ‘am I ever going to find all the pieces’ because I don’t want to put the book out unless I do. And there were some big gaps. A year after The Beatles, Jimmie gets a call out of the blue from <a href=\"http://en.wikipedia.org/wiki/The_Spotnicks\">The Spotniks</a> and played with them for two years, and I was able to document that quite well. I was able to find two or three Spotniks who were very helpful in providing pictures and actual recordings. They had old listings of concert dates, where they went and what times, so there was really a lot of great information.\r\n\r\nThen they said one night he walked in on a Mexican gig and Jimmie got on a stool and started to play, and he was so drugged up he fell off the stool and their manager fired him. He walked off into the night and vanished. They never saw him again. It was a dead end that I had to sit on for quite a while. So I would set that aside and go work on an area where you know you can get the information and fill it in, or go travel to London and walk in his footsteps… go to the coffeehouses where he started, to the recording studios where he recorded, do all of that footwork. It’s real easy to find stories about Jimmie Nichol attached to The Beatles for that thirteen day period, but it’s very difficult to find many stories about him otherwise. So it did take six years to really accumulate enough newspaper stories.\r\n\r\n<b>I always look at the quirky things of how things happen, and one of the things I found really interesting was even though he wasn’t the first choice to replace Ringo, he was choice number three, but he had the right look, and in fact he was the right size. Who would think that he would need to fit into Ringo’s suits? I just found this so fascinating.</b>\r\n\r\n[caption id=\"attachment_1505\" align=\"alignleft\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\"><img class=\"size-full wp-image-1505\" alt=\"jimmie_nicol_hong_kong_19641-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\" width=\"280\" height=\"179\" /></a> Topham (c) Top Foto Image Works[/caption]\r\n\r\nI did too. This could have been a real glitch in the road for The Beatles if they had to cancel these things, it would have been world-wide news. It would have been seen as a major failure early on in their career. I thought, boy, the stars really aligned for The Beatles. They not only found a guy that had started growing a Beatle (hair) cut, and fit into Ringo’s outfits, but also already knew Ringo’s drum parts on two-thirds of their songs. That’s really some good karma.\r\n\r\n[caption id=\"attachment_1506\" align=\"alignright\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar.jpg\"><img class=\"size-thumbnail wp-image-1506\" alt=\"2i\'s-coffee-bar\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar-150x150.jpg\" width=\"150\" height=\"150\" /></a> Photo: http://en.wikipedia.org/[/caption]\r\n\r\n<b>Now the <a href=\"http://en.wikipedia.org/wiki/The_2i\'s_Coffee_Bar\">2I’s Coffee Bar</a> where Jimmie played early on and which was one of the early hotbeds of rock and roll in England, I was reading your description of it, how there was basically one way in and one way out. The musicians had to carry their instruments down the stairs and over their heads to get through the crowd. I can’t even imagine the smoke and the amount of people, and the firetrap situation.</b>\r\n\r\nI wanted to make some of these places as vivid as possible, because I think a lot of people are used to reading novels, fiction, and I thought why not give them the types of descriptions when I have them, of what the scene was like in those days, rather than oh they set up and then they played these songs, then they went here, and then they went there. I really tried to get that, and <a href=\"http://en.wikipedia.org/wiki/Vince_Eager\">Vince Eager</a>, who was hanging around those clubs at that time trying to make it, really provided me with a lot of that feel. Then <a href=\"http://en.wikipedia.org/wiki/Tommy_Steele\">Tommy Steele</a> had written some sort of book, or someone wrote it for him, right after he got famous, and there was some good commentary in there about what it was like in those clubs. I really tried to combine all those things to give the reader a feel because that was really the happening place long before <a href=\"http://en.wikipedia.org/wiki/The_Cavern_Club\">The Cavern Club</a> really became the next happening place in Liverpool.\r\n\r\n<b>Were you able to get inside of the 2i\'s, or just see it on the outside?</b>\r\n\r\nI got to the outside, but it was locked up. It’s kind of a landmark, but nobody appears to be using it on any type of regular basis. Once a year, a lot of those old guys who played there, all get together and they open it up and they play a show for their old fans. The other place, The Flamingo, that’s right around the corner and I went in there because now it’s a Chinese fast food restaurant, which is very disappointing. I’m glad they preserved the 2i’s Coffee Bar.\r\n\r\n<b>Well, your description was not lost on the masses because it definitely caught my attention. When you were talking about the width… two and a half arm’s length. This place was tiny. Unbelievable.</b>\r\n\r\nIt is unbelievable. You know I enjoy all those little arcane details. My wife got up to about the third chapter and said I had too many details. But I thought it was fascinating because I don’t think anybody has really written about the first generation of rock and roll in British music. So I thought it was a good way to write about it through Jimmie’s experience.\r\n\r\n<b>When Jimmie was with Vince Eager, they had almost a stage show, with the lights from Jimmie’s drums and the shooting of a pistol. That would never be allowed… a mock shooting.</b>\r\n\r\nI know. With a real gun and blanks.\r\n\r\n<b>Were you ever able to find out why they did a stage show in addition to being a rock and roll band?</b>\r\n\r\nWell, they were coming from a Vaudevillian type era. A lot of these rockers had grown up and seen Vaudeville shows, and in Vince Eager’s case, he was the only artist on the whole roster of artists that would go out on these packaged tours that never had a radio hit. So he felt in order to be more interesting than the other bands that all had hits, that he would play a real variety of music. Some ballads, rock and roll, all types of styles. But he would also add comedic bits, the lighting of the bongo drums. He wanted to make it more of an all-around entertainment, rather than strictly rock and roll. And as a result, he oftentimes blew the other artists off the stage.\r\n\r\n<b>Now when Jimmie got the call from <a href=\"http://en.wikipedia.org/wiki/George_Martin\">George Martin</a>, you could say he was shocked to get the call, but not surprised that he was chosen. He knew his ability, he knew most of the songs, he had the connections, and he was respected. So it wasn’t a surprise to him that he was called. But still, it’s interesting that he would have that reaction, I mean we’re talking The Beatles. And that he would just go back and sit on his couch and mull it over in his mind a little bit before he even said anything about it.</b>\r\n\r\nYeah, I thought that was interesting, and again I’m lucky because I have a guy in the room, who was there. So it’s not one of those things where some authors make up the scenarios out of thin air, because it looks and sounds dramatic. In my case, John Hopkinson was actually there, saw him take the call, and saw him sit there sort of quietly, and after a while sort of exploded saying “do you know who that was? I’m going down to Abbey Road to try out with The Beatles.” It’s fun if you’re lucky enough to ask the right questions, to get the right response.\r\n\r\n<strong>In Part 2 of the interview, Jim Berkenstadt talks about Jimmie Nicol\'s time as a Beatle, how it affected his life, and what became of the man who filled in for the most famous drummer in the world.</strong>\r\n\r\nTo read a review of The Beatle Who Vanished,<a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\"> click here</a>\r\n\r\n ','','','inherit','open','open','','1499-revision-v1','','','2014-01-21 08:21:39','2014-01-21 14:21:39','',1499,'http://www.earthhertzrecords.com/2014/01/1499-revision-v1/',0,'revision','',0),(1510,2,'2014-01-21 08:00:31','2014-01-21 14:00:31','<p style=\"text-align: center;\"><strong><i>Many times in life, you just never know where your journey will lead, but if you follow your passion…</i></strong></p>\r\n\r\n\r\n[caption id=\"attachment_1503\" align=\"alignleft\" width=\"139\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\"><img class=\" wp-image-1503\" alt=\"jim-berkenstadt-new-book-199x300\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\" width=\"139\" height=\"210\" /></a> Photo of Jim Berkenstadt © Narayan Mayhon[/caption]\r\n\r\nGrowing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually, taking his knowledge of music, he began another career as a writer; first with articles, then books. His favorite subject matter was The Beatles. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame.\r\n\r\nCombining his affection for music with his researching skills, Jim founded <a href=\"http://www.rockandrolldetective.com/\">The Rock and Roll Detective</a>, a company which provides to the entertainment industry, research, writing, and basically the ability to find a needle in a haystack. His research skills proved invaluable while writing his latest book, <i><a href=\"http://www.thebeatlewhovanished.com/\">The Beatle Who Vanished</a>.</i> It is the story of Jimmie Nicol, who replaced Ringo Starr on part of The Beatle’s first world tour. Though he was a Beatle for less than two weeks, Nicol’s life would be forever changed. The story is a fascinating trip from the birth of rock and roll in England through the insanity that was Beatlemania. It follows the trail of a man who would be famous, who never quite was, and who became both an enigma, as well as a footnote in musical history.\r\n\r\nAs we approach the 50<sup>th</sup> anniversary of The Beatles coming to the United States, I had the pleasure of speaking with Jim Berkenstadt about his quest to find <em>The Beatle Who Vanished.</em>\r\n\r\n<b>Part 1</b>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Kath Galasso: Before we get into talking about the book, how did you get into the whole research/historian aspect of these rock and roll projects?</b>\r\n\r\nJim Berkenstadt: As a young guy growing up, I would always be the one who would study and learn all the information off the back covers of albums, then later CD booklets. I wanted to know who produced it, who were the session players, what instruments did they play. Almost like kids who learn all the statistics off their favorite baseball player’s trading card, I was learning all this stuff out of a passion to learn more about rock & roll people. It was interesting to notice that once people found other musicians they were comfortable with, whether they had a full band or they used session players, they would tend to use the same groupings of people over again.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall.gif\"><img class=\"alignright size-thumbnail wp-image-1504\" alt=\"JimmyNicholsCentenialHall\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall-150x150.gif\" width=\"150\" height=\"150\" /></a>Then I pretty much specialized in The Beatles, and over time when The Beatles broke up, I started to collect “lost” recordings like concerts that would leak out. I had over ten hours of The Beatles on the BBC recordings. I started collecting all their solo work, I started collecting their interviews, so I became an expert on their recordings, which led me to working with George Harrison and now with Olivia Harrison on a number of projects. From George Harrison, that led me to Apple, where they have asked me to work on various projects. As people wanted to work on various boxed sets and things, they would hear about me and I would try to help them out by finding lost recordings or video clips, or find a photo of this artist when they were at a show, or can you find me a headline about this? Another thing that’s really helpful is finding interviews by the artist, especially if the artist has passed away. So that that artists can speak in their own words.\r\n\r\n<b>You researched this book for six years. I’m assuming it wasn’t something you did constantly, but you would go back to it as you found a piece, but how did you keep focus?</b>\r\n\r\n[caption id=\"attachment_1507\" align=\"alignright\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\"><img class=\"size-full wp-image-1507\" alt=\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\" width=\"280\" height=\"179\" /></a> Image (c) Roland Ferneborg[/caption]\r\n\r\nI often did ask myself ‘am I ever going to find all the pieces’ cause I don’t want to put the book out unless I do. And there were some big gaps, like a year after The Beatles, Jimmie gets a call out of the blue from <a href=\"http://en.wikipedia.org/wiki/The_Spotnicks\">The Spotniks</a> and played with them for two years, and I was able to document that quite well. I was able to find two or three Spotniks who were very helpful in interviews. They were helpful in providing pictures and actual recordings. They had old listings of concert dates, where they went and what times, so there was really a lot of great information.\r\n\r\nBut then, when they said one night he walked in on a Mexican gig and Jimmie got on a stool and started to play, and he was so drugged up he fell off the stool and their manager fired him. He walked off into the night and vanished. They never saw him again. It was a dead end that I had to sit on for quite a while. So I would set that aside and say ok, go work on an area where you know you can get the information and fill it in, or go travel to London and walk in his footsteps… go to the coffeehouses where he started, to the recording studios where he recorded, do all of that footwork. It’s real easy to find stories about Jimmie Nichol attached to The Beatles for that thirteen day period, but it’s very difficult to find many stories about him otherwise. So it did take six years to really accumulate enough newspaper stories.\r\n\r\n<b>I always look at the quirky things of how things happen, and one of the things I found really interesting was even though he wasn’t the first choice to replace Ringo, he was choice number three, but he had the right look, and in fact he was the right size. Who would think that he would need to fit into Ringo’s suits? I just found this so fascinating.</b>\r\n\r\n[caption id=\"attachment_1505\" align=\"alignleft\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\"><img class=\"size-full wp-image-1505\" alt=\"jimmie_nicol_hong_kong_19641-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\" width=\"280\" height=\"179\" /></a> Topham (c) Top Foto Image Works[/caption]\r\n\r\nI did too. This could have been a real glitch in the road for The Beatles if they had to cancel these things, it would have been world-wide news. It would have been seen as a major failure early on in their career. I thought, boy, the stars really aligned for The Beatles. They not only found a guy that had started growing a Beatle (hair) cut, and fit into Ringo’s outfits, but also already knew Ringo’s drum parts on two-thirds of their songs. That’s really some good karma.\r\n\r\n[caption id=\"attachment_1506\" align=\"alignright\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar.jpg\"><img class=\"size-thumbnail wp-image-1506\" alt=\"2i\'s-coffee-bar\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar-150x150.jpg\" width=\"150\" height=\"150\" /></a> Photo: http://en.wikipedia.org/[/caption]\r\n\r\n<b>Now the <a href=\"http://en.wikipedia.org/wiki/The_2i\'s_Coffee_Bar\">2I’s Coffee Bar</a> where Jimmie played early on and which was one of the early hotbeds of rock and roll in England, I was reading your description of it, how there was basically one way in and one way out. The musicians had to carry their instruments down the stairs and over their heads to get through the crowd. I can’t even imagine the smoke and the amount of people, and the firetrap situation.</b>\r\n\r\nI wanted to make some of these places as vivid as possible, because I think a lot of people are used to reading novels, fiction, and I thought why not give them the types of descriptions when I have them, of what the scene was like in those days, rather than oh they set up and then they played these songs, then they went here, and then they went there. I really tried to get that, and <a href=\"http://en.wikipedia.org/wiki/Vince_Eager\">Vince Eager</a>, who was hanging around those clubs at that time trying to make it, really provided me with a lot of that feel. Then <a href=\"http://en.wikipedia.org/wiki/Tommy_Steele\">Tommy Steele</a> had written some sort of book, or someone wrote it for him, right after he got famous, and there was some good commentary in there about what it was like in those clubs. I really tried to combine all those things to give the reader a feel because that was really the happening place long before <a href=\"http://en.wikipedia.org/wiki/The_Cavern_Club\">The Cavern Club</a> really became the next happening place in Liverpool.\r\n\r\n<b>Were you able to get inside of the 2i\'s, or just see it on the outside?</b>\r\n\r\nI got to the outside, but it was locked up. It’s kind of a landmark, but nobody appears to be using it on any type of regular basis. Once a year, a lot of those old guys who played there, all get together and they open it up and they play a show for their old fans. The other place, The Flamingo, that’s right around the corner and I went in there because now it’s a Chinese fast food restaurant, which is very disappointing. I’m glad they preserved the 2i’s Coffee Bar.\r\n\r\n<b>Well, your description was not lost on the masses because it definitely caught my attention. When you were talking about the width… two and a half arm’s length. This place was tiny. Unbelievable.</b>\r\n\r\nIt is unbelievable. You know I enjoy all those little arcane details. My wife got up to about the third chapter and said I had too many details. But I thought it was fascinating because I don’t think anybody has really written about the first generation of rock and roll in British music. So I thought it was a good way to write about it through Jimmie’s experience.\r\n\r\n<b>When Jimmie was with Vince Eager, they had almost a stage show, with the lights from Jimmie’s drums and the shooting of a pistol. That would never be allowed… a mock shooting.</b>\r\n\r\nI know. With a real gun and blanks.\r\n\r\n<b>Were you ever able to find out why they did a stage show in addition to being a rock and roll band?</b>\r\n\r\nWell, they were coming from a Vaudevillian type era. A lot of these rockers had grown up and seen Vaudeville shows, and in Vince Eager’s case, he was the only artist on the whole roster of artists that would go out on these packaged tours that never had a radio hit. So he felt in order to be more interesting than the other bands that all had hits, that he would play a real variety of music. Some ballads, rock and roll, all types of styles. But he would also add comedic bits, the lighting of the bongo drums. He wanted to make it more of an all-around entertainment, rather than strictly rock and roll. And as a result, he oftentimes blew the other artists off the stage.\r\n\r\n<b>Now when Jimmie got the call from <a href=\"http://en.wikipedia.org/wiki/George_Martin\">George Martin</a>, you could say he was shocked to get the call, but not surprised that he was chosen. He knew his ability, he knew most of the songs, he had the connections, and he was respected. So it wasn’t a surprise to him that he was called. But still, it’s interesting that he would have that reaction, I mean we’re talking The Beatles. And that he would just go back and sit on his couch and mull it over in his mind a little bit before he even said anything about it.</b>\r\n\r\nYeah, I thought that was interesting, and again I’m lucky because I have a guy in the room, who was there. So it’s not one of those things where some authors make up the scenarios out of thin air, because it looks and sounds dramatic. In my case, John Hopkinson was actually there, saw him take the call, and saw him sit there sort of quietly, and after a while sort of exploded saying “do you know who that was? I’m going down to Abbey Road to try out with The Beatles.” It’s fun if you’re lucky enough to ask the right questions, to get the right response.\r\n\r\n<strong>In Part 2 of the interview, Jim Berkenstadt talks about Jimmie Nicol\'s time as a Beatle, how it affected his life, and what became of the man who filled in for the most famous drummer in the world.</strong>\r\n\r\nTo read a review of The Beatle Who Vanished,<a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\"> click here</a>\r\n\r\n ','','','inherit','open','open','','1499-revision-v1','','','2014-01-21 08:00:31','2014-01-21 14:00:31','',1499,'http://www.earthhertzrecords.com/2014/01/1499-revision-v1/',0,'revision','',0),(1509,2,'2014-01-21 07:50:41','2014-01-21 13:50:41','<p style=\"text-align: center;\"><strong><i>Many times in life, you just never know where your journey will lead, but if you follow your passion…</i></strong></p>\r\n\r\n\r\n[caption id=\"attachment_1503\" align=\"alignleft\" width=\"139\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\"><img class=\" wp-image-1503\" alt=\"jim-berkenstadt-new-book-199x300\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\" width=\"139\" height=\"210\" /></a> Photo of Jim Berkenstadt © Narayan Mayhon[/caption]\r\n\r\nGrowing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually taking his knowledge of music, he began another career as a writer, first with articles, then books. His favorite subject matter was The Beatles. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame.\r\n\r\nCombining his affection for music with his researching skills, Jim founded <a href=\"http://www.rockandrolldetective.com/\">The Rock and Roll Detective</a>, a company which provides research, writing, and basically the ability to find a needle in a haystack, to the entertainment industry. Nowhere did those research skills more valuable than while writing his latest book, <a href=\"http://www.thebeatlewhovanished.com/\"><i>The Beatle Who Vanished</i></a>, the story of Jimmie Nicol, who replaced Ringo Starr on part of The Beatle’s first world tour. Though only a Beatle for less than two weeks, Nicol’s life would be forever changed. The story is a fascinating trip from the birth of rock and roll in England through Beatlemania. It follows the trail of a man who would be famous, who never quite was, and who became both an enigma, as well as a footnote in musical history.\r\n\r\nAs we approach the 50<sup>th</sup> anniversary of The Beatles coming to the United States, I had the pleasure of speaking with Jim Berkenstadt about his quest to find <em>The Beatle Who Vanished.</em>\r\n\r\n<b>Part 1</b>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Kath Galasso: Before we get into talking about the book, how did you get into the whole research/historian aspect of these rock and roll projects?</b>\r\n\r\nJim Berkenstadt: As a young guy growing up, I would always be the one who would study and learn all the information off the back covers of albums, then later CD booklets. I wanted to know who produced it, who were the session players, what instruments did they play. Almost like kids who learn all the statistics off their favorite baseball player’s trading card, I was learning all this stuff out of a passion to learn more about rock & roll people. It was interesting to notice that once people found other musicians they were comfortable with, whether they had a full band or they used session players, they would tend to use the same groupings of people over again.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall.gif\"><img class=\"alignright size-thumbnail wp-image-1504\" alt=\"JimmyNicholsCentenialHall\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall-150x150.gif\" width=\"150\" height=\"150\" /></a>Then I pretty much specialized in The Beatles, and over time when The Beatles broke up, I started to collect “lost” recordings like concerts that would leak out. I had over ten hours of The Beatles on the BBC recordings. I started collecting all their solo work, I started collecting their interviews, so I became an expert on their recordings, which led me to working with George Harrison and now with Olivia Harrison on a number of projects. From George Harrison, that led me to Apple, where they have asked me to work on various projects. As people wanted to work on various boxed sets and things, they would hear about me and I would try to help them out by finding lost recordings or video clips, or find a photo of this artist when they were at a show, or can you find me a headline about this? Another thing that’s really helpful is finding interviews by the artist, especially if the artist has passed away. So that that artists can speak in their own words.\r\n\r\n<b>You researched this book for six years. I’m assuming it wasn’t something you did constantly, but you would go back to it as you found a piece, but how did you keep focus?</b>\r\n\r\n[caption id=\"attachment_1507\" align=\"alignright\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\"><img class=\"size-full wp-image-1507\" alt=\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\" width=\"280\" height=\"179\" /></a> Image (c) Roland Ferneborg[/caption]\r\n\r\nI often did ask myself ‘am I ever going to find all the pieces’ cause I don’t want to put the book out unless I do. And there were some big gaps, like a year after The Beatles, Jimmie gets a call out of the blue from <a href=\"http://en.wikipedia.org/wiki/The_Spotnicks\">The Spotniks</a> and played with them for two years, and I was able to document that quite well. I was able to find two or three Spotniks who were very helpful in interviews, and I could always call them back or email them. They were helpful in providing pictures and actual recordings and things. So that provides more detail. They had old listings of concert dates, where they went and what times, so there was really a lot of great information. But then, when they said one night he walked in on a Mexican gig and Jimmie got on a stool and started to play, and he was so drugged up he fell off the stool and their manager fired him. He walked off into the night and vanished. They never saw him again. It was a dead end that I had to sit on for quite a while. So I would set that aside and say ok, go work on an area where you know you can get the information and fill it in, or go travel to London and walk in his footsteps… go to the coffeehouses where he started, to the recording studios where he recorded, do all of that footwork. It’s real easy to find stories about Jimmie Nichol attached to The Beatles for that thirteen day period, but it’s very difficult to find many stories about him otherwise. So it did take six years to really accumulate enough newspaper stories.\r\n\r\n<b>I always look at the quirky things of how things happen, and one of the things I found really interesting was even though he wasn’t the first choice to replace Ringo, he was choice number three, but he had the right look, and in fact he was the right size. Who would think that he would need to fit into Ringo’s suits? I just found this so fascinating.</b>\r\n\r\n[caption id=\"attachment_1505\" align=\"alignleft\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\"><img class=\"size-full wp-image-1505\" alt=\"jimmie_nicol_hong_kong_19641-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\" width=\"280\" height=\"179\" /></a> Topham (c) Top Foto Image Works[/caption]\r\n\r\nI did too. This could have been a real glitch in the road for The Beatles if they had to cancel these things, it would have been world-wide news. It would have been seen as a major failure early on in their career. I thought, boy, the stars really aligned for The Beatles. They not only found a guy that had started growing a Beatle (hair) cut, and fit into Ringo’s outfits, but also already knew Ringo’s drum parts on two-thirds of their songs. That’s really some good karma.\r\n\r\n[caption id=\"attachment_1506\" align=\"alignright\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar.jpg\"><img class=\"size-thumbnail wp-image-1506\" alt=\"2i\'s-coffee-bar\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar-150x150.jpg\" width=\"150\" height=\"150\" /></a> Photo: http://en.wikipedia.org/[/caption]\r\n\r\n<b>Now the <a href=\"http://en.wikipedia.org/wiki/The_2i\'s_Coffee_Bar\">2I’s Coffee Bar</a> where Jimmie played early on and which was one of the early hotbeds of rock and roll in England, I was reading your description of it, how there was basically one way in and one way out. The musicians had to carry their instruments down the stairs and over their heads to get through the crowd. I can’t even imagine the smoke and the amount of people, and the firetrap situation.</b>\r\n\r\nI wanted to make some of these places as vivid as possible, because I think a lot of people are used to reading novels, fiction, and I thought why not give them the types of descriptions when I have them, of what the scene was like in those days, rather than oh they set up and then they played these songs, then they went here, and then they went there. I really tried to get that, and I think <a href=\"http://en.wikipedia.org/wiki/Vince_Eager\">Vince Eager</a>, who was hanging around those clubs at that time trying to make it, he really provided me with a lot of that feel. Then <a href=\"http://en.wikipedia.org/wiki/Tommy_Steele\">Tommy Steele</a> had written some sort of book, or someone wrote it for him, right after he got famous, and there was some good commentary in there about what it was like in those clubs. And I think there were a couple other artists I interviewed. I really tried to combine all those things to give the reader a feel because that was really the happening place long before <a href=\"http://en.wikipedia.org/wiki/The_Cavern_Club\">The Cavern Club</a> really became the next happening place in Liverpool.\r\n\r\n<b>Were you able to get inside of the 2i\'s, or just see it on the outside?</b>\r\n\r\nI got to the outside, but it was locked up. It’s kind of a landmark, but nobody appears to be using it on any type of regular basis. Once a year, a lot of those old guys who played there, all get together and they open it up and they play a show for their old fans. The other place, The Flamingo, that’s right around the corner and I went in there because now it’s a Chinese fast food restaurant, which is very disappointing. I’m glad they preserved the 2i’s coffee club.\r\n\r\n<b>Well, your description was not lost on the masses because it definitely caught my attention. When you were talking about the width… two and a half arm’s length. This place was tiny. Unbelievable.</b>\r\n\r\nIt is unbelievable. You know I enjoy all those little arcane details. My wife got up to about the third chapter and said I had too many details. But I thought it was fascinating because I don’t think anybody has really written about the first generation of rock and roll I British music. So I thought it was a good way to write about it through Jimmie’s experience.\r\n\r\n<b>When Jimmie was with Vince Eager, they had almost a stage show, with the lights from Jimmie’s drums and the shooting of a pistol. That would never be allowed… a mock shooting.</b>\r\n\r\nI know. With a real gun and blanks.\r\n\r\n<b>Were you ever able to find out why they did a stage show in addition to being a rock and roll band?</b>\r\n\r\nWell, they were coming from a Vaudevillian type era. A lot of these rockers had grown up and seen Vaudeville shows, and in Vince Eager’s case, he was the only artist on the whole roster of artists that would go out on these packaged tours that never had a radio hit. So he felt in order to be more interesting than the other bands that all had hits, that he would play a real variety of music. Some ballads, rock and roll, all types of styles. But he would also add comedic bits, the lighting of the bongo drums. He wanted to make it more of an all-around entertainment, rather than strictly rock and roll. And as a result, he oftentimes blew the other artists off the stage.\r\n\r\n<b>Now when Jimmie got the call from <a href=\"http://en.wikipedia.org/wiki/George_Martin\">George Martin</a>, you could say he was shocked to get the call, but not surprised that he was chosen. He knew his ability, he knew most of the songs, he had the connections, and he was respected. So it wasn’t a surprise to him that he was called. But still, it’s interesting that he would have that reaction, I mean we’re talking The Beatles. And that he would just go back and sit on his couch and put it over in his mind a little bit before he even said anything about it.</b>\r\n\r\nYeah, I thought that was interesting, and again I’m lucky because I have a guy in the room, who was there. So it’s not one of those things where some authors make up the scenarios out of thin air, because it looks and sounds dramatic. But in my case, John Hopkinson was actually there, saw him take the call, and saw him sit there sort of quietly, and after a while sort of exploded saying “do you know who that was? I’m going down to Abbey Road to try out with The Beatles.” It’s fun if you’re lucky enough to ask the right questions, to get the right response.\r\n\r\n<strong>In Part 2 of the interview, Jim Berkenstadt talks about Jimmie Nicol\'s time as a Beatle, how it affected his life, and what became of the man who filled in for the most famous drummer in the world.</strong>\r\n\r\nTo read a review of The Beatle Who Vanished,<a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\"> click here</a>\r\n\r\n ','','','inherit','open','open','','1499-revision-v1','','','2014-01-21 07:50:41','2014-01-21 13:50:41','',1499,'http://www.earthhertzrecords.com/2014/01/1499-revision-v1/',0,'revision','',0),(1514,2,'2014-01-21 10:22:12','2014-01-21 16:22:12','<p style=\"text-align: center;\"><strong><i>You never know where your journey in life will lead, but if you follow your passion…</i></strong></p>\r\n\r\n\r\n[caption id=\"attachment_1503\" align=\"alignleft\" width=\"139\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\"><img class=\" wp-image-1503\" alt=\"jim-berkenstadt-new-book-199x300\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\" width=\"139\" height=\"210\" /></a> Photo of Jim Berkenstadt © Narayan Mayhon[/caption]\r\n\r\nGrowing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually, taking his knowledge of music, he began another career as a writer; first with articles, then books. His favorite subject matter was The Beatles. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame.\r\n\r\nCombining his affection for music with his researching skills, Jim founded <a href=\"http://www.rockandrolldetective.com/\">The Rock and Roll Detective</a>, a company which provides to the entertainment industry, research, writing, and basically the ability to find a needle in a haystack. His research skills proved invaluable while writing his latest book, <i><a href=\"http://www.thebeatlewhovanished.com/\">The Beatle Who Vanished</a>.</i> It is the story of Jimmie Nicol, who replaced Ringo Starr on part of The Beatle’s first world tour. Though he was a Beatle for less than two weeks, Nicol’s life would be forever changed. The story is a fascinating trip from the birth of rock and roll in England through the insanity that was Beatlemania. It follows the trail of a man who would be famous, who never quite was, and who became an enigma, as well as a footnote in musical history.\r\n\r\nAs we approach the 50<sup>th</sup> anniversary of The Beatles coming to the United States, I had the pleasure of speaking with Jim Berkenstadt about his quest to find <em>The Beatle Who Vanished.</em>\r\n\r\n<b>Part 1</b>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Kath Galasso: Before we get into talking about the book, how did you get into the whole research/historian aspect of these rock and roll projects?</b>\r\n\r\nJim Berkenstadt: As a young guy growing up, I would always be the one who would study and learn all the information off the back covers of albums, then later CD booklets. I wanted to know who produced it, who were the session players, what instruments did they play. Almost like kids who learn all the statistics off their favorite baseball player’s trading card, I was learning all this stuff out of a passion to learn more about rock & roll people.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall.gif\"><img class=\"alignright size-thumbnail wp-image-1504\" alt=\"JimmyNicholsCentenialHall\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall-150x150.gif\" width=\"150\" height=\"150\" /></a>Then I pretty much specialized in The Beatles, and over time when The Beatles broke up, I started to collect “lost” recordings of concerts that would leak out. I had over ten hours of The Beatles on the BBC recordings. I started collecting all their solo work, their interviews, and so I became an expert on their recordings, which led me to working with George Harrison and now with Olivia Harrison on a number of projects. From George Harrison, that led me to Apple, where they have asked me to work on various projects. As people wanted to work on various boxed sets, they would hear about me and I would try to help them out by finding lost recordings or video clips, or find a photo of this artist when they were at a show. Another thing that’s really helpful is finding interviews by the artist, especially if the artist has passed away, so that the artists can speak in their own words.\r\n\r\n<b>You researched this book for six years. I’m assuming it wasn’t something you did constantly, but you would go back to it as you found a piece, but how did you keep focus?</b>\r\n\r\n[caption id=\"attachment_1507\" align=\"alignright\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\"><img class=\"size-full wp-image-1507\" alt=\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\" width=\"280\" height=\"179\" /></a> Image (c) Roland Ferneborg[/caption]\r\n\r\nI often did ask myself ‘am I ever going to find all the pieces’ because I don’t want to put the book out unless I do. And there were some big gaps. A year after The Beatles, Jimmie gets a call out of the blue from <a href=\"http://en.wikipedia.org/wiki/The_Spotnicks\">The Spotnicks</a> and played with them for two years, and I was able to document that quite well. I was able to find two or three Spotnicks who were very helpful in providing pictures and actual recordings. They had old listings of concert dates, where they went and what times, so there was really a lot of great information.\r\n\r\nThen they said one night he walked in on a Mexican gig and Jimmie got on a stool and started to play. He was so drugged up, he fell off the stool and their manager fired him. He walked off into the night and vanished. They never saw him again. It was a dead end that I had to sit on for quite a while. So I would set that aside and go work on an area where you know you can get the information and fill it in, or go travel to London and walk in his footsteps… go to the coffeehouses where he started, to the recording studios where he recorded, do all of that footwork. It’s real easy to find stories about Jimmie Nicol attached to The Beatles for that thirteen day period, but it’s very difficult to find many stories about him otherwise. So it did take six years to really accumulate enough newspaper stories.\r\n\r\n<b>I always look at the quirky things of how things happen, and one of the things I found really interesting was even though he wasn’t the first choice to replace Ringo, he was choice number three, but he had the right look, and in fact he was the right size. Who would think that he would need to fit into Ringo’s suits? I just found this so fascinating.</b>\r\n\r\n[caption id=\"attachment_1505\" align=\"alignleft\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\"><img class=\"size-full wp-image-1505\" alt=\"jimmie_nicol_hong_kong_19641-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\" width=\"280\" height=\"179\" /></a> Topham (c) Top Foto Image Works[/caption]\r\n\r\nI did too. This could have been a real glitch in the road for The Beatles if they had to cancel these things, it would have been world-wide news. It would have been seen as a major failure early on in their career. The stars really aligned for The Beatles. They not only found a guy that had started growing a Beatle (hair) cut, and fit into Ringo’s outfits, but also already knew Ringo’s drum parts on two-thirds of their songs. That’s really some good karma.\r\n\r\n[caption id=\"attachment_1506\" align=\"alignright\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar.jpg\"><img class=\"size-thumbnail wp-image-1506\" alt=\"2i\'s-coffee-bar\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar-150x150.jpg\" width=\"150\" height=\"150\" /></a> Photo: http://en.wikipedia.org/[/caption]\r\n\r\n<b>Now the <a href=\"http://en.wikipedia.org/wiki/The_2i\'s_Coffee_Bar\">2I’s Coffee Bar</a> where Jimmie played early on and which was one of the early hotbeds of rock and roll in England, there was basically one way in and one way out. The musicians had to carry their instruments down the stairs and over their heads to get through the crowd. I can’t even imagine the smoke and the amount of people, and the firetrap situation.</b>\r\n\r\nI wanted to make some of these places as vivid as possible, because I think a lot of people are used to reading novels, fiction, and I thought why not give them the types of descriptions when I have them, of what the scene was like in those days, rather than oh they set up and then they played these songs, then they went here, and then they went there. I really tried to get that, and <a href=\"http://en.wikipedia.org/wiki/Vince_Eager\">Vince Eager</a>, who was hanging around those clubs at that time trying to make it, really provided me with a lot of that feel. Then <a href=\"http://en.wikipedia.org/wiki/Tommy_Steele\">Tommy Steele</a> had written some sort of book, or someone wrote it for him, right after he got famous, and there was some good commentary in there about what it was like in those clubs. I really tried to combine all those things to give the reader a feel because that was really the happening place long before <a href=\"http://en.wikipedia.org/wiki/The_Cavern_Club\">The Cavern Club</a> really became the next happening place in Liverpool.\r\n\r\n<b>Were you able to get inside of the 2i\'s, or just see it on the outside?</b>\r\n\r\nI got to the outside, but it was locked up. It’s kind of a landmark, but nobody appears to be using it on any type of regular basis. Once a year, a lot of those old guys who played there, all get together and they open it up and they play a show for their old fans. The other place, The Flamingo, that’s right around the corner and I went in there because now it’s a Chinese fast food restaurant, which is very disappointing. I’m glad they preserved the 2i’s Coffee Bar.\r\n\r\n<b>Well, your description was not lost on the masses because it definitely caught my attention. When you were talking about the width… two and a half arm’s length. This place was tiny. Unbelievable.</b>\r\n\r\nIt is unbelievable. You know I enjoy all those little arcane details. My wife got up to about the third chapter and said I had too many details. But I thought it was fascinating because I don’t think anybody has really written about the first generation of rock and roll in British music. So I thought it was a good way to write about it through Jimmie’s experience.\r\n\r\n<b>When Jimmie was with Vince Eager, they had almost a stage show, with the lights from Jimmie’s drums and the shooting of a pistol. That would never be allowed… a mock shooting.</b>\r\n\r\nI know. With a real gun and blanks.\r\n\r\n<b>Were you ever able to find out why they did a stage show in addition to being a rock and roll band?</b>\r\n\r\nWell, they were coming from a Vaudevillian type era. A lot of these rockers had grown up and seen Vaudeville shows, and in Vince Eager’s case, he was the only artist on the whole roster of artists that would go out on these packaged tours, that never had a radio hit. So he felt in order to be more interesting than the other bands that all had hits, he would play a real variety of music. Some ballads, rock and roll, all types of styles. But he would also add comedic bits, like the lighting of the bongo drums. He wanted to make it more of an all-around entertainment, rather than strictly rock and roll. And as a result, he oftentimes blew the other artists off the stage.\r\n\r\n<b>Now when Jimmie got the call from <a href=\"http://en.wikipedia.org/wiki/George_Martin\">George Martin</a>, you could say he was shocked to get the call, but not surprised that he was chosen. He knew his ability, he knew most of the songs, he had the connections, and he was respected. But still, it’s interesting he would have that reaction, I mean we’re talking about <em>The Beatles</em>. And that he would just go back, sit on his couch and mull it over in his mind a little bit before he even said anything about it.</b>\r\n\r\nYeah, I thought that was interesting, and again I’m lucky because I have a guy in the room, who was there. So it’s not one of those things where some authors make up the scenarios out of thin air, because it looks and sounds dramatic. In my case, John Hopkinson was actually there, saw him take the call, and saw him sit there sort of quietly, and after a while sort of exploded saying “do you know who that was? I’m going down to Abbey Road to try out with The Beatles.” It’s fun if you’re lucky enough to ask the right questions, to get the right response.\r\n\r\n<strong>In Part 2 of the interview, Jim Berkenstadt talks about Jimmie Nicol\'s time as a Beatle, how it affected his life, and what became of the man who filled in for the most famous drummer in the world.</strong>\r\n\r\nTo read a review of The Beatle Who Vanished,<a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\"> click here</a>\r\n\r\n<iframe width=\"420\" height=\"315\" src=\"//www.youtube.com/embed/qumXROSOFJE\" frameborder=\"0\" allowfullscreen></iframe>\r\n\r\n<iframe width=\"420\" height=\"315\" src=\"//www.youtube.com/embed/qHuTMAXOrsM\" frameborder=\"0\" allowfullscreen></iframe>\r\n','Author Jim Berkenstadt Talks About \"The Beatle Who Vanished\"','','inherit','open','open','','1499-revision-v1','','','2014-01-21 10:22:12','2014-01-21 16:22:12','',1499,'http://www.earthhertzrecords.com/2014/01/1499-revision-v1/',0,'revision','',0),(1512,2,'2014-01-21 10:02:40','2014-01-21 16:02:40','<p style=\"text-align: center;\"><strong><i>Many times in life, you just never know where your journey will lead, but if you follow your passion…</i></strong></p>\r\n\r\n\r\n[caption id=\"attachment_1503\" align=\"alignleft\" width=\"139\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\"><img class=\" wp-image-1503\" alt=\"jim-berkenstadt-new-book-199x300\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\" width=\"139\" height=\"210\" /></a> Photo of Jim Berkenstadt © Narayan Mayhon[/caption]\r\n\r\nGrowing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually, taking his knowledge of music, he began another career as a writer; first with articles, then books. His favorite subject matter was The Beatles. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame.\r\n\r\nCombining his affection for music with his researching skills, Jim founded <a href=\"http://www.rockandrolldetective.com/\">The Rock and Roll Detective</a>, a company which provides to the entertainment industry, research, writing, and basically the ability to find a needle in a haystack. His research skills proved invaluable while writing his latest book, <i><a href=\"http://www.thebeatlewhovanished.com/\">The Beatle Who Vanished</a>.</i> It is the story of Jimmie Nicol, who replaced Ringo Starr on part of The Beatle’s first world tour. Though he was a Beatle for less than two weeks, Nicol’s life would be forever changed. The story is a fascinating trip from the birth of rock and roll in England through the insanity that was Beatlemania. It follows the trail of a man who would be famous, who never quite was, and who became both an enigma, as well as a footnote in musical history.\r\n\r\nAs we approach the 50<sup>th</sup> anniversary of The Beatles coming to the United States, I had the pleasure of speaking with Jim Berkenstadt about his quest to find <em>The Beatle Who Vanished.</em>\r\n\r\n<b>Part 1</b>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Kath Galasso: Before we get into talking about the book, how did you get into the whole research/historian aspect of these rock and roll projects?</b>\r\n\r\nJim Berkenstadt: As a young guy growing up, I would always be the one who would study and learn all the information off the back covers of albums, then later CD booklets. I wanted to know who produced it, who were the session players, what instruments did they play. Almost like kids who learn all the statistics off their favorite baseball player’s trading card, I was learning all this stuff out of a passion to learn more about rock & roll people. It was interesting to notice that once people found other musicians they were comfortable with, whether they had a full band or they used session players, they would tend to use the same groupings of people over again.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall.gif\"><img class=\"alignright size-thumbnail wp-image-1504\" alt=\"JimmyNicholsCentenialHall\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall-150x150.gif\" width=\"150\" height=\"150\" /></a>Then I pretty much specialized in The Beatles, and over time when The Beatles broke up, I started to collect “lost” recordings of concerts that would leak out. I had over ten hours of The Beatles on the BBC recordings. I started collecting all their solo work, their interviews, and so I became an expert on their recordings, which led me to working with George Harrison and now with Olivia Harrison on a number of projects. From George Harrison, that led me to Apple, where they have asked me to work on various projects. As people wanted to work on various boxed sets and things, they would hear about me and I would try to help them out by finding lost recordings or video clips, or find a photo of this artist when they were at a show. Another thing that’s really helpful is finding interviews by the artist, especially if the artist has passed away. So that that artists can speak in their own words.\r\n\r\n<b>You researched this book for six years. I’m assuming it wasn’t something you did constantly, but you would go back to it as you found a piece, but how did you keep focus?</b>\r\n\r\n[caption id=\"attachment_1507\" align=\"alignright\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\"><img class=\"size-full wp-image-1507\" alt=\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\" width=\"280\" height=\"179\" /></a> Image (c) Roland Ferneborg[/caption]\r\n\r\nI often did ask myself ‘am I ever going to find all the pieces’ because I don’t want to put the book out unless I do. And there were some big gaps. A year after The Beatles, Jimmie gets a call out of the blue from <a href=\"http://en.wikipedia.org/wiki/The_Spotnicks\">The Spotnicks</a> and played with them for two years, and I was able to document that quite well. I was able to find two or three Spotnicks who were very helpful in providing pictures and actual recordings. They had old listings of concert dates, where they went and what times, so there was really a lot of great information.\r\n\r\nThen they said one night he walked in on a Mexican gig and Jimmie got on a stool and started to play. He was so drugged up, he fell off the stool and their manager fired him. He walked off into the night and vanished. They never saw him again. It was a dead end that I had to sit on for quite a while. So I would set that aside and go work on an area where you know you can get the information and fill it in, or go travel to London and walk in his footsteps… go to the coffeehouses where he started, to the recording studios where he recorded, do all of that footwork. It’s real easy to find stories about Jimmie Nichol attached to The Beatles for that thirteen day period, but it’s very difficult to find many stories about him otherwise. So it did take six years to really accumulate enough newspaper stories.\r\n\r\n<b>I always look at the quirky things of how things happen, and one of the things I found really interesting was even though he wasn’t the first choice to replace Ringo, he was choice number three, but he had the right look, and in fact he was the right size. Who would think that he would need to fit into Ringo’s suits? I just found this so fascinating.</b>\r\n\r\n[caption id=\"attachment_1505\" align=\"alignleft\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\"><img class=\"size-full wp-image-1505\" alt=\"jimmie_nicol_hong_kong_19641-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\" width=\"280\" height=\"179\" /></a> Topham (c) Top Foto Image Works[/caption]\r\n\r\nI did too. This could have been a real glitch in the road for The Beatles if they had to cancel these things, it would have been world-wide news. It would have been seen as a major failure early on in their career. I thought, boy, the stars really aligned for The Beatles. They not only found a guy that had started growing a Beatle (hair) cut, and fit into Ringo’s outfits, but also already knew Ringo’s drum parts on two-thirds of their songs. That’s really some good karma.\r\n\r\n[caption id=\"attachment_1506\" align=\"alignright\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar.jpg\"><img class=\"size-thumbnail wp-image-1506\" alt=\"2i\'s-coffee-bar\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar-150x150.jpg\" width=\"150\" height=\"150\" /></a> Photo: http://en.wikipedia.org/[/caption]\r\n\r\n<b>Now the <a href=\"http://en.wikipedia.org/wiki/The_2i\'s_Coffee_Bar\">2I’s Coffee Bar</a> where Jimmie played early on and which was one of the early hotbeds of rock and roll in England, I was reading your description of it, how there was basically one way in and one way out. The musicians had to carry their instruments down the stairs and over their heads to get through the crowd. I can’t even imagine the smoke and the amount of people, and the firetrap situation.</b>\r\n\r\nI wanted to make some of these places as vivid as possible, because I think a lot of people are used to reading novels, fiction, and I thought why not give them the types of descriptions when I have them, of what the scene was like in those days, rather than oh they set up and then they played these songs, then they went here, and then they went there. I really tried to get that, and <a href=\"http://en.wikipedia.org/wiki/Vince_Eager\">Vince Eager</a>, who was hanging around those clubs at that time trying to make it, really provided me with a lot of that feel. Then <a href=\"http://en.wikipedia.org/wiki/Tommy_Steele\">Tommy Steele</a> had written some sort of book, or someone wrote it for him, right after he got famous, and there was some good commentary in there about what it was like in those clubs. I really tried to combine all those things to give the reader a feel because that was really the happening place long before <a href=\"http://en.wikipedia.org/wiki/The_Cavern_Club\">The Cavern Club</a> really became the next happening place in Liverpool.\r\n\r\n<b>Were you able to get inside of the 2i\'s, or just see it on the outside?</b>\r\n\r\nI got to the outside, but it was locked up. It’s kind of a landmark, but nobody appears to be using it on any type of regular basis. Once a year, a lot of those old guys who played there, all get together and they open it up and they play a show for their old fans. The other place, The Flamingo, that’s right around the corner and I went in there because now it’s a Chinese fast food restaurant, which is very disappointing. I’m glad they preserved the 2i’s Coffee Bar.\r\n\r\n<b>Well, your description was not lost on the masses because it definitely caught my attention. When you were talking about the width… two and a half arm’s length. This place was tiny. Unbelievable.</b>\r\n\r\nIt is unbelievable. You know I enjoy all those little arcane details. My wife got up to about the third chapter and said I had too many details. But I thought it was fascinating because I don’t think anybody has really written about the first generation of rock and roll in British music. So I thought it was a good way to write about it through Jimmie’s experience.\r\n\r\n<b>When Jimmie was with Vince Eager, they had almost a stage show, with the lights from Jimmie’s drums and the shooting of a pistol. That would never be allowed… a mock shooting.</b>\r\n\r\nI know. With a real gun and blanks.\r\n\r\n<b>Were you ever able to find out why they did a stage show in addition to being a rock and roll band?</b>\r\n\r\nWell, they were coming from a Vaudevillian type era. A lot of these rockers had grown up and seen Vaudeville shows, and in Vince Eager’s case, he was the only artist on the whole roster of artists that would go out on these packaged tours that never had a radio hit. So he felt in order to be more interesting than the other bands that all had hits, that he would play a real variety of music. Some ballads, rock and roll, all types of styles. But he would also add comedic bits, the lighting of the bongo drums. He wanted to make it more of an all-around entertainment, rather than strictly rock and roll. And as a result, he oftentimes blew the other artists off the stage.\r\n\r\n<b>Now when Jimmie got the call from <a href=\"http://en.wikipedia.org/wiki/George_Martin\">George Martin</a>, you could say he was shocked to get the call, but not surprised that he was chosen. He knew his ability, he knew most of the songs, he had the connections, and he was respected. So it wasn’t a surprise to him that he was called. But still, it’s interesting that he would have that reaction, I mean we’re talking <em>The Beatles</em>. And that he would just go back, sit on his couch and mull it over in his mind a little bit before he even said anything about it.</b>\r\n\r\nYeah, I thought that was interesting, and again I’m lucky because I have a guy in the room, who was there. So it’s not one of those things where some authors make up the scenarios out of thin air, because it looks and sounds dramatic. In my case, John Hopkinson was actually there, saw him take the call, and saw him sit there sort of quietly, and after a while sort of exploded saying “do you know who that was? I’m going down to Abbey Road to try out with The Beatles.” It’s fun if you’re lucky enough to ask the right questions, to get the right response.\r\n\r\n<strong>In Part 2 of the interview, Jim Berkenstadt talks about Jimmie Nicol\'s time as a Beatle, how it affected his life, and what became of the man who filled in for the most famous drummer in the world.</strong>\r\n\r\nTo read a review of The Beatle Who Vanished,<a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\"> click here</a>\r\n\r\n ','Author Jim Berkenstadt Talks About \"The Beatle Who Vanished\"','','inherit','open','open','','1499-revision-v1','','','2014-01-21 10:02:40','2014-01-21 16:02:40','',1499,'http://www.earthhertzrecords.com/2014/01/1499-revision-v1/',0,'revision','',0),(1513,2,'2014-01-21 10:04:04','2014-01-21 16:04:04','<p style=\"text-align: center;\"><strong><i>You never know where your journey in life will lead, but if you follow your passion…</i></strong></p>\r\n\r\n\r\n[caption id=\"attachment_1503\" align=\"alignleft\" width=\"139\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\"><img class=\" wp-image-1503\" alt=\"jim-berkenstadt-new-book-199x300\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\" width=\"139\" height=\"210\" /></a> Photo of Jim Berkenstadt © Narayan Mayhon[/caption]\r\n\r\nGrowing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually, taking his knowledge of music, he began another career as a writer; first with articles, then books. His favorite subject matter was The Beatles. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame.\r\n\r\nCombining his affection for music with his researching skills, Jim founded <a href=\"http://www.rockandrolldetective.com/\">The Rock and Roll Detective</a>, a company which provides to the entertainment industry, research, writing, and basically the ability to find a needle in a haystack. His research skills proved invaluable while writing his latest book, <i><a href=\"http://www.thebeatlewhovanished.com/\">The Beatle Who Vanished</a>.</i> It is the story of Jimmie Nicol, who replaced Ringo Starr on part of The Beatle’s first world tour. Though he was a Beatle for less than two weeks, Nicol’s life would be forever changed. The story is a fascinating trip from the birth of rock and roll in England through the insanity that was Beatlemania. It follows the trail of a man who would be famous, who never quite was, and who became both an enigma, as well as a footnote in musical history.\r\n\r\nAs we approach the 50<sup>th</sup> anniversary of The Beatles coming to the United States, I had the pleasure of speaking with Jim Berkenstadt about his quest to find <em>The Beatle Who Vanished.</em>\r\n\r\n<b>Part 1</b>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Kath Galasso: Before we get into talking about the book, how did you get into the whole research/historian aspect of these rock and roll projects?</b>\r\n\r\nJim Berkenstadt: As a young guy growing up, I would always be the one who would study and learn all the information off the back covers of albums, then later CD booklets. I wanted to know who produced it, who were the session players, what instruments did they play. Almost like kids who learn all the statistics off their favorite baseball player’s trading card, I was learning all this stuff out of a passion to learn more about rock & roll people. It was interesting to notice that once people found other musicians they were comfortable with, whether they had a full band or they used session players, they would tend to use the same groupings of people over again.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall.gif\"><img class=\"alignright size-thumbnail wp-image-1504\" alt=\"JimmyNicholsCentenialHall\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall-150x150.gif\" width=\"150\" height=\"150\" /></a>Then I pretty much specialized in The Beatles, and over time when The Beatles broke up, I started to collect “lost” recordings of concerts that would leak out. I had over ten hours of The Beatles on the BBC recordings. I started collecting all their solo work, their interviews, and so I became an expert on their recordings, which led me to working with George Harrison and now with Olivia Harrison on a number of projects. From George Harrison, that led me to Apple, where they have asked me to work on various projects. As people wanted to work on various boxed sets and things, they would hear about me and I would try to help them out by finding lost recordings or video clips, or find a photo of this artist when they were at a show. Another thing that’s really helpful is finding interviews by the artist, especially if the artist has passed away. So that that artists can speak in their own words.\r\n\r\n<b>You researched this book for six years. I’m assuming it wasn’t something you did constantly, but you would go back to it as you found a piece, but how did you keep focus?</b>\r\n\r\n[caption id=\"attachment_1507\" align=\"alignright\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\"><img class=\"size-full wp-image-1507\" alt=\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\" width=\"280\" height=\"179\" /></a> Image (c) Roland Ferneborg[/caption]\r\n\r\nI often did ask myself ‘am I ever going to find all the pieces’ because I don’t want to put the book out unless I do. And there were some big gaps. A year after The Beatles, Jimmie gets a call out of the blue from <a href=\"http://en.wikipedia.org/wiki/The_Spotnicks\">The Spotnicks</a> and played with them for two years, and I was able to document that quite well. I was able to find two or three Spotnicks who were very helpful in providing pictures and actual recordings. They had old listings of concert dates, where they went and what times, so there was really a lot of great information.\r\n\r\nThen they said one night he walked in on a Mexican gig and Jimmie got on a stool and started to play. He was so drugged up, he fell off the stool and their manager fired him. He walked off into the night and vanished. They never saw him again. It was a dead end that I had to sit on for quite a while. So I would set that aside and go work on an area where you know you can get the information and fill it in, or go travel to London and walk in his footsteps… go to the coffeehouses where he started, to the recording studios where he recorded, do all of that footwork. It’s real easy to find stories about Jimmie Nichol attached to The Beatles for that thirteen day period, but it’s very difficult to find many stories about him otherwise. So it did take six years to really accumulate enough newspaper stories.\r\n\r\n<b>I always look at the quirky things of how things happen, and one of the things I found really interesting was even though he wasn’t the first choice to replace Ringo, he was choice number three, but he had the right look, and in fact he was the right size. Who would think that he would need to fit into Ringo’s suits? I just found this so fascinating.</b>\r\n\r\n[caption id=\"attachment_1505\" align=\"alignleft\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\"><img class=\"size-full wp-image-1505\" alt=\"jimmie_nicol_hong_kong_19641-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\" width=\"280\" height=\"179\" /></a> Topham (c) Top Foto Image Works[/caption]\r\n\r\nI did too. This could have been a real glitch in the road for The Beatles if they had to cancel these things, it would have been world-wide news. It would have been seen as a major failure early on in their career. I thought, boy, the stars really aligned for The Beatles. They not only found a guy that had started growing a Beatle (hair) cut, and fit into Ringo’s outfits, but also already knew Ringo’s drum parts on two-thirds of their songs. That’s really some good karma.\r\n\r\n[caption id=\"attachment_1506\" align=\"alignright\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar.jpg\"><img class=\"size-thumbnail wp-image-1506\" alt=\"2i\'s-coffee-bar\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar-150x150.jpg\" width=\"150\" height=\"150\" /></a> Photo: http://en.wikipedia.org/[/caption]\r\n\r\n<b>Now the <a href=\"http://en.wikipedia.org/wiki/The_2i\'s_Coffee_Bar\">2I’s Coffee Bar</a> where Jimmie played early on and which was one of the early hotbeds of rock and roll in England, I was reading your description of it, how there was basically one way in and one way out. The musicians had to carry their instruments down the stairs and over their heads to get through the crowd. I can’t even imagine the smoke and the amount of people, and the firetrap situation.</b>\r\n\r\nI wanted to make some of these places as vivid as possible, because I think a lot of people are used to reading novels, fiction, and I thought why not give them the types of descriptions when I have them, of what the scene was like in those days, rather than oh they set up and then they played these songs, then they went here, and then they went there. I really tried to get that, and <a href=\"http://en.wikipedia.org/wiki/Vince_Eager\">Vince Eager</a>, who was hanging around those clubs at that time trying to make it, really provided me with a lot of that feel. Then <a href=\"http://en.wikipedia.org/wiki/Tommy_Steele\">Tommy Steele</a> had written some sort of book, or someone wrote it for him, right after he got famous, and there was some good commentary in there about what it was like in those clubs. I really tried to combine all those things to give the reader a feel because that was really the happening place long before <a href=\"http://en.wikipedia.org/wiki/The_Cavern_Club\">The Cavern Club</a> really became the next happening place in Liverpool.\r\n\r\n<b>Were you able to get inside of the 2i\'s, or just see it on the outside?</b>\r\n\r\nI got to the outside, but it was locked up. It’s kind of a landmark, but nobody appears to be using it on any type of regular basis. Once a year, a lot of those old guys who played there, all get together and they open it up and they play a show for their old fans. The other place, The Flamingo, that’s right around the corner and I went in there because now it’s a Chinese fast food restaurant, which is very disappointing. I’m glad they preserved the 2i’s Coffee Bar.\r\n\r\n<b>Well, your description was not lost on the masses because it definitely caught my attention. When you were talking about the width… two and a half arm’s length. This place was tiny. Unbelievable.</b>\r\n\r\nIt is unbelievable. You know I enjoy all those little arcane details. My wife got up to about the third chapter and said I had too many details. But I thought it was fascinating because I don’t think anybody has really written about the first generation of rock and roll in British music. So I thought it was a good way to write about it through Jimmie’s experience.\r\n\r\n<b>When Jimmie was with Vince Eager, they had almost a stage show, with the lights from Jimmie’s drums and the shooting of a pistol. That would never be allowed… a mock shooting.</b>\r\n\r\nI know. With a real gun and blanks.\r\n\r\n<b>Were you ever able to find out why they did a stage show in addition to being a rock and roll band?</b>\r\n\r\nWell, they were coming from a Vaudevillian type era. A lot of these rockers had grown up and seen Vaudeville shows, and in Vince Eager’s case, he was the only artist on the whole roster of artists that would go out on these packaged tours that never had a radio hit. So he felt in order to be more interesting than the other bands that all had hits, that he would play a real variety of music. Some ballads, rock and roll, all types of styles. But he would also add comedic bits, the lighting of the bongo drums. He wanted to make it more of an all-around entertainment, rather than strictly rock and roll. And as a result, he oftentimes blew the other artists off the stage.\r\n\r\n<b>Now when Jimmie got the call from <a href=\"http://en.wikipedia.org/wiki/George_Martin\">George Martin</a>, you could say he was shocked to get the call, but not surprised that he was chosen. He knew his ability, he knew most of the songs, he had the connections, and he was respected. So it wasn’t a surprise to him that he was called. But still, it’s interesting that he would have that reaction, I mean we’re talking <em>The Beatles</em>. And that he would just go back, sit on his couch and mull it over in his mind a little bit before he even said anything about it.</b>\r\n\r\nYeah, I thought that was interesting, and again I’m lucky because I have a guy in the room, who was there. So it’s not one of those things where some authors make up the scenarios out of thin air, because it looks and sounds dramatic. In my case, John Hopkinson was actually there, saw him take the call, and saw him sit there sort of quietly, and after a while sort of exploded saying “do you know who that was? I’m going down to Abbey Road to try out with The Beatles.” It’s fun if you’re lucky enough to ask the right questions, to get the right response.\r\n\r\n<strong>In Part 2 of the interview, Jim Berkenstadt talks about Jimmie Nicol\'s time as a Beatle, how it affected his life, and what became of the man who filled in for the most famous drummer in the world.</strong>\r\n\r\nTo read a review of The Beatle Who Vanished,<a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\"> click here</a>\r\n\r\n ','Author Jim Berkenstadt Talks About \"The Beatle Who Vanished\"','','inherit','open','open','','1499-revision-v1','','','2014-01-21 10:04:04','2014-01-21 16:04:04','',1499,'http://www.earthhertzrecords.com/2014/01/1499-revision-v1/',0,'revision','',0),(1515,2,'2014-01-21 10:27:06','2014-01-21 16:27:06','<p style=\"text-align: center;\"><strong><i>You never know where your journey in life will lead, but if you follow your passion…</i></strong></p>\r\n\r\n\r\n[caption id=\"attachment_1503\" align=\"alignleft\" width=\"139\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\"><img class=\" wp-image-1503\" alt=\"jim-berkenstadt-new-book-199x300\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\" width=\"139\" height=\"210\" /></a> Photo of Jim Berkenstadt © Narayan Mayhon[/caption]\r\n\r\nGrowing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually, taking his knowledge of music, he began another career as a writer; first with articles, then books. His favorite subject matter was The Beatles. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame.\r\n\r\nCombining his affection for music with his researching skills, Jim founded <a href=\"http://www.rockandrolldetective.com/\">The Rock and Roll Detective</a>, a company which provides to the entertainment industry, research, writing, and basically the ability to find a needle in a haystack. His research skills proved invaluable while writing his latest book, <i><a href=\"http://www.thebeatlewhovanished.com/\">The Beatle Who Vanished</a>.</i> It is the story of Jimmie Nicol, who replaced Ringo Starr on part of The Beatle’s first world tour. Though he was a Beatle for less than two weeks, Nicol’s life would be forever changed. The story is a fascinating trip from the birth of rock and roll in England through the insanity that was Beatlemania. It follows the trail of a man who would be famous, who never quite was, and who became an enigma, as well as a footnote in musical history.\r\n\r\nAs we approach the 50<sup>th</sup> anniversary of The Beatles coming to the United States, I had the pleasure of speaking with Jim Berkenstadt about his quest to find <em>The Beatle Who Vanished.</em>\r\n\r\n<b>Part 1</b>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Kath Galasso: Before we get into talking about the book, how did you get into the whole research/historian aspect of these rock and roll projects?</b>\r\n\r\nJim Berkenstadt: As a young guy growing up, I would always be the one who would study and learn all the information off the back covers of albums, then later CD booklets. I wanted to know who produced it, who were the session players, what instruments did they play. Almost like kids who learn all the statistics off their favorite baseball player’s trading card, I was learning all this stuff out of a passion to learn more about rock & roll people.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall.gif\"><img class=\"alignright size-thumbnail wp-image-1504\" alt=\"JimmyNicholsCentenialHall\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall-150x150.gif\" width=\"150\" height=\"150\" /></a>Then I pretty much specialized in The Beatles, and over time when The Beatles broke up, I started to collect “lost” recordings of concerts that would leak out. I had over ten hours of The Beatles on the BBC recordings. I started collecting all their solo work, their interviews, and so I became an expert on their recordings, which led me to working with George Harrison and now with Olivia Harrison on a number of projects. From George Harrison, that led me to Apple, where they have asked me to work on various projects. As people wanted to work on various boxed sets, they would hear about me and I would try to help them out by finding lost recordings or video clips, or find a photo of this artist when they were at a show. Another thing that’s really helpful is finding interviews by the artist, especially if the artist has passed away, so that the artists can speak in their own words.\r\n\r\n<b>You researched this book for six years. I’m assuming it wasn’t something you did constantly, but you would go back to it as you found a piece, but how did you keep focus?</b>\r\n\r\n[caption id=\"attachment_1507\" align=\"alignright\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\"><img class=\"size-full wp-image-1507\" alt=\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\" width=\"280\" height=\"179\" /></a> Image (c) Roland Ferneborg[/caption]\r\n\r\nI often did ask myself ‘am I ever going to find all the pieces’ because I don’t want to put the book out unless I do. And there were some big gaps. A year after The Beatles, Jimmie gets a call out of the blue from <a href=\"http://en.wikipedia.org/wiki/The_Spotnicks\">The Spotnicks</a> and played with them for two years, and I was able to document that quite well. I was able to find two or three Spotnicks who were very helpful in providing pictures and actual recordings. They had old listings of concert dates, where they went and what times, so there was really a lot of great information.\r\n\r\nThen they said one night he walked in on a Mexican gig and Jimmie got on a stool and started to play. He was so drugged up, he fell off the stool and their manager fired him. He walked off into the night and vanished. They never saw him again. It was a dead end that I had to sit on for quite a while. So I would set that aside and go work on an area where you know you can get the information and fill it in, or go travel to London and walk in his footsteps… go to the coffeehouses where he started, to the recording studios where he recorded, do all of that footwork. It’s real easy to find stories about Jimmie Nicol attached to The Beatles for that thirteen day period, but it’s very difficult to find many stories about him otherwise. So it did take six years to really accumulate enough newspaper stories.\r\n\r\n<b>I always look at the quirky things of how things happen, and one of the things I found really interesting was even though he wasn’t the first choice to replace Ringo, he was choice number three, but he had the right look, and in fact he was the right size. Who would think that he would need to fit into Ringo’s suits? I just found this so fascinating.</b>\r\n\r\n[caption id=\"attachment_1505\" align=\"alignleft\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\"><img class=\"size-full wp-image-1505\" alt=\"jimmie_nicol_hong_kong_19641-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\" width=\"280\" height=\"179\" /></a> Topham (c) Top Foto Image Works[/caption]\r\n\r\nI did too. This could have been a real glitch in the road for The Beatles if they had to cancel these things, it would have been world-wide news. It would have been seen as a major failure early on in their career. The stars really aligned for The Beatles. They not only found a guy that had started growing a Beatle (hair) cut, and fit into Ringo’s outfits, but also already knew Ringo’s drum parts on two-thirds of their songs. That’s really some good karma.\r\n\r\n[caption id=\"attachment_1506\" align=\"alignright\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar.jpg\"><img class=\"size-thumbnail wp-image-1506\" alt=\"2i\'s-coffee-bar\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar-150x150.jpg\" width=\"150\" height=\"150\" /></a> Photo: http://en.wikipedia.org/[/caption]\r\n\r\n<b>Now the <a href=\"http://en.wikipedia.org/wiki/The_2i\'s_Coffee_Bar\">2I’s Coffee Bar</a> where Jimmie played early on and which was one of the early hotbeds of rock and roll in England, there was basically one way in and one way out. The musicians had to carry their instruments down the stairs and over their heads to get through the crowd. I can’t even imagine the smoke and the amount of people, and the firetrap situation.</b>\r\n\r\nI wanted to make some of these places as vivid as possible, because I think a lot of people are used to reading novels, fiction, and I thought why not give them the types of descriptions when I have them, of what the scene was like in those days, rather than oh they set up and then they played these songs, then they went here, and then they went there. I really tried to get that, and <a href=\"http://en.wikipedia.org/wiki/Vince_Eager\">Vince Eager</a>, who was hanging around those clubs at that time trying to make it, really provided me with a lot of that feel. Then <a href=\"http://en.wikipedia.org/wiki/Tommy_Steele\">Tommy Steele</a> had written some sort of book, or someone wrote it for him, right after he got famous, and there was some good commentary in there about what it was like in those clubs. I really tried to combine all those things to give the reader a feel because that was really the happening place long before <a href=\"http://en.wikipedia.org/wiki/The_Cavern_Club\">The Cavern Club</a> really became the next happening place in Liverpool.\r\n\r\n<b>Were you able to get inside of the 2i\'s, or just see it on the outside?</b>\r\n\r\nI got to the outside, but it was locked up. It’s kind of a landmark, but nobody appears to be using it on any type of regular basis. Once a year, a lot of those old guys who played there, all get together and they open it up and they play a show for their old fans. The other place, The Flamingo, that’s right around the corner and I went in there because now it’s a Chinese fast food restaurant, which is very disappointing. I’m glad they preserved the 2i’s Coffee Bar.\r\n\r\n<b>Well, your description was not lost on the masses because it definitely caught my attention. When you were talking about the width… two and a half arm’s length. This place was tiny. Unbelievable.</b>\r\n\r\nIt is unbelievable. You know I enjoy all those little arcane details. My wife got up to about the third chapter and said I had too many details. But I thought it was fascinating because I don’t think anybody has really written about the first generation of rock and roll in British music. So I thought it was a good way to write about it through Jimmie’s experience.\r\n\r\n<b>When Jimmie was with Vince Eager, they had almost a stage show, with the lights from Jimmie’s drums and the shooting of a pistol. That would never be allowed… a mock shooting.</b>\r\n\r\nI know. With a real gun and blanks.\r\n\r\n<b>Were you ever able to find out why they did a stage show in addition to being a rock and roll band?</b>\r\n\r\nWell, they were coming from a Vaudevillian type era. A lot of these rockers had grown up and seen Vaudeville shows, and in Vince Eager’s case, he was the only artist on the whole roster of artists that would go out on these packaged tours, that never had a radio hit. So he felt in order to be more interesting than the other bands that all had hits, he would play a real variety of music. Some ballads, rock and roll, all types of styles. But he would also add comedic bits, like the lighting of the bongo drums. He wanted to make it more of an all-around entertainment, rather than strictly rock and roll. And as a result, he oftentimes blew the other artists off the stage.\r\n\r\n<b>Now when Jimmie got the call from <a href=\"http://en.wikipedia.org/wiki/George_Martin\">George Martin</a>, you could say he was shocked to get the call, but not surprised that he was chosen. He knew his ability, he knew most of the songs, he had the connections, and he was respected. But still, it’s interesting he would have that reaction, I mean we’re talking about <em>The Beatles</em>. And that he would just go back, sit on his couch and mull it over in his mind a little bit before he even said anything about it.</b>\r\n\r\nYeah, I thought that was interesting, and again I’m lucky because I have a guy in the room, who was there. So it’s not one of those things where some authors make up the scenarios out of thin air, because it looks and sounds dramatic. In my case, John Hopkinson was actually there, saw him take the call, and saw him sit there sort of quietly, and after a while sort of exploded saying “do you know who that was? I’m going down to Abbey Road to try out with The Beatles.” It’s fun if you’re lucky enough to ask the right questions, to get the right response.\r\n\r\n<strong>In Part 2 of the interview, Jim Berkenstadt talks about Jimmie Nicol\'s time as a Beatle, how it affected his life, and what became of the man who filled in for the most famous drummer in the world.</strong>\r\n\r\nTo read a review of The Beatle Who Vanished,<a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\"> click here</a>\r\n\r\n<iframe src=\"//www.youtube.com/embed/qumXROSOFJE\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n<iframe src=\"//www.youtube.com/embed/qHuTMAXOrsM\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Author Jim Berkenstadt Talks About \"The Beatle Who Vanished\"','','inherit','open','open','','1499-revision-v1','','','2014-01-21 10:27:06','2014-01-21 16:27:06','',1499,'http://www.earthhertzrecords.com/2014/01/1499-revision-v1/',0,'revision','',0),(1516,2,'2014-01-21 10:30:23','2014-01-21 16:30:23','<p style=\"text-align: center;\"><strong><i>You never know where your journey in life will lead, but if you follow your passion…</i></strong></p>\r\n\r\n\r\n[caption id=\"attachment_1503\" align=\"alignleft\" width=\"139\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\"><img class=\" wp-image-1503\" alt=\"jim-berkenstadt-new-book-199x300\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\" width=\"139\" height=\"210\" /></a> Photo of Jim Berkenstadt © Narayan Mayhon[/caption]\r\n\r\nGrowing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually, taking his knowledge of music, he began another career as a writer; first with articles, then books. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame. However, his favorite subject matter was The Beatles, and that interest would lay the foundation for another career path.\r\n\r\nCombining his affection for music with his researching skills, Jim founded <a href=\"http://www.rockandrolldetective.com/\">The Rock and Roll Detective</a>, a company which provides to the entertainment industry, research, writing, and basically the ability to find a needle in a haystack. His research skills proved invaluable while writing his latest book, <i><a href=\"http://www.thebeatlewhovanished.com/\">The Beatle Who Vanished</a>.</i> It is the story of Jimmie Nicol, who replaced Ringo Starr on part of The Beatle’s first world tour. Though he was a Beatle for less than two weeks, Nicol’s life would be forever changed. The story is a fascinating trip from the birth of rock and roll in England through the insanity that was Beatlemania. It follows the trail of a man who would be famous, who never quite was, and who became an enigma, as well as a footnote in musical history.\r\n\r\nAs we approach the 50<sup>th</sup> anniversary of The Beatles coming to the United States, I had the pleasure of speaking with Jim Berkenstadt about his quest to find <em>The Beatle Who Vanished.</em>\r\n\r\n<b>Part 1</b>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Kath Galasso: Before we get into talking about the book, how did you get into the whole research/historian aspect of these rock and roll projects?</b>\r\n\r\nJim Berkenstadt: As a young guy growing up, I would always be the one who would study and learn all the information off the back covers of albums, then later CD booklets. I wanted to know who produced it, who were the session players, what instruments did they play. Almost like kids who learn all the statistics off their favorite baseball player’s trading card, I was learning all this stuff out of a passion to learn more about rock & roll people.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall.gif\"><img class=\"alignright size-thumbnail wp-image-1504\" alt=\"JimmyNicholsCentenialHall\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall-150x150.gif\" width=\"150\" height=\"150\" /></a>Then I pretty much specialized in The Beatles, and over time when The Beatles broke up, I started to collect “lost” recordings of concerts that would leak out. I had over ten hours of The Beatles on the BBC recordings. I started collecting all their solo work, their interviews, and so I became an expert on their recordings, which led me to working with George Harrison and now with Olivia Harrison on a number of projects. From George Harrison, that led me to Apple, where they have asked me to work on various projects. As people wanted to work on various boxed sets, they would hear about me and I would try to help them out by finding lost recordings or video clips, or find a photo of this artist when they were at a show. Another thing that’s really helpful is finding interviews by the artist, especially if the artist has passed away, so that the artists can speak in their own words.\r\n\r\n<b>You researched this book for six years. I’m assuming it wasn’t something you did constantly, but you would go back to it as you found a piece, but how did you keep focus?</b>\r\n\r\n[caption id=\"attachment_1507\" align=\"alignright\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\"><img class=\"size-full wp-image-1507\" alt=\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\" width=\"280\" height=\"179\" /></a> Image (c) Roland Ferneborg[/caption]\r\n\r\nI often did ask myself ‘am I ever going to find all the pieces’ because I don’t want to put the book out unless I do. And there were some big gaps. A year after The Beatles, Jimmie gets a call out of the blue from <a href=\"http://en.wikipedia.org/wiki/The_Spotnicks\">The Spotnicks</a> and played with them for two years, and I was able to document that quite well. I was able to find two or three Spotnicks who were very helpful in providing pictures and actual recordings. They had old listings of concert dates, where they went and what times, so there was really a lot of great information.\r\n\r\nThen they said one night he walked in on a Mexican gig and Jimmie got on a stool and started to play. He was so drugged up, he fell off the stool and their manager fired him. He walked off into the night and vanished. They never saw him again. It was a dead end that I had to sit on for quite a while. So I would set that aside and go work on an area where you know you can get the information and fill it in, or go travel to London and walk in his footsteps… go to the coffeehouses where he started, to the recording studios where he recorded, do all of that footwork. It’s real easy to find stories about Jimmie Nicol attached to The Beatles for that thirteen day period, but it’s very difficult to find many stories about him otherwise. So it did take six years to really accumulate enough newspaper stories.\r\n\r\n<b>I always look at the quirky things of how things happen, and one of the things I found really interesting was even though he wasn’t the first choice to replace Ringo, he was choice number three, but he had the right look, and in fact he was the right size. Who would think that he would need to fit into Ringo’s suits? I just found this so fascinating.</b>\r\n\r\n[caption id=\"attachment_1505\" align=\"alignleft\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\"><img class=\"size-full wp-image-1505\" alt=\"jimmie_nicol_hong_kong_19641-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\" width=\"280\" height=\"179\" /></a> Topham (c) Top Foto Image Works[/caption]\r\n\r\nI did too. This could have been a real glitch in the road for The Beatles if they had to cancel these things, it would have been world-wide news. It would have been seen as a major failure early on in their career. The stars really aligned for The Beatles. They not only found a guy that had started growing a Beatle (hair) cut, and fit into Ringo’s outfits, but also already knew Ringo’s drum parts on two-thirds of their songs. That’s really some good karma.\r\n\r\n[caption id=\"attachment_1506\" align=\"alignright\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar.jpg\"><img class=\"size-thumbnail wp-image-1506\" alt=\"2i\'s-coffee-bar\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar-150x150.jpg\" width=\"150\" height=\"150\" /></a> Photo: http://en.wikipedia.org/[/caption]\r\n\r\n<b>Now the <a href=\"http://en.wikipedia.org/wiki/The_2i\'s_Coffee_Bar\">2I’s Coffee Bar</a> where Jimmie played early on and which was one of the early hotbeds of rock and roll in England, there was basically one way in and one way out. The musicians had to carry their instruments down the stairs and over their heads to get through the crowd. I can’t even imagine the smoke and the amount of people, and the firetrap situation.</b>\r\n\r\nI wanted to make some of these places as vivid as possible, because I think a lot of people are used to reading novels, fiction, and I thought why not give them the types of descriptions when I have them, of what the scene was like in those days, rather than oh they set up and then they played these songs, then they went here, and then they went there. I really tried to get that, and <a href=\"http://en.wikipedia.org/wiki/Vince_Eager\">Vince Eager</a>, who was hanging around those clubs at that time trying to make it, really provided me with a lot of that feel. Then <a href=\"http://en.wikipedia.org/wiki/Tommy_Steele\">Tommy Steele</a> had written some sort of book, or someone wrote it for him, right after he got famous, and there was some good commentary in there about what it was like in those clubs. I really tried to combine all those things to give the reader a feel because that was really the happening place long before <a href=\"http://en.wikipedia.org/wiki/The_Cavern_Club\">The Cavern Club</a> really became the next happening place in Liverpool.\r\n\r\n<b>Were you able to get inside of the 2i\'s, or just see it on the outside?</b>\r\n\r\nI got to the outside, but it was locked up. It’s kind of a landmark, but nobody appears to be using it on any type of regular basis. Once a year, a lot of those old guys who played there, all get together and they open it up and they play a show for their old fans. The other place, The Flamingo, that’s right around the corner and I went in there because now it’s a Chinese fast food restaurant, which is very disappointing. I’m glad they preserved the 2i’s Coffee Bar.\r\n\r\n<b>Well, your description was not lost on the masses because it definitely caught my attention. When you were talking about the width… two and a half arm’s length. This place was tiny. Unbelievable.</b>\r\n\r\nIt is unbelievable. You know I enjoy all those little arcane details. My wife got up to about the third chapter and said I had too many details. But I thought it was fascinating because I don’t think anybody has really written about the first generation of rock and roll in British music. So I thought it was a good way to write about it through Jimmie’s experience.\r\n\r\n<b>When Jimmie was with Vince Eager, they had almost a stage show, with the lights from Jimmie’s drums and the shooting of a pistol. That would never be allowed… a mock shooting.</b>\r\n\r\nI know. With a real gun and blanks.\r\n\r\n<b>Were you ever able to find out why they did a stage show in addition to being a rock and roll band?</b>\r\n\r\nWell, they were coming from a Vaudevillian type era. A lot of these rockers had grown up and seen Vaudeville shows, and in Vince Eager’s case, he was the only artist on the whole roster of artists that would go out on these packaged tours, that never had a radio hit. So he felt in order to be more interesting than the other bands that all had hits, he would play a real variety of music. Some ballads, rock and roll, all types of styles. But he would also add comedic bits, like the lighting of the bongo drums. He wanted to make it more of an all-around entertainment, rather than strictly rock and roll. And as a result, he oftentimes blew the other artists off the stage.\r\n\r\n<b>Now when Jimmie got the call from <a href=\"http://en.wikipedia.org/wiki/George_Martin\">George Martin</a>, you could say he was shocked to get the call, but not surprised that he was chosen. He knew his ability, he knew most of the songs, he had the connections, and he was respected. But still, it’s interesting he would have that reaction, I mean we’re talking about <em>The Beatles</em>. And that he would just go back, sit on his couch and mull it over in his mind a little bit before he even said anything about it.</b>\r\n\r\nYeah, I thought that was interesting, and again I’m lucky because I have a guy in the room, who was there. So it’s not one of those things where some authors make up the scenarios out of thin air, because it looks and sounds dramatic. In my case, John Hopkinson was actually there, saw him take the call, and saw him sit there sort of quietly, and after a while sort of exploded saying “do you know who that was? I’m going down to Abbey Road to try out with The Beatles.” It’s fun if you’re lucky enough to ask the right questions, to get the right response.\r\n\r\n<strong>In Part 2 of the interview, Jim Berkenstadt talks about Jimmie Nicol\'s time as a Beatle, how it affected his life, and what became of the man who filled in for the most famous drummer in the world.</strong>\r\n\r\nTo read a review of The Beatle Who Vanished,<a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\"> click here</a>\r\n\r\n<iframe src=\"//www.youtube.com/embed/qumXROSOFJE\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n<iframe src=\"//www.youtube.com/embed/qHuTMAXOrsM\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Author Jim Berkenstadt Talks About \"The Beatle Who Vanished\"','','inherit','open','open','','1499-revision-v1','','','2014-01-21 10:30:23','2014-01-21 16:30:23','',1499,'http://www.earthhertzrecords.com/2014/01/1499-revision-v1/',0,'revision','',0),(1517,2,'2014-01-21 10:43:03','2014-01-21 16:43:03','<p style=\"text-align: center;\"><strong><i>You never know where your journey in life will lead, but if you follow your passion…</i></strong></p>\r\n\r\n\r\n[caption id=\"attachment_1503\" align=\"alignleft\" width=\"139\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\"><img class=\" wp-image-1503\" alt=\"jim-berkenstadt-new-book-199x300\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\" width=\"139\" height=\"210\" /></a> Photo of Jim Berkenstadt © Narayan Mayhon[/caption]\r\n\r\nGrowing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually, taking his knowledge of music, he began another career as a writer; first with articles, then books. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame. However, his favorite subject matter was The Beatles, and that interest would lay the foundation for another career path.\r\n\r\nCombining his affection for music with his researching skills, Jim founded <a href=\"http://www.rockandrolldetective.com/\">The Rock and Roll Detective</a>, a company which provides to the entertainment industry, research, writing, and basically the ability to find a needle in a haystack. His research skills proved invaluable while writing his latest book, <i><a href=\"http://www.thebeatlewhovanished.com/\">The Beatle Who Vanished</a>.</i> It is the story of Jimmie Nicol, who replaced Ringo Starr on part of The Beatle’s first world tour. Though he was a Beatle for less than two weeks, Nicol’s life would be forever changed. The story is a fascinating trip from the birth of rock and roll in Great Britain through the insanity that was Beatlemania. It follows the trail of a man who would be famous, who never quite was, and who became an enigma, as well as a footnote in musical history.\r\n\r\nAs we approach the 50<sup>th</sup> anniversary of The Beatles coming to the United States, I had the pleasure of speaking with Jim Berkenstadt about his quest to find <em>The Beatle Who Vanished.</em>\r\n\r\n<b>Part 1</b>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Kath Galasso: Before we talk about the book, how did you get into the whole research/historian aspect of these rock and roll projects?</b>\r\n\r\nJim Berkenstadt: As a young guy growing up, I would always be the one who would study and learn all the information off the back covers of albums, then later CD booklets. I wanted to know who produced it, who were the session players, what instruments did they play. Almost like kids who learn all the statistics off their favorite baseball player’s trading card, I was learning all this stuff out of a passion to learn more about rock & roll people.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall.gif\"><img class=\"alignright size-thumbnail wp-image-1504\" alt=\"JimmyNicholsCentenialHall\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall-150x150.gif\" width=\"150\" height=\"150\" /></a>Then I pretty much specialized in The Beatles, and over time when The Beatles broke up, I started to collect “lost” recordings of concerts that would leak out. I had over ten hours of \"The Beatles on the BBC\" recordings. I started collecting all their solo work, their interviews, and so I became an expert on their recordings, which led me to working with George Harrison and now with Olivia Harrison on a number of projects. From George Harrison, that led me to Apple, where they have asked me to work on various projects. As people wanted to work on various boxed sets, they would hear about me and I would try to help them out by finding lost recordings or video clips, or find a photo of this artist when they were at a show. Another thing that’s really helpful is finding interviews by the artist, especially if the artist has passed away, so that the artists can speak in their own words.\r\n\r\n<b>You researched this book for six years. I’m assuming it wasn’t something you did constantly, but you would go back to it as you found a piece, but how did you keep focus?</b>\r\n\r\n[caption id=\"attachment_1507\" align=\"alignright\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\"><img class=\"size-full wp-image-1507\" alt=\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\" width=\"280\" height=\"179\" /></a> Image (c) Roland Ferneborg[/caption]\r\n\r\nI often did ask myself ‘am I ever going to find all the pieces’ because I don’t want to put the book out unless I do. And there were some big gaps. A year after The Beatles, Jimmie gets a call out of the blue from <a href=\"http://en.wikipedia.org/wiki/The_Spotnicks\">The Spotnicks</a> and played with them for two years, and I was able to document that quite well. I was able to find two or three Spotnicks who were very helpful in providing pictures and actual recordings. They had old listings of concert dates, where they went and what times, so there was really a lot of great information.\r\n\r\nThen they said one night he walked in on a Mexican gig and Jimmie got on a stool and started to play. He was so drugged up, he fell off the stool and their manager fired him. He walked off into the night and vanished. They never saw him again. It was a dead end that I had to sit on for quite a while. So I would set that aside and go work on an area where you know you can get the information and fill it in, or go travel to London and walk in his footsteps… go to the coffeehouses where he started, to the recording studios where he recorded, do all of that footwork. It’s real easy to find stories about Jimmie Nicol attached to The Beatles for that thirteen day period, but it’s very difficult to find many stories about him otherwise. So it did take six years to really accumulate enough newspaper stories.\r\n\r\n<b>I always look at the quirky things of how things happen, and one of the things I found really interesting was even though he wasn’t the first choice to replace Ringo, he was choice number three, but he had the right look, and in fact he was the right size. Who would think that he would need to fit into Ringo’s suits? I just found this so fascinating.</b>\r\n\r\n[caption id=\"attachment_1505\" align=\"alignleft\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\"><img class=\"size-full wp-image-1505\" alt=\"jimmie_nicol_hong_kong_19641-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\" width=\"280\" height=\"179\" /></a> Topham (c) Top Foto Image Works[/caption]\r\n\r\nI did too. This could have been a real glitch in the road for The Beatles if they had to cancel these things, it would have been world-wide news. It would have been seen as a major failure early on in their career. The stars really aligned for The Beatles. They not only found a guy that had started growing a Beatle (hair) cut, and fit into Ringo’s outfits, but also already knew Ringo’s drum parts on two-thirds of their songs. That’s really some good karma.\r\n\r\n[caption id=\"attachment_1506\" align=\"alignright\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar.jpg\"><img class=\"size-thumbnail wp-image-1506\" alt=\"2i\'s-coffee-bar\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar-150x150.jpg\" width=\"150\" height=\"150\" /></a> Photo: http://en.wikipedia.org/[/caption]\r\n\r\n<b>Now the <a href=\"http://en.wikipedia.org/wiki/The_2i\'s_Coffee_Bar\">2I’s Coffee Bar</a> where Jimmie played early on and which was one of the early hotbeds of rock and roll in England, there was basically one way in and one way out. The musicians had to carry their instruments down the stairs and over their heads to get through the crowd. I can’t even imagine the smoke and the amount of people, and the firetrap situation.</b>\r\n\r\nI wanted to make some of these places as vivid as possible, because I think a lot of people are used to reading novels, fiction, and I thought why not give them the types of descriptions when I have them, of what the scene was like in those days, rather than oh they set up and then they played these songs, then they went here, and then they went there. I really tried to get that, and <a href=\"http://en.wikipedia.org/wiki/Vince_Eager\">Vince Eager</a>, who was hanging around those clubs at that time trying to make it, really provided me with a lot of that feel. Then <a href=\"http://en.wikipedia.org/wiki/Tommy_Steele\">Tommy Steele</a> had written some sort of book, or someone wrote it for him, right after he got famous, and there was some good commentary in there about what it was like in those clubs. I really tried to combine all those things to give the reader a feel because that was really the happening place long before <a href=\"http://en.wikipedia.org/wiki/The_Cavern_Club\">The Cavern Club</a> really became the next happening place in Liverpool.\r\n\r\n<b>Were you able to get inside of the 2i\'s, or just see it on the outside?</b>\r\n\r\nI got to the outside, but it was locked up. It’s kind of a landmark, but nobody appears to be using it on any type of regular basis. Once a year, a lot of those old guys who played there, all get together and they open it up and they play a show for their old fans. The other place, The Flamingo, that’s right around the corner and I went in there because now it’s a Chinese fast food restaurant, which is very disappointing. I’m glad they preserved the 2i’s Coffee Bar.\r\n\r\n<b>Well, your description was not lost on the masses because it definitely caught my attention. When you were talking about the width… two and a half arm’s length. This place was tiny. Unbelievable.</b>\r\n\r\nIt is unbelievable. You know I enjoy all those little arcane details. My wife got up to about the third chapter and said I had too many details. But I thought it was fascinating because I don’t think anybody has really written about the first generation of rock and roll in British music. So I thought it was a good way to write about it through Jimmie’s experience.\r\n\r\n<b>When Jimmie was with Vince Eager, they had almost a stage show, with the lights from Jimmie’s drums and the shooting of a pistol. That would never be allowed… a mock shooting.</b>\r\n\r\nI know. With a real gun and blanks.\r\n\r\n<b>Were you ever able to find out why they did a stage show in addition to being a rock and roll band?</b>\r\n\r\nWell, they were coming from a Vaudevillian type era. A lot of these rockers had grown up and seen Vaudeville shows, and in Vince Eager’s case, he was the only artist on the whole roster of artists that would go out on these packaged tours, that never had a radio hit. So he felt in order to be more interesting than the other bands that all had hits, he would play a real variety of music. Some ballads, rock and roll, all types of styles. But he would also add comedic bits, like the lighting of the bongo drums. He wanted to make it more of an all-around entertainment, rather than strictly rock and roll. And as a result, he oftentimes blew the other artists off the stage.\r\n\r\n<b>Now when Jimmie got the call from <a href=\"http://en.wikipedia.org/wiki/George_Martin\">George Martin</a>, you could say he was shocked to get the call, but not surprised that he was chosen. He knew his ability, he knew most of the songs, he had the connections, and he was respected. But still, it’s interesting he would have that reaction, I mean we’re talking about <em>The Beatles</em>. And that he would just go back, sit on his couch and mull it over in his mind a little bit before he even said anything about it.</b>\r\n\r\nYeah, I thought that was interesting, and again I’m lucky because I have a guy in the room, who was there. So it’s not one of those things where some authors make up the scenarios out of thin air, because it looks and sounds dramatic. In my case, John Hopkinson was actually there, saw him take the call, and saw him sit there sort of quietly, and after a while sort of exploded saying “do you know who that was? I’m going down to Abbey Road to try out with The Beatles.” It’s fun if you’re lucky enough to ask the right questions, to get the right response.\r\n\r\n<strong>In Part 2 of the interview, Jim Berkenstadt talks about Jimmie Nicol\'s time as a Beatle, how it affected his life, and what became of the man who filled in for the most famous drummer in the world.</strong>\r\n\r\nTo read a review of The Beatle Who Vanished,<a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\"> click here</a>\r\n\r\n<iframe src=\"//www.youtube.com/embed/qumXROSOFJE\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n<iframe src=\"//www.youtube.com/embed/qHuTMAXOrsM\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Author Jim Berkenstadt Talks About \"The Beatle Who Vanished\"','','inherit','open','open','','1499-revision-v1','','','2014-01-21 10:43:03','2014-01-21 16:43:03','',1499,'http://www.earthhertzrecords.com/2014/01/1499-revision-v1/',0,'revision','',0),(1518,2,'2014-01-23 06:36:21','2014-01-23 12:36:21','<strong>To read Part 1 of the interview go to <a href=\"http://www.earthhertzrecords.com/2014/01/author-jim-berkenstadt-talks-about-the-beatle-who-vanished/\">Author Jim Berkenstadt Talks About \"The Beatle Who Vanished\"</a></strong>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignright size-full wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\" width=\"112\" height=\"160\" /></a>Growing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually, taking his knowledge of music, he began another career as a writer; first with articles, then books. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame. However, his favorite subject matter was The Beatles, and that interest would lay the foundation for another career path.\r\n\r\nAs we approach the 50th anniversary of The Beatles coming to the United States, I had the pleasure of speaking with <a href=\"http://en.wikipedia.org/wiki/Jim_Berkenstadt\">Jim Berkenstadt</a> about his quest to find <a href=\"http://www.thebeatlewhovanished.com/\"><em>The Beatle Who Vanished.</em></a>\r\n\r\n<b>Part 2</b>\r\n\r\n<b>Kath Galasso: Once The Beatles with Jimmie Nicol were on tour, of course nobody knew who he was, so he was able to sneak out and blend in with the crowd. A couple of times he was out with the crowd looking up at the balcony of the hotel, like everyone else was. Can you imagine what must have been going on in his mind? They’re looking for The Beatles, now he’s a Beatle and he’s among them and they don’t even know it.</b>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsBealesHolland.gif\"><img class=\"alignleft size-medium wp-image-1519\" alt=\"JimmyNicholsBealesHolland\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsBealesHolland-300x288.gif\" width=\"300\" height=\"288\" /></a>Jim Berkenstadt: Right. When I discovered that, it was such an interesting juxtaposition, and it allows him to think about, that just a few days ago, if I happened to be walking past the hotel and it was The Beatles, I’d be looking up at them. But they don’t know that I’m in the entourage, I just put on some different clothes and I’m able to blend in, but those other guys upstairs… they’re prisoners. They have to go from box to box to box, and they can’t get out. Yet when he’s with them he gets to experience the high of that type of adulation, popularity, of people tearing at your clothes and screaming for you. I think it was after the first full day of Beatlemania where he was able to leave the hotel, go outside and sneak around. I thought that had to have been an amazing moment for him.\r\n\r\n<b>That quote you just said about the series of boxes, that was a very fascinating quote for me. He hated the idea of how they lived, but he craved it. How do you think he reconciled that?</b>\r\n\r\nI don’t think he ever did reconcile it. I really think it was a struggle, a back and forth thing. On the one hand, when he came back from The Beatles tour, he was telling his friend it’s really crazy the way they live, in the boxes, Brian Epstein doesn’t give them a lot of freedom to move about. Yet, what he tried to do as soon as he got back, was to create his band, record another song, tried to get his songs on the radio, tried to get mass appeal, go on tour. He really was trying to compete against The Beatles and reach that pinnacle on his own. So even though he didn’t necessarily like the way they lived, he wanted to achieve that goal. I think he was clearly torn between those ideas, and later when things didn’t always work out for him, he would always blame Brian Epstein and claim that he was blacklisting him.\r\n\r\n<b>But you never found any evidence of that.</b>\r\n\r\nI did not, other than coming from Jimmie Nicol. I sort of discounted the evidence because Brian Epstein clearly created a concert of The Beatles and invited Jimmie Nicol to be on the bill (after Jimmie Nicol left The Beatles), which to me was a thank you gift. You’re going to get all these fans, and there’s going to be your band on the bill. The Beatles, The Shubdubs and Jimmie Nicol all got to hang out afterwards. I talked to Tony Bramwell, who at the time was an assistant to Brian Epstein, and he said “we” meaning the organization, all felt very grateful to Jimmie because he saved the day. On top of that Tony Bramwell in all the years he worked for him (Epstein), he never saw Brian blacklist anyone.\r\n\r\nTo me it was more of him not taking responsibility for his own choices. Number one, he was originally managing his own band, as well as being in the band and it was a lot of work. It was probably one that he was not cut out for, in terms of business expenses and how it all gets done. He also, I think was choosing which songs were going to go up as singles on the radio, and clearly a lot of the B sides were better than the A sides. And if he had picked them, he might have had a better shot. He made some poor choices and I feel he used Brian Epstein to blame when things didn’t work out for him.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/amazon_best_selling_beatles_book_trailer-280x179.png\"><img class=\"alignleft size-full wp-image-1520\" alt=\"amazon_best_selling_beatles_book_trailer-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/amazon_best_selling_beatles_book_trailer-280x179.png\" width=\"280\" height=\"179\" /></a>When he was with The Beatles, you mentioned a couple of time that it seemed John and Jimmie bonded over that time. Where were those observations coming from?</b>\r\n\r\nThey were coming from hours and hours of newsreel footage which I have watched. I’ll give you some examples. There’s one scene where they have to walk from one room into another to perform and they have their guitars strapped over the back, and John sort of pulls Jimmie to him, says something in his ear and pats him on the shoulder. To me, it’s like John is the leader of the band, and he’s encouraging Jimmie… we’re gonna do fine here, let’s rock this out.\r\n\r\nAnd there’s another shot I saw on an airplane where John and Jimmie are sitting together, and you could see they’re having an involved, interesting conversation, even though it happens to be a silent clip. There was another one when they got to Adelaide (Australia) and they had to go to the mayor’s building and they’re surrounded by 300,000 people, which is just an amazing number. Think about football stadiums holding a hundred thousand. And this was three football stadiums all surrounding the mayor’s town hall.\r\n\r\nSo they show that and then it cuts to the reception inside where the mayor wants to have a picture taken with The Beatles. Jimmie is off to the side talking to a reporter or a fan, I’m not sure which. The other three Beatles see that the mayor wants to get huddled together for a photo and they’re just about set, and John goes “wait a second,” and he grabs Jimmie and says come on, you’ve got to be in this picture. He was making a point of including Jimmie in the picture. There were a lot of visual clues from the newsreel footage that helped me to make that conclusion.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHallStage.gif\"><img class=\"alignright size-medium wp-image-1521\" alt=\"JimmyNicholsCentenialHallStage\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHallStage-300x178.gif\" width=\"300\" height=\"178\" /></a>But isn’t it interesting that later on it seemed that Paul was the one who reached out and tried to help him?</b>\r\n\r\nYes, it is interesting. I didn’t see as many visual clues of Paul befriending Jimmie. There were some where you see them talking, but I think apparently Paul felt very appreciative of Jimmie helping them out on the tour. So it was interesting that Paul went to bat for him after the fact, unbeknownst to Jimmie, and later even hired Howie Nicol (Jimmie’s son) for some film work.\r\n\r\n<b>Was there any evidence that George reached out to him at any point later on, or John?</b>\r\n\r\nThe only thing I ever knew was that George had gone to a club and tried to buy Jimmie a drink and Jimmie turned it down. But I didn’t find any other information of John reaching out to Jimmie Nicol. I found one quote where Ringo was asked, after Jimmie went bankrupt, got divorced and was out of work, someone reached out to Ringo and he said “wow, I never would have expected that, he was such a talented guy,” and all that sort of thing. But I don’t see anyone other than Paul actually trying to get him work.\r\n\r\n<b>In many ways the tale of Jimmie Nicol is a cautionary tale. Be careful what you wish for cause you just might get it. He had all these dreams, achieved them and then something would happen, the dreams would go away, and he would vanish just like the dreams.</b>\r\n\r\nI think you’re right. And then he would try to restart a new life somewhere else. Butch Vig, who produces Foo Fighters, he’s the drummer with the band Garbage, he read the book and said “This is a fascinating and mysterious must read for hardcore Beatle fans and anyone who wants to understand the meteoric rise of pop stardom and the subsequent crash landing.” Which is kind of a way of saying it’s a cautionary tale.\r\n\r\n<b>You just wonder if he had done one or two things differently how his life could have been different. It seemed he pushed it to the edge, so that it would fail. When he would get to the point and he would have to follow some rules in order to keep it going the way it was, he would get bored or not want to follow the rules, and basically walk away.</b>\r\n\r\nYeah, he was fiercely independent, and didn’t necessarily want to listen to what other people wanted him to do. It was his way or the highway. That’s why I stuck with the story for so long. There were so many twists and turns to his behavior and his career path. I thought even if this guy had never played with The Beatles, it was an interesting story.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsWalkinAway.gif\"><img class=\"alignleft size-medium wp-image-1522\" alt=\"JimmyNicholsWalkinAway\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsWalkinAway-292x300.gif\" width=\"292\" height=\"300\" /></a>In your book, you have a quote something to the effect that when you started out writing the Jimmie Nicol story you didn’t know if you had enough for a magazine article, never mind a book. Now there’s a book, possibly a movie. What were your feelings when you finished writing the book, after six years and thousands and thousands of hours of research on this, because there wasn’t really an ending to the story?</b>\r\n\r\nI was pleased that I had pulled most of his career together. I knew I had pulled his complete musical career together, so I was very pleased that I was able to fill that all in. I was a bit frustrated by not getting to sit down face-to-face with Jimmie Nicol, and fill in some more information. As you see in the book, I went to London, to his last known address. That was a big letdown. And finally when I was in Australia, hearing that he was maybe in Holland, and my wife said now you have to go to Holland. But I said \"I don’t think this guy wants to be found, and I just have to end it by letting him stay vanished.\"\r\n\r\nEven now if someone would give me his address and I could afford to go somewhere and see him, I don’t think he’d even open the door. I think he is done with the musical chapter of his life and just wants to be left alone.\r\n\r\nTo read a review of The Beatle Who Vanished, <a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\">click here</a>\r\n<iframe src=\"//www.youtube.com/embed/qumXROSOFJE\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n<iframe src=\"//www.youtube.com/embed/qHuTMAXOrsM\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Author Jim Berkenstadt Talks About “The Beatle Who Vanished” - Part 2','','publish','open','open','','author-jim-berkenstadt-talks-about-the-beatle-who-vanished-part-2','','','2014-01-23 06:36:21','2014-01-23 12:36:21','',0,'http://www.earthhertzrecords.com/?p=1518',0,'post','',0),(1519,2,'2014-01-22 13:54:02','2014-01-22 19:54:02','','JimmyNicholsBealesHolland','','inherit','open','open','','jimmynicholsbealesholland','','','2014-01-22 13:54:02','2014-01-22 19:54:02','',1518,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsBealesHolland.gif',0,'attachment','image/gif',0),(1520,2,'2014-01-22 13:59:19','2014-01-22 19:59:19','','amazon_best_selling_beatles_book_trailer-280x179','','inherit','open','open','','amazon_best_selling_beatles_book_trailer-280x179','','','2014-01-22 13:59:19','2014-01-22 19:59:19','',1518,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/amazon_best_selling_beatles_book_trailer-280x179.png',0,'attachment','image/png',0),(1521,2,'2014-01-22 14:00:05','2014-01-22 20:00:05','','JimmyNicholsCentenialHallStage','','inherit','open','open','','jimmynicholscentenialhallstage','','','2014-01-22 14:00:05','2014-01-22 20:00:05','',1518,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHallStage.gif',0,'attachment','image/gif',0),(1522,2,'2014-01-22 14:00:51','2014-01-22 20:00:51','','JimmyNicholsWalkinAway','','inherit','open','open','','jimmynicholswalkinaway','','','2014-01-22 14:00:51','2014-01-22 20:00:51','',1518,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsWalkinAway.gif',0,'attachment','image/gif',0),(1523,2,'2014-01-22 14:01:17','2014-01-22 20:01:17','To read Part 1 of the interview go to <a href=\"http://www.earthhertzrecords.com/2014/01/author-jim-berkenstadt-talks-about-the-beatle-who-vanished/\">Author Jim Berkenstadt Talks About \"The Beatle Who Vanished\"</a>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignright size-full wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\" width=\"112\" height=\"160\" /></a>Growing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually, taking his knowledge of music, he began another career as a writer; first with articles, then books. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame. However, his favorite subject matter was The Beatles, and that interest would lay the foundation for another career path.\r\n\r\nAs we approach the 50th anniversary of The Beatles coming to the United States, I had the pleasure of speaking with Jim Berkenstadt about his quest to find <em>The Beatle Who Vanished.</em>\r\n\r\n<b>Part 2</b>\r\n\r\n<b>Once The Beatles with Jimmie Nicol were on tour, of course nobody knew who he was, so he was able to sneak out and blend in with the crowd. A couple of times he was out with the crowd looking up at the balcony of the hotel, like everyone else was. Can you imagine what must have been going on in his mind? They’re looking for The Beatles, now he’s a Beatle and he’s among them and they don’t even know it.</b>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsBealesHolland.gif\"><img class=\"alignleft size-medium wp-image-1519\" alt=\"JimmyNicholsBealesHolland\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsBealesHolland-300x288.gif\" width=\"300\" height=\"288\" /></a>Right. When I discovered that, it was such an interesting juxtaposition, and it allows him to think about, that just a few days ago, if I happened to be walking past the hotel and it was The Beatles, I’d be looking up at them. But they don’t know that I’m in the entourage, I just put on some different clothes and I’m able to blend in, but those other guys upstairs… they’re prisoners. They have to go from box to box to box, and they can’t get out. Yet when he’s with them he gets to experience the high of that type of adulation, popularity, of people tearing at your clothes and screaming for you. I think it was after the first full day of Beatlemania where he was able to leave the hotel, go outside and sneak around. I thought that had to have been an amazing moment for him.\r\n\r\n<b>That quote you just said about the series of boxes, that was a very fascinating quote for me. He hated the idea of how they lived, but he craved it. How do you think he reconciled that?</b>\r\n\r\nI don’t think he ever did reconcile it. I really think it was a struggle, a back and forth thing. On the one hand, when he came back from The Beatles tour, he was telling his friend it’s really crazy the way they live, in the boxes, Brian Epstein doesn’t give them a lot of freedom to move about. Yet, what he tried to do as soon as he got back, was to create his band, record another song, tried to get his songs on the radio, tried to get mass appeal, go on tour. He really was trying to compete against The Beatles and reach that pinnacle on his own. So even though he didn’t necessarily like the way they lived, he wanted to achieve that goal. I think he was clearly torn between those ideas, and later when things didn’t always work out for him, he would always blame Brian Epstein and claim that he was blacklisting him.\r\n\r\n<b>But you never found any evidence of that.</b>\r\n\r\nI did not, other than coming from Jimmie Nicol. I sort of discounted the evidence because Brian Epstein clearly created a concert of The Beatles and invited Jimmie Nicol to be on the bill (after Jimmie Nicol left The Beatles), which to me was a thank you gift. You’re going to get all these fans, and there’s going to be your band on the bill. The Beatles, The Shubdubs and Jimmie Nicol all got to hang out afterwards. I talked to Tony Bramwell, who at the time was an assistant to Brian Epstein, and he said “we” meaning the organization, all felt very grateful to Jimmie because he saved the day. On top of that Tony Bramwell in all the years he worked for him (Epstein), he never saw Brian blacklist anyone.\r\n\r\nTo me it was more of him not taking responsibility for his own choices. Number one, he was originally managing his own band, as well as being in the band and it was a lot of work. It was probably one that he was not cut out for, in terms of business expenses and how it all gets done. He also, I think was choosing which songs were going to go up as singles on the radio, and clearly a lot of the B sides were better than the A sides. And if he had picked them, he might have had a better shot. He made some poor choices and I feel he used Brian Epstein to blame when things didn’t work out for him.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/amazon_best_selling_beatles_book_trailer-280x179.png\"><img class=\"alignleft size-full wp-image-1520\" alt=\"amazon_best_selling_beatles_book_trailer-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/amazon_best_selling_beatles_book_trailer-280x179.png\" width=\"280\" height=\"179\" /></a>When he was with The Beatles, you mentioned a couple of time that it seemed John and Jimmie bonded over that time. Where were those observations coming from?</b>\r\n\r\nThey were coming from hours and hours of newsreel footage which I have watched. I’ll give you some examples. There’s one scene where they have to walk from one room into another to perform and they have their guitars strapped over the back, and John sort of pulls Jimmie to him, says something in his ear and pats him on the shoulder. To me, it’s like John is the leader of the band, and he’s encouraging Jimmie… we’re gonna do fine here, let’s rock this out.\r\n\r\nAnd there’s another shot I saw on an airplane where John and Jimmie are sitting together, and you could see they’re having an involved, interesting conversation, even though it happens to be a silent clip. There was another one when they got to Adelaide (Australia) and they had to go to the mayor’s building and they’re surrounded by 300,000 people, which is just an amazing number. Think about football stadiums holding a hundred thousand. And this was three football stadiums all surrounding the mayor’s town hall.\r\n\r\nSo they show that and then it cuts to the reception inside where the mayor wants to have a picture taken with The Beatles. Jimmie is off to the side talking to a reporter or a fan, I’m not sure which. The other three Beatles see that the mayor wants to get huddled together for a photo and they’re just about set, and John goes “wait a second,” and he grabs Jimmie and says come on, you’ve got to be in this picture. He was making a point of including Jimmie in the picture. There were a lot of visual clues from the newsreel footage that helped me to make that conclusion.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHallStage.gif\"><img class=\"alignright size-medium wp-image-1521\" alt=\"JimmyNicholsCentenialHallStage\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHallStage-300x178.gif\" width=\"300\" height=\"178\" /></a>But isn’t it interesting that later on it seemed that Paul was the one who reached out and tried to help him?</b>\r\n\r\nYes, it is interesting. I didn’t see as many visual clues of Paul befriending Jimmie. There were some where you see them talking, but I think apparently Paul felt very appreciative of Jimmie helping them out on the tour. So it was interesting that Paul went to bat for him after the fact, unbeknownst to Jimmie, and later even hired Howie Nicol (Jimmie’s son) for some film work.\r\n\r\n<b>Was there any evidence that George reached out to him at any point later on, or John?</b>\r\n\r\nThe only thing I ever knew was that George had gone to a club and tried to buy Jimmie a drink and Jimmie turned it down. But I didn’t find any other information of John reaching out to Jimmie Nicol. I found one quote where Ringo was asked, after Jimmie went bankrupt, got divorced and was out of work, someone reached out to Ringo and he said “wow, I never would have expected that, he was such a talented guy,” and all that sort of thing. But I don’t see anyone other than Paul actually trying to get him work.\r\n\r\n<b>In many ways the tale of Jimmie Nicol is a cautionary tale. Be careful what you wish for cause you just might get it. He had all these dreams, achieved them and then something would happen, the dreams would go away, and he would vanish just like the dreams.</b>\r\n\r\nI think you’re right. And then he would try to restart a new life somewhere else. Butch Vig, who produces Foo Fighters, he’s the drummer with the band Garbage, he read the book and said “This is a fascinating and mysterious must read for hardcore Beatle fans and anyone who wants to understand the meteoric rise of pop stardom and the subsequent crash landing.” Which is kind of a way of saying it’s a cautionary tale.\r\n\r\n<b>You just wonder if he had done one or two things differently how his life could have been different. It seemed he pushed it to the edge, so that it would fail. When he would get to the point and he would have to follow some rules in order to keep it going the way it was, he would get bored or not want to follow the rules, and basically walk away.</b>\r\n\r\nYeah, he was fiercely independent, and didn’t necessarily want to listen to what other people wanted him to do. It was his way or the highway. That’s why I stuck with the story for so long. There were so many twists and turns to his behavior and his career path. I thought even if this guy had never played with The Beatles, it was an interesting story.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsWalkinAway.gif\"><img class=\"alignleft size-medium wp-image-1522\" alt=\"JimmyNicholsWalkinAway\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsWalkinAway-292x300.gif\" width=\"292\" height=\"300\" /></a>In your book, you have a quote something to the effect that when you started out writing the Jimmie Nicol story you didn’t know if you had enough for a magazine article, never mind a book. Now there’s a book, possibly a movie. What were your feelings when you finished writing the book, after six years and thousands and thousands of hours of research on this because there wasn’t really an ending to the story?</b>\r\n\r\nI was pleased that I had pulled most of his career together. I knew I had pulled his complete musical career together, so I was very pleased that I was able to fill that all in. I was a bit frustrated by not getting to sit down face-to-face with Jimmie Nicol, and fill in some more information. As you see in the book, I went to London, to his last known address. That was a big letdown. And finally when I was in Australia, hearing that he was maybe in Holland, and my wife said now you have to go to Holland. I don’t think this guy wants to be found, and I just have to end it by letting him stay vanished.\r\n\r\nEven now if someone would give me his address and I could afford to go somewhere and see him, I don’t think he’d even open the door. I think he is done with the musical chapter of his life and just wants to be left alone.','Author Jim Berkenstadt Talks About “The Beatle Who Vanished” - Part 2','','inherit','open','open','','1518-revision-v1','','','2014-01-22 14:01:17','2014-01-22 20:01:17','',1518,'http://www.earthhertzrecords.com/2014/01/1518-revision-v1/',0,'revision','',0),(1524,2,'2014-01-22 15:07:20','2014-01-22 21:07:20','<strong>To read Part 1 of the interview go to <a href=\"http://www.earthhertzrecords.com/2014/01/author-jim-berkenstadt-talks-about-the-beatle-who-vanished/\">Author Jim Berkenstadt Talks About \"The Beatle Who Vanished\"</a></strong>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignright size-full wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\" width=\"112\" height=\"160\" /></a>Growing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually, taking his knowledge of music, he began another career as a writer; first with articles, then books. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame. However, his favorite subject matter was The Beatles, and that interest would lay the foundation for another career path.\r\n\r\nAs we approach the 50th anniversary of The Beatles coming to the United States, I had the pleasure of speaking with <a href=\"http://en.wikipedia.org/wiki/Jim_Berkenstadt\">Jim Berkenstadt</a> about his quest to find <a href=\"http://www.thebeatlewhovanished.com/\"><em>The Beatle Who Vanished.</em></a>\r\n\r\n<b>Part 2</b>\r\n\r\n<b>Kath Galasso: Once The Beatles with Jimmie Nicol were on tour, of course nobody knew who he was, so he was able to sneak out and blend in with the crowd. A couple of times he was out with the crowd looking up at the balcony of the hotel, like everyone else was. Can you imagine what must have been going on in his mind? They’re looking for The Beatles, now he’s a Beatle and he’s among them and they don’t even know it.</b>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsBealesHolland.gif\"><img class=\"alignleft size-medium wp-image-1519\" alt=\"JimmyNicholsBealesHolland\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsBealesHolland-300x288.gif\" width=\"300\" height=\"288\" /></a>Jim Berkenstadt: Right. When I discovered that, it was such an interesting juxtaposition, and it allows him to think about, that just a few days ago, if I happened to be walking past the hotel and it was The Beatles, I’d be looking up at them. But they don’t know that I’m in the entourage, I just put on some different clothes and I’m able to blend in, but those other guys upstairs… they’re prisoners. They have to go from box to box to box, and they can’t get out. Yet when he’s with them he gets to experience the high of that type of adulation, popularity, of people tearing at your clothes and screaming for you. I think it was after the first full day of Beatlemania where he was able to leave the hotel, go outside and sneak around. I thought that had to have been an amazing moment for him.\r\n\r\n<b>That quote you just said about the series of boxes, that was a very fascinating quote for me. He hated the idea of how they lived, but he craved it. How do you think he reconciled that?</b>\r\n\r\nI don’t think he ever did reconcile it. I really think it was a struggle, a back and forth thing. On the one hand, when he came back from The Beatles tour, he was telling his friend it’s really crazy the way they live, in the boxes, Brian Epstein doesn’t give them a lot of freedom to move about. Yet, what he tried to do as soon as he got back, was to create his band, record another song, tried to get his songs on the radio, tried to get mass appeal, go on tour. He really was trying to compete against The Beatles and reach that pinnacle on his own. So even though he didn’t necessarily like the way they lived, he wanted to achieve that goal. I think he was clearly torn between those ideas, and later when things didn’t always work out for him, he would always blame Brian Epstein and claim that he was blacklisting him.\r\n\r\n<b>But you never found any evidence of that.</b>\r\n\r\nI did not, other than coming from Jimmie Nicol. I sort of discounted the evidence because Brian Epstein clearly created a concert of The Beatles and invited Jimmie Nicol to be on the bill (after Jimmie Nicol left The Beatles), which to me was a thank you gift. You’re going to get all these fans, and there’s going to be your band on the bill. The Beatles, The Shubdubs and Jimmie Nicol all got to hang out afterwards. I talked to Tony Bramwell, who at the time was an assistant to Brian Epstein, and he said “we” meaning the organization, all felt very grateful to Jimmie because he saved the day. On top of that Tony Bramwell in all the years he worked for him (Epstein), he never saw Brian blacklist anyone.\r\n\r\nTo me it was more of him not taking responsibility for his own choices. Number one, he was originally managing his own band, as well as being in the band and it was a lot of work. It was probably one that he was not cut out for, in terms of business expenses and how it all gets done. He also, I think was choosing which songs were going to go up as singles on the radio, and clearly a lot of the B sides were better than the A sides. And if he had picked them, he might have had a better shot. He made some poor choices and I feel he used Brian Epstein to blame when things didn’t work out for him.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/amazon_best_selling_beatles_book_trailer-280x179.png\"><img class=\"alignleft size-full wp-image-1520\" alt=\"amazon_best_selling_beatles_book_trailer-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/amazon_best_selling_beatles_book_trailer-280x179.png\" width=\"280\" height=\"179\" /></a>When he was with The Beatles, you mentioned a couple of time that it seemed John and Jimmie bonded over that time. Where were those observations coming from?</b>\r\n\r\nThey were coming from hours and hours of newsreel footage which I have watched. I’ll give you some examples. There’s one scene where they have to walk from one room into another to perform and they have their guitars strapped over the back, and John sort of pulls Jimmie to him, says something in his ear and pats him on the shoulder. To me, it’s like John is the leader of the band, and he’s encouraging Jimmie… we’re gonna do fine here, let’s rock this out.\r\n\r\nAnd there’s another shot I saw on an airplane where John and Jimmie are sitting together, and you could see they’re having an involved, interesting conversation, even though it happens to be a silent clip. There was another one when they got to Adelaide (Australia) and they had to go to the mayor’s building and they’re surrounded by 300,000 people, which is just an amazing number. Think about football stadiums holding a hundred thousand. And this was three football stadiums all surrounding the mayor’s town hall.\r\n\r\nSo they show that and then it cuts to the reception inside where the mayor wants to have a picture taken with The Beatles. Jimmie is off to the side talking to a reporter or a fan, I’m not sure which. The other three Beatles see that the mayor wants to get huddled together for a photo and they’re just about set, and John goes “wait a second,” and he grabs Jimmie and says come on, you’ve got to be in this picture. He was making a point of including Jimmie in the picture. There were a lot of visual clues from the newsreel footage that helped me to make that conclusion.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHallStage.gif\"><img class=\"alignright size-medium wp-image-1521\" alt=\"JimmyNicholsCentenialHallStage\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHallStage-300x178.gif\" width=\"300\" height=\"178\" /></a>But isn’t it interesting that later on it seemed that Paul was the one who reached out and tried to help him?</b>\r\n\r\nYes, it is interesting. I didn’t see as many visual clues of Paul befriending Jimmie. There were some where you see them talking, but I think apparently Paul felt very appreciative of Jimmie helping them out on the tour. So it was interesting that Paul went to bat for him after the fact, unbeknownst to Jimmie, and later even hired Howie Nicol (Jimmie’s son) for some film work.\r\n\r\n<b>Was there any evidence that George reached out to him at any point later on, or John?</b>\r\n\r\nThe only thing I ever knew was that George had gone to a club and tried to buy Jimmie a drink and Jimmie turned it down. But I didn’t find any other information of John reaching out to Jimmie Nicol. I found one quote where Ringo was asked, after Jimmie went bankrupt, got divorced and was out of work, someone reached out to Ringo and he said “wow, I never would have expected that, he was such a talented guy,” and all that sort of thing. But I don’t see anyone other than Paul actually trying to get him work.\r\n\r\n<b>In many ways the tale of Jimmie Nicol is a cautionary tale. Be careful what you wish for cause you just might get it. He had all these dreams, achieved them and then something would happen, the dreams would go away, and he would vanish just like the dreams.</b>\r\n\r\nI think you’re right. And then he would try to restart a new life somewhere else. Butch Vig, who produces Foo Fighters, he’s the drummer with the band Garbage, he read the book and said “This is a fascinating and mysterious must read for hardcore Beatle fans and anyone who wants to understand the meteoric rise of pop stardom and the subsequent crash landing.” Which is kind of a way of saying it’s a cautionary tale.\r\n\r\n<b>You just wonder if he had done one or two things differently how his life could have been different. It seemed he pushed it to the edge, so that it would fail. When he would get to the point and he would have to follow some rules in order to keep it going the way it was, he would get bored or not want to follow the rules, and basically walk away.</b>\r\n\r\nYeah, he was fiercely independent, and didn’t necessarily want to listen to what other people wanted him to do. It was his way or the highway. That’s why I stuck with the story for so long. There were so many twists and turns to his behavior and his career path. I thought even if this guy had never played with The Beatles, it was an interesting story.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsWalkinAway.gif\"><img class=\"alignleft size-medium wp-image-1522\" alt=\"JimmyNicholsWalkinAway\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsWalkinAway-292x300.gif\" width=\"292\" height=\"300\" /></a>In your book, you have a quote something to the effect that when you started out writing the Jimmie Nicol story you didn’t know if you had enough for a magazine article, never mind a book. Now there’s a book, possibly a movie. What were your feelings when you finished writing the book, after six years and thousands and thousands of hours of research on this, because there wasn’t really an ending to the story?</b>\r\n\r\nI was pleased that I had pulled most of his career together. I knew I had pulled his complete musical career together, so I was very pleased that I was able to fill that all in. I was a bit frustrated by not getting to sit down face-to-face with Jimmie Nicol, and fill in some more information. As you see in the book, I went to London, to his last known address. That was a big letdown. And finally when I was in Australia, hearing that he was maybe in Holland, and my wife said now you have to go to Holland. But I said \"I don’t think this guy wants to be found, and I just have to end it by letting him stay vanished.\"\r\n\r\nEven now if someone would give me his address and I could afford to go somewhere and see him, I don’t think he’d even open the door. I think he is done with the musical chapter of his life and just wants to be left alone.\r\n\r\nTo read a review of The Beatle Who Vanished, <a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\">click here</a>\r\n<iframe src=\"//www.youtube.com/embed/qumXROSOFJE\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n<iframe src=\"//www.youtube.com/embed/qHuTMAXOrsM\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Author Jim Berkenstadt Talks About “The Beatle Who Vanished” - Part 2','','inherit','open','open','','1518-revision-v1','','','2014-01-22 15:07:20','2014-01-22 21:07:20','',1518,'http://www.earthhertzrecords.com/2014/01/1518-revision-v1/',0,'revision','',0),(1526,2,'2014-01-28 10:49:24','2014-01-28 16:49:24','Grammy weekend. Part 1\r\n\r\nAs team Earth Hertz gathered in LA, we knew there were events to attend, people to meet, places to go and of course, The Grammys themselves. Friday night was a blur of past and present Grammy nominees. Hosted by <a href=\"http://arunshenoy.com/\">Arun Shenoy</a>, nominee in the 55th Grammy Awards for Best Instrumental Pop Album, and equally talented wife Roshni, the party was a nice blend of creative people, both established and up-and-coming.\r\n\r\nAt this point, the nominees are exhausted but still working in overdrive. Talking with nominees <a href=\"http://www.jennifergasoi.com/\">Jennifer Gasoi</a>, who would win the Grammy for Best Children\'s Album, and Laura Sullivan, winner of Best New Age Album, you could feel the underlying tension in having to wait another two days before the awards, yet both were gracious and charming to everyone who asked for a minute of their time.\r\n\r\n[caption id=\"attachment_1527\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1011117_10152549258957892_1071701040_n.jpg\"><img class=\"size-medium wp-image-1527 \" alt=\"1011117_10152549258957892_1071701040_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1011117_10152549258957892_1071701040_n-300x300.jpg\" width=\"300\" height=\"300\" /></a> The Earth Hertz crew applauding Grammy winner Laura Sullivan. Photo by Dale E. Chung[/caption]\r\n\r\n[caption id=\"attachment_1528\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1601551_10152545963282892_1241362614_n.jpg\"><img class=\"size-medium wp-image-1528 \" alt=\"1601551_10152545963282892_1241362614_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1601551_10152545963282892_1241362614_n-300x300.jpg\" width=\"300\" height=\"300\" /></a> Eric Sullivan, husband of Grammy Winner Laura Sullivan, listening to her acceptance speech. Photo by Dale E. Chung[/caption]\r\n\r\n<a href=\"http://www.earthhertzrecords.com/2014/01/an-interview-with-grammy-nominee-laura-sullivan/\">Having interviewed Laura Sullivan about the Grammy nominee experienc</a>e, it was easy to understand why the crowd in the Nokia Theatre was overjoyed when she was announced as the winner. She and her family sat in the row behind us, and tears were flowing everywhere when we heard her name. Seeing her husband Eric stand there with such love and pride as Laura gave her acceptance speech, was an incredibly beautiful moment... Grammy or otherwise.\r\n\r\nMore to come about the party, the pre-telecast and the Grammy show. First, time for a nap.','Earth Hertz at The Grammys, The Appetizer','','publish','open','open','','earth-hertz-at-the-grammys-the-appetizer','','\nhttp://www.earthhertzrecords.com/2014/01/an-interview-with-grammy-nominee-laura-sullivan/','2014-03-11 06:29:54','2014-03-11 12:29:54','',0,'http://www.earthhertzrecords.com/?p=1526',0,'post','',0),(1527,2,'2014-01-28 10:37:03','2014-01-28 16:37:03','','1011117_10152549258957892_1071701040_n','','inherit','open','open','','1011117_10152549258957892_1071701040_n','','','2014-01-28 10:37:03','2014-01-28 16:37:03','',1526,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1011117_10152549258957892_1071701040_n.jpg',0,'attachment','image/jpeg',0),(1528,2,'2014-01-28 10:39:14','2014-01-28 16:39:14','','1601551_10152545963282892_1241362614_n','','inherit','open','open','','1601551_10152545963282892_1241362614_n','','','2014-01-28 10:39:14','2014-01-28 16:39:14','',1526,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1601551_10152545963282892_1241362614_n.jpg',0,'attachment','image/jpeg',0),(1529,2,'2014-01-28 10:41:12','2014-01-28 16:41:12','Grammy weekend. Part 1\r\n\r\nAs team Earth Hertz gathered in LA, we knew there were events to attend, people to meet, places to go and of course, The Grammys themselves. Friday night was a blur of past and present Grammy nominees. Hosted by <a href=\"http://arunshenoy.com/\">Arun Shenoy</a>, nominee in the 55th Grammy Awards for Best Instrumental Pop Album, and equally talented wife Roshni, the party was a nice blend of creative people, both established and up-and-coming.\r\n\r\nAt this point, the nominees are exhausted but still working in overdrive. Talking with nominees <a href=\"http://www.jennifergasoi.com/\">Jennifer Gasoi</a>, who would win the Grammy for Best Children\'s Album, and Laura Sullivan, winner of Best New Age Album, you could feel the underlying tension in having to wait another two days before the awards, yet both were gracious and charming to everyone who asked for a minute of their time.\r\n\r\n[caption id=\"attachment_1527\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1011117_10152549258957892_1071701040_n.jpg\"><img class=\"size-medium wp-image-1527\" alt=\"1011117_10152549258957892_1071701040_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1011117_10152549258957892_1071701040_n-300x300.jpg\" width=\"300\" height=\"300\" /></a> The Earth Hertz crew applauding Grammy winner Laura Sulliva. Photo by Dale E. Chung[/caption]\r\n\r\n[caption id=\"attachment_1528\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1601551_10152545963282892_1241362614_n.jpg\"><img class=\"size-medium wp-image-1528\" alt=\"1601551_10152545963282892_1241362614_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1601551_10152545963282892_1241362614_n-300x300.jpg\" width=\"300\" height=\"300\" /></a> Eric Sullivan, husband of Grammy Winner Laura Sullivan listening to her acceptance speech. Photo by Dale E. Chung[/caption]\r\n\r\n<a href=\"http://www.earthhertzrecords.com/2014/01/an-interview-with-grammy-nominee-laura-sullivan/\">Having interviewed Laura Sullivan about the Grammy nominee experienc</a>e, it was easy to understand why the crowd in the Nokia Theatre was overjoyed when she was announced as the winner. She and her family sat in the row behind us, and tears were flowing everywhere when we heard her name. Seeing her husband Eric stand there with such love and pride as Laura gave her acceptance speech, was an incredibly beautiful moment... Grammy or otherwise.\r\n\r\nMore to come about the party, the pre-telecast and the Grammy show. First, time for a nap.','','','inherit','open','open','','1526-revision-v1','','','2014-01-28 10:41:12','2014-01-28 16:41:12','',1526,'http://www.earthhertzrecords.com/2014/01/1526-revision-v1/',0,'revision','',0),(1530,2,'2014-01-28 10:44:43','2014-01-28 16:44:43','Grammy weekend. Part 1\r\n\r\nAs team Earth Hertz gathered in LA, we knew there were events to attend, people to meet, places to go and of course, The Grammys themselves. Friday night was a blur of past and present Grammy nominees. Hosted by <a href=\"http://arunshenoy.com/\">Arun Shenoy</a>, nominee in the 55th Grammy Awards for Best Instrumental Pop Album, and equally talented wife Roshni, the party was a nice blend of creative people, both established and up-and-coming.\r\n\r\nAt this point, the nominees are exhausted but still working in overdrive. Talking with nominees <a href=\"http://www.jennifergasoi.com/\">Jennifer Gasoi</a>, who would win the Grammy for Best Children\'s Album, and Laura Sullivan, winner of Best New Age Album, you could feel the underlying tension in having to wait another two days before the awards, yet both were gracious and charming to everyone who asked for a minute of their time.\r\n\r\n[caption id=\"attachment_1527\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1011117_10152549258957892_1071701040_n.jpg\"><img class=\"size-medium wp-image-1527 \" alt=\"1011117_10152549258957892_1071701040_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1011117_10152549258957892_1071701040_n-300x300.jpg\" width=\"300\" height=\"300\" /></a> The Earth Hertz crew applauding Grammy winner Laura Sullivan. Photo by Dale E. Chung[/caption]\r\n\r\n[caption id=\"attachment_1528\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1601551_10152545963282892_1241362614_n.jpg\"><img class=\"size-medium wp-image-1528 \" alt=\"1601551_10152545963282892_1241362614_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1601551_10152545963282892_1241362614_n-300x300.jpg\" width=\"300\" height=\"300\" /></a> Eric Sullivan, husband of Grammy Winner Laura Sullivan, listening to her acceptance speech. Photo by Dale E. Chung[/caption]\r\n\r\n<a href=\"http://www.earthhertzrecords.com/2014/01/an-interview-with-grammy-nominee-laura-sullivan/\">Having interviewed Laura Sullivan about the Grammy nominee experienc</a>e, it was easy to understand why the crowd in the Nokia Theatre was overjoyed when she was announced as the winner. She and her family sat in the row behind us, and tears were flowing everywhere when we heard her name. Seeing her husband Eric stand there with such love and pride as Laura gave her acceptance speech, was an incredibly beautiful moment... Grammy or otherwise.\r\n\r\nMore to come about the party, the pre-telecast and the Grammy show. First, time for a nap.','','','inherit','open','open','','1526-revision-v1','','','2014-01-28 10:44:43','2014-01-28 16:44:43','',1526,'http://www.earthhertzrecords.com/2014/01/1526-revision-v1/',0,'revision','',0),(1531,2,'2014-01-28 10:47:05','2014-01-28 16:47:05','Grammy weekend. Part 1\r\n\r\nAs team Earth Hertz gathered in LA, we knew there were events to attend, people to meet, places to go and of course, The Grammys themselves. Friday night was a blur of past and present Grammy nominees. Hosted by <a href=\"http://arunshenoy.com/\">Arun Shenoy</a>, nominee in the 55th Grammy Awards for Best Instrumental Pop Album, and equally talented wife Roshni, the party was a nice blend of creative people, both established and up-and-coming.\r\n\r\nAt this point, the nominees are exhausted but still working in overdrive. Talking with nominees <a href=\"http://www.jennifergasoi.com/\">Jennifer Gasoi</a>, who would win the Grammy for Best Children\'s Album, and Laura Sullivan, winner of Best New Age Album, you could feel the underlying tension in having to wait another two days before the awards, yet both were gracious and charming to everyone who asked for a minute of their time.\r\n\r\n[caption id=\"attachment_1527\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1011117_10152549258957892_1071701040_n.jpg\"><img class=\"size-medium wp-image-1527 \" alt=\"1011117_10152549258957892_1071701040_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1011117_10152549258957892_1071701040_n-300x300.jpg\" width=\"300\" height=\"300\" /></a> The Earth Hertz crew applauding Grammy winner Laura Sullivan. Photo by Dale E. Chung[/caption]\r\n\r\n[caption id=\"attachment_1528\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1601551_10152545963282892_1241362614_n.jpg\"><img class=\"size-medium wp-image-1528 \" alt=\"1601551_10152545963282892_1241362614_n\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/1601551_10152545963282892_1241362614_n-300x300.jpg\" width=\"300\" height=\"300\" /></a> Eric Sullivan, husband of Grammy Winner Laura Sullivan, listening to her acceptance speech. Photo by Dale E. Chung[/caption]\r\n\r\n<a href=\"http://www.earthhertzrecords.com/2014/01/an-interview-with-grammy-nominee-laura-sullivan/\">Having interviewed Laura Sullivan about the Grammy nominee experienc</a>e, it was easy to understand why the crowd in the Nokia Theatre was overjoyed when she was announced as the winner. She and her family sat in the row behind us, and tears were flowing everywhere when we heard her name. Seeing her husband Eric stand there with such love and pride as Laura gave her acceptance speech, was an incredibly beautiful moment... Grammy or otherwise.\r\n\r\nMore to come about the party, the pre-telecast and the Grammy show. First, time for a nap.','Earth Hertz at The Grammys, The Appetizer','','inherit','open','open','','1526-revision-v1','','','2014-01-28 10:47:05','2014-01-28 16:47:05','',1526,'http://www.earthhertzrecords.com/2014/01/1526-revision-v1/',0,'revision','',0),(1532,2,'2014-01-29 07:52:58','2014-01-29 13:52:58','So what\'s a Grammy party really like?\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Grammy-4.jpg\"><img class=\"alignright size-medium wp-image-1534\" alt=\"KatsTheory-Grammy-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Grammy-4-300x225.jpg\" width=\"300\" height=\"225\" /></a>Depends on who you are and how you perceive it. First and foremost, it\'s a schmoozefest. Of course everyone at the party is connected in some way to the Grammys or the music business, so everyone either knows the person next to you, or has worked with someone you both know. It\'s actually easier to talk to strangers at one of these parties because you are bound to find common ground with a large amount of the people you meet.\r\n\r\nThe party we attended was pre-Grammy Awards, so there was excitement and anticipation in the air. Our party, hosted by previous Grammy nominee <a href=\"http://arunshenoy.com/\">Arun Shenoy</a> and his wife Roshni, saw several Grammy nominees in attendance. It also produced two Grammy winners: <a href=\"http://www.jennifergasoi.com/\">Jennifer Gasoi</a> for Best Children\'s Album and <a href=\"http://www.laura-sullivan.com/\">Laura Sullivan</a> for Best New Age Album.\r\n\r\n[caption id=\"attachment_1535\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/IMG_0038.jpg\"><img class=\"size-medium wp-image-1535\" alt=\"IMG_0038\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/IMG_0038-300x225.jpg\" width=\"300\" height=\"225\" /></a> Vassy and the King of the Grammys[/caption]\r\n\r\nThere is a lot of picture taking, a lot of numbers exchanged, because after all, Grammy weekend is basically a convention and there\'s no better time to make contacts. There are a lot of everyday people, and a few characters.\r\n\r\nThe self-proclaimed \"King of the Grammys,\" wearing his cape and crown, was holding court with such celebs as Australian singer <a href=\"http://www.kissmyvassy.com/\">Vassy</a>, whose charisma naturally draws people in her direction.\r\n\r\n[caption id=\"attachment_1536\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/IMG_0035.jpg\"><img class=\"size-medium wp-image-1536\" alt=\"IMG_0035\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/IMG_0035-300x225.jpg\" width=\"300\" height=\"225\" /></a> Vassy with Robert and Eloa Xeno of Earth Hertz Records[/caption]\r\n\r\nThere are session musicians, producers, singers, writers, managers and yeah, even some record company people. What there didn\'t seem to be was a lot of self-importance. For at least this one night, it seemed it was a group of peers, taking pride in their work, their industry and their friends who were singled out as the Best of the Year. For one night, the competition was over, the votes had been counted, the winners while unknown, were chosen. This night was a toast to a job well done.\r\n\r\n \r\n\r\n \r\n\r\n ','The Grammys, Party On','','publish','open','open','','the-grammys-party-on','','','2014-01-29 18:54:37','2014-01-30 00:54:37','',0,'http://www.earthhertzrecords.com/?p=1532',0,'post','',0),(1533,2,'2014-01-29 07:37:25','2014-01-29 13:37:25','So what\'s a Grammy party really like?\r\n\r\nDepends on who you are and how you perceive it. First and foremost, it\'s a schmoozefest. Of course everyone at the party is connected in some way to the Grammys or the music business, so everyone either knows the person next to you, or has worked with someone you both know. It\'s actually easier to talk to strangers at one of these parties because you are bound to find common ground with a large amount of the people you meet.\r\n\r\nThe party we attended was pre-Grammy Awards, so there was excitement and anticipation in the air. Our party, hosted by previous Grammy nominee <a href=\"http://arunshenoy.com/\">Arun Shenoy</a> and his wife Roshni, saw several Grammy nominees in attendance. It also produced two Grammy winners: <a href=\"http://www.jennifergasoi.com/\">Jennifer Gasoi</a> for Best Children\'s Album and <a href=\"http://www.laura-sullivan.com/\">Laura Sullivan</a> for Best New Age Album.\r\n\r\nThere is a lot of picture taking, a lot of numbers exchanged, because after all, Grammy weekend is basically a convention and there\'s no better time to make contacts. There are a lot of everyday people, and a few characters. The self-proclaimed \"King of the Grammys\" was holding court with such celebs as Australian singer <a href=\"http://www.kissmyvassy.com/\">Vassy</a>, who\'s charisma naturally draws people in her direction. There are session musicians, producers, singers, writers, managers and yeah, even some record company people.\r\n\r\n \r\n\r\n ','','','inherit','open','open','','1532-revision-v1','','','2014-01-29 07:37:25','2014-01-29 13:37:25','',1532,'http://www.earthhertzrecords.com/2014/01/1532-revision-v1/',0,'revision','',0),(1534,2,'2014-01-29 07:40:54','2014-01-29 13:40:54','','KatsTheory-Grammy-4','','inherit','open','open','','katstheory-grammy-4','','','2014-01-29 07:40:54','2014-01-29 13:40:54','',1532,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Grammy-4.jpg',0,'attachment','image/jpeg',0),(1535,2,'2014-01-29 07:42:03','2014-01-29 13:42:03','','IMG_0038','','inherit','open','open','','img_0038','','','2014-01-29 07:42:03','2014-01-29 13:42:03','',1532,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/IMG_0038.jpg',0,'attachment','image/jpeg',0),(1536,2,'2014-01-29 07:48:10','2014-01-29 13:48:10','','IMG_0035','','inherit','open','open','','img_0035','','','2014-01-29 07:48:10','2014-01-29 13:48:10','',1532,'http://www.earthhertzrecords.com/wp-content/uploads/2014/01/IMG_0035.jpg',0,'attachment','image/jpeg',0),(1537,2,'2014-01-29 07:51:27','2014-01-29 13:51:27','So what\'s a Grammy party really like?\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Grammy-4.jpg\"><img class=\"alignright size-medium wp-image-1534\" alt=\"KatsTheory-Grammy-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Grammy-4-300x225.jpg\" width=\"300\" height=\"225\" /></a>Depends on who you are and how you perceive it. First and foremost, it\'s a schmoozefest. Of course everyone at the party is connected in some way to the Grammys or the music business, so everyone either knows the person next to you, or has worked with someone you both know. It\'s actually easier to talk to strangers at one of these parties because you are bound to find common ground with a large amount of the people you meet.\r\n\r\nThe party we attended was pre-Grammy Awards, so there was excitement and anticipation in the air. Our party, hosted by previous Grammy nominee <a href=\"http://arunshenoy.com/\">Arun Shenoy</a> and his wife Roshni, saw several Grammy nominees in attendance. It also produced two Grammy winners: <a href=\"http://www.jennifergasoi.com/\">Jennifer Gasoi</a> for Best Children\'s Album and <a href=\"http://www.laura-sullivan.com/\">Laura Sullivan</a> for Best New Age Album.\r\n\r\n[caption id=\"attachment_1535\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/IMG_0038.jpg\"><img class=\"size-medium wp-image-1535\" alt=\"IMG_0038\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/IMG_0038-300x225.jpg\" width=\"300\" height=\"225\" /></a> Vassy and the King of the Grammys[/caption]\r\n\r\nThere is a lot of picture taking, a lot of numbers exchanged, because after all, Grammy weekend is basically a convention and there\'s no better time to make contacts. There are a lot of everyday people, and a few characters.\r\n\r\nThe self-proclaimed \"King of the Grammys,\" wearing his cape and crown, was holding court with such celebs as Australian singer <a href=\"http://www.kissmyvassy.com/\">Vassy</a>, who\'s charisma naturally draws people in her direction.\r\n\r\n[caption id=\"attachment_1536\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/IMG_0035.jpg\"><img class=\"size-medium wp-image-1536\" alt=\"IMG_0035\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/IMG_0035-300x225.jpg\" width=\"300\" height=\"225\" /></a> Vassy with Robert and Eloa Xeno of Earth Hertz Records[/caption]\r\n\r\nThere are session musicians, producers, singers, writers, managers and yeah, even some record company people. What there didn\'t seem to be was a lot of self-importance. For at least this one night, it seemed it was a group of peers, taking pride in their work, their industry and their friends who were singled out as the Best of the Year. For one night, the competition was over, the votes had been counted, the winners while unknown, were chosen. This night was a toast to a job well done.\r\n\r\n \r\n\r\n \r\n\r\n ','The Grammys, Party On','','inherit','open','open','','1532-revision-v1','','','2014-01-29 07:51:27','2014-01-29 13:51:27','',1532,'http://www.earthhertzrecords.com/2014/01/1532-revision-v1/',0,'revision','',0),(1538,2,'2014-01-29 18:54:37','2014-01-30 00:54:37','So what\'s a Grammy party really like?\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Grammy-4.jpg\"><img class=\"alignright size-medium wp-image-1534\" alt=\"KatsTheory-Grammy-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/KatsTheory-Grammy-4-300x225.jpg\" width=\"300\" height=\"225\" /></a>Depends on who you are and how you perceive it. First and foremost, it\'s a schmoozefest. Of course everyone at the party is connected in some way to the Grammys or the music business, so everyone either knows the person next to you, or has worked with someone you both know. It\'s actually easier to talk to strangers at one of these parties because you are bound to find common ground with a large amount of the people you meet.\r\n\r\nThe party we attended was pre-Grammy Awards, so there was excitement and anticipation in the air. Our party, hosted by previous Grammy nominee <a href=\"http://arunshenoy.com/\">Arun Shenoy</a> and his wife Roshni, saw several Grammy nominees in attendance. It also produced two Grammy winners: <a href=\"http://www.jennifergasoi.com/\">Jennifer Gasoi</a> for Best Children\'s Album and <a href=\"http://www.laura-sullivan.com/\">Laura Sullivan</a> for Best New Age Album.\r\n\r\n[caption id=\"attachment_1535\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/IMG_0038.jpg\"><img class=\"size-medium wp-image-1535\" alt=\"IMG_0038\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/IMG_0038-300x225.jpg\" width=\"300\" height=\"225\" /></a> Vassy and the King of the Grammys[/caption]\r\n\r\nThere is a lot of picture taking, a lot of numbers exchanged, because after all, Grammy weekend is basically a convention and there\'s no better time to make contacts. There are a lot of everyday people, and a few characters.\r\n\r\nThe self-proclaimed \"King of the Grammys,\" wearing his cape and crown, was holding court with such celebs as Australian singer <a href=\"http://www.kissmyvassy.com/\">Vassy</a>, whose charisma naturally draws people in her direction.\r\n\r\n[caption id=\"attachment_1536\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/IMG_0035.jpg\"><img class=\"size-medium wp-image-1536\" alt=\"IMG_0035\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/IMG_0035-300x225.jpg\" width=\"300\" height=\"225\" /></a> Vassy with Robert and Eloa Xeno of Earth Hertz Records[/caption]\r\n\r\nThere are session musicians, producers, singers, writers, managers and yeah, even some record company people. What there didn\'t seem to be was a lot of self-importance. For at least this one night, it seemed it was a group of peers, taking pride in their work, their industry and their friends who were singled out as the Best of the Year. For one night, the competition was over, the votes had been counted, the winners while unknown, were chosen. This night was a toast to a job well done.\r\n\r\n \r\n\r\n \r\n\r\n ','The Grammys, Party On','','inherit','open','open','','1532-revision-v1','','','2014-01-29 18:54:37','2014-01-30 00:54:37','',1532,'http://www.earthhertzrecords.com/2014/01/1532-revision-v1/',0,'revision','',0),(1541,2,'2014-02-10 16:44:00','2014-02-10 22:44:00','<p style=\"text-align: center;\"><strong><i>You never know where your journey in life will lead, but if you follow your passion…</i></strong></p>\r\n\r\n\r\n[caption id=\"attachment_1503\" align=\"alignleft\" width=\"139\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\"><img class=\" wp-image-1503\" alt=\"jim-berkenstadt-new-book-199x300\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jim-berkenstadt-new-book-199x3001.jpg\" width=\"139\" height=\"210\" /></a> Photo of Jim Berkenstadt © Narayan Mayhon[/caption]\r\n\r\nGrowing up, author Jim Berkenstadt’s passion was learning all he could about his favorite musicians. Even as he pursued a law degree and during his career as a lawyer, that passion never waned. Eventually, taking his knowledge of music, he began another career as a writer; first with articles, then books. One of his books, <i>Nevermind Nirvana</i>, which told the story behind the creation of <i>Nevermind</i>, the influential album from Nirvana, is a part of the permanent Library and Archive Collection of the Rock and Roll Hall of Fame. However, his favorite subject matter was The Beatles, and that interest would lay the foundation for another career path.\r\n\r\nCombining his affection for music with his researching skills, Jim founded <a href=\"http://www.rockandrolldetective.com/\">The Rock and Roll Detective</a>, a company which provides to the entertainment industry, research, writing, and basically the ability to find a needle in a haystack. His research skills proved invaluable while writing his latest book, <i><a href=\"http://www.thebeatlewhovanished.com/\">The Beatle Who Vanished</a>.</i> It is the story of Jimmie Nicol, who replaced Ringo Starr on part of The Beatle’s first world tour. Though he was a Beatle for less than two weeks, Nicol’s life would be forever changed. The story is a fascinating trip from the birth of rock and roll in Great Britain through the insanity that was Beatlemania. It follows the trail of a man who would be famous, who never quite was, and who became an enigma, as well as a footnote in musical history.\r\n\r\nAs we approach the 50<sup>th</sup> anniversary of The Beatles coming to the United States, I had the pleasure of speaking with Jim Berkenstadt about his quest to find <em>The Beatle Who Vanished.</em>\r\n\r\n<b>Part 1</b>\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1.jpg\"><img class=\"alignleft size-thumbnail wp-image-1486\" alt=\"Beatle-who-vanished\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Beatle-who-vanished1-112x150.jpg\" width=\"112\" height=\"150\" /></a>Kath Galasso: Before we talk about the book, how did you get into the whole research/historian aspect of these rock and roll projects?</b>\r\n\r\nJim Berkenstadt: As a young guy growing up, I would always be the one who would study and learn all the information off the back covers of albums, then later CD booklets. I wanted to know who produced it, who were the session players, what instruments did they play. Almost like kids who learn all the statistics off their favorite baseball player’s trading card, I was learning all this stuff out of a passion to learn more about rock & roll people.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall.gif\"><img class=\"alignright size-thumbnail wp-image-1504\" alt=\"JimmyNicholsCentenialHall\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/JimmyNicholsCentenialHall-150x150.gif\" width=\"150\" height=\"150\" /></a>Then I pretty much specialized in The Beatles, and over time when The Beatles broke up, I started to collect “lost” recordings of concerts that would leak out. I had over ten hours of \"The Beatles on the BBC\" recordings. I started collecting all their solo work, their interviews, and so I became an expert on their recordings, which led me to working with George Harrison and now with Olivia Harrison on a number of projects. From George Harrison, that led me to Apple, where they have asked me to work on various projects. As people wanted to work on various boxed sets, they would hear about me and I would try to help them out by finding lost recordings or video clips, or find a photo of this artist when they were at a show. Another thing that’s really helpful is finding interviews by the artist, especially if the artist has passed away, so that the artists can speak in their own words.\r\n\r\n<b>You researched this book for six years. I’m assuming it wasn’t something you did constantly, but you would go back to it as you found a piece, but how did you keep focus?</b>\r\n\r\n[caption id=\"attachment_1507\" align=\"alignright\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\"><img class=\"size-full wp-image-1507\" alt=\"Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/Jimmie-Nicol-with-The-Spotnicks-Paris-France.-c-Roland-Ferneborg-280x179.jpg\" width=\"280\" height=\"179\" /></a> Image (c) Roland Ferneborg[/caption]\r\n\r\nI often did ask myself ‘am I ever going to find all the pieces’ because I don’t want to put the book out unless I do. And there were some big gaps. A year after The Beatles, Jimmie gets a call out of the blue from <a href=\"http://en.wikipedia.org/wiki/The_Spotnicks\">The Spotnicks</a> and played with them for two years, and I was able to document that quite well. I was able to find two or three Spotnicks who were very helpful in providing pictures and actual recordings. They had old listings of concert dates, where they went and what times, so there was really a lot of great information.\r\n\r\nThen they said one night he walked in on a Mexican gig and Jimmie got on a stool and started to play. He was so drugged up, he fell off the stool and their manager fired him. He walked off into the night and vanished. They never saw him again. It was a dead end that I had to sit on for quite a while. So I would set that aside and go work on an area where you know you can get the information and fill it in, or go travel to London and walk in his footsteps… go to the coffeehouses where he started, to the recording studios where he recorded, do all of that footwork. It’s real easy to find stories about Jimmie Nicol attached to The Beatles for that thirteen day period, but it’s very difficult to find many stories about him otherwise. So it did take six years to really accumulate enough newspaper stories.\r\n\r\n<b>I always look at the quirky things of how things happen, and one of the things I found really interesting was even though he wasn’t the first choice to replace Ringo, he was choice number three, but he had the right look, and in fact he was the right size. Who would think that he would need to fit into Ringo’s suits? I just found this so fascinating.</b>\r\n\r\n[caption id=\"attachment_1505\" align=\"alignleft\" width=\"280\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\"><img class=\"size-full wp-image-1505\" alt=\"jimmie_nicol_hong_kong_19641-280x179\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/jimmie_nicol_hong_kong_19641-280x179.jpg\" width=\"280\" height=\"179\" /></a> Topham (c) Top Foto Image Works[/caption]\r\n\r\nI did too. This could have been a real glitch in the road for The Beatles if they had to cancel these things, it would have been world-wide news. It would have been seen as a major failure early on in their career. The stars really aligned for The Beatles. They not only found a guy that had started growing a Beatle (hair) cut, and fit into Ringo’s outfits, but also already knew Ringo’s drum parts on two-thirds of their songs. That’s really some good karma.\r\n\r\n[caption id=\"attachment_1506\" align=\"alignright\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar.jpg\"><img class=\"size-thumbnail wp-image-1506\" alt=\"2i\'s-coffee-bar\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/01/2is-coffee-bar-150x150.jpg\" width=\"150\" height=\"150\" /></a> Photo: http://en.wikipedia.org/[/caption]\r\n\r\n<b>Now the <a href=\"http://en.wikipedia.org/wiki/The_2i\'s_Coffee_Bar\">2I’s Coffee Bar</a> where Jimmie played early on and which was one of the early hotbeds of rock and roll in England, there was basically one way in and one way out. The musicians had to carry their instruments down the stairs and over their heads to get through the crowd. I can’t even imagine the smoke and the amount of people, and the firetrap situation.</b>\r\n\r\nI wanted to make some of these places as vivid as possible, because I think a lot of people are used to reading novels, fiction, and I thought why not give them the types of descriptions when I have them, of what the scene was like in those days, rather than oh they set up and then they played these songs, then they went here, and then they went there. I really tried to get that, and <a href=\"http://en.wikipedia.org/wiki/Vince_Eager\">Vince Eager</a>, who was hanging around those clubs at that time trying to make it, really provided me with a lot of that feel. Then <a href=\"http://en.wikipedia.org/wiki/Tommy_Steele\">Tommy Steele</a> had written some sort of book, or someone wrote it for him, right after he got famous, and there was some good commentary in there about what it was like in those clubs. I really tried to combine all those things to give the reader a feel because that was really the happening place long before <a href=\"http://en.wikipedia.org/wiki/The_Cavern_Club\">The Cavern Club</a> really became the next happening place in Liverpool.\r\n\r\n<b>Were you able to get inside of the 2i\'s, or just see it on the outside?</b>\r\n\r\nI got to the outside, but it was locked up. It’s kind of a landmark, but nobody appears to be using it on any type of regular basis. Once a year, a lot of those old guys who played there, all get together and they open it up and they play a show for their old fans. The other place, The Flamingo, that’s right around the corner and I went in there because now it’s a Chinese fast food restaurant, which is very disappointing. I’m glad they preserved the 2i’s Coffee Bar.\r\n\r\n<b>Well, your description was not lost on the masses because it definitely caught my attention. When you were talking about the width… two and a half arm’s length. This place was tiny. Unbelievable.</b>\r\n\r\nIt is unbelievable. You know I enjoy all those little arcane details. My wife got up to about the third chapter and said I had too many details. But I thought it was fascinating because I don’t think anybody has really written about the first generation of rock and roll in British music. So I thought it was a good way to write about it through Jimmie’s experience.\r\n\r\n<b>When Jimmie was with Vince Eager, they had almost a stage show, with the lights from Jimmie’s drums and the shooting of a pistol. That would never be allowed… a mock shooting.</b>\r\n\r\nI know. With a real gun and blanks.\r\n\r\n<b>Were you ever able to find out why they did a stage show in addition to being a rock and roll band?</b>\r\n\r\nWell, they were coming from a Vaudevillian type era. A lot of these rockers had grown up and seen Vaudeville shows, and in Vince Eager’s case, he was the only artist on the whole roster of artists that would go out on these packaged tours, that never had a radio hit. So he felt in order to be more interesting than the other bands that all had hits, he would play a real variety of music. Some ballads, rock and roll, all types of styles. But he would also add comedic bits, like the lighting of the bongo drums. He wanted to make it more of an all-around entertainment, rather than strictly rock and roll. And as a result, he oftentimes blew the other artists off the stage.\r\n\r\n<b>Now when Jimmie got the call from <a href=\"http://en.wikipedia.org/wiki/George_Martin\">George Martin</a>, you could say he was shocked to get the call, but not surprised that he was chosen. He knew his ability, he knew most of the songs, he had the connections, and he was respected. But still, it’s interesting he would have that reaction, I mean we’re talking about <em>The Beatles</em>. And that he would just go back, sit on his couch and mull it over in his mind a little bit before he even said anything about it.</b>\r\n\r\nYeah, I thought that was interesting, and again I’m lucky because I have a guy in the room, who was there. So it’s not one of those things where some authors make up the scenarios out of thin air, because it looks and sounds dramatic. In my case, John Hopkinson was actually there, saw him take the call, and saw him sit there sort of quietly, and after a while sort of exploded saying “do you know who that was? I’m going down to Abbey Road to try out with The Beatles.” It’s fun if you’re lucky enough to ask the right questions, to get the right response.\r\n\r\n<strong>In Part 2 of the interview, Jim Berkenstadt talks about Jimmie Nicol\'s time as a Beatle, how it affected his life, and what became of the man who filled in for the most famous drummer in the world.</strong>\r\n\r\nClick here for <a href=\"http://www.earthhertzrecords.com/2014/01/author-jim-berkenstadt-talks-about-the-beatle-who-vanished-part-2/\">Part 2 of the Interview with Jim Berkenstadt</a>.\r\n\r\nTo read a review of The Beatle Who Vanished,<a href=\"http://www.earthhertzrecords.com/2014/01/the-beatle-who-vanished-by-jim-berkenstadt-a-book-review/\"> click here</a>\r\n\r\n<iframe src=\"//www.youtube.com/embed/qumXROSOFJE\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\n<iframe src=\"//www.youtube.com/embed/qHuTMAXOrsM\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','Author Jim Berkenstadt Talks About \"The Beatle Who Vanished\"','','inherit','open','open','','1499-revision-v1','','','2014-02-10 16:44:00','2014-02-10 22:44:00','',1499,'http://www.earthhertzrecords.com/2014/02/1499-revision-v1/',0,'revision','',0),(1542,2,'2014-02-11 09:13:06','2014-02-11 15:13:06','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/geoffdownes.jpg\"><img class=\"alignright size-medium wp-image-1544\" alt=\"geoffdownes\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/geoffdownes-198x300.jpg\" width=\"198\" height=\"300\" /></a>Do you remember where you were when you first heard it? I do. It was June of 1982 and I was sitting in seventh grade music class during one of the last days before summer vacation.\r\n\r\nThe school was one of those two-story brick structures that had no air conditioning and by mid-morning temperatures in the classroom had risen to almost unbearable levels. The open windows and portable fans that circulated hot air throughout the classroom provided little relief to a bunch of teenagers waiting for that final bell to sound.\r\n\r\nAs a sort-of end of year gift to the class, the teacher allowed students to bring in some of their albums to listen to while we cleared out our desks. That was when this kid named Danny put it on the turntable. As needle met vinyl and the crackling hum and hiss began, it was the first time I heard that now infamous guitar riff and opening line:\r\n\r\n<em>“I never meant to be so bad to you. One thing I said that I would never do …”</em>\r\n\r\n“Heat of The Moment” became the coolest thing ever to me on that apropos day. The day I joined the eventual 8 million other people who bought the band Asia’s debut album.\r\n\r\nSince then, I’ve been a fan of keyboardist <a href=\"http://geoffdownes.com/\">Geoff Downes.</a> Not only for his experimentation of all things keyboard, but also for his songwriting ability. In addition to having the best selling album of 1982 with Asia, Downes also holds the coveted distinction of being part of the very first video ever played on MTV (Video Killed The Radio Star).\r\n\r\nToday, in between his work with Asia and Yes, Downes finds time to work on other projects as well. His most recent, New Dance Orchestra’s <em>Electronica</em> features the phenomenal vocals of Anne-Marie Helder (Panic Room, Mostly Autumn) and utilizes sounds from the latest computer technology. The result is a collection of virtual orchestrations that defy standard definition. Blending elements of classical, new age, pop and electronica, Downes uses rich textures to take the listener on a journey of spiritual enlightenment.\r\n\r\nI spoke with Downes about <em>Electronica</em> as well as the forthcoming Asia album <em>Gravitas</em>, which features founding members Downes (keyboards), John Wetton (bass) and Carl Palmer (drums) as well as new guitarist Sam Coulson. He also tells me about some of the most memorable moments of his career.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/ndoelectronica.jpg\"><img class=\"alignleft size-full wp-image-1545\" alt=\"ndoelectronica\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/ndoelectronica.jpg\" width=\"291\" height=\"300\" /></a>How would you describe the sound of <em>Electronica</em>?</strong>\r\n\r\n<em>It’s a good combination of a lot of the influences I’ve had over the years. From my time with The Buggles to session work and some of the other projects I’ve been involved with like Yes and Asia. It’s a nice variety of music and an amalgamy of many of the things that I’ve been through over the course of my career.\r\n</em>\r\n\r\n<strong>How do you approach songwriting for a project like New Dance Orchestra as opposed to one for Asia or Yes?</strong>\r\n\r\n<em>When I create songs for New Dance Orchestra, there’s a lot of experimentation that I like to do. Some of the material comes from me tinkering with the latest sounds on computers. I’m very much into the technical aspect of the keyboard and like to experiment a lot with them.</em>\r\n\r\n<strong>How did you connect with Anne-Marie Helder?</strong>\r\n\r\n<em>I had worked with Anne-Marie on the Icon project I did with John Wetton. She came in and did vocals on a few of the tracks. She’s one of the top prog-rock vocalists and is very much in demand. </em>\r\n\r\n<strong>When Steve Howe announced his retirement as guitarist for Asia, was there ever a moment where the band thought about slowing down?</strong>\r\n\r\n<em>The rest of us always felt that it was worth continuing. Steve has his reasons for wanting to move on and concentrate more on his solo material. He’s pretty much been on the road for the last seven years doing solo material and his trio in addition to having the extra pressure of Yes and Asia. He felt it was time to try other things, which is fine.</em>\r\n\r\n<em>We brought in Sam (Coulson), who was recommended to us by Paul Gilbert. He’s a different type of player from Steve and brings with him his own sound. The actual emphasis was never to change direction but to evolve.</em>\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/asiagravitas.jpg\"><img class=\"alignright size-full wp-image-1546\" alt=\"asiagravitas\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/asiagravitas.jpg\" width=\"300\" height=\"300\" /></a></strong><strong>What can you tell us about the new Asia album, <em>Gravitas</em>?</strong>\r\n\r\n<em>We finished the album just before Christmas and it’s going to be released the last week of March. The cover was once again designed by Roger Dean. It’s another Asia album with songs written by myself and John Wetton.</em>\r\n\r\n<strong>What’s the writing process like when you and John get together?</strong>\r\n\r\n<em>Generally, we’ll both come in and open our ‘war chests’ of musical ideas. Whenever we get together in a session, it’s rare that we don’t come out of it with at least one or two songs.</em>\r\n\r\n<strong>Can you tell me the origin of “Only Time Will Tell”?</strong>\r\n\r\n<em>That one started off with what became the chorus part. It was something I had actually written for a jingle company. I had the basic idea for what became the chorus and I played it for John. That’s when he said “Hey, I think I’ve got something that might go with that” and started playing me the first verse. Originally, the song was going to be called “Starry Eyed”. It was a very in-depth collaboration with a very proggy, sentimental arrangement. It’s one of my favorite pieces that we’ve ever done in terms of Asia’s history because it has such depth and texture to it.</em>\r\n\r\n<strong>When The Buggles released “Video Killed The Radio Star” did you have a feeling of how special it was going to be?</strong>\r\n\r\n<em>We knew that it was a great song and a great record when we finished it. Trevor Horn and I both thought that if we were ever going to have a hit, this one would be it. I remember we presented it to Island Records and they were a bit skeptical. They didn’t even really like the name “The Buggles” either, but it ended up being our first major hit in the UK.</em>\r\n\r\n<strong>Have you ever given thought to writing a book chronicling your life?</strong>\r\n\r\n<em>I’ve been thinking about that recently. It really has been an amazing journey and is something I’ll definitely be looking into… when I have the time [laughs].</em>\r\n\r\n<strong>With all of your success with The Buggles, Yes, Asia, New Dance Orchestra and all of your other projects, is there anything that stands out as most memorable?</strong>\r\n\r\n<em>There are so many. Obviously, you have to look at the first Buggles album because it was the one that introduced me into the business. The Drama album is very satisfying because more and more die-hard Yes fans can relate to that album </em><em>as time has gone by</em>.\r\n\r\n<em>Then of course there’s the first Asia album.</em>\r\n\r\n<em>I’ll never forget sitting in the car with John Wetton. We had just arrived in the States shortly after the album had come out and “Heat of The Moment” was playing on the radio. I remember we changed the channel and at that exact moment another station was playing “Only Time Will Tell.” To have those tracks both playing simultaneously on two different radio stations in the same city was surreal. At that moment we both knew what we had was going to be something really special.</em>\r\n\r\nInterview by James Wood.\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>\r\n\r\n ','Keyboardist Geoff Downes Discusses New Dance Orchestra, Asia','','publish','open','open','','keyboardist-geoff-downes-discusses-new-dance-orchestra-asia','','','2014-02-11 09:13:06','2014-02-11 15:13:06','',0,'http://www.earthhertzrecords.com/?p=1542',0,'post','',0),(1543,2,'2014-02-10 19:31:00','2014-02-11 01:31:00','Do you remember where you were when you first heard it? I do. It was June of 1982 and I was sitting in seventh grade music class during one of the last days before summer vacation.\r\n\r\nThe school was one of those two-story brick structures that had no air conditioning and by mid-morning temperatures in the classroom had risen to almost unbearable levels. The open windows and portable fans that circulated hot air throughout the classroom provided little relief to a bunch of teenagers waiting for that final bell to sound.\r\n\r\nAs a sort-of end of year gift to the class, the teacher allowed students to bring in some of their albums to listen to while we cleared out our desks. That was when this kid named Danny put it on the turntable. As needle met vinyl and the crackling hum and hiss began, it was the first time I heard that now infamous guitar riff and opening line:\r\n\r\n“I never meant to be so bad to you. One thing I said that I would never do …”\r\n\r\n“Heat of The Moment” became the coolest thing ever to me on that apropos day. The day I joined the eventual 8 million other people who bought the band Asia’s debut album.\r\n\r\nSince then, I’ve been a fan of keyboardist <a href=\"http://geoffdownes.com/\">Geoff Downes.</a> Not only for his experimentation of all things keyboard, but also for his songwriting ability. In addition to having the best selling album of 1982 with Asia, Downes also holds the coveted distinction of being part of the very first video ever played on MTV (Video Killed The Radio Star).\r\n\r\nToday, in between his work with Asia and Yes, Downes finds time to work on other projects as well. His most recent, New Dance Orchestra’s “Electronica” features the phenomenal vocals of Anne-Marie Helder (Panic Room, Mostly Autumn) and utilizes sounds from the latest computer technology. The result is a collection of virtual orchestrations that defy standard definition. Blending elements of classical, new age, pop and electronica, Downes uses rich textures to take the listener on a journey of spiritual enlightenment.\r\n\r\nI spoke with Downes about Electronica as well as the forthcoming Asia album Gravitas, which features founding members Downes (keyboards), John Wetton (bass) and Carl Palmer (drums) as well as new guitarist Sam Coulson. He also tells me about some of the most memorable moments of his career.\r\n\r\n<strong>How would you describe the sound of Electronica?</strong>\r\n\r\n<em>It’s a good combination of a lot of the influences I’ve had over the years. From my time with The Buggles to session work and some of the other projects I’ve been involved with like Yes and Asia. It’s a nice variety of music and an amalgamy of many of the things that I’ve been through over the course of my career.\r\n</em>\r\n\r\n<strong>How do you approach songwriting for a project like New Dance Orchestra as opposed to one for Asia or Yes?</strong>\r\n\r\n<em>When I create songs for New Dance Orchestra, there’s a lot of experimentation that I like to do. Some of the material comes from me tinkering with the latest sounds on computers. I’m very much into the technical aspect of the keyboard and like to experiment a lot with them.</em>\r\n\r\n<strong>How did you connect with Anne-Marie Helder?</strong>\r\n\r\n<em>I had worked with Anne-Marie on the Icon project I did with John Wetton. She came in and did vocals on a few of the tracks. She’s one of the top prog-rock vocalists and is very much in demand. </em>\r\n\r\n \r\n\r\n<strong>When Steve Howe announced his retirement as guitarist for Asia, was there ever a moment where the band thought about slowing down?</strong>\r\n\r\n \r\n\r\n<em>The rest of us always felt that it was worth continuing. Steve has his reasons for wanting to move on and concentrate more on his solo material. He’s pretty much been on the road for the last seven years doing solo material and his trio in addition to having the extra pressure of Yes and Asia. He felt it was time to try other things, which is fine.</em>\r\n\r\n \r\n\r\n<em>We brought in Sam (Coulson), who was recommended to us by Paul Gilbert. He’s a different type of player from Steve and brings with him his own sound. The actual emphasis was never to change direction but to evolve.</em>\r\n\r\n \r\n\r\n<strong>What can you tell us about the new Asia album, Gravitas?</strong>\r\n\r\n \r\n\r\n<em>We finished the album just before Christmas and it’s going to be released the last week of March. The cover was once again designed by Roger Dean. It’s another Asia album with songs written by myself and John Wetton.\r\n</em>\r\n\r\n \r\n\r\n<strong>What’s the writing process like when you and John get together?</strong>\r\n\r\n \r\n\r\n<em>Generally, we’ll both come in and open our ‘war chests’ of musical ideas. Whenever we get together in a session, it’s rare that we don’t come out of it with at least one or two songs.</em>\r\n\r\n \r\n\r\n<strong>Can you tell me the origin of “Only Time Will Tell”?</strong>\r\n\r\n<em>That one started off with what became the chorus part. It was something I had actually written for a jingle company. I had the basic idea for what became the chorus and I played it for John. That’s when he said “Hey, I think I’ve got something that might go with that” and started playing me the first verse. Originally, the song was going to be called “Starry Eyed”. It was a very in-depth collaboration with a very proggy, sentimental arrangement. It’s one of my favorite pieces that we’ve ever done in terms of Asia’s history because it has such depth and texture to it.</em>\r\n\r\n<strong>When The Buggles released “Video Killed The Radio Star” did you have a feeling of how special it was going to be?</strong>\r\n\r\n<em>We knew that it was a great song and a great record when we finished it. Trevor Horn and I both thought that if we were ever going to have a hit, this one would be it. I remember we presented it to Island Records and they were a bit skeptical. They didn’t even really like the name “The Buggles” either, but it ended up being our first major hit in the UK.</em>\r\n\r\n<strong>Have you ever given thought to writing a book chronicling your life?</strong>\r\n\r\n<em>I’ve been thinking about that recently. It really has been an amazing journey and is something I’ll definitely be looking into… when I have the time [laughs].</em>\r\n\r\n<strong>With all of your success with The Buggles, Yes, Asia, New Dance Orchestra and all of your other projects, is there anything that stands out as most memorable?</strong>\r\n\r\n<em>There are so many. Obviously, you have to look at the first Buggles album because it was the one that introduced me into the business. The Drama album is very satisfying because more and more die-hard Yes fans can relate to that album </em><em>as time has gone by</em>.\r\n\r\n<em>Then of course there’s the first Asia album.</em>\r\n\r\n<em>I’ll never forget sitting in the car with John Wetton. We had just arrived in the States shortly after the album had come out and “Heat of The Moment” was playing on the radio. I remember we changed the channel and at that exact moment another station was playing “Only Time Will Tell.” To have those tracks both playing simultaneously on two different radio stations in the same city was surreal. At that moment we both knew what we had was going to be something really special.</em>','Keyboardist Geoff Downes Discusses New Dance Orchestra, Asia','','inherit','open','open','','1542-revision-v1','','','2014-02-10 19:31:00','2014-02-11 01:31:00','',1542,'http://www.earthhertzrecords.com/2014/02/1542-revision-v1/',0,'revision','',0),(1544,2,'2014-02-10 19:36:35','2014-02-11 01:36:35','','geoffdownes','','inherit','open','open','','geoffdownes','','','2014-02-10 19:36:35','2014-02-11 01:36:35','',1542,'http://www.earthhertzrecords.com/wp-content/uploads/2014/02/geoffdownes.jpg',0,'attachment','image/jpeg',0),(1545,2,'2014-02-10 19:37:53','2014-02-11 01:37:53','','ndoelectronica','','inherit','open','open','','ndoelectronica','','','2014-02-10 19:37:53','2014-02-11 01:37:53','',1542,'http://www.earthhertzrecords.com/wp-content/uploads/2014/02/ndoelectronica.jpg',0,'attachment','image/jpeg',0),(1546,2,'2014-02-10 19:39:53','2014-02-11 01:39:53','','asiagravitas','','inherit','open','open','','asiagravitas','','','2014-02-10 19:39:53','2014-02-11 01:39:53','',1542,'http://www.earthhertzrecords.com/wp-content/uploads/2014/02/asiagravitas.jpg',0,'attachment','image/jpeg',0),(1547,2,'2014-02-10 19:45:20','2014-02-11 01:45:20','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/geoffdownes.jpg\"><img class=\"alignright size-medium wp-image-1544\" alt=\"geoffdownes\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/geoffdownes-198x300.jpg\" width=\"198\" height=\"300\" /></a>Do you remember where you were when you first heard it? I do. It was June of 1982 and I was sitting in seventh grade music class during one of the last days before summer vacation.\r\n\r\nThe school was one of those two-story brick structures that had no air conditioning and by mid-morning temperatures in the classroom had risen to almost unbearable levels. The open windows and portable fans that circulated hot air throughout the classroom provided little relief to a bunch of teenagers waiting for that final bell to sound.\r\n\r\nAs a sort-of end of year gift to the class, the teacher allowed students to bring in some of their albums to listen to while we cleared out our desks. That was when this kid named Danny put it on the turntable. As needle met vinyl and the crackling hum and hiss began, it was the first time I heard that now infamous guitar riff and opening line:\r\n\r\n“I never meant to be so bad to you. One thing I said that I would never do …”\r\n\r\n“Heat of The Moment” became the coolest thing ever to me on that apropos day. The day I joined the eventual 8 million other people who bought the band Asia’s debut album.\r\n\r\nSince then, I’ve been a fan of keyboardist <a href=\"http://geoffdownes.com/\">Geoff Downes.</a> Not only for his experimentation of all things keyboard, but also for his songwriting ability. In addition to having the best selling album of 1982 with Asia, Downes also holds the coveted distinction of being part of the very first video ever played on MTV (Video Killed The Radio Star).\r\n\r\nToday, in between his work with Asia and Yes, Downes finds time to work on other projects as well. His most recent, New Dance Orchestra’s <em>Electronica</em> features the phenomenal vocals of Anne-Marie Helder (Panic Room, Mostly Autumn) and utilizes sounds from the latest computer technology. The result is a collection of virtual orchestrations that defy standard definition. Blending elements of classical, new age, pop and electronica, Downes uses rich textures to take the listener on a journey of spiritual enlightenment.\r\n\r\nI spoke with Downes about <em>Electronica</em> as well as the forthcoming Asia album <em>Gravitas</em>, which features founding members Downes (keyboards), John Wetton (bass) and Carl Palmer (drums) as well as new guitarist Sam Coulson. He also tells me about some of the most memorable moments of his career.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/ndoelectronica.jpg\"><img class=\"alignleft size-full wp-image-1545\" alt=\"ndoelectronica\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/ndoelectronica.jpg\" width=\"291\" height=\"300\" /></a>How would you describe the sound of <em>Electronica</em>?</strong>\r\n\r\n<em>It’s a good combination of a lot of the influences I’ve had over the years. From my time with The Buggles to session work and some of the other projects I’ve been involved with like Yes and Asia. It’s a nice variety of music and an amalgamy of many of the things that I’ve been through over the course of my career.\r\n</em>\r\n\r\n<strong>How do you approach songwriting for a project like New Dance Orchestra as opposed to one for Asia or Yes?</strong>\r\n\r\n<em>When I create songs for New Dance Orchestra, there’s a lot of experimentation that I like to do. Some of the material comes from me tinkering with the latest sounds on computers. I’m very much into the technical aspect of the keyboard and like to experiment a lot with them.</em>\r\n\r\n<strong>How did you connect with Anne-Marie Helder?</strong>\r\n\r\n<em>I had worked with Anne-Marie on the Icon project I did with John Wetton. She came in and did vocals on a few of the tracks. She’s one of the top prog-rock vocalists and is very much in demand. </em>\r\n\r\n<strong>When Steve Howe announced his retirement as guitarist for Asia, was there ever a moment where the band thought about slowing down?</strong>\r\n\r\n<em>The rest of us always felt that it was worth continuing. Steve has his reasons for wanting to move on and concentrate more on his solo material. He’s pretty much been on the road for the last seven years doing solo material and his trio in addition to having the extra pressure of Yes and Asia. He felt it was time to try other things, which is fine.</em>\r\n\r\n<em>We brought in Sam (Coulson), who was recommended to us by Paul Gilbert. He’s a different type of player from Steve and brings with him his own sound. The actual emphasis was never to change direction but to evolve.</em>\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/asiagravitas.jpg\"><img class=\"alignright size-full wp-image-1546\" alt=\"asiagravitas\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/asiagravitas.jpg\" width=\"300\" height=\"300\" /></a></strong><strong>What can you tell us about the new Asia album, <em>Gravitas</em>?</strong>\r\n\r\n<em>We finished the album just before Christmas and it’s going to be released the last week of March. The cover was once again designed by Roger Dean. It’s another Asia album with songs written by myself and John Wetton.</em>\r\n\r\n<strong>What’s the writing process like when you and John get together?</strong>\r\n\r\n<em>Generally, we’ll both come in and open our ‘war chests’ of musical ideas. Whenever we get together in a session, it’s rare that we don’t come out of it with at least one or two songs.</em>\r\n\r\n<strong>Can you tell me the origin of “Only Time Will Tell”?</strong>\r\n\r\n<em>That one started off with what became the chorus part. It was something I had actually written for a jingle company. I had the basic idea for what became the chorus and I played it for John. That’s when he said “Hey, I think I’ve got something that might go with that” and started playing me the first verse. Originally, the song was going to be called “Starry Eyed”. It was a very in-depth collaboration with a very proggy, sentimental arrangement. It’s one of my favorite pieces that we’ve ever done in terms of Asia’s history because it has such depth and texture to it.</em>\r\n\r\n<strong>When The Buggles released “Video Killed The Radio Star” did you have a feeling of how special it was going to be?</strong>\r\n\r\n<em>We knew that it was a great song and a great record when we finished it. Trevor Horn and I both thought that if we were ever going to have a hit, this one would be it. I remember we presented it to Island Records and they were a bit skeptical. They didn’t even really like the name “The Buggles” either, but it ended up being our first major hit in the UK.</em>\r\n\r\n<strong>Have you ever given thought to writing a book chronicling your life?</strong>\r\n\r\n<em>I’ve been thinking about that recently. It really has been an amazing journey and is something I’ll definitely be looking into… when I have the time [laughs].</em>\r\n\r\n<strong>With all of your success with The Buggles, Yes, Asia, New Dance Orchestra and all of your other projects, is there anything that stands out as most memorable?</strong>\r\n\r\n<em>There are so many. Obviously, you have to look at the first Buggles album because it was the one that introduced me into the business. The Drama album is very satisfying because more and more die-hard Yes fans can relate to that album </em><em>as time has gone by</em>.\r\n\r\n<em>Then of course there’s the first Asia album.</em>\r\n\r\n<em>I’ll never forget sitting in the car with John Wetton. We had just arrived in the States shortly after the album had come out and “Heat of The Moment” was playing on the radio. I remember we changed the channel and at that exact moment another station was playing “Only Time Will Tell.” To have those tracks both playing simultaneously on two different radio stations in the same city was surreal. At that moment we both knew what we had was going to be something really special.</em>','Keyboardist Geoff Downes Discusses New Dance Orchestra, Asia','','inherit','open','open','','1542-revision-v1','','','2014-02-10 19:45:20','2014-02-11 01:45:20','',1542,'http://www.earthhertzrecords.com/2014/02/1542-revision-v1/',0,'revision','',0),(1548,2,'2014-02-10 19:55:02','2014-02-11 01:55:02','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/geoffdownes.jpg\"><img class=\"alignright size-medium wp-image-1544\" alt=\"geoffdownes\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/geoffdownes-198x300.jpg\" width=\"198\" height=\"300\" /></a>Do you remember where you were when you first heard it? I do. It was June of 1982 and I was sitting in seventh grade music class during one of the last days before summer vacation.\r\n\r\nThe school was one of those two-story brick structures that had no air conditioning and by mid-morning temperatures in the classroom had risen to almost unbearable levels. The open windows and portable fans that circulated hot air throughout the classroom provided little relief to a bunch of teenagers waiting for that final bell to sound.\r\n\r\nAs a sort-of end of year gift to the class, the teacher allowed students to bring in some of their albums to listen to while we cleared out our desks. That was when this kid named Danny put it on the turntable. As needle met vinyl and the crackling hum and hiss began, it was the first time I heard that now infamous guitar riff and opening line:\r\n\r\n“I never meant to be so bad to you. One thing I said that I would never do …”\r\n\r\n“Heat of The Moment” became the coolest thing ever to me on that apropos day. The day I joined the eventual 8 million other people who bought the band Asia’s debut album.\r\n\r\nSince then, I’ve been a fan of keyboardist <a href=\"http://geoffdownes.com/\">Geoff Downes.</a> Not only for his experimentation of all things keyboard, but also for his songwriting ability. In addition to having the best selling album of 1982 with Asia, Downes also holds the coveted distinction of being part of the very first video ever played on MTV (Video Killed The Radio Star).\r\n\r\nToday, in between his work with Asia and Yes, Downes finds time to work on other projects as well. His most recent, New Dance Orchestra’s <em>Electronica</em> features the phenomenal vocals of Anne-Marie Helder (Panic Room, Mostly Autumn) and utilizes sounds from the latest computer technology. The result is a collection of virtual orchestrations that defy standard definition. Blending elements of classical, new age, pop and electronica, Downes uses rich textures to take the listener on a journey of spiritual enlightenment.\r\n\r\nI spoke with Downes about <em>Electronica</em> as well as the forthcoming Asia album <em>Gravitas</em>, which features founding members Downes (keyboards), John Wetton (bass) and Carl Palmer (drums) as well as new guitarist Sam Coulson. He also tells me about some of the most memorable moments of his career.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/ndoelectronica.jpg\"><img class=\"alignleft size-full wp-image-1545\" alt=\"ndoelectronica\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/ndoelectronica.jpg\" width=\"291\" height=\"300\" /></a>How would you describe the sound of <em>Electronica</em>?</strong>\r\n\r\n<em>It’s a good combination of a lot of the influences I’ve had over the years. From my time with The Buggles to session work and some of the other projects I’ve been involved with like Yes and Asia. It’s a nice variety of music and an amalgamy of many of the things that I’ve been through over the course of my career.\r\n</em>\r\n\r\n<strong>How do you approach songwriting for a project like New Dance Orchestra as opposed to one for Asia or Yes?</strong>\r\n\r\n<em>When I create songs for New Dance Orchestra, there’s a lot of experimentation that I like to do. Some of the material comes from me tinkering with the latest sounds on computers. I’m very much into the technical aspect of the keyboard and like to experiment a lot with them.</em>\r\n\r\n<strong>How did you connect with Anne-Marie Helder?</strong>\r\n\r\n<em>I had worked with Anne-Marie on the Icon project I did with John Wetton. She came in and did vocals on a few of the tracks. She’s one of the top prog-rock vocalists and is very much in demand. </em>\r\n\r\n<strong>When Steve Howe announced his retirement as guitarist for Asia, was there ever a moment where the band thought about slowing down?</strong>\r\n\r\n<em>The rest of us always felt that it was worth continuing. Steve has his reasons for wanting to move on and concentrate more on his solo material. He’s pretty much been on the road for the last seven years doing solo material and his trio in addition to having the extra pressure of Yes and Asia. He felt it was time to try other things, which is fine.</em>\r\n\r\n<em>We brought in Sam (Coulson), who was recommended to us by Paul Gilbert. He’s a different type of player from Steve and brings with him his own sound. The actual emphasis was never to change direction but to evolve.</em>\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/asiagravitas.jpg\"><img class=\"alignright size-full wp-image-1546\" alt=\"asiagravitas\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/asiagravitas.jpg\" width=\"300\" height=\"300\" /></a></strong><strong>What can you tell us about the new Asia album, <em>Gravitas</em>?</strong>\r\n\r\n<em>We finished the album just before Christmas and it’s going to be released the last week of March. The cover was once again designed by Roger Dean. It’s another Asia album with songs written by myself and John Wetton.</em>\r\n\r\n<strong>What’s the writing process like when you and John get together?</strong>\r\n\r\n<em>Generally, we’ll both come in and open our ‘war chests’ of musical ideas. Whenever we get together in a session, it’s rare that we don’t come out of it with at least one or two songs.</em>\r\n\r\n<strong>Can you tell me the origin of “Only Time Will Tell”?</strong>\r\n\r\n<em>That one started off with what became the chorus part. It was something I had actually written for a jingle company. I had the basic idea for what became the chorus and I played it for John. That’s when he said “Hey, I think I’ve got something that might go with that” and started playing me the first verse. Originally, the song was going to be called “Starry Eyed”. It was a very in-depth collaboration with a very proggy, sentimental arrangement. It’s one of my favorite pieces that we’ve ever done in terms of Asia’s history because it has such depth and texture to it.</em>\r\n\r\n<strong>When The Buggles released “Video Killed The Radio Star” did you have a feeling of how special it was going to be?</strong>\r\n\r\n<em>We knew that it was a great song and a great record when we finished it. Trevor Horn and I both thought that if we were ever going to have a hit, this one would be it. I remember we presented it to Island Records and they were a bit skeptical. They didn’t even really like the name “The Buggles” either, but it ended up being our first major hit in the UK.</em>\r\n\r\n<strong>Have you ever given thought to writing a book chronicling your life?</strong>\r\n\r\n<em>I’ve been thinking about that recently. It really has been an amazing journey and is something I’ll definitely be looking into… when I have the time [laughs].</em>\r\n\r\n<strong>With all of your success with The Buggles, Yes, Asia, New Dance Orchestra and all of your other projects, is there anything that stands out as most memorable?</strong>\r\n\r\n<em>There are so many. Obviously, you have to look at the first Buggles album because it was the one that introduced me into the business. The Drama album is very satisfying because more and more die-hard Yes fans can relate to that album </em><em>as time has gone by</em>.\r\n\r\n<em>Then of course there’s the first Asia album.</em>\r\n\r\n<em>I’ll never forget sitting in the car with John Wetton. We had just arrived in the States shortly after the album had come out and “Heat of The Moment” was playing on the radio. I remember we changed the channel and at that exact moment another station was playing “Only Time Will Tell.” To have those tracks both playing simultaneously on two different radio stations in the same city was surreal. At that moment we both knew what we had was going to be something really special.</em>\r\n\r\nInterview by James Wood.\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>\r\n\r\n ','Keyboardist Geoff Downes Discusses New Dance Orchestra, Asia','','inherit','open','open','','1542-revision-v1','','','2014-02-10 19:55:02','2014-02-11 01:55:02','',1542,'http://www.earthhertzrecords.com/2014/02/1542-revision-v1/',0,'revision','',0),(1549,2,'2014-02-10 19:58:52','2014-02-11 01:58:52','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/geoffdownes.jpg\"><img class=\"alignright size-medium wp-image-1544\" alt=\"geoffdownes\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/geoffdownes-198x300.jpg\" width=\"198\" height=\"300\" /></a>Do you remember where you were when you first heard it? I do. It was June of 1982 and I was sitting in seventh grade music class during one of the last days before summer vacation.\r\n\r\nThe school was one of those two-story brick structures that had no air conditioning and by mid-morning temperatures in the classroom had risen to almost unbearable levels. The open windows and portable fans that circulated hot air throughout the classroom provided little relief to a bunch of teenagers waiting for that final bell to sound.\r\n\r\nAs a sort-of end of year gift to the class, the teacher allowed students to bring in some of their albums to listen to while we cleared out our desks. That was when this kid named Danny put it on the turntable. As needle met vinyl and the crackling hum and hiss began, it was the first time I heard that now infamous guitar riff and opening line:\r\n\r\n<em>“I never meant to be so bad to you. One thing I said that I would never do …”</em>\r\n\r\n“Heat of The Moment” became the coolest thing ever to me on that apropos day. The day I joined the eventual 8 million other people who bought the band Asia’s debut album.\r\n\r\nSince then, I’ve been a fan of keyboardist <a href=\"http://geoffdownes.com/\">Geoff Downes.</a> Not only for his experimentation of all things keyboard, but also for his songwriting ability. In addition to having the best selling album of 1982 with Asia, Downes also holds the coveted distinction of being part of the very first video ever played on MTV (Video Killed The Radio Star).\r\n\r\nToday, in between his work with Asia and Yes, Downes finds time to work on other projects as well. His most recent, New Dance Orchestra’s <em>Electronica</em> features the phenomenal vocals of Anne-Marie Helder (Panic Room, Mostly Autumn) and utilizes sounds from the latest computer technology. The result is a collection of virtual orchestrations that defy standard definition. Blending elements of classical, new age, pop and electronica, Downes uses rich textures to take the listener on a journey of spiritual enlightenment.\r\n\r\nI spoke with Downes about <em>Electronica</em> as well as the forthcoming Asia album <em>Gravitas</em>, which features founding members Downes (keyboards), John Wetton (bass) and Carl Palmer (drums) as well as new guitarist Sam Coulson. He also tells me about some of the most memorable moments of his career.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/ndoelectronica.jpg\"><img class=\"alignleft size-full wp-image-1545\" alt=\"ndoelectronica\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/ndoelectronica.jpg\" width=\"291\" height=\"300\" /></a>How would you describe the sound of <em>Electronica</em>?</strong>\r\n\r\n<em>It’s a good combination of a lot of the influences I’ve had over the years. From my time with The Buggles to session work and some of the other projects I’ve been involved with like Yes and Asia. It’s a nice variety of music and an amalgamy of many of the things that I’ve been through over the course of my career.\r\n</em>\r\n\r\n<strong>How do you approach songwriting for a project like New Dance Orchestra as opposed to one for Asia or Yes?</strong>\r\n\r\n<em>When I create songs for New Dance Orchestra, there’s a lot of experimentation that I like to do. Some of the material comes from me tinkering with the latest sounds on computers. I’m very much into the technical aspect of the keyboard and like to experiment a lot with them.</em>\r\n\r\n<strong>How did you connect with Anne-Marie Helder?</strong>\r\n\r\n<em>I had worked with Anne-Marie on the Icon project I did with John Wetton. She came in and did vocals on a few of the tracks. She’s one of the top prog-rock vocalists and is very much in demand. </em>\r\n\r\n<strong>When Steve Howe announced his retirement as guitarist for Asia, was there ever a moment where the band thought about slowing down?</strong>\r\n\r\n<em>The rest of us always felt that it was worth continuing. Steve has his reasons for wanting to move on and concentrate more on his solo material. He’s pretty much been on the road for the last seven years doing solo material and his trio in addition to having the extra pressure of Yes and Asia. He felt it was time to try other things, which is fine.</em>\r\n\r\n<em>We brought in Sam (Coulson), who was recommended to us by Paul Gilbert. He’s a different type of player from Steve and brings with him his own sound. The actual emphasis was never to change direction but to evolve.</em>\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/asiagravitas.jpg\"><img class=\"alignright size-full wp-image-1546\" alt=\"asiagravitas\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/asiagravitas.jpg\" width=\"300\" height=\"300\" /></a></strong><strong>What can you tell us about the new Asia album, <em>Gravitas</em>?</strong>\r\n\r\n<em>We finished the album just before Christmas and it’s going to be released the last week of March. The cover was once again designed by Roger Dean. It’s another Asia album with songs written by myself and John Wetton.</em>\r\n\r\n<strong>What’s the writing process like when you and John get together?</strong>\r\n\r\n<em>Generally, we’ll both come in and open our ‘war chests’ of musical ideas. Whenever we get together in a session, it’s rare that we don’t come out of it with at least one or two songs.</em>\r\n\r\n<strong>Can you tell me the origin of “Only Time Will Tell”?</strong>\r\n\r\n<em>That one started off with what became the chorus part. It was something I had actually written for a jingle company. I had the basic idea for what became the chorus and I played it for John. That’s when he said “Hey, I think I’ve got something that might go with that” and started playing me the first verse. Originally, the song was going to be called “Starry Eyed”. It was a very in-depth collaboration with a very proggy, sentimental arrangement. It’s one of my favorite pieces that we’ve ever done in terms of Asia’s history because it has such depth and texture to it.</em>\r\n\r\n<strong>When The Buggles released “Video Killed The Radio Star” did you have a feeling of how special it was going to be?</strong>\r\n\r\n<em>We knew that it was a great song and a great record when we finished it. Trevor Horn and I both thought that if we were ever going to have a hit, this one would be it. I remember we presented it to Island Records and they were a bit skeptical. They didn’t even really like the name “The Buggles” either, but it ended up being our first major hit in the UK.</em>\r\n\r\n<strong>Have you ever given thought to writing a book chronicling your life?</strong>\r\n\r\n<em>I’ve been thinking about that recently. It really has been an amazing journey and is something I’ll definitely be looking into… when I have the time [laughs].</em>\r\n\r\n<strong>With all of your success with The Buggles, Yes, Asia, New Dance Orchestra and all of your other projects, is there anything that stands out as most memorable?</strong>\r\n\r\n<em>There are so many. Obviously, you have to look at the first Buggles album because it was the one that introduced me into the business. The Drama album is very satisfying because more and more die-hard Yes fans can relate to that album </em><em>as time has gone by</em>.\r\n\r\n<em>Then of course there’s the first Asia album.</em>\r\n\r\n<em>I’ll never forget sitting in the car with John Wetton. We had just arrived in the States shortly after the album had come out and “Heat of The Moment” was playing on the radio. I remember we changed the channel and at that exact moment another station was playing “Only Time Will Tell.” To have those tracks both playing simultaneously on two different radio stations in the same city was surreal. At that moment we both knew what we had was going to be something really special.</em>\r\n\r\nInterview by James Wood.\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>\r\n\r\n ','Keyboardist Geoff Downes Discusses New Dance Orchestra, Asia','','inherit','open','open','','1542-revision-v1','','','2014-02-10 19:58:52','2014-02-11 01:58:52','',1542,'http://www.earthhertzrecords.com/2014/02/1542-revision-v1/',0,'revision','',0),(1551,2,'2014-02-17 15:22:13','2014-02-17 21:22:13','[caption id=\"attachment_1554\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/800px-Scorpions_live_2010.jpg\"><img class=\"size-medium wp-image-1554\" alt=\"800px-Scorpions_live_2010\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/800px-Scorpions_live_2010-300x199.jpg\" width=\"300\" height=\"199\" /></a> Photo by aresauburn™[/caption]\r\n\r\nSince forming in Germany in 1965 the <a href=\"http://www.the-scorpions.com/english/\">Scorpions</a> have become one of the most successful international hard rock bands of all time; selling upwards of 75 million records worldwide while playing more than 5,000 concerts in over 80 countries.\r\n\r\nKnown for colossal hits that include “Rock You Like A Hurricane,” “No One Like You” and “Wind of Change”, the band was ranked #46 on VH1′s “Greatest Artists Of Hard Rock” special, while “Rock You Like A Hurricane” came in at #18 on the channel’s list of “Greatest Hard Rock Songs”.\r\n\r\nIn 2010 the band announced a final studio album, <em>Sting In The Tail</em> that would coincide with an epic Farewell World Tour. It’s a tour that to the delight of fans has been going on for more than three years. Late in 2012, just as the band was finishing up their final show of the year, they were approached about doing an intimate, all acoustic project they had never done before. The result: Scorpions MTV Unplugged.\r\n\r\nTaken from two dynamic acoustic performances from the Lycabettus Theatre in Athens, Greece, this deluxe CD + DVD package and Blu-Ray features new acoustic versions of the band’s best-loved classics as well as five brand new songs.\r\n\r\nThe Scorpions is Klaus Meine <em>(vocals/guitar)</em>, Rudolf Schenker <em>(guitars/vocals)</em>, Matthias Jabs <em>(guitars)</em>, Pawel Maciwoda<em> (bass)</em> and James Kottak <em>(drums)</em>. Additional musical support on MTV Unplugged includes contributions from Swedish musicians and producers Mikael Nord Andersson <em>(guitars, mandolin, lap steel, vocals)</em> and Martin Hansen <em>(guitars, harmonica, vocals)</em>. The duo is also responsible for the arrangements on MTV Umplugged.\r\n\r\nI spoke with Matthias Jabs about MTV Unplugged and got an update on the band’s current activities. We also discussed the 30th anniversary of the band’s monumental album, <em>Love At First Sting</em>.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/scorpions.jpg\"><img class=\"alignleft size-full wp-image-1560\" alt=\"scorpions\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/scorpions.jpg\" width=\"300\" height=\"298\" /></a>What made the band decide to undertake an unplugged project?</strong>\r\n\r\nIt was something that we had never done before and something that we had missed out on in the 80′s because we were so busy. Now that we had the time, we went to Stockholm and worked with Swedish producers. They’re also great musicians and ended up being on stage with us.\r\n\r\n<strong>How was it arranging the songs into an acoustic format?</strong>\r\n\r\nIn some ways it was easy, but for some of the songs that everybody knows it presented a much greater challenge. We also chose some songs that we had never performed live before. We really wanted to make it special for the fans with the acoustic guitars and classical orchestra. The end result is quite good. It’s interesting and different, especially with all of the guest musicians.\r\n\r\n<strong>Did you find it more challenging performing songs this way?</strong>\r\n\r\nPlaying in an acoustic setting is very unforgiving and the arrangements were done in such a way that you couldn’t just pick up one guitar and play the entire set. There were many different tunings and capos that we used. And the deeper we got into the project, the more instruments and tunings would come out. We ended up adding piano, mandolin, accordion and even a harp. We also had close to 56 acoustic guitars on stage with us!\r\n\r\n<strong>Why did you choose this particular venue?</strong>\r\n\r\nMTV originally wanted to release the album in the late fall before Christmas. Summer is always vacation time in Europe so to be outside in September, we decided to go to Greece. They have the best climate and great audiences. The temperature was so perfect you didn’t even have to think about it. The amphitheater actually sits on top of the highest mountain in Athens. From the top, you can look down at the city and see the millions of lights below. it’s almost like looking down into Los Angeles from the Hollywood Hills. It’s a stunning view.\r\n\r\n<strong>Is the band planning any U.S. tour dates this year?</strong>\r\n\r\nYes, we’re working on playing some U.S. shows maybe in late summer.\r\n\r\n<strong>This year marks the 30th anniversary of <em>Love At First Sting</em>. When you think about that album, what comes to mind?</strong>\r\n\r\nWe knew we had something special. Even though <em>Blackout</em> was very successful and our first major success as a headliner in the U.S., <em>Love At First Sting</em> topped it. Songs like “Rock You Like A Hurricane” and “Still Loving You”, which became a big hit in Europe. “Big City Nights” was another song that was played on the radio a lot. There are so many good songs on the album that made it so strong. I remember it was a bit hectic recording and we almost missed the deadline, but once we heard the first mixes we had a very good feeling about it<em>.</em>\r\n\r\n[caption id=\"attachment_1559\" align=\"alignleft\" width=\"273\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/MatthiasJabsKavarna2009.jpg\"><img class=\"size-medium wp-image-1559\" alt=\"MatthiasJabsKavarna2009\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/MatthiasJabsKavarna2009-273x300.jpg\" width=\"273\" height=\"300\" /></a> Photo by Stolz[/caption]\r\n\r\n<strong>How did Rudolf come up with the riff for “Rock You Like A Hurricane”?</strong>\r\n\r\nRudolf and I were actually talking about it before hand. I had told him to try to find riffs that used pauses and accents. Not ones that just play continuously through all the time. So we talked about it, and that’s when he came up with that riff. At the time, I remember being more concerned about writing the lead guitar intro for it, which was something I had already done for “No One Like You”.\r\n\r\n<strong>What was the process like for building the intro?</strong>\r\n\r\nThe rule was find a riff, then put a melody on top and then play it in harmony. I still remember the first time I played it for the producers and band when we were in the studio. I played the first line and then the harmony part and everyone went, “OH, YES! HERE COMES THE SUN!” [laughs]. We knew we had something great. I felt the exact same way with “No One Like You”. It instantly sounds like a hit, even when you hear it for the very first time.\r\n\r\n<strong>In the 80′s, new bands like Def Leppard, Iron Maiden and Bon Jovi supported Scorpions before making a name for themselves. What was your criteria for choosing them?</strong>\r\n\r\nGood songs are what made the difference. All of the bands you mentioned that supported us, starting with Def Leppard in 1980, Iron Maiden in ’82 and Bon Jovi in ’84 all became huge, but we chose them because we liked their song material and attitudes. That’s what was the deciding point.\r\n\r\n<strong>What can you tell us about the band’s new album of unreleased 80′s material?</strong>\r\n\r\nWhile we were digging into the archives we found a lot of unfinished songs that we didn’t use for various reasons. Mostly material from the <em>Blackout</em> and <em>Love at First Sting</em> era, which was our most creative time. We now have 12 basic tracks down that we’ll finish recording sometime this summer and maybe even include a few new songs as well. The ideas are from then, but the album’s from now. We’re hoping to release it next year.\r\n\r\n<strong>What are some of the biggest highlights of your career?</strong>\r\n\r\nThe US Festival in 1983 was amazing because it was so unexpected. All of a sudden, we were coming out of the studio to play in front of 300,000 people. Then there was Rock in Rio in ’85, the Moscow Music Peace Festival, Monsters of Rock in ’89 with Van-Halen and Metallica. There are so many highlights, it’s hard to find a dull moment. But I think the biggest highlight is that we’re all still together and are still friends after creating this great career. We’re still having fun making music both in the studio and playing live. That’s the real highlight<em>.</em>\r\n\r\n<strong>In retrospect, do you think that <em>Sting In The Tail</em> and The Farewell Tour might have been a bit premature?</strong>\r\n\r\nThe original idea was that this was going to be the last studio recording. For the last 35 years we’ve been recording an album, going on the road for 2 1/2 years, coming back home, recording an album…. It’s become routine, but we never wanted to stop making music. We just wanted to scale it down a bit. We also said that we’d be open for special projects, like MTV Unplugged and digging down for older, unreleased material. Those are things we don’t do everyday. The fans love it, and that’s reason enough to do it.\r\n\r\nInterview by James Wood.\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at: </i></strong><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Guitarist Matthias Jabs Talks Scorpions MTV Unplugged','','publish','open','open','','guitarist-matthias-jabs-talks-scorpions-mtv-unplugged','','','2014-02-17 15:22:13','2014-02-17 21:22:13','',0,'http://www.earthhertzrecords.com/?p=1551',0,'post','',0),(1553,2,'2014-02-13 13:23:11','2014-02-13 19:23:11','Since forming in Germany in 1965 the Scorpions have become one of the most successful international hard rock bands of all time; selling upwards of 75 million records worldwide while playing more than 5,000 concerts in over 80 countries.\r\n\r\nKnown for colossal hits that include “Rock You Like A Hurricane,” “No One Like You” and “Wind of Change”, the band was ranked #46 on VH1′s “Greatest Artists Of Hard Rock” special, while “Rock You Like A Hurricane” came in at #18 on the channel’s list of “Greatest Hard Rock Songs”.\r\n\r\nIn 2010 the band announced a final studio album, <em>Sting In The Tail</em> that would coincide with an epic Farewell World Tour. It’s a tour that to the delight of fans has been going on for more than three years. Late in 2012, just as the band was finishing up their final show of the year, they were approached about doing an intimate, all acoustic project they had never done before. The result: Scorpions MTV Unplugged.\r\n\r\nTaken from two dynamic acoustic performances from the Lycabettus Theatre in Athens, Greece, this deluxe CD + DVD package and Blu-Ray features new acoustic versions of the band’s best-loved classics as well as five brand new songs.\r\n\r\nThe Scorpions is Klaus Meine <em>(vocals/guitar)</em>, Rudolf Schenker <em>(guitars/vocals)</em>, Matthias Jabs <em>(guitars)</em>, Pawel Maciwoda<em> (bass)</em> and James Kottak <em>(drums)</em>. Additional musical support on MTV Unplugged includes contributions from Swedish musicians and producers Mikael Nord Andersson <em>(guitars, mandolin, lap steel, vocals)</em> and Martin Hansen <em>(guitars, harmonica, vocals)</em>. The duo is also responsible for the arrangements on MTV Umplugged.\r\n\r\nI spoke with Matthias Jabs about MTV Unplugged and got an update on the band’s current activities. We also discussed the 30th anniversary of the band’s monumental album, <em>Love At First Sting</em>.\r\n\r\n<strong>What made the band decide to undertake an unplugged project?</strong>\r\n\r\nIt was something that we had never done before and something that we had missed out on in the 80′s because we were so busy. Now that we had the time, we went to Stockholm and worked with Swedish producers. They’re also great musicians and ended up being on stage with us.\r\n\r\n<strong>How was it arranging the songs into an acoustic format?</strong>\r\n\r\nIn some ways it was easy, but for some of the songs that everybody knows it presented a much greater challenge. We also chose some songs that we had never performed live before. We really wanted to make it special for the fans with the acoustic guitars and classical orchestra. The end result is quite good. It’s interesting and different, especially with all of the guest musicians.\r\n\r\n<strong>Did you find it more challenging performing songs this way?</strong>\r\n\r\nPlaying in an acoustic setting is very unforgiving and the arrangements were done in such a way that you couldn’t just pick up one guitar and play the entire set. There were many different tunings and capos that we used. And the deeper we got into the project, the more instruments and tunings would come out. We ended up adding piano, mandolin, accordion and even a harp. We also had close to 56 acoustic guitars on stage with us!\r\n\r\n<strong>Why did you choose this particular venue?</strong>\r\n\r\nMTV originally wanted to release the album in the late fall before Christmas. Summer is always vacation time in Europe so to be outside in September, we decided to go to Greece. They have the best climate and great audiences. The temperature was so perfect you didn’t even have to think about it. The amphitheater actually sits on top of the highest mountain in Athens. From the top, you can look down at the city and see the millions of lights below. it’s almost like looking down into Los Angeles from the Hollywood Hills. It’s a stunning view.\r\n\r\n<strong>Is the band planning any U.S. tour dates this year?</strong>\r\n\r\nYes, we’re working on playing some U.S. shows maybe in late summer.\r\n\r\n<strong>This year marks the 30th anniversary of <em>Love At First Sting</em>. When you think about that album, what comes to mind?</strong>\r\n\r\nWe knew we had something special. Even though <em>Blackout</em> was very successful and our first major success as a headliner in the U.S., <em>Love At First Sting</em> topped it. Songs like “Rock You Like A Hurricane” and “Still Loving You”, which became a big hit in Europe. “Big City Nights” was another song that was played on the radio a lot. There are so many good songs on the album that made it so strong. I remember it was a bit hectic recording and we almost missed the deadline, but once we heard the first mixes we had a very good feeling about it<em>.</em>\r\n\r\n<strong>How did Rudolf come up with the riff for “Rock You Like A Hurricane”?</strong>\r\n\r\nRudolf and I were actually talking about it before hand. I had told him to try to find riffs that used pauses and accents. Not ones that just play continuously through all the time. So we talked about it, and that’s when he came up with that riff. At the time, I remember being more concerned about writing the lead guitar intro for it, which was something I had already done for “No One Like You”.\r\n\r\n<strong>What was the process like for building the intro?</strong>\r\n\r\nThe rule was find a riff, then put a melody on top and then play it in harmony. I still remember the first time I played it for the producers and band when we were in the studio. I played the first line and then the harmony part and everyone went, “OH, YES! HERE COMES THE SUN!” [laughs]. We knew we had something great. I felt the exact same way with “No One Like You”. It instantly sounds like a hit, even when you hear it for the very first time.\r\n\r\n<strong>In the 80′s, new bands like Def Leppard, Iron Maiden and Bon Jovi supported Scorpions before making a name for themselves. What was your criteria for choosing them?</strong>\r\n\r\nGood songs are what made the difference. All of the bands you mentioned that supported us, starting with Def Leppard in 1980, Iron Maiden in ’82 and Bon Jovi in ’84 all became huge, but we chose them because we liked their song material and attitudes. That’s what was the deciding point.\r\n\r\n<strong>What can you tell us about the band’s new album of unreleased 80′s material?</strong>\r\n\r\nWhile we were digging into the archives we found a lot of unfinished songs that we didn’t use for various reasons. Mostly material from the <em>Blackout</em> and <em>Love at First Sting</em> era, which was our most creative time. We now have 12 basic tracks down that we’ll finish recording sometime this summer and maybe even include a few new songs as well. The ideas are from then, but the album’s from now. We’re hoping to release it next year.\r\n\r\n<strong>What are some of the biggest highlights of your career?</strong>\r\n\r\nThe US Festival in 1983 was amazing because it was so unexpected. All of a sudden, we were coming out of the studio to play in front of 300,000 people. Then there was Rock in Rio in ’85, the Moscow Music Peace Festival, Monsters of Rock in ’89 with Van-Halen and Metallica. There are so many highlights, it’s hard to find a dull moment. But I think the biggest highlight is that we’re all still together and are still friends after creating this great career. We’re still having fun making music both in the studio and playing live. That’s the real highlight<em>.</em>\r\n\r\n<strong>In retrospect, do you think that <em>Sting In The Tail</em> and The Farewell Tour might have been a bit premature?</strong>\r\n\r\nThe original idea was that this was going to be the last studio recording. For the last 35 years we’ve been recording an album, going on the road for 2 1/2 years, coming back home, recording an album…. It’s become routine, but we never wanted to stop making music. We just wanted to scale it down a bit. We also said that we’d be open for special projects, like MTV Unplugged and digging down for older, unreleased material. Those are things we don’t do everyday. The fans love it, and that’s reason enough to do it.','Guitarist Matthias Jabs Talks Scorpions MTV Unplugged','','inherit','open','open','','1551-revision-v1','','','2014-02-13 13:23:11','2014-02-13 19:23:11','',1551,'http://www.earthhertzrecords.com/2014/02/1551-revision-v1/',0,'revision','',0),(1552,2,'2014-02-13 12:27:29','2014-02-13 18:27:29','Since forming in Germany in 1965 the Scorpions have become one of the most successful international hard rock bands of all time; selling upwards of 75 million records worldwide while playing more than 5,000 concerts in over 80 countries.\r\n\r\nKnown for colossal hits that include “Rock You Like A Hurricane,” “No One Like You” and “Wind of Change”, the band was ranked #46 on VH1′s “Greatest Artists Of Hard Rock” special, while “Rock You Like A Hurricane” came in at #18 on the channel’s list of “Greatest Hard Rock Songs”.\r\n\r\nIn 2010 the band announced a final studio album, “Sting In The Tail” that would coincide with an epic Farewell World Tour. It’s a tour that to the delight of fans has been going on for more than three years. Late in 2012, just as the band was finishing up their final show of the year, they were approached about doing an intimate, all acoustic project they had never done before. The result: Scorpions MTV Unplugged.\r\n\r\nTaken from two dynamic acoustic performances from the Lycabettus Theatre in Athens, Greece, this deluxe CD + DVD package and Blu-Ray features new acoustic versions of the band’s best-loved classics as well as five brand new songs.\r\n\r\nThe Scorpions is Klaus Meine <em>(vocals/guitar)</em>, Rudolf Schenker <em>(guitars/vocals)</em>, Matthias Jabs <em>(guitars)</em>, Pawel Maciwoda<em> (bass)</em> and James Kottak <em>(drums)</em>. Additional musical support on MTV Unplugged includes contributions from Swedish musicians and producers Mikael Nord Andersson <em>(guitars, mandolin, lap steel, vocals)</em> and Martin Hansen <em>(guitars, harmonica, vocals)</em>. The duo is also responsible for the arrangements on MTV Umplugged.\r\n\r\nI spoke with Matthias Jabs about MTV Unplugged and got an update on the band’s current activities. We also discussed the 30th anniversary of the band’s monumental album, “Love At First Sting”.\r\n\r\n<strong>What made the band decide to undertake an unplugged project?</strong>\r\n\r\n<em>It was something that we had never done before and something that we had missed out on in the 80′s because we were so busy. Now that we had the time, we went to Stockholm and worked with Swedish producers. They’re also great musicians and ended up being on stage with us.</em>\r\n\r\n<strong>How was it arranging the songs into an acoustic format?</strong>\r\n\r\n<em>In some ways it was easy, but for some of the songs that everybody knows it presented a much greater challenge. We also chose some songs that we had never performed live before. We really wanted to make it special for the fans with the acoustic guitars and classical orchestra. The end result is quite good. It’s interesting and different, especially with all of the guest musicians.</em>\r\n\r\n<strong>Did you find it more challenging performing songs this way?</strong>\r\n\r\n<em>Playing in an acoustic setting is very unforgiving and the arrangements were done in such a way that you couldn’t just pick up one guitar and play the entire set. There were many different tunings and capos that we used. And the deeper we got into the project, the more instruments and tunings would come out. We ended up adding piano, mandolin, accordion and even a harp. We also had close to 56 acoustic guitars on stage with us!</em>\r\n\r\n<strong>Why did you choose this particular venue?</strong>\r\n\r\n<em>MTV originally wanted to release the album in the late fall before Christmas. Summer is always vacation time in Europe so to be outside in September, we decided to go to Greece. They have the best climate and great audiences. The temperature was so perfect you didn’t even have to think about it. The amphitheater actually sits on top of the highest mountain in Athens. From the top, you can look down at the city and see the millions of lights below. it’s almost like looking down into Los Angeles from the Hollywood Hills. It’s a stunning view.</em>\r\n\r\n<strong>Is the band planning any U.S. tour dates this year?</strong>\r\n\r\n<em>Yes, we’re working on playing some U.S. shows maybe in late summer.</em>\r\n\r\n<strong>This year marks the 30th anniversary of “Love At First Sting”. When you think about that album, what comes to mind?</strong>\r\n\r\n<em>We knew we had something special. Even though “Blackout” was very successful and our first major success as a headliner in the U.S., “Love At First Sting” topped it. Songs like “Rock You Like A Hurricane” and “Still Loving You”, which became a big hit in Europe. “Big City Nights” was another song that was played on the radio a lot. There are so many good songs on the album that made it so strong. I remember it was a bit hectic recording and we almost missed the deadline, but once we heard the first mixes we had a very good feeling about it.</em>\r\n\r\n<strong>How did Rudolf come up with the riff for “Rock You Like A Hurricane”?</strong>\r\n\r\n<em>Rudolf and I were actually talking about it before hand. I had told him to try to find riffs that used pauses and accents. Not ones that just play continuously through all the time. So we talked about it, and that’s when he came up with that riff. At the time, I remember being more concerned about writing the lead guitar intro for it, which was something I had already done for “No One Like You”.</em>\r\n\r\n<strong>What was the process like for building the intro?</strong>\r\n\r\n<em>The rule was find a riff, then put a melody on top and then play it in harmony. I still remember the first time I played it for the producers and band when we were in the studio. I played the first line and then the harmony part and everyone went, “OH, YES! HERE COMES THE SUN!” [laughs]. We knew we had something great. I felt the exact same way with “No One Like You”. It instantly sounds like a hit, even when you hear it for the very first time.</em>\r\n\r\n<strong>In the 80′s, new bands like Def Leppard, Iron Maiden and Bon Jovi supported Scorpions before making a name for themselves. What was your criteria for choosing them?</strong>\r\n\r\n<em>Good songs are what made the difference. All of the bands you mentioned that supported us, starting with Def Leppard in 1980, Iron Maiden in ’82 and Bon Jovi in ’84 all became huge, but we chose them because we liked their song material and attitudes. That’s what was the deciding point</em>.\r\n\r\n<strong>What can you tell us about the band’s new album of unreleased 80′s material?</strong>\r\n\r\n<em>While we were digging into the archives we found a lot of unfinished songs that we didn’t use for various reasons. Mostly material from the Blackout and Love at First Sting era, which was our most creative time. We now have 12 basic tracks down that we’ll finish recording sometime this summer and maybe even include a few new songs as well. The ideas are from then, but the album’s from now. We’re hoping to release it next year.</em>\r\n\r\n<strong>What are some of the biggest highlights of your career?</strong>\r\n\r\n<em>The US Festival in 1983 was amazing because it was so unexpected. All of a sudden, we were coming out of the studio to play in front of 300,000 people. Then there was Rock in Rio in ’85, the Moscow Music Peace Festival, Monsters of Rock in ’89 with Van-Halen and Metallica. There are so many highlights, it’s hard to find a dull moment. But I think the biggest highlight is that we’re all still together and are still friends after creating this great career. We’re still having fun making music both in the studio and playing live. That’s the real highlight.</em>\r\n\r\n<strong>In retrospect, do you think that “Sting In The Tail” and The Farewell Tour might have been a bit premature?</strong>\r\n\r\n<em>The original idea was that this was going to be the last studio recording. For the last 35 years we’ve been recording an album, going on the road for 2 1/2 years, coming back home, recording an album…. It’s become routine, but we never wanted to stop making music. We just wanted to scale it down a bit. We also said that we’d be open for special projects, like MTV Unplugged and digging down for older, unreleased material. Those are things we don’t do everyday. The fans love it, and that’s reason enough to do it.</em>','Guitarist Matthias Jabs Talks Scorpions MTV Unplugged','','inherit','open','open','','1551-revision-v1','','','2014-02-13 12:27:29','2014-02-13 18:27:29','',1551,'http://www.earthhertzrecords.com/2014/02/1551-revision-v1/',0,'revision','',0),(1554,2,'2014-02-13 13:33:13','2014-02-13 19:33:13','','800px-Scorpions_live_2010','','inherit','open','open','','800px-scorpions_live_2010','','','2014-02-13 13:33:13','2014-02-13 19:33:13','',1551,'http://www.earthhertzrecords.com/wp-content/uploads/2014/02/800px-Scorpions_live_2010.jpg',0,'attachment','image/jpeg',0),(1559,2,'2014-02-13 13:42:10','2014-02-13 19:42:10','','MatthiasJabsKavarna2009','','inherit','open','open','','matthiasjabskavarna2009','','','2014-02-13 13:42:10','2014-02-13 19:42:10','',1551,'http://www.earthhertzrecords.com/wp-content/uploads/2014/02/MatthiasJabsKavarna2009.jpg',0,'attachment','image/jpeg',0),(1560,2,'2014-02-13 13:43:01','2014-02-13 19:43:01','','scorpions','','inherit','open','open','','scorpions','','','2014-02-13 13:43:01','2014-02-13 19:43:01','',1551,'http://www.earthhertzrecords.com/wp-content/uploads/2014/02/scorpions.jpg',0,'attachment','image/jpeg',0),(1561,2,'2014-02-13 13:46:20','2014-02-13 19:46:20','[caption id=\"attachment_1554\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/800px-Scorpions_live_2010.jpg\"><img class=\"size-medium wp-image-1554\" alt=\"800px-Scorpions_live_2010\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/800px-Scorpions_live_2010-300x199.jpg\" width=\"300\" height=\"199\" /></a> Photo by aresauburn™[/caption]\r\n\r\nSince forming in Germany in 1965 the <a href=\"http://www.the-scorpions.com/english/\">Scorpions</a> have become one of the most successful international hard rock bands of all time; selling upwards of 75 million records worldwide while playing more than 5,000 concerts in over 80 countries.\r\n\r\nKnown for colossal hits that include “Rock You Like A Hurricane,” “No One Like You” and “Wind of Change”, the band was ranked #46 on VH1′s “Greatest Artists Of Hard Rock” special, while “Rock You Like A Hurricane” came in at #18 on the channel’s list of “Greatest Hard Rock Songs”.\r\n\r\nIn 2010 the band announced a final studio album, <em>Sting In The Tail</em> that would coincide with an epic Farewell World Tour. It’s a tour that to the delight of fans has been going on for more than three years. Late in 2012, just as the band was finishing up their final show of the year, they were approached about doing an intimate, all acoustic project they had never done before. The result: Scorpions MTV Unplugged.\r\n\r\nTaken from two dynamic acoustic performances from the Lycabettus Theatre in Athens, Greece, this deluxe CD + DVD package and Blu-Ray features new acoustic versions of the band’s best-loved classics as well as five brand new songs.\r\n\r\nThe Scorpions is Klaus Meine <em>(vocals/guitar)</em>, Rudolf Schenker <em>(guitars/vocals)</em>, Matthias Jabs <em>(guitars)</em>, Pawel Maciwoda<em> (bass)</em> and James Kottak <em>(drums)</em>. Additional musical support on MTV Unplugged includes contributions from Swedish musicians and producers Mikael Nord Andersson <em>(guitars, mandolin, lap steel, vocals)</em> and Martin Hansen <em>(guitars, harmonica, vocals)</em>. The duo is also responsible for the arrangements on MTV Umplugged.\r\n\r\nI spoke with Matthias Jabs about MTV Unplugged and got an update on the band’s current activities. We also discussed the 30th anniversary of the band’s monumental album, <em>Love At First Sting</em>.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/scorpions.jpg\"><img class=\"alignleft size-full wp-image-1560\" alt=\"scorpions\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/scorpions.jpg\" width=\"300\" height=\"298\" /></a>What made the band decide to undertake an unplugged project?</strong>\r\n\r\nIt was something that we had never done before and something that we had missed out on in the 80′s because we were so busy. Now that we had the time, we went to Stockholm and worked with Swedish producers. They’re also great musicians and ended up being on stage with us.\r\n\r\n<strong>How was it arranging the songs into an acoustic format?</strong>\r\n\r\nIn some ways it was easy, but for some of the songs that everybody knows it presented a much greater challenge. We also chose some songs that we had never performed live before. We really wanted to make it special for the fans with the acoustic guitars and classical orchestra. The end result is quite good. It’s interesting and different, especially with all of the guest musicians.\r\n\r\n<strong>Did you find it more challenging performing songs this way?</strong>\r\n\r\nPlaying in an acoustic setting is very unforgiving and the arrangements were done in such a way that you couldn’t just pick up one guitar and play the entire set. There were many different tunings and capos that we used. And the deeper we got into the project, the more instruments and tunings would come out. We ended up adding piano, mandolin, accordion and even a harp. We also had close to 56 acoustic guitars on stage with us!\r\n\r\n<strong>Why did you choose this particular venue?</strong>\r\n\r\nMTV originally wanted to release the album in the late fall before Christmas. Summer is always vacation time in Europe so to be outside in September, we decided to go to Greece. They have the best climate and great audiences. The temperature was so perfect you didn’t even have to think about it. The amphitheater actually sits on top of the highest mountain in Athens. From the top, you can look down at the city and see the millions of lights below. it’s almost like looking down into Los Angeles from the Hollywood Hills. It’s a stunning view.\r\n\r\n<strong>Is the band planning any U.S. tour dates this year?</strong>\r\n\r\nYes, we’re working on playing some U.S. shows maybe in late summer.\r\n\r\n<strong>This year marks the 30th anniversary of <em>Love At First Sting</em>. When you think about that album, what comes to mind?</strong>\r\n\r\nWe knew we had something special. Even though <em>Blackout</em> was very successful and our first major success as a headliner in the U.S., <em>Love At First Sting</em> topped it. Songs like “Rock You Like A Hurricane” and “Still Loving You”, which became a big hit in Europe. “Big City Nights” was another song that was played on the radio a lot. There are so many good songs on the album that made it so strong. I remember it was a bit hectic recording and we almost missed the deadline, but once we heard the first mixes we had a very good feeling about it<em>.</em>\r\n\r\n[caption id=\"attachment_1559\" align=\"alignleft\" width=\"273\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/MatthiasJabsKavarna2009.jpg\"><img class=\"size-medium wp-image-1559\" alt=\"MatthiasJabsKavarna2009\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/MatthiasJabsKavarna2009-273x300.jpg\" width=\"273\" height=\"300\" /></a> Photo by Stolz[/caption]\r\n\r\nRudolf and I were actually talking about it before hand. I had told him to try to find riffs that used pauses and accents. Not ones that just play continuously through all the time. So we talked about it, and that’s when he came up with that riff. At the time, I remember being more concerned about writing the lead guitar intro for it, which was something I had already done for “No One Like You”.\r\n\r\n<strong>What was the process like for building the intro?</strong>\r\n\r\nThe rule was find a riff, then put a melody on top and then play it in harmony. I still remember the first time I played it for the producers and band when we were in the studio. I played the first line and then the harmony part and everyone went, “OH, YES! HERE COMES THE SUN!” [laughs]. We knew we had something great. I felt the exact same way with “No One Like You”. It instantly sounds like a hit, even when you hear it for the very first time.\r\n\r\n<strong>In the 80′s, new bands like Def Leppard, Iron Maiden and Bon Jovi supported Scorpions before making a name for themselves. What was your criteria for choosing them?</strong>\r\n\r\nGood songs are what made the difference. All of the bands you mentioned that supported us, starting with Def Leppard in 1980, Iron Maiden in ’82 and Bon Jovi in ’84 all became huge, but we chose them because we liked their song material and attitudes. That’s what was the deciding point.\r\n\r\n<strong>What can you tell us about the band’s new album of unreleased 80′s material?</strong>\r\n\r\nWhile we were digging into the archives we found a lot of unfinished songs that we didn’t use for various reasons. Mostly material from the <em>Blackout</em> and <em>Love at First Sting</em> era, which was our most creative time. We now have 12 basic tracks down that we’ll finish recording sometime this summer and maybe even include a few new songs as well. The ideas are from then, but the album’s from now. We’re hoping to release it next year.\r\n\r\n<strong>What are some of the biggest highlights of your career?</strong>\r\n\r\nThe US Festival in 1983 was amazing because it was so unexpected. All of a sudden, we were coming out of the studio to play in front of 300,000 people. Then there was Rock in Rio in ’85, the Moscow Music Peace Festival, Monsters of Rock in ’89 with Van-Halen and Metallica. There are so many highlights, it’s hard to find a dull moment. But I think the biggest highlight is that we’re all still together and are still friends after creating this great career. We’re still having fun making music both in the studio and playing live. That’s the real highlight<em>.</em>\r\n\r\n<strong>In retrospect, do you think that <em>Sting In The Tail</em> and The Farewell Tour might have been a bit premature?</strong>\r\n\r\nThe original idea was that this was going to be the last studio recording. For the last 35 years we’ve been recording an album, going on the road for 2 1/2 years, coming back home, recording an album…. It’s become routine, but we never wanted to stop making music. We just wanted to scale it down a bit. We also said that we’d be open for special projects, like MTV Unplugged and digging down for older, unreleased material. Those are things we don’t do everyday. The fans love it, and that’s reason enough to do it.','Guitarist Matthias Jabs Talks Scorpions MTV Unplugged','','inherit','open','open','','1551-revision-v1','','','2014-02-13 13:46:20','2014-02-13 19:46:20','',1551,'http://www.earthhertzrecords.com/2014/02/1551-revision-v1/',0,'revision','',0),(1562,2,'2014-02-13 13:50:59','2014-02-13 19:50:59','[caption id=\"attachment_1554\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/800px-Scorpions_live_2010.jpg\"><img class=\"size-medium wp-image-1554\" alt=\"800px-Scorpions_live_2010\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/800px-Scorpions_live_2010-300x199.jpg\" width=\"300\" height=\"199\" /></a> Photo by aresauburn™[/caption]\r\n\r\nSince forming in Germany in 1965 the <a href=\"http://www.the-scorpions.com/english/\">Scorpions</a> have become one of the most successful international hard rock bands of all time; selling upwards of 75 million records worldwide while playing more than 5,000 concerts in over 80 countries.\r\n\r\nKnown for colossal hits that include “Rock You Like A Hurricane,” “No One Like You” and “Wind of Change”, the band was ranked #46 on VH1′s “Greatest Artists Of Hard Rock” special, while “Rock You Like A Hurricane” came in at #18 on the channel’s list of “Greatest Hard Rock Songs”.\r\n\r\nIn 2010 the band announced a final studio album, <em>Sting In The Tail</em> that would coincide with an epic Farewell World Tour. It’s a tour that to the delight of fans has been going on for more than three years. Late in 2012, just as the band was finishing up their final show of the year, they were approached about doing an intimate, all acoustic project they had never done before. The result: Scorpions MTV Unplugged.\r\n\r\nTaken from two dynamic acoustic performances from the Lycabettus Theatre in Athens, Greece, this deluxe CD + DVD package and Blu-Ray features new acoustic versions of the band’s best-loved classics as well as five brand new songs.\r\n\r\nThe Scorpions is Klaus Meine <em>(vocals/guitar)</em>, Rudolf Schenker <em>(guitars/vocals)</em>, Matthias Jabs <em>(guitars)</em>, Pawel Maciwoda<em> (bass)</em> and James Kottak <em>(drums)</em>. Additional musical support on MTV Unplugged includes contributions from Swedish musicians and producers Mikael Nord Andersson <em>(guitars, mandolin, lap steel, vocals)</em> and Martin Hansen <em>(guitars, harmonica, vocals)</em>. The duo is also responsible for the arrangements on MTV Umplugged.\r\n\r\nI spoke with Matthias Jabs about MTV Unplugged and got an update on the band’s current activities. We also discussed the 30th anniversary of the band’s monumental album, <em>Love At First Sting</em>.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/scorpions.jpg\"><img class=\"alignleft size-full wp-image-1560\" alt=\"scorpions\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/scorpions.jpg\" width=\"300\" height=\"298\" /></a>What made the band decide to undertake an unplugged project?</strong>\r\n\r\nIt was something that we had never done before and something that we had missed out on in the 80′s because we were so busy. Now that we had the time, we went to Stockholm and worked with Swedish producers. They’re also great musicians and ended up being on stage with us.\r\n\r\n<strong>How was it arranging the songs into an acoustic format?</strong>\r\n\r\nIn some ways it was easy, but for some of the songs that everybody knows it presented a much greater challenge. We also chose some songs that we had never performed live before. We really wanted to make it special for the fans with the acoustic guitars and classical orchestra. The end result is quite good. It’s interesting and different, especially with all of the guest musicians.\r\n\r\n<strong>Did you find it more challenging performing songs this way?</strong>\r\n\r\nPlaying in an acoustic setting is very unforgiving and the arrangements were done in such a way that you couldn’t just pick up one guitar and play the entire set. There were many different tunings and capos that we used. And the deeper we got into the project, the more instruments and tunings would come out. We ended up adding piano, mandolin, accordion and even a harp. We also had close to 56 acoustic guitars on stage with us!\r\n\r\n<strong>Why did you choose this particular venue?</strong>\r\n\r\nMTV originally wanted to release the album in the late fall before Christmas. Summer is always vacation time in Europe so to be outside in September, we decided to go to Greece. They have the best climate and great audiences. The temperature was so perfect you didn’t even have to think about it. The amphitheater actually sits on top of the highest mountain in Athens. From the top, you can look down at the city and see the millions of lights below. it’s almost like looking down into Los Angeles from the Hollywood Hills. It’s a stunning view.\r\n\r\n<strong>Is the band planning any U.S. tour dates this year?</strong>\r\n\r\nYes, we’re working on playing some U.S. shows maybe in late summer.\r\n\r\n<strong>This year marks the 30th anniversary of <em>Love At First Sting</em>. When you think about that album, what comes to mind?</strong>\r\n\r\nWe knew we had something special. Even though <em>Blackout</em> was very successful and our first major success as a headliner in the U.S., <em>Love At First Sting</em> topped it. Songs like “Rock You Like A Hurricane” and “Still Loving You”, which became a big hit in Europe. “Big City Nights” was another song that was played on the radio a lot. There are so many good songs on the album that made it so strong. I remember it was a bit hectic recording and we almost missed the deadline, but once we heard the first mixes we had a very good feeling about it<em>.</em>\r\n\r\n[caption id=\"attachment_1559\" align=\"alignleft\" width=\"273\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/MatthiasJabsKavarna2009.jpg\"><img class=\"size-medium wp-image-1559\" alt=\"MatthiasJabsKavarna2009\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/MatthiasJabsKavarna2009-273x300.jpg\" width=\"273\" height=\"300\" /></a> Photo by Stolz[/caption]\r\n\r\n<strong>How did Rudolf come up with the riff for “Rock You Like A Hurricane”?</strong>\r\n\r\nRudolf and I were actually talking about it before hand. I had told him to try to find riffs that used pauses and accents. Not ones that just play continuously through all the time. So we talked about it, and that’s when he came up with that riff. At the time, I remember being more concerned about writing the lead guitar intro for it, which was something I had already done for “No One Like You”.\r\n\r\n<strong>What was the process like for building the intro?</strong>\r\n\r\nThe rule was find a riff, then put a melody on top and then play it in harmony. I still remember the first time I played it for the producers and band when we were in the studio. I played the first line and then the harmony part and everyone went, “OH, YES! HERE COMES THE SUN!” [laughs]. We knew we had something great. I felt the exact same way with “No One Like You”. It instantly sounds like a hit, even when you hear it for the very first time.\r\n\r\n<strong>In the 80′s, new bands like Def Leppard, Iron Maiden and Bon Jovi supported Scorpions before making a name for themselves. What was your criteria for choosing them?</strong>\r\n\r\nGood songs are what made the difference. All of the bands you mentioned that supported us, starting with Def Leppard in 1980, Iron Maiden in ’82 and Bon Jovi in ’84 all became huge, but we chose them because we liked their song material and attitudes. That’s what was the deciding point.\r\n\r\n<strong>What can you tell us about the band’s new album of unreleased 80′s material?</strong>\r\n\r\nWhile we were digging into the archives we found a lot of unfinished songs that we didn’t use for various reasons. Mostly material from the <em>Blackout</em> and <em>Love at First Sting</em> era, which was our most creative time. We now have 12 basic tracks down that we’ll finish recording sometime this summer and maybe even include a few new songs as well. The ideas are from then, but the album’s from now. We’re hoping to release it next year.\r\n\r\n<strong>What are some of the biggest highlights of your career?</strong>\r\n\r\nThe US Festival in 1983 was amazing because it was so unexpected. All of a sudden, we were coming out of the studio to play in front of 300,000 people. Then there was Rock in Rio in ’85, the Moscow Music Peace Festival, Monsters of Rock in ’89 with Van-Halen and Metallica. There are so many highlights, it’s hard to find a dull moment. But I think the biggest highlight is that we’re all still together and are still friends after creating this great career. We’re still having fun making music both in the studio and playing live. That’s the real highlight<em>.</em>\r\n\r\n<strong>In retrospect, do you think that <em>Sting In The Tail</em> and The Farewell Tour might have been a bit premature?</strong>\r\n\r\nThe original idea was that this was going to be the last studio recording. For the last 35 years we’ve been recording an album, going on the road for 2 1/2 years, coming back home, recording an album…. It’s become routine, but we never wanted to stop making music. We just wanted to scale it down a bit. We also said that we’d be open for special projects, like MTV Unplugged and digging down for older, unreleased material. Those are things we don’t do everyday. The fans love it, and that’s reason enough to do it.','Guitarist Matthias Jabs Talks Scorpions MTV Unplugged','','inherit','open','open','','1551-revision-v1','','','2014-02-13 13:50:59','2014-02-13 19:50:59','',1551,'http://www.earthhertzrecords.com/2014/02/1551-revision-v1/',0,'revision','',0),(1563,2,'2014-02-13 13:51:39','2014-02-13 19:51:39','[caption id=\"attachment_1554\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/800px-Scorpions_live_2010.jpg\"><img class=\"size-medium wp-image-1554\" alt=\"800px-Scorpions_live_2010\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/800px-Scorpions_live_2010-300x199.jpg\" width=\"300\" height=\"199\" /></a> Photo by aresauburn™[/caption]\r\n\r\nSince forming in Germany in 1965 the <a href=\"http://www.the-scorpions.com/english/\">Scorpions</a> have become one of the most successful international hard rock bands of all time; selling upwards of 75 million records worldwide while playing more than 5,000 concerts in over 80 countries.\r\n\r\nKnown for colossal hits that include “Rock You Like A Hurricane,” “No One Like You” and “Wind of Change”, the band was ranked #46 on VH1′s “Greatest Artists Of Hard Rock” special, while “Rock You Like A Hurricane” came in at #18 on the channel’s list of “Greatest Hard Rock Songs”.\r\n\r\nIn 2010 the band announced a final studio album, <em>Sting In The Tail</em> that would coincide with an epic Farewell World Tour. It’s a tour that to the delight of fans has been going on for more than three years. Late in 2012, just as the band was finishing up their final show of the year, they were approached about doing an intimate, all acoustic project they had never done before. The result: Scorpions MTV Unplugged.\r\n\r\nTaken from two dynamic acoustic performances from the Lycabettus Theatre in Athens, Greece, this deluxe CD + DVD package and Blu-Ray features new acoustic versions of the band’s best-loved classics as well as five brand new songs.\r\n\r\nThe Scorpions is Klaus Meine <em>(vocals/guitar)</em>, Rudolf Schenker <em>(guitars/vocals)</em>, Matthias Jabs <em>(guitars)</em>, Pawel Maciwoda<em> (bass)</em> and James Kottak <em>(drums)</em>. Additional musical support on MTV Unplugged includes contributions from Swedish musicians and producers Mikael Nord Andersson <em>(guitars, mandolin, lap steel, vocals)</em> and Martin Hansen <em>(guitars, harmonica, vocals)</em>. The duo is also responsible for the arrangements on MTV Umplugged.\r\n\r\nI spoke with Matthias Jabs about MTV Unplugged and got an update on the band’s current activities. We also discussed the 30th anniversary of the band’s monumental album, <em>Love At First Sting</em>.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/scorpions.jpg\"><img class=\"alignleft size-full wp-image-1560\" alt=\"scorpions\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/scorpions.jpg\" width=\"300\" height=\"298\" /></a>What made the band decide to undertake an unplugged project?</strong>\r\n\r\nIt was something that we had never done before and something that we had missed out on in the 80′s because we were so busy. Now that we had the time, we went to Stockholm and worked with Swedish producers. They’re also great musicians and ended up being on stage with us.\r\n\r\n<strong>How was it arranging the songs into an acoustic format?</strong>\r\n\r\nIn some ways it was easy, but for some of the songs that everybody knows it presented a much greater challenge. We also chose some songs that we had never performed live before. We really wanted to make it special for the fans with the acoustic guitars and classical orchestra. The end result is quite good. It’s interesting and different, especially with all of the guest musicians.\r\n\r\n<strong>Did you find it more challenging performing songs this way?</strong>\r\n\r\nPlaying in an acoustic setting is very unforgiving and the arrangements were done in such a way that you couldn’t just pick up one guitar and play the entire set. There were many different tunings and capos that we used. And the deeper we got into the project, the more instruments and tunings would come out. We ended up adding piano, mandolin, accordion and even a harp. We also had close to 56 acoustic guitars on stage with us!\r\n\r\n<strong>Why did you choose this particular venue?</strong>\r\n\r\nMTV originally wanted to release the album in the late fall before Christmas. Summer is always vacation time in Europe so to be outside in September, we decided to go to Greece. They have the best climate and great audiences. The temperature was so perfect you didn’t even have to think about it. The amphitheater actually sits on top of the highest mountain in Athens. From the top, you can look down at the city and see the millions of lights below. it’s almost like looking down into Los Angeles from the Hollywood Hills. It’s a stunning view.\r\n\r\n<strong>Is the band planning any U.S. tour dates this year?</strong>\r\n\r\nYes, we’re working on playing some U.S. shows maybe in late summer.\r\n\r\n<strong>This year marks the 30th anniversary of <em>Love At First Sting</em>. When you think about that album, what comes to mind?</strong>\r\n\r\nWe knew we had something special. Even though <em>Blackout</em> was very successful and our first major success as a headliner in the U.S., <em>Love At First Sting</em> topped it. Songs like “Rock You Like A Hurricane” and “Still Loving You”, which became a big hit in Europe. “Big City Nights” was another song that was played on the radio a lot. There are so many good songs on the album that made it so strong. I remember it was a bit hectic recording and we almost missed the deadline, but once we heard the first mixes we had a very good feeling about it<em>.</em>\r\n\r\n[caption id=\"attachment_1559\" align=\"alignleft\" width=\"273\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/MatthiasJabsKavarna2009.jpg\"><img class=\"size-medium wp-image-1559\" alt=\"MatthiasJabsKavarna2009\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/MatthiasJabsKavarna2009-273x300.jpg\" width=\"273\" height=\"300\" /></a> Photo by Stolz[/caption]\r\n\r\n<strong>How did Rudolf come up with the riff for “Rock You Like A Hurricane”?</strong>\r\n\r\nRudolf and I were actually talking about it before hand. I had told him to try to find riffs that used pauses and accents. Not ones that just play continuously through all the time. So we talked about it, and that’s when he came up with that riff. At the time, I remember being more concerned about writing the lead guitar intro for it, which was something I had already done for “No One Like You”.\r\n\r\n<strong>What was the process like for building the intro?</strong>\r\n\r\nThe rule was find a riff, then put a melody on top and then play it in harmony. I still remember the first time I played it for the producers and band when we were in the studio. I played the first line and then the harmony part and everyone went, “OH, YES! HERE COMES THE SUN!” [laughs]. We knew we had something great. I felt the exact same way with “No One Like You”. It instantly sounds like a hit, even when you hear it for the very first time.\r\n\r\n<strong>In the 80′s, new bands like Def Leppard, Iron Maiden and Bon Jovi supported Scorpions before making a name for themselves. What was your criteria for choosing them?</strong>\r\n\r\nGood songs are what made the difference. All of the bands you mentioned that supported us, starting with Def Leppard in 1980, Iron Maiden in ’82 and Bon Jovi in ’84 all became huge, but we chose them because we liked their song material and attitudes. That’s what was the deciding point.\r\n\r\n<strong>What can you tell us about the band’s new album of unreleased 80′s material?</strong>\r\n\r\nWhile we were digging into the archives we found a lot of unfinished songs that we didn’t use for various reasons. Mostly material from the <em>Blackout</em> and <em>Love at First Sting</em> era, which was our most creative time. We now have 12 basic tracks down that we’ll finish recording sometime this summer and maybe even include a few new songs as well. The ideas are from then, but the album’s from now. We’re hoping to release it next year.\r\n\r\n<strong>What are some of the biggest highlights of your career?</strong>\r\n\r\nThe US Festival in 1983 was amazing because it was so unexpected. All of a sudden, we were coming out of the studio to play in front of 300,000 people. Then there was Rock in Rio in ’85, the Moscow Music Peace Festival, Monsters of Rock in ’89 with Van-Halen and Metallica. There are so many highlights, it’s hard to find a dull moment. But I think the biggest highlight is that we’re all still together and are still friends after creating this great career. We’re still having fun making music both in the studio and playing live. That’s the real highlight<em>.</em>\r\n\r\n<strong>In retrospect, do you think that <em>Sting In The Tail</em> and The Farewell Tour might have been a bit premature?</strong>\r\n\r\nThe original idea was that this was going to be the last studio recording. For the last 35 years we’ve been recording an album, going on the road for 2 1/2 years, coming back home, recording an album…. It’s become routine, but we never wanted to stop making music. We just wanted to scale it down a bit. We also said that we’d be open for special projects, like MTV Unplugged and digging down for older, unreleased material. Those are things we don’t do everyday. The fans love it, and that’s reason enough to do it.\r\n\r\nInterview by James Wood.','Guitarist Matthias Jabs Talks Scorpions MTV Unplugged','','inherit','open','open','','1551-revision-v1','','','2014-02-13 13:51:39','2014-02-13 19:51:39','',1551,'http://www.earthhertzrecords.com/2014/02/1551-revision-v1/',0,'revision','',0),(1564,2,'2014-02-13 14:15:55','2014-02-13 20:15:55','[caption id=\"attachment_1554\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/800px-Scorpions_live_2010.jpg\"><img class=\"size-medium wp-image-1554\" alt=\"800px-Scorpions_live_2010\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/800px-Scorpions_live_2010-300x199.jpg\" width=\"300\" height=\"199\" /></a> Photo by aresauburn™[/caption]\r\n\r\nSince forming in Germany in 1965 the <a href=\"http://www.the-scorpions.com/english/\">Scorpions</a> have become one of the most successful international hard rock bands of all time; selling upwards of 75 million records worldwide while playing more than 5,000 concerts in over 80 countries.\r\n\r\nKnown for colossal hits that include “Rock You Like A Hurricane,” “No One Like You” and “Wind of Change”, the band was ranked #46 on VH1′s “Greatest Artists Of Hard Rock” special, while “Rock You Like A Hurricane” came in at #18 on the channel’s list of “Greatest Hard Rock Songs”.\r\n\r\nIn 2010 the band announced a final studio album, <em>Sting In The Tail</em> that would coincide with an epic Farewell World Tour. It’s a tour that to the delight of fans has been going on for more than three years. Late in 2012, just as the band was finishing up their final show of the year, they were approached about doing an intimate, all acoustic project they had never done before. The result: Scorpions MTV Unplugged.\r\n\r\nTaken from two dynamic acoustic performances from the Lycabettus Theatre in Athens, Greece, this deluxe CD + DVD package and Blu-Ray features new acoustic versions of the band’s best-loved classics as well as five brand new songs.\r\n\r\nThe Scorpions is Klaus Meine <em>(vocals/guitar)</em>, Rudolf Schenker <em>(guitars/vocals)</em>, Matthias Jabs <em>(guitars)</em>, Pawel Maciwoda<em> (bass)</em> and James Kottak <em>(drums)</em>. Additional musical support on MTV Unplugged includes contributions from Swedish musicians and producers Mikael Nord Andersson <em>(guitars, mandolin, lap steel, vocals)</em> and Martin Hansen <em>(guitars, harmonica, vocals)</em>. The duo is also responsible for the arrangements on MTV Umplugged.\r\n\r\nI spoke with Matthias Jabs about MTV Unplugged and got an update on the band’s current activities. We also discussed the 30th anniversary of the band’s monumental album, <em>Love At First Sting</em>.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/scorpions.jpg\"><img class=\"alignleft size-full wp-image-1560\" alt=\"scorpions\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/scorpions.jpg\" width=\"300\" height=\"298\" /></a>What made the band decide to undertake an unplugged project?</strong>\r\n\r\nIt was something that we had never done before and something that we had missed out on in the 80′s because we were so busy. Now that we had the time, we went to Stockholm and worked with Swedish producers. They’re also great musicians and ended up being on stage with us.\r\n\r\n<strong>How was it arranging the songs into an acoustic format?</strong>\r\n\r\nIn some ways it was easy, but for some of the songs that everybody knows it presented a much greater challenge. We also chose some songs that we had never performed live before. We really wanted to make it special for the fans with the acoustic guitars and classical orchestra. The end result is quite good. It’s interesting and different, especially with all of the guest musicians.\r\n\r\n<strong>Did you find it more challenging performing songs this way?</strong>\r\n\r\nPlaying in an acoustic setting is very unforgiving and the arrangements were done in such a way that you couldn’t just pick up one guitar and play the entire set. There were many different tunings and capos that we used. And the deeper we got into the project, the more instruments and tunings would come out. We ended up adding piano, mandolin, accordion and even a harp. We also had close to 56 acoustic guitars on stage with us!\r\n\r\n<strong>Why did you choose this particular venue?</strong>\r\n\r\nMTV originally wanted to release the album in the late fall before Christmas. Summer is always vacation time in Europe so to be outside in September, we decided to go to Greece. They have the best climate and great audiences. The temperature was so perfect you didn’t even have to think about it. The amphitheater actually sits on top of the highest mountain in Athens. From the top, you can look down at the city and see the millions of lights below. it’s almost like looking down into Los Angeles from the Hollywood Hills. It’s a stunning view.\r\n\r\n<strong>Is the band planning any U.S. tour dates this year?</strong>\r\n\r\nYes, we’re working on playing some U.S. shows maybe in late summer.\r\n\r\n<strong>This year marks the 30th anniversary of <em>Love At First Sting</em>. When you think about that album, what comes to mind?</strong>\r\n\r\nWe knew we had something special. Even though <em>Blackout</em> was very successful and our first major success as a headliner in the U.S., <em>Love At First Sting</em> topped it. Songs like “Rock You Like A Hurricane” and “Still Loving You”, which became a big hit in Europe. “Big City Nights” was another song that was played on the radio a lot. There are so many good songs on the album that made it so strong. I remember it was a bit hectic recording and we almost missed the deadline, but once we heard the first mixes we had a very good feeling about it<em>.</em>\r\n\r\n[caption id=\"attachment_1559\" align=\"alignleft\" width=\"273\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/MatthiasJabsKavarna2009.jpg\"><img class=\"size-medium wp-image-1559\" alt=\"MatthiasJabsKavarna2009\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/MatthiasJabsKavarna2009-273x300.jpg\" width=\"273\" height=\"300\" /></a> Photo by Stolz[/caption]\r\n\r\n<strong>How did Rudolf come up with the riff for “Rock You Like A Hurricane”?</strong>\r\n\r\nRudolf and I were actually talking about it before hand. I had told him to try to find riffs that used pauses and accents. Not ones that just play continuously through all the time. So we talked about it, and that’s when he came up with that riff. At the time, I remember being more concerned about writing the lead guitar intro for it, which was something I had already done for “No One Like You”.\r\n\r\n<strong>What was the process like for building the intro?</strong>\r\n\r\nThe rule was find a riff, then put a melody on top and then play it in harmony. I still remember the first time I played it for the producers and band when we were in the studio. I played the first line and then the harmony part and everyone went, “OH, YES! HERE COMES THE SUN!” [laughs]. We knew we had something great. I felt the exact same way with “No One Like You”. It instantly sounds like a hit, even when you hear it for the very first time.\r\n\r\n<strong>In the 80′s, new bands like Def Leppard, Iron Maiden and Bon Jovi supported Scorpions before making a name for themselves. What was your criteria for choosing them?</strong>\r\n\r\nGood songs are what made the difference. All of the bands you mentioned that supported us, starting with Def Leppard in 1980, Iron Maiden in ’82 and Bon Jovi in ’84 all became huge, but we chose them because we liked their song material and attitudes. That’s what was the deciding point.\r\n\r\n<strong>What can you tell us about the band’s new album of unreleased 80′s material?</strong>\r\n\r\nWhile we were digging into the archives we found a lot of unfinished songs that we didn’t use for various reasons. Mostly material from the <em>Blackout</em> and <em>Love at First Sting</em> era, which was our most creative time. We now have 12 basic tracks down that we’ll finish recording sometime this summer and maybe even include a few new songs as well. The ideas are from then, but the album’s from now. We’re hoping to release it next year.\r\n\r\n<strong>What are some of the biggest highlights of your career?</strong>\r\n\r\nThe US Festival in 1983 was amazing because it was so unexpected. All of a sudden, we were coming out of the studio to play in front of 300,000 people. Then there was Rock in Rio in ’85, the Moscow Music Peace Festival, Monsters of Rock in ’89 with Van-Halen and Metallica. There are so many highlights, it’s hard to find a dull moment. But I think the biggest highlight is that we’re all still together and are still friends after creating this great career. We’re still having fun making music both in the studio and playing live. That’s the real highlight<em>.</em>\r\n\r\n<strong>In retrospect, do you think that <em>Sting In The Tail</em> and The Farewell Tour might have been a bit premature?</strong>\r\n\r\nThe original idea was that this was going to be the last studio recording. For the last 35 years we’ve been recording an album, going on the road for 2 1/2 years, coming back home, recording an album…. It’s become routine, but we never wanted to stop making music. We just wanted to scale it down a bit. We also said that we’d be open for special projects, like MTV Unplugged and digging down for older, unreleased material. Those are things we don’t do everyday. The fans love it, and that’s reason enough to do it.\r\n\r\nInterview by James Wood.\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at: </i></strong><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Guitarist Matthias Jabs Talks Scorpions MTV Unplugged','','inherit','open','open','','1551-revision-v1','','','2014-02-13 14:15:55','2014-02-13 20:15:55','',1551,'http://www.earthhertzrecords.com/2014/02/1551-revision-v1/',0,'revision','',0),(1566,2,'2014-02-23 18:16:25','2014-02-24 00:16:25','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/badselfportraitsdetail.jpg\"><img class=\"alignleft size-medium wp-image-1567\" alt=\"badselfportraitsdetail\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/badselfportraitsdetail-300x300.jpg\" width=\"300\" height=\"300\" /></a>There are times when you come across a band that you can just feel is on the verge. Whether they’ve paid their dues for a while and are finally getting recognition, or maybe just started to get attention and seem ready to burst like a supernova. You just know when you hear them that they are about to hit the next level. That moment is now for <strong><a href=\"http://www.lakestreetdive.com/\">Lake Street Dive</a></strong>.\r\n\r\nBuzz has been getting louder about them since they stood on a corner in Boston and recorded a <a href=\"http://www.youtube.com/watch?v=6EPwRdVg5Ug\">video of the Jackson 5’s “I Want You Back.” </a>Led by the strong, soulful and sultry vocals of Rachael Price, bandmates Bridget Kearney on upright bass, Mike Calabrese on percussion and Mike Olsen on trumpet and guitar, round out a sound influenced by Motown, jazz, and pop.\r\n\r\nTheir third release<i> Bad Self Portraits</i>, was released this week. The opening title track comes out swinging, showcasing both the cohesiveness of the band, as well as the strength of Price’s voice. It’s a well-balanced song, with both defined harmonies and instrumentation which enhances, rather than overpowers the vocals.\r\n\r\nSeveral tracks of the album are a throwback to the 60’s girl band sound. The next track “Stop Your Crying,” could have easily been a tune from Goffin-King out of the Brill Building. In fact, several of the songs have that kind of feel. While the influence is there, the approach is different. A little bluesier, a little more based on the whole package the band can deliver.\r\n\r\n“Better Than” slows down the tempo with the first taste of the sultry side of Price’s vocals. A soft drum beat from Calabrese is offset by Kearney’s consistent bass line and harmony. Olsen’s trumpet clearly takes the song to another era, a torch song with a blues edge.\r\n\r\nBringing back the 60s feel, “Rabid Animal” is just fun with a hook. Turning back to a little R&B, “You Go Down Smooth,” does just that. The music fills the song, as if the song was complete in someone’s head and then deconstructed to be written.\r\n\r\nBad Self Portraits is a nice 40 minute ride through familiar territory with a twist. It’s not only well done and structured to highlight what’s best about the band, it is great fun. While the easy thing would be to focus on Rachael Price, the obvious strength of the quartet, Lake Street Dive is a full collaboration between the four members of the band. Their tightness and work ethic is apparent in every track.\r\n\r\n<i>Bad Self Portraits</i> is definitely worth a listen or three. It will be interesting to see what this next year brings to a band with so much talent, and momentum.','Lake Street Dive Delivers Some \"Bad Self Portraits\"','','publish','open','open','','lake-street-dive-delivers-some-bad-self-portraits','','','2014-02-23 19:52:34','2014-02-24 01:52:34','',0,'http://www.earthhertzrecords.com/?p=1566',0,'post','',0),(1567,2,'2014-02-23 13:12:25','2014-02-23 19:12:25','','badselfportraitsdetail','','inherit','open','open','','badselfportraitsdetail','','','2014-02-23 13:12:25','2014-02-23 19:12:25','',1566,'http://www.earthhertzrecords.com/wp-content/uploads/2014/02/badselfportraitsdetail.jpg',0,'attachment','image/jpeg',0),(1568,2,'2014-02-23 13:13:01','2014-02-23 19:13:01','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/badselfportraitsdetail.jpg\"><img class=\"alignleft size-medium wp-image-1567\" alt=\"badselfportraitsdetail\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/badselfportraitsdetail-300x300.jpg\" width=\"300\" height=\"300\" /></a>There are times when you come across a band that you can just feel is on the verge. Whether they’ve paid their dues for a while and are finally getting recognition, or maybe just started to get attention and seem ready to burst like a supernova. You just know when you hear them that they are about to hit the next level. That moment is now for <strong><a href=\"http://www.lakestreetdive.com/\">Lake Street Dive</a></strong>.\r\n\r\nBuzz has been getting louder about them since they stood on a corner in Boston and recorded a <a href=\"http://www.youtube.com/watch?v=6EPwRdVg5Ug\">video of the Jackson 5’s “I Want You Back.” </a>Led by the strong, soulful and sultry vocals of Rachael Price, bandmates Bridget Kearney on stand-up bass, Mike Calabrese on percussion and Mike Olsen on trumpet and guitar, round out a sound influenced by Motown, jazz, and pop.\r\n\r\nTheir third release<i> Bad Self Portraits</i>, was released this week. The opening title track comes out swinging, showcasing both the cohesiveness of the band, as well as the strength of Price’s voice. It’s a well-balanced song, with both defined harmonies and instrumentation which enhances, rather than overpowers the vocals.\r\n\r\nMuch of the album is a throwback to the 60’s girl band sound. The next track “Stop Your Crying,” could easily be a tune which came from Goffin-King out of the Brill Building. In fact, several of the songs have that kind of feel. While the influence is there, the approach is different. A little bluesier, a little more based on the whole package the band can deliver.\r\n\r\n“Better Than” slows down the tempo with the first taste of the sultry side of Price’s vocals. A soft drum beat from Calabrese is offset by Kearney’s consistent bass line and harmony. Olsen’s trumpet clearly takes the song to another era, a torch song with a blues edge.\r\n\r\nBringing back the 60s feel, “Rabid Animal” is just fun with a hook. Turning back to a little R&B, “You Go Down Smooth,” does just that. The music fills the song, as if the song was complete in someone’s head and then deconstructed to be written.\r\n\r\nBad Self Portraits is a nice 40 minute ride through familiar territory with a twist. It’s not only well done and structured to highlight what’s best about the band, it is great fun. While the easy thing would be to focus on Rachael Price, the obvious strength of the quartet, Lake Street Dive is a full collaboration between the four members of the band. Their tightness and work ethic is apparent in every track.\r\n\r\n<i>Bad Self Portraits</i> is definitely worth a listen or three. It will be interesting to see what this next year brings to a band with so much talent, and momentum.','','','inherit','open','open','','1566-revision-v1','','','2014-02-23 13:13:01','2014-02-23 19:13:01','',1566,'http://www.earthhertzrecords.com/2014/02/1566-revision-v1/',0,'revision','',0),(1569,2,'2014-02-23 13:18:26','2014-02-23 19:18:26','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/badselfportraitsdetail.jpg\"><img class=\"alignleft size-medium wp-image-1567\" alt=\"badselfportraitsdetail\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/badselfportraitsdetail-300x300.jpg\" width=\"300\" height=\"300\" /></a>There are times when you come across a band that you can just feel is on the verge. Whether they’ve paid their dues for a while and are finally getting recognition, or maybe just started to get attention and seem ready to burst like a supernova. You just know when you hear them that they are about to hit the next level. That moment is now for <strong><a href=\"http://www.lakestreetdive.com/\">Lake Street Dive</a></strong>.\r\n\r\nBuzz has been getting louder about them since they stood on a corner in Boston and recorded a <a href=\"http://www.youtube.com/watch?v=6EPwRdVg5Ug\">video of the Jackson 5’s “I Want You Back.” </a>Led by the strong, soulful and sultry vocals of Rachael Price, bandmates Bridget Kearney on stand-up bass, Mike Calabrese on percussion and Mike Olsen on trumpet and guitar, round out a sound influenced by Motown, jazz, and pop.\r\n\r\nTheir third release<i> Bad Self Portraits</i>, was released this week. The opening title track comes out swinging, showcasing both the cohesiveness of the band, as well as the strength of Price’s voice. It’s a well-balanced song, with both defined harmonies and instrumentation which enhances, rather than overpowers the vocals.\r\n\r\nMuch of the album is a throwback to the 60’s girl band sound. The next track “Stop Your Crying,” could easily be a tune which came from Goffin-King out of the Brill Building. In fact, several of the songs have that kind of feel. While the influence is there, the approach is different. A little bluesier, a little more based on the whole package the band can deliver.\r\n\r\n“Better Than” slows down the tempo with the first taste of the sultry side of Price’s vocals. A soft drum beat from Calabrese is offset by Kearney’s consistent bass line and harmony. Olsen’s trumpet clearly takes the song to another era, a torch song with a blues edge.\r\n\r\nBringing back the 60s feel, “Rabid Animal” is just fun with a hook. Turning back to a little R&B, “You Go Down Smooth,” does just that. The music fills the song, as if the song was complete in someone’s head and then deconstructed to be written.\r\n\r\nBad Self Portraits is a nice 40 minute ride through familiar territory with a twist. It’s not only well done and structured to highlight what’s best about the band, it is great fun. While the easy thing would be to focus on Rachael Price, the obvious strength of the quartet, Lake Street Dive is a full collaboration between the four members of the band. Their tightness and work ethic is apparent in every track.\r\n\r\n<i>Bad Self Portraits</i> is definitely worth a listen or three. It will be interesting to see what this next year brings to a band with so much talent, and momentum.','Lake Street Dive Delivers Some \"Bad Self Portraits\"','','inherit','open','open','','1566-revision-v1','','','2014-02-23 13:18:26','2014-02-23 19:18:26','',1566,'http://www.earthhertzrecords.com/2014/02/1566-revision-v1/',0,'revision','',0),(1570,2,'2014-02-23 13:23:33','2014-02-23 19:23:33','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/badselfportraitsdetail.jpg\"><img class=\"alignleft size-medium wp-image-1567\" alt=\"badselfportraitsdetail\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/badselfportraitsdetail-300x300.jpg\" width=\"300\" height=\"300\" /></a>There are times when you come across a band that you can just feel is on the verge. Whether they’ve paid their dues for a while and are finally getting recognition, or maybe just started to get attention and seem ready to burst like a supernova. You just know when you hear them that they are about to hit the next level. That moment is now for <strong><a href=\"http://www.lakestreetdive.com/\">Lake Street Dive</a></strong>.\r\n\r\nBuzz has been getting louder about them since they stood on a corner in Boston and recorded a <a href=\"http://www.youtube.com/watch?v=6EPwRdVg5Ug\">video of the Jackson 5’s “I Want You Back.” </a>Led by the strong, soulful and sultry vocals of Rachael Price, bandmates Bridget Kearney on stand-up bass, Mike Calabrese on percussion and Mike Olsen on trumpet and guitar, round out a sound influenced by Motown, jazz, and pop.\r\n\r\nTheir third release<i> Bad Self Portraits</i>, was released this week. The opening title track comes out swinging, showcasing both the cohesiveness of the band, as well as the strength of Price’s voice. It’s a well-balanced song, with both defined harmonies and instrumentation which enhances, rather than overpowers the vocals.\r\n\r\nSeveral tracks of the album are a throwback to the 60’s girl band sound. The next track “Stop Your Crying,” could have easily been a tune from Goffin-King out of the Brill Building. In fact, several of the songs have that kind of feel. While the influence is there, the approach is different. A little bluesier, a little more based on the whole package the band can deliver.\r\n\r\n“Better Than” slows down the tempo with the first taste of the sultry side of Price’s vocals. A soft drum beat from Calabrese is offset by Kearney’s consistent bass line and harmony. Olsen’s trumpet clearly takes the song to another era, a torch song with a blues edge.\r\n\r\nBringing back the 60s feel, “Rabid Animal” is just fun with a hook. Turning back to a little R&B, “You Go Down Smooth,” does just that. The music fills the song, as if the song was complete in someone’s head and then deconstructed to be written.\r\n\r\nBad Self Portraits is a nice 40 minute ride through familiar territory with a twist. It’s not only well done and structured to highlight what’s best about the band, it is great fun. While the easy thing would be to focus on Rachael Price, the obvious strength of the quartet, Lake Street Dive is a full collaboration between the four members of the band. Their tightness and work ethic is apparent in every track.\r\n\r\n<i>Bad Self Portraits</i> is definitely worth a listen or three. It will be interesting to see what this next year brings to a band with so much talent, and momentum.','Lake Street Dive Delivers Some \"Bad Self Portraits\"','','inherit','open','open','','1566-revision-v1','','','2014-02-23 13:23:33','2014-02-23 19:23:33','',1566,'http://www.earthhertzrecords.com/2014/02/1566-revision-v1/',0,'revision','',0),(1571,2,'2014-02-23 19:52:34','2014-02-24 01:52:34','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/badselfportraitsdetail.jpg\"><img class=\"alignleft size-medium wp-image-1567\" alt=\"badselfportraitsdetail\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/badselfportraitsdetail-300x300.jpg\" width=\"300\" height=\"300\" /></a>There are times when you come across a band that you can just feel is on the verge. Whether they’ve paid their dues for a while and are finally getting recognition, or maybe just started to get attention and seem ready to burst like a supernova. You just know when you hear them that they are about to hit the next level. That moment is now for <strong><a href=\"http://www.lakestreetdive.com/\">Lake Street Dive</a></strong>.\r\n\r\nBuzz has been getting louder about them since they stood on a corner in Boston and recorded a <a href=\"http://www.youtube.com/watch?v=6EPwRdVg5Ug\">video of the Jackson 5’s “I Want You Back.” </a>Led by the strong, soulful and sultry vocals of Rachael Price, bandmates Bridget Kearney on upright bass, Mike Calabrese on percussion and Mike Olsen on trumpet and guitar, round out a sound influenced by Motown, jazz, and pop.\r\n\r\nTheir third release<i> Bad Self Portraits</i>, was released this week. The opening title track comes out swinging, showcasing both the cohesiveness of the band, as well as the strength of Price’s voice. It’s a well-balanced song, with both defined harmonies and instrumentation which enhances, rather than overpowers the vocals.\r\n\r\nSeveral tracks of the album are a throwback to the 60’s girl band sound. The next track “Stop Your Crying,” could have easily been a tune from Goffin-King out of the Brill Building. In fact, several of the songs have that kind of feel. While the influence is there, the approach is different. A little bluesier, a little more based on the whole package the band can deliver.\r\n\r\n“Better Than” slows down the tempo with the first taste of the sultry side of Price’s vocals. A soft drum beat from Calabrese is offset by Kearney’s consistent bass line and harmony. Olsen’s trumpet clearly takes the song to another era, a torch song with a blues edge.\r\n\r\nBringing back the 60s feel, “Rabid Animal” is just fun with a hook. Turning back to a little R&B, “You Go Down Smooth,” does just that. The music fills the song, as if the song was complete in someone’s head and then deconstructed to be written.\r\n\r\nBad Self Portraits is a nice 40 minute ride through familiar territory with a twist. It’s not only well done and structured to highlight what’s best about the band, it is great fun. While the easy thing would be to focus on Rachael Price, the obvious strength of the quartet, Lake Street Dive is a full collaboration between the four members of the band. Their tightness and work ethic is apparent in every track.\r\n\r\n<i>Bad Self Portraits</i> is definitely worth a listen or three. It will be interesting to see what this next year brings to a band with so much talent, and momentum.','Lake Street Dive Delivers Some \"Bad Self Portraits\"','','inherit','open','open','','1566-revision-v1','','','2014-02-23 19:52:34','2014-02-24 01:52:34','',1566,'http://www.earthhertzrecords.com/2014/02/1566-revision-v1/',0,'revision','',0),(1572,2,'2014-02-24 20:46:40','2014-02-25 02:46:40','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/benmonttench.jpg\"><img class=\"alignleft size-full wp-image-1573\" alt=\"benmonttench\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/benmonttench.jpg\" width=\"225\" height=\"225\" /></a>Starting off a Monday morning by listening to some new releases, the first four albums became unlistenable after hearing barely ten minutes of each. As I looked down the list of recent releases, a cover photo got my attention because of its simplicity: a man and his piano. A quick look at the genre told me it was indie rock, and so I thought I would give this one last album a shot. All I really wanted at this point was something a little easier on the ears. What I heard, was so much more.\r\n\r\n<i>You Should Be So Lucky </i>(Blue Note) is the first solo album by veteran keyboardist, and founding member of The Heartbreakers (as in Tom Petty and), Benmont Tench. A man known for his fingers, but not his vocals, this debut album is a fine example of waiting until you have something to say, and saying it without pretense or pushing too hard.\r\n\r\nIn music sometimes less is more, and that principle applies completely to <i>You Should Be So Lucky</i>. Conjure up a sound with equal parts of Tom Waits and Elvis Costello, then add a dusting of Dylan like the powdered sugar on a New Orleans beignet, and you get the overall feel of <i>Lucky.</i>\r\n\r\nOpening the album with “Today I Took Your Picture Down,” Tench softly draws you into the story, then fills in the music. It is a simple song, designed to ease you into a comfortable place. “Veronica Said” is such a likeable song, and its great hook is surpassed only by the sweet sound of Tench playing his Hammond C3. From the pop riffs of “Veronica Said,” Tench throws down a smoky instrumental. “Ecor Rouge” is a slow, sexy dance between a piano, bass and bit of percussion. Strings come in later to complement, but the trio is what pulls you from start to end.\r\n\r\n“And if this is a dream, the kind that don’t come true, you’re worth every mile I ever drove for you.” A song of desire, “Hannah” is both sweet and melancholy. Lyrically, it is exquisite. Producer Glyn Johns (The Beatle, The Who, Clapton) has found a way to let the subtleties of Tench’s music be appreciated without being overshadowed by the power of the complete song.\r\n\r\nThe most Petty-ish song on the album, “Blonde Girl, Blue Dress,” relies less on the keys than most of the songs, though the Hammond still manages to hit the mark. An added nice touch is Tom Petty playing bass on this tune. The title track “You Should Be So Lucky,” serves up what could be a garage band song, thirty years down the road. It’s feisty and fun, with a whole lot of attitude.\r\n\r\nBringing down the tempo, Tench takes on the old classic “Corrina, Corrina.” The first of two covers on the album, the vocal is straightforward, and it’s the arrangement that shines on this version. The second instrumental on the album, “Wobbles” is a world away from “Ecor Rouge.” One of the most interesting things about this album is how its diversity blends together. One consistency is just how well done this mostly live in the studio album is recorded. The final song on the album is the second cover song, Bob Dylan’s “Duquesne Whistle.” And here’s where Tench is just showing off. Great keys and a vocal which really suits his voice, it a joyful, foot tappin’ experience.\r\n\r\nIt took Benmont Tench some thirty-odd years to produce a solo album. If it’s the only one he does, it was still worth the wait. <i>You Should Be So Lucky</i> is the kind of journey you need to take more than once. After a couple of listens, the full range of the music can be appreciated. It doesn’t hit you on the head, but rather lets you follow its trail. Comfortable playing all styles of music, Tench’s work shines, but doesn’t overpower the songs. It’s all a comfortable fit, interesting and very enjoyable.\r\n\r\nAnd that makes us the lucky ones.','Benmont Tench \"You Should Be So Lucky\"','','publish','open','open','','benmont-tench-you-should-be-so-lucky','','','2014-02-24 20:46:40','2014-02-25 02:46:40','',0,'http://www.earthhertzrecords.com/?p=1572',0,'post','',2),(1573,2,'2014-02-24 20:29:04','2014-02-25 02:29:04','','benmonttench','','inherit','open','open','','benmonttench','','','2014-02-24 20:29:04','2014-02-25 02:29:04','',1572,'http://www.earthhertzrecords.com/wp-content/uploads/2014/02/benmonttench.jpg',0,'attachment','image/jpeg',0),(1574,2,'2014-02-24 20:29:16','2014-02-25 02:29:16','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/benmonttench.jpg\"><img class=\"alignleft size-full wp-image-1573\" alt=\"benmonttench\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/benmonttench.jpg\" width=\"225\" height=\"225\" /></a>Starting off a Monday morning by listening to some new releases, the first four albums became unlistenable after hearing barely ten minutes of each. As I looked down the list of recent releases, a cover photo got my attention because of its simplicity: a man and his piano. A quick look at the genre told me it was indie rock, and so I thought I would give this one last album a shot. All I really wanted at this point was something a little easier on the ears. What I heard, was so much more.\r\n\r\n<i>You Should Be So Lucky </i>(Blue Note) is the first solo album by veteran keyboardist, and founding member of The Heartbreakers (as in Tom Petty and), Benmont Tench. A man known for his fingers, but not his vocals, this debut album is a fine example of waiting until you have something to say, and saying it without pretense or pushing too hard.\r\n\r\nIn music sometimes less is more, and that principle applies completely to <i>You Should Be So Lucky</i>. Conjure up a sound with equal parts of Tom Waits and Elvis Costello, then add a dusting of Dylan like the powdered sugar on a New Orleans beignet, and you get the overall feel of <i>Lucky.</i>\r\n\r\nOpening the album with “Today I Took Your Picture Down,” Tench softly draws you into the story, then fills in the music. A simple song, designed to ease you into a comfortable place. “Veronica Said” is such a likeable song, and its great hook is surpassed only by the sweet sound of Tench playing his Hammond C3. From the pop riffs of “Veronica Said,” Tench throws down a smoky instrumental. “Ecor Rouge” is a slow, sexy dance between a piano, bass and bit of percussion. Strings come in later to complement, but the trio is what pulls you from start to end.\r\n\r\n“And if this is a dream, the kind that don’t come true, you’re worth every mile I ever drove for you.” A song of desire, “Hannah” is both sweet and melancholy. Lyrically, it is exquisite. Producer Glyn Johns (The Beatle, The Who, Clapton) has found a way to let the subtleties of Tench’s music be appreciated without being overshadowed by the power of the complete song.\r\n\r\nThe most Petty-ish song on the album, “Blonde Girl, Blue Dress,” relies less on the keys than most of the songs, though the Hammond still manages to hit the mark. An added nice touch is Tom Petty playing bass on this tune. The title track “You Should Be So Lucky,” serves up what could be a garage band song, thirty years down the road. It’s feisty and fun, with a whole lot of attitude.\r\n\r\nBringing down the tempo, Tench takes on the old classic “Corrina, Corrina.” The first of two covers on the album, the vocal is straightforward, and it’s the arrangement that shines on this version. The second instrumental on the album, “Wobbles” is a world away from “Ecor Rouge.” One of the most interesting things about this album is how its diversity blends together. One consistency is just how well done this mostly live in the studio album is recorded. The final song on the album is the second cover song, Bob Dylan’s “Duquesne Whistle.” And here’s where Tench is just showing off. Great keys and a vocal which really suits his voice, it a joyful, foot tappin’ experience.\r\n\r\nIt took Benmont Tench some thirty-odd years to produce a solo album. If it’s the only one he does, it was still worth the wait. <i>You Should Be So Lucky</i> is the kind of journey you need to take more than once. After a couple of listens, the full range of the music can be appreciated. It doesn’t hit you on the head, but rather lets you follow its trail. Comfortable playing all styles of music, Tench’s work shines, but doesn’t overpower the songs. It’s all a comfortable fit, interesting and very enjoyable.\r\n\r\nAren\'t we the lucky ones.','Benmont Tench \"You Should Be So Lucky\"','','inherit','open','open','','1572-revision-v1','','','2014-02-24 20:29:16','2014-02-25 02:29:16','',1572,'http://www.earthhertzrecords.com/2014/02/1572-revision-v1/',0,'revision','',0),(1575,2,'2014-02-24 20:34:22','2014-02-25 02:34:22','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/benmonttench.jpg\"><img class=\"alignleft size-full wp-image-1573\" alt=\"benmonttench\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/benmonttench.jpg\" width=\"225\" height=\"225\" /></a>Starting off a Monday morning by listening to some new releases, the first four albums became unlistenable after hearing barely ten minutes of each. As I looked down the list of recent releases, a cover photo got my attention because of its simplicity: a man and his piano. A quick look at the genre told me it was indie rock, and so I thought I would give this one last album a shot. All I really wanted at this point was something a little easier on the ears. What I heard, was so much more.\r\n\r\n<i>You Should Be So Lucky </i>(Blue Note) is the first solo album by veteran keyboardist, and founding member of The Heartbreakers (as in Tom Petty and), Benmont Tench. A man known for his fingers, but not his vocals, this debut album is a fine example of waiting until you have something to say, and saying it without pretense or pushing too hard.\r\n\r\nIn music sometimes less is more, and that principle applies completely to <i>You Should Be So Lucky</i>. Conjure up a sound with equal parts of Tom Waits and Elvis Costello, then add a dusting of Dylan like the powdered sugar on a New Orleans beignet, and you get the overall feel of <i>Lucky.</i>\r\n\r\nOpening the album with “Today I Took Your Picture Down,” Tench softly draws you into the story, then fills in the music. It is a simple song, designed to ease you into a comfortable place. “Veronica Said” is such a likeable song, and its great hook is surpassed only by the sweet sound of Tench playing his Hammond C3. From the pop riffs of “Veronica Said,” Tench throws down a smoky instrumental. “Ecor Rouge” is a slow, sexy dance between a piano, bass and bit of percussion. Strings come in later to complement, but the trio is what pulls you from start to end.\r\n\r\n“And if this is a dream, the kind that don’t come true, you’re worth every mile I ever drove for you.” A song of desire, “Hannah” is both sweet and melancholy. Lyrically, it is exquisite. Producer Glyn Johns (The Beatle, The Who, Clapton) has found a way to let the subtleties of Tench’s music be appreciated without being overshadowed by the power of the complete song.\r\n\r\nThe most Petty-ish song on the album, “Blonde Girl, Blue Dress,” relies less on the keys than most of the songs, though the Hammond still manages to hit the mark. An added nice touch is Tom Petty playing bass on this tune. The title track “You Should Be So Lucky,” serves up what could be a garage band song, thirty years down the road. It’s feisty and fun, with a whole lot of attitude.\r\n\r\nBringing down the tempo, Tench takes on the old classic “Corrina, Corrina.” The first of two covers on the album, the vocal is straightforward, and it’s the arrangement that shines on this version. The second instrumental on the album, “Wobbles” is a world away from “Ecor Rouge.” One of the most interesting things about this album is how its diversity blends together. One consistency is just how well done this mostly live in the studio album is recorded. The final song on the album is the second cover song, Bob Dylan’s “Duquesne Whistle.” And here’s where Tench is just showing off. Great keys and a vocal which really suits his voice, it a joyful, foot tappin’ experience.\r\n\r\nIt took Benmont Tench some thirty-odd years to produce a solo album. If it’s the only one he does, it was still worth the wait. <i>You Should Be So Lucky</i> is the kind of journey you need to take more than once. After a couple of listens, the full range of the music can be appreciated. It doesn’t hit you on the head, but rather lets you follow its trail. Comfortable playing all styles of music, Tench’s work shines, but doesn’t overpower the songs. It’s all a comfortable fit, interesting and very enjoyable.\r\n\r\nAnd that makes us the lucky ones.','Benmont Tench \"You Should Be So Lucky\"','','inherit','open','open','','1572-revision-v1','','','2014-02-24 20:34:22','2014-02-25 02:34:22','',1572,'http://www.earthhertzrecords.com/2014/02/1572-revision-v1/',0,'revision','',0),(1576,2,'2014-02-26 07:16:42','2014-02-26 13:16:42','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/dressedtokill.jpg\"><img class=\"alignright size-full wp-image-1577\" alt=\"dressedtokill\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/dressedtokill.jpg\" width=\"300\" height=\"298\" /></a>As an early member of the KISS Army, all I can say is that I did my duty. So don’t blame me.\r\n\r\nEver since the Rock and Roll Hall of Fame opened its doors in the mid 80′s, I joined my fellow brethren in bitching and moaning for KISS to be inducted. And over the years, I’ve painfully watched as other artists and bands <em>(many deserving, most not)</em> walk through the Hall’s hallowed doors while Gene Simmons, Paul Stanley, Ace Frehley and Peter Criss were unjustly ignored.\r\n\r\nRegardless of whether or not you like their music, there can be no denying that KISS deserves a place alongside The Beatles, Hendrix, U2 and (gasp!) ABBA.\r\n\r\nIn the 1970′s KISS was literally the biggest thing on the planet.\r\n\r\nConsider this:\r\n\r\n1. You NEVER, EVER saw them without make-up. It was big part of their schtick and one that they took very seriously.\r\n\r\n2. They were SO huge that each member created their own solo album and released them all simultaneously.\r\n\r\n3. Dolls were made in their likeness.\r\n\r\n4. They were in movies, on television and in comic books.\r\n\r\n5. Kids <em>(like me)</em> dressed up like them for Halloween.\r\n\r\nI remember being a naive eight year old reading the TV guide when I noticed that one of the members of KISS was going to be in a movie that was coming on. Can you imagine my horror when I turned on channel 4 to discover that my hero was actually actress Jean Simmons in a black and white movie. I thought they had spelled Gene’s name wrong.\r\n\r\nBut that was the kind of impact KISS had. We read about them, listened to their music, bugged our parents to buy their merchandise. Most of all, we wanted to be them. When the <em>Dressed To Kill</em> album came out, I thought they were cool. When the <em>Alive</em> album came out, I wanted to be a rock star.\r\n\r\nLate last year, it was revealed that the band would finally receive their long overdue induction into the Hall. Euphoria ran amok in the KISS Army, while tears of joy ran down the faces of the now middle-aged fans who had dreamt about seeing their beloved four original members reunite in make-up for one final soiree.\r\n\r\nBut alas, then came the shit storm.\r\n\r\nFor some reason, whether it was monetary, too much trouble or <em>(most likely)</em> that they simply just continue to hate each other’s guts, the band has announced that they will not play in any line-up at their hall induction. Kind of ironic when you consider that it was Simmons and Stanley<em> (the only two original members still with the band)</em> who have bemoaned the Hall for decades for not accepting them.\r\n\r\nOver the years, original members of the band have written tell all books and released ho-hum records. Their induction was the one thing fans wanted most and the only thing that would make KISS relevant again. It’s sad to think that these guys can’t put aside their differences for just one night.\r\n\r\nAfter finally getting their long overdue reward, wouldn’t it have been cool for KISS to put on an induction performance the likes of which have never been seen before? Maybe do it and then announce your retirement during your acceptance speech and seal the band’s legacy with the ultimate rock moment? Sadly, we’ll never get a chance to see anything now.\r\n\r\nGene Simmons once declared that KISS is a band that’s unlike any other. In light of what the band has done to the legions of fans who finally got them into the Rock Hall of Fame, I’d say he got that right\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Sealed With a KISS','','publish','open','open','','sealed-with-a-kiss','','','2014-02-26 07:19:16','2014-02-26 13:19:16','',0,'http://www.earthhertzrecords.com/?p=1576',0,'post','',0),(1577,2,'2014-02-25 19:06:29','2014-02-26 01:06:29','','dressedtokill','','inherit','open','open','','dressedtokill','','','2014-02-25 19:06:29','2014-02-26 01:06:29','',1576,'http://www.earthhertzrecords.com/wp-content/uploads/2014/02/dressedtokill.jpg',0,'attachment','image/jpeg',0),(1578,2,'2014-02-25 19:09:18','2014-02-26 01:09:18','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/dressedtokill.jpg\"><img class=\"alignright size-full wp-image-1577\" alt=\"dressedtokill\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/dressedtokill.jpg\" width=\"300\" height=\"298\" /></a>As an early member of the KISS Army, all I can say is that I did my duty. So don’t blame me.\r\n\r\nEver since the Rock and Roll Hall of Fame opened its doors in the mid 80′s, I joined my fellow brethren in bitching and moaning for KISS to be inducted. And over the years, I’ve painfully watched as other artists and bands <em>(many deserving, most not)</em> walk through the Hall’s hallowed doors while Gene Simmons, Paul Stanley, Ace Frehley and Peter Criss were unjustly ignored.\r\n\r\nRegardless of whether or not you like their music, there can be no denying that KISS deserves a place alongside The Beatles, Hendrix, U2 and (gasp!) ABBA.\r\n\r\nIn the 1970′s KISS was literally the biggest thing on the planet.\r\n\r\nConsider this:\r\n\r\n1. You NEVER, EVER saw them without make-up. It was big part of their schtick and one that they took very seriously.\r\n\r\n2. They were SO huge that each member created their own solo album and released them all simultaneously.\r\n\r\n3. Dolls were made in their likeness.\r\n\r\n4. They were in movies, on television and in comic books.\r\n\r\n5. Kids <em>(like me)</em> dressed up like them for Halloween.\r\n\r\nI remember being a naive eight year old reading the TV guide when I noticed that one of the members of KISS was going to be in a movie that was coming on. Can you imagine my horror when I turned on channel 4 to discover that my hero was actually actress Jean Simmons in a black and white movie. I thought they had spelt Gene’s name wrong.\r\n\r\nBut that was the kind of impact KISS had. We read about them, listened to their music, bugged our parents to buy their merchandise. Most of all, we wanted to bethem. When the “Dressed To Kill” album came out, I thought they were cool. When the “Alive” album came out, I wanted to be a rock star.\r\n\r\nLate last year, it was revealed that the band would finally receive their long overdue induction into the Hall. Euphoria ran amok in the KISS Army, while tears of joy ran down the faces of the now middle-aged fans who had dreamt about seeing their beloved four original members reunite in make-up for one final soiree.\r\n\r\nBut alas, then came the shit storm.\r\n\r\nFor some reason, whether it was monetary, too much trouble or <em>(most likely)</em> that they simply just continue to hate each other’s guts, the band has announced that they will not play in any line-up at their hall induction. Kind of ironic when you consider that it was Simmons and Stanley<em> (the only two original members still with the band)</em> who have bemoaned the Hall for decades for not accepting them.\r\n\r\nOver the years, original members of the band have written tell all books and released ho-hum records. Their induction was the one thing fans wanted most and the only thing that would make KISS relevant again. It’s sad to think that these guys can’t put aside their differences for just one night.\r\n\r\nAfter finally getting their long overdue reward, wouldn’t it have been cool for KISS to put on an induction performance the likes of which have never been seen before? Maybe do it and then announce your retirement during your acceptance speech and seal the band’s legacy with the ultimate rock moment? Sadly, we’ll never get a chance to see anything now.\r\n\r\nGene Simmons once declared that KISS is a band that’s unlike any other. In light of what the band has done to the legions of fans who finally got them into the Rock Hall of Fame, I’d say he got that right','Sealed With a KISS','','inherit','open','open','','1576-revision-v1','','','2014-02-25 19:09:18','2014-02-26 01:09:18','',1576,'http://www.earthhertzrecords.com/2014/02/1576-revision-v1/',0,'revision','',0),(1579,2,'2014-02-25 19:26:30','2014-02-26 01:26:30','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/dressedtokill.jpg\"><img class=\"alignright size-full wp-image-1577\" alt=\"dressedtokill\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/dressedtokill.jpg\" width=\"300\" height=\"298\" /></a>As an early member of the KISS Army, all I can say is that I did my duty. So don’t blame me.\r\n\r\nEver since the Rock and Roll Hall of Fame opened its doors in the mid 80′s, I joined my fellow brethren in bitching and moaning for KISS to be inducted. And over the years, I’ve painfully watched as other artists and bands <em>(many deserving, most not)</em> walk through the Hall’s hallowed doors while Gene Simmons, Paul Stanley, Ace Frehley and Peter Criss were unjustly ignored.\r\n\r\nRegardless of whether or not you like their music, there can be no denying that KISS deserves a place alongside The Beatles, Hendrix, U2 and (gasp!) ABBA.\r\n\r\nIn the 1970′s KISS was literally the biggest thing on the planet.\r\n\r\nConsider this:\r\n\r\n1. You NEVER, EVER saw them without make-up. It was big part of their schtick and one that they took very seriously.\r\n\r\n2. They were SO huge that each member created their own solo album and released them all simultaneously.\r\n\r\n3. Dolls were made in their likeness.\r\n\r\n4. They were in movies, on television and in comic books.\r\n\r\n5. Kids <em>(like me)</em> dressed up like them for Halloween.\r\n\r\nI remember being a naive eight year old reading the TV guide when I noticed that one of the members of KISS was going to be in a movie that was coming on. Can you imagine my horror when I turned on channel 4 to discover that my hero was actually actress Jean Simmons in a black and white movie. I thought they had spelled Gene’s name wrong.\r\n\r\nBut that was the kind of impact KISS had. We read about them, listened to their music, bugged our parents to buy their merchandise. Most of all, we wanted to be them. When the <em>Dressed To Kill</em> album came out, I thought they were cool. When the <em>Alive</em> album came out, I wanted to be a rock star.\r\n\r\nLate last year, it was revealed that the band would finally receive their long overdue induction into the Hall. Euphoria ran amok in the KISS Army, while tears of joy ran down the faces of the now middle-aged fans who had dreamt about seeing their beloved four original members reunite in make-up for one final soiree.\r\n\r\nBut alas, then came the shit storm.\r\n\r\nFor some reason, whether it was monetary, too much trouble or <em>(most likely)</em> that they simply just continue to hate each other’s guts, the band has announced that they will not play in any line-up at their hall induction. Kind of ironic when you consider that it was Simmons and Stanley<em> (the only two original members still with the band)</em> who have bemoaned the Hall for decades for not accepting them.\r\n\r\nOver the years, original members of the band have written tell all books and released ho-hum records. Their induction was the one thing fans wanted most and the only thing that would make KISS relevant again. It’s sad to think that these guys can’t put aside their differences for just one night.\r\n\r\nAfter finally getting their long overdue reward, wouldn’t it have been cool for KISS to put on an induction performance the likes of which have never been seen before? Maybe do it and then announce your retirement during your acceptance speech and seal the band’s legacy with the ultimate rock moment? Sadly, we’ll never get a chance to see anything now.\r\n\r\nGene Simmons once declared that KISS is a band that’s unlike any other. In light of what the band has done to the legions of fans who finally got them into the Rock Hall of Fame, I’d say he got that right','Sealed With a KISS','','inherit','open','open','','1576-revision-v1','','','2014-02-25 19:26:30','2014-02-26 01:26:30','',1576,'http://www.earthhertzrecords.com/2014/02/1576-revision-v1/',0,'revision','',0),(1581,2,'2014-02-26 07:16:42','2014-02-26 13:16:42','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/dressedtokill.jpg\"><img class=\"alignright size-full wp-image-1577\" alt=\"dressedtokill\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/dressedtokill.jpg\" width=\"300\" height=\"298\" /></a>As an early member of the KISS Army, all I can say is that I did my duty. So don’t blame me.\r\n\r\nEver since the Rock and Roll Hall of Fame opened its doors in the mid 80′s, I joined my fellow brethren in bitching and moaning for KISS to be inducted. And over the years, I’ve painfully watched as other artists and bands <em>(many deserving, most not)</em> walk through the Hall’s hallowed doors while Gene Simmons, Paul Stanley, Ace Frehley and Peter Criss were unjustly ignored.\r\n\r\nRegardless of whether or not you like their music, there can be no denying that KISS deserves a place alongside The Beatles, Hendrix, U2 and (gasp!) ABBA.\r\n\r\nIn the 1970′s KISS was literally the biggest thing on the planet.\r\n\r\nConsider this:\r\n\r\n1. You NEVER, EVER saw them without make-up. It was big part of their schtick and one that they took very seriously.\r\n\r\n2. They were SO huge that each member created their own solo album and released them all simultaneously.\r\n\r\n3. Dolls were made in their likeness.\r\n\r\n4. They were in movies, on television and in comic books.\r\n\r\n5. Kids <em>(like me)</em> dressed up like them for Halloween.\r\n\r\nI remember being a naive eight year old reading the TV guide when I noticed that one of the members of KISS was going to be in a movie that was coming on. Can you imagine my horror when I turned on channel 4 to discover that my hero was actually actress Jean Simmons in a black and white movie. I thought they had spelled Gene’s name wrong.\r\n\r\nBut that was the kind of impact KISS had. We read about them, listened to their music, bugged our parents to buy their merchandise. Most of all, we wanted to be them. When the <em>Dressed To Kill</em> album came out, I thought they were cool. When the <em>Alive</em> album came out, I wanted to be a rock star.\r\n\r\nLate last year, it was revealed that the band would finally receive their long overdue induction into the Hall. Euphoria ran amok in the KISS Army, while tears of joy ran down the faces of the now middle-aged fans who had dreamt about seeing their beloved four original members reunite in make-up for one final soiree.\r\n\r\nBut alas, then came the shit storm.\r\n\r\nFor some reason, whether it was monetary, too much trouble or <em>(most likely)</em> that they simply just continue to hate each other’s guts, the band has announced that they will not play in any line-up at their hall induction. Kind of ironic when you consider that it was Simmons and Stanley<em> (the only two original members still with the band)</em> who have bemoaned the Hall for decades for not accepting them.\r\n\r\nOver the years, original members of the band have written tell all books and released ho-hum records. Their induction was the one thing fans wanted most and the only thing that would make KISS relevant again. It’s sad to think that these guys can’t put aside their differences for just one night.\r\n\r\nAfter finally getting their long overdue reward, wouldn’t it have been cool for KISS to put on an induction performance the likes of which have never been seen before? Maybe do it and then announce your retirement during your acceptance speech and seal the band’s legacy with the ultimate rock moment? Sadly, we’ll never get a chance to see anything now.\r\n\r\nGene Simmons once declared that KISS is a band that’s unlike any other. In light of what the band has done to the legions of fans who finally got them into the Rock Hall of Fame, I’d say he got that right','Sealed With a KISS','','inherit','open','open','','1576-revision-v1','','','2014-02-26 07:16:42','2014-02-26 13:16:42','',1576,'http://www.earthhertzrecords.com/2014/02/1576-revision-v1/',0,'revision','',0),(1580,2,'2014-02-26 07:15:15','2014-02-26 13:15:15','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/dressedtokill.jpg\"><img class=\"alignright size-full wp-image-1577\" alt=\"dressedtokill\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/dressedtokill.jpg\" width=\"300\" height=\"298\" /></a>As an early member of the KISS Army, all I can say is that I did my duty. So don’t blame me.\r\n\r\nEver since the Rock and Roll Hall of Fame opened its doors in the mid 80′s, I joined my fellow brethren in bitching and moaning for KISS to be inducted. And over the years, I’ve painfully watched as other artists and bands <em>(many deserving, most not)</em> walk through the Hall’s hallowed doors while Gene Simmons, Paul Stanley, Ace Frehley and Peter Criss were unjustly ignored.\r\n\r\nRegardless of whether or not you like their music, there can be no denying that KISS deserves a place alongside The Beatles, Hendrix, U2 and (gasp!) ABBA.\r\n\r\nIn the 1970′s KISS was literally the biggest thing on the planet.\r\n\r\nConsider this:\r\n\r\n1. You NEVER, EVER saw them without make-up. It was big part of their schtick and one that they took very seriously.\r\n\r\n2. They were SO huge that each member created their own solo album and released them all simultaneously.\r\n\r\n3. Dolls were made in their likeness.\r\n\r\n4. They were in movies, on television and in comic books.\r\n\r\n5. Kids <em>(like me)</em> dressed up like them for Halloween.\r\n\r\nI remember being a naive eight year old reading the TV guide when I noticed that one of the members of KISS was going to be in a movie that was coming on. Can you imagine my horror when I turned on channel 4 to discover that my hero was actually actress Jean Simmons in a black and white movie. I thought they had spelled Gene’s name wrong.\r\n\r\nBut that was the kind of impact KISS had. We read about them, listened to their music, bugged our parents to buy their merchandise. Most of all, we wanted to be them. When the <em>Dressed To Kill</em> album came out, I thought they were cool. When the <em>Alive</em> album came out, I wanted to be a rock star.\r\n\r\nLate last year, it was revealed that the band would finally receive their long overdue induction into the Hall. Euphoria ran amok in the KISS Army, while tears of joy ran down the faces of the now middle-aged fans who had dreamt about seeing their beloved four original members reunite in make-up for one final soiree.\r\n\r\nBut alas, then came the shit storm.\r\n\r\nFor some reason, whether it was monetary, too much trouble or <em>(most likely)</em> that they simply just continue to hate each other’s guts, the band has announced that they will not play in any line-up at their hall induction. Kind of ironic when you consider that it was Simmons and Stanley<em> (the only two original members still with the band)</em> who have bemoaned the Hall for decades for not accepting them.\r\n\r\nOver the years, original members of the band have written tell all books and released ho-hum records. Their induction was the one thing fans wanted most and the only thing that would make KISS relevant again. It’s sad to think that these guys can’t put aside their differences for just one night.\r\n\r\nAfter finally getting their long overdue reward, wouldn’t it have been cool for KISS to put on an induction performance the likes of which have never been seen before? Maybe do it and then announce your retirement during your acceptance speech and seal the band’s legacy with the ultimate rock moment? Sadly, we’ll never get a chance to see anything now.\r\n\r\nGene Simmons once declared that KISS is a band that’s unlike any other. In light of what the band has done to the legions of fans who finally got them into the Rock Hall of Fame, I’d say he got that right\r\n\r\nPost by Jim Wood\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Sealed With a KISS','','inherit','open','open','','1576-revision-v1','','','2014-02-26 07:15:15','2014-02-26 13:15:15','',1576,'http://www.earthhertzrecords.com/2014/02/1576-revision-v1/',0,'revision','',0),(1582,2,'2014-02-26 07:19:16','2014-02-26 13:19:16','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/dressedtokill.jpg\"><img class=\"alignright size-full wp-image-1577\" alt=\"dressedtokill\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/dressedtokill.jpg\" width=\"300\" height=\"298\" /></a>As an early member of the KISS Army, all I can say is that I did my duty. So don’t blame me.\r\n\r\nEver since the Rock and Roll Hall of Fame opened its doors in the mid 80′s, I joined my fellow brethren in bitching and moaning for KISS to be inducted. And over the years, I’ve painfully watched as other artists and bands <em>(many deserving, most not)</em> walk through the Hall’s hallowed doors while Gene Simmons, Paul Stanley, Ace Frehley and Peter Criss were unjustly ignored.\r\n\r\nRegardless of whether or not you like their music, there can be no denying that KISS deserves a place alongside The Beatles, Hendrix, U2 and (gasp!) ABBA.\r\n\r\nIn the 1970′s KISS was literally the biggest thing on the planet.\r\n\r\nConsider this:\r\n\r\n1. You NEVER, EVER saw them without make-up. It was big part of their schtick and one that they took very seriously.\r\n\r\n2. They were SO huge that each member created their own solo album and released them all simultaneously.\r\n\r\n3. Dolls were made in their likeness.\r\n\r\n4. They were in movies, on television and in comic books.\r\n\r\n5. Kids <em>(like me)</em> dressed up like them for Halloween.\r\n\r\nI remember being a naive eight year old reading the TV guide when I noticed that one of the members of KISS was going to be in a movie that was coming on. Can you imagine my horror when I turned on channel 4 to discover that my hero was actually actress Jean Simmons in a black and white movie. I thought they had spelled Gene’s name wrong.\r\n\r\nBut that was the kind of impact KISS had. We read about them, listened to their music, bugged our parents to buy their merchandise. Most of all, we wanted to be them. When the <em>Dressed To Kill</em> album came out, I thought they were cool. When the <em>Alive</em> album came out, I wanted to be a rock star.\r\n\r\nLate last year, it was revealed that the band would finally receive their long overdue induction into the Hall. Euphoria ran amok in the KISS Army, while tears of joy ran down the faces of the now middle-aged fans who had dreamt about seeing their beloved four original members reunite in make-up for one final soiree.\r\n\r\nBut alas, then came the shit storm.\r\n\r\nFor some reason, whether it was monetary, too much trouble or <em>(most likely)</em> that they simply just continue to hate each other’s guts, the band has announced that they will not play in any line-up at their hall induction. Kind of ironic when you consider that it was Simmons and Stanley<em> (the only two original members still with the band)</em> who have bemoaned the Hall for decades for not accepting them.\r\n\r\nOver the years, original members of the band have written tell all books and released ho-hum records. Their induction was the one thing fans wanted most and the only thing that would make KISS relevant again. It’s sad to think that these guys can’t put aside their differences for just one night.\r\n\r\nAfter finally getting their long overdue reward, wouldn’t it have been cool for KISS to put on an induction performance the likes of which have never been seen before? Maybe do it and then announce your retirement during your acceptance speech and seal the band’s legacy with the ultimate rock moment? Sadly, we’ll never get a chance to see anything now.\r\n\r\nGene Simmons once declared that KISS is a band that’s unlike any other. In light of what the band has done to the legions of fans who finally got them into the Rock Hall of Fame, I’d say he got that right\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Sealed With a KISS','','inherit','open','open','','1576-revision-v1','','','2014-02-26 07:19:16','2014-02-26 13:19:16','',1576,'http://www.earthhertzrecords.com/2014/02/1576-revision-v1/',0,'revision','',0),(1583,2,'2014-02-27 08:55:07','2014-02-27 14:55:07','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/garychapman-the-truth1.jpg\"><img class=\"alignright size-full wp-image-1585\" alt=\"garychapman-the-truth1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/garychapman-the-truth1.jpg\" width=\"300\" height=\"300\" /></a>For more than thirty years <a href=\"http://www.garychapmanmusic.com/\">Gary Chapman</a> has seamlessly blended contemporary pop, country, Christian and southern gospel, racking up an impressive musical resume that includes multiple Grammy nominations and Dove Awards (including “Male Vocalist of the Year” and “Songwriter of the Year”).\r\n\r\nChapman’s first new studio album in over a decade, <em>The Truth</em> features sixteen new studio recordings and features special vocal appearances by the likes of Allison Krauss, Rebecca Lynn Howard, Tanya Tucker and John Rich. On a more personal level, <em>The Truth</em> also showcases performances by Chapman’s daughter Sarah on “Put it in His Hands,” and wife Cassie on the Christmas-themed, “All About a Baby.”\r\n\r\nIn addition to the new album, Chapman’s wife Cassie will take part in the upcoming TNT reality series “Private Lives of Nashville Wives” which premieres on February 24th.\r\n\r\nI spoke with Chapman about his new album as well as \"Private Lives of Nashville Wives.\" He also delivers the truth when it comes to finding faith in troubled times.\r\n\r\n<strong>James Wood: It’s been more than ten years since your last studio album. What sparked this project?</strong>\r\n\r\nGary Chapman: My dad had lived with me and my wife until he died about four years ago. The thing that really brought him comfort toward the end of his life was me sitting beside his bed and playing some of the songs that he had taught me many years ago. There was something really powerful about going over those songs. I wanted to write an album and find a body of songs that really mattered and one that might live beyond me. That’s what I set out to do.\r\n\r\n<strong>Why the title <em>The Truth</em>?</strong>\r\n\r\nIt’s pretty direct. I didn’t want to hide anything. It’s important for me to try to break down the stereotype that Christians have about somehow “having it all together”. The fact is, we don’t. We all have the same issues and struggles as everyone else. I wanted to do it in an all-embracing way. I like to refer to it as a Christian record for people who maybe aren’t church-goers or might not even be professing Christians yet, but they have something inside of them that requires something more.\r\n\r\n<strong>Let’s discuss a few tracks from the album:</strong>\r\n\r\n<strong> \"The Rough Crowd\"</strong>\r\n\r\nI actually found that song along with “I Didn’t Find Jesus” years ago and knew that at some point I wanted to cut them. When I did record it, one of my co-producers (Ray Hamilton) said “You know, this song could really benefit from more personalities.” At first I fought him on it, but once we started talking about who it could be, it all started to make sense. Having Tanya Tucker sing about the woman at the well and John Rich saying he cussed, raised hell, drank and stumbled but knew someone was with him – it just doesn’t get much better.\r\n\r\n[caption id=\"attachment_1586\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/cassiechapman.jpg\"><img class=\"size-full wp-image-1586\" alt=\"cassiechapman\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/cassiechapman.jpg\" width=\"300\" height=\"225\" /></a> Cassie Chapman[/caption]\r\n\r\n<strong>“All About A Baby”.</strong>\r\n\r\nMy wife Cassie has a really beautiful voice, but getting her into the studio was like pulling teeth! We have a nine-month old girl that we adopted so when I found “All About A Baby” it made total sense. It’s a Christmas song if you had to categorize it, but it’s really not. The message is year round.\r\n\r\n<strong>“Put It In His Hands” was a song you recorded with your daughter, Sarah. How did that come about?</strong>\r\n\r\nSarah has such a cool, distinct voice and I’ve been wanting to sing something with her for quite a while. I wrote the song about a moment I had with my dad towards the end of his life. To have a three generational impact was what I was going for.\r\n\r\n<strong>What is your songwriting process?</strong>\r\n\r\nOne of the things that I love about my formula is that I don’t have a plan. It changes every single time. Sometimes it will be an observation that may culminate into a thought or a hook. Then I’ll take it and store it away. I don’t tend to write things down very much. My logic has always been if the ideas are really good, then they’ll always come back. And they do. Over the years I’ve learned that the songs that just overwhelm you and make themselves undeniable are the ones that really matter. I wait for those moments.\r\n\r\n[caption id=\"attachment_1587\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/nashvillewives1.jpg\"><img class=\"size-medium wp-image-1587\" alt=\"nashvillewives1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/nashvillewives1-300x250.jpg\" width=\"300\" height=\"250\" /></a> \"Private Lives of Nashville Wives\"[/caption]\r\n\r\n<strong>What can you tell me about Cassie’s show, \"Private Lives of Nashville Wives?\"</strong>\r\n\r\nA film crew follows around six Nashville couples as they go about their lives. It really is completely unscripted. Sometimes it’s centered around an event, but everyone tends to move through life the same regardless of whether or not there’s something going on. One of the story lines documents the process of me making this musical project and another one is about the baby. Cassie and I are big proponents of adoption and it’s a really great story.\r\n\r\n<strong>Will this show be different than some of those other wife reality shows?</strong>\r\n\r\nWhenever you get six women together you’re bound to get drama, but it won’t be one of those “weave pulling, drunken brawls” that some of those shows turn into.\r\n\r\n<strong>What do you think is the secret to having faith in troubling times?</strong>\r\n\r\nI think you have to know where the bottom is before you know where you stand. You have to clear away all of the distraction from your vision and really come to grips with your own mortality. That will happen as you get older but the younger you can make the decision, the better the life you’re going to have. You eventually have to submit to the reality that you need God. And if you truly believe that he is who he say he was and remains, everything is better. The good times are better and the bad times are endurable. Everything changes when you’ve got a new-found perspective.\r\n\r\nInterview by Jim Wood\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','The Truth: Gary Chapman Discusses New Album','','publish','open','open','','the-truth-gary-chapman-discusses-new-album','','','2014-02-27 08:55:07','2014-02-27 14:55:07','',0,'http://www.earthhertzrecords.com/?p=1583',0,'post','',0),(1585,2,'2014-02-26 18:14:08','2014-02-27 00:14:08','','garychapman-the-truth1','','inherit','open','open','','garychapman-the-truth1','','','2014-02-26 18:14:08','2014-02-27 00:14:08','',1583,'http://www.earthhertzrecords.com/wp-content/uploads/2014/02/garychapman-the-truth1.jpg',0,'attachment','image/jpeg',0),(1584,2,'2014-02-26 18:07:54','2014-02-27 00:07:54','For more than thirty years <a href=\"http://www.garychapmanmusic.com/\">Gary Chapman</a> has seamlessly blended contemporary pop, country, Christian and southern gospel, racking up an impressive musical resume that includes multiple Grammy nominations and Dove Awards (including “Male Vocalist of the Year” and “Songwriter of the Year”).\r\n\r\nChapman’s first new studio album in over a decade, <em>The Truth</em> features sixteen new studio recordings and features special vocal appearances by the likes of Allison Krauss, Rebecca Lynn Howard, Tanya Tucker and John Rich. On a more personal level, <em>The Truth</em> also showcases performances by Chapman’s daughter Sarah on “Put it in His Hands,” and wife Cassie on the Christmas-themed, “All About a Baby.”\r\n\r\nIn addition to the new album, Chapman’s wife Cassie will take part in the upcoming TNT reality series “Private Lives of Nashville Wives” which premieres on February 24th.\r\n\r\nI spoke with Chapman about his new album as well as \"Private Lives of Nashville Wives.\" He also delivers the truth when it comes to finding faith in troubled times.\r\n\r\n<strong>It’s been more than ten years since your last studio album. What sparked this project?</strong>\r\n\r\nMy dad had lived with me and my wife until he died about four years ago. The thing that really brought him comfort toward the end of his life was me sitting beside his bed and playing some of the songs that he had taught me many years ago. There was something really powerful about going over those songs. I wanted to write an album and find a body of songs that really mattered and one that might live beyond me. That’s what I set out to do.\r\n\r\n<strong>Why the title <em>The Truth</em>?</strong>\r\n\r\nIt’s pretty direct. I didn’t want to hide anything. It’s important for me to try to break down the stereotype that Christians have about somehow “having it all together”. The fact is, we don’t. We all have the same issues and struggles as everyone else. I wanted to do it in an all-embracing way. I like to refer to it as a Christian record for people who maybe aren’t church-goers or might not even be professing Christians yet, but they have something inside of them that requires something more.\r\n\r\n<strong>Let’s discuss a few tracks from the album: \"The Rough Crowd\"</strong>\r\n\r\nI actually found that song along with “I Didn’t Find Jesus” years ago and knew that at some point I wanted to cut them. When I did record it, one of my co-producers (Ray Hamilton) said “You know, this song could really benefit from more personalities.” At first I fought him on it, but once we started talking about who it could be, it all started to make sense. Having Tanya Tucker sing about the woman at the well and John Rich saying he cussed, raised hell, drank and stumbled but knew someone was with him – it just doesn’t get much better.\r\n\r\n<strong>“All About A Baby”.</strong>\r\n\r\nMy wife Cassie has a really beautiful voice, but getting her into the studio was like pulling teeth! We have a nine-month old girl that we adopted so when I found “All About A Baby” it made total sense. It’s a Christmas song if you had to categorize it, but it’s really not. The message is year round.\r\n\r\n<strong>“Put It In His Hands” was a song you recorded with your daughter, Sarah. How did that come about?</strong>\r\n\r\nSarah has such a cool, distinct voice and I’ve been wanting to sing something with her for quite a while. I wrote the song about a moment I had with my dad towards the end of his life. To have a three generational impact was what I was going for.\r\n\r\n<strong>What is your songwriting process?</strong>\r\n\r\nOne of the things that I love about my formula is that I don’t have a plan. It changes every single time. Sometimes it will be an observation that may culminate into a thought or a hook. Then I’ll take it and store it away. I don’t tend to write things down very much. My logic has always been if the ideas are really good, then they’ll always come back. And they do. Over the years I’ve learned that the songs that just overwhelm you and make themselves undeniable are the ones that really matter. I wait for those moments.\r\n\r\n<strong>What can you tell me about Cassie’s show, \"Private Lives of Nashville Wives\"?</strong>\r\n\r\nA film crew follows around six Nashville couples as they go about their lives. It really is completely unscripted. Sometimes it’s centered around an event, but everyone tends to move through life the same regardless of whether or not there’s something going on. One of the story lines documents the process of me making this musical project and another one is about the baby. Cassie and I are big proponents of adoption and it’s a really great story.\r\n\r\n<strong>Will this show be different than some of those other wife reality shows?</strong>\r\n\r\nWhenever you get six women together you’re bound to get drama, but it won’t be one of those “weave pulling, drunken brawls” that some of those shows turn into.\r\n\r\n<strong>What do you think is the secret to having faith in troubling times?</strong>\r\n\r\nI think you have to know where the bottom is before you know where you stand. You have to clear away all of the distraction from your vision and really come to grips with your own mortality. That will happen as you get older but the younger you can make the decision, the better the life you’re going to have. You eventually have to submit to the reality that you need God. And if you truly believe that he is who he say he was and remains, everything is better. The good times are better and the bad times are endurable. Everything changes when you’ve got a new-found perspective.\r\n\r\nInterview by Jim Wood\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','The Truth: Gary Chapman Discusses New Album','','inherit','open','open','','1583-revision-v1','','','2014-02-26 18:07:54','2014-02-27 00:07:54','',1583,'http://www.earthhertzrecords.com/2014/02/1583-revision-v1/',0,'revision','',0),(1586,2,'2014-02-26 18:15:03','2014-02-27 00:15:03','','cassiechapman','','inherit','open','open','','cassiechapman','','','2014-02-26 18:15:03','2014-02-27 00:15:03','',1583,'http://www.earthhertzrecords.com/wp-content/uploads/2014/02/cassiechapman.jpg',0,'attachment','image/jpeg',0),(1587,2,'2014-02-26 18:19:08','2014-02-27 00:19:08','','nashvillewives1','','inherit','open','open','','nashvillewives1','','','2014-02-26 18:19:08','2014-02-27 00:19:08','',1583,'http://www.earthhertzrecords.com/wp-content/uploads/2014/02/nashvillewives1.jpg',0,'attachment','image/jpeg',0),(1588,2,'2014-02-26 18:20:29','2014-02-27 00:20:29','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/garychapman-the-truth1.jpg\"><img class=\"alignright size-full wp-image-1585\" alt=\"garychapman-the-truth1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/garychapman-the-truth1.jpg\" width=\"300\" height=\"300\" /></a>For more than thirty years <a href=\"http://www.garychapmanmusic.com/\">Gary Chapman</a> has seamlessly blended contemporary pop, country, Christian and southern gospel, racking up an impressive musical resume that includes multiple Grammy nominations and Dove Awards (including “Male Vocalist of the Year” and “Songwriter of the Year”).\r\n\r\nChapman’s first new studio album in over a decade, <em>The Truth</em> features sixteen new studio recordings and features special vocal appearances by the likes of Allison Krauss, Rebecca Lynn Howard, Tanya Tucker and John Rich. On a more personal level, <em>The Truth</em> also showcases performances by Chapman’s daughter Sarah on “Put it in His Hands,” and wife Cassie on the Christmas-themed, “All About a Baby.”\r\n\r\nIn addition to the new album, Chapman’s wife Cassie will take part in the upcoming TNT reality series “Private Lives of Nashville Wives” which premieres on February 24th.\r\n\r\nI spoke with Chapman about his new album as well as \"Private Lives of Nashville Wives.\" He also delivers the truth when it comes to finding faith in troubled times.\r\n\r\n<strong>James Wood: It’s been more than ten years since your last studio album. What sparked this project?</strong>\r\n\r\nGary Chapman: My dad had lived with me and my wife until he died about four years ago. The thing that really brought him comfort toward the end of his life was me sitting beside his bed and playing some of the songs that he had taught me many years ago. There was something really powerful about going over those songs. I wanted to write an album and find a body of songs that really mattered and one that might live beyond me. That’s what I set out to do.\r\n\r\n<strong>Why the title <em>The Truth</em>?</strong>\r\n\r\nIt’s pretty direct. I didn’t want to hide anything. It’s important for me to try to break down the stereotype that Christians have about somehow “having it all together”. The fact is, we don’t. We all have the same issues and struggles as everyone else. I wanted to do it in an all-embracing way. I like to refer to it as a Christian record for people who maybe aren’t church-goers or might not even be professing Christians yet, but they have something inside of them that requires something more.\r\n\r\n<strong>Let’s discuss a few tracks from the album:</strong>\r\n\r\n<strong> \"The Rough Crowd\"</strong>\r\n\r\nI actually found that song along with “I Didn’t Find Jesus” years ago and knew that at some point I wanted to cut them. When I did record it, one of my co-producers (Ray Hamilton) said “You know, this song could really benefit from more personalities.” At first I fought him on it, but once we started talking about who it could be, it all started to make sense. Having Tanya Tucker sing about the woman at the well and John Rich saying he cussed, raised hell, drank and stumbled but knew someone was with him – it just doesn’t get much better.\r\n\r\n[caption id=\"attachment_1586\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/cassiechapman.jpg\"><img class=\"size-full wp-image-1586\" alt=\"cassiechapman\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/cassiechapman.jpg\" width=\"300\" height=\"225\" /></a> Cassie Chapman[/caption]\r\n\r\n<strong>“All About A Baby”.</strong>\r\n\r\nMy wife Cassie has a really beautiful voice, but getting her into the studio was like pulling teeth! We have a nine-month old girl that we adopted so when I found “All About A Baby” it made total sense. It’s a Christmas song if you had to categorize it, but it’s really not. The message is year round.\r\n\r\n<strong>“Put It In His Hands” was a song you recorded with your daughter, Sarah. How did that come about?</strong>\r\n\r\nSarah has such a cool, distinct voice and I’ve been wanting to sing something with her for quite a while. I wrote the song about a moment I had with my dad towards the end of his life. To have a three generational impact was what I was going for.\r\n\r\n<strong>What is your songwriting process?</strong>\r\n\r\nOne of the things that I love about my formula is that I don’t have a plan. It changes every single time. Sometimes it will be an observation that may culminate into a thought or a hook. Then I’ll take it and store it away. I don’t tend to write things down very much. My logic has always been if the ideas are really good, then they’ll always come back. And they do. Over the years I’ve learned that the songs that just overwhelm you and make themselves undeniable are the ones that really matter. I wait for those moments.\r\n\r\n[caption id=\"attachment_1587\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/nashvillewives1.jpg\"><img class=\"size-medium wp-image-1587\" alt=\"nashvillewives1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/nashvillewives1-300x250.jpg\" width=\"300\" height=\"250\" /></a> \"Private Lives of Nashville Wives\"[/caption]\r\n\r\nA film crew follows around six Nashville couples as they go about their lives. It really is completely unscripted. Sometimes it’s centered around an event, but everyone tends to move through life the same regardless of whether or not there’s something going on. One of the story lines documents the process of me making this musical project and another one is about the baby. Cassie and I are big proponents of adoption and it’s a really great story.\r\n\r\n<strong>Will this show be different than some of those other wife reality shows?</strong>\r\n\r\nWhenever you get six women together you’re bound to get drama, but it won’t be one of those “weave pulling, drunken brawls” that some of those shows turn into.\r\n\r\n<strong>What do you think is the secret to having faith in troubling times?</strong>\r\n\r\nI think you have to know where the bottom is before you know where you stand. You have to clear away all of the distraction from your vision and really come to grips with your own mortality. That will happen as you get older but the younger you can make the decision, the better the life you’re going to have. You eventually have to submit to the reality that you need God. And if you truly believe that he is who he say he was and remains, everything is better. The good times are better and the bad times are endurable. Everything changes when you’ve got a new-found perspective.\r\n\r\nInterview by Jim Wood\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','The Truth: Gary Chapman Discusses New Album','','inherit','open','open','','1583-revision-v1','','','2014-02-26 18:20:29','2014-02-27 00:20:29','',1583,'http://www.earthhertzrecords.com/2014/02/1583-revision-v1/',0,'revision','',0),(1589,2,'2014-02-26 18:30:15','2014-02-27 00:30:15','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/garychapman-the-truth1.jpg\"><img class=\"alignright size-full wp-image-1585\" alt=\"garychapman-the-truth1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/garychapman-the-truth1.jpg\" width=\"300\" height=\"300\" /></a>For more than thirty years <a href=\"http://www.garychapmanmusic.com/\">Gary Chapman</a> has seamlessly blended contemporary pop, country, Christian and southern gospel, racking up an impressive musical resume that includes multiple Grammy nominations and Dove Awards (including “Male Vocalist of the Year” and “Songwriter of the Year”).\r\n\r\nChapman’s first new studio album in over a decade, <em>The Truth</em> features sixteen new studio recordings and features special vocal appearances by the likes of Allison Krauss, Rebecca Lynn Howard, Tanya Tucker and John Rich. On a more personal level, <em>The Truth</em> also showcases performances by Chapman’s daughter Sarah on “Put it in His Hands,” and wife Cassie on the Christmas-themed, “All About a Baby.”\r\n\r\nIn addition to the new album, Chapman’s wife Cassie will take part in the upcoming TNT reality series “Private Lives of Nashville Wives” which premieres on February 24th.\r\n\r\nI spoke with Chapman about his new album as well as \"Private Lives of Nashville Wives.\" He also delivers the truth when it comes to finding faith in troubled times.\r\n\r\n<strong>James Wood: It’s been more than ten years since your last studio album. What sparked this project?</strong>\r\n\r\nGary Chapman: My dad had lived with me and my wife until he died about four years ago. The thing that really brought him comfort toward the end of his life was me sitting beside his bed and playing some of the songs that he had taught me many years ago. There was something really powerful about going over those songs. I wanted to write an album and find a body of songs that really mattered and one that might live beyond me. That’s what I set out to do.\r\n\r\n<strong>Why the title <em>The Truth</em>?</strong>\r\n\r\nIt’s pretty direct. I didn’t want to hide anything. It’s important for me to try to break down the stereotype that Christians have about somehow “having it all together”. The fact is, we don’t. We all have the same issues and struggles as everyone else. I wanted to do it in an all-embracing way. I like to refer to it as a Christian record for people who maybe aren’t church-goers or might not even be professing Christians yet, but they have something inside of them that requires something more.\r\n\r\n<strong>Let’s discuss a few tracks from the album:</strong>\r\n\r\n<strong> \"The Rough Crowd\"</strong>\r\n\r\nI actually found that song along with “I Didn’t Find Jesus” years ago and knew that at some point I wanted to cut them. When I did record it, one of my co-producers (Ray Hamilton) said “You know, this song could really benefit from more personalities.” At first I fought him on it, but once we started talking about who it could be, it all started to make sense. Having Tanya Tucker sing about the woman at the well and John Rich saying he cussed, raised hell, drank and stumbled but knew someone was with him – it just doesn’t get much better.\r\n\r\n[caption id=\"attachment_1586\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/cassiechapman.jpg\"><img class=\"size-full wp-image-1586\" alt=\"cassiechapman\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/cassiechapman.jpg\" width=\"300\" height=\"225\" /></a> Cassie Chapman[/caption]\r\n\r\n<strong>“All About A Baby”.</strong>\r\n\r\nMy wife Cassie has a really beautiful voice, but getting her into the studio was like pulling teeth! We have a nine-month old girl that we adopted so when I found “All About A Baby” it made total sense. It’s a Christmas song if you had to categorize it, but it’s really not. The message is year round.\r\n\r\n<strong>“Put It In His Hands” was a song you recorded with your daughter, Sarah. How did that come about?</strong>\r\n\r\nSarah has such a cool, distinct voice and I’ve been wanting to sing something with her for quite a while. I wrote the song about a moment I had with my dad towards the end of his life. To have a three generational impact was what I was going for.\r\n\r\n<strong>What is your songwriting process?</strong>\r\n\r\nOne of the things that I love about my formula is that I don’t have a plan. It changes every single time. Sometimes it will be an observation that may culminate into a thought or a hook. Then I’ll take it and store it away. I don’t tend to write things down very much. My logic has always been if the ideas are really good, then they’ll always come back. And they do. Over the years I’ve learned that the songs that just overwhelm you and make themselves undeniable are the ones that really matter. I wait for those moments.\r\n\r\n[caption id=\"attachment_1587\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/nashvillewives1.jpg\"><img class=\"size-medium wp-image-1587\" alt=\"nashvillewives1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/02/nashvillewives1-300x250.jpg\" width=\"300\" height=\"250\" /></a> \"Private Lives of Nashville Wives\"[/caption]\r\n\r\n<strong>What can you tell me about Cassie’s show, \"Private Lives of Nashville Wives?\"</strong>\r\n\r\nA film crew follows around six Nashville couples as they go about their lives. It really is completely unscripted. Sometimes it’s centered around an event, but everyone tends to move through life the same regardless of whether or not there’s something going on. One of the story lines documents the process of me making this musical project and another one is about the baby. Cassie and I are big proponents of adoption and it’s a really great story.\r\n\r\n<strong>Will this show be different than some of those other wife reality shows?</strong>\r\n\r\nWhenever you get six women together you’re bound to get drama, but it won’t be one of those “weave pulling, drunken brawls” that some of those shows turn into.\r\n\r\n<strong>What do you think is the secret to having faith in troubling times?</strong>\r\n\r\nI think you have to know where the bottom is before you know where you stand. You have to clear away all of the distraction from your vision and really come to grips with your own mortality. That will happen as you get older but the younger you can make the decision, the better the life you’re going to have. You eventually have to submit to the reality that you need God. And if you truly believe that he is who he say he was and remains, everything is better. The good times are better and the bad times are endurable. Everything changes when you’ve got a new-found perspective.\r\n\r\nInterview by Jim Wood\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','The Truth: Gary Chapman Discusses New Album','','inherit','open','open','','1583-revision-v1','','','2014-02-26 18:30:15','2014-02-27 00:30:15','',1583,'http://www.earthhertzrecords.com/2014/02/1583-revision-v1/',0,'revision','',0),(1591,2,'2014-03-03 10:45:18','2014-03-03 16:45:18','<p dir=\"ltr\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/slythefamilystone.jpg\"><img class=\"alignleft size-medium wp-image-1592\" alt=\"sly&thefamilystone\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/slythefamilystone-300x300.jpg\" width=\"300\" height=\"300\" /></a>The best thing that could have ever happened to me and Sly was the release of the new box set - <em>Sly and the Family Stone, Higher!</em> I never intended to write about this release, but when I picked it up, I had no choice.</p>\r\n<p dir=\"ltr\">Growing up in the 70\'s I was spoon fed Sly. I wasn\'t living in San Francisco, and even if I was, I am pretty sure they wouldn\'t have let a 4-year-old in his shows. So how could I possibly know? HOW!</p>\r\n<p dir=\"ltr\">The truth is, I really didn\'t become acquainted with Sly that much until I was a, let\'s say, \"free-thinking\" college student looking for the funk. But even then, it was just the tip of the iceberg. And when you spend a lot of time with the tip of the iceberg, it starts to get old. And boring. And gray.</p>\r\n<p dir=\"ltr\">Ah, so how is it, that 40 years after Sly\'s genius was being recognized I am only seeing it now? Because now all of his work, previously un-released, multiple versions of songs, many of which I never heard, have been released.</p>\r\n<p dir=\"ltr\">And thankfully, this is one of those rare instances where the record industry did see his amazing talent. Those record puppeteers pretty much gave Sly free rein. That is how you KNOW he was a genius. Sure, they gave him input, and he gladly took it. He was not at all averse to \"dumbing it down\" to get in the door.</p>\r\n<p dir=\"ltr\">But the sheer truth is, that Sly and the Family Stone never failed to fill a live venue, because onstage they were electric. He was the conductor, not needing to be the star, bringing out the best of everyone who was part of The Family and when they were given the same free rein to jam in the studio, it was magical.</p>\r\n<p dir=\"ltr\">Me of little knowledge, I had no idea he wasn\'t always the singer, there were many through the years, always more than one on an album, even a song. He was the magician, the creator - the genie on the sweet keys, or maybe making those strings sing, or maybe all of it. Because he was that guy.</p>\r\n<p dir=\"ltr\">He was that guy who ONLY played what he felt, he only wrote his truth. The music, the words they really came from his soul. He never sold out, he was perfectly happy with the idea of making his music accessible to the masses because even the straight folks should be able to enjoy his music.</p>\r\n<p dir=\"ltr\">If you ever had any doubt at all of his genius or his truth. Find yourself the live version of \"Stand!\" to listen to. Sly bares his soul and lends you a hand all at once. His stream of consciousness about how some people, no matter how raw of a deal they get, are never afraid to Stand up for what they deserve, is spoken perfectly to the cadence of the background music. And then without even recognizing something has changed, he’s singing.</p>\r\n<p dir=\"ltr\">The more I read about Sly, the more I wanted to hug him, sit with him, be in his presence, have a conversation with him. A gift like his is so rare. I am sure, that to just be able to share a moment with him, could enrich a lifetime. And although The Family Stone has played without him, and don\'t get me wrong they are amazing musicians, it\'s not the same as the man. You can play the music, but the music was born out of the man.</p>\r\n<p dir=\"ltr\">I\'ve read a lot of people who said his music was \"simple\" but when you look at the big picture, it was anything but. Sure some songs were technically simple, but look at The Beatles, it doesn\'t make them any less genius.</p>\r\n<p dir=\"ltr\">I\'ve also read that Frank Zappa didn\'t think much of him, which I find fascinating and disappointing. There must be some underlying story there, because my only reason for looking into that question was some similarities I thought I heard. There\'s allusion to Frank thinking he was a sell-out, but Sly was not a sell-out, he genuinely wanted everyone to \"Dance to the Music.\"</p>\r\n<p dir=\"ltr\">If you listen you can hear his music growing. It reflects the beginning of something, and also the discovery and merging of so many great sounds and artists.</p>\r\n<p dir=\"ltr\">Sly built some really strong relationships with many musicians making their way through this time of social change and musical upheaval. He and Carlos Santana got very close; go find \"I Ain\'t Got Nobody\" by Sly and the Family Stone. I know you think I’m going to say it’s the same song, but it’s not. It was a seed planted in another amazing musicians\' soul. Music was love, Sly was happy for his songs to be repurposed and redone between people who loved music.</p>\r\n<p dir=\"ltr\">Sly and the Family Stone opened the door for R&B funk bands like Ohio Players, George Clinton, The Parliament Funkadelic (or P-Funk), Kool and the Gang and even Stevie Wonder. Disco owes its life to Funk and Funk owes its acceptance to Sly Stone and James Brown.</p>\r\n<p dir=\"ltr\">Look further into Sly and The Family Stone, you won\'t be sorry. I admit his <em>Greatest Hits</em> gets your body groovin\', but the hidden gems are the songs that got no air time, and even the songs that never made it to an album.</p>\r\n<p dir=\"ltr\">Check the new box set out, you won\'t be sorry. You NEED the book that comes with it. The images and the biographical information about each song is priceless.</p>\r\n<p dir=\"ltr\">First published on <a href=\"The best thing that could have ever happened to me and Sly was the release of the new box set - Sly and the Family Stone, Higher! I never intended to write about this release, but when I picked it up, I had no choice. Growing up in the 70\'s I was spoon fed Sly. I wasn\'t living in San Francisco, and even if I was, I am pretty sure they wouldn\'t have let a 4-year-old in his shows. So how could I possibly know?! HOW! The truth is, I really didn\'t become acquainted with Sly that much until I was a, let\'s say, "free-thinking" college student looking for the funk. But even then, it was just the tip of the iceberg. And when you spend a lot of time with the tip of the iceberg, it starts to get old. And boring. And gray. Ah, so how is it, that 40 years after Sly\'s genius was being recognized I am only seeing it now? Because now all of his work, previously un-released, multiple versions of songs, many of which I never heard, have been released. And thankfully, this is one of those rare instances where the record industry did see his amazing talent. Those record puppeteers pretty much gave Sly free rein. That is how you KNOW he was a genius. Sure, they gave him input, and he gladly took it. He was not at all averse to "dumbing it down" to get in the door. But the sheer truth is, that Sly and the Family Stone never failed to fill a live venue, because onstage they were electric. He was the conductor, not needing to be the star, bringing out the best of everyone who was part of The Family and when they were given the same free rein to jam in the studio, it was magical. Me of little knowledge, I had no idea he wasn\'t always the singer, there were many through the years, always more than one on an album, even a song. He was the magician, the creator - the genie on the sweet keys, or maybe making those strings sing, or maybe all of it. Because he was that guy. He was that guy who ONLY played what he felt, he only wrote his truth. The music, the words they really came from his soul. He never sold out, he was perfectly happy with the idea of making his music accessible to the masses because even the straight folks should be able to enjoy his music. If you ever had any doubt at all of his genius or his truth. Find yourself the live version of Stand! to listen to. Sly bares his soul and lends you a hand all at once. His stream of consciousness about how some people, no matter how raw of a deal they get, are never afraid to Stand up for what they deserve, is spoken perfectly to the cadence of the background music. And then without even recognizing something has changed, he’s singing. The more I read about Sly, the more I wanted to hug him, sit with him, be in his presence, have a conversation with him. A gift like his is so rare. I am sure, that to just be able to share a moment with him, could enrich a lifetime. And although The Family Stone has played without him, and don\'t get me wrong they are amazing musicians, it\'s not the same as the man. You can play the music, but the music was born out of the man. I\'ve read a lot of people who said his music was "simple" but when you look at the big picture, it was anything but. Sure some songs were technically simple, but look at The Beatles, it doesn\'t make them any less genius. I\'ve also read that Frank Zappa didn\'t think much of him, which I find fascinating and disappointing. There must be some underlying story there, because my only reason for looking into that question was some similarities I thought I heard. There\'s allusion to Frank thinking he was a sell-out, but Sly was not a sell-out, he genuinely wanted everyone to "Dance to the Music". If you listen you can hear his music growing. It reflects the beginning of something, and also the discovery and merging of so many great sounds and artists. Sly built some really strong relationships with many musicians making their way through this time of social change and musical upheaval. He and Carlos Santana got very close; go find I Ain\'t Got Nobody by Sly and the Family Stone I know you think I’m going to say it’s the same song, but it’s not. It was a seed planted in another amazing musicians soul. Music was love, Sly was happy for his songs to be repurposed and redone between people who loved music. Sy and the Family Stone opened the door for R&B funk bands like Ohio Players, George Clinton, The Parliament Funkadelic (or P-Funk), Kool and the Gang and even Stevie Wonder. Disco owes its life to Funk and Funk owes its acceptance to Sly Stone and James Brown. Look further into Sly and The Family Stone, you won\'t be sorry. I admit his Greatest Hits get\'s your body groovin\', but the hidden gems are the songs that got no air time, and even the songs that never made it to an album. Check the new box set out, you won\'t be sorry. You NEED the book that comes with it. The images and the biographical information about each song is priceless. About the Author: Jen Kehl is a 40-something chick, who has finally come to terms with the fact that she is still a deadhead music freak trapped inside the body of someone\'s mother. She often finds herself stuck in the 70′s with the all of the rainbows and unicorns. She blogs at My Skewed View and created the music site Raised on the Radio. She is also a published author as part of the anthology The Mother of All Meltdowns available on Amazon. Connect with her on twitter @jenkehl, Facebook, and Google+.\">Raised on the Radio</a></p>\r\n<p dir=\"ltr\">Post by Jen Kehl</p>\r\n<p dir=\"ltr\"><em><strong>Jen Kehl is a 40-something chick, who has finally come to terms with the fact that she is still a deadhead music freak trapped inside the body of someone\'s mother. She often finds herself stuck in the 70′s with the all of the rainbows and unicorns. She blogs at <a href=\"http://jenkehl.com/\">My Skewed View</a> and created the music site <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a>. She is also a published author as part of the anthology <a href=\"http://www.amazon.com/gp/product/B00FKZLGM6/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00FKZLGM6&linkCode=as2&tag=raisedontheradio-20\">The Mother of All Meltdowns</a> available on Amazon.</strong></em></p>\r\n<em><strong>Connect with her on twitter <a href=\"https://twitter.com/jenkehl\">@jenkehl</a>, <a href=\"https://www.facebook.com/myskewedviewbyjenkehl\">Facebook</a>, and <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\">Google+</a>.</strong></em>','Sly and the Family Stone. Everybody is a Star','','publish','open','open','','sly-and-the-family-stone-everybody-is-a-star','','','2014-03-03 10:45:18','2014-03-03 16:45:18','',0,'http://www.earthhertzrecords.com/?p=1591',0,'post','',0),(1592,2,'2014-03-02 15:54:50','2014-03-02 21:54:50','','sly&thefamilystone','','inherit','open','open','','slythefamilystone','','','2014-03-02 15:54:50','2014-03-02 21:54:50','',1591,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/slythefamilystone.jpg',0,'attachment','image/jpeg',0),(1593,2,'2014-03-02 15:56:59','2014-03-02 21:56:59','<p dir=\"ltr\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/slythefamilystone.jpg\"><img class=\"alignleft size-medium wp-image-1592\" alt=\"sly&thefamilystone\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/slythefamilystone-300x300.jpg\" width=\"300\" height=\"300\" /></a>The best thing that could have ever happened to me and Sly was the release of the new box set - <em>Sly and the Family Stone, Higher!</em> I never intended to write about this release, but when I picked it up, I had no choice.</p>\r\n<p dir=\"ltr\">Growing up in the 70\'s I was spoon fed Sly. I wasn\'t living in San Francisco, and even if I was, I am pretty sure they wouldn\'t have let a 4-year-old in his shows. So how could I possibly know? HOW!</p>\r\n<p dir=\"ltr\">The truth is, I really didn\'t become acquainted with Sly that much until I was a, let\'s say, \"free-thinking\" college student looking for the funk. But even then, it was just the tip of the iceberg. And when you spend a lot of time with the tip of the iceberg, it starts to get old. And boring. And gray.</p>\r\n<p dir=\"ltr\">Ah, so how is it, that 40 years after Sly\'s genius was being recognized I am only seeing it now? Because now all of his work, previously un-released, multiple versions of songs, many of which I never heard, have been released.</p>\r\n<p dir=\"ltr\">And thankfully, this is one of those rare instances where the record industry did see his amazing talent. Those record puppeteers pretty much gave Sly free rein. That is how you KNOW he was a genius. Sure, they gave him input, and he gladly took it. He was not at all averse to \"dumbing it down\" to get in the door.</p>\r\n<p dir=\"ltr\">But the sheer truth is, that Sly and the Family Stone never failed to fill a live venue, because onstage they were electric. He was the conductor, not needing to be the star, bringing out the best of everyone who was part of The Family and when they were given the same free rein to jam in the studio, it was magical.</p>\r\n<p dir=\"ltr\">Me of little knowledge, I had no idea he wasn\'t always the singer, there were many through the years, always more than one on an album, even a song. He was the magician, the creator - the genie on the sweet keys, or maybe making those strings sing, or maybe all of it. Because he was that guy.</p>\r\n<p dir=\"ltr\">He was that guy who ONLY played what he felt, he only wrote his truth. The music, the words they really came from his soul. He never sold out, he was perfectly happy with the idea of making his music accessible to the masses because even the straight folks should be able to enjoy his music.</p>\r\n<p dir=\"ltr\">If you ever had any doubt at all of his genius or his truth. Find yourself the live version of \"Stand!\" to listen to. Sly bares his soul and lends you a hand all at once. His stream of consciousness about how some people, no matter how raw of a deal they get, are never afraid to Stand up for what they deserve, is spoken perfectly to the cadence of the background music. And then without even recognizing something has changed, he’s singing.</p>\r\n<p dir=\"ltr\">The more I read about Sly, the more I wanted to hug him, sit with him, be in his presence, have a conversation with him. A gift like his is so rare. I am sure, that to just be able to share a moment with him, could enrich a lifetime. And although The Family Stone has played without him, and don\'t get me wrong they are amazing musicians, it\'s not the same as the man. You can play the music, but the music was born out of the man.</p>\r\n<p dir=\"ltr\">I\'ve read a lot of people who said his music was \"simple\" but when you look at the big picture, it was anything but. Sure some songs were technically simple, but look at The Beatles, it doesn\'t make them any less genius.</p>\r\n<p dir=\"ltr\">I\'ve also read that Frank Zappa didn\'t think much of him, which I find fascinating and disappointing. There must be some underlying story there, because my only reason for looking into that question was some similarities I thought I heard. There\'s allusion to Frank thinking he was a sell-out, but Sly was not a sell-out, he genuinely wanted everyone to \"Dance to the Music.\"</p>\r\n<p dir=\"ltr\">If you listen you can hear his music growing. It reflects the beginning of something, and also the discovery and merging of so many great sounds and artists.</p>\r\n<p dir=\"ltr\">Sly built some really strong relationships with many musicians making their way through this time of social change and musical upheaval. He and Carlos Santana got very close; go find \"I Ain\'t Got Nobody\" by Sly and the Family Stone. I know you think I’m going to say it’s the same song, but it’s not. It was a seed planted in another amazing musicians\' soul. Music was love, Sly was happy for his songs to be repurposed and redone between people who loved music.</p>\r\n<p dir=\"ltr\">Sly and the Family Stone opened the door for R&B funk bands like Ohio Players, George Clinton, The Parliament Funkadelic (or P-Funk), Kool and the Gang and even Stevie Wonder. Disco owes its life to Funk and Funk owes its acceptance to Sly Stone and James Brown.</p>\r\n<p dir=\"ltr\">Look further into Sly and The Family Stone, you won\'t be sorry. I admit his Greatest Hits get\'s your body groovin\', but the hidden gems are the songs that got no air time, and even the songs that never made it to an album.</p>\r\n<p dir=\"ltr\">Check the new box set out, you won\'t be sorry. You NEED the book that comes with it. The images and the biographical information about each song is priceless.</p>\r\n<p dir=\"ltr\">First published on <a href=\"The best thing that could have ever happened to me and Sly was the release of the new box set - Sly and the Family Stone, Higher! I never intended to write about this release, but when I picked it up, I had no choice. Growing up in the 70\'s I was spoon fed Sly. I wasn\'t living in San Francisco, and even if I was, I am pretty sure they wouldn\'t have let a 4-year-old in his shows. So how could I possibly know?! HOW! The truth is, I really didn\'t become acquainted with Sly that much until I was a, let\'s say, "free-thinking" college student looking for the funk. But even then, it was just the tip of the iceberg. And when you spend a lot of time with the tip of the iceberg, it starts to get old. And boring. And gray. Ah, so how is it, that 40 years after Sly\'s genius was being recognized I am only seeing it now? Because now all of his work, previously un-released, multiple versions of songs, many of which I never heard, have been released. And thankfully, this is one of those rare instances where the record industry did see his amazing talent. Those record puppeteers pretty much gave Sly free rein. That is how you KNOW he was a genius. Sure, they gave him input, and he gladly took it. He was not at all averse to "dumbing it down" to get in the door. But the sheer truth is, that Sly and the Family Stone never failed to fill a live venue, because onstage they were electric. He was the conductor, not needing to be the star, bringing out the best of everyone who was part of The Family and when they were given the same free rein to jam in the studio, it was magical. Me of little knowledge, I had no idea he wasn\'t always the singer, there were many through the years, always more than one on an album, even a song. He was the magician, the creator - the genie on the sweet keys, or maybe making those strings sing, or maybe all of it. Because he was that guy. He was that guy who ONLY played what he felt, he only wrote his truth. The music, the words they really came from his soul. He never sold out, he was perfectly happy with the idea of making his music accessible to the masses because even the straight folks should be able to enjoy his music. If you ever had any doubt at all of his genius or his truth. Find yourself the live version of Stand! to listen to. Sly bares his soul and lends you a hand all at once. His stream of consciousness about how some people, no matter how raw of a deal they get, are never afraid to Stand up for what they deserve, is spoken perfectly to the cadence of the background music. And then without even recognizing something has changed, he’s singing. The more I read about Sly, the more I wanted to hug him, sit with him, be in his presence, have a conversation with him. A gift like his is so rare. I am sure, that to just be able to share a moment with him, could enrich a lifetime. And although The Family Stone has played without him, and don\'t get me wrong they are amazing musicians, it\'s not the same as the man. You can play the music, but the music was born out of the man. I\'ve read a lot of people who said his music was "simple" but when you look at the big picture, it was anything but. Sure some songs were technically simple, but look at The Beatles, it doesn\'t make them any less genius. I\'ve also read that Frank Zappa didn\'t think much of him, which I find fascinating and disappointing. There must be some underlying story there, because my only reason for looking into that question was some similarities I thought I heard. There\'s allusion to Frank thinking he was a sell-out, but Sly was not a sell-out, he genuinely wanted everyone to "Dance to the Music". If you listen you can hear his music growing. It reflects the beginning of something, and also the discovery and merging of so many great sounds and artists. Sly built some really strong relationships with many musicians making their way through this time of social change and musical upheaval. He and Carlos Santana got very close; go find I Ain\'t Got Nobody by Sly and the Family Stone I know you think I’m going to say it’s the same song, but it’s not. It was a seed planted in another amazing musicians soul. Music was love, Sly was happy for his songs to be repurposed and redone between people who loved music. Sy and the Family Stone opened the door for R&B funk bands like Ohio Players, George Clinton, The Parliament Funkadelic (or P-Funk), Kool and the Gang and even Stevie Wonder. Disco owes its life to Funk and Funk owes its acceptance to Sly Stone and James Brown. Look further into Sly and The Family Stone, you won\'t be sorry. I admit his Greatest Hits get\'s your body groovin\', but the hidden gems are the songs that got no air time, and even the songs that never made it to an album. Check the new box set out, you won\'t be sorry. You NEED the book that comes with it. The images and the biographical information about each song is priceless. About the Author: Jen Kehl is a 40-something chick, who has finally come to terms with the fact that she is still a deadhead music freak trapped inside the body of someone\'s mother. She often finds herself stuck in the 70′s with the all of the rainbows and unicorns. She blogs at My Skewed View and created the music site Raised on the Radio. She is also a published author as part of the anthology The Mother of All Meltdowns available on Amazon. Connect with her on twitter @jenkehl, Facebook, and Google+.\">Raised on the Radio</a></p>\r\n<p dir=\"ltr\">Post by Jen Kehl</p>\r\n<p dir=\"ltr\"><em><strong>Jen Kehl is a 40-something chick, who has finally come to terms with the fact that she is still a deadhead music freak trapped inside the body of someone\'s mother. She often finds herself stuck in the 70′s with the all of the rainbows and unicorns. She blogs at <a href=\"http://jenkehl.com/\">My Skewed View</a> and created the music site <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a>. She is also a published author as part of the anthology <a href=\"http://www.amazon.com/gp/product/B00FKZLGM6/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00FKZLGM6&linkCode=as2&tag=raisedontheradio-20\">The Mother of All Meltdowns</a> available on Amazon.</strong></em></p>\r\n<em><strong>Connect with her on twitter <a href=\"https://twitter.com/jenkehl\">@jenkehl</a>, <a href=\"https://www.facebook.com/myskewedviewbyjenkehl\">Facebook</a>, and <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\">Google+</a>.</strong></em>','Everybody is a Star','','inherit','open','open','','1591-revision-v1','','','2014-03-02 15:56:59','2014-03-02 21:56:59','',1591,'http://www.earthhertzrecords.com/2014/03/1591-revision-v1/',0,'revision','',0),(1594,2,'2014-03-02 16:03:29','2014-03-02 22:03:29','<p dir=\"ltr\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/slythefamilystone.jpg\"><img class=\"alignleft size-medium wp-image-1592\" alt=\"sly&thefamilystone\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/slythefamilystone-300x300.jpg\" width=\"300\" height=\"300\" /></a>The best thing that could have ever happened to me and Sly was the release of the new box set - <em>Sly and the Family Stone, Higher!</em> I never intended to write about this release, but when I picked it up, I had no choice.</p>\r\n<p dir=\"ltr\">Growing up in the 70\'s I was spoon fed Sly. I wasn\'t living in San Francisco, and even if I was, I am pretty sure they wouldn\'t have let a 4-year-old in his shows. So how could I possibly know? HOW!</p>\r\n<p dir=\"ltr\">The truth is, I really didn\'t become acquainted with Sly that much until I was a, let\'s say, \"free-thinking\" college student looking for the funk. But even then, it was just the tip of the iceberg. And when you spend a lot of time with the tip of the iceberg, it starts to get old. And boring. And gray.</p>\r\n<p dir=\"ltr\">Ah, so how is it, that 40 years after Sly\'s genius was being recognized I am only seeing it now? Because now all of his work, previously un-released, multiple versions of songs, many of which I never heard, have been released.</p>\r\n<p dir=\"ltr\">And thankfully, this is one of those rare instances where the record industry did see his amazing talent. Those record puppeteers pretty much gave Sly free rein. That is how you KNOW he was a genius. Sure, they gave him input, and he gladly took it. He was not at all averse to \"dumbing it down\" to get in the door.</p>\r\n<p dir=\"ltr\">But the sheer truth is, that Sly and the Family Stone never failed to fill a live venue, because onstage they were electric. He was the conductor, not needing to be the star, bringing out the best of everyone who was part of The Family and when they were given the same free rein to jam in the studio, it was magical.</p>\r\n<p dir=\"ltr\">Me of little knowledge, I had no idea he wasn\'t always the singer, there were many through the years, always more than one on an album, even a song. He was the magician, the creator - the genie on the sweet keys, or maybe making those strings sing, or maybe all of it. Because he was that guy.</p>\r\n<p dir=\"ltr\">He was that guy who ONLY played what he felt, he only wrote his truth. The music, the words they really came from his soul. He never sold out, he was perfectly happy with the idea of making his music accessible to the masses because even the straight folks should be able to enjoy his music.</p>\r\n<p dir=\"ltr\">If you ever had any doubt at all of his genius or his truth. Find yourself the live version of \"Stand!\" to listen to. Sly bares his soul and lends you a hand all at once. His stream of consciousness about how some people, no matter how raw of a deal they get, are never afraid to Stand up for what they deserve, is spoken perfectly to the cadence of the background music. And then without even recognizing something has changed, he’s singing.</p>\r\n<p dir=\"ltr\">The more I read about Sly, the more I wanted to hug him, sit with him, be in his presence, have a conversation with him. A gift like his is so rare. I am sure, that to just be able to share a moment with him, could enrich a lifetime. And although The Family Stone has played without him, and don\'t get me wrong they are amazing musicians, it\'s not the same as the man. You can play the music, but the music was born out of the man.</p>\r\n<p dir=\"ltr\">I\'ve read a lot of people who said his music was \"simple\" but when you look at the big picture, it was anything but. Sure some songs were technically simple, but look at The Beatles, it doesn\'t make them any less genius.</p>\r\n<p dir=\"ltr\">I\'ve also read that Frank Zappa didn\'t think much of him, which I find fascinating and disappointing. There must be some underlying story there, because my only reason for looking into that question was some similarities I thought I heard. There\'s allusion to Frank thinking he was a sell-out, but Sly was not a sell-out, he genuinely wanted everyone to \"Dance to the Music.\"</p>\r\n<p dir=\"ltr\">If you listen you can hear his music growing. It reflects the beginning of something, and also the discovery and merging of so many great sounds and artists.</p>\r\n<p dir=\"ltr\">Sly built some really strong relationships with many musicians making their way through this time of social change and musical upheaval. He and Carlos Santana got very close; go find \"I Ain\'t Got Nobody\" by Sly and the Family Stone. I know you think I’m going to say it’s the same song, but it’s not. It was a seed planted in another amazing musicians\' soul. Music was love, Sly was happy for his songs to be repurposed and redone between people who loved music.</p>\r\n<p dir=\"ltr\">Sly and the Family Stone opened the door for R&B funk bands like Ohio Players, George Clinton, The Parliament Funkadelic (or P-Funk), Kool and the Gang and even Stevie Wonder. Disco owes its life to Funk and Funk owes its acceptance to Sly Stone and James Brown.</p>\r\n<p dir=\"ltr\">Look further into Sly and The Family Stone, you won\'t be sorry. I admit his <em>Greatest Hits</em> gets your body groovin\', but the hidden gems are the songs that got no air time, and even the songs that never made it to an album.</p>\r\n<p dir=\"ltr\">Check the new box set out, you won\'t be sorry. You NEED the book that comes with it. The images and the biographical information about each song is priceless.</p>\r\n<p dir=\"ltr\">First published on <a href=\"The best thing that could have ever happened to me and Sly was the release of the new box set - Sly and the Family Stone, Higher! I never intended to write about this release, but when I picked it up, I had no choice. Growing up in the 70\'s I was spoon fed Sly. I wasn\'t living in San Francisco, and even if I was, I am pretty sure they wouldn\'t have let a 4-year-old in his shows. So how could I possibly know?! HOW! The truth is, I really didn\'t become acquainted with Sly that much until I was a, let\'s say, "free-thinking" college student looking for the funk. But even then, it was just the tip of the iceberg. And when you spend a lot of time with the tip of the iceberg, it starts to get old. And boring. And gray. Ah, so how is it, that 40 years after Sly\'s genius was being recognized I am only seeing it now? Because now all of his work, previously un-released, multiple versions of songs, many of which I never heard, have been released. And thankfully, this is one of those rare instances where the record industry did see his amazing talent. Those record puppeteers pretty much gave Sly free rein. That is how you KNOW he was a genius. Sure, they gave him input, and he gladly took it. He was not at all averse to "dumbing it down" to get in the door. But the sheer truth is, that Sly and the Family Stone never failed to fill a live venue, because onstage they were electric. He was the conductor, not needing to be the star, bringing out the best of everyone who was part of The Family and when they were given the same free rein to jam in the studio, it was magical. Me of little knowledge, I had no idea he wasn\'t always the singer, there were many through the years, always more than one on an album, even a song. He was the magician, the creator - the genie on the sweet keys, or maybe making those strings sing, or maybe all of it. Because he was that guy. He was that guy who ONLY played what he felt, he only wrote his truth. The music, the words they really came from his soul. He never sold out, he was perfectly happy with the idea of making his music accessible to the masses because even the straight folks should be able to enjoy his music. If you ever had any doubt at all of his genius or his truth. Find yourself the live version of Stand! to listen to. Sly bares his soul and lends you a hand all at once. His stream of consciousness about how some people, no matter how raw of a deal they get, are never afraid to Stand up for what they deserve, is spoken perfectly to the cadence of the background music. And then without even recognizing something has changed, he’s singing. The more I read about Sly, the more I wanted to hug him, sit with him, be in his presence, have a conversation with him. A gift like his is so rare. I am sure, that to just be able to share a moment with him, could enrich a lifetime. And although The Family Stone has played without him, and don\'t get me wrong they are amazing musicians, it\'s not the same as the man. You can play the music, but the music was born out of the man. I\'ve read a lot of people who said his music was "simple" but when you look at the big picture, it was anything but. Sure some songs were technically simple, but look at The Beatles, it doesn\'t make them any less genius. I\'ve also read that Frank Zappa didn\'t think much of him, which I find fascinating and disappointing. There must be some underlying story there, because my only reason for looking into that question was some similarities I thought I heard. There\'s allusion to Frank thinking he was a sell-out, but Sly was not a sell-out, he genuinely wanted everyone to "Dance to the Music". If you listen you can hear his music growing. It reflects the beginning of something, and also the discovery and merging of so many great sounds and artists. Sly built some really strong relationships with many musicians making their way through this time of social change and musical upheaval. He and Carlos Santana got very close; go find I Ain\'t Got Nobody by Sly and the Family Stone I know you think I’m going to say it’s the same song, but it’s not. It was a seed planted in another amazing musicians soul. Music was love, Sly was happy for his songs to be repurposed and redone between people who loved music. Sy and the Family Stone opened the door for R&B funk bands like Ohio Players, George Clinton, The Parliament Funkadelic (or P-Funk), Kool and the Gang and even Stevie Wonder. Disco owes its life to Funk and Funk owes its acceptance to Sly Stone and James Brown. Look further into Sly and The Family Stone, you won\'t be sorry. I admit his Greatest Hits get\'s your body groovin\', but the hidden gems are the songs that got no air time, and even the songs that never made it to an album. Check the new box set out, you won\'t be sorry. You NEED the book that comes with it. The images and the biographical information about each song is priceless. About the Author: Jen Kehl is a 40-something chick, who has finally come to terms with the fact that she is still a deadhead music freak trapped inside the body of someone\'s mother. She often finds herself stuck in the 70′s with the all of the rainbows and unicorns. She blogs at My Skewed View and created the music site Raised on the Radio. She is also a published author as part of the anthology The Mother of All Meltdowns available on Amazon. Connect with her on twitter @jenkehl, Facebook, and Google+.\">Raised on the Radio</a></p>\r\n<p dir=\"ltr\">Post by Jen Kehl</p>\r\n<p dir=\"ltr\"><em><strong>Jen Kehl is a 40-something chick, who has finally come to terms with the fact that she is still a deadhead music freak trapped inside the body of someone\'s mother. She often finds herself stuck in the 70′s with the all of the rainbows and unicorns. She blogs at <a href=\"http://jenkehl.com/\">My Skewed View</a> and created the music site <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a>. She is also a published author as part of the anthology <a href=\"http://www.amazon.com/gp/product/B00FKZLGM6/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00FKZLGM6&linkCode=as2&tag=raisedontheradio-20\">The Mother of All Meltdowns</a> available on Amazon.</strong></em></p>\r\n<em><strong>Connect with her on twitter <a href=\"https://twitter.com/jenkehl\">@jenkehl</a>, <a href=\"https://www.facebook.com/myskewedviewbyjenkehl\">Facebook</a>, and <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\">Google+</a>.</strong></em>','Everybody is a Star','','inherit','open','open','','1591-revision-v1','','','2014-03-02 16:03:29','2014-03-02 22:03:29','',1591,'http://www.earthhertzrecords.com/2014/03/1591-revision-v1/',0,'revision','',0),(1595,2,'2014-03-03 10:45:18','2014-03-03 16:45:18','<p dir=\"ltr\"><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/slythefamilystone.jpg\"><img class=\"alignleft size-medium wp-image-1592\" alt=\"sly&thefamilystone\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/slythefamilystone-300x300.jpg\" width=\"300\" height=\"300\" /></a>The best thing that could have ever happened to me and Sly was the release of the new box set - <em>Sly and the Family Stone, Higher!</em> I never intended to write about this release, but when I picked it up, I had no choice.</p>\r\n<p dir=\"ltr\">Growing up in the 70\'s I was spoon fed Sly. I wasn\'t living in San Francisco, and even if I was, I am pretty sure they wouldn\'t have let a 4-year-old in his shows. So how could I possibly know? HOW!</p>\r\n<p dir=\"ltr\">The truth is, I really didn\'t become acquainted with Sly that much until I was a, let\'s say, \"free-thinking\" college student looking for the funk. But even then, it was just the tip of the iceberg. And when you spend a lot of time with the tip of the iceberg, it starts to get old. And boring. And gray.</p>\r\n<p dir=\"ltr\">Ah, so how is it, that 40 years after Sly\'s genius was being recognized I am only seeing it now? Because now all of his work, previously un-released, multiple versions of songs, many of which I never heard, have been released.</p>\r\n<p dir=\"ltr\">And thankfully, this is one of those rare instances where the record industry did see his amazing talent. Those record puppeteers pretty much gave Sly free rein. That is how you KNOW he was a genius. Sure, they gave him input, and he gladly took it. He was not at all averse to \"dumbing it down\" to get in the door.</p>\r\n<p dir=\"ltr\">But the sheer truth is, that Sly and the Family Stone never failed to fill a live venue, because onstage they were electric. He was the conductor, not needing to be the star, bringing out the best of everyone who was part of The Family and when they were given the same free rein to jam in the studio, it was magical.</p>\r\n<p dir=\"ltr\">Me of little knowledge, I had no idea he wasn\'t always the singer, there were many through the years, always more than one on an album, even a song. He was the magician, the creator - the genie on the sweet keys, or maybe making those strings sing, or maybe all of it. Because he was that guy.</p>\r\n<p dir=\"ltr\">He was that guy who ONLY played what he felt, he only wrote his truth. The music, the words they really came from his soul. He never sold out, he was perfectly happy with the idea of making his music accessible to the masses because even the straight folks should be able to enjoy his music.</p>\r\n<p dir=\"ltr\">If you ever had any doubt at all of his genius or his truth. Find yourself the live version of \"Stand!\" to listen to. Sly bares his soul and lends you a hand all at once. His stream of consciousness about how some people, no matter how raw of a deal they get, are never afraid to Stand up for what they deserve, is spoken perfectly to the cadence of the background music. And then without even recognizing something has changed, he’s singing.</p>\r\n<p dir=\"ltr\">The more I read about Sly, the more I wanted to hug him, sit with him, be in his presence, have a conversation with him. A gift like his is so rare. I am sure, that to just be able to share a moment with him, could enrich a lifetime. And although The Family Stone has played without him, and don\'t get me wrong they are amazing musicians, it\'s not the same as the man. You can play the music, but the music was born out of the man.</p>\r\n<p dir=\"ltr\">I\'ve read a lot of people who said his music was \"simple\" but when you look at the big picture, it was anything but. Sure some songs were technically simple, but look at The Beatles, it doesn\'t make them any less genius.</p>\r\n<p dir=\"ltr\">I\'ve also read that Frank Zappa didn\'t think much of him, which I find fascinating and disappointing. There must be some underlying story there, because my only reason for looking into that question was some similarities I thought I heard. There\'s allusion to Frank thinking he was a sell-out, but Sly was not a sell-out, he genuinely wanted everyone to \"Dance to the Music.\"</p>\r\n<p dir=\"ltr\">If you listen you can hear his music growing. It reflects the beginning of something, and also the discovery and merging of so many great sounds and artists.</p>\r\n<p dir=\"ltr\">Sly built some really strong relationships with many musicians making their way through this time of social change and musical upheaval. He and Carlos Santana got very close; go find \"I Ain\'t Got Nobody\" by Sly and the Family Stone. I know you think I’m going to say it’s the same song, but it’s not. It was a seed planted in another amazing musicians\' soul. Music was love, Sly was happy for his songs to be repurposed and redone between people who loved music.</p>\r\n<p dir=\"ltr\">Sly and the Family Stone opened the door for R&B funk bands like Ohio Players, George Clinton, The Parliament Funkadelic (or P-Funk), Kool and the Gang and even Stevie Wonder. Disco owes its life to Funk and Funk owes its acceptance to Sly Stone and James Brown.</p>\r\n<p dir=\"ltr\">Look further into Sly and The Family Stone, you won\'t be sorry. I admit his <em>Greatest Hits</em> gets your body groovin\', but the hidden gems are the songs that got no air time, and even the songs that never made it to an album.</p>\r\n<p dir=\"ltr\">Check the new box set out, you won\'t be sorry. You NEED the book that comes with it. The images and the biographical information about each song is priceless.</p>\r\n<p dir=\"ltr\">First published on <a href=\"The best thing that could have ever happened to me and Sly was the release of the new box set - Sly and the Family Stone, Higher! I never intended to write about this release, but when I picked it up, I had no choice. Growing up in the 70\'s I was spoon fed Sly. I wasn\'t living in San Francisco, and even if I was, I am pretty sure they wouldn\'t have let a 4-year-old in his shows. So how could I possibly know?! HOW! The truth is, I really didn\'t become acquainted with Sly that much until I was a, let\'s say, "free-thinking" college student looking for the funk. But even then, it was just the tip of the iceberg. And when you spend a lot of time with the tip of the iceberg, it starts to get old. And boring. And gray. Ah, so how is it, that 40 years after Sly\'s genius was being recognized I am only seeing it now? Because now all of his work, previously un-released, multiple versions of songs, many of which I never heard, have been released. And thankfully, this is one of those rare instances where the record industry did see his amazing talent. Those record puppeteers pretty much gave Sly free rein. That is how you KNOW he was a genius. Sure, they gave him input, and he gladly took it. He was not at all averse to "dumbing it down" to get in the door. But the sheer truth is, that Sly and the Family Stone never failed to fill a live venue, because onstage they were electric. He was the conductor, not needing to be the star, bringing out the best of everyone who was part of The Family and when they were given the same free rein to jam in the studio, it was magical. Me of little knowledge, I had no idea he wasn\'t always the singer, there were many through the years, always more than one on an album, even a song. He was the magician, the creator - the genie on the sweet keys, or maybe making those strings sing, or maybe all of it. Because he was that guy. He was that guy who ONLY played what he felt, he only wrote his truth. The music, the words they really came from his soul. He never sold out, he was perfectly happy with the idea of making his music accessible to the masses because even the straight folks should be able to enjoy his music. If you ever had any doubt at all of his genius or his truth. Find yourself the live version of Stand! to listen to. Sly bares his soul and lends you a hand all at once. His stream of consciousness about how some people, no matter how raw of a deal they get, are never afraid to Stand up for what they deserve, is spoken perfectly to the cadence of the background music. And then without even recognizing something has changed, he’s singing. The more I read about Sly, the more I wanted to hug him, sit with him, be in his presence, have a conversation with him. A gift like his is so rare. I am sure, that to just be able to share a moment with him, could enrich a lifetime. And although The Family Stone has played without him, and don\'t get me wrong they are amazing musicians, it\'s not the same as the man. You can play the music, but the music was born out of the man. I\'ve read a lot of people who said his music was "simple" but when you look at the big picture, it was anything but. Sure some songs were technically simple, but look at The Beatles, it doesn\'t make them any less genius. I\'ve also read that Frank Zappa didn\'t think much of him, which I find fascinating and disappointing. There must be some underlying story there, because my only reason for looking into that question was some similarities I thought I heard. There\'s allusion to Frank thinking he was a sell-out, but Sly was not a sell-out, he genuinely wanted everyone to "Dance to the Music". If you listen you can hear his music growing. It reflects the beginning of something, and also the discovery and merging of so many great sounds and artists. Sly built some really strong relationships with many musicians making their way through this time of social change and musical upheaval. He and Carlos Santana got very close; go find I Ain\'t Got Nobody by Sly and the Family Stone I know you think I’m going to say it’s the same song, but it’s not. It was a seed planted in another amazing musicians soul. Music was love, Sly was happy for his songs to be repurposed and redone between people who loved music. Sy and the Family Stone opened the door for R&B funk bands like Ohio Players, George Clinton, The Parliament Funkadelic (or P-Funk), Kool and the Gang and even Stevie Wonder. Disco owes its life to Funk and Funk owes its acceptance to Sly Stone and James Brown. Look further into Sly and The Family Stone, you won\'t be sorry. I admit his Greatest Hits get\'s your body groovin\', but the hidden gems are the songs that got no air time, and even the songs that never made it to an album. Check the new box set out, you won\'t be sorry. You NEED the book that comes with it. The images and the biographical information about each song is priceless. About the Author: Jen Kehl is a 40-something chick, who has finally come to terms with the fact that she is still a deadhead music freak trapped inside the body of someone\'s mother. She often finds herself stuck in the 70′s with the all of the rainbows and unicorns. She blogs at My Skewed View and created the music site Raised on the Radio. She is also a published author as part of the anthology The Mother of All Meltdowns available on Amazon. Connect with her on twitter @jenkehl, Facebook, and Google+.\">Raised on the Radio</a></p>\r\n<p dir=\"ltr\">Post by Jen Kehl</p>\r\n<p dir=\"ltr\"><em><strong>Jen Kehl is a 40-something chick, who has finally come to terms with the fact that she is still a deadhead music freak trapped inside the body of someone\'s mother. She often finds herself stuck in the 70′s with the all of the rainbows and unicorns. She blogs at <a href=\"http://jenkehl.com/\">My Skewed View</a> and created the music site <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a>. She is also a published author as part of the anthology <a href=\"http://www.amazon.com/gp/product/B00FKZLGM6/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00FKZLGM6&linkCode=as2&tag=raisedontheradio-20\">The Mother of All Meltdowns</a> available on Amazon.</strong></em></p>\r\n<em><strong>Connect with her on twitter <a href=\"https://twitter.com/jenkehl\">@jenkehl</a>, <a href=\"https://www.facebook.com/myskewedviewbyjenkehl\">Facebook</a>, and <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\">Google+</a>.</strong></em>','Sly and the Family Stone. Everybody is a Star','','inherit','open','open','','1591-revision-v1','','','2014-03-03 10:45:18','2014-03-03 16:45:18','',1591,'http://www.earthhertzrecords.com/2014/03/1591-revision-v1/',0,'revision','',0),(1596,2,'2014-03-06 07:28:22','2014-03-06 13:28:22','[caption id=\"attachment_1598\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/bill-leverty2.jpg\"><img class=\"size-medium wp-image-1598\" alt=\"bill-leverty2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/bill-leverty2-300x199.jpg\" width=\"300\" height=\"199\" /></a> (Photo by: Sherry Boylan)[/caption]\r\n\r\nFirehouse guitarist <a href=\"http://www.leverty.com/\">Bill Leverty</a> has released several solo projects over the past few years, including <em>Flood The Engine</em> (a side project with Keith Horne, Andre LaBelle and Jimmy Kunes) and <em>Drive</em>, a collection of cover songs paying tribute to music that inspired him as a youth.\r\n\r\nBut it’s Leverty’s new single, “The Bloom Is Off The Rose” that takes more of those same influences and builds a wall of texture, tastefully blending in the guitarist’s own unique sound and vocal style.\r\n\r\nIt’s the third single Leverty has recently released. A trifecta that also includes the blues-based “Ace Bandage” and country themed “For Better or Forget It”. Leverty is slowly amassing an arsenal of songs with the intention of releasing a new solo album. One that will not only be diverse in its sonic quality but also stay true to his roots as both guitarist and singer/songwriter.\r\n\r\nLeverty and the rest of <a href=\"http://www.firehousemusic.com/\">Firehouse</a><em> (CJ Snare, Michael Foster and Allen McKenzie) </em>are showing no signs of slowing down. In addition to having recently performed a sold-out show in Leverty’s hometown of Richmond, Virginia, the band has announced a string of new tour dates that includes this year’s Monsters of Rock Cruise and U.K’s Firefest.\r\n\r\nI spoke with Leverty about his new music as well as got an update on Firehouse.\r\n\r\n<strong>James Wood: Where did the idea for \"The Bloom Is Off The Rose\" originate?</strong>\r\n\r\n<strong></strong>Bill Leverty: I got the hook when I heard someone mention it on TV. It was a phrase that I had never heard before and when I looked into it, I discovered that it’s really used when talking about the economy. Whenever the economy takes a downturn they’ll sometimes say, “the bloom is off the rose”. I wanted to put the human element into that phrase. So I started thinking about my past, the present and the people I’ve seen get hurt by other people. I also thought about how some people think they’re so special, that is until you pull away the facade and find out that they’re not.\r\n\r\n<strong>What was the recording process like?</strong>\r\n\r\nMichael Foster from Firehouse plays drums on it and Keith Horne plays bass. I really wanted the guitars to have different kinds of texture and give it a David Gilmore / Stevie Ray Vaughan type of sound along with some of my own. I consciously wanted to make it sound more eclectic.\r\n\r\n<strong>Let’s talk about a few of your other new songs: \"Ace Bandage\"</strong>\r\n\r\nI was actually in the shower when the line “I’m an Ace Bandage” came to mind. I remember telling my wife and daughter about how “I’m an ace bandage, wrap me around your heart” and everyone just could not stop laughing. I knew I had to finish it just for the entertainment value. It’s a very blues based kind of song that basically says if you were my woman and I was your Ace bandage, then I’m there to support you, hold you up and make you feel better.\r\n\r\n<strong>The song was also involved in a racing sponsorship. What can you tell me about that?</strong>\r\n\r\nIt was used for Tyler Jett Motorsports, a race team that a friend of mine, Gene Ostrowski is involved with. He’s out of Berwick, PA and has also sponsored a Firehouse race car. Any car that’s out there racing with a title to a song that I was involved with I’m honored to be a part of.\r\n\r\n<strong>\"For Better Or Forget It\"</strong>\r\n\r\nThat’s a country genre song that I actually co-wrote with my wife. I had originally written it with piano and Fender Telecasters but then decided to put some heavy guitars on it for the rhythm section. I had the hook about a marriage where the husband and wife are complaining because he said the preacher said “For better or for worse” while she thought he said “For better or forget it”. It starts off where everything is kind of cool but then she sees a Mercedes Benz instead of the Chevy S-10. Then she wants fancy clothes. This guy is working his ass off to support them but she’s like, “it’s for better or forget it”. It’s a little bit comedic.\r\n\r\n<strong>Let’s discuss a few of the shows Firehouse has coming up:</strong>\r\n\r\n<strong>Monsters of Rock Cruise:</strong> If I wasn’t performing, the cruise is something that I’d want to go on just to see my favorite bands. The people who organize it are all top-notch professionals and make it an awesome experience for the fans as well as the bands. It’s a great party and so much fun.\r\n\r\n<strong>Firefest:</strong> It’s another wonderful festival that focuses on the melodic rock genre. We love going over there. It’s a really good, multiple night event. The cool thing about it is that it’s an international event and people come from all over Europe to see it. When we meet fans after the show, we always find out that a lot of them are from as far away as Spain or Greece.<em> </em>\r\n\r\n<strong>Do you have a funny story you can share from Firehouse’s heyday?</strong>\r\n\r\nThere are so many funny stories from those days because we were all practical jokers and lived for the next opportunity to crack up. One of my favorites though happened in the winter of ’91. We were doing a show in Colorado Springs, CO with Slaughter and decided to play the ultimate practical joke on them. We outfitted our drum tech in nothing more than a diaper, a bow and arrow and a pair of Angel wings. During the first verse of their song, “Fly To The Angels” he walked right up to Mark (Slaughter) and put his arm around him as he was singing. All of the guys in the band loved it and we still laugh about it today!\r\n\r\n<strong>What’s the origin of the song “Love of A Lifetime”?</strong>\r\n\r\nThat song is about the search for the right person and the feeling you get when you finally do find the one. CJ came up with the hook and the chorus and had plotted it out on a Fender Rhodes. I took what he had and wrote the guitar intro melody and solo.\r\n\r\n<strong>Did you know at the time how much of an impact the song would have?</strong>\r\n\r\nWe always thought it was a good song, but you never really know what people are going to grab hold of. To take it a step further, you never know what the record company is going to grab a hold of and make a priority. When “Shake & Tumble” came out, our album (<em>Firehouse</em>) sold 100,000 copies. Then “Don’t Treat Me Bad” came out and the album went Gold. That was when Epic records knew that they had something special and put the love and muscle behind making the video for “Love of A Lifetime”. That song resonated with a lot of people and become more than just a hit. It was a big song for us, but also for the people who got married to it. It’s pretty cool to think that we had that kind of an impact on people. To where they actually used our song for their wedding. It’s a wild feeling.\r\n\r\nInterview by Jim Wood.\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Guitarist Bill Leverty Talks New Music, Touring and Firehouse','','publish','open','open','','guitarist-bill-leverty-talks-new-music-touring-and-firehouse','','','2014-03-06 07:36:18','2014-03-06 13:36:18','',0,'http://www.earthhertzrecords.com/?p=1596',0,'post','',0),(1597,2,'2014-03-06 06:31:35','2014-03-06 12:31:35','Firehouse guitarist Bill Leverty has released several solo projects over the past few years, including <em>Flood The Engine</em> (a side project with Keith Horne, Andre LaBelle and Jimmy Kunes) and <em>Drive</em>, a collection of cover songs paying tribute to music that inspired him as a youth.\r\n\r\nBut it’s Leverty’s new single, “The Bloom Is Off The Rose” that takes more of those same influences and builds a wall of texture, tastefully blending in the guitarist’s own unique sound and vocal style.\r\n\r\nIt’s the third single Leverty has recently released. A trifecta that also includes the blues-based “Ace Bandage” and country themed “For Better or Forget It”. Leverty is slowly amassing an arsenal of songs with the intention of releasing a new solo album. One that will not only be diverse in its sonic quality but also stay true to his roots as both guitarist and singer/songwriter.\r\n\r\nLeverty and the rest of Firehouse<em> (CJ Snare, Michael Foster and Allen McKenzie) </em>are showing no signs of slowing down. In addition to having recently performed a sold-out show in Leverty’s hometown of Richmond, Virginia, the band has announced a string of new tour dates that includes this year’s Monsters of Rock Cruise and U.K’s Firefest.\r\n\r\nI spoke with Leverty about his new music as well as got an update on Firehouse.\r\n\r\n<strong>James Wood: Where did the idea for \"The Bloom Is Off The Rose\" originate?</strong>\r\n\r\n<strong></strong>I got the hook when I heard someone mention it on TV. It was a phrase that I had never heard before and when I looked into it, I discovered that it’s really used when talking about the economy. Whenever the economy takes a downturn they’ll sometimes say, “the bloom is off the rose”. I wanted to put the human element into that phrase. So I started thinking about my past, the present and the people I’ve seen get hurt by other people. I also thought about how some people think they’re so special, that is until you pull away the facade and find out that they’re not.\r\n\r\n<strong>What was the recording process like?</strong>\r\n\r\nMichael Foster from Firehouse plays drums on it and Keith Horne plays bass. I really wanted the guitars to have different kinds of texture and give it a David Gilmore / Stevie Ray Vaughan type of sound along with some of my own. I consciously wanted to make it sound more eclectic.\r\n\r\n<strong>Let’s talk about a few of your other new songs: \"Ace Bandage\"</strong>\r\n\r\nI was actually in the shower when the line “I’m an Ace Bandage” came to mind. I remember telling my wife and daughter about how “I’m an ace bandage, wrap me around your heart” and everyone just could not stop laughing. I knew I had to finish it just for the entertainment value. It’s a very blues based kind of song that basically says if you were my woman and I was your Ace bandage, then I’m there to support you, hold you up and make you feel better.\r\n\r\n<strong>The song was also involved in a racing sponsorship. What can you tell me about that?</strong>\r\n\r\nIt was used for Tyler Jett Motorsports, a race team that a friend of mine, Gene Ostrowski is involved with. He’s out of Berwick, PA and has also sponsored a Firehouse race car. Any car that’s out there racing with a title to a song that I was involved with I’m honored to be a part of.\r\n\r\n<strong>\"For Better Or Forget It\"</strong>\r\n\r\nThat’s a country genre song that I actually co-wrote with my wife. I had originally written it with piano and Fender Telecasters but then decided to put some heavy guitars on it for the rhythm section. I had the hook about a marriage where the husband and wife are complaining because he said the preacher said “For better or for worse” while she thought he said “For better or forget it”. It starts off where everything is kind of cool but then she sees a Mercedes Benz instead of the Chevy S-10. Then she wants fancy clothes. This guy is working his ass off to support them but she’s like, “it’s for better or forget it”. It’s a little bit comedic.\r\n\r\n<strong>Let’s discuss a few of the shows Firehouse has coming up:</strong>\r\n\r\n<strong>Monsters of Rock Cruise:</strong> If I wasn’t performing, the cruise is something that I’d want to go on just to see my favorite bands. The people who organize it are all top-notch professionals and make it an awesome experience for the fans as well as the bands. It’s a great party and so much fun.\r\n\r\n<strong>Firefest:</strong> It’s another wonderful festival that focuses on the melodic rock genre. We love going over there. It’s a really good, multiple night event. The cool thing about it is that it’s an international event and people come from all over Europe to see it. When we meet fans after the show, we always find out that a lot of them are from as far away as Spain or Greece.<em> </em>\r\n\r\n<strong>Do you have a funny story you can share from Firehouse’s heyday?</strong>\r\n\r\nThere are so many funny stories from those days because we were all practical jokers and lived for the next opportunity to crack up. One of my favorites though happened in the winter of ’91. We were doing a show in Colorado Springs, CO with Slaughter and decided to play the ultimate practical joke on them. We outfitted our drum tech in nothing more than a diaper, a bow and arrow and a pair of Angel wings. During the first verse of their song, “Fly To The Angels” he walked right up to Mark (Slaughter) and put his arm around him as he was singing. All of the guys in the band loved it and we still laugh about it today!\r\n\r\n<strong>What’s the origin of the song “Love of A Lifetime”?</strong>\r\n\r\nThat song is about the search for the right person and the feeling you get when you finally do find the one. CJ came up with the hook and the chorus and had plotted it out on a Fender Rhodes. I took what he had and wrote the guitar intro melody and solo.\r\n\r\n<strong>Did you know at the time how much of an impact the song would have?</strong>\r\n\r\nWe always thought it was a good song, but you never really know what people are going to grab hold of. To take it a step further, you never know what the record company is going to grab a hold of and make a priority. When “Shake & Tumble” came out, our album (<em>Firehouse</em>) sold 100,000 copies. Then “Don’t Treat Me Bad” came out and the album went Gold. That was when Epic records knew that they had something special and put the love and muscle behind making the video for “Love of A Lifetime”. That song resonated with a lot of people and become more than just a hit. It was a big song for us, but also for the people who got married to it. It’s pretty cool to think that we had that kind of an impact on people. To where they actually used our song for their wedding. It’s a wild feeling.','Guitarist Bill Leverty Talks New Music, Touring and Firehouse','','inherit','open','open','','1596-revision-v1','','','2014-03-06 06:31:35','2014-03-06 12:31:35','',1596,'http://www.earthhertzrecords.com/2014/03/1596-revision-v1/',0,'revision','',0),(1598,2,'2014-03-06 06:58:23','2014-03-06 12:58:23','','bill-leverty2','','inherit','open','open','','bill-leverty2','','','2014-03-06 06:58:23','2014-03-06 12:58:23','',1596,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/bill-leverty2.jpg',0,'attachment','image/jpeg',0),(1599,2,'2014-03-06 06:59:36','2014-03-06 12:59:36','[caption id=\"attachment_1598\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/bill-leverty2.jpg\"><img class=\"size-medium wp-image-1598\" alt=\"bill-leverty2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/bill-leverty2-300x199.jpg\" width=\"300\" height=\"199\" /></a> (Photo by: Sherry Boylan)[/caption]\r\n\r\nFirehouse guitarist Bill Leverty has released several solo projects over the past few years, including <em>Flood The Engine</em> (a side project with Keith Horne, Andre LaBelle and Jimmy Kunes) and <em>Drive</em>, a collection of cover songs paying tribute to music that inspired him as a youth.\r\n\r\nBut it’s Leverty’s new single, “The Bloom Is Off The Rose” that takes more of those same influences and builds a wall of texture, tastefully blending in the guitarist’s own unique sound and vocal style.\r\n\r\nIt’s the third single Leverty has recently released. A trifecta that also includes the blues-based “Ace Bandage” and country themed “For Better or Forget It”. Leverty is slowly amassing an arsenal of songs with the intention of releasing a new solo album. One that will not only be diverse in its sonic quality but also stay true to his roots as both guitarist and singer/songwriter.\r\n\r\nLeverty and the rest of Firehouse<em> (CJ Snare, Michael Foster and Allen McKenzie) </em>are showing no signs of slowing down. In addition to having recently performed a sold-out show in Leverty’s hometown of Richmond, Virginia, the band has announced a string of new tour dates that includes this year’s Monsters of Rock Cruise and U.K’s Firefest.\r\n\r\nI spoke with Leverty about his new music as well as got an update on Firehouse.\r\n\r\n<strong>James Wood: Where did the idea for \"The Bloom Is Off The Rose\" originate?</strong>\r\n\r\n<strong></strong>Bill Leverty: I got the hook when I heard someone mention it on TV. It was a phrase that I had never heard before and when I looked into it, I discovered that it’s really used when talking about the economy. Whenever the economy takes a downturn they’ll sometimes say, “the bloom is off the rose”. I wanted to put the human element into that phrase. So I started thinking about my past, the present and the people I’ve seen get hurt by other people. I also thought about how some people think they’re so special, that is until you pull away the facade and find out that they’re not.\r\n\r\n<strong>What was the recording process like?</strong>\r\n\r\nMichael Foster from Firehouse plays drums on it and Keith Horne plays bass. I really wanted the guitars to have different kinds of texture and give it a David Gilmore / Stevie Ray Vaughan type of sound along with some of my own. I consciously wanted to make it sound more eclectic.\r\n\r\n<strong>Let’s talk about a few of your other new songs: \"Ace Bandage\"</strong>\r\n\r\nI was actually in the shower when the line “I’m an Ace Bandage” came to mind. I remember telling my wife and daughter about how “I’m an ace bandage, wrap me around your heart” and everyone just could not stop laughing. I knew I had to finish it just for the entertainment value. It’s a very blues based kind of song that basically says if you were my woman and I was your Ace bandage, then I’m there to support you, hold you up and make you feel better.\r\n\r\n<strong>The song was also involved in a racing sponsorship. What can you tell me about that?</strong>\r\n\r\nIt was used for Tyler Jett Motorsports, a race team that a friend of mine, Gene Ostrowski is involved with. He’s out of Berwick, PA and has also sponsored a Firehouse race car. Any car that’s out there racing with a title to a song that I was involved with I’m honored to be a part of.\r\n\r\n<strong>\"For Better Or Forget It\"</strong>\r\n\r\nThat’s a country genre song that I actually co-wrote with my wife. I had originally written it with piano and Fender Telecasters but then decided to put some heavy guitars on it for the rhythm section. I had the hook about a marriage where the husband and wife are complaining because he said the preacher said “For better or for worse” while she thought he said “For better or forget it”. It starts off where everything is kind of cool but then she sees a Mercedes Benz instead of the Chevy S-10. Then she wants fancy clothes. This guy is working his ass off to support them but she’s like, “it’s for better or forget it”. It’s a little bit comedic.\r\n\r\n<strong>Let’s discuss a few of the shows Firehouse has coming up:</strong>\r\n\r\n<strong>Monsters of Rock Cruise:</strong> If I wasn’t performing, the cruise is something that I’d want to go on just to see my favorite bands. The people who organize it are all top-notch professionals and make it an awesome experience for the fans as well as the bands. It’s a great party and so much fun.\r\n\r\n<strong>Firefest:</strong> It’s another wonderful festival that focuses on the melodic rock genre. We love going over there. It’s a really good, multiple night event. The cool thing about it is that it’s an international event and people come from all over Europe to see it. When we meet fans after the show, we always find out that a lot of them are from as far away as Spain or Greece.<em> </em>\r\n\r\n<strong>Do you have a funny story you can share from Firehouse’s heyday?</strong>\r\n\r\nThere are so many funny stories from those days because we were all practical jokers and lived for the next opportunity to crack up. One of my favorites though happened in the winter of ’91. We were doing a show in Colorado Springs, CO with Slaughter and decided to play the ultimate practical joke on them. We outfitted our drum tech in nothing more than a diaper, a bow and arrow and a pair of Angel wings. During the first verse of their song, “Fly To The Angels” he walked right up to Mark (Slaughter) and put his arm around him as he was singing. All of the guys in the band loved it and we still laugh about it today!\r\n\r\n<strong>What’s the origin of the song “Love of A Lifetime”?</strong>\r\n\r\nThat song is about the search for the right person and the feeling you get when you finally do find the one. CJ came up with the hook and the chorus and had plotted it out on a Fender Rhodes. I took what he had and wrote the guitar intro melody and solo.\r\n\r\n<strong>Did you know at the time how much of an impact the song would have?</strong>\r\n\r\nWe always thought it was a good song, but you never really know what people are going to grab hold of. To take it a step further, you never know what the record company is going to grab a hold of and make a priority. When “Shake & Tumble” came out, our album (<em>Firehouse</em>) sold 100,000 copies. Then “Don’t Treat Me Bad” came out and the album went Gold. That was when Epic records knew that they had something special and put the love and muscle behind making the video for “Love of A Lifetime”. That song resonated with a lot of people and become more than just a hit. It was a big song for us, but also for the people who got married to it. It’s pretty cool to think that we had that kind of an impact on people. To where they actually used our song for their wedding. It’s a wild feeling.\r\n\r\nInterview by Jim Wood.\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Guitarist Bill Leverty Talks New Music, Touring and Firehouse','','inherit','open','open','','1596-revision-v1','','','2014-03-06 06:59:36','2014-03-06 12:59:36','',1596,'http://www.earthhertzrecords.com/2014/03/1596-revision-v1/',0,'revision','',0),(1600,2,'2014-03-06 07:36:18','2014-03-06 13:36:18','[caption id=\"attachment_1598\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/bill-leverty2.jpg\"><img class=\"size-medium wp-image-1598\" alt=\"bill-leverty2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/bill-leverty2-300x199.jpg\" width=\"300\" height=\"199\" /></a> (Photo by: Sherry Boylan)[/caption]\r\n\r\nFirehouse guitarist <a href=\"http://www.leverty.com/\">Bill Leverty</a> has released several solo projects over the past few years, including <em>Flood The Engine</em> (a side project with Keith Horne, Andre LaBelle and Jimmy Kunes) and <em>Drive</em>, a collection of cover songs paying tribute to music that inspired him as a youth.\r\n\r\nBut it’s Leverty’s new single, “The Bloom Is Off The Rose” that takes more of those same influences and builds a wall of texture, tastefully blending in the guitarist’s own unique sound and vocal style.\r\n\r\nIt’s the third single Leverty has recently released. A trifecta that also includes the blues-based “Ace Bandage” and country themed “For Better or Forget It”. Leverty is slowly amassing an arsenal of songs with the intention of releasing a new solo album. One that will not only be diverse in its sonic quality but also stay true to his roots as both guitarist and singer/songwriter.\r\n\r\nLeverty and the rest of <a href=\"http://www.firehousemusic.com/\">Firehouse</a><em> (CJ Snare, Michael Foster and Allen McKenzie) </em>are showing no signs of slowing down. In addition to having recently performed a sold-out show in Leverty’s hometown of Richmond, Virginia, the band has announced a string of new tour dates that includes this year’s Monsters of Rock Cruise and U.K’s Firefest.\r\n\r\nI spoke with Leverty about his new music as well as got an update on Firehouse.\r\n\r\n<strong>James Wood: Where did the idea for \"The Bloom Is Off The Rose\" originate?</strong>\r\n\r\n<strong></strong>Bill Leverty: I got the hook when I heard someone mention it on TV. It was a phrase that I had never heard before and when I looked into it, I discovered that it’s really used when talking about the economy. Whenever the economy takes a downturn they’ll sometimes say, “the bloom is off the rose”. I wanted to put the human element into that phrase. So I started thinking about my past, the present and the people I’ve seen get hurt by other people. I also thought about how some people think they’re so special, that is until you pull away the facade and find out that they’re not.\r\n\r\n<strong>What was the recording process like?</strong>\r\n\r\nMichael Foster from Firehouse plays drums on it and Keith Horne plays bass. I really wanted the guitars to have different kinds of texture and give it a David Gilmore / Stevie Ray Vaughan type of sound along with some of my own. I consciously wanted to make it sound more eclectic.\r\n\r\n<strong>Let’s talk about a few of your other new songs: \"Ace Bandage\"</strong>\r\n\r\nI was actually in the shower when the line “I’m an Ace Bandage” came to mind. I remember telling my wife and daughter about how “I’m an ace bandage, wrap me around your heart” and everyone just could not stop laughing. I knew I had to finish it just for the entertainment value. It’s a very blues based kind of song that basically says if you were my woman and I was your Ace bandage, then I’m there to support you, hold you up and make you feel better.\r\n\r\n<strong>The song was also involved in a racing sponsorship. What can you tell me about that?</strong>\r\n\r\nIt was used for Tyler Jett Motorsports, a race team that a friend of mine, Gene Ostrowski is involved with. He’s out of Berwick, PA and has also sponsored a Firehouse race car. Any car that’s out there racing with a title to a song that I was involved with I’m honored to be a part of.\r\n\r\n<strong>\"For Better Or Forget It\"</strong>\r\n\r\nThat’s a country genre song that I actually co-wrote with my wife. I had originally written it with piano and Fender Telecasters but then decided to put some heavy guitars on it for the rhythm section. I had the hook about a marriage where the husband and wife are complaining because he said the preacher said “For better or for worse” while she thought he said “For better or forget it”. It starts off where everything is kind of cool but then she sees a Mercedes Benz instead of the Chevy S-10. Then she wants fancy clothes. This guy is working his ass off to support them but she’s like, “it’s for better or forget it”. It’s a little bit comedic.\r\n\r\n<strong>Let’s discuss a few of the shows Firehouse has coming up:</strong>\r\n\r\n<strong>Monsters of Rock Cruise:</strong> If I wasn’t performing, the cruise is something that I’d want to go on just to see my favorite bands. The people who organize it are all top-notch professionals and make it an awesome experience for the fans as well as the bands. It’s a great party and so much fun.\r\n\r\n<strong>Firefest:</strong> It’s another wonderful festival that focuses on the melodic rock genre. We love going over there. It’s a really good, multiple night event. The cool thing about it is that it’s an international event and people come from all over Europe to see it. When we meet fans after the show, we always find out that a lot of them are from as far away as Spain or Greece.<em> </em>\r\n\r\n<strong>Do you have a funny story you can share from Firehouse’s heyday?</strong>\r\n\r\nThere are so many funny stories from those days because we were all practical jokers and lived for the next opportunity to crack up. One of my favorites though happened in the winter of ’91. We were doing a show in Colorado Springs, CO with Slaughter and decided to play the ultimate practical joke on them. We outfitted our drum tech in nothing more than a diaper, a bow and arrow and a pair of Angel wings. During the first verse of their song, “Fly To The Angels” he walked right up to Mark (Slaughter) and put his arm around him as he was singing. All of the guys in the band loved it and we still laugh about it today!\r\n\r\n<strong>What’s the origin of the song “Love of A Lifetime”?</strong>\r\n\r\nThat song is about the search for the right person and the feeling you get when you finally do find the one. CJ came up with the hook and the chorus and had plotted it out on a Fender Rhodes. I took what he had and wrote the guitar intro melody and solo.\r\n\r\n<strong>Did you know at the time how much of an impact the song would have?</strong>\r\n\r\nWe always thought it was a good song, but you never really know what people are going to grab hold of. To take it a step further, you never know what the record company is going to grab a hold of and make a priority. When “Shake & Tumble” came out, our album (<em>Firehouse</em>) sold 100,000 copies. Then “Don’t Treat Me Bad” came out and the album went Gold. That was when Epic records knew that they had something special and put the love and muscle behind making the video for “Love of A Lifetime”. That song resonated with a lot of people and become more than just a hit. It was a big song for us, but also for the people who got married to it. It’s pretty cool to think that we had that kind of an impact on people. To where they actually used our song for their wedding. It’s a wild feeling.\r\n\r\nInterview by Jim Wood.\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Guitarist Bill Leverty Talks New Music, Touring and Firehouse','','inherit','open','open','','1596-revision-v1','','','2014-03-06 07:36:18','2014-03-06 13:36:18','',1596,'http://www.earthhertzrecords.com/2014/03/1596-revision-v1/',0,'revision','',0),(1602,2,'2014-03-09 19:28:39','2014-03-10 01:28:39','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg\"><img class=\"aligncenter size-full wp-image-1613\" alt=\"Wall of CDs_36 (1)-small\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg\" width=\"1000\" height=\"667\" /></a>When you think of Nirvana, your mind goes to the Seattle music scene. So what would you think if you discovered the demos for <em>Nevermind</em> were cut in a nondescript recording studio in Madison, Wisconsin? Well, you might be interested in finding out how many other musical secrets were contained in that recording studio. And the answer would be... a lot. In 1982, Butch Vig and Steve Marker of alt-rock band Garbage created Smart Studios, and for the next twenty-eight years, an improbable amount of music which would come to define the era, emerged from that same studio. From Nirvana, to Smashing Pumpkins, L7, Garbage, Death Cab for Cutie, Tar Babies, Killdozer, and many more, the imprint of Smart on the alternative music scene is large and deep.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2.jpg\"><img class=\"alignleft size-thumbnail wp-image-1606\" alt=\"OLYMPUS DIGITAL CAMERA\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>Director/Producer Wendy Schneider worked at Smart Studios in the early 90s and has maintained a lasting friendship with both Vig and Marker. In 2010, after the closing of the studio, she began gathering video interviews of musicians who had recorded at Smart. With each interview it became apparent Smart Studios had touched every artist who spent time there. It also seemed the time might be right to really focus on creating a feature length film, so the entire scope of the story of Smart Studios could be documented. Schneider is now in the midst of a Kickstarter campaign to raise funding for the project, <a href=\"http://www.smartstudiosdocumentary.com/\">The Smart Studios Story</a>.\r\n\r\nI recently spoke with Wendy Schneider about the documentary, the Kickstarter campaign, and the unlikely center of music in the midwest, Madison, Wisconsin.\r\n\r\n<b>Kath Galasso: You began working at Smart Studios in 1992, ten years after it opened. How did you get the job there?</b>\r\n\r\n<b></b>Wendy Schneider: I moved to Madison in 1990 and I had a production background from New York City, and it was multi-media communications, it was not Indie Rock recording studio at all. But I started to do live sound for a Ska band here, and I really enjoyed it. A set-up/tear-down capacity every night, and the drummer from that band said there was a cool recording studio and you should see if you could work there. So I showed up, introduced myself, said I didn’t have a resume and they said “we don’t take resumes, if you just want to come and hang out, you’re totally welcomed to.” And that was it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack.jpeg\"><img class=\"alignright size-medium wp-image-1607\" alt=\"BValbum_BVinblack\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack-300x240.jpeg\" width=\"300\" height=\"240\" /></a>I guess it was an intern capacity, it was super laid back. It was such a cool environment back then, you just didn’t want to leave. Butch described it as a clubhouse, to me it was more like a living room. It was just the way a studio ought to be. I loved being there. The people there were incredibly cool. What was nice was that nobody took me under their wing, but no doors were ever closed and you could sort of experiment and do what you wanted. Learn by doing.\r\n\r\n<b>Madison, Wisconsin seems as unlikely a place as there could be to become the home for an important footnote in music history. Tell me about the</b><b></b><b> music scene during that time.</b>\r\n\r\nIn my research with the bands that I’ve talked to, it seemed very raw, very organic, very eclectic. In some cases, there might have been some bands that were more musically intellectual, and others that were just more musically simple punk rock and in-your-face. The spectrum was all over the map. And that’s what’s interesting about Smart. It was incredibly expressive, incredibly diverse, but represented an alternative to what was on radio. It was an alternative to what was predictable and mainstream. It represented true fringe culture, a real alternative scene before we even called scenes alternative. Madison is a university city, the state capital, it’s known for its liberal politics, but I think that might have been a backdrop. There was the music scene that was anarchist in its approach. It really did what it wanted to do, and I really love that about the early scene. And Butch and Steve gravitated toward that, and those bands gravitated toward what Butch and Steve were doing, which was giving clarity to that music.\r\n\r\n[caption id=\"attachment_1608\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing.jpg\"><img class=\"size-medium wp-image-1608\" alt=\"BV mixing\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing-300x289.jpg\" width=\"300\" height=\"289\" /></a> Butch Vig[/caption]\r\n\r\n<strong>Do you know where the name Smart Studios came from?</strong>\r\n\r\nYeah, there’s a bar across the street called the Friendly Tavern and it was sort of an after hours thing when they would be sort of tapped out, or needed to get away from the studio, they would say “Hey let’s go across the street and get smart.” It really meant just going in and having some beers.\r\n\r\n<b>Why did the studio finally close?</b>\r\n\r\nSo many things factored into a studio like Smart closing. The most obvious is the business model. Any studio within the last ten years that has closed its doors will use that as why, and it is why essentially. The business just was not there, the business didn’t match the overhead. The accessibility of recording, just the broad range of opportunities that bands have to lay their stuff down. It’s a completely different playing field now than it was thirty years ago. Smart was really the only studio of its kind when it started, and to a fault, it spawned a lot of DIY studios. It spawned mine. So it’s the business model, but you also have an arena and an industry that’s making consumer products as accessible and as exciting and attractive as they can. The do-it-yourself mentality… there’s a payoff for large companies that sell to people who want to do it themselves.\r\n\r\n<strong>It seems everyone has a recording studio now, it\'s called their bedroom.</strong>\r\n\r\n[caption id=\"attachment_1609\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room.jpg\"><img class=\"size-medium wp-image-1609\" alt=\"FIRST SMART_Control Room\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room-300x212.jpg\" width=\"300\" height=\"212\" /></a> First Smart Studio Control Room[/caption]\r\n\r\nYeah, and at the same time it’s making it possible for enormous amounts of music to come out into the world. So there’s a real plus in that people are learning and creating their own way of getting their music recorded. I can see it from a lot of different angles. The unfortunate thing is the loss of environments like Smart, and staff that come with those environments. The people whose craft it is to record. And the craft of engineering is an artistry in the same way that carpentry is. Engineers there really put in their time, and were dedicated to creating the best possible music.\r\n\r\nAnd when I closed my studio, it was the same thing. The last couple of years it starts to get really hard, and you’re not as happy. You have to put more emphasis on marketing, and come up with creative ways to get people connected to the studio, and then you realize it’s a losing battle. It’s a tragedy. And we could certainly put it in the context of, we’re just talking about a recording studio here, nobody has died. There’s a point of reference that is very real of course. But when you look at what a studio represents to the expression of a community, and the loss of a beating heart, and that’s what Smart Studios was, Butch and Steve were a touchstone to a lot of people.\r\n\r\n[caption id=\"attachment_1610\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW.jpeg\"><img class=\"size-medium wp-image-1610 \" alt=\"Feeny_SM at conslBW\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW-300x202.jpeg\" width=\"300\" height=\"202\" /></a> Steve Marker[/caption]\r\n\r\n<strong>You began filming your documentary in 2010, the year the studio closed. Tell me about the timing, was the end of the studio the impetus to make the documentary </strong>\r\n\r\nYeah, I just started sitting down with people, and this was something that Butch, Steve and I talked about, it wasn’t about doing a documentary. It was about just capturing a moment, capturing what was happening. Trying to have it as a keepsake of sorts. The first round of interviews, Butch was in LA, Steve in Colorado, so I would send them little clips. And more and more, we just really began to get drawn into it. Then Butch said ‘I really feel like we should talk to get some people that represent the different platform in terms of the music industry experience, and have them talk about Smart.’ It’s such a local story, but it’s a very broad story about American rock music. And when you look at the Midwest, and its role in the context of American rock & roll, it’s quite interesting when you see the connections to this small studio in Madison Wisconsin. So it just kept propelling me forward.\r\n\r\n<b>You’ve described Butch and Steve’s approach to recording as “hardcore.” What made them so?</b>\r\n\r\nThe level of dedication, to me, was something I’d describe as hardcore. Coming in, in the morning and seeing them still there from last night. This was regular. When they were working on a project, it was not about anything other than the project… anything. And you are dealing with small budgets, independent labels, independent artists, and short periods of time. You don’t have three months to do a record. I think their ability to stay intact as decent human beings and be so hardcore about their work. To call somebody hardcore is one of the biggest compliments for me. To me it means, cut through all bullshit, they’re true to what they’re doing, and incredibly dedicated.\r\n\r\n<b>Describe for me the studio, and did that perception ever change while you were working </b><b>there?</b>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1.jpg\"><img class=\"alignleft size-medium wp-image-1611\" alt=\"1dbd47866139b2e0b1162eb36bedea15_large\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1-300x217.jpg\" width=\"300\" height=\"217\" /></a>It never did. It was fairly nondescript. It was really like a collection of thrift store, hand-me-down furniture. The art on the wall was posters, and there were paintings by some really cool indie artists. Lounges, a kitchen and an old, old soda machine that they would stock. And I remember one of the selections had three X’s on it cause that was for the beer. I thought it was so cool that they had beer in their soda machine.\r\n\r\nThere were lots of different rooms. There was the A room downstairs, and again the studio is a place where artists and engineers spend an enormous amount of time, so you best make them comfortable if you want people to stay… or come back. Smart was very basic but very comfortable. It had everything that you needed. A cool little kitchen area, lounge upstairs and a lounge area downstairs. It had a shop, every recording studio has a shop. And a basement filled with what would be, if you priced it out now, millions of dollars worth of masters, from Nirvana to Smashing Pumpkins. And later on, Butch’s remixes including U2, Beck and Nine Inch Nails. So that stuff was all in the basement, which was this dungeonesque, low-lit, low ceiling place. My early days were spent going up and down those rickety basement stairs pulling two inch tape up for sessions. That was the bane of my existence, lugging tapes up and down those stairs.\r\n\r\n<b>You’ve been involved in this project for four years now, what made you introduce a Kickstarter campaign at this moment?</b>\r\n\r\nWell, we got to a point where we were getting these little doses of seed money, and this film was going to go on for twenty-five years, if we didn’t throw it out to the people. In working on the film as long as I have, I truly believe it to be a peoples film, and a peoples history of the studio and the music in the Midwest. So I felt like a Kickstarter was the perfect fit. To have people come on board and really become part of the extended production family, and play a role. I think it’s appealing to anyone who’s been touched by the music of Smart. I use the term “we” a lot, because I do feel like “we” can do this. It’s our history. Even it’s a band that recorded in ’89 or ’97, then what happened there meant something, and it means something in the larger context of art in this country, of culture in this country. That these little studios and the Indie bands that went through them, are important.\r\n\r\n<iframe src=\"https://www.kickstarter.com/projects/2086665372/the-smart-studios-story/widget/video.html\" height=\"315\" width=\"420\" frameborder=\"0\" scrolling=\"no\"></iframe>\r\n\r\nThis is what we have. What does this all represent to us now? It’s not a lament, it is somewhat of a retrospective, the film, but it’s a celebration. And why is it important, why even do it? I think that people feel more grounded in the world when they have a sense of where they come from, and the music takes them there. You hear a song now and it connects you. So it’s the stories and it’s the music that really put you in a place, or in a state of mind, and influence how you feel in the world. And this is where these things happened. Life changing records were produced and came out of Smart Studios. It’s funny when you attach a small, little hole-in-the-wall building to something like Nirvana’s <i>Nevermind. </i>So I began to ask myself “How the hell did they get to Madison?” So some of the story I’m looking at is what was that journey, and what did Butch’s aesthetic do to change and shape the course of American rock.\r\n\r\nI think a challenge for me is, there are the anecdotes, all the trials and tribulations of what happened in the recording studio, then to sit back and see what is the bigger picture, and how does Smart fit into American rock history. The challenge now is to translate all the energy that I know is out there with Smart into twenty-five dollars or ten dollars. If we want to do the film in this way, now is the time.\r\n\r\nClick here for more information on the <a href=\"https://www.kickstarter.com/projects/2086665372/the-smart-studios-story\">Smart Studios Story Kickstarter</a>\r\n\r\nFor current local fundraisers and information check out <a href=\"https://www.facebook.com/pages/The-Smart-Studios-Story/141044742624643\">The Smart Studio Story on FaceBook</a>\r\n\r\n \r\n\r\n ','From Garbage to Nirvana, Director Wendy Schneider Tells the Smart Studio Story','','publish','open','open','','from-garbage-to-nirvana-director-wendy-schneider-tells-the-smart-studio-story','','','2014-03-09 19:28:39','2014-03-10 01:28:39','',0,'http://www.earthhertzrecords.com/?p=1602',0,'post','',0),(1603,2,'2014-03-09 12:38:36','2014-03-09 18:38:36','<b>Kath Galasso: You began working at Smart Studios in 1992, ten years after it opened. How did you get the job there?</b>\r\n\r\n<b></b>Wendy Schneider: I moved to Madison in 1990 and I had a production background from New York City, and it was multi-media communications, it was not Indie Rock recording studio at all. But I started to do live sound for a Ska band here, and I really enjoyed it. A set-up/tear-down capacity every night, and the drummer from that band said there was a cool recording studio and you should see if you could work there. So I showed up, introduced myself, said I didn’t have a resume and they said “we don’t take resumes, if you just want to come and hang out, you’re totally welcomed to.” And that was it.\r\n\r\nI guess it was an intern capacity, it was super laid back. It was such a cool environment back then, you just didn’t want to leave. Butch described it as a clubhouse, to me it was more like a living room. It was just the way a studio ought to be. I loved being there. The people there were incredibly cool. What was nice was that nobody took me under their wing, but no doors were ever closed and you could sort of experiment and do what you wanted. Learn by doing.\r\n\r\n<b>Madison Wisconsin seems as unlikely a place as there could be to be the home for what would become an important footnote in music history. Tell me about the</b><b></b><b> music scene during that time.</b>\r\n\r\nIn my research with the bands that I’ve talked to, it seemed very raw, very organic, very eclectic. In some cases, there might have been some bands that were more musically intellectual, and others that were just more musically simple punk rock and in-your-face. The spectrum was all over the map. And that’s what’s interesting about Smart. It was incredibly expressive, incredibly diverse, but represented an alternative to what was on radio. It was an alternative to what was predictable and mainstream. It represented true fringe culture, a real alternative scene before we even called scenes alternative. Madison is a university city, the state capital, it’s known for its liberal politics, but I think that might have been a backdrop. There was the music scene that was anarchist in its approach. It really did what it wanted to do, and I really love that about the early scene. And Butch and Steve gravitated toward that, and those bands gravitated toward what Butch and Steve were doing, which was giving clarity to that music.\r\n\r\n<b>Do you know how they came up with the name Sound Studios?</b>\r\n\r\nYeah, there’s a bar across the street called the Friendly Tavern and it was sort of an afterhours thing when they would be sort of tapped out, or needed to get away from the studio, they would say “Hey let’s go across the street and get smart.” It really meant just going in and having some beers.\r\n\r\n<b>Why did the studio finally close?</b>\r\n\r\nSo many things factored into a studio like Smart closing. The most obvious is the business model. Any studio within the last ten years that has closed its doors will use that as why, and it is why essentially. The business just was not there, the business didn’t match the overhead. The accessibility of recording, just the broad range of opportunities that bands have to lay their stuff down. It’s a completely different playing field now than it was thirty years ago. Smart was really the only studio of its kind when it started, and to a fault, it spawned a lot of DIY studios. It spawned mine. So it’s the business model, but you also have an arena and an industry that’s making consumer products as accessible and as exciting and attractive as they can. The do-it-yourself mentality… there’s a payoff for large companies that sell to people who want to do it themselves.\r\n\r\n<b>Now everybody has a studio; it’s called their bedroom.</b>\r\n\r\nYeah and at the same time it’s making it possible for enormous amounts of music to come out. So there’s a real plus in that people are learning and creating their own way of getting their music recorded. I can see it from a lot of different angles. The unfortunate thing is the loss of environments like Smart, and staff that come with those environments. The people whose craft it is to record. And the craft of engineering is an artistry in the same way that carpentry is. Engineers there really put in their time, and were dedicated to creating the best possible music.\r\n\r\nAnd when I closed my studio, it was the same thing. The last couple of years, it starts to get really hard, and you’re not as happy. You have to put more emphasis on marketing, and come up with creative ways to get people connected to the studio, and then you realize it’s a losing battle. It’s a tragedy. And we could certainly put it in the context of, we’re just talking about a recording studio here, nobody has died. There’s a point of reference that is very real of course. But when you look at what a studio represents to the expression of a community, and the loss of a beating heart, and that’s what Smart Studios was, Butch and Steve were a touchstone to a lot of people.\r\n\r\n<b>You began filming your documentary in 2010, the year the studio closed. Did the end of the studio give you the impetus to make a documentary about it?</b>\r\n\r\nYeah, I just started sitting down with people, and this was something that Butch, Steve and I talked about, it wasn’t about doing a documentary. It was about just capturing a moment, capturing what was happening. Trying to have it as a keepsake of sorts, it wasn’t about doing a documentary. The first round of interviews, Butch was in LA, Steve in Colorado, so I would send them little clips. And more and more, we just really began to get drawn into it. Then Butch said ‘I really feel like we should talk to get some people that represent the different platform in terms of the music industry experience, and have them talk about Smart.’ It’s such a local story, but it’s a very broad story about American rock music. And when you look at the Midwest, and its role in the context of American rock & roll, it’s quite interesting when you see the connections to this small studio in Madison Wisconsin. So it just kept propelling me forward.\r\n\r\n<b>You’ve described Butch and Steve’s approach to recording as “hardcore.” What made them so?</b>\r\n\r\nThe level of dedication, to me, was something I’d describe as hardcore. Coming in, in the morning and still seeing them still there from last night. This was regular. When they were working on a project, it was not about anything other than the project… anything. And you are dealing with small budgets, independent labels, independent artists, and short periods of time. You don’t have three months to do a record. I think their ability to stay intact as decent human beings and be so hardcore about their work. To call somebody hardcore is one of the biggest compliments for me. To me it means, cut through all bullshit, they’re true to what they’re doing, and incredibly dedicated.\r\n\r\n<b>Describe for me the studio, and did that perception ever change while you were working </b><b>there?</b>\r\n\r\nIt never did. It was fairly nondescript. It was really like a collection of thrift store, hand-me-down furniture. The art on the wall was posters, and there were paintings by some really cool indie artists. Lounges, a kitchen and an old, old soda machine that they would stock. And I remember one of the selections had three X’s on it cause that was for the beer. I thought it was so cool that they had beer in their soda machine.\r\n\r\nThere were lots of different rooms. There was the A room downstairs, and again the studio is a place where artists and engineers spend an enormous amount of time, so you best make them comfortable if you want people to stay… or come back. Smart was very basic but very comfortable. It had everything that you needed. A cool little kitchen area, lounge upstairs and a lounge area downstairs. It had a shop, every recording studio has a shop. And a basement filled with what would be, if you priced it out now, millions of dollars worth of masters, from Nirvana to Smashing Pumpkins. And later on, Butch’s remixes including U2, Beck and Nine Inch Nails. So that stuff was all in the basement, which was this dungeonesque, low-lit, low ceiling place. My early days were spent going up and down those rickety basement stairs pulling two inch tape up for sessions. That was the bane of my existence, lugging tapes up and down those stairs.\r\n\r\n<b>You’ve been involved in this project for four years now, what made you introduce a Kickstarter campaign at this moment?</b>\r\n\r\nWell, we got to a point where we were getting these little doses of seed money, and this film was going to go on for twenty-five years, if we didn’t throw it out to the people. In working on the film as long as I have, I truly believe it to be a peoples’ film, and a peoples’ history of the studio and the music in the Midwest. So I felt like a Kickstarter was the perfect fit. To have people come on board and really become part of the extended production family, and play a role. I think it’s appealing to anyone who’s been touched by the music of Smart. I use the term “we” a lot, because I do feel like “we” can do this. It’s our history. Even it’s a band that recorded in ’89 or ’97, then what happened there meant something, and it means something in the larger context of art in this country, of culture in this country. That these little studios and the Indie bands that went through them, they are important.\r\n\r\nThis is what we have. What does this all represent to us now? It’s not a lament, it is somewhat of a retrospective, the film, but it’s a celebration. And why is it important, why even do it? I think that people feel more grounded in the world when they have a sense of where they come from, and the music takes them there. You hear a song now and it connects you. So it’s the stories and it’s the music that really put you in a place, or in a state of mind, and influence how you feel in the world. And this is where these things happened. Life changing records were produced and came out of Smart Studios. It’s funny when you attach a small, little hole-in-the-wall building to something like Nirvana’s <i>Nevermind. </i>So I began to ask myself “How the hell did they get to Madison?” So some of the story I’m looking at is what was that journey, and what did Butch’s aesthetic do to change and shape the course of American rock.\r\n\r\nI think a challenge for me is, there are the anecdotes, all the trials and tribulations of what happened in the recording studio, then to sit back and see what is the bigger picture, and how does Smart fit into American rock history. The challenge now is to translate all the energy that I know is out there with Smart into twenty-five dollars or ten dollars. If we want to do the film in this way, now is the time.\r\n\r\n \r\n\r\n \r\n\r\nJenna’s Lounge, Madison March 16th 3 hr music blast\r\n\r\nGomers March 25th\r\n<div>\r\n\r\n<hr align=\"left\" size=\"1\" width=\"33%\" />\r\n\r\n<div>\r\n<div>\r\n\r\n <a href=\"file:///C:/Users/Kathi/Dropbox/Wendy%20Schneider%20-%20transcription.docx#_msoanchor_1\">[K1]</a>\r\n\r\n</div>\r\n</div>\r\n</div>','','','inherit','open','open','','1602-revision-v1','','','2014-03-09 12:38:36','2014-03-09 18:38:36','',1602,'http://www.earthhertzrecords.com/2014/03/1602-revision-v1/',0,'revision','',0),(1604,2,'2014-03-09 17:42:05','2014-03-09 23:42:05','When you think of Nirvana, your mind goes to the Seattle music scene. So what would you think if you found out the demos for <em>Nevermind</em>, were cut in a nondescript recording studio in Madison, Wisconsin? Well, you might be interested in finding out how that happened, and what other musical secrets were contained in that recording studio. And the answer to that would be... a lot. In 1982, Butch Vig and Stever Marker created Smart Studios, and for the next twenty-eight years, an incredible amount of music which would come to define the era would emerge from that studio. From Nirvana, to Smashing Pumpkins, L7, Garbage, Death Cab for Cutie, Tar Babies, and Killdozer, the imprint of Smart on the alternative music scene is large and deep.\r\n\r\nWendy Schneider worked at Smart Studios in the early 90s and has maintained a lasting friendship with both Vig and Marker. In 2010, after the closing of the studio, she began gathering video interviews of musicians who had recorded at Smart. With each interview it became apparent that Smart Studios had touched every artist who spent time there. It also seemed the time might be right to really focus on creating a feature length film, so that the entire scope of the story of Smart Studios could be documented. She is now in the midst of a Kickstarter campaign to raise funding for the project.\r\n\r\nI recently spoke with Wendy Schneider about the documentary, the Kickstarter campaign, and the unlikely center of music in the midwest, Madison, Wisconsin.\r\n\r\n<b>Kath Galasso: You began working at Smart Studios in 1992, ten years after it opened. How did you get the job there?</b>\r\n\r\n<b></b>Wendy Schneider: I moved to Madison in 1990 and I had a production background from New York City, and it was multi-media communications, it was not Indie Rock recording studio at all. But I started to do live sound for a Ska band here, and I really enjoyed it. A set-up/tear-down capacity every night, and the drummer from that band said there was a cool recording studio and you should see if you could work there. So I showed up, introduced myself, said I didn’t have a resume and they said “we don’t take resumes, if you just want to come and hang out, you’re totally welcomed to.” And that was it.\r\n\r\nI guess it was an intern capacity, it was super laid back. It was such a cool environment back then, you just didn’t want to leave. Butch described it as a clubhouse, to me it was more like a living room. It was just the way a studio ought to be. I loved being there. The people there were incredibly cool. What was nice was that nobody took me under their wing, but no doors were ever closed and you could sort of experiment and do what you wanted. Learn by doing.\r\n\r\n<b>Madison Wisconsin seems as unlikely a place as there could be to be the home for what would become an important footnote in music history. Tell me about the</b><b></b><b> music scene during that time.</b>\r\n\r\nIn my research with the bands that I’ve talked to, it seemed very raw, very organic, very eclectic. In some cases, there might have been some bands that were more musically intellectual, and others that were just more musically simple punk rock and in-your-face. The spectrum was all over the map. And that’s what’s interesting about Smart. It was incredibly expressive, incredibly diverse, but represented an alternative to what was on radio. It was an alternative to what was predictable and mainstream. It represented true fringe culture, a real alternative scene before we even called scenes alternative. Madison is a university city, the state capital, it’s known for its liberal politics, but I think that might have been a backdrop. There was the music scene that was anarchist in its approach. It really did what it wanted to do, and I really love that about the early scene. And Butch and Steve gravitated toward that, and those bands gravitated toward what Butch and Steve were doing, which was giving clarity to that music.\r\n\r\n<b>Do you know how they came up with the name Sound Studios?</b>\r\n\r\nYeah, there’s a bar across the street called the Friendly Tavern and it was sort of an afterhours thing when they would be sort of tapped out, or needed to get away from the studio, they would say “Hey let’s go across the street and get smart.” It really meant just going in and having some beers.\r\n\r\n<b>Why did the studio finally close?</b>\r\n\r\nSo many things factored into a studio like Smart closing. The most obvious is the business model. Any studio within the last ten years that has closed its doors will use that as why, and it is why essentially. The business just was not there, the business didn’t match the overhead. The accessibility of recording, just the broad range of opportunities that bands have to lay their stuff down. It’s a completely different playing field now than it was thirty years ago. Smart was really the only studio of its kind when it started, and to a fault, it spawned a lot of DIY studios. It spawned mine. So it’s the business model, but you also have an arena and an industry that’s making consumer products as accessible and as exciting and attractive as they can. The do-it-yourself mentality… there’s a payoff for large companies that sell to people who want to do it themselves.\r\n\r\n<b>Now everybody has a studio; it’s called their bedroom.</b>\r\n\r\nYeah and at the same time it’s making it possible for enormous amounts of music to come out. So there’s a real plus in that people are learning and creating their own way of getting their music recorded. I can see it from a lot of different angles. The unfortunate thing is the loss of environments like Smart, and staff that come with those environments. The people whose craft it is to record. And the craft of engineering is an artistry in the same way that carpentry is. Engineers there really put in their time, and were dedicated to creating the best possible music.\r\n\r\nAnd when I closed my studio, it was the same thing. The last couple of years, it starts to get really hard, and you’re not as happy. You have to put more emphasis on marketing, and come up with creative ways to get people connected to the studio, and then you realize it’s a losing battle. It’s a tragedy. And we could certainly put it in the context of, we’re just talking about a recording studio here, nobody has died. There’s a point of reference that is very real of course. But when you look at what a studio represents to the expression of a community, and the loss of a beating heart, and that’s what Smart Studios was, Butch and Steve were a touchstone to a lot of people.\r\n\r\n<b>You began filming your documentary in 2010, the year the studio closed. Did the end of the studio give you the impetus to make a documentary about it?</b>\r\n\r\nYeah, I just started sitting down with people, and this was something that Butch, Steve and I talked about, it wasn’t about doing a documentary. It was about just capturing a moment, capturing what was happening. Trying to have it as a keepsake of sorts, it wasn’t about doing a documentary. The first round of interviews, Butch was in LA, Steve in Colorado, so I would send them little clips. And more and more, we just really began to get drawn into it. Then Butch said ‘I really feel like we should talk to get some people that represent the different platform in terms of the music industry experience, and have them talk about Smart.’ It’s such a local story, but it’s a very broad story about American rock music. And when you look at the Midwest, and its role in the context of American rock & roll, it’s quite interesting when you see the connections to this small studio in Madison Wisconsin. So it just kept propelling me forward.\r\n\r\n<b>You’ve described Butch and Steve’s approach to recording as “hardcore.” What made them so?</b>\r\n\r\nThe level of dedication, to me, was something I’d describe as hardcore. Coming in, in the morning and still seeing them still there from last night. This was regular. When they were working on a project, it was not about anything other than the project… anything. And you are dealing with small budgets, independent labels, independent artists, and short periods of time. You don’t have three months to do a record. I think their ability to stay intact as decent human beings and be so hardcore about their work. To call somebody hardcore is one of the biggest compliments for me. To me it means, cut through all bullshit, they’re true to what they’re doing, and incredibly dedicated.\r\n\r\n<b>Describe for me the studio, and did that perception ever change while you were working </b><b>there?</b>\r\n\r\nIt never did. It was fairly nondescript. It was really like a collection of thrift store, hand-me-down furniture. The art on the wall was posters, and there were paintings by some really cool indie artists. Lounges, a kitchen and an old, old soda machine that they would stock. And I remember one of the selections had three X’s on it cause that was for the beer. I thought it was so cool that they had beer in their soda machine.\r\n\r\nThere were lots of different rooms. There was the A room downstairs, and again the studio is a place where artists and engineers spend an enormous amount of time, so you best make them comfortable if you want people to stay… or come back. Smart was very basic but very comfortable. It had everything that you needed. A cool little kitchen area, lounge upstairs and a lounge area downstairs. It had a shop, every recording studio has a shop. And a basement filled with what would be, if you priced it out now, millions of dollars worth of masters, from Nirvana to Smashing Pumpkins. And later on, Butch’s remixes including U2, Beck and Nine Inch Nails. So that stuff was all in the basement, which was this dungeonesque, low-lit, low ceiling place. My early days were spent going up and down those rickety basement stairs pulling two inch tape up for sessions. That was the bane of my existence, lugging tapes up and down those stairs.\r\n\r\n<b>You’ve been involved in this project for four years now, what made you introduce a Kickstarter campaign at this moment?</b>\r\n\r\nWell, we got to a point where we were getting these little doses of seed money, and this film was going to go on for twenty-five years, if we didn’t throw it out to the people. In working on the film as long as I have, I truly believe it to be a peoples’ film, and a peoples’ history of the studio and the music in the Midwest. So I felt like a Kickstarter was the perfect fit. To have people come on board and really become part of the extended production family, and play a role. I think it’s appealing to anyone who’s been touched by the music of Smart. I use the term “we” a lot, because I do feel like “we” can do this. It’s our history. Even it’s a band that recorded in ’89 or ’97, then what happened there meant something, and it means something in the larger context of art in this country, of culture in this country. That these little studios and the Indie bands that went through them, they are important.\r\n\r\nThis is what we have. What does this all represent to us now? It’s not a lament, it is somewhat of a retrospective, the film, but it’s a celebration. And why is it important, why even do it? I think that people feel more grounded in the world when they have a sense of where they come from, and the music takes them there. You hear a song now and it connects you. So it’s the stories and it’s the music that really put you in a place, or in a state of mind, and influence how you feel in the world. And this is where these things happened. Life changing records were produced and came out of Smart Studios. It’s funny when you attach a small, little hole-in-the-wall building to something like Nirvana’s <i>Nevermind. </i>So I began to ask myself “How the hell did they get to Madison?” So some of the story I’m looking at is what was that journey, and what did Butch’s aesthetic do to change and shape the course of American rock.\r\n\r\nI think a challenge for me is, there are the anecdotes, all the trials and tribulations of what happened in the recording studio, then to sit back and see what is the bigger picture, and how does Smart fit into American rock history. The challenge now is to translate all the energy that I know is out there with Smart into twenty-five dollars or ten dollars. If we want to do the film in this way, now is the time.\r\n\r\nClick her for more information on the Smart Studios Story Kickstarter\r\n\r\n \r\n\r\nJenna’s Lounge, Madison March 16th 3 hr music blast\r\n\r\nGomers March 25th\r\n<div>\r\n\r\n<hr align=\"left\" size=\"1\" width=\"33%\" />\r\n\r\n<div>\r\n<div>\r\n\r\n <a href=\"file:///C:/Users/Kathi/Dropbox/Wendy%20Schneider%20-%20transcription.docx#_msoanchor_1\">[K1]</a>\r\n\r\n</div>\r\n</div>\r\n</div>','','','inherit','open','open','','1602-revision-v1','','','2014-03-09 17:42:05','2014-03-09 23:42:05','',1602,'http://www.earthhertzrecords.com/2014/03/1602-revision-v1/',0,'revision','',0),(1605,2,'2014-03-09 17:59:15','2014-03-09 23:59:15','','1dbd47866139b2e0b1162eb36bedea15_large','','inherit','open','open','','1dbd47866139b2e0b1162eb36bedea15_large','','','2014-03-09 17:59:15','2014-03-09 23:59:15','',1602,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large.jpg',0,'attachment','image/jpeg',0),(1606,2,'2014-03-09 18:00:40','2014-03-10 00:00:40','','OLYMPUS DIGITAL CAMERA','','inherit','open','open','','olympus-digital-camera','','','2014-03-09 18:00:40','2014-03-10 00:00:40','',1602,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2.jpg',0,'attachment','image/jpeg',0),(1607,2,'2014-03-09 18:02:58','2014-03-10 00:02:58','','BValbum_BVinblack','','inherit','open','open','','bvalbum_bvinblack','','','2014-03-09 18:02:58','2014-03-10 00:02:58','',1602,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack.jpeg',0,'attachment','image/jpeg',0),(1608,2,'2014-03-09 18:04:38','2014-03-10 00:04:38','','BV mixing','','inherit','open','open','','bv-mixing','','','2014-03-09 18:04:38','2014-03-10 00:04:38','',1602,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing.jpg',0,'attachment','image/jpeg',0),(1609,2,'2014-03-09 18:06:16','2014-03-10 00:06:16','','FIRST SMART_Control Room','','inherit','open','open','','first-smart_control-room','','','2014-03-09 18:06:16','2014-03-10 00:06:16','',1602,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room.jpg',0,'attachment','image/jpeg',0),(1611,2,'2014-03-09 18:09:56','2014-03-10 00:09:56','','1dbd47866139b2e0b1162eb36bedea15_large','','inherit','open','open','','1dbd47866139b2e0b1162eb36bedea15_large-2','','','2014-03-09 18:09:56','2014-03-10 00:09:56','',1602,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1.jpg',0,'attachment','image/jpeg',0),(1610,2,'2014-03-09 18:07:43','2014-03-10 00:07:43','','Feeny_SM at conslBW','','inherit','open','open','','feeny_sm-at-conslbw','','','2014-03-09 18:07:43','2014-03-10 00:07:43','',1602,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW.jpeg',0,'attachment','image/jpeg',0),(1612,2,'2014-03-09 18:26:39','2014-03-10 00:26:39','When you think of Nirvana, your mind goes to the Seattle music scene. So what would you think if you discovered the demos for <em>Nevermind</em> were cut in a nondescript recording studio in Madison, Wisconsin? Well, you might be interested in finding out how that happened, and how many other musical secrets were contained in that recording studio. And the answer would be... a lot. In 1982, Butch Vig and Steve Marker created Smart Studios, and for the next twenty-eight years, an improbable amount of music which would come to define the era, would emerge from that same studio. From Nirvana, to Smashing Pumpkins, L7, Garbage, Death Cab for Cutie, Tar Babies, Killdozer, and many more, the imprint of Smart on the alternative music scene is large and deep.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2.jpg\"><img class=\"alignleft size-thumbnail wp-image-1606\" alt=\"OLYMPUS DIGITAL CAMERA\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>Director/Producer Wendy Schneider worked at Smart Studios in the early 90s and has maintained a lasting friendship with both Vig and Marker. In 2010, after the closing of the studio, she began gathering video interviews of musicians who had recorded at Smart. With each interview it became apparent that Smart Studios had touched every artist who spent time there. It also seemed the time might be right to really focus on creating a feature length film, so that the entire scope of the story of Smart Studios could be documented. She is now in the midst of a Kickstarter campaign to raise funding for the project, <a href=\"http://www.smartstudiosdocumentary.com/\">The Smart Studios Story</a>.\r\n\r\nI recently spoke with Wendy Schneider about the documentary, the Kickstarter campaign, and the unlikely center of music in the midwest, Madison, Wisconsin.\r\n\r\n<b>Kath Galasso: You began working at Smart Studios in 1992, ten years after it opened. How did you get the job there?</b>\r\n\r\n<b></b>Wendy Schneider: I moved to Madison in 1990 and I had a production background from New York City, and it was multi-media communications, it was not Indie Rock recording studio at all. But I started to do live sound for a Ska band here, and I really enjoyed it. A set-up/tear-down capacity every night, and the drummer from that band said there was a cool recording studio and you should see if you could work there. So I showed up, introduced myself, said I didn’t have a resume and they said “we don’t take resumes, if you just want to come and hang out, you’re totally welcomed to.” And that was it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack.jpeg\"><img class=\"alignright size-medium wp-image-1607\" alt=\"BValbum_BVinblack\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack-300x240.jpeg\" width=\"300\" height=\"240\" /></a>I guess it was an intern capacity, it was super laid back. It was such a cool environment back then, you just didn’t want to leave. Butch described it as a clubhouse, to me it was more like a living room. It was just the way a studio ought to be. I loved being there. The people there were incredibly cool. What was nice was that nobody took me under their wing, but no doors were ever closed and you could sort of experiment and do what you wanted. Learn by doing.\r\n\r\n<b>Madison Wisconsin seems as unlikely a place as there could be to be the home for what would become an important footnote in music history. Tell me about the</b><b></b><b> music scene during that time.</b>\r\n\r\nIn my research with the bands that I’ve talked to, it seemed very raw, very organic, very eclectic. In some cases, there might have been some bands that were more musically intellectual, and others that were just more musically simple punk rock and in-your-face. The spectrum was all over the map. And that’s what’s interesting about Smart. It was incredibly expressive, incredibly diverse, but represented an alternative to what was on radio. It was an alternative to what was predictable and mainstream. It represented true fringe culture, a real alternative scene before we even called scenes alternative. Madison is a university city, the state capital, it’s known for its liberal politics, but I think that might have been a backdrop. There was the music scene that was anarchist in its approach. It really did what it wanted to do, and I really love that about the early scene. And Butch and Steve gravitated toward that, and those bands gravitated toward what Butch and Steve were doing, which was giving clarity to that music.\r\n\r\n[caption id=\"attachment_1608\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing.jpg\"><img class=\"size-medium wp-image-1608\" alt=\"BV mixing\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing-300x289.jpg\" width=\"300\" height=\"289\" /></a> Butch Vig[/caption]\r\n\r\n<strong>Do you know where the name Smart Studios came from?</strong>\r\n\r\nYeah, there’s a bar across the street called the Friendly Tavern and it was sort of an after hours thing when they would be sort of tapped out, or needed to get away from the studio, they would say “Hey let’s go across the street and get smart.” It really meant just going in and having some beers.\r\n\r\n<b>Why did the studio finally close?</b>\r\n\r\nSo many things factored into a studio like Smart closing. The most obvious is the business model. Any studio within the last ten years that has closed its doors will use that as why, and it is why essentially. The business just was not there, the business didn’t match the overhead. The accessibility of recording, just the broad range of opportunities that bands have to lay their stuff down. It’s a completely different playing field now than it was thirty years ago. Smart was really the only studio of its kind when it started, and to a fault, it spawned a lot of DIY studios. It spawned mine. So it’s the business model, but you also have an arena and an industry that’s making consumer products as accessible and as exciting and attractive as they can. The do-it-yourself mentality… there’s a payoff for large companies that sell to people who want to do it themselves.\r\n\r\n<strong>It seems everyone has a recording studio now, it\'s called their bedroom.</strong>\r\n\r\n[caption id=\"attachment_1609\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room.jpg\"><img class=\"size-medium wp-image-1609\" alt=\"FIRST SMART_Control Room\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room-300x212.jpg\" width=\"300\" height=\"212\" /></a> First Smart Studio Control Room[/caption]\r\n\r\nYeah, and at the same time it’s making it possible for enormous amounts of music to come out into the world. So there’s a real plus in that people are learning and creating their own way of getting their music recorded. I can see it from a lot of different angles. The unfortunate thing is the loss of environments like Smart, and staff that come with those environments. The people whose craft it is to record. And the craft of engineering is an artistry in the same way that carpentry is. Engineers there really put in their time, and were dedicated to creating the best possible music.\r\n\r\nAnd when I closed my studio, it was the same thing. The last couple of years, it starts to get really hard, and you’re not as happy. You have to put more emphasis on marketing, and come up with creative ways to get people connected to the studio, and then you realize it’s a losing battle. It’s a tragedy. And we could certainly put it in the context of, we’re just talking about a recording studio here, nobody has died. There’s a point of reference that is very real of course. But when you look at what a studio represents to the expression of a community, and the loss of a beating heart, and that’s what Smart Studios was, Butch and Steve were a touchstone to a lot of people.\r\n\r\n[caption id=\"attachment_1610\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW.jpeg\"><img class=\"size-medium wp-image-1610 \" alt=\"Feeny_SM at conslBW\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW-300x202.jpeg\" width=\"300\" height=\"202\" /></a> Steve Marker[/caption]\r\n\r\n<strong>You began filming your documentary in 2010, the year the studio closed. Tell me about the timing, was the end of the studio the impetus to make the documentary </strong>\r\n\r\nYeah, I just started sitting down with people, and this was something that Butch, Steve and I talked about, it wasn’t about doing a documentary. It was about just capturing a moment, capturing what was happening. Trying to have it as a keepsake of sorts, it wasn’t about doing a documentary. The first round of interviews, Butch was in LA, Steve in Colorado, so I would send them little clips. And more and more, we just really began to get drawn into it. Then Butch said ‘I really feel like we should talk to get some people that represent the different platform in terms of the music industry experience, and have them talk about Smart.’ It’s such a local story, but it’s a very broad story about American rock music. And when you look at the Midwest, and its role in the context of American rock & roll, it’s quite interesting when you see the connections to this small studio in Madison Wisconsin. So it just kept propelling me forward.\r\n\r\n<b>You’ve described Butch and Steve’s approach to recording as “hardcore.” What made them so?</b>\r\n\r\nThe level of dedication, to me, was something I’d describe as hardcore. Coming in, in the morning and still seeing them still there from last night. This was regular. When they were working on a project, it was not about anything other than the project… anything. And you are dealing with small budgets, independent labels, independent artists, and short periods of time. You don’t have three months to do a record. I think their ability to stay intact as decent human beings and be so hardcore about their work. To call somebody hardcore is one of the biggest compliments for me. To me it means, cut through all bullshit, they’re true to what they’re doing, and incredibly dedicated.\r\n\r\n<b>Describe for me the studio, and did that perception ever change while you were working </b><b>there?</b>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1.jpg\"><img class=\"alignleft size-medium wp-image-1611\" alt=\"1dbd47866139b2e0b1162eb36bedea15_large\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1-300x217.jpg\" width=\"300\" height=\"217\" /></a>It never did. It was fairly nondescript. It was really like a collection of thrift store, hand-me-down furniture. The art on the wall was posters, and there were paintings by some really cool indie artists. Lounges, a kitchen and an old, old soda machine that they would stock. And I remember one of the selections had three X’s on it cause that was for the beer. I thought it was so cool that they had beer in their soda machine.\r\n\r\nThere were lots of different rooms. There was the A room downstairs, and again the studio is a place where artists and engineers spend an enormous amount of time, so you best make them comfortable if you want people to stay… or come back. Smart was very basic but very comfortable. It had everything that you needed. A cool little kitchen area, lounge upstairs and a lounge area downstairs. It had a shop, every recording studio has a shop. And a basement filled with what would be, if you priced it out now, millions of dollars worth of masters, from Nirvana to Smashing Pumpkins. And later on, Butch’s remixes including U2, Beck and Nine Inch Nails. So that stuff was all in the basement, which was this dungeonesque, low-lit, low ceiling place. My early days were spent going up and down those rickety basement stairs pulling two inch tape up for sessions. That was the bane of my existence, lugging tapes up and down those stairs.\r\n\r\n<b>You’ve been involved in this project for four years now, what made you introduce a Kickstarter campaign at this moment?</b>\r\n\r\nWell, we got to a point where we were getting these little doses of seed money, and this film was going to go on for twenty-five years, if we didn’t throw it out to the people. In working on the film as long as I have, I truly believe it to be a peoples’ film, and a peoples’ history of the studio and the music in the Midwest. So I felt like a Kickstarter was the perfect fit. To have people come on board and really become part of the extended production family, and play a role. I think it’s appealing to anyone who’s been touched by the music of Smart. I use the term “we” a lot, because I do feel like “we” can do this. It’s our history. Even it’s a band that recorded in ’89 or ’97, then what happened there meant something, and it means something in the larger context of art in this country, of culture in this country. That these little studios and the Indie bands that went through them, they are important.\r\n\r\nThis is what we have. What does this all represent to us now? It’s not a lament, it is somewhat of a retrospective, the film, but it’s a celebration. And why is it important, why even do it? I think that people feel more grounded in the world when they have a sense of where they come from, and the music takes them there. You hear a song now and it connects you. So it’s the stories and it’s the music that really put you in a place, or in a state of mind, and influence how you feel in the world. And this is where these things happened. Life changing records were produced and came out of Smart Studios. It’s funny when you attach a small, little hole-in-the-wall building to something like Nirvana’s <i>Nevermind. </i>So I began to ask myself “How the hell did they get to Madison?” So some of the story I’m looking at is what was that journey, and what did Butch’s aesthetic do to change and shape the course of American rock.\r\n\r\nI think a challenge for me is, there are the anecdotes, all the trials and tribulations of what happened in the recording studio, then to sit back and see what is the bigger picture, and how does Smart fit into American rock history. The challenge now is to translate all the energy that I know is out there with Smart into twenty-five dollars or ten dollars. If we want to do the film in this way, now is the time.\r\n\r\nClick her for more information on the <a href=\"https://www.kickstarter.com/projects/2086665372/the-smart-studios-story\">Smart Studios Story Kickstarter</a>\r\n\r\n ','','','inherit','open','open','','1602-revision-v1','','','2014-03-09 18:26:39','2014-03-10 00:26:39','',1602,'http://www.earthhertzrecords.com/2014/03/1602-revision-v1/',0,'revision','',0),(1613,2,'2014-03-09 18:47:50','2014-03-10 00:47:50','','Wall of CDs_36 (1)-small','','inherit','open','open','','wall-of-cds_36-1-small','','','2014-03-09 18:47:50','2014-03-10 00:47:50','',1602,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg',0,'attachment','image/jpeg',0),(1614,2,'2014-03-09 18:48:22','2014-03-10 00:48:22','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg\"><img class=\"aligncenter size-full wp-image-1613\" alt=\"Wall of CDs_36 (1)-small\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg\" width=\"1000\" height=\"667\" /></a>When you think of Nirvana, your mind goes to the Seattle music scene. So what would you think if you discovered the demos for <em>Nevermind</em> were cut in a nondescript recording studio in Madison, Wisconsin? Well, you might be interested in finding out how that happened, and how many other musical secrets were contained in that recording studio. And the answer would be... a lot. In 1982, Butch Vig and Steve Marker created Smart Studios, and for the next twenty-eight years, an improbable amount of music which would come to define the era, would emerge from that same studio. From Nirvana, to Smashing Pumpkins, L7, Garbage, Death Cab for Cutie, Tar Babies, Killdozer, and many more, the imprint of Smart on the alternative music scene is large and deep.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2.jpg\"><img class=\"alignleft size-thumbnail wp-image-1606\" alt=\"OLYMPUS DIGITAL CAMERA\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>Director/Producer Wendy Schneider worked at Smart Studios in the early 90s and has maintained a lasting friendship with both Vig and Marker. In 2010, after the closing of the studio, she began gathering video interviews of musicians who had recorded at Smart. With each interview it became apparent that Smart Studios had touched every artist who spent time there. It also seemed the time might be right to really focus on creating a feature length film, so the entire scope of the story of Smart Studios could be documented. She is now in the midst of a Kickstarter campaign to raise funding for the project, <a href=\"http://www.smartstudiosdocumentary.com/\">The Smart Studios Story</a>.\r\n\r\nI recently spoke with Wendy Schneider about the documentary, the Kickstarter campaign, and the unlikely center of music in the midwest, Madison, Wisconsin.\r\n\r\n<b>Kath Galasso: You began working at Smart Studios in 1992, ten years after it opened. How did you get the job there?</b>\r\n\r\n<b></b>Wendy Schneider: I moved to Madison in 1990 and I had a production background from New York City, and it was multi-media communications, it was not Indie Rock recording studio at all. But I started to do live sound for a Ska band here, and I really enjoyed it. A set-up/tear-down capacity every night, and the drummer from that band said there was a cool recording studio and you should see if you could work there. So I showed up, introduced myself, said I didn’t have a resume and they said “we don’t take resumes, if you just want to come and hang out, you’re totally welcomed to.” And that was it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack.jpeg\"><img class=\"alignright size-medium wp-image-1607\" alt=\"BValbum_BVinblack\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack-300x240.jpeg\" width=\"300\" height=\"240\" /></a>I guess it was an intern capacity, it was super laid back. It was such a cool environment back then, you just didn’t want to leave. Butch described it as a clubhouse, to me it was more like a living room. It was just the way a studio ought to be. I loved being there. The people there were incredibly cool. What was nice was that nobody took me under their wing, but no doors were ever closed and you could sort of experiment and do what you wanted. Learn by doing.\r\n\r\n<b>Madison Wisconsin seems as unlikely a place as there could be to be the home for what would become an important footnote in music history. Tell me about the</b><b></b><b> music scene during that time.</b>\r\n\r\nIn my research with the bands that I’ve talked to, it seemed very raw, very organic, very eclectic. In some cases, there might have been some bands that were more musically intellectual, and others that were just more musically simple punk rock and in-your-face. The spectrum was all over the map. And that’s what’s interesting about Smart. It was incredibly expressive, incredibly diverse, but represented an alternative to what was on radio. It was an alternative to what was predictable and mainstream. It represented true fringe culture, a real alternative scene before we even called scenes alternative. Madison is a university city, the state capital, it’s known for its liberal politics, but I think that might have been a backdrop. There was the music scene that was anarchist in its approach. It really did what it wanted to do, and I really love that about the early scene. And Butch and Steve gravitated toward that, and those bands gravitated toward what Butch and Steve were doing, which was giving clarity to that music.\r\n\r\n[caption id=\"attachment_1608\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing.jpg\"><img class=\"size-medium wp-image-1608\" alt=\"BV mixing\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing-300x289.jpg\" width=\"300\" height=\"289\" /></a> Butch Vig[/caption]\r\n\r\n<strong>Do you know where the name Smart Studios came from?</strong>\r\n\r\nYeah, there’s a bar across the street called the Friendly Tavern and it was sort of an after hours thing when they would be sortof tapped out, or needed to get away from the studio, they would say “Hey let’s go across the street and get smart.” It really meant just going in and having some beers.\r\n\r\n<b>Why did the studio finally close?</b>\r\n\r\nSo many things factored into a studio like Smart closing. The most obvious is the business model. Any studio within the last ten years that has closed its doors will use that as why, and it is why essentially. The business just was not there, the business didn’t match the overhead. The accessibility of recording, just the broad range of opportunities that bands have to lay their stuff down. It’s a completely different playing field now than it was thirty years ago. Smart was really the only studio of its kind when it started, and to a fault, it spawned a lot of DIY studios. It spawned mine. So it’s the business model, but you also have an arena and an industry that’s making consumer products as accessible and as exciting and attractive as they can. The do-it-yourself mentality… there’s a payoff for large companies that sell to people who want to do it themselves.\r\n\r\n<strong>It seems everyone has a recording studio now, it\'s called their bedroom.</strong>\r\n\r\n[caption id=\"attachment_1609\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room.jpg\"><img class=\"size-medium wp-image-1609\" alt=\"FIRST SMART_Control Room\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room-300x212.jpg\" width=\"300\" height=\"212\" /></a> First Smart Studio Control Room[/caption]\r\n\r\nYeah, and at the same time it’s making it possible for enormous amounts of music to come out into the world. So there’s a real plus in that people are learning and creating their own way of getting their music recorded. I can see it from a lot of different angles. The unfortunate thing is the loss of environments like Smart, and staff that come with those environments. The people whose craft it is to record. And the craft of engineering is an artistry in the same way that carpentry is. Engineers there really put in their time, and were dedicated to creating the best possible music.\r\n\r\nAnd when I closed my studio, it was the same thing. The last couple of years it starts to get really hard, and you’re not as happy. You have to put more emphasis on marketing, and come up with creative ways to get people connected to the studio, and then you realize it’s a losing battle. It’s a tragedy. And we could certainly put it in the context of, we’re just talking about a recording studio here, nobody has died. There’s a point of reference that is very real of course. But when you look at what a studio represents to the expression of a community, and the loss of a beating heart, and that’s what Smart Studios was, Butch and Steve were a touchstone to a lot of people.\r\n\r\n[caption id=\"attachment_1610\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW.jpeg\"><img class=\"size-medium wp-image-1610 \" alt=\"Feeny_SM at conslBW\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW-300x202.jpeg\" width=\"300\" height=\"202\" /></a> Steve Marker[/caption]\r\n\r\n<strong>You began filming your documentary in 2010, the year the studio closed. Tell me about the timing, was the end of the studio the impetus to make the documentary </strong>\r\n\r\nYeah, I just started sitting down with people, and this was something that Butch, Steve and I talked about, it wasn’t about doing a documentary. It was about just capturing a moment, capturing what was happening. Trying to have it as a keepsake of sorts, it wasn’t about doing a documentary. The first round of interviews, Butch was in LA, Steve in Colorado, so I would send them little clips. And more and more, we just really began to get drawn into it. Then Butch said ‘I really feel like we should talk to get some people that represent the different platform in terms of the music industry experience, and have them talk about Smart.’ It’s such a local story, but it’s a very broad story about American rock music. And when you look at the Midwest, and its role in the context of American rock & roll, it’s quite interesting when you see the connections to this small studio in Madison Wisconsin. So it just kept propelling me forward.\r\n\r\n<b>You’ve described Butch and Steve’s approach to recording as “hardcore.” What made them so?</b>\r\n\r\nThe level of dedication, to me, was something I’d describe as hardcore. Coming in, in the morning and still seeing them still there from last night. This was regular. When they were working on a project, it was not about anything other than the project… anything. And you are dealing with small budgets, independent labels, independent artists, and short periods of time. You don’t have three months to do a record. I think their ability to stay intact as decent human beings and be so hardcore about their work. To call somebody hardcore is one of the biggest compliments for me. To me it means, cut through all bullshit, they’re true to what they’re doing, and incredibly dedicated.\r\n\r\n<b>Describe for me the studio, and did that perception ever change while you were working </b><b>there?</b>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1.jpg\"><img class=\"alignleft size-medium wp-image-1611\" alt=\"1dbd47866139b2e0b1162eb36bedea15_large\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1-300x217.jpg\" width=\"300\" height=\"217\" /></a>It never did. It was fairly nondescript. It was really like a collection of thrift store, hand-me-down furniture. The art on the wall was posters, and there were paintings by some really cool indie artists. Lounges, a kitchen and an old, old soda machine that they would stock. And I remember one of the selections had three X’s on it cause that was for the beer. I thought it was so cool that they had beer in their soda machine.\r\n\r\nThere were lots of different rooms. There was the A room downstairs, and again the studio is a place where artists and engineers spend an enormous amount of time, so you best make them comfortable if you want people to stay… or come back. Smart was very basic but very comfortable. It had everything that you needed. A cool little kitchen area, lounge upstairs and a lounge area downstairs. It had a shop, every recording studio has a shop. And a basement filled with what would be, if you priced it out now, millions of dollars worth of masters, from Nirvana to Smashing Pumpkins. And later on, Butch’s remixes including U2, Beck and Nine Inch Nails. So that stuff was all in the basement, which was this dungeonesque, low-lit, low ceiling place. My early days were spent going up and down those rickety basement stairs pulling two inch tape up for sessions. That was the bane of my existence, lugging tapes up and down those stairs.\r\n\r\n<b>You’ve been involved in this project for four years now, what made you introduce a Kickstarter campaign at this moment?</b>\r\n\r\nWell, we got to a point where we were getting these little doses of seed money, and this film was going to go on for twenty-five years, if we didn’t throw it out to the people. In working on the film as long as I have, I truly believe it to be a peoples film, and a peoples history of the studio and the music in the Midwest. So I felt like a Kickstarter was the perfect fit. To have people come on board and really become part of the extended production family, and play a role. I think it’s appealing to anyone who’s been touched by the music of Smart. I use the term “we” a lot, because I do feel like “we” can do this. It’s our history. Even it’s a band that recorded in ’89 or ’97, then what happened there meant something, and it means something in the larger context of art in this country, of culture in this country. That these little studios and the Indie bands that went through them, are important.\r\n\r\nThis is what we have. What does this all represent to us now? It’s not a lament, it is somewhat of a retrospective, the film, but it’s a celebration. And why is it important, why even do it? I think that people feel more grounded in the world when they have a sense of where they come from, and the music takes them there. You hear a song now and it connects you. So it’s the stories and it’s the music that really put you in a place, or in a state of mind, and influence how you feel in the world. And this is where these things happened. Life changing records were produced and came out of Smart Studios. It’s funny when you attach a small, little hole-in-the-wall building to something like Nirvana’s <i>Nevermind. </i>So I began to ask myself “How the hell did they get to Madison?” So some of the story I’m looking at is what was that journey, and what did Butch’s aesthetic do to change and shape the course of American rock.\r\n\r\nI think a challenge for me is, there are the anecdotes, all the trials and tribulations of what happened in the recording studio, then to sit back and see what is the bigger picture, and how does Smart fit into American rock history. The challenge now is to translate all the energy that I know is out there with Smart into twenty-five dollars or ten dollars. If we want to do the film in this way, now is the time.\r\n\r\nClick her for more information on the <a href=\"https://www.kickstarter.com/projects/2086665372/the-smart-studios-story\">Smart Studios Story Kickstarter</a>\r\n\r\n ','','','inherit','open','open','','1602-revision-v1','','','2014-03-09 18:48:22','2014-03-10 00:48:22','',1602,'http://www.earthhertzrecords.com/2014/03/1602-revision-v1/',0,'revision','',0),(1615,2,'2014-03-09 18:53:01','2014-03-10 00:53:01','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg\"><img class=\"aligncenter size-full wp-image-1613\" alt=\"Wall of CDs_36 (1)-small\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg\" width=\"1000\" height=\"667\" /></a>When you think of Nirvana, your mind goes to the Seattle music scene. So what would you think if you discovered the demos for <em>Nevermind</em> were cut in a nondescript recording studio in Madison, Wisconsin? Well, you might be interested in finding out how that happened, and how many other musical secrets were contained in that recording studio. And the answer would be... a lot. In 1982, Butch Vig and Steve Marker created Smart Studios, and for the next twenty-eight years, an improbable amount of music which would come to define the era, would emerge from that same studio. From Nirvana, to Smashing Pumpkins, L7, Garbage, Death Cab for Cutie, Tar Babies, Killdozer, and many more, the imprint of Smart on the alternative music scene is large and deep.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2.jpg\"><img class=\"alignleft size-thumbnail wp-image-1606\" alt=\"OLYMPUS DIGITAL CAMERA\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>Director/Producer Wendy Schneider worked at Smart Studios in the early 90s and has maintained a lasting friendship with both Vig and Marker. In 2010, after the closing of the studio, she began gathering video interviews of musicians who had recorded at Smart. With each interview it became apparent that Smart Studios had touched every artist who spent time there. It also seemed the time might be right to really focus on creating a feature length film, so the entire scope of the story of Smart Studios could be documented. She is now in the midst of a Kickstarter campaign to raise funding for the project, <a href=\"http://www.smartstudiosdocumentary.com/\">The Smart Studios Story</a>.\r\n\r\nI recently spoke with Wendy Schneider about the documentary, the Kickstarter campaign, and the unlikely center of music in the midwest, Madison, Wisconsin.\r\n\r\n<b>Kath Galasso: You began working at Smart Studios in 1992, ten years after it opened. How did you get the job there?</b>\r\n\r\n<b></b>Wendy Schneider: I moved to Madison in 1990 and I had a production background from New York City, and it was multi-media communications, it was not Indie Rock recording studio at all. But I started to do live sound for a Ska band here, and I really enjoyed it. A set-up/tear-down capacity every night, and the drummer from that band said there was a cool recording studio and you should see if you could work there. So I showed up, introduced myself, said I didn’t have a resume and they said “we don’t take resumes, if you just want to come and hang out, you’re totally welcomed to.” And that was it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack.jpeg\"><img class=\"alignright size-medium wp-image-1607\" alt=\"BValbum_BVinblack\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack-300x240.jpeg\" width=\"300\" height=\"240\" /></a>I guess it was an intern capacity, it was super laid back. It was such a cool environment back then, you just didn’t want to leave. Butch described it as a clubhouse, to me it was more like a living room. It was just the way a studio ought to be. I loved being there. The people there were incredibly cool. What was nice was that nobody took me under their wing, but no doors were ever closed and you could sort of experiment and do what you wanted. Learn by doing.\r\n\r\n<b>Madison Wisconsin seems as unlikely a place as there could be to be the home for what would become an important footnote in music history. Tell me about the</b><b></b><b> music scene during that time.</b>\r\n\r\nIn my research with the bands that I’ve talked to, it seemed very raw, very organic, very eclectic. In some cases, there might have been some bands that were more musically intellectual, and others that were just more musically simple punk rock and in-your-face. The spectrum was all over the map. And that’s what’s interesting about Smart. It was incredibly expressive, incredibly diverse, but represented an alternative to what was on radio. It was an alternative to what was predictable and mainstream. It represented true fringe culture, a real alternative scene before we even called scenes alternative. Madison is a university city, the state capital, it’s known for its liberal politics, but I think that might have been a backdrop. There was the music scene that was anarchist in its approach. It really did what it wanted to do, and I really love that about the early scene. And Butch and Steve gravitated toward that, and those bands gravitated toward what Butch and Steve were doing, which was giving clarity to that music.\r\n\r\n[caption id=\"attachment_1608\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing.jpg\"><img class=\"size-medium wp-image-1608\" alt=\"BV mixing\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing-300x289.jpg\" width=\"300\" height=\"289\" /></a> Butch Vig[/caption]\r\n\r\n<strong>Do you know where the name Smart Studios came from?</strong>\r\n\r\nYeah, there’s a bar across the street called the Friendly Tavern and it was sort of an after hours thing when they would be sortof tapped out, or needed to get away from the studio, they would say “Hey let’s go across the street and get smart.” It really meant just going in and having some beers.\r\n\r\n<b>Why did the studio finally close?</b>\r\n\r\nSo many things factored into a studio like Smart closing. The most obvious is the business model. Any studio within the last ten years that has closed its doors will use that as why, and it is why essentially. The business just was not there, the business didn’t match the overhead. The accessibility of recording, just the broad range of opportunities that bands have to lay their stuff down. It’s a completely different playing field now than it was thirty years ago. Smart was really the only studio of its kind when it started, and to a fault, it spawned a lot of DIY studios. It spawned mine. So it’s the business model, but you also have an arena and an industry that’s making consumer products as accessible and as exciting and attractive as they can. The do-it-yourself mentality… there’s a payoff for large companies that sell to people who want to do it themselves.\r\n\r\n<strong>It seems everyone has a recording studio now, it\'s called their bedroom.</strong>\r\n\r\n[caption id=\"attachment_1609\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room.jpg\"><img class=\"size-medium wp-image-1609\" alt=\"FIRST SMART_Control Room\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room-300x212.jpg\" width=\"300\" height=\"212\" /></a> First Smart Studio Control Room[/caption]\r\n\r\nYeah, and at the same time it’s making it possible for enormous amounts of music to come out into the world. So there’s a real plus in that people are learning and creating their own way of getting their music recorded. I can see it from a lot of different angles. The unfortunate thing is the loss of environments like Smart, and staff that come with those environments. The people whose craft it is to record. And the craft of engineering is an artistry in the same way that carpentry is. Engineers there really put in their time, and were dedicated to creating the best possible music.\r\n\r\nAnd when I closed my studio, it was the same thing. The last couple of years it starts to get really hard, and you’re not as happy. You have to put more emphasis on marketing, and come up with creative ways to get people connected to the studio, and then you realize it’s a losing battle. It’s a tragedy. And we could certainly put it in the context of, we’re just talking about a recording studio here, nobody has died. There’s a point of reference that is very real of course. But when you look at what a studio represents to the expression of a community, and the loss of a beating heart, and that’s what Smart Studios was, Butch and Steve were a touchstone to a lot of people.\r\n\r\n[caption id=\"attachment_1610\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW.jpeg\"><img class=\"size-medium wp-image-1610 \" alt=\"Feeny_SM at conslBW\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW-300x202.jpeg\" width=\"300\" height=\"202\" /></a> Steve Marker[/caption]\r\n\r\n<strong>You began filming your documentary in 2010, the year the studio closed. Tell me about the timing, was the end of the studio the impetus to make the documentary </strong>\r\n\r\nYeah, I just started sitting down with people, and this was something that Butch, Steve and I talked about, it wasn’t about doing a documentary. It was about just capturing a moment, capturing what was happening. Trying to have it as a keepsake of sorts, it wasn’t about doing a documentary. The first round of interviews, Butch was in LA, Steve in Colorado, so I would send them little clips. And more and more, we just really began to get drawn into it. Then Butch said ‘I really feel like we should talk to get some people that represent the different platform in terms of the music industry experience, and have them talk about Smart.’ It’s such a local story, but it’s a very broad story about American rock music. And when you look at the Midwest, and its role in the context of American rock & roll, it’s quite interesting when you see the connections to this small studio in Madison Wisconsin. So it just kept propelling me forward.\r\n\r\n<b>You’ve described Butch and Steve’s approach to recording as “hardcore.” What made them so?</b>\r\n\r\nThe level of dedication, to me, was something I’d describe as hardcore. Coming in, in the morning and still seeing them still there from last night. This was regular. When they were working on a project, it was not about anything other than the project… anything. And you are dealing with small budgets, independent labels, independent artists, and short periods of time. You don’t have three months to do a record. I think their ability to stay intact as decent human beings and be so hardcore about their work. To call somebody hardcore is one of the biggest compliments for me. To me it means, cut through all bullshit, they’re true to what they’re doing, and incredibly dedicated.\r\n\r\n<b>Describe for me the studio, and did that perception ever change while you were working </b><b>there?</b>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1.jpg\"><img class=\"alignleft size-medium wp-image-1611\" alt=\"1dbd47866139b2e0b1162eb36bedea15_large\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1-300x217.jpg\" width=\"300\" height=\"217\" /></a>It never did. It was fairly nondescript. It was really like a collection of thrift store, hand-me-down furniture. The art on the wall was posters, and there were paintings by some really cool indie artists. Lounges, a kitchen and an old, old soda machine that they would stock. And I remember one of the selections had three X’s on it cause that was for the beer. I thought it was so cool that they had beer in their soda machine.\r\n\r\nThere were lots of different rooms. There was the A room downstairs, and again the studio is a place where artists and engineers spend an enormous amount of time, so you best make them comfortable if you want people to stay… or come back. Smart was very basic but very comfortable. It had everything that you needed. A cool little kitchen area, lounge upstairs and a lounge area downstairs. It had a shop, every recording studio has a shop. And a basement filled with what would be, if you priced it out now, millions of dollars worth of masters, from Nirvana to Smashing Pumpkins. And later on, Butch’s remixes including U2, Beck and Nine Inch Nails. So that stuff was all in the basement, which was this dungeonesque, low-lit, low ceiling place. My early days were spent going up and down those rickety basement stairs pulling two inch tape up for sessions. That was the bane of my existence, lugging tapes up and down those stairs.\r\n\r\n<b>You’ve been involved in this project for four years now, what made you introduce a Kickstarter campaign at this moment?</b>\r\n\r\nWell, we got to a point where we were getting these little doses of seed money, and this film was going to go on for twenty-five years, if we didn’t throw it out to the people. In working on the film as long as I have, I truly believe it to be a peoples film, and a peoples history of the studio and the music in the Midwest. So I felt like a Kickstarter was the perfect fit. To have people come on board and really become part of the extended production family, and play a role. I think it’s appealing to anyone who’s been touched by the music of Smart. I use the term “we” a lot, because I do feel like “we” can do this. It’s our history. Even it’s a band that recorded in ’89 or ’97, then what happened there meant something, and it means something in the larger context of art in this country, of culture in this country. That these little studios and the Indie bands that went through them, are important.\r\n\r\n<iframe width=\"420\" height=\"315\" src=\"https://www.kickstarter.com/projects/2086665372/the-smart-studios-story/widget/video.html\" frameborder=\"0\" scrolling=\"no\"> </iframe>\r\n\r\nThis is what we have. What does this all represent to us now? It’s not a lament, it is somewhat of a retrospective, the film, but it’s a celebration. And why is it important, why even do it? I think that people feel more grounded in the world when they have a sense of where they come from, and the music takes them there. You hear a song now and it connects you. So it’s the stories and it’s the music that really put you in a place, or in a state of mind, and influence how you feel in the world. And this is where these things happened. Life changing records were produced and came out of Smart Studios. It’s funny when you attach a small, little hole-in-the-wall building to something like Nirvana’s <i>Nevermind. </i>So I began to ask myself “How the hell did they get to Madison?” So some of the story I’m looking at is what was that journey, and what did Butch’s aesthetic do to change and shape the course of American rock.\r\n\r\nI think a challenge for me is, there are the anecdotes, all the trials and tribulations of what happened in the recording studio, then to sit back and see what is the bigger picture, and how does Smart fit into American rock history. The challenge now is to translate all the energy that I know is out there with Smart into twenty-five dollars or ten dollars. If we want to do the film in this way, now is the time.\r\n\r\nClick her for more information on the <a href=\"https://www.kickstarter.com/projects/2086665372/the-smart-studios-story\">Smart Studios Story Kickstarter</a>\r\n\r\n ','','','inherit','open','open','','1602-revision-v1','','','2014-03-09 18:53:01','2014-03-10 00:53:01','',1602,'http://www.earthhertzrecords.com/2014/03/1602-revision-v1/',0,'revision','',0),(1616,2,'2014-03-09 18:53:14','2014-03-10 00:53:14','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg\"><img class=\"aligncenter size-full wp-image-1613\" alt=\"Wall of CDs_36 (1)-small\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg\" width=\"1000\" height=\"667\" /></a>When you think of Nirvana, your mind goes to the Seattle music scene. So what would you think if you discovered the demos for <em>Nevermind</em> were cut in a nondescript recording studio in Madison, Wisconsin? Well, you might be interested in finding out how that happened, and how many other musical secrets were contained in that recording studio. And the answer would be... a lot. In 1982, Butch Vig and Steve Marker created Smart Studios, and for the next twenty-eight years, an improbable amount of music which would come to define the era, would emerge from that same studio. From Nirvana, to Smashing Pumpkins, L7, Garbage, Death Cab for Cutie, Tar Babies, Killdozer, and many more, the imprint of Smart on the alternative music scene is large and deep.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2.jpg\"><img class=\"alignleft size-thumbnail wp-image-1606\" alt=\"OLYMPUS DIGITAL CAMERA\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>Director/Producer Wendy Schneider worked at Smart Studios in the early 90s and has maintained a lasting friendship with both Vig and Marker. In 2010, after the closing of the studio, she began gathering video interviews of musicians who had recorded at Smart. With each interview it became apparent that Smart Studios had touched every artist who spent time there. It also seemed the time might be right to really focus on creating a feature length film, so the entire scope of the story of Smart Studios could be documented. She is now in the midst of a Kickstarter campaign to raise funding for the project, <a href=\"http://www.smartstudiosdocumentary.com/\">The Smart Studios Story</a>.\r\n\r\nI recently spoke with Wendy Schneider about the documentary, the Kickstarter campaign, and the unlikely center of music in the midwest, Madison, Wisconsin.\r\n\r\n<b>Kath Galasso: You began working at Smart Studios in 1992, ten years after it opened. How did you get the job there?</b>\r\n\r\n<b></b>Wendy Schneider: I moved to Madison in 1990 and I had a production background from New York City, and it was multi-media communications, it was not Indie Rock recording studio at all. But I started to do live sound for a Ska band here, and I really enjoyed it. A set-up/tear-down capacity every night, and the drummer from that band said there was a cool recording studio and you should see if you could work there. So I showed up, introduced myself, said I didn’t have a resume and they said “we don’t take resumes, if you just want to come and hang out, you’re totally welcomed to.” And that was it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack.jpeg\"><img class=\"alignright size-medium wp-image-1607\" alt=\"BValbum_BVinblack\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack-300x240.jpeg\" width=\"300\" height=\"240\" /></a>I guess it was an intern capacity, it was super laid back. It was such a cool environment back then, you just didn’t want to leave. Butch described it as a clubhouse, to me it was more like a living room. It was just the way a studio ought to be. I loved being there. The people there were incredibly cool. What was nice was that nobody took me under their wing, but no doors were ever closed and you could sort of experiment and do what you wanted. Learn by doing.\r\n\r\n<b>Madison Wisconsin seems as unlikely a place as there could be to be the home for what would become an important footnote in music history. Tell me about the</b><b></b><b> music scene during that time.</b>\r\n\r\nIn my research with the bands that I’ve talked to, it seemed very raw, very organic, very eclectic. In some cases, there might have been some bands that were more musically intellectual, and others that were just more musically simple punk rock and in-your-face. The spectrum was all over the map. And that’s what’s interesting about Smart. It was incredibly expressive, incredibly diverse, but represented an alternative to what was on radio. It was an alternative to what was predictable and mainstream. It represented true fringe culture, a real alternative scene before we even called scenes alternative. Madison is a university city, the state capital, it’s known for its liberal politics, but I think that might have been a backdrop. There was the music scene that was anarchist in its approach. It really did what it wanted to do, and I really love that about the early scene. And Butch and Steve gravitated toward that, and those bands gravitated toward what Butch and Steve were doing, which was giving clarity to that music.\r\n\r\n[caption id=\"attachment_1608\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing.jpg\"><img class=\"size-medium wp-image-1608\" alt=\"BV mixing\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing-300x289.jpg\" width=\"300\" height=\"289\" /></a> Butch Vig[/caption]\r\n\r\n<strong>Do you know where the name Smart Studios came from?</strong>\r\n\r\nYeah, there’s a bar across the street called the Friendly Tavern and it was sort of an after hours thing when they would be sortof tapped out, or needed to get away from the studio, they would say “Hey let’s go across the street and get smart.” It really meant just going in and having some beers.\r\n\r\n<b>Why did the studio finally close?</b>\r\n\r\nSo many things factored into a studio like Smart closing. The most obvious is the business model. Any studio within the last ten years that has closed its doors will use that as why, and it is why essentially. The business just was not there, the business didn’t match the overhead. The accessibility of recording, just the broad range of opportunities that bands have to lay their stuff down. It’s a completely different playing field now than it was thirty years ago. Smart was really the only studio of its kind when it started, and to a fault, it spawned a lot of DIY studios. It spawned mine. So it’s the business model, but you also have an arena and an industry that’s making consumer products as accessible and as exciting and attractive as they can. The do-it-yourself mentality… there’s a payoff for large companies that sell to people who want to do it themselves.\r\n\r\n<strong>It seems everyone has a recording studio now, it\'s called their bedroom.</strong>\r\n\r\n[caption id=\"attachment_1609\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room.jpg\"><img class=\"size-medium wp-image-1609\" alt=\"FIRST SMART_Control Room\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room-300x212.jpg\" width=\"300\" height=\"212\" /></a> First Smart Studio Control Room[/caption]\r\n\r\nYeah, and at the same time it’s making it possible for enormous amounts of music to come out into the world. So there’s a real plus in that people are learning and creating their own way of getting their music recorded. I can see it from a lot of different angles. The unfortunate thing is the loss of environments like Smart, and staff that come with those environments. The people whose craft it is to record. And the craft of engineering is an artistry in the same way that carpentry is. Engineers there really put in their time, and were dedicated to creating the best possible music.\r\n\r\nAnd when I closed my studio, it was the same thing. The last couple of years it starts to get really hard, and you’re not as happy. You have to put more emphasis on marketing, and come up with creative ways to get people connected to the studio, and then you realize it’s a losing battle. It’s a tragedy. And we could certainly put it in the context of, we’re just talking about a recording studio here, nobody has died. There’s a point of reference that is very real of course. But when you look at what a studio represents to the expression of a community, and the loss of a beating heart, and that’s what Smart Studios was, Butch and Steve were a touchstone to a lot of people.\r\n\r\n[caption id=\"attachment_1610\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW.jpeg\"><img class=\"size-medium wp-image-1610 \" alt=\"Feeny_SM at conslBW\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW-300x202.jpeg\" width=\"300\" height=\"202\" /></a> Steve Marker[/caption]\r\n\r\n<strong>You began filming your documentary in 2010, the year the studio closed. Tell me about the timing, was the end of the studio the impetus to make the documentary </strong>\r\n\r\nYeah, I just started sitting down with people, and this was something that Butch, Steve and I talked about, it wasn’t about doing a documentary. It was about just capturing a moment, capturing what was happening. Trying to have it as a keepsake of sorts, it wasn’t about doing a documentary. The first round of interviews, Butch was in LA, Steve in Colorado, so I would send them little clips. And more and more, we just really began to get drawn into it. Then Butch said ‘I really feel like we should talk to get some people that represent the different platform in terms of the music industry experience, and have them talk about Smart.’ It’s such a local story, but it’s a very broad story about American rock music. And when you look at the Midwest, and its role in the context of American rock & roll, it’s quite interesting when you see the connections to this small studio in Madison Wisconsin. So it just kept propelling me forward.\r\n\r\n<b>You’ve described Butch and Steve’s approach to recording as “hardcore.” What made them so?</b>\r\n\r\nThe level of dedication, to me, was something I’d describe as hardcore. Coming in, in the morning and still seeing them still there from last night. This was regular. When they were working on a project, it was not about anything other than the project… anything. And you are dealing with small budgets, independent labels, independent artists, and short periods of time. You don’t have three months to do a record. I think their ability to stay intact as decent human beings and be so hardcore about their work. To call somebody hardcore is one of the biggest compliments for me. To me it means, cut through all bullshit, they’re true to what they’re doing, and incredibly dedicated.\r\n\r\n<b>Describe for me the studio, and did that perception ever change while you were working </b><b>there?</b>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1.jpg\"><img class=\"alignleft size-medium wp-image-1611\" alt=\"1dbd47866139b2e0b1162eb36bedea15_large\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1-300x217.jpg\" width=\"300\" height=\"217\" /></a>It never did. It was fairly nondescript. It was really like a collection of thrift store, hand-me-down furniture. The art on the wall was posters, and there were paintings by some really cool indie artists. Lounges, a kitchen and an old, old soda machine that they would stock. And I remember one of the selections had three X’s on it cause that was for the beer. I thought it was so cool that they had beer in their soda machine.\r\n\r\nThere were lots of different rooms. There was the A room downstairs, and again the studio is a place where artists and engineers spend an enormous amount of time, so you best make them comfortable if you want people to stay… or come back. Smart was very basic but very comfortable. It had everything that you needed. A cool little kitchen area, lounge upstairs and a lounge area downstairs. It had a shop, every recording studio has a shop. And a basement filled with what would be, if you priced it out now, millions of dollars worth of masters, from Nirvana to Smashing Pumpkins. And later on, Butch’s remixes including U2, Beck and Nine Inch Nails. So that stuff was all in the basement, which was this dungeonesque, low-lit, low ceiling place. My early days were spent going up and down those rickety basement stairs pulling two inch tape up for sessions. That was the bane of my existence, lugging tapes up and down those stairs.\r\n\r\n<b>You’ve been involved in this project for four years now, what made you introduce a Kickstarter campaign at this moment?</b>\r\n\r\nWell, we got to a point where we were getting these little doses of seed money, and this film was going to go on for twenty-five years, if we didn’t throw it out to the people. In working on the film as long as I have, I truly believe it to be a peoples film, and a peoples history of the studio and the music in the Midwest. So I felt like a Kickstarter was the perfect fit. To have people come on board and really become part of the extended production family, and play a role. I think it’s appealing to anyone who’s been touched by the music of Smart. I use the term “we” a lot, because I do feel like “we” can do this. It’s our history. Even it’s a band that recorded in ’89 or ’97, then what happened there meant something, and it means something in the larger context of art in this country, of culture in this country. That these little studios and the Indie bands that went through them, are important.\r\n\r\n<iframe src=\"https://www.kickstarter.com/projects/2086665372/the-smart-studios-story/widget/video.html\" height=\"315\" width=\"420\" frameborder=\"0\" scrolling=\"no\"></iframe>\r\n\r\nThis is what we have. What does this all represent to us now? It’s not a lament, it is somewhat of a retrospective, the film, but it’s a celebration. And why is it important, why even do it? I think that people feel more grounded in the world when they have a sense of where they come from, and the music takes them there. You hear a song now and it connects you. So it’s the stories and it’s the music that really put you in a place, or in a state of mind, and influence how you feel in the world. And this is where these things happened. Life changing records were produced and came out of Smart Studios. It’s funny when you attach a small, little hole-in-the-wall building to something like Nirvana’s <i>Nevermind. </i>So I began to ask myself “How the hell did they get to Madison?” So some of the story I’m looking at is what was that journey, and what did Butch’s aesthetic do to change and shape the course of American rock.\r\n\r\nI think a challenge for me is, there are the anecdotes, all the trials and tribulations of what happened in the recording studio, then to sit back and see what is the bigger picture, and how does Smart fit into American rock history. The challenge now is to translate all the energy that I know is out there with Smart into twenty-five dollars or ten dollars. If we want to do the film in this way, now is the time.\r\n\r\nClick her for more information on the <a href=\"https://www.kickstarter.com/projects/2086665372/the-smart-studios-story\">Smart Studios Story Kickstarter</a>\r\n\r\n ','','','inherit','open','open','','1602-revision-v1','','','2014-03-09 18:53:14','2014-03-10 00:53:14','',1602,'http://www.earthhertzrecords.com/2014/03/1602-revision-v1/',0,'revision','',0),(1617,2,'2014-03-09 19:06:52','2014-03-10 01:06:52','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg\"><img class=\"aligncenter size-full wp-image-1613\" alt=\"Wall of CDs_36 (1)-small\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg\" width=\"1000\" height=\"667\" /></a>When you think of Nirvana, your mind goes to the Seattle music scene. So what would you think if you discovered the demos for <em>Nevermind</em> were cut in a nondescript recording studio in Madison, Wisconsin? Well, you might be interested in finding out how that happened, and how many other musical secrets were contained in that recording studio. And the answer would be... a lot. In 1982, Butch Vig and Steve Marker of alt-rock band Garbage created Smart Studios, and for the next twenty-eight years, an improbable amount of music which would come to define the era, would emerge from that same studio. From Nirvana, to Smashing Pumpkins, L7, Garbage, Death Cab for Cutie, Tar Babies, Killdozer, and many more, the imprint of Smart on the alternative music scene is large and deep.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2.jpg\"><img class=\"alignleft size-thumbnail wp-image-1606\" alt=\"OLYMPUS DIGITAL CAMERA\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>Director/Producer Wendy Schneider worked at Smart Studios in the early 90s and has maintained a lasting friendship with both Vig and Marker. In 2010, after the closing of the studio, she began gathering video interviews of musicians who had recorded at Smart. With each interview it became apparent that Smart Studios had touched every artist who spent time there. It also seemed the time might be right to really focus on creating a feature length film, so the entire scope of the story of Smart Studios could be documented. She is now in the midst of a Kickstarter campaign to raise funding for the project, <a href=\"http://www.smartstudiosdocumentary.com/\">The Smart Studios Story</a>.\r\n\r\nI recently spoke with Wendy Schneider about the documentary, the Kickstarter campaign, and the unlikely center of music in the midwest, Madison, Wisconsin.\r\n\r\n<b>Kath Galasso: You began working at Smart Studios in 1992, ten years after it opened. How did you get the job there?</b>\r\n\r\n<b></b>Wendy Schneider: I moved to Madison in 1990 and I had a production background from New York City, and it was multi-media communications, it was not Indie Rock recording studio at all. But I started to do live sound for a Ska band here, and I really enjoyed it. A set-up/tear-down capacity every night, and the drummer from that band said there was a cool recording studio and you should see if you could work there. So I showed up, introduced myself, said I didn’t have a resume and they said “we don’t take resumes, if you just want to come and hang out, you’re totally welcomed to.” And that was it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack.jpeg\"><img class=\"alignright size-medium wp-image-1607\" alt=\"BValbum_BVinblack\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack-300x240.jpeg\" width=\"300\" height=\"240\" /></a>I guess it was an intern capacity, it was super laid back. It was such a cool environment back then, you just didn’t want to leave. Butch described it as a clubhouse, to me it was more like a living room. It was just the way a studio ought to be. I loved being there. The people there were incredibly cool. What was nice was that nobody took me under their wing, but no doors were ever closed and you could sort of experiment and do what you wanted. Learn by doing.\r\n\r\n<b>Madison Wisconsin seems as unlikely a place as there could be to be the home for what would become an important footnote in music history. Tell me about the</b><b></b><b> music scene during that time.</b>\r\n\r\nIn my research with the bands that I’ve talked to, it seemed very raw, very organic, very eclectic. In some cases, there might have been some bands that were more musically intellectual, and others that were just more musically simple punk rock and in-your-face. The spectrum was all over the map. And that’s what’s interesting about Smart. It was incredibly expressive, incredibly diverse, but represented an alternative to what was on radio. It was an alternative to what was predictable and mainstream. It represented true fringe culture, a real alternative scene before we even called scenes alternative. Madison is a university city, the state capital, it’s known for its liberal politics, but I think that might have been a backdrop. There was the music scene that was anarchist in its approach. It really did what it wanted to do, and I really love that about the early scene. And Butch and Steve gravitated toward that, and those bands gravitated toward what Butch and Steve were doing, which was giving clarity to that music.\r\n\r\n[caption id=\"attachment_1608\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing.jpg\"><img class=\"size-medium wp-image-1608\" alt=\"BV mixing\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing-300x289.jpg\" width=\"300\" height=\"289\" /></a> Butch Vig[/caption]\r\n\r\n<strong>Do you know where the name Smart Studios came from?</strong>\r\n\r\nYeah, there’s a bar across the street called the Friendly Tavern and it was sort of an after hours thing when they would be sortof tapped out, or needed to get away from the studio, they would say “Hey let’s go across the street and get smart.” It really meant just going in and having some beers.\r\n\r\n<b>Why did the studio finally close?</b>\r\n\r\nSo many things factored into a studio like Smart closing. The most obvious is the business model. Any studio within the last ten years that has closed its doors will use that as why, and it is why essentially. The business just was not there, the business didn’t match the overhead. The accessibility of recording, just the broad range of opportunities that bands have to lay their stuff down. It’s a completely different playing field now than it was thirty years ago. Smart was really the only studio of its kind when it started, and to a fault, it spawned a lot of DIY studios. It spawned mine. So it’s the business model, but you also have an arena and an industry that’s making consumer products as accessible and as exciting and attractive as they can. The do-it-yourself mentality… there’s a payoff for large companies that sell to people who want to do it themselves.\r\n\r\n<strong>It seems everyone has a recording studio now, it\'s called their bedroom.</strong>\r\n\r\n[caption id=\"attachment_1609\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room.jpg\"><img class=\"size-medium wp-image-1609\" alt=\"FIRST SMART_Control Room\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room-300x212.jpg\" width=\"300\" height=\"212\" /></a> First Smart Studio Control Room[/caption]\r\n\r\nYeah, and at the same time it’s making it possible for enormous amounts of music to come out into the world. So there’s a real plus in that people are learning and creating their own way of getting their music recorded. I can see it from a lot of different angles. The unfortunate thing is the loss of environments like Smart, and staff that come with those environments. The people whose craft it is to record. And the craft of engineering is an artistry in the same way that carpentry is. Engineers there really put in their time, and were dedicated to creating the best possible music.\r\n\r\nAnd when I closed my studio, it was the same thing. The last couple of years it starts to get really hard, and you’re not as happy. You have to put more emphasis on marketing, and come up with creative ways to get people connected to the studio, and then you realize it’s a losing battle. It’s a tragedy. And we could certainly put it in the context of, we’re just talking about a recording studio here, nobody has died. There’s a point of reference that is very real of course. But when you look at what a studio represents to the expression of a community, and the loss of a beating heart, and that’s what Smart Studios was, Butch and Steve were a touchstone to a lot of people.\r\n\r\n[caption id=\"attachment_1610\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW.jpeg\"><img class=\"size-medium wp-image-1610 \" alt=\"Feeny_SM at conslBW\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW-300x202.jpeg\" width=\"300\" height=\"202\" /></a> Steve Marker[/caption]\r\n\r\n<strong>You began filming your documentary in 2010, the year the studio closed. Tell me about the timing, was the end of the studio the impetus to make the documentary </strong>\r\n\r\nYeah, I just started sitting down with people, and this was something that Butch, Steve and I talked about, it wasn’t about doing a documentary. It was about just capturing a moment, capturing what was happening. Trying to have it as a keepsake of sorts, it wasn’t about doing a documentary. The first round of interviews, Butch was in LA, Steve in Colorado, so I would send them little clips. And more and more, we just really began to get drawn into it. Then Butch said ‘I really feel like we should talk to get some people that represent the different platform in terms of the music industry experience, and have them talk about Smart.’ It’s such a local story, but it’s a very broad story about American rock music. And when you look at the Midwest, and its role in the context of American rock & roll, it’s quite interesting when you see the connections to this small studio in Madison Wisconsin. So it just kept propelling me forward.\r\n\r\n<b>You’ve described Butch and Steve’s approach to recording as “hardcore.” What made them so?</b>\r\n\r\nThe level of dedication, to me, was something I’d describe as hardcore. Coming in, in the morning and still seeing them still there from last night. This was regular. When they were working on a project, it was not about anything other than the project… anything. And you are dealing with small budgets, independent labels, independent artists, and short periods of time. You don’t have three months to do a record. I think their ability to stay intact as decent human beings and be so hardcore about their work. To call somebody hardcore is one of the biggest compliments for me. To me it means, cut through all bullshit, they’re true to what they’re doing, and incredibly dedicated.\r\n\r\n<b>Describe for me the studio, and did that perception ever change while you were working </b><b>there?</b>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1.jpg\"><img class=\"alignleft size-medium wp-image-1611\" alt=\"1dbd47866139b2e0b1162eb36bedea15_large\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1-300x217.jpg\" width=\"300\" height=\"217\" /></a>It never did. It was fairly nondescript. It was really like a collection of thrift store, hand-me-down furniture. The art on the wall was posters, and there were paintings by some really cool indie artists. Lounges, a kitchen and an old, old soda machine that they would stock. And I remember one of the selections had three X’s on it cause that was for the beer. I thought it was so cool that they had beer in their soda machine.\r\n\r\nThere were lots of different rooms. There was the A room downstairs, and again the studio is a place where artists and engineers spend an enormous amount of time, so you best make them comfortable if you want people to stay… or come back. Smart was very basic but very comfortable. It had everything that you needed. A cool little kitchen area, lounge upstairs and a lounge area downstairs. It had a shop, every recording studio has a shop. And a basement filled with what would be, if you priced it out now, millions of dollars worth of masters, from Nirvana to Smashing Pumpkins. And later on, Butch’s remixes including U2, Beck and Nine Inch Nails. So that stuff was all in the basement, which was this dungeonesque, low-lit, low ceiling place. My early days were spent going up and down those rickety basement stairs pulling two inch tape up for sessions. That was the bane of my existence, lugging tapes up and down those stairs.\r\n\r\n<b>You’ve been involved in this project for four years now, what made you introduce a Kickstarter campaign at this moment?</b>\r\n\r\nWell, we got to a point where we were getting these little doses of seed money, and this film was going to go on for twenty-five years, if we didn’t throw it out to the people. In working on the film as long as I have, I truly believe it to be a peoples film, and a peoples history of the studio and the music in the Midwest. So I felt like a Kickstarter was the perfect fit. To have people come on board and really become part of the extended production family, and play a role. I think it’s appealing to anyone who’s been touched by the music of Smart. I use the term “we” a lot, because I do feel like “we” can do this. It’s our history. Even it’s a band that recorded in ’89 or ’97, then what happened there meant something, and it means something in the larger context of art in this country, of culture in this country. That these little studios and the Indie bands that went through them, are important.\r\n\r\n<iframe src=\"https://www.kickstarter.com/projects/2086665372/the-smart-studios-story/widget/video.html\" height=\"315\" width=\"420\" frameborder=\"0\" scrolling=\"no\"></iframe>\r\n\r\nThis is what we have. What does this all represent to us now? It’s not a lament, it is somewhat of a retrospective, the film, but it’s a celebration. And why is it important, why even do it? I think that people feel more grounded in the world when they have a sense of where they come from, and the music takes them there. You hear a song now and it connects you. So it’s the stories and it’s the music that really put you in a place, or in a state of mind, and influence how you feel in the world. And this is where these things happened. Life changing records were produced and came out of Smart Studios. It’s funny when you attach a small, little hole-in-the-wall building to something like Nirvana’s <i>Nevermind. </i>So I began to ask myself “How the hell did they get to Madison?” So some of the story I’m looking at is what was that journey, and what did Butch’s aesthetic do to change and shape the course of American rock.\r\n\r\nI think a challenge for me is, there are the anecdotes, all the trials and tribulations of what happened in the recording studio, then to sit back and see what is the bigger picture, and how does Smart fit into American rock history. The challenge now is to translate all the energy that I know is out there with Smart into twenty-five dollars or ten dollars. If we want to do the film in this way, now is the time.\r\n\r\nClick here for more information on the <a href=\"https://www.kickstarter.com/projects/2086665372/the-smart-studios-story\">Smart Studios Story Kickstarter</a>\r\n\r\n<a href=\"https://www.facebook.com/pages/The-Smart-Studios-Story/141044742624643\">The Smart Studio Story on FaceBook</a>\r\n\r\n \r\n\r\n ','From Garbage to Nirvana, Director Wendy Schneider Tells the Smart Studio Story','','inherit','open','open','','1602-revision-v1','','','2014-03-09 19:06:52','2014-03-10 01:06:52','',1602,'http://www.earthhertzrecords.com/2014/03/1602-revision-v1/',0,'revision','',0),(1618,2,'2014-03-09 19:09:15','2014-03-10 01:09:15','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg\"><img class=\"aligncenter size-full wp-image-1613\" alt=\"Wall of CDs_36 (1)-small\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg\" width=\"1000\" height=\"667\" /></a>When you think of Nirvana, your mind goes to the Seattle music scene. So what would you think if you discovered the demos for <em>Nevermind</em> were cut in a nondescript recording studio in Madison, Wisconsin? Well, you might be interested in finding out how many other musical secrets were contained in that recording studio. And the answer would be... a lot. In 1982, Butch Vig and Steve Marker of alt-rock band Garbage created Smart Studios, and for the next twenty-eight years, an improbable amount of music which would come to define the era, emerged from that same studio. From Nirvana, to Smashing Pumpkins, L7, Garbage, Death Cab for Cutie, Tar Babies, Killdozer, and many more, the imprint of Smart on the alternative music scene is large and deep.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2.jpg\"><img class=\"alignleft size-thumbnail wp-image-1606\" alt=\"OLYMPUS DIGITAL CAMERA\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>Director/Producer Wendy Schneider worked at Smart Studios in the early 90s and has maintained a lasting friendship with both Vig and Marker. In 2010, after the closing of the studio, she began gathering video interviews of musicians who had recorded at Smart. With each interview it became apparent that Smart Studios had touched every artist who spent time there. It also seemed the time might be right to really focus on creating a feature length film, so the entire scope of the story of Smart Studios could be documented. She is now in the midst of a Kickstarter campaign to raise funding for the project, <a href=\"http://www.smartstudiosdocumentary.com/\">The Smart Studios Story</a>.\r\n\r\nI recently spoke with Wendy Schneider about the documentary, the Kickstarter campaign, and the unlikely center of music in the midwest, Madison, Wisconsin.\r\n\r\n<b>Kath Galasso: You began working at Smart Studios in 1992, ten years after it opened. How did you get the job there?</b>\r\n\r\n<b></b>Wendy Schneider: I moved to Madison in 1990 and I had a production background from New York City, and it was multi-media communications, it was not Indie Rock recording studio at all. But I started to do live sound for a Ska band here, and I really enjoyed it. A set-up/tear-down capacity every night, and the drummer from that band said there was a cool recording studio and you should see if you could work there. So I showed up, introduced myself, said I didn’t have a resume and they said “we don’t take resumes, if you just want to come and hang out, you’re totally welcomed to.” And that was it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack.jpeg\"><img class=\"alignright size-medium wp-image-1607\" alt=\"BValbum_BVinblack\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack-300x240.jpeg\" width=\"300\" height=\"240\" /></a>I guess it was an intern capacity, it was super laid back. It was such a cool environment back then, you just didn’t want to leave. Butch described it as a clubhouse, to me it was more like a living room. It was just the way a studio ought to be. I loved being there. The people there were incredibly cool. What was nice was that nobody took me under their wing, but no doors were ever closed and you could sort of experiment and do what you wanted. Learn by doing.\r\n\r\n<b>Madison Wisconsin seems as unlikely a place as there could be to be the home for what would become an important footnote in music history. Tell me about the</b><b></b><b> music scene during that time.</b>\r\n\r\nIn my research with the bands that I’ve talked to, it seemed very raw, very organic, very eclectic. In some cases, there might have been some bands that were more musically intellectual, and others that were just more musically simple punk rock and in-your-face. The spectrum was all over the map. And that’s what’s interesting about Smart. It was incredibly expressive, incredibly diverse, but represented an alternative to what was on radio. It was an alternative to what was predictable and mainstream. It represented true fringe culture, a real alternative scene before we even called scenes alternative. Madison is a university city, the state capital, it’s known for its liberal politics, but I think that might have been a backdrop. There was the music scene that was anarchist in its approach. It really did what it wanted to do, and I really love that about the early scene. And Butch and Steve gravitated toward that, and those bands gravitated toward what Butch and Steve were doing, which was giving clarity to that music.\r\n\r\n[caption id=\"attachment_1608\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing.jpg\"><img class=\"size-medium wp-image-1608\" alt=\"BV mixing\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing-300x289.jpg\" width=\"300\" height=\"289\" /></a> Butch Vig[/caption]\r\n\r\n<strong>Do you know where the name Smart Studios came from?</strong>\r\n\r\nYeah, there’s a bar across the street called the Friendly Tavern and it was sort of an after hours thing when they would be sortof tapped out, or needed to get away from the studio, they would say “Hey let’s go across the street and get smart.” It really meant just going in and having some beers.\r\n\r\n<b>Why did the studio finally close?</b>\r\n\r\nSo many things factored into a studio like Smart closing. The most obvious is the business model. Any studio within the last ten years that has closed its doors will use that as why, and it is why essentially. The business just was not there, the business didn’t match the overhead. The accessibility of recording, just the broad range of opportunities that bands have to lay their stuff down. It’s a completely different playing field now than it was thirty years ago. Smart was really the only studio of its kind when it started, and to a fault, it spawned a lot of DIY studios. It spawned mine. So it’s the business model, but you also have an arena and an industry that’s making consumer products as accessible and as exciting and attractive as they can. The do-it-yourself mentality… there’s a payoff for large companies that sell to people who want to do it themselves.\r\n\r\n<strong>It seems everyone has a recording studio now, it\'s called their bedroom.</strong>\r\n\r\n[caption id=\"attachment_1609\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room.jpg\"><img class=\"size-medium wp-image-1609\" alt=\"FIRST SMART_Control Room\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room-300x212.jpg\" width=\"300\" height=\"212\" /></a> First Smart Studio Control Room[/caption]\r\n\r\nYeah, and at the same time it’s making it possible for enormous amounts of music to come out into the world. So there’s a real plus in that people are learning and creating their own way of getting their music recorded. I can see it from a lot of different angles. The unfortunate thing is the loss of environments like Smart, and staff that come with those environments. The people whose craft it is to record. And the craft of engineering is an artistry in the same way that carpentry is. Engineers there really put in their time, and were dedicated to creating the best possible music.\r\n\r\nAnd when I closed my studio, it was the same thing. The last couple of years it starts to get really hard, and you’re not as happy. You have to put more emphasis on marketing, and come up with creative ways to get people connected to the studio, and then you realize it’s a losing battle. It’s a tragedy. And we could certainly put it in the context of, we’re just talking about a recording studio here, nobody has died. There’s a point of reference that is very real of course. But when you look at what a studio represents to the expression of a community, and the loss of a beating heart, and that’s what Smart Studios was, Butch and Steve were a touchstone to a lot of people.\r\n\r\n[caption id=\"attachment_1610\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW.jpeg\"><img class=\"size-medium wp-image-1610 \" alt=\"Feeny_SM at conslBW\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW-300x202.jpeg\" width=\"300\" height=\"202\" /></a> Steve Marker[/caption]\r\n\r\n<strong>You began filming your documentary in 2010, the year the studio closed. Tell me about the timing, was the end of the studio the impetus to make the documentary </strong>\r\n\r\nYeah, I just started sitting down with people, and this was something that Butch, Steve and I talked about, it wasn’t about doing a documentary. It was about just capturing a moment, capturing what was happening. Trying to have it as a keepsake of sorts, it wasn’t about doing a documentary. The first round of interviews, Butch was in LA, Steve in Colorado, so I would send them little clips. And more and more, we just really began to get drawn into it. Then Butch said ‘I really feel like we should talk to get some people that represent the different platform in terms of the music industry experience, and have them talk about Smart.’ It’s such a local story, but it’s a very broad story about American rock music. And when you look at the Midwest, and its role in the context of American rock & roll, it’s quite interesting when you see the connections to this small studio in Madison Wisconsin. So it just kept propelling me forward.\r\n\r\n<b>You’ve described Butch and Steve’s approach to recording as “hardcore.” What made them so?</b>\r\n\r\nThe level of dedication, to me, was something I’d describe as hardcore. Coming in, in the morning and still seeing them still there from last night. This was regular. When they were working on a project, it was not about anything other than the project… anything. And you are dealing with small budgets, independent labels, independent artists, and short periods of time. You don’t have three months to do a record. I think their ability to stay intact as decent human beings and be so hardcore about their work. To call somebody hardcore is one of the biggest compliments for me. To me it means, cut through all bullshit, they’re true to what they’re doing, and incredibly dedicated.\r\n\r\n<b>Describe for me the studio, and did that perception ever change while you were working </b><b>there?</b>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1.jpg\"><img class=\"alignleft size-medium wp-image-1611\" alt=\"1dbd47866139b2e0b1162eb36bedea15_large\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1-300x217.jpg\" width=\"300\" height=\"217\" /></a>It never did. It was fairly nondescript. It was really like a collection of thrift store, hand-me-down furniture. The art on the wall was posters, and there were paintings by some really cool indie artists. Lounges, a kitchen and an old, old soda machine that they would stock. And I remember one of the selections had three X’s on it cause that was for the beer. I thought it was so cool that they had beer in their soda machine.\r\n\r\nThere were lots of different rooms. There was the A room downstairs, and again the studio is a place where artists and engineers spend an enormous amount of time, so you best make them comfortable if you want people to stay… or come back. Smart was very basic but very comfortable. It had everything that you needed. A cool little kitchen area, lounge upstairs and a lounge area downstairs. It had a shop, every recording studio has a shop. And a basement filled with what would be, if you priced it out now, millions of dollars worth of masters, from Nirvana to Smashing Pumpkins. And later on, Butch’s remixes including U2, Beck and Nine Inch Nails. So that stuff was all in the basement, which was this dungeonesque, low-lit, low ceiling place. My early days were spent going up and down those rickety basement stairs pulling two inch tape up for sessions. That was the bane of my existence, lugging tapes up and down those stairs.\r\n\r\n<b>You’ve been involved in this project for four years now, what made you introduce a Kickstarter campaign at this moment?</b>\r\n\r\nWell, we got to a point where we were getting these little doses of seed money, and this film was going to go on for twenty-five years, if we didn’t throw it out to the people. In working on the film as long as I have, I truly believe it to be a peoples film, and a peoples history of the studio and the music in the Midwest. So I felt like a Kickstarter was the perfect fit. To have people come on board and really become part of the extended production family, and play a role. I think it’s appealing to anyone who’s been touched by the music of Smart. I use the term “we” a lot, because I do feel like “we” can do this. It’s our history. Even it’s a band that recorded in ’89 or ’97, then what happened there meant something, and it means something in the larger context of art in this country, of culture in this country. That these little studios and the Indie bands that went through them, are important.\r\n\r\n<iframe src=\"https://www.kickstarter.com/projects/2086665372/the-smart-studios-story/widget/video.html\" height=\"315\" width=\"420\" frameborder=\"0\" scrolling=\"no\"></iframe>\r\n\r\nThis is what we have. What does this all represent to us now? It’s not a lament, it is somewhat of a retrospective, the film, but it’s a celebration. And why is it important, why even do it? I think that people feel more grounded in the world when they have a sense of where they come from, and the music takes them there. You hear a song now and it connects you. So it’s the stories and it’s the music that really put you in a place, or in a state of mind, and influence how you feel in the world. And this is where these things happened. Life changing records were produced and came out of Smart Studios. It’s funny when you attach a small, little hole-in-the-wall building to something like Nirvana’s <i>Nevermind. </i>So I began to ask myself “How the hell did they get to Madison?” So some of the story I’m looking at is what was that journey, and what did Butch’s aesthetic do to change and shape the course of American rock.\r\n\r\nI think a challenge for me is, there are the anecdotes, all the trials and tribulations of what happened in the recording studio, then to sit back and see what is the bigger picture, and how does Smart fit into American rock history. The challenge now is to translate all the energy that I know is out there with Smart into twenty-five dollars or ten dollars. If we want to do the film in this way, now is the time.\r\n\r\nClick here for more information on the <a href=\"https://www.kickstarter.com/projects/2086665372/the-smart-studios-story\">Smart Studios Story Kickstarter</a>\r\n\r\n<a href=\"https://www.facebook.com/pages/The-Smart-Studios-Story/141044742624643\">The Smart Studio Story on FaceBook</a>\r\n\r\n \r\n\r\n ','From Garbage to Nirvana, Director Wendy Schneider Tells the Smart Studio Story','','inherit','open','open','','1602-revision-v1','','','2014-03-09 19:09:15','2014-03-10 01:09:15','',1602,'http://www.earthhertzrecords.com/2014/03/1602-revision-v1/',0,'revision','',0),(1619,2,'2014-03-09 19:23:20','2014-03-10 01:23:20','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg\"><img class=\"aligncenter size-full wp-image-1613\" alt=\"Wall of CDs_36 (1)-small\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wall-of-CDs_36-1-small.jpg\" width=\"1000\" height=\"667\" /></a>When you think of Nirvana, your mind goes to the Seattle music scene. So what would you think if you discovered the demos for <em>Nevermind</em> were cut in a nondescript recording studio in Madison, Wisconsin? Well, you might be interested in finding out how many other musical secrets were contained in that recording studio. And the answer would be... a lot. In 1982, Butch Vig and Steve Marker of alt-rock band Garbage created Smart Studios, and for the next twenty-eight years, an improbable amount of music which would come to define the era, emerged from that same studio. From Nirvana, to Smashing Pumpkins, L7, Garbage, Death Cab for Cutie, Tar Babies, Killdozer, and many more, the imprint of Smart on the alternative music scene is large and deep.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2.jpg\"><img class=\"alignleft size-thumbnail wp-image-1606\" alt=\"OLYMPUS DIGITAL CAMERA\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Wendy-Pic-2-150x150.jpg\" width=\"150\" height=\"150\" /></a>Director/Producer Wendy Schneider worked at Smart Studios in the early 90s and has maintained a lasting friendship with both Vig and Marker. In 2010, after the closing of the studio, she began gathering video interviews of musicians who had recorded at Smart. With each interview it became apparent Smart Studios had touched every artist who spent time there. It also seemed the time might be right to really focus on creating a feature length film, so the entire scope of the story of Smart Studios could be documented. Schneider is now in the midst of a Kickstarter campaign to raise funding for the project, <a href=\"http://www.smartstudiosdocumentary.com/\">The Smart Studios Story</a>.\r\n\r\nI recently spoke with Wendy Schneider about the documentary, the Kickstarter campaign, and the unlikely center of music in the midwest, Madison, Wisconsin.\r\n\r\n<b>Kath Galasso: You began working at Smart Studios in 1992, ten years after it opened. How did you get the job there?</b>\r\n\r\n<b></b>Wendy Schneider: I moved to Madison in 1990 and I had a production background from New York City, and it was multi-media communications, it was not Indie Rock recording studio at all. But I started to do live sound for a Ska band here, and I really enjoyed it. A set-up/tear-down capacity every night, and the drummer from that band said there was a cool recording studio and you should see if you could work there. So I showed up, introduced myself, said I didn’t have a resume and they said “we don’t take resumes, if you just want to come and hang out, you’re totally welcomed to.” And that was it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack.jpeg\"><img class=\"alignright size-medium wp-image-1607\" alt=\"BValbum_BVinblack\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BValbum_BVinblack-300x240.jpeg\" width=\"300\" height=\"240\" /></a>I guess it was an intern capacity, it was super laid back. It was such a cool environment back then, you just didn’t want to leave. Butch described it as a clubhouse, to me it was more like a living room. It was just the way a studio ought to be. I loved being there. The people there were incredibly cool. What was nice was that nobody took me under their wing, but no doors were ever closed and you could sort of experiment and do what you wanted. Learn by doing.\r\n\r\n<b>Madison, Wisconsin seems as unlikely a place as there could be to become the home for an important footnote in music history. Tell me about the</b><b></b><b> music scene during that time.</b>\r\n\r\nIn my research with the bands that I’ve talked to, it seemed very raw, very organic, very eclectic. In some cases, there might have been some bands that were more musically intellectual, and others that were just more musically simple punk rock and in-your-face. The spectrum was all over the map. And that’s what’s interesting about Smart. It was incredibly expressive, incredibly diverse, but represented an alternative to what was on radio. It was an alternative to what was predictable and mainstream. It represented true fringe culture, a real alternative scene before we even called scenes alternative. Madison is a university city, the state capital, it’s known for its liberal politics, but I think that might have been a backdrop. There was the music scene that was anarchist in its approach. It really did what it wanted to do, and I really love that about the early scene. And Butch and Steve gravitated toward that, and those bands gravitated toward what Butch and Steve were doing, which was giving clarity to that music.\r\n\r\n[caption id=\"attachment_1608\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing.jpg\"><img class=\"size-medium wp-image-1608\" alt=\"BV mixing\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/BV-mixing-300x289.jpg\" width=\"300\" height=\"289\" /></a> Butch Vig[/caption]\r\n\r\n<strong>Do you know where the name Smart Studios came from?</strong>\r\n\r\nYeah, there’s a bar across the street called the Friendly Tavern and it was sort of an after hours thing when they would be sort of tapped out, or needed to get away from the studio, they would say “Hey let’s go across the street and get smart.” It really meant just going in and having some beers.\r\n\r\n<b>Why did the studio finally close?</b>\r\n\r\nSo many things factored into a studio like Smart closing. The most obvious is the business model. Any studio within the last ten years that has closed its doors will use that as why, and it is why essentially. The business just was not there, the business didn’t match the overhead. The accessibility of recording, just the broad range of opportunities that bands have to lay their stuff down. It’s a completely different playing field now than it was thirty years ago. Smart was really the only studio of its kind when it started, and to a fault, it spawned a lot of DIY studios. It spawned mine. So it’s the business model, but you also have an arena and an industry that’s making consumer products as accessible and as exciting and attractive as they can. The do-it-yourself mentality… there’s a payoff for large companies that sell to people who want to do it themselves.\r\n\r\n<strong>It seems everyone has a recording studio now, it\'s called their bedroom.</strong>\r\n\r\n[caption id=\"attachment_1609\" align=\"alignright\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room.jpg\"><img class=\"size-medium wp-image-1609\" alt=\"FIRST SMART_Control Room\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/FIRST-SMART_Control-Room-300x212.jpg\" width=\"300\" height=\"212\" /></a> First Smart Studio Control Room[/caption]\r\n\r\nYeah, and at the same time it’s making it possible for enormous amounts of music to come out into the world. So there’s a real plus in that people are learning and creating their own way of getting their music recorded. I can see it from a lot of different angles. The unfortunate thing is the loss of environments like Smart, and staff that come with those environments. The people whose craft it is to record. And the craft of engineering is an artistry in the same way that carpentry is. Engineers there really put in their time, and were dedicated to creating the best possible music.\r\n\r\nAnd when I closed my studio, it was the same thing. The last couple of years it starts to get really hard, and you’re not as happy. You have to put more emphasis on marketing, and come up with creative ways to get people connected to the studio, and then you realize it’s a losing battle. It’s a tragedy. And we could certainly put it in the context of, we’re just talking about a recording studio here, nobody has died. There’s a point of reference that is very real of course. But when you look at what a studio represents to the expression of a community, and the loss of a beating heart, and that’s what Smart Studios was, Butch and Steve were a touchstone to a lot of people.\r\n\r\n[caption id=\"attachment_1610\" align=\"alignleft\" width=\"300\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW.jpeg\"><img class=\"size-medium wp-image-1610 \" alt=\"Feeny_SM at conslBW\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Feeny_SM-at-conslBW-300x202.jpeg\" width=\"300\" height=\"202\" /></a> Steve Marker[/caption]\r\n\r\n<strong>You began filming your documentary in 2010, the year the studio closed. Tell me about the timing, was the end of the studio the impetus to make the documentary </strong>\r\n\r\nYeah, I just started sitting down with people, and this was something that Butch, Steve and I talked about, it wasn’t about doing a documentary. It was about just capturing a moment, capturing what was happening. Trying to have it as a keepsake of sorts. The first round of interviews, Butch was in LA, Steve in Colorado, so I would send them little clips. And more and more, we just really began to get drawn into it. Then Butch said ‘I really feel like we should talk to get some people that represent the different platform in terms of the music industry experience, and have them talk about Smart.’ It’s such a local story, but it’s a very broad story about American rock music. And when you look at the Midwest, and its role in the context of American rock & roll, it’s quite interesting when you see the connections to this small studio in Madison Wisconsin. So it just kept propelling me forward.\r\n\r\n<b>You’ve described Butch and Steve’s approach to recording as “hardcore.” What made them so?</b>\r\n\r\nThe level of dedication, to me, was something I’d describe as hardcore. Coming in, in the morning and seeing them still there from last night. This was regular. When they were working on a project, it was not about anything other than the project… anything. And you are dealing with small budgets, independent labels, independent artists, and short periods of time. You don’t have three months to do a record. I think their ability to stay intact as decent human beings and be so hardcore about their work. To call somebody hardcore is one of the biggest compliments for me. To me it means, cut through all bullshit, they’re true to what they’re doing, and incredibly dedicated.\r\n\r\n<b>Describe for me the studio, and did that perception ever change while you were working </b><b>there?</b>\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1.jpg\"><img class=\"alignleft size-medium wp-image-1611\" alt=\"1dbd47866139b2e0b1162eb36bedea15_large\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/1dbd47866139b2e0b1162eb36bedea15_large1-300x217.jpg\" width=\"300\" height=\"217\" /></a>It never did. It was fairly nondescript. It was really like a collection of thrift store, hand-me-down furniture. The art on the wall was posters, and there were paintings by some really cool indie artists. Lounges, a kitchen and an old, old soda machine that they would stock. And I remember one of the selections had three X’s on it cause that was for the beer. I thought it was so cool that they had beer in their soda machine.\r\n\r\nThere were lots of different rooms. There was the A room downstairs, and again the studio is a place where artists and engineers spend an enormous amount of time, so you best make them comfortable if you want people to stay… or come back. Smart was very basic but very comfortable. It had everything that you needed. A cool little kitchen area, lounge upstairs and a lounge area downstairs. It had a shop, every recording studio has a shop. And a basement filled with what would be, if you priced it out now, millions of dollars worth of masters, from Nirvana to Smashing Pumpkins. And later on, Butch’s remixes including U2, Beck and Nine Inch Nails. So that stuff was all in the basement, which was this dungeonesque, low-lit, low ceiling place. My early days were spent going up and down those rickety basement stairs pulling two inch tape up for sessions. That was the bane of my existence, lugging tapes up and down those stairs.\r\n\r\n<b>You’ve been involved in this project for four years now, what made you introduce a Kickstarter campaign at this moment?</b>\r\n\r\nWell, we got to a point where we were getting these little doses of seed money, and this film was going to go on for twenty-five years, if we didn’t throw it out to the people. In working on the film as long as I have, I truly believe it to be a peoples film, and a peoples history of the studio and the music in the Midwest. So I felt like a Kickstarter was the perfect fit. To have people come on board and really become part of the extended production family, and play a role. I think it’s appealing to anyone who’s been touched by the music of Smart. I use the term “we” a lot, because I do feel like “we” can do this. It’s our history. Even it’s a band that recorded in ’89 or ’97, then what happened there meant something, and it means something in the larger context of art in this country, of culture in this country. That these little studios and the Indie bands that went through them, are important.\r\n\r\n<iframe src=\"https://www.kickstarter.com/projects/2086665372/the-smart-studios-story/widget/video.html\" height=\"315\" width=\"420\" frameborder=\"0\" scrolling=\"no\"></iframe>\r\n\r\nThis is what we have. What does this all represent to us now? It’s not a lament, it is somewhat of a retrospective, the film, but it’s a celebration. And why is it important, why even do it? I think that people feel more grounded in the world when they have a sense of where they come from, and the music takes them there. You hear a song now and it connects you. So it’s the stories and it’s the music that really put you in a place, or in a state of mind, and influence how you feel in the world. And this is where these things happened. Life changing records were produced and came out of Smart Studios. It’s funny when you attach a small, little hole-in-the-wall building to something like Nirvana’s <i>Nevermind. </i>So I began to ask myself “How the hell did they get to Madison?” So some of the story I’m looking at is what was that journey, and what did Butch’s aesthetic do to change and shape the course of American rock.\r\n\r\nI think a challenge for me is, there are the anecdotes, all the trials and tribulations of what happened in the recording studio, then to sit back and see what is the bigger picture, and how does Smart fit into American rock history. The challenge now is to translate all the energy that I know is out there with Smart into twenty-five dollars or ten dollars. If we want to do the film in this way, now is the time.\r\n\r\nClick here for more information on the <a href=\"https://www.kickstarter.com/projects/2086665372/the-smart-studios-story\">Smart Studios Story Kickstarter</a>\r\n\r\nFor current local fundraisers and information check out <a href=\"https://www.facebook.com/pages/The-Smart-Studios-Story/141044742624643\">The Smart Studio Story on FaceBook</a>\r\n\r\n \r\n\r\n ','From Garbage to Nirvana, Director Wendy Schneider Tells the Smart Studio Story','','inherit','open','open','','1602-revision-v1','','','2014-03-09 19:23:20','2014-03-10 01:23:20','',1602,'http://www.earthhertzrecords.com/2014/03/1602-revision-v1/',0,'revision','',0),(1640,2,'2014-03-20 19:46:32','2014-03-21 01:46:32','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/beautifulcolors-andrewgolub.jpg\"><img class=\"alignright size-full wp-image-1642\" alt=\"beautifulcolors-andrewgolub\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/beautifulcolors-andrewgolub.jpg\" width=\"329\" height=\"238\" /></a>Author Andrew Golub is not your typical Duran Duran fan. Over the course of three decades, the Pacific northwest native has amassed a rather impressive arsenal of band memorabilia. It’s a collection that includes everything from rare articles and artifacts to carefully restored posters and prints that document every chapter of Duran Duran history. Selections from Golub’s archive have already been showcased in the Rock & Roll Hall of Fame and Museum as well in an A&E Biography, two film documentaries and several public exhibitions.\r\n\r\nGolub’s 260-page book, <em>“Beautiful Colors: The Posters of Duran Duran”</em> presents an interesting perspective of the band’s career as well as his own fandom. Through the use of full-color posters from 1978 to the present, <em>Beautiful Colors</em> documents the band’s evolution through vintage artwork and stunning photography by Christine Born.\r\n\r\nThe book has received overwhelming praise from members of the fan community as well as from Duran Duran themselves, with keyboardist Nick Rhodes contributing a touching forward. <em>Beautiful Colors</em> is a book for any fan of Duran Duran or those with a penchant for 80′s nostalgia. Moreover, the book is a true testament to the power of music.\r\n\r\nI spoke with Golub about the book and his fascination of all things Duran Duran.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/golub31.jpg\"><img class=\"alignleft size-full wp-image-1643\" alt=\"golub31\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/golub31.jpg\" width=\"305\" height=\"440\" /></a>James Wood: What was your primary motivation behind the <em>Beautiful Colors</em> book?</strong>\r\n\r\nAndrew Golub: A book was always a possibility given the breadth of my collection and I’ve received many gentle urgings to produce something like this from friends and fans over the years. From exhibitions to my website, I strived to make my collection more accessible to the global fan community as well as the band. Due to their sheer size, posters tend to be the most dramatic category in the archive and the type of memorabilia I feel most proud of. So the concept behind <em>Beautiful Colors</em> felt like a natural decision.\r\n\r\n<strong>How did you determine which pieces to include?</strong>\r\n\r\nSince the collection is bursting with treasures, selecting posters for inclusion was a challenge. But once I decided to focus only on official promotional posters (from record companies, concert venues, etc), the choices became clear. Posters are designed to capture attention and ignite the imagination. They represent memories and milestones, for the band as well as the fans. I feel as if I’m working to preserve history through a medium that would otherwise be lost in time. My book may commemorate Duran Duran’s history, but the memories on each page belong to fans around the world.\r\n\r\n<strong>When did your love of Duran Duran begin?</strong>\r\n\r\nThe first strains of \"Fab Five Fever\" nestled into my DNA when I was 13 – the later part of 1984. The combination of charismatic photo sessions, captivating videos, and spectacular, memorable music was all it took to activate my inner Duranimal. My days were soon filled with trips to supermarket magazine racks, brainstorming on how to fund purchases of DD material and of course, taking good care of the items in my growing collection. Hard to believe there was a point when my whole collection fit inside my bedroom. A fortunate thing since my mother refused to build an annex on to the house for memorabilia maintenance.\r\n\r\n<strong>What was it about their music that really interested you?</strong>\r\n\r\nNick’s soaring keyboard arrangements against Roger’s rock-solid beat, John’s velvety funk-infused bass, Andy’s electrifying guitar licks, and Simon’s lush, wonderfully cryptic lyrics. Every song offered something fresh and exciting with each new listen. <em>Seven and The Ragged Tiger</em> was my first album, launching a full, swift occupation of my senses. The synthesized rapture of “The Reflex” captured my imagination first, followed by the harmonized bliss of “New Moon on Monday,” and the rest of the record overwhelmed with awesome. I found Duran Duran’s music stayed with me long after I stopped listening, and I felt myself yearning for more—discovering other albums, learning about the members, and essentially assembling a portrait of the artists behind my favorite tunes. The music was my gateway drug.\r\n\r\n[caption id=\"attachment_1644\" align=\"alignright\" width=\"324\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/golub2.jpg\"><img class=\"size-full wp-image-1644\" alt=\"golub2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/golub2.jpg\" width=\"324\" height=\"432\" /></a> Golub hard at work, peeling off layers of excess paper from the back of a rare poster.[/caption]\r\n\r\n<strong>What made you decide to start collecting pieces of Duran Duran memorabilia?</strong>\r\n<div>\r\n<div id=\":o7\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n\r\nBeing attracted to Duran Duran’s strong visual style, acquiring memorabilia seemed like a natural direction. Photos offered glossy, handsome images and magazine articles were often accompanied by fan-friendly, full-page pin-ups. But posters took Duran Duran’s exciting, photogenic persona to an even higher plane. While I’ve enjoyed filling out the archive with many odd and fascinating artifacts, the posters have always been the heart of my collection and the clearest visual representation of Duran Duran’s professional history.\r\n\r\n<strong>How do you acquire pieces for your collection?</strong>\r\n\r\nMuch of my effort revolves around careful networking, reaching out to those within the concert promotion industry and building credibility with my archive. The biggest challenge comes with every new tour, when the whole world becomes a potential harbor for poster production. That is also when I become most aware and appreciative of all the wonderful friends and fellow fans keeping me in mind across the globe!\r\n\r\n<strong>Do you have a particular favorite?</strong>\r\n\r\nWithout picking a single, most prized item, I would highlight the posters I’ve been able to find from the band’s earliest chapters. Whether testing new material in Birmingham clubs, cutting their teeth as a support act or exploring their New Romantic roots, Duran Duran’s formative years remain the most elusive to document through posters. I have moments of quiet incredulity and deep pride when I look at the first chapter of my book, populated with more posters than I ever expected to include.\r\n\r\n<strong>Have you ever gotten to meet the band?\r\n</strong>\r\n<div>\r\n\r\nI have met the band on several occasions and each encounter has been intensely meaningful and ingrained as a life highlight. Every time I am fortunate enough to meet Duran Duran I am reminded of why I do what I do, why the band deserve nothing less than absolute lifelong celebration and I walk away with renewed commitment to my archival work.\r\n<div id=\":o7\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n\r\n<strong>What’s your favorite Duran Duran song? Album?</strong>\r\n\r\nI was introduced to Duran’s sound through the Ragged Tiger album, particularly “The Reflex”. That record and single will always occupy a premium spot for me. However, <em>Rio </em>is bursting with some of my biggest faves. Especially “Lonely In Your Nightmare,” “Save A Prayer,” and “Hold Back The Rain.” Timeless classics which never fail to elevate my heart rate, tap my emotions, and transport me to a very happy place. In the band’s recent years, <em>All You Need Is Now</em> is nothing short of crazy-awesome, having re-captured the same visceral, joyous feel that got me hooked in the first place! “Runway Runaway,” “Blame The Machines,” and the title track are pure brilliance that I enjoy down to the molecular level.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div>\r\n\r\n<strong>What has the band had to say about your book?</strong>\r\n\r\n<strong></strong>The band has been incredibly supportive through Twitter and Facebook, and after a recent trip to present the book to Duran’s management in New York I learned the band assessed <em>Beautiful Colors</em> as “magnificent.” It was important to create something that both the band and the fans could be proud of. In addition to charting the band’s history, I set out to honor the bond between the band and their faithful following as well as my own connections within the global fan community. This passion is a powerful common thread we all share, and I feel blessed to be part of something so special, enduring and so much bigger than myself.\r\n\r\nFor more information on Andrew Golub and\r\nBeautiful Colors: The Posters of Duran Duran <a href=\"http://www.durandy.com/book/\" target=\"_blank\">Click Here!</a>\r\n\r\nTo See Golub’s portion of an American Collector’s documentary\r\n(38 minutes in): <a href=\"http://video.kcts9.org/video/1708621019/\" target=\"_blank\">Click Here</a>\r\n\r\nInterview by Jim Wood.\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Beautiful Colors: Author Andrew Golub Discusses Unique Duran Duran Book','','publish','open','open','','beautiful-colors-author-andrew-golub-discusses-unique-duran-duran-book','','','2014-03-20 19:46:32','2014-03-21 01:46:32','',0,'http://www.earthhertzrecords.com/?p=1640',0,'post','',0),(1622,2,'2014-03-12 05:29:58','2014-03-12 11:29:58','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/anotherlongnightout.jpg\"><img class=\"alignright size-full wp-image-1624\" alt=\"anotherlongnightout\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/anotherlongnightout.jpg\" width=\"300\" height=\"300\" /></a>It’s hard to believe that’s its been twenty years since multi-instrumentalist hitmaker <a href=\"http://www.brianculbertson.com/\">Brian Culbertson</a> released his debut album, <em>Long Night Out,</em> an album he created on a shoe-string budget while a student at DePaul University.\r\n\r\nIn the years since, Culbertson has become one of the most recognized artists in jazz, but always kept thinking about those early days recording in his Chicago apartment. Patiently waiting for the right time to explore the material again.\r\n\r\nOn Another <em>Long Night Out,</em> Culbertson returns to his roots by revisiting the album that jump started his career. For this fresh update, Culbertson re-imagines his debut by enlisting the help from some of the greatest artists in contemporary jazz. Retaining the essence of each song while bringing the production quality to 21st century standards.\r\n\r\nOn its own, <em>Another Long Night Out</em> stands out as a time capsule of sonic goodness. Proving that a project twenty years in the making was certainly worth the wait.\r\n\r\nI had the pleasure of speaking with Culbertson about <em>Another Long Night Out</em> and what he believes makes jazz so special.\r\n\r\n<strong>James Wood: Looking back at that first album twenty years later, what thoughts come to mind?</strong>\r\n\r\nBrian Culbertson: It’s hard to believe that its been twenty years. It seems like the older you get the faster it goes. But as the years go by, you start to find out who you are and I finally feel like I’ve hit a good stride with what life is all about for me. I’m in a good place balancing life with music.\r\n\r\n<strong>What made you decide to revisit <em>Long Night Out</em>?</strong>\r\n\r\nOn the first album I was really limited with equipment, funds and the people I knew. Although I always liked how the songs stood on their own, I always wished the sonic palette and sound of the album could be what it is now. My goal was to redo the production of the album and bring it to life.\r\n\r\n<strong>You have a lot of guest guitarists on the new album including Lee Rittenour, Chuck Loeb and Steve Lukather. Was there a reason you chose them?\r\n</strong>\r\n\r\nWhen you get into that top echelon of guitar god, everyone does what they do best. I knew in essence what each one would bring to the song and that’s why I called them about those particular pieces. In the case of Lukather [Beautiful Liar], I knew he would just destroy it [laughs]! He came over and we literally played the song three or four times and every time it just kept getting better and better!\r\n\r\n<strong>Saxophonist Candy Dulfer also appears on the album. What’s it like working with her?\r\n</strong>\r\n\r\nShe has such an amazing attitude and was so excited to be a part of the project. She really wants to get things perfect and I love her for that because I’m the same way. Those sessions were a lot of work, but a lot of fun.\r\n\r\n<strong>Were there any special moments that stood out during the recording process?</strong>\r\n\r\nI had Will Kennedy from the Yellow Jackets come in and play drums on one of the first sessions that we did. Will was a huge influence on my drum programming on the first album. To have him playing the grooves I was trying to emulate twenty years ago was a trip.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/culbertson.jpg\"><img class=\"alignleft size-full wp-image-1625\" alt=\"culbertson\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/culbertson.jpg\" width=\"604\" height=\"401\" /></a>\r\n\r\n<strong>What’s the origin of the original <em>Long Night Out</em> album?</strong>\r\n\r\nI started songwriting in junior high school and was one of the first generation of kids to grow up with the early four-track recorders and the beginnings of the Macintosh. I always knew that I wanted to get into music production and songwriting but never set out to be an artist per se. But once I moved to Chicago and started listening to the jazz station there I started thinking that it might be something I could do. So I put together a three song demo and sent it to the one person I knew who lived in LA. My friend played it for the president of his record label and a few weeks later called me up and offered me a record contract. It was crazy!\r\n\r\n<strong>What happened from there?\r\n</strong>\r\n\r\nThe label wanted to put the album out in February, and by that time it was already August. They wanted it completed by November, so the next three months were pretty intense. I remember that right before I came to LA for the mastering we were still pulling all nighters mixing it. It was crazy. That’s why I decided to call it<em> Long Night Out.</em>\r\n\r\n<strong>Do you have plans for another new album?</strong>\r\n\r\nIn terms of writing, the plan is to start working on some new material this summer. And I will let this out of the bag slightly. I’m going to be working in Minneapolis. It’s going to be funky.\r\n\r\n<strong>What’s your songwriting process like?</strong>\r\n\r\nI write in a few different ways. Sometimes I’ll just sit down at the piano or keyboard and start improvising. I’ll record the melodies and then go back and listen to see if anything really stands out. “City Lights” was one of those songs where I just literally sat down and started playing that melody. Other times though, I’ll get a groove going with a drum beat and then start layering parts on top of the beat. On those songs, the last thing I do is write the melody. I love fitting the melody into the track and making it groove as much as the beat and the bass.\r\n\r\n<strong>How do you come up with a song title?</strong>\r\n\r\nIt’s actually pretty difficult to name instrumental music. Usually, it’s based on how the song makes you feel. On that first record, I remember half of the songs were still untitled when we were mastering it. I even had the art department calling and telling me to hurry because they had to go to print. So I started brainstorming with a few friends about what to name them. In the case of “Beautiful Liar,” that was a song I had already written my senior year of high school. I was taking private composition lessons and had to write a pop song based on lyrics my instructor had given me called ‘Beautiful Liar’. I originally wrote it as a vocal tune based on those lyrics. When the time came to record the album, I just played it on the piano and kept the title. So there are words to the song that no one has ever heard.\r\n\r\n<strong>What makes jazz so great?</strong>\r\n\r\nThe fact that there are no rules and you can do whatever you want. There’s so much freedom that it allows you to keep moving forward to morph and change. The live aspect of it is great too. Typical pop shows are so structured that they’re exactly the same every night. With jazz, it can be completely different from night to night. That’s what I love about it.\r\n\r\nInterview by Jim Wood\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Another Long Night Out: Brian Culbertson Goes Back To His Roots For New Album','','publish','open','open','','another-long-night-out-brian-culbertson-goes-back-to-his-roots-for-new-album','','','2014-03-12 05:29:58','2014-03-12 11:29:58','',0,'http://www.earthhertzrecords.com/?p=1622',0,'post','',0),(1623,2,'2014-03-11 17:44:58','2014-03-11 23:44:58','It’s hard to believe that’s its been twenty years since multi-instrumentalist hitmaker Brian Culbertson released his debut album, <em>Long Night Out,</em> an album he created on a shoe-string budget while a student at DePaul University.\r\n\r\nIn the years since, Culbertson has become one of the most recognized artists in jazz, but always kept thinking about those early days recording in his Chicago apartment. Patiently waiting for the right time to explore the material again.\r\n\r\nOn Another <em>Long Night Out,</em> Culbertson returns to his roots by revisiting the album that jump started his career. For this fresh update, Culbertson re-imagines his debut by enlisting the help from some of the greatest artists in contemporary jazz. Retaining the essence of each song while bringing the production quality to 21st century standards.\r\n\r\nOn its own, <em>Another Long Night Out</em> stands out as a time capsule of sonic goodness. Proving that a project twenty years in the making was certainly worth the wait.\r\n\r\nI had the pleasure of speaking with Culbertson about <em>Another Long Night Out</em> and what he believes makes jazz so special.\r\n\r\n<strong>James Wood: Looking back at that first album twenty years later, what thoughts come to mind?</strong>\r\n\r\nBrian Culbertson: It’s hard to believe that its been twenty years. It seems like the older you get the faster it goes. But as the years go by, you start to find out who you are and I finally feel like I’ve hit a good stride with what life is all about for me. I’m in a good place balancing life with music.\r\n\r\n<strong>What made you decide to revisit <em>Long Night Out</em>?</strong>\r\n\r\nOn the first album I was really limited with equipment, funds and the people I knew. Although I always liked how the songs stood on their own, I always wished the sonic palette and sound of the album could be what it is now. My goal was to redo the production of the album and bring it to life.\r\n\r\n<strong>You have a lot of guest guitarists on the new album including Lee Rittenour, Chuck Loeb and Steve Lukather. Was there a reason you chose them?\r\n</strong>\r\n\r\nWhen you get into that top echelon of guitar god, everyone does what they do best. I knew in essence what each one would bring to the song and that’s why I called them about those particular pieces. In the case of Lukather [Beautiful Liar], I knew he would just destroy it [laughs]! He came over and we literally played the song three or four times and every time it just kept getting better and better!\r\n\r\n<strong>Saxophonist Candy Dulfer also appears on the album. What’s it like working with her?\r\n</strong>\r\n\r\nShe has such an amazing attitude and was so excited to be a part of the project. She really wants to get things perfect and I love her for that because I’m the same way. Those sessions were a lot of work, but a lot of fun.\r\n\r\n<strong>Were there any special moments that stood out during the recording process?</strong>\r\n\r\nI had Will Kennedy from the Yellow Jackets come in and play drums on one of the first sessions that we did. Will was a huge influence on my drum programming on the first album. To have him playing the grooves I was trying to emulate twenty years ago was a trip.\r\n\r\n<strong>What’s the origin of the original <em>Long Night Out</em> album?</strong>\r\n\r\nI started songwriting in junior high school and was one of the first generation of kids to grow up with the early four-track recorders and the beginnings of the Macintosh. I always knew that I wanted to get into music production and songwriting but never set out to be an artist per se. But once I moved to Chicago and started listening to the jazz station there I started thinking that it might be something I could do. So I put together a three song demo and sent it to the one person I knew who lived in LA. My friend played it for the president of his record label and a few weeks later called me up and offered me a record contract. It was crazy!\r\n\r\n<strong>What happened from there?\r\n</strong>\r\n\r\nThe label wanted to put the album out in February, and by that time it was already August. They wanted it completed by November, so the next three months were pretty intense. I remember that right before I came to LA for the mastering we were still pulling all nighters mixing it. It was crazy. That’s why I decided to call it<em> Long Night Out.</em>\r\n\r\n<strong>Do you have plans for another new album?</strong>\r\n\r\nIn terms of writing, the plan is to start working on some new material this summer. And I will let this out of the bag slightly. I’m going to be working in Minneapolis. It’s going to be funky.\r\n\r\n<strong>What’s your songwriting process like?</strong>\r\n\r\nI write in a few different ways. Sometimes I’ll just sit down at the piano or keyboard and start improvising. I’ll record the melodies and then go back and listen to see if anything really stands out. “City Lights” was one of those songs where I just literally sat down and started playing that melody. Other times though, I’ll get a groove going with a drum beat and then start layering parts on top of the beat. On those songs, the last thing I do is write the melody. I love fitting the melody into the track and making it groove as much as the beat and the bass.\r\n\r\n<strong>How do you come up with a song title?</strong>\r\n\r\nIt’s actually pretty difficult to name instrumental music. Usually, it’s based on how the song makes you feel. On that first record, I remember half of the songs were still untitled when we were mastering it. I even had the art department calling and telling me to hurry because they had to go to print. So I started brainstorming with a few friends about what to name them. In the case of “Beautiful Liar,” that was a song I had already written my senior year of high school. I was taking private composition lessons and had to write a pop song based on lyrics my instructor had given me called ‘Beautiful Liar’. I originally wrote it as a vocal tune based on those lyrics. When the time came to record the album, I just played it on the piano and kept the title. So there are words to the song that no one has ever heard.\r\n\r\n<strong>What makes jazz so great?</strong>\r\n\r\nThe fact that there are no rules and you can do whatever you want. There’s so much freedom that it allows you to keep moving forward to morph and change. The live aspect of it is great too. Typical pop shows are so structured that they’re exactly the same every night. With jazz, it can be completely different from night to night. That’s what I love about it.\r\n\r\nInterview by Jim Wood\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Another Long Night Out: Brian Culbertson Goes Back To His Roots For New Album','','inherit','open','open','','1622-revision-v1','','','2014-03-11 17:44:58','2014-03-11 23:44:58','',1622,'http://www.earthhertzrecords.com/2014/03/1622-revision-v1/',0,'revision','',0),(1624,2,'2014-03-11 17:53:55','2014-03-11 23:53:55','','anotherlongnightout','','inherit','open','open','','anotherlongnightout','','','2014-03-11 17:53:55','2014-03-11 23:53:55','',1622,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/anotherlongnightout.jpg',0,'attachment','image/jpeg',0),(1625,2,'2014-03-11 17:55:17','2014-03-11 23:55:17','','culbertson','','inherit','open','open','','culbertson','','','2014-03-11 17:55:17','2014-03-11 23:55:17','',1622,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/culbertson.jpg',0,'attachment','image/jpeg',0),(1626,2,'2014-03-11 17:56:00','2014-03-11 23:56:00','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/anotherlongnightout.jpg\"><img class=\"alignright size-full wp-image-1624\" alt=\"anotherlongnightout\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/anotherlongnightout.jpg\" width=\"300\" height=\"300\" /></a>It’s hard to believe that’s its been twenty years since multi-instrumentalist hitmaker Brian Culbertson released his debut album, <em>Long Night Out,</em> an album he created on a shoe-string budget while a student at DePaul University.\r\n\r\nIn the years since, Culbertson has become one of the most recognized artists in jazz, but always kept thinking about those early days recording in his Chicago apartment. Patiently waiting for the right time to explore the material again.\r\n\r\nOn Another <em>Long Night Out,</em> Culbertson returns to his roots by revisiting the album that jump started his career. For this fresh update, Culbertson re-imagines his debut by enlisting the help from some of the greatest artists in contemporary jazz. Retaining the essence of each song while bringing the production quality to 21st century standards.\r\n\r\nOn its own, <em>Another Long Night Out</em> stands out as a time capsule of sonic goodness. Proving that a project twenty years in the making was certainly worth the wait.\r\n\r\nI had the pleasure of speaking with Culbertson about <em>Another Long Night Out</em> and what he believes makes jazz so special.\r\n\r\n<strong>James Wood: Looking back at that first album twenty years later, what thoughts come to mind?</strong>\r\n\r\nBrian Culbertson: It’s hard to believe that its been twenty years. It seems like the older you get the faster it goes. But as the years go by, you start to find out who you are and I finally feel like I’ve hit a good stride with what life is all about for me. I’m in a good place balancing life with music.\r\n\r\n<strong>What made you decide to revisit <em>Long Night Out</em>?</strong>\r\n\r\nOn the first album I was really limited with equipment, funds and the people I knew. Although I always liked how the songs stood on their own, I always wished the sonic palette and sound of the album could be what it is now. My goal was to redo the production of the album and bring it to life.\r\n\r\n<strong>You have a lot of guest guitarists on the new album including Lee Rittenour, Chuck Loeb and Steve Lukather. Was there a reason you chose them?\r\n</strong>\r\n\r\nWhen you get into that top echelon of guitar god, everyone does what they do best. I knew in essence what each one would bring to the song and that’s why I called them about those particular pieces. In the case of Lukather [Beautiful Liar], I knew he would just destroy it [laughs]! He came over and we literally played the song three or four times and every time it just kept getting better and better!\r\n\r\n<strong>Saxophonist Candy Dulfer also appears on the album. What’s it like working with her?\r\n</strong>\r\n\r\nShe has such an amazing attitude and was so excited to be a part of the project. She really wants to get things perfect and I love her for that because I’m the same way. Those sessions were a lot of work, but a lot of fun.\r\n\r\n<strong>Were there any special moments that stood out during the recording process?</strong>\r\n\r\nI had Will Kennedy from the Yellow Jackets come in and play drums on one of the first sessions that we did. Will was a huge influence on my drum programming on the first album. To have him playing the grooves I was trying to emulate twenty years ago was a trip.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/culbertson.jpg\"><img class=\"alignleft size-full wp-image-1625\" alt=\"culbertson\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/culbertson.jpg\" width=\"604\" height=\"401\" /></a>\r\n\r\n<strong>What’s the origin of the original <em>Long Night Out</em> album?</strong>\r\n\r\nI started songwriting in junior high school and was one of the first generation of kids to grow up with the early four-track recorders and the beginnings of the Macintosh. I always knew that I wanted to get into music production and songwriting but never set out to be an artist per se. But once I moved to Chicago and started listening to the jazz station there I started thinking that it might be something I could do. So I put together a three song demo and sent it to the one person I knew who lived in LA. My friend played it for the president of his record label and a few weeks later called me up and offered me a record contract. It was crazy!\r\n\r\n<strong>What happened from there?\r\n</strong>\r\n\r\nThe label wanted to put the album out in February, and by that time it was already August. They wanted it completed by November, so the next three months were pretty intense. I remember that right before I came to LA for the mastering we were still pulling all nighters mixing it. It was crazy. That’s why I decided to call it<em> Long Night Out.</em>\r\n\r\n<strong>Do you have plans for another new album?</strong>\r\n\r\nIn terms of writing, the plan is to start working on some new material this summer. And I will let this out of the bag slightly. I’m going to be working in Minneapolis. It’s going to be funky.\r\n\r\n<strong>What’s your songwriting process like?</strong>\r\n\r\nI write in a few different ways. Sometimes I’ll just sit down at the piano or keyboard and start improvising. I’ll record the melodies and then go back and listen to see if anything really stands out. “City Lights” was one of those songs where I just literally sat down and started playing that melody. Other times though, I’ll get a groove going with a drum beat and then start layering parts on top of the beat. On those songs, the last thing I do is write the melody. I love fitting the melody into the track and making it groove as much as the beat and the bass.\r\n\r\n<strong>How do you come up with a song title?</strong>\r\n\r\nIt’s actually pretty difficult to name instrumental music. Usually, it’s based on how the song makes you feel. On that first record, I remember half of the songs were still untitled when we were mastering it. I even had the art department calling and telling me to hurry because they had to go to print. So I started brainstorming with a few friends about what to name them. In the case of “Beautiful Liar,” that was a song I had already written my senior year of high school. I was taking private composition lessons and had to write a pop song based on lyrics my instructor had given me called ‘Beautiful Liar’. I originally wrote it as a vocal tune based on those lyrics. When the time came to record the album, I just played it on the piano and kept the title. So there are words to the song that no one has ever heard.\r\n\r\n<strong>What makes jazz so great?</strong>\r\n\r\nThe fact that there are no rules and you can do whatever you want. There’s so much freedom that it allows you to keep moving forward to morph and change. The live aspect of it is great too. Typical pop shows are so structured that they’re exactly the same every night. With jazz, it can be completely different from night to night. That’s what I love about it.\r\n\r\nInterview by Jim Wood\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Another Long Night Out: Brian Culbertson Goes Back To His Roots For New Album','','inherit','open','open','','1622-revision-v1','','','2014-03-11 17:56:00','2014-03-11 23:56:00','',1622,'http://www.earthhertzrecords.com/2014/03/1622-revision-v1/',0,'revision','',0),(1627,2,'2014-03-11 17:57:45','2014-03-11 23:57:45','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/anotherlongnightout.jpg\"><img class=\"alignright size-full wp-image-1624\" alt=\"anotherlongnightout\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/anotherlongnightout.jpg\" width=\"300\" height=\"300\" /></a>It’s hard to believe that’s its been twenty years since multi-instrumentalist hitmaker <a href=\"http://www.brianculbertson.com/\">Brian Culbertson</a> released his debut album, <em>Long Night Out,</em> an album he created on a shoe-string budget while a student at DePaul University.\r\n\r\nIn the years since, Culbertson has become one of the most recognized artists in jazz, but always kept thinking about those early days recording in his Chicago apartment. Patiently waiting for the right time to explore the material again.\r\n\r\nOn Another <em>Long Night Out,</em> Culbertson returns to his roots by revisiting the album that jump started his career. For this fresh update, Culbertson re-imagines his debut by enlisting the help from some of the greatest artists in contemporary jazz. Retaining the essence of each song while bringing the production quality to 21st century standards.\r\n\r\nOn its own, <em>Another Long Night Out</em> stands out as a time capsule of sonic goodness. Proving that a project twenty years in the making was certainly worth the wait.\r\n\r\nI had the pleasure of speaking with Culbertson about <em>Another Long Night Out</em> and what he believes makes jazz so special.\r\n\r\n<strong>James Wood: Looking back at that first album twenty years later, what thoughts come to mind?</strong>\r\n\r\nBrian Culbertson: It’s hard to believe that its been twenty years. It seems like the older you get the faster it goes. But as the years go by, you start to find out who you are and I finally feel like I’ve hit a good stride with what life is all about for me. I’m in a good place balancing life with music.\r\n\r\n<strong>What made you decide to revisit <em>Long Night Out</em>?</strong>\r\n\r\nOn the first album I was really limited with equipment, funds and the people I knew. Although I always liked how the songs stood on their own, I always wished the sonic palette and sound of the album could be what it is now. My goal was to redo the production of the album and bring it to life.\r\n\r\n<strong>You have a lot of guest guitarists on the new album including Lee Rittenour, Chuck Loeb and Steve Lukather. Was there a reason you chose them?\r\n</strong>\r\n\r\nWhen you get into that top echelon of guitar god, everyone does what they do best. I knew in essence what each one would bring to the song and that’s why I called them about those particular pieces. In the case of Lukather [Beautiful Liar], I knew he would just destroy it [laughs]! He came over and we literally played the song three or four times and every time it just kept getting better and better!\r\n\r\n<strong>Saxophonist Candy Dulfer also appears on the album. What’s it like working with her?\r\n</strong>\r\n\r\nShe has such an amazing attitude and was so excited to be a part of the project. She really wants to get things perfect and I love her for that because I’m the same way. Those sessions were a lot of work, but a lot of fun.\r\n\r\n<strong>Were there any special moments that stood out during the recording process?</strong>\r\n\r\nI had Will Kennedy from the Yellow Jackets come in and play drums on one of the first sessions that we did. Will was a huge influence on my drum programming on the first album. To have him playing the grooves I was trying to emulate twenty years ago was a trip.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/culbertson.jpg\"><img class=\"alignleft size-full wp-image-1625\" alt=\"culbertson\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/culbertson.jpg\" width=\"604\" height=\"401\" /></a>\r\n\r\n<strong>What’s the origin of the original <em>Long Night Out</em> album?</strong>\r\n\r\nI started songwriting in junior high school and was one of the first generation of kids to grow up with the early four-track recorders and the beginnings of the Macintosh. I always knew that I wanted to get into music production and songwriting but never set out to be an artist per se. But once I moved to Chicago and started listening to the jazz station there I started thinking that it might be something I could do. So I put together a three song demo and sent it to the one person I knew who lived in LA. My friend played it for the president of his record label and a few weeks later called me up and offered me a record contract. It was crazy!\r\n\r\n<strong>What happened from there?\r\n</strong>\r\n\r\nThe label wanted to put the album out in February, and by that time it was already August. They wanted it completed by November, so the next three months were pretty intense. I remember that right before I came to LA for the mastering we were still pulling all nighters mixing it. It was crazy. That’s why I decided to call it<em> Long Night Out.</em>\r\n\r\n<strong>Do you have plans for another new album?</strong>\r\n\r\nIn terms of writing, the plan is to start working on some new material this summer. And I will let this out of the bag slightly. I’m going to be working in Minneapolis. It’s going to be funky.\r\n\r\n<strong>What’s your songwriting process like?</strong>\r\n\r\nI write in a few different ways. Sometimes I’ll just sit down at the piano or keyboard and start improvising. I’ll record the melodies and then go back and listen to see if anything really stands out. “City Lights” was one of those songs where I just literally sat down and started playing that melody. Other times though, I’ll get a groove going with a drum beat and then start layering parts on top of the beat. On those songs, the last thing I do is write the melody. I love fitting the melody into the track and making it groove as much as the beat and the bass.\r\n\r\n<strong>How do you come up with a song title?</strong>\r\n\r\nIt’s actually pretty difficult to name instrumental music. Usually, it’s based on how the song makes you feel. On that first record, I remember half of the songs were still untitled when we were mastering it. I even had the art department calling and telling me to hurry because they had to go to print. So I started brainstorming with a few friends about what to name them. In the case of “Beautiful Liar,” that was a song I had already written my senior year of high school. I was taking private composition lessons and had to write a pop song based on lyrics my instructor had given me called ‘Beautiful Liar’. I originally wrote it as a vocal tune based on those lyrics. When the time came to record the album, I just played it on the piano and kept the title. So there are words to the song that no one has ever heard.\r\n\r\n<strong>What makes jazz so great?</strong>\r\n\r\nThe fact that there are no rules and you can do whatever you want. There’s so much freedom that it allows you to keep moving forward to morph and change. The live aspect of it is great too. Typical pop shows are so structured that they’re exactly the same every night. With jazz, it can be completely different from night to night. That’s what I love about it.\r\n\r\nInterview by Jim Wood\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Another Long Night Out: Brian Culbertson Goes Back To His Roots For New Album','','inherit','open','open','','1622-revision-v1','','','2014-03-11 17:57:45','2014-03-11 23:57:45','',1622,'http://www.earthhertzrecords.com/2014/03/1622-revision-v1/',0,'revision','',0),(1629,2,'2014-03-17 06:43:03','2014-03-17 12:43:03','<em><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/jerryreed-1.jpg\"><img class=\"alignleft size-full wp-image-1632\" alt=\"jerryreed-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/jerryreed-1.jpg\" width=\"225\" height=\"225\" /></a></em>In the late 50′s – early 60′s, Jerry Reed was a songwriter, a famous songwriter. So many of the songs he wrote and recorded became #1 hits for other people. Yet when he played them, they didn’t get far.\r\n\r\nThanks to Brenda Lee’s cover of his song, \"All You Gotta Do,\" his name was kept alive while he did a 2-year tenure in the armed forces from \'59-\'61. Nashville was waiting for Jerry Reed to write more hit songs.\r\n\r\n<a href=\"http://www.youtube.com/watch?v=CgImoFl2_N0\" target=\"_blank\">All You Gotta Do – Brenda Lee written by Jerry Reed</a>\r\n\r\nJerry was known among the music community as a genius whose un-taught hands almost played on their own. His style was completely unique and full of emotion. Butch Baker, a close friend of his said “He had this style called ‘the claw,’ ” and noting that Mr. Reed, who had no formal musical training, also made a record by that name. “I’m not sure if anybody knew what he was doing — I don’t even think he knew what he was doing — he would just do these emotional things that came out through his hands. He was a true innovator.’”\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/elvis-guitarman.jpg\"><img class=\"alignleft size-full wp-image-1633\" alt=\"elvis-guitarman\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/elvis-guitarman.jpg\" width=\"229\" height=\"220\" /></a>When Elvis Presley wanted to cover Jerry’s song \"Guitar Man,\" he tracked Jerry down in the middle of a 3 day fishing trip. Unshaven, Jerry walked into Graceland and said, “I was a wreck, but Elvis was about the prettiest thing I ever did see.”\r\n\r\nElvis Presley was so impressed with Jerry’s guitar playing that he had him play the guitar on that album <em>and</em> his next.\r\n\r\n<a href=\"http://www.youtube.com/watch?v=G3gkBMuyq8U\" target=\"_blank\">Guitar Man – Elvis Presley written by Jerry Reed</a>\r\n\r\nJerry Reed wrote more songs recorded by Elvis Presley than any other songwriter.\r\n\r\nThe thing about Jerry Reed was, he was a stand-up guy. All he wanted was to play music. And apparently to keep moving. Described by Burt Reynolds as “So hyper he can thread a sewing machine while standing still.” It’s no surprise that an NBC crewman said “Where Reed is, there’s electricity! He’s like a 300-watt bulb in a room full of 60-watt lamps. You can feel it. He buzzes!”\r\n\r\nEven Jerry knew he was a taut wire ready to go, “I talk about taking a rest, but I thrive on it. I stop a week and I’m going crazy. I see a bus of musicians going down the road and wonder why I’m not with them.”\r\n\r\nGuess that’s how he got so much done. I guess that’s why he wrote over 400 songs, and recorded over 48 albums. Well, 48 that were his. There were countless others made by artists who demanded Jerry Reed as their lead guitar, not the least of which were Elvis Presley, Johnny Cash, Waylon Jennings, Glen Campbell and Chet Atkins.\r\n\r\nJerry Reed was known to me as “Snowman” before I knew he sang those songs I love. Heck I didn’t even know his name. He was just, “Snowman.”\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/jerryreed-whenyorehot.jpg\"><img class=\"alignleft size-full wp-image-1635\" alt=\"jerryreed-whenyorehot\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/jerryreed-whenyorehot.jpg\" width=\"224\" height=\"224\" /></a>I didn’t know that he wrote <a href=\"http://www.youtube.com/watch?v=q9EJ0qXNJGg\" target=\"_blank\">\"When You’re Hot, You’re Hot,\"</a> I basically just knew <a href=\"http://www.youtube.com/watch?v=uHZJej98_T0\" target=\"_blank\">\"East Bound and Down,\"</a> the theme song from <em>Smokey and the Bandit</em>.\r\n\r\nAs I got older I realized I knew a lot of his songs; I just didn’t know they were his.\r\n\r\nChet Atkins once told Jerry Reed he needed to stop writing for other people, and start writing those funny songs he loved so much. I think we can all be thankful that Chet pushed him, because Jerry’s catalog of song’s with silly lyrics can keep me in happy music for weeks.\r\n\r\nWhen Jerry Reed and Chet Atkins got together, now that was a whole different story. That is when Jerry Reed’s talent really shined. Man did he shine. And <em>he wrote all the music</em>. His Genius. The guy who wrote \"She Got The Goldmine (I Got The Shaft),\" among folks who know true country, will go down as one of the greatest guitar players of all time. Forget the songwriting, forget the silly lyrics. He was a virtuoso, he taught himself to play on a $7 used guitar when he was 8-years-old. If ever a man was given a gift, it was Jerry Reed. I believe he was one of the most under-appreciated musicians of our recent past. I would like to change that in my own little way. So if you can listen to these songs without feeling all smiley inside, you drop me a line. If not, spread the word.\r\n\r\nPost by Jen Kehl.\r\n<p dir=\"ltr\"><em><strong>Jen Kehl is a 40-something chick, who has finally come to terms with the fact that she is still a deadhead music freak trapped inside the body of someone’s mother. She often finds herself stuck in the 70′s with the all of the rainbows and unicorns. She blogs at <a href=\"http://jenkehl.com/\">My Skewed View</a> and created the music site <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a>. She is also a published author as part of the anthology <a href=\"http://www.amazon.com/gp/product/B00FKZLGM6/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00FKZLGM6&linkCode=as2&tag=raisedontheradio-20\">The Mother of All Meltdowns</a> available on Amazon.</strong></em></p>\r\n<em><strong>Connect with her on twitter <a href=\"https://twitter.com/jenkehl\">@jenkehl</a>, <a href=\"https://www.facebook.com/myskewedviewbyjenkehl\">Facebook</a>, and <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\">Google+</a>.</strong></em>\r\n\r\nFirst published on <a href=\"http://raisedontheradio.com/2014/03/07/jerry-reed-guitar-genius-musical-comedian/\">RaisedOnTheRadio</a>','Jerry Reed – Guitar Genius – Musical Comedian','','publish','open','open','','jerry-reed-guitar-genius-musical-comedian','','\nhttp://raisedontheradio.com/2014/03/07/jerry-reed-guitar-genius-musical-comedian/','2014-03-18 06:47:04','2014-03-18 12:47:04','',0,'http://www.earthhertzrecords.com/?p=1629',0,'post','',0),(1630,2,'2014-03-16 12:04:17','2014-03-16 18:04:17','<em></em>In the late 50′s – early 60′s, Jerry Reed was a songwriter, a famous songwriter. So many of the songs he wrote and recorded became #1 hits for other people. Yet when he played them, they didn’t get far.\r\n\r\nThanks to Brenda Lee’s cover of his song, All You Gotta Do, his name was kept alive while he did a 2-year tenure in the armed forces from 59-61. Nashville was waiting for Jerry Reed to write more hit songs.\r\n\r\n<a href=\"http://www.youtube.com/watch?v=CgImoFl2_N0\" target=\"_blank\">All You Gotta Do – Brenda Lee written by Jerry Reed</a>\r\n\r\nJerry was known among the music community as a genius, whose un-taught hands almost played on their own. His style was completely unique and full of emotion. Butch Baker, a close friend of his said “He had this style called ‘the claw,’ ” and noting that Mr. Reed, who had no formal musical training, also made a record by that name. “I’m not sure if anybody knew what he was doing — I don’t even think he knew what he was doing — he would just do these emotional things that came out through his hands. He was a true innovator.’”\r\n\r\nWhen Elvis Presley wanted to cover Jerry’s song Guitar Man, he tracked Jerry down in the middle of a 3 day fishing trip. Unshaven, Jerry walked into Graceland and said, “I was a wreck, but Elvis was about the prettiest thing I ever did see.”\r\n\r\nElvis Presley was so impressed with Jerry’s guitar playing that he had him play the guitar on that album <em>and</em> his next.\r\n\r\n<a href=\"http://www.youtube.com/watch?v=G3gkBMuyq8U\" target=\"_blank\">Guitar Man – Elvis Presley written by Jerry Reed</a>\r\n\r\nJerry Reed wrote more songs recorded by Elvis Presley than any other songwriter.\r\n\r\nThe thing about Jerry Reed was, he was a stand-up guy. All he wanted was to play music. And apparently to keep moving. Described by Burt Reynolds as “So hyper he can thread a sewing machine while standing still.”\r\nIt’s no surprise that an NBC crewman said “Where Reed is, there’s electricity! He’s like a 300-watt bulb in a room full of 60-watt lamps. You can feel it. He buzzes!”\r\nEven Jerry knew he was a taut wire ready to go, “I talk about taking a rest, but I thrive on it. I stop a week and I’m going crazy. I see a bus of musicians going down the road and wonder why I’m not with them.”\r\n\r\nGuess that’s how he got so much done. I guess that’s why he wrote over 400 songs, and recorded over 48 albums. Well, 48 that were his, there were countless others made by artists who demanded Jerry Reed as their lead guitar, not the least of which were Elvis Presley, Johnny Cash, Waylon Jennings, Glen Campbell and Chet Atkins.\r\n\r\nJerry Reed was known to me as “Snowman” before I knew he sang those songs I love. Heck I didn’t even know his name. He was just, “Snowman.”\r\n\r\nI didn’t know that he wrote <a href=\"http://www.youtube.com/watch?v=q9EJ0qXNJGg\" target=\"_blank\">When You’re Hot, You’re Hot</a>, I basically just knew <a href=\"http://www.youtube.com/watch?v=uHZJej98_T0\" target=\"_blank\">East Bound and Down</a>, the theme song from Smokey and the Bandit.\r\n\r\nThen as I got older I realized I knew a lot of his songs, I just didn’t know they were his.\r\n\r\nChet Atkins once told Jerry Reed he needed to stop writing for other people, and start writing those funny songs he loved so much. I think we can all be thankful that Chet pushed him, because Jerry’s catalog of song’s with silly lyrics can keep me in happy music for weeks.\r\n\r\nWhen Jerry Reed and Chet Atkins got together, now that was a whole different story. That is when Jerry Reed’s talent really shined. Man did he shine. And <em>he wrote all the music</em>. His Genius. The guy who wrote She Got The Goldmine (I Got The Shaft), among folks who know true country, will go down as one of the greatest guitar players of all time. Forget the songwriting, forget the silly lyrics. He was a virtuoso, het taught himself to play guitar on a $7 used guitar when he was 8-years-old. If ever a man was given a gift, it was Jerry Reed. I believe he was one of the most under-appreciated musicians of our recent past. I would like to change that in my own little way. So if you can listen to these songs without feeling all smiley inside, you drop me a line. If not, spread the word.','Jerry Reed – Guitar Genius – Musical Comedian','','inherit','open','open','','1629-revision-v1','','','2014-03-16 12:04:17','2014-03-16 18:04:17','',1629,'http://www.earthhertzrecords.com/2014/03/1629-revision-v1/',0,'revision','',0),(1631,2,'2014-03-17 06:26:23','2014-03-17 12:26:23','<em></em>In the late 50′s – early 60′s, Jerry Reed was a songwriter, a famous songwriter. So many of the songs he wrote and recorded became #1 hits for other people. Yet when he played them, they didn’t get far.\r\n\r\nThanks to Brenda Lee’s cover of his song, \"All You Gotta Do,\" his name was kept alive while he did a 2-year tenure in the armed forces from \'59-\'61. Nashville was waiting for Jerry Reed to write more hit songs.\r\n\r\n<a href=\"http://www.youtube.com/watch?v=CgImoFl2_N0\" target=\"_blank\">All You Gotta Do – Brenda Lee written by Jerry Reed</a>\r\n\r\nJerry was known among the music community as a genius whose un-taught hands almost played on their own. His style was completely unique and full of emotion. Butch Baker, a close friend of his said “He had this style called ‘the claw,’ ” and noting that Mr. Reed, who had no formal musical training, also made a record by that name. “I’m not sure if anybody knew what he was doing — I don’t even think he knew what he was doing — he would just do these emotional things that came out through his hands. He was a true innovator.’”\r\n\r\nWhen Elvis Presley wanted to cover Jerry’s song \"Guitar Man,\" he tracked Jerry down in the middle of a 3 day fishing trip. Unshaven, Jerry walked into Graceland and said, “I was a wreck, but Elvis was about the prettiest thing I ever did see.”\r\n\r\nElvis Presley was so impressed with Jerry’s guitar playing that he had him play the guitar on that album <em>and</em> his next.\r\n\r\n<a href=\"http://www.youtube.com/watch?v=G3gkBMuyq8U\" target=\"_blank\">Guitar Man – Elvis Presley written by Jerry Reed</a>\r\n\r\nJerry Reed wrote more songs recorded by Elvis Presley than any other songwriter.\r\n\r\nThe thing about Jerry Reed was, he was a stand-up guy. All he wanted was to play music. And apparently to keep moving. Described by Burt Reynolds as “So hyper he can thread a sewing machine while standing still.” It’s no surprise that an NBC crewman said “Where Reed is, there’s electricity! He’s like a 300-watt bulb in a room full of 60-watt lamps. You can feel it. He buzzes!”\r\n\r\nEven Jerry knew he was a taut wire ready to go, “I talk about taking a rest, but I thrive on it. I stop a week and I’m going crazy. I see a bus of musicians going down the road and wonder why I’m not with them.”\r\n\r\nGuess that’s how he got so much done. I guess that’s why he wrote over 400 songs, and recorded over 48 albums. Well, 48 that were his. There were countless others made by artists who demanded Jerry Reed as their lead guitar, not the least of which were Elvis Presley, Johnny Cash, Waylon Jennings, Glen Campbell and Chet Atkins.\r\n\r\nJerry Reed was known to me as “Snowman” before I knew he sang those songs I love. Heck I didn’t even know his name. He was just, “Snowman.”\r\n\r\nI didn’t know that he wrote <a href=\"http://www.youtube.com/watch?v=q9EJ0qXNJGg\" target=\"_blank\">\"When You’re Hot, You’re Hot,\"</a> I basically just knew <a href=\"http://www.youtube.com/watch?v=uHZJej98_T0\" target=\"_blank\">\"East Bound and Down,\"</a> the theme song from <em>Smokey and the Bandit</em>.\r\n\r\nAs I got older I realized I knew a lot of his songs; I just didn’t know they were his.\r\n\r\nChet Atkins once told Jerry Reed he needed to stop writing for other people, and start writing those funny songs he loved so much. I think we can all be thankful that Chet pushed him, because Jerry’s catalog of song’s with silly lyrics can keep me in happy music for weeks.\r\n\r\nWhen Jerry Reed and Chet Atkins got together, now that was a whole different story. That is when Jerry Reed’s talent really shined. Man did he shine. And <em>he wrote all the music</em>. His Genius. The guy who wrote \"She Got The Goldmine (I Got The Shaft),\" among folks who know true country, will go down as one of the greatest guitar players of all time. Forget the songwriting, forget the silly lyrics. He was a virtuoso, he taught himself to play on a $7 used guitar when he was 8-years-old. If ever a man was given a gift, it was Jerry Reed. I believe he was one of the most under-appreciated musicians of our recent past. I would like to change that in my own little way. So if you can listen to these songs without feeling all smiley inside, you drop me a line. If not, spread the word.\r\n\r\nPost by Jen Kehl.\r\n<p dir=\"ltr\"><em><strong>Jen Kehl is a 40-something chick, who has finally come to terms with the fact that she is still a deadhead music freak trapped inside the body of someone’s mother. She often finds herself stuck in the 70′s with the all of the rainbows and unicorns. She blogs at <a href=\"http://jenkehl.com/\">My Skewed View</a> and created the music site <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a>. She is also a published author as part of the anthology <a href=\"http://www.amazon.com/gp/product/B00FKZLGM6/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00FKZLGM6&linkCode=as2&tag=raisedontheradio-20\">The Mother of All Meltdowns</a> available on Amazon.</strong></em></p>\r\n<em><strong>Connect with her on twitter <a href=\"https://twitter.com/jenkehl\">@jenkehl</a>, <a href=\"https://www.facebook.com/myskewedviewbyjenkehl\">Facebook</a>, and <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\">Google+</a>.</strong></em>','Jerry Reed – Guitar Genius – Musical Comedian','','inherit','open','open','','1629-revision-v1','','','2014-03-17 06:26:23','2014-03-17 12:26:23','',1629,'http://www.earthhertzrecords.com/2014/03/1629-revision-v1/',0,'revision','',0),(1632,2,'2014-03-17 06:30:06','2014-03-17 12:30:06','','jerryreed-1','','inherit','open','open','','jerryreed-1','','','2014-03-17 06:30:06','2014-03-17 12:30:06','',1629,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/jerryreed-1.jpg',0,'attachment','image/jpeg',0),(1633,2,'2014-03-17 06:30:30','2014-03-17 12:30:30','','elvis-guitarman','','inherit','open','open','','elvis-guitarman','','','2014-03-17 06:30:30','2014-03-17 12:30:30','',1629,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/elvis-guitarman.jpg',0,'attachment','image/jpeg',0),(1634,2,'2014-03-17 06:32:23','2014-03-17 12:32:23','<em><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/jerryreed-1.jpg\"><img class=\"alignleft size-full wp-image-1632\" alt=\"jerryreed-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/jerryreed-1.jpg\" width=\"225\" height=\"225\" /></a></em>In the late 50′s – early 60′s, Jerry Reed was a songwriter, a famous songwriter. So many of the songs he wrote and recorded became #1 hits for other people. Yet when he played them, they didn’t get far.\r\n\r\nThanks to Brenda Lee’s cover of his song, \"All You Gotta Do,\" his name was kept alive while he did a 2-year tenure in the armed forces from \'59-\'61. Nashville was waiting for Jerry Reed to write more hit songs.\r\n\r\n<a href=\"http://www.youtube.com/watch?v=CgImoFl2_N0\" target=\"_blank\">All You Gotta Do – Brenda Lee written by Jerry Reed</a>\r\n\r\nJerry was known among the music community as a genius whose un-taught hands almost played on their own. His style was completely unique and full of emotion. Butch Baker, a close friend of his said “He had this style called ‘the claw,’ ” and noting that Mr. Reed, who had no formal musical training, also made a record by that name. “I’m not sure if anybody knew what he was doing — I don’t even think he knew what he was doing — he would just do these emotional things that came out through his hands. He was a true innovator.’”\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/elvis-guitarman.jpg\"><img class=\"alignleft size-full wp-image-1633\" alt=\"elvis-guitarman\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/elvis-guitarman.jpg\" width=\"229\" height=\"220\" /></a>When Elvis Presley wanted to cover Jerry’s song \"Guitar Man,\" he tracked Jerry down in the middle of a 3 day fishing trip. Unshaven, Jerry walked into Graceland and said, “I was a wreck, but Elvis was about the prettiest thing I ever did see.”\r\n\r\nElvis Presley was so impressed with Jerry’s guitar playing that he had him play the guitar on that album <em>and</em> his next.\r\n\r\n<a href=\"http://www.youtube.com/watch?v=G3gkBMuyq8U\" target=\"_blank\">Guitar Man – Elvis Presley written by Jerry Reed</a>\r\n\r\nJerry Reed wrote more songs recorded by Elvis Presley than any other songwriter.\r\n\r\nThe thing about Jerry Reed was, he was a stand-up guy. All he wanted was to play music. And apparently to keep moving. Described by Burt Reynolds as “So hyper he can thread a sewing machine while standing still.” It’s no surprise that an NBC crewman said “Where Reed is, there’s electricity! He’s like a 300-watt bulb in a room full of 60-watt lamps. You can feel it. He buzzes!”\r\n\r\nEven Jerry knew he was a taut wire ready to go, “I talk about taking a rest, but I thrive on it. I stop a week and I’m going crazy. I see a bus of musicians going down the road and wonder why I’m not with them.”\r\n\r\nGuess that’s how he got so much done. I guess that’s why he wrote over 400 songs, and recorded over 48 albums. Well, 48 that were his. There were countless others made by artists who demanded Jerry Reed as their lead guitar, not the least of which were Elvis Presley, Johnny Cash, Waylon Jennings, Glen Campbell and Chet Atkins.\r\n\r\nJerry Reed was known to me as “Snowman” before I knew he sang those songs I love. Heck I didn’t even know his name. He was just, “Snowman.”\r\n\r\nI didn’t know that he wrote <a href=\"http://www.youtube.com/watch?v=q9EJ0qXNJGg\" target=\"_blank\">\"When You’re Hot, You’re Hot,\"</a> I basically just knew <a href=\"http://www.youtube.com/watch?v=uHZJej98_T0\" target=\"_blank\">\"East Bound and Down,\"</a> the theme song from <em>Smokey and the Bandit</em>.\r\n\r\nAs I got older I realized I knew a lot of his songs; I just didn’t know they were his.\r\n\r\nChet Atkins once told Jerry Reed he needed to stop writing for other people, and start writing those funny songs he loved so much. I think we can all be thankful that Chet pushed him, because Jerry’s catalog of song’s with silly lyrics can keep me in happy music for weeks.\r\n\r\nWhen Jerry Reed and Chet Atkins got together, now that was a whole different story. That is when Jerry Reed’s talent really shined. Man did he shine. And <em>he wrote all the music</em>. His Genius. The guy who wrote \"She Got The Goldmine (I Got The Shaft),\" among folks who know true country, will go down as one of the greatest guitar players of all time. Forget the songwriting, forget the silly lyrics. He was a virtuoso, he taught himself to play on a $7 used guitar when he was 8-years-old. If ever a man was given a gift, it was Jerry Reed. I believe he was one of the most under-appreciated musicians of our recent past. I would like to change that in my own little way. So if you can listen to these songs without feeling all smiley inside, you drop me a line. If not, spread the word.\r\n\r\nPost by Jen Kehl.\r\n<p dir=\"ltr\"><em><strong>Jen Kehl is a 40-something chick, who has finally come to terms with the fact that she is still a deadhead music freak trapped inside the body of someone’s mother. She often finds herself stuck in the 70′s with the all of the rainbows and unicorns. She blogs at <a href=\"http://jenkehl.com/\">My Skewed View</a> and created the music site <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a>. She is also a published author as part of the anthology <a href=\"http://www.amazon.com/gp/product/B00FKZLGM6/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00FKZLGM6&linkCode=as2&tag=raisedontheradio-20\">The Mother of All Meltdowns</a> available on Amazon.</strong></em></p>\r\n<em><strong>Connect with her on twitter <a href=\"https://twitter.com/jenkehl\">@jenkehl</a>, <a href=\"https://www.facebook.com/myskewedviewbyjenkehl\">Facebook</a>, and <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\">Google+</a>.</strong></em>','Jerry Reed – Guitar Genius – Musical Comedian','','inherit','open','open','','1629-revision-v1','','','2014-03-17 06:32:23','2014-03-17 12:32:23','',1629,'http://www.earthhertzrecords.com/2014/03/1629-revision-v1/',0,'revision','',0),(1635,2,'2014-03-17 06:35:45','2014-03-17 12:35:45','','jerryreed-whenyorehot','','inherit','open','open','','jerryreed-whenyorehot','','','2014-03-17 06:35:45','2014-03-17 12:35:45','',1629,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/jerryreed-whenyorehot.jpg',0,'attachment','image/jpeg',0),(1636,2,'2014-03-17 06:35:56','2014-03-17 12:35:56','<em><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/jerryreed-1.jpg\"><img class=\"alignleft size-full wp-image-1632\" alt=\"jerryreed-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/jerryreed-1.jpg\" width=\"225\" height=\"225\" /></a></em>In the late 50′s – early 60′s, Jerry Reed was a songwriter, a famous songwriter. So many of the songs he wrote and recorded became #1 hits for other people. Yet when he played them, they didn’t get far.\r\n\r\nThanks to Brenda Lee’s cover of his song, \"All You Gotta Do,\" his name was kept alive while he did a 2-year tenure in the armed forces from \'59-\'61. Nashville was waiting for Jerry Reed to write more hit songs.\r\n\r\n<a href=\"http://www.youtube.com/watch?v=CgImoFl2_N0\" target=\"_blank\">All You Gotta Do – Brenda Lee written by Jerry Reed</a>\r\n\r\nJerry was known among the music community as a genius whose un-taught hands almost played on their own. His style was completely unique and full of emotion. Butch Baker, a close friend of his said “He had this style called ‘the claw,’ ” and noting that Mr. Reed, who had no formal musical training, also made a record by that name. “I’m not sure if anybody knew what he was doing — I don’t even think he knew what he was doing — he would just do these emotional things that came out through his hands. He was a true innovator.’”\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/elvis-guitarman.jpg\"><img class=\"alignleft size-full wp-image-1633\" alt=\"elvis-guitarman\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/elvis-guitarman.jpg\" width=\"229\" height=\"220\" /></a>When Elvis Presley wanted to cover Jerry’s song \"Guitar Man,\" he tracked Jerry down in the middle of a 3 day fishing trip. Unshaven, Jerry walked into Graceland and said, “I was a wreck, but Elvis was about the prettiest thing I ever did see.”\r\n\r\nElvis Presley was so impressed with Jerry’s guitar playing that he had him play the guitar on that album <em>and</em> his next.\r\n\r\n<a href=\"http://www.youtube.com/watch?v=G3gkBMuyq8U\" target=\"_blank\">Guitar Man – Elvis Presley written by Jerry Reed</a>\r\n\r\nJerry Reed wrote more songs recorded by Elvis Presley than any other songwriter.\r\n\r\nThe thing about Jerry Reed was, he was a stand-up guy. All he wanted was to play music. And apparently to keep moving. Described by Burt Reynolds as “So hyper he can thread a sewing machine while standing still.” It’s no surprise that an NBC crewman said “Where Reed is, there’s electricity! He’s like a 300-watt bulb in a room full of 60-watt lamps. You can feel it. He buzzes!”\r\n\r\nEven Jerry knew he was a taut wire ready to go, “I talk about taking a rest, but I thrive on it. I stop a week and I’m going crazy. I see a bus of musicians going down the road and wonder why I’m not with them.”\r\n\r\nGuess that’s how he got so much done. I guess that’s why he wrote over 400 songs, and recorded over 48 albums. Well, 48 that were his. There were countless others made by artists who demanded Jerry Reed as their lead guitar, not the least of which were Elvis Presley, Johnny Cash, Waylon Jennings, Glen Campbell and Chet Atkins.\r\n\r\nJerry Reed was known to me as “Snowman” before I knew he sang those songs I love. Heck I didn’t even know his name. He was just, “Snowman.”\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/jerryreed-whenyorehot.jpg\"><img class=\"alignleft size-full wp-image-1635\" alt=\"jerryreed-whenyorehot\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/jerryreed-whenyorehot.jpg\" width=\"224\" height=\"224\" /></a>I didn’t know that he wrote <a href=\"http://www.youtube.com/watch?v=q9EJ0qXNJGg\" target=\"_blank\">\"When You’re Hot, You’re Hot,\"</a> I basically just knew <a href=\"http://www.youtube.com/watch?v=uHZJej98_T0\" target=\"_blank\">\"East Bound and Down,\"</a> the theme song from <em>Smokey and the Bandit</em>.\r\n\r\nAs I got older I realized I knew a lot of his songs; I just didn’t know they were his.\r\n\r\nChet Atkins once told Jerry Reed he needed to stop writing for other people, and start writing those funny songs he loved so much. I think we can all be thankful that Chet pushed him, because Jerry’s catalog of song’s with silly lyrics can keep me in happy music for weeks.\r\n\r\nWhen Jerry Reed and Chet Atkins got together, now that was a whole different story. That is when Jerry Reed’s talent really shined. Man did he shine. And <em>he wrote all the music</em>. His Genius. The guy who wrote \"She Got The Goldmine (I Got The Shaft),\" among folks who know true country, will go down as one of the greatest guitar players of all time. Forget the songwriting, forget the silly lyrics. He was a virtuoso, he taught himself to play on a $7 used guitar when he was 8-years-old. If ever a man was given a gift, it was Jerry Reed. I believe he was one of the most under-appreciated musicians of our recent past. I would like to change that in my own little way. So if you can listen to these songs without feeling all smiley inside, you drop me a line. If not, spread the word.\r\n\r\nPost by Jen Kehl.\r\n<p dir=\"ltr\"><em><strong>Jen Kehl is a 40-something chick, who has finally come to terms with the fact that she is still a deadhead music freak trapped inside the body of someone’s mother. She often finds herself stuck in the 70′s with the all of the rainbows and unicorns. She blogs at <a href=\"http://jenkehl.com/\">My Skewed View</a> and created the music site <a href=\"http://raisedontheradio.com/\">Raised on the Radio</a>. She is also a published author as part of the anthology <a href=\"http://www.amazon.com/gp/product/B00FKZLGM6/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B00FKZLGM6&linkCode=as2&tag=raisedontheradio-20\">The Mother of All Meltdowns</a> available on Amazon.</strong></em></p>\r\n<em><strong>Connect with her on twitter <a href=\"https://twitter.com/jenkehl\">@jenkehl</a>, <a href=\"https://www.facebook.com/myskewedviewbyjenkehl\">Facebook</a>, and <a href=\"https://plus.google.com/u/0/+JenniferKehl/posts\">Google+</a>.</strong></em>\r\n\r\nFirst published on <a href=\"http://raisedontheradio.com/2014/03/07/jerry-reed-guitar-genius-musical-comedian/\">RaisedOnTheRadio</a>','Jerry Reed – Guitar Genius – Musical Comedian','','inherit','open','open','','1629-revision-v1','','','2014-03-17 06:35:56','2014-03-17 12:35:56','',1629,'http://www.earthhertzrecords.com/2014/03/1629-revision-v1/',0,'revision','',0),(1637,2,'2014-03-18 06:27:58','2014-03-18 12:27:58','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/AN_2002.jpg\"><img class=\"size-full wp-image-881 alignleft\" alt=\"11\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/AN_2002.jpg\" width=\"200\" height=\"167\" /></a>\r\n\r\nPay your dues.\r\n\r\nHopefully if you do, karma smiles.\r\n\r\nEarth Hertz artists <strong><a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\">Applegate Nance</a></strong> have been paying their dues. Moving from Ohio to Nashville, they\'ve spent their time here learning the craft of songwriting, the art of harmonies, and the work ethic involved in playing live. It\'s time for the next step.\r\n\r\nTime to take the act on the road.\r\n\r\nMike Applegate and Kyle Nance are now officially entered into the<a href=\"http://warped.battleofthebands.com/u/applegatenance\"> Battle of the Bands for a spot in the lineup of the Vans Warped Tour 2014</a>. If you could take the time to go over to the Warped Tour page, and vote for the band, share the page, vote again, tweet the page, vote again... you get the picture, we would love to give each one of you a hug. But we can\'t, so... while you\'re on their Battle of the Bands page, listen to their music. It\'s so good, you\'ll want to give us a hug.\r\n\r\n<strong>Vote here ---> <a href=\"http://warped.battleofthebands.com/u/applegatenance\">Applegate Nance - Warped Tour</a></strong>\r\n\r\nThanks for the support. We appreciate every one of you who are traveling this road with us.\r\n\r\nEarth Hertz Records\r\n\r\n ','Applegate Nance and the Vans Warped Tour 2014','','publish','open','open','','applegate-nance-and-the-vans-warped-tour-2014','','\nhttp://www.earthhertzrecords.com/artists/applegate-nance-2/','2014-03-18 06:29:28','2014-03-18 12:29:28','',0,'http://www.earthhertzrecords.com/?p=1637',0,'post','',0),(1638,2,'2014-03-18 06:23:42','2014-03-18 12:23:42','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/AN_2002.jpg\"><img class=\"size-full wp-image-881 alignleft\" alt=\"11\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/AN_2002.jpg\" width=\"200\" height=\"167\" /></a>\r\n\r\nPay your dues.\r\n\r\nHopefully if you do, karma smiles.\r\n\r\nEarth Hertz artists <a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\">Applegate Nance</a> have been paying their dues. Moving from Ohio to Nashville, they\'ve spent their time here learning the craft of songwriting, the art of harmonies, and the work ethic involved in playing live. It\'s time for the next step.\r\n\r\nTime to take the act on the road. Mike Applegate and Kyle Nance are now officially entered into the<a href=\"http://warped.battleofthebands.com/u/applegatenance\"> Battle of the Bands for a spot in the lineup of the Vans Warped Tour 2014</a>. If you could take the time to go over to the Warped Tour page, and vote for the band, share the page, vote again, tweet the page, vote again... you get the picture, we would love to give each one of you a hug. But we can\'t, so... while you\'re on their Battle of the Bands page, listen to their music. It\'s so good, you\'ll want to give us a hug.\r\n\r\nThanks for the support. We appreciate everyone one of you who are traveling this road with us.\r\n\r\nEarth Hertz Records\r\n\r\n ','Applegate Nance and the Vans Warped Tour 2014','','inherit','open','open','','1637-revision-v1','','','2014-03-18 06:23:42','2014-03-18 12:23:42','',1637,'http://www.earthhertzrecords.com/2014/03/1637-revision-v1/',0,'revision','',0),(1639,2,'2014-03-18 06:26:46','2014-03-18 12:26:46','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/AN_2002.jpg\"><img class=\"size-full wp-image-881 alignleft\" alt=\"11\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/AN_2002.jpg\" width=\"200\" height=\"167\" /></a>\r\n\r\nPay your dues.\r\n\r\nHopefully if you do, karma smiles.\r\n\r\nEarth Hertz artists <strong><a href=\"http://www.earthhertzrecords.com/artists/applegate-nance-2/\">Applegate Nance</a></strong> have been paying their dues. Moving from Ohio to Nashville, they\'ve spent their time here learning the craft of songwriting, the art of harmonies, and the work ethic involved in playing live. It\'s time for the next step.\r\n\r\nTime to take the act on the road.\r\n\r\nMike Applegate and Kyle Nance are now officially entered into the<a href=\"http://warped.battleofthebands.com/u/applegatenance\"> Battle of the Bands for a spot in the lineup of the Vans Warped Tour 2014</a>. If you could take the time to go over to the Warped Tour page, and vote for the band, share the page, vote again, tweet the page, vote again... you get the picture, we would love to give each one of you a hug. But we can\'t, so... while you\'re on their Battle of the Bands page, listen to their music. It\'s so good, you\'ll want to give us a hug.\r\n\r\n<strong>Vote here ---> <a href=\"http://warped.battleofthebands.com/u/applegatenance\">Applegate Nance - Warped Tour</a></strong>\r\n\r\nThanks for the support. We appreciate every one of you who are traveling this road with us.\r\n\r\nEarth Hertz Records\r\n\r\n ','Applegate Nance and the Vans Warped Tour 2014','','inherit','open','open','','1637-revision-v1','','','2014-03-18 06:26:46','2014-03-18 12:26:46','',1637,'http://www.earthhertzrecords.com/2014/03/1637-revision-v1/',0,'revision','',0),(1641,2,'2014-03-20 19:18:56','2014-03-21 01:18:56','Author Andrew Golub is not your typical Duran Duran fan. Over the course of three decades, the Pacific northwest native has amassed a rather impressive arsenal of band memorabilia. It’s a collection that includes everything from rare articles and artifacts to carefully restored posters and prints that document every chapter of Duran Duran history. Selections from Golub’s archive have already been showcased in the Rock & Roll Hall of Fame and Museum as well in an A&E Biography, two film documentaries and several public exhibitions.\r\n\r\nGolub’s 260-page book, <em>“Beautiful Colors: The Posters of Duran Duran”</em> presents an interesting perspective of the band’s career as well as his own fandom. Through the use of full-color posters from 1978 to the present, <em>Beautiful Colors</em> documents the band’s evolution through vintage artwork and stunning photography by Christine Born.\r\n\r\nThe book has received overwhelming praise from members of the fan community as well as from Duran Duran themselves, with keyboardist Nick Rhodes contributing a touching forward. <em>Beautiful Colors</em> is a book for any fan of Duran Duran or those with a penchant for 80′s nostalgia. Moreover, the book is a true testament to the power of music.\r\n\r\nI spoke with Golub about the book and his fascination of all things Duran Duran.\r\n\r\n<strong>James Wood: What was your primary motivation behind the <em>Beautiful Colors</em> book?</strong>\r\n\r\nAndrew Golub: A book was always a possibility given the breadth of my collection and I’ve received many gentle urgings to produce something like this from friends and fans over the years. From exhibitions to my website, I strived to make my collection more accessible to the global fan community as well as the band. Due to their sheer size, posters tend to be the most dramatic category in the archive and the type of memorabilia I feel most proud of. So the concept behind <em>Beautiful Colors</em> felt like a natural decision.\r\n\r\n<strong>How did you determine which pieces to include?</strong>\r\n\r\nSince the collection is bursting with treasures, selecting posters for inclusion was a challenge. But once I decided to focus only on official promotional posters (from record companies, concert venues, etc), the choices became clear. Posters are designed to capture attention and ignite the imagination. They represent memories and milestones, for the band as well as the fans. I feel as if I’m working to preserve history through a medium that would otherwise be lost in time. My book may commemorate Duran Duran’s history, but the memories on each page belong to fans around the world.\r\n\r\n<strong>When did your love of Duran Duran begin?</strong>\r\n\r\nThe first strains of \"Fab Five Fever\" nestled into my DNA when I was 13 – the later part of 1984. The combination of charismatic photo sessions, captivating videos, and spectacular, memorable music was all it took to activate my inner Duranimal. My days were soon filled with trips to supermarket magazine racks, brainstorming on how to fund purchases of DD material and of course, taking good care of the items in my growing collection. Hard to believe there was a point when my whole collection fit inside my bedroom. A fortunate thing since my mother refused to build an annex on to the house for memorabilia maintenance.\r\n\r\n<strong>What was it about their music that really interested you?</strong>\r\n\r\nNick’s soaring keyboard arrangements against Roger’s rock-solid beat, John’s velvety funk-infused bass, Andy’s electrifying guitar licks, and Simon’s lush, wonderfully cryptic lyrics. Every song offered something fresh and exciting with each new listen. <em>Seven and The Ragged Tiger</em> was my first album, launching a full, swift occupation of my senses. The synthesized rapture of “The Reflex” captured my imagination first, followed by the harmonized bliss of “New Moon on Monday,” and the rest of the record overwhelmed with awesome. I found Duran Duran’s music stayed with me long after I stopped listening, and I felt myself yearning for more—discovering other albums, learning about the members, and essentially assembling a portrait of the artists behind my favorite tunes. The music was my gateway drug.\r\n\r\n<strong>What made you decide to start collecting pieces of Duran Duran memorabilia?</strong>\r\n<div>\r\n<div id=\":o7\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n\r\nBeing attracted to Duran Duran’s strong visual style, acquiring memorabilia seemed like a natural direction. Photos offered glossy, handsome images and magazine articles were often accompanied by fan-friendly, full-page pin-ups. But posters took Duran Duran’s exciting, photogenic persona to an even higher plane. While I’ve enjoyed filling out the archive with many odd and fascinating artifacts, the posters have always been the heart of my collection and the clearest visual representation of Duran Duran’s professional history.\r\n\r\n<strong>How do you acquire pieces for your collection?</strong>\r\n\r\nMuch of my effort revolves around careful networking, reaching out to those within the concert promotion industry and building credibility with my archive. The biggest challenge comes with every new tour, when the whole world becomes a potential harbor for poster production. That is also when I become most aware and appreciative of all the wonderful friends and fellow fans keeping me in mind across the globe!\r\n\r\n<strong>Do you have a particular favorite?</strong>\r\n\r\nWithout picking a single, most prized item, I would highlight the posters I’ve been able to find from the band’s earliest chapters. Whether testing new material in Birmingham clubs, cutting their teeth as a support act or exploring their New Romantic roots, Duran Duran’s formative years remain the most elusive to document through posters. I have moments of quiet incredulity and deep pride when I look at the first chapter of my book, populated with more posters than I ever expected to include.\r\n\r\n<strong>Have you ever gotten to meet the band?\r\n</strong>\r\n<div>\r\n\r\nI have met the band on several occasions and each encounter has been intensely meaningful and ingrained as a life highlight. Every time I am fortunate enough to meet Duran Duran I am reminded of why I do what I do, why the band deserve nothing less than absolute lifelong celebration and I walk away with renewed commitment to my archival work.\r\n<div id=\":o7\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n\r\n<strong>What’s your favorite Duran Duran song? Album?</strong>\r\n\r\nI was introduced to Duran’s sound through the Ragged Tiger album, particularly “The Reflex”. That record and single will always occupy a premium spot for me. However, <em>Rio </em>is bursting with some of my biggest faves. Especially “Lonely In Your Nightmare,” “Save A Prayer,” and “Hold Back The Rain.” Timeless classics which never fail to elevate my heart rate, tap my emotions, and transport me to a very happy place. In the band’s recent years, <em>All You Need Is Now</em> is nothing short of crazy-awesome, having re-captured the same visceral, joyous feel that got me hooked in the first place! “Runway Runaway,” “Blame The Machines,” and the title track are pure brilliance that I enjoy down to the molecular level.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div>\r\n\r\n<strong>What has the band had to say about your book?</strong>\r\n\r\n<strong></strong>The band has been incredibly supportive through Twitter and Facebook, and after a recent trip to present the book to Duran’s management in New York I learned the band assessed <em>Beautiful Colors</em> as “magnificent.” It was important to create something that both the band and the fans could be proud of. In addition to charting the band’s history, I set out to honor the bond between the band and their faithful following as well as my own connections within the global fan community. This passion is a powerful common thread we all share, and I feel blessed to be part of something so special, enduring and so much bigger than myself.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Beautiful Colors: Author Andrew Golub Discusses Unique Duran Duran Book','','inherit','open','open','','1640-revision-v1','','','2014-03-20 19:18:56','2014-03-21 01:18:56','',1640,'http://www.earthhertzrecords.com/2014/03/1640-revision-v1/',0,'revision','',0),(1642,2,'2014-03-20 19:28:44','2014-03-21 01:28:44','','beautifulcolors-andrewgolub','','inherit','open','open','','beautifulcolors-andrewgolub','','','2014-03-20 19:28:44','2014-03-21 01:28:44','',1640,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/beautifulcolors-andrewgolub.jpg',0,'attachment','image/jpeg',0),(1643,2,'2014-03-20 19:30:00','2014-03-21 01:30:00','','golub31','','inherit','open','open','','golub31','','','2014-03-20 19:30:00','2014-03-21 01:30:00','',1640,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/golub31.jpg',0,'attachment','image/jpeg',0),(1644,2,'2014-03-20 19:31:03','2014-03-21 01:31:03','','golub2','','inherit','open','open','','golub2','','','2014-03-20 19:31:03','2014-03-21 01:31:03','',1640,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/golub2.jpg',0,'attachment','image/jpeg',0),(1645,2,'2014-03-20 19:34:28','2014-03-21 01:34:28','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/beautifulcolors-andrewgolub.jpg\"><img class=\"alignright size-full wp-image-1642\" alt=\"beautifulcolors-andrewgolub\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/beautifulcolors-andrewgolub.jpg\" width=\"329\" height=\"238\" /></a>Author Andrew Golub is not your typical Duran Duran fan. Over the course of three decades, the Pacific northwest native has amassed a rather impressive arsenal of band memorabilia. It’s a collection that includes everything from rare articles and artifacts to carefully restored posters and prints that document every chapter of Duran Duran history. Selections from Golub’s archive have already been showcased in the Rock & Roll Hall of Fame and Museum as well in an A&E Biography, two film documentaries and several public exhibitions.\r\n\r\nGolub’s 260-page book, <em>“Beautiful Colors: The Posters of Duran Duran”</em> presents an interesting perspective of the band’s career as well as his own fandom. Through the use of full-color posters from 1978 to the present, <em>Beautiful Colors</em> documents the band’s evolution through vintage artwork and stunning photography by Christine Born.\r\n\r\nThe book has received overwhelming praise from members of the fan community as well as from Duran Duran themselves, with keyboardist Nick Rhodes contributing a touching forward. <em>Beautiful Colors</em> is a book for any fan of Duran Duran or those with a penchant for 80′s nostalgia. Moreover, the book is a true testament to the power of music.\r\n\r\nI spoke with Golub about the book and his fascination of all things Duran Duran.\r\n\r\n<strong><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/golub31.jpg\"><img class=\"alignleft size-full wp-image-1643\" alt=\"golub31\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/golub31.jpg\" width=\"305\" height=\"440\" /></a>James Wood: What was your primary motivation behind the <em>Beautiful Colors</em> book?</strong>\r\n\r\nAndrew Golub: A book was always a possibility given the breadth of my collection and I’ve received many gentle urgings to produce something like this from friends and fans over the years. From exhibitions to my website, I strived to make my collection more accessible to the global fan community as well as the band. Due to their sheer size, posters tend to be the most dramatic category in the archive and the type of memorabilia I feel most proud of. So the concept behind <em>Beautiful Colors</em> felt like a natural decision.\r\n\r\n<strong>How did you determine which pieces to include?</strong>\r\n\r\nSince the collection is bursting with treasures, selecting posters for inclusion was a challenge. But once I decided to focus only on official promotional posters (from record companies, concert venues, etc), the choices became clear. Posters are designed to capture attention and ignite the imagination. They represent memories and milestones, for the band as well as the fans. I feel as if I’m working to preserve history through a medium that would otherwise be lost in time. My book may commemorate Duran Duran’s history, but the memories on each page belong to fans around the world.\r\n\r\n<strong>When did your love of Duran Duran begin?</strong>\r\n\r\nThe first strains of \"Fab Five Fever\" nestled into my DNA when I was 13 – the later part of 1984. The combination of charismatic photo sessions, captivating videos, and spectacular, memorable music was all it took to activate my inner Duranimal. My days were soon filled with trips to supermarket magazine racks, brainstorming on how to fund purchases of DD material and of course, taking good care of the items in my growing collection. Hard to believe there was a point when my whole collection fit inside my bedroom. A fortunate thing since my mother refused to build an annex on to the house for memorabilia maintenance.\r\n\r\n<strong>What was it about their music that really interested you?</strong>\r\n\r\nNick’s soaring keyboard arrangements against Roger’s rock-solid beat, John’s velvety funk-infused bass, Andy’s electrifying guitar licks, and Simon’s lush, wonderfully cryptic lyrics. Every song offered something fresh and exciting with each new listen. <em>Seven and The Ragged Tiger</em> was my first album, launching a full, swift occupation of my senses. The synthesized rapture of “The Reflex” captured my imagination first, followed by the harmonized bliss of “New Moon on Monday,” and the rest of the record overwhelmed with awesome. I found Duran Duran’s music stayed with me long after I stopped listening, and I felt myself yearning for more—discovering other albums, learning about the members, and essentially assembling a portrait of the artists behind my favorite tunes. The music was my gateway drug.\r\n\r\n[caption id=\"attachment_1644\" align=\"alignright\" width=\"324\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/golub2.jpg\"><img class=\"size-full wp-image-1644\" alt=\"golub2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/golub2.jpg\" width=\"324\" height=\"432\" /></a> Golub hard at work, peeling off layers of excess paper from the back of a rare poster.[/caption]\r\n\r\n<strong>What made you decide to start collecting pieces of Duran Duran memorabilia?</strong>\r\n<div>\r\n<div id=\":o7\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n\r\nBeing attracted to Duran Duran’s strong visual style, acquiring memorabilia seemed like a natural direction. Photos offered glossy, handsome images and magazine articles were often accompanied by fan-friendly, full-page pin-ups. But posters took Duran Duran’s exciting, photogenic persona to an even higher plane. While I’ve enjoyed filling out the archive with many odd and fascinating artifacts, the posters have always been the heart of my collection and the clearest visual representation of Duran Duran’s professional history.\r\n\r\n<strong>How do you acquire pieces for your collection?</strong>\r\n\r\nMuch of my effort revolves around careful networking, reaching out to those within the concert promotion industry and building credibility with my archive. The biggest challenge comes with every new tour, when the whole world becomes a potential harbor for poster production. That is also when I become most aware and appreciative of all the wonderful friends and fellow fans keeping me in mind across the globe!\r\n\r\n<strong>Do you have a particular favorite?</strong>\r\n\r\nWithout picking a single, most prized item, I would highlight the posters I’ve been able to find from the band’s earliest chapters. Whether testing new material in Birmingham clubs, cutting their teeth as a support act or exploring their New Romantic roots, Duran Duran’s formative years remain the most elusive to document through posters. I have moments of quiet incredulity and deep pride when I look at the first chapter of my book, populated with more posters than I ever expected to include.\r\n\r\n<strong>Have you ever gotten to meet the band?\r\n</strong>\r\n<div>\r\n\r\nI have met the band on several occasions and each encounter has been intensely meaningful and ingrained as a life highlight. Every time I am fortunate enough to meet Duran Duran I am reminded of why I do what I do, why the band deserve nothing less than absolute lifelong celebration and I walk away with renewed commitment to my archival work.\r\n<div id=\":o7\">\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n<div>\r\n\r\n<strong>What’s your favorite Duran Duran song? Album?</strong>\r\n\r\nI was introduced to Duran’s sound through the Ragged Tiger album, particularly “The Reflex”. That record and single will always occupy a premium spot for me. However, <em>Rio </em>is bursting with some of my biggest faves. Especially “Lonely In Your Nightmare,” “Save A Prayer,” and “Hold Back The Rain.” Timeless classics which never fail to elevate my heart rate, tap my emotions, and transport me to a very happy place. In the band’s recent years, <em>All You Need Is Now</em> is nothing short of crazy-awesome, having re-captured the same visceral, joyous feel that got me hooked in the first place! “Runway Runaway,” “Blame The Machines,” and the title track are pure brilliance that I enjoy down to the molecular level.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div>\r\n\r\n<strong>What has the band had to say about your book?</strong>\r\n\r\n<strong></strong>The band has been incredibly supportive through Twitter and Facebook, and after a recent trip to present the book to Duran’s management in New York I learned the band assessed <em>Beautiful Colors</em> as “magnificent.” It was important to create something that both the band and the fans could be proud of. In addition to charting the band’s history, I set out to honor the bond between the band and their faithful following as well as my own connections within the global fan community. This passion is a powerful common thread we all share, and I feel blessed to be part of something so special, enduring and so much bigger than myself.\r\n\r\nFor more information on Andrew Golub and\r\nBeautiful Colors: The Posters of Duran Duran <a href=\"http://www.durandy.com/book/\" target=\"_blank\">Click Here!</a>\r\n\r\nTo See Golub’s portion of an American Collector’s documentary\r\n(38 minutes in): <a href=\"http://video.kcts9.org/video/1708621019/\" target=\"_blank\">Click Here</a>\r\n\r\nInterview by Jim Wood.\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Beautiful Colors: Author Andrew Golub Discusses Unique Duran Duran Book','','inherit','open','open','','1640-revision-v1','','','2014-03-20 19:34:28','2014-03-21 01:34:28','',1640,'http://www.earthhertzrecords.com/2014/03/1640-revision-v1/',0,'revision','',0),(1672,2,'2014-03-31 09:30:23','2014-03-31 15:30:23','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/RichardFulco-2.jpg\"><img class=\"alignleft size-full wp-image-1652\" alt=\"RichardFulco-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/RichardFulco-2.jpg\" width=\"262\" height=\"283\" /></a>As if being a writer, teacher, husband, father, and musician wasn\'t enough to put on his resume, as of March 18th, Richard Fulco is also a published novelist. His first book, <a href=\"http://www.amazon.com/There-Is-End-This-Slope/dp/0979747171/ref=sr_1_1?ie=UTF8&qid=1393253687&sr=8-1&keywords=richard+fulco\"><em>There Is No End To This Slope</em> (Wampus Multimedia)</a>, is the story of an aspiring writer from Brooklyn, coincidentally or not, the same New York City borough where the author grew up. My first encounter with Richard was about a year ago, when he was still trying to finish the book, take care of his twin toddlers, and also edit and write for <a href=\"http://www.riffraf.net/\">RiffRaf</a>, the music blog he founded four years ago. Recently, I had the chance to speak with him about the journey from playwright to author of literary fiction, and that little road trip known as a music blog.\r\n\r\n \r\n\r\n<b>Kath Galasso: How long did it take to write the book?</b>\r\n\r\nRichard Fulco: On and off for seven years. I got a major chunk of it done before the kids were born. I was racing against the clock. I was teaching, and after teaching I was writing for seven or eight hours, and I was writing on weekends for twelve hours, to get it done before the kids came along.\r\n\r\nI really just wanted to finish the book, publication wasn’t even in my vision. I’m a playwright mostly, and I’ve started a lot of things and never finished them. I committed to this book after one of my plays was in the New York Fringe Festival. I got kind of tired of working in the theatre, and I thought the idea for the play might work better as a novel. It took me a long time to figure out how to write a novel. It took me years to figure out how to write it, and I was also trying to purge myself of a lot of things. It was therapeutic for a while, then I said I’ve had enough therapy. I just want to make this book the best book I can make it.\r\n\r\n<b>On behalf of all the writers I know, how did you manage to get a publishing deal?</b>\r\n\r\nI met Mark (Doyon) through RiffRaf. Mark is the publisher at <a href=\"http://wampus.com/richard-fulco/\">Wampus Multimedia</a>. Mark does great work with music, and he and I would just talk music. We just kept connecting musically, and I said “Mark, would you be interested in seeing a novel of literary fiction?” He published a couple of books of musical fiction, and he said “I was thinking about branching out into literary fiction, I’d love to see it.” So I sent him a copy, and about a month later he sent me a note with an in-depth analysis of the story. He taught me more about the story in that letter, than any editor has. And that was it.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Richard-Fulco-1.jpg\"><img class=\"alignright size-medium wp-image-1653\" alt=\"Richard-Fulco-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Richard-Fulco-1-200x300.jpg\" width=\"200\" height=\"300\" /></a>Your main character John Lenza, he’s a writer, but he doesn’t really write.</b>\r\n\r\nYeah, we all know people like that. Everyone’s writing, everyone has an idea for a story. John (Lenza) is a wannabee. The irony of the story is that he’s at a time in his life where he’s meeting all these people that he normally wouldn’t hang out with. He meets this man, Teeny Duncan, a recovering alcoholic, a gay man who’s in his early 40’s, late 30’s, and he meets a lot of young boys right out of high school and makes these elaborate films with them. He hangs out in the coffee shop, but he has a penchant for good literature, and that’s what draws John to him. When Teeny finds out that John is interested in writing, Teeny becomes a coach, then decides he’s going to write something on his own. And he writes a play. For John, who’s just thinking about writing, it’s really an eye-opener for him.\r\n\r\n<b>Tell me about your writing process.</b>\r\n\r\nFor a long time, it was when the muse struck. That was still when I was writing poetry and songs, I guess. When I started writing plays, I couldn\'t really wait for the muse to strike. I don’t know why I started writing plays, I think now it’s because of my background and my upbringing. I’ve always been drawn to dialogue, and I’ve always been attracted to the Italian-American dinner table. It’s tragic and it’s funny as hell, and there are eight million conversations going on at once. My mom was kind of the master at this. She would be talking to my dad, and she’d look over at me and have a conversation with me. She’s having four or five conversations at once. I was always drawn to that.\r\n\r\nWhen I decided I was going to write the novel, I knew it had to be every day. I had to sit down and force myself. I couldn’t just wait for the muse to strike or the inspiration to hit, so I was writing while I was teaching. I wasn’t married at the time, so I’d come home and write until ten, eleven, sometimes twelve o’ clock. Then when the kids came along, it was when they would go down to nap, and when they’d go down to sleep. When I did my last edit on the book, five or six months last year, it was every day for eight hours. Except for my kids, this was the hardest I\'ve ever worked in my life.\r\n\r\n<b>How did RiffRaf come about?</b>\r\n\r\nI really wanted to be a musician. I was always involved in music. When I was eighteen, I started college and I started playing the saxophone, I had played the guitar. I wanted to play music and I did it for about ten years. I played the scene, played the circuit. I was primarily in two bands. But I was going to college and studying to become a teacher, an English major. I never thought about my future. I would just keep on doing this as long as I could do it. The hardest thing was to let it go, and face myself at twenty-seven, twenty-eight and say “I’m too old for this, it’s not happening. I’m not good enough.” That was probably the most depressed I ever was in my life. Then I had to go teach, so I taught. And my wife Colleen, said four years ago, “You know more about music than anyone I know, why don’t you try and write about it?” I knew nothing about blogs, but the more I thought about it, the more I thought, again like the novel, that I was going to do that because it was something I wanted to do, and I really missed music. I just love talking about music. I relate to musicians more than I do any other artists.\r\n\r\nSo I started blogging. It started off once a week, then when it went to three times a week. That was a big deal. Then it was five days a week, then seven days a week. And now I have a staff.\r\n\r\nI thought I knew a lot about music four years ago, I know a lot more now. I love learning about music, I love the history of it. That’s how I started RiffRaf, from that angle. It would be mostly about the history, not about subjectivity. I wasn’t going to write about my favorite bands and why they were my favorite bands. I do write about my favorite bands, but I keep a lot of the editorial stuff out. I wasn’t going to write about Katy Perry or Lady Gaga because I don’t know them. I think that’s been the biggest challenge, trying to include different acts, different bands.\r\n\r\n<b>One more question I have about RiffRaf. Most of the articles are short, is that a conscious decision because of everyone’s shortened attention span that you keep everything on the short side?</b>\r\n\r\nNo. Its just the way I write. Adjectives and flowery language, and overwrought sentences are not for me. You have something you feel, you have something to say, boom, boom, boom. The people who write for me, when I edit their stuff, I try not to change their tone, but I do cut and I do slice. It’s not a conscious effort, but I do believe it’s best. For writing purposes and editing purposes, I can’t write a 3000 word article in a night. That’s not the way I work. So it is a conscious effort, but it’s not because of reader’s attention spans. I just go from point A to point B.\r\n\r\nFollow Richard Fulco on Twitter <a href=\"https://twitter.com/RichardFulco\">@RichardFulco</a> and <a href=\"https://twitter.com/riffrafblog\">@RiffRafblog</a>','A Conversation with RiffRaf Founder Richard Fulco ','','inherit','open','open','','1650-revision-v1','','','2014-03-31 09:30:23','2014-03-31 15:30:23','',1650,'http://www.earthhertzrecords.com/2014/03/1650-revision-v1/',0,'revision','',0),(1648,1,'2014-03-27 09:11:11','2014-03-27 15:11:11','','4382937779_e0c1d76aca_o','','inherit','open','open','','4382937779_e0c1d76aca_o','','','2014-03-27 09:11:11','2014-03-27 15:11:11','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/4382937779_e0c1d76aca_o.png',0,'attachment','image/png',0),(1649,1,'2014-03-27 09:14:07','2014-03-27 15:14:07','','4382937779_e0c1d76aca_o','','inherit','open','open','','4382937779_e0c1d76aca_o-2','','','2014-03-27 09:14:07','2014-03-27 15:14:07','',0,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/4382937779_e0c1d76aca_o1.png',0,'attachment','image/png',0),(1650,2,'2014-03-28 06:32:15','2014-03-28 12:32:15','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/RichardFulco-2.jpg\"><img class=\"alignleft size-full wp-image-1652\" alt=\"RichardFulco-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/RichardFulco-2.jpg\" width=\"262\" height=\"283\" /></a>As if being a writer, teacher, husband, father, and musician wasn\'t enough to put on his resume, as of March 18th, Richard Fulco is also a published novelist. His first book, <a href=\"http://www.amazon.com/There-Is-End-This-Slope/dp/0979747171/ref=sr_1_1?ie=UTF8&qid=1393253687&sr=8-1&keywords=richard+fulco\"><em>There Is No End To This Slope</em> (Wampus Multimedia)</a>, is the story of an aspiring writer from Brooklyn, coincidentally or not, the same New York City borough where the author grew up. My first encounter with Richard was about a year ago, when he was still trying to finish the book, take care of his twin toddlers, and also edit and write for <a href=\"http://www.riffraf.net/\">RiffRaf</a>, the music blog he founded four years ago. Recently, I had the chance to speak with him about the journey from playwright to author of literary fiction, and that little road trip known as a music blog.\r\n\r\n \r\n\r\n<b>Kath Galasso: How long did it take to write the book?</b>\r\n\r\nRichard Fulco: On and off for seven years. I got a major chunk of it done before the kids were born. I was racing against the clock. I was teaching, and after teaching I was writing for seven or eight hours, and I was writing on weekends for twelve hours, to get it done before the kids came along.\r\n\r\nI really just wanted to finish the book, publication wasn’t even in my vision. I’m a playwright mostly, and I’ve started a lot of things and never finished them. I committed to this book after one of my plays was in the New York Fringe Festival. I got kind of tired of working in the theatre, and I thought the idea for the play might work better as a novel. It took me a long time to figure out how to write a novel. It took me years to figure out how to write it, and I was also trying to purge myself of a lot of things. It was therapeutic for a while, then I said I’ve had enough therapy. I just want to make this book the best book I can make it.\r\n\r\n<b>On behalf of all the writers I know, how did you manage to get a publishing deal?</b>\r\n\r\nI met Mark (Doyon) through RiffRaf. Mark is the publisher at <a href=\"http://wampus.com/richard-fulco/\">Wampus Multimedia</a>. Mark does great work with music, and he and I would just talk music. We just kept connecting musically, and I said “Mark, would you be interested in seeing a novel of literary fiction?” He published a couple of books of musical fiction, and he said “I was thinking about branching out into literary fiction, I’d love to see it.” So I sent him a copy, and about a month later he sent me a note with an in-depth analysis of the story. He taught me more about the story in that letter, than any editor has. And that was it.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Richard-Fulco-1.jpg\"><img class=\"alignright size-medium wp-image-1653\" alt=\"Richard-Fulco-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Richard-Fulco-1-200x300.jpg\" width=\"200\" height=\"300\" /></a>Your main character John Lenza, he’s a writer, but he doesn’t really write.</b>\r\n\r\nYeah, we all know people like that. Everyone’s writing, everyone has an idea for a story. John (Lenza) is a wannabee. The irony of the story is that he’s at a time in his life where he’s meeting all these people that he normally wouldn’t hang out with. He meets this man, Teeny Duncan, a recovering alcoholic, a gay man who’s in his early 40’s, late 30’s, and he meets a lot of young boys right out of high school and makes these elaborate films with them. He hangs out in the coffee shop, but he has a penchant for good literature, and that’s what draws John to him. When Teeny finds out that John is interested in writing, Teeny becomes a coach, then decides he’s going to write something on his own. And he writes a play. For John, who’s just thinking about writing, it’s really an eye-opener for him.\r\n\r\n<b>Tell me about your writing process.</b>\r\n\r\nFor a long time, it was when the muse struck. That was still when I was writing poetry and songs, I guess. When I started writing plays, I couldn\'t really wait for the muse to strike. I don’t know why I started writing plays, I think now it’s because of my background and my upbringing. I’ve always been drawn to dialogue, and I’ve always been attracted to the Italian-American dinner table. It’s tragic and it’s funny as hell, and there are eight million conversations going on at once. My mom was kind of the master at this. She would be talking to my dad, and she’d look over at me and have a conversation with me. She’s having four or five conversations at once. I was always drawn to that.\r\n\r\nWhen I decided I was going to write the novel, I knew it had to be every day. I had to sit down and force myself. I couldn’t just wait for the muse to strike or the inspiration to hit, so I was writing while I was teaching. I wasn’t married at the time, so I’d come home and write until ten, eleven, sometimes twelve o’ clock. Then when the kids came along, it was when they would go down to nap, and when they’d go down to sleep. When I did my last edit on the book, five or six months last year, it was every day for eight hours. Except for my kids, this was the hardest I\'ve ever worked in my life.\r\n\r\n<b>How did RiffRaf come about?</b>\r\n\r\nI really wanted to be a musician. I was always involved in music. When I was eighteen, I started college and I started playing the saxophone, I had played the guitar. I wanted to play music and I did it for about ten years. I played the scene, played the circuit. I was primarily in two bands. But I was going to college and studying to become a teacher, an English major. I never thought about my future. I would just keep on doing this as long as I could do it. The hardest thing was to let it go, and face myself at twenty-seven, twenty-eight and say “I’m too old for this, it’s not happening. I’m not good enough.” That was probably the most depressed I ever was in my life. Then I had to go teach, so I taught. And my wife Colleen, said four years ago, “You know more about music than anyone I know, why don’t you try and write about it?” I knew nothing about blogs, but the more I thought about it, the more I thought, again like the novel, that I was going to do that because it was something I wanted to do, and I really missed music. I just love talking about music. I relate to musicians more than I do any other artists.\r\n\r\nSo I started blogging. It started off once a week, then when it went to three times a week. That was a big deal. Then it was five days a week, then seven days a week. And now I have a staff.\r\n\r\nI thought I knew a lot about music four years ago, I know a lot more now. I love learning about music, I love the history of it. That’s how I started RiffRaf, from that angle. It would be mostly about the history, not about subjectivity. I wasn’t going to write about my favorite bands and why they were my favorite bands. I do write about my favorite bands, but I keep a lot of the editorial stuff out. I wasn’t going to write about Katy Perry or Lady Gaga because I don’t know them. I think that’s been the biggest challenge, trying to include different acts, different bands.\r\n\r\n<b>One more question I have about RiffRaf. Most of the articles are short, is that a conscious decision because of everyone’s shortened attention span that you keep everything on the short side?</b>\r\n\r\nNo. Its just the way I write. Adjectives and flowery language, and overwrought sentences are not for me. You have something you feel, you have something to say, boom, boom, boom. The people who write for me, when I edit their stuff, I try not to change their tone, but I do cut and I do slice. It’s not a conscious effort, but I do believe it’s best. For writing purposes and editing purposes, I can’t write a 3000 word article in a night. That’s not the way I work. So it is a conscious effort, but it’s not because of reader’s attention spans. I just go from point A to point B.\r\n\r\nFollow Richard Fulco on Twitter <a href=\"https://twitter.com/RichardFulco\">@RichardFulco</a> and <a href=\"https://twitter.com/riffrafblog\">@RiffRafblog</a>','A Conversation with RiffRaf Founder Richard Fulco ','','publish','open','open','','a-conversation-with-riffraf-founder-richard-fulco','','','2014-03-31 09:30:23','2014-03-31 15:30:23','',0,'http://www.earthhertzrecords.com/?p=1650',0,'post','',1),(1651,2,'2014-03-27 19:33:26','2014-03-28 01:33:26','<b>Kath Galasso: How long did it take to write the book?</b>\r\n\r\nRichard Fulco: On and off for seven years. I got a major chunk of it done before the kids were born. I was racing against the clock. I was teaching, and after teaching I was writing for seven or eight hours, and I was writing on weekends for twelve hours, to get it done before the kids came along.\r\n\r\nI really just wanted to finish the book, publication wasn’t even in my vision. I’m a playwright mostly, and I’ve started a lot of things and never finished them. I committed to this book after one of my plays was in the New York Fringe Festival. I got kind of tired of working in the theater, and I thought the idea for the play might work better as a novel. So it took me a long time to figure out how to write a novel. It took me years to figure out how to write it, and I was also trying to purge myself of a lot of things. It was therapeutic for a while, then I said I’ve had enough therapy. I just want to make this book the best book I can make it.\r\n\r\n<b>On behalf of all the writers I know, how did you manage to get a publishing deal?</b>\r\n\r\nI met Mark through Riffraf. Mark is the publisher at Wampus Multi Media. Mark does great work with music, and he and I would just talk music. We just kept connecting musically, and I said “Mark, would you be interested in seeing a novel of literary fiction?” He published musical fiction, and he said “I was thinking about branching out into literary fiction, I’d love to see it.” So I sent him a copy, and about a month later he sent me a note with an in-depth analysis of the story. And that was it.\r\n\r\n<b>Your main character John Lenza, he’s a writer, but he doesn’t really write…</b>\r\n\r\nYeah, we all know people like that. Everyone’s writing, everyone has got an idea for a story. John (Lenza) is a wannabee. The irony of the story is that he’s at a time in his life where he’s meeting all these people that he normally wouldn’t hang out with. He meets this man, Teeny Duncan, a recovering alcoholic, a gay man who’s In his early 40’s, late 30’s, and he meets a lot of young boys right out of high school and makes these elaborate films with them. He hangs out in the coffee shop, but he has a penchant for good literature, and that’s what draws John to him. When Teeny finds out that John has a niche for writing, Teeny becomes a coach, then decides he’s going to write something on his own. And he writes a play. For John, who’s just thinking about writing, it’s really an eye-opener for him.\r\n\r\n<b>Tell me about your writing process.</b>\r\n\r\nFor a long time, it was when the muse struck. That was still when I was writing poetry and songs, I guess. When I started writing plays, I could no longer wait for the muse to strike. I don’t know why I started writing plays, I think now it’s because of my background and my upbringing. I’ve always been drawn to dialogue, and I’ve always been attracted to the Italian-American dinner table. It’s tragic and it’s funny as hell, and there are eight million conversations going on at once. My mom was kind of the master at this. She would be talking to my dad, and she’d look over at me and have a conversation. She’s have four or five conversations at once. I was always drawn to that.\r\n\r\nWhen I decided I was going to write the novel, I knew it had to be every day. I had to sit down and force myself. I couldn’t just wait for the muse to strike or the inspiration to hit, so I was writing while I was teaching. I wasn’t married at the time, so I’d come home and write until ten, eleven, sometimes twelve o’ clock. Then when the kids came along, it was when they would go down to nap, and when they’d go down to sleep. When I did my last edit on the book, five or six months last year, it was every day for eight hours. This was the hardest I’ve ever worked in my life.\r\n\r\n<b>How did RiffRaf come about?</b>\r\n\r\nI really wanted to be a musician. I was always involved in music. When I was eighteen, I started college and I started playing the saxophone, I had played the guitar. I wanted to play music and I did it for about ten years. I played the scene, played the circuit. I was primarily in two bands. But I was going to college and studying to become a teacher, an English major. I never thought about my future. I would just keep on doing this as long as I could do it. The hardest thing was to let it go, and face myself at twenty-seven, twenty-eight and say “I’m too old for this, it’s not happening. I’m not good enough.” Then I had to go teach, so I taught. And my wife, Colleen, said four years ago, “You know more about music than anyone I know, why don’t you try and write about it?” I knew nothing about blogs, but the more I thought about it, the more I thought, again like the novel, that I’m gonna do this because it’s something that I wanted to do, and I really missed music. I just love talking about music. I relate to musicians more than I do any other artists.\r\n\r\nSo I started blogging. At first it was once a week, then when it went to three times a week, it was a big deal. Then it was five days a week, then seven days a week. And now I have a staff.\r\n\r\nI thought I knew a lot about music four years ago, but I know a lot more now. I love learning about music. That’s how I started RiffRaf. It was about the history, not about subjectivity. I wasn’t going to write about my favorite bands and why they were my favorite bands. I wasn’t going to write about Katy Perry or Lady Gaga because I don’t know them. I think that’s been the biggest challenge, trying to include different acts, different bands.\r\n\r\n<b>One more question I have about RiffRaf. Most of the articles are short, is that a conscious decision because of everyone’s shortened attention span that you keep everything on the short side?</b>\r\n\r\nNo. Its just the way I write. Adjectives and flowery language, and overwrought sentences are not for me. You have something you feel, you have something to say, boom, boom, boom. The people who write for me, when I edit their stuff, I try not to change their tone, but I do cut and I do slice. It’s not a conscious effort, but I do believe it’s best. For writing purposes and editing purposes, I can’t write a 3000 word article in a night. That’s not the way I work. So it is a conscious effort, but it’s not because of reader’s attention spans. I just go from point A to point B.','','','inherit','open','open','','1650-revision-v1','','','2014-03-27 19:33:26','2014-03-28 01:33:26','',1650,'http://www.earthhertzrecords.com/2014/03/1650-revision-v1/',0,'revision','',0),(1652,2,'2014-03-27 20:42:55','2014-03-28 02:42:55','','RichardFulco-2','','inherit','open','open','','richardfulco-2','','','2014-03-27 20:42:55','2014-03-28 02:42:55','',1650,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/RichardFulco-2.jpg',0,'attachment','image/jpeg',0),(1653,2,'2014-03-27 20:44:10','2014-03-28 02:44:10','','Richard-Fulco-1','','inherit','open','open','','richard-fulco-1','','','2014-03-27 20:44:10','2014-03-28 02:44:10','',1650,'http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Richard-Fulco-1.jpg',0,'attachment','image/jpeg',0); INSERT INTO `wp_posts` VALUES (1654,2,'2014-03-27 20:50:08','2014-03-28 02:50:08','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/RichardFulco-2.jpg\"><img class=\"alignleft size-full wp-image-1652\" alt=\"RichardFulco-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/RichardFulco-2.jpg\" width=\"262\" height=\"283\" /></a>Richard Fulco is a writer, teacher, husband, father, musician, and as of March 18th, a published author. His first novel <em>There Is No End To The Slope</em> (Wampus Multimedia), is the story of an aspiring writer from Brooklyn, coincidentally or not, the New York City borough where the author grew up. I first encountered Richard as the editor of <a href=\"http://www.riffraf.net/\">RiffRaf</a>, a music blog he founded four years ago, and had the chance to speak with him about the journey from playwright to author of literary fiction, and a little road trip to a music blog.\r\n\r\n<b>Kath Galasso: How long did it take to write the book?</b>\r\n\r\nRichard Fulco: On and off for seven years. I got a major chunk of it done before the kids were born. I was racing against the clock. I was teaching, and after teaching I was writing for seven or eight hours, and I was writing on weekends for twelve hours, to get it done before the kids came along.\r\n\r\nI really just wanted to finish the book, publication wasn’t even in my vision. I’m a playwright mostly, and I’ve started a lot of things and never finished them. I committed to this book after one of my plays was in the New York Fringe Festival. I got kind of tired of working in the theater, and I thought the idea for the play might work better as a novel. So it took me a long time to figure out how to write a novel. It took me years to figure out how to write it, and I was also trying to purge myself of a lot of things. It was therapeutic for a while, then I said I’ve had enough therapy. I just want to make this book the best book I can make it.\r\n\r\n<b>On behalf of all the writers I know, how did you manage to get a publishing deal?</b>\r\n\r\nI met Mark (Doyon) through Riffraf. Mark is the publisher at <a href=\"http://wampus.com/richard-fulco/\">Wampus Multi Media</a>. Mark does great work with music, and he and I would just talk music. We just kept connecting musically, and I said “Mark, would you be interested in seeing a novel of literary fiction?” He published musical fiction, and he said “I was thinking about branching out into literary fiction, I’d love to see it.” So I sent him a copy, and about a month later he sent me a note with an in-depth analysis of the story. And that was it.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Richard-Fulco-1.jpg\"><img class=\"alignright size-medium wp-image-1653\" alt=\"Richard-Fulco-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Richard-Fulco-1-200x300.jpg\" width=\"200\" height=\"300\" /></a>Your main character John Lenza, he’s a writer, but he doesn’t really write…</b>\r\n\r\nYeah, we all know people like that. Everyone’s writing, everyone has got an idea for a story. John (Lenza) is a wannabee. The irony of the story is that he’s at a time in his life where he’s meeting all these people that he normally wouldn’t hang out with. He meets this man, Teeny Duncan, a recovering alcoholic, a gay man who’s In his early 40’s, late 30’s, and he meets a lot of young boys right out of high school and makes these elaborate films with them. He hangs out in the coffee shop, but he has a penchant for good literature, and that’s what draws John to him. When Teeny finds out that John has a niche for writing, Teeny becomes a coach, then decides he’s going to write something on his own. And he writes a play. For John, who’s just thinking about writing, it’s really an eye-opener for him.\r\n\r\n<b>Tell me about your writing process.</b>\r\n\r\nFor a long time, it was when the muse struck. That was still when I was writing poetry and songs, I guess. When I started writing plays, I could no longer wait for the muse to strike. I don’t know why I started writing plays, I think now it’s because of my background and my upbringing. I’ve always been drawn to dialogue, and I’ve always been attracted to the Italian-American dinner table. It’s tragic and it’s funny as hell, and there are eight million conversations going on at once. My mom was kind of the master at this. She would be talking to my dad, and she’d look over at me and have a conversation. She’s have four or five conversations at once. I was always drawn to that.\r\n\r\nWhen I decided I was going to write the novel, I knew it had to be every day. I had to sit down and force myself. I couldn’t just wait for the muse to strike or the inspiration to hit, so I was writing while I was teaching. I wasn’t married at the time, so I’d come home and write until ten, eleven, sometimes twelve o’ clock. Then when the kids came along, it was when they would go down to nap, and when they’d go down to sleep. When I did my last edit on the book, five or six months last year, it was every day for eight hours. This was the hardest I’ve ever worked in my life.\r\n\r\n<b>How did RiffRaf come about?</b>\r\n\r\nI really wanted to be a musician. I was always involved in music. When I was eighteen, I started college and I started playing the saxophone, I had played the guitar. I wanted to play music and I did it for about ten years. I played the scene, played the circuit. I was primarily in two bands. But I was going to college and studying to become a teacher, an English major. I never thought about my future. I would just keep on doing this as long as I could do it. The hardest thing was to let it go, and face myself at twenty-seven, twenty-eight and say “I’m too old for this, it’s not happening. I’m not good enough.” Then I had to go teach, so I taught. And my wife, Colleen, said four years ago, “You know more about music than anyone I know, why don’t you try and write about it?” I knew nothing about blogs, but the more I thought about it, the more I thought, again like the novel, that I’m gonna do this because it’s something that I wanted to do, and I really missed music. I just love talking about music. I relate to musicians more than I do any other artists.\r\n\r\nSo I started blogging. At first it was once a week, then when it went to three times a week, it was a big deal. Then it was five days a week, then seven days a week. And now I have a staff.\r\n\r\nI thought I knew a lot about music four years ago, but I know a lot more now. I love learning about music. That’s how I started RiffRaf. It was about the history, not about subjectivity. I wasn’t going to write about my favorite bands and why they were my favorite bands. I wasn’t going to write about Katy Perry or Lady Gaga because I don’t know them. I think that’s been the biggest challenge, trying to include different acts, different bands.\r\n\r\n<b>One more question I have about RiffRaf. Most of the articles are short, is that a conscious decision because of everyone’s shortened attention span that you keep everything on the short side?</b>\r\n\r\nNo. Its just the way I write. Adjectives and flowery language, and overwrought sentences are not for me. You have something you feel, you have something to say, boom, boom, boom. The people who write for me, when I edit their stuff, I try not to change their tone, but I do cut and I do slice. It’s not a conscious effort, but I do believe it’s best. For writing purposes and editing purposes, I can’t write a 3000 word article in a night. That’s not the way I work. So it is a conscious effort, but it’s not because of reader’s attention spans. I just go from point A to point B.','A Conversation with RiffRaf Founder Richard Fulco ','','inherit','open','open','','1650-revision-v1','','','2014-03-27 20:50:08','2014-03-28 02:50:08','',1650,'http://www.earthhertzrecords.com/2014/03/1650-revision-v1/',0,'revision','',0),(1655,2,'2014-03-27 20:53:47','2014-03-28 02:53:47','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/RichardFulco-2.jpg\"><img class=\"alignleft size-full wp-image-1652\" alt=\"RichardFulco-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/RichardFulco-2.jpg\" width=\"262\" height=\"283\" /></a>Richard Fulco is a writer, teacher, husband, father, musician, and as of March 18th, a published novelist. His first novel <em>There Is No End To The Slope</em> (Wampus Multimedia), is the story of an aspiring writer from Brooklyn, coincidentally or not, the New York City borough where the author grew up. I first encountered Richard as the editor of <a href=\"http://www.riffraf.net/\">RiffRaf</a>, a music blog he founded four years ago, and had the chance to speak with him about the journey from playwright to author of literary fiction, and a little road trip to a music blog.\r\n\r\n<b>Kath Galasso: How long did it take to write the book?</b>\r\n\r\nRichard Fulco: On and off for seven years. I got a major chunk of it done before the kids were born. I was racing against the clock. I was teaching, and after teaching I was writing for seven or eight hours, and I was writing on weekends for twelve hours, to get it done before the kids came along.\r\n\r\nI really just wanted to finish the book, publication wasn’t even in my vision. I’m a playwright mostly, and I’ve started a lot of things and never finished them. I committed to this book after one of my plays was in the New York Fringe Festival. I got kind of tired of working in the theater, and I thought the idea for the play might work better as a novel. So it took me a long time to figure out how to write a novel. It took me years to figure out how to write it, and I was also trying to purge myself of a lot of things. It was therapeutic for a while, then I said I’ve had enough therapy. I just want to make this book the best book I can make it.\r\n\r\n<b>On behalf of all the writers I know, how did you manage to get a publishing deal?</b>\r\n\r\nI met Mark (Doyon) through Riffraf. Mark is the publisher at <a href=\"http://wampus.com/richard-fulco/\">Wampus Multimedia</a>. Mark does great work with music, and he and I would just talk music. We just kept connecting musically, and I said “Mark, would you be interested in seeing a novel of literary fiction?” He published musical fiction, and he said “I was thinking about branching out into literary fiction, I’d love to see it.” So I sent him a copy, and about a month later he sent me a note with an in-depth analysis of the story. And that was it.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Richard-Fulco-1.jpg\"><img class=\"alignright size-medium wp-image-1653\" alt=\"Richard-Fulco-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Richard-Fulco-1-200x300.jpg\" width=\"200\" height=\"300\" /></a>Your main character John Lenza, he’s a writer, but he doesn’t really write.</b>\r\n\r\nYeah, we all know people like that. Everyone’s writing, everyone has got an idea for a story. John (Lenza) is a wannabee. The irony of the story is that he’s at a time in his life where he’s meeting all these people that he normally wouldn’t hang out with. He meets this man, Teeny Duncan, a recovering alcoholic, a gay man who’s In his early 40’s, late 30’s, and he meets a lot of young boys right out of high school and makes these elaborate films with them. He hangs out in the coffee shop, but he has a penchant for good literature, and that’s what draws John to him. When Teeny finds out that John has a niche for writing, Teeny becomes a coach, then decides he’s going to write something on his own. And he writes a play. For John, who’s just thinking about writing, it’s really an eye-opener for him.\r\n\r\n<b>Tell me about your writing process.</b>\r\n\r\nFor a long time, it was when the muse struck. That was still when I was writing poetry and songs, I guess. When I started writing plays, I could no longer wait for the muse to strike. I don’t know why I started writing plays, I think now it’s because of my background and my upbringing. I’ve always been drawn to dialogue, and I’ve always been attracted to the Italian-American dinner table. It’s tragic and it’s funny as hell, and there are eight million conversations going on at once. My mom was kind of the master at this. She would be talking to my dad, and she’d look over at me and have a conversation. She’s have four or five conversations at once. I was always drawn to that.\r\n\r\nWhen I decided I was going to write the novel, I knew it had to be every day. I had to sit down and force myself. I couldn’t just wait for the muse to strike or the inspiration to hit, so I was writing while I was teaching. I wasn’t married at the time, so I’d come home and write until ten, eleven, sometimes twelve o’ clock. Then when the kids came along, it was when they would go down to nap, and when they’d go down to sleep. When I did my last edit on the book, five or six months last year, it was every day for eight hours. This was the hardest I’ve ever worked in my life.\r\n\r\n<b>How did RiffRaf come about?</b>\r\n\r\nI really wanted to be a musician. I was always involved in music. When I was eighteen, I started college and I started playing the saxophone, I had played the guitar. I wanted to play music and I did it for about ten years. I played the scene, played the circuit. I was primarily in two bands. But I was going to college and studying to become a teacher, an English major. I never thought about my future. I would just keep on doing this as long as I could do it. The hardest thing was to let it go, and face myself at twenty-seven, twenty-eight and say “I’m too old for this, it’s not happening. I’m not good enough.” Then I had to go teach, so I taught. And my wife, Colleen, said four years ago, “You know more about music than anyone I know, why don’t you try and write about it?” I knew nothing about blogs, but the more I thought about it, the more I thought, again like the novel, that I’m gonna do this because it’s something that I wanted to do, and I really missed music. I just love talking about music. I relate to musicians more than I do any other artists.\r\n\r\nSo I started blogging. At first it was once a week, then when it went to three times a week, it was a big deal. Then it was five days a week, then seven days a week. And now I have a staff.\r\n\r\nI thought I knew a lot about music four years ago, but I know a lot more now. I love learning about music. That’s how I started RiffRaf. It was about the history, not about subjectivity. I wasn’t going to write about my favorite bands and why they were my favorite bands. I wasn’t going to write about Katy Perry or Lady Gaga because I don’t know them. I think that’s been the biggest challenge, trying to include different acts, different bands.\r\n\r\n<b>One more question I have about RiffRaf. Most of the articles are short, is that a conscious decision because of everyone’s shortened attention span that you keep everything on the short side?</b>\r\n\r\nNo. Its just the way I write. Adjectives and flowery language, and overwrought sentences are not for me. You have something you feel, you have something to say, boom, boom, boom. The people who write for me, when I edit their stuff, I try not to change their tone, but I do cut and I do slice. It’s not a conscious effort, but I do believe it’s best. For writing purposes and editing purposes, I can’t write a 3000 word article in a night. That’s not the way I work. So it is a conscious effort, but it’s not because of reader’s attention spans. I just go from point A to point B.','A Conversation with RiffRaf Founder Richard Fulco ','','inherit','open','open','','1650-revision-v1','','','2014-03-27 20:53:47','2014-03-28 02:53:47','',1650,'http://www.earthhertzrecords.com/2014/03/1650-revision-v1/',0,'revision','',0),(1656,2,'2014-03-28 06:19:51','2014-03-28 12:19:51','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/RichardFulco-2.jpg\"><img class=\"alignleft size-full wp-image-1652\" alt=\"RichardFulco-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/RichardFulco-2.jpg\" width=\"262\" height=\"283\" /></a>As if being a writer, teacher, husband, father, and musician wasn\'t enough to put on his resume, as of March 18th, Richard Fulco is also a published novelist. His first book, <a href=\"http://www.amazon.com/There-Is-End-This-Slope/dp/0979747171/ref=sr_1_1?ie=UTF8&qid=1393253687&sr=8-1&keywords=richard+fulco\"><em>There Is No End To This Slope</em> (Wampus Multimedia)</a>, is the story of an aspiring writer from Brooklyn, coincidentally or not, the same New York City borough where the author grew up. My first encounter with Richard was about a year ago, when he was still trying to finish the book, take care of his twin toddlers, and also edit and write for <a href=\"http://www.riffraf.net/\">RiffRaf</a>, a music blog he founded four years ago. Recently, I had the chance to speak with him about the journey from playwright to author of literary fiction, and that little road trip known as a music blog.\r\n\r\n<b>Kath Galasso: How long did it take to write the book?</b>\r\n\r\nRichard Fulco: On and off for seven years. I got a major chunk of it done before the kids were born. I was racing against the clock. I was teaching, and after teaching I was writing for seven or eight hours, and I was writing on weekends for twelve hours, to get it done before the kids came along.\r\n\r\nI really just wanted to finish the book, publication wasn’t even in my vision. I’m a playwright mostly, and I’ve started a lot of things and never finished them. I committed to this book after one of my plays was in the New York Fringe Festival. I got kind of tired of working in the theatre, and I thought the idea for the play might work better as a novel. So it took me a long time to figure out how to write a novel. It took me years to figure out how to write it, and I was also trying to purge myself of a lot of things. It was therapeutic for a while, then I said I’ve had enough therapy. I just want to make this book the best book I can make it.\r\n\r\n<b>On behalf of all the writers I know, how did you manage to get a publishing deal?</b>\r\n\r\nI met Mark (Doyon) through RiffRaf. Mark is the publisher at <a href=\"http://wampus.com/richard-fulco/\">Wampus Multimedia</a>. Mark does great work with music, and he and I would just talk music. We just kept connecting musically, and I said “Mark, would you be interested in seeing a novel of literary fiction?” He published a couple of books of musical fiction, and he said “I was thinking about branching out into literary fiction, I’d love to see it.” So I sent him a copy, and about a month later he sent me a note with an in-depth analysis of the story. He taught me more about the story in that letter, than any editor has. And that was it.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Richard-Fulco-1.jpg\"><img class=\"alignright size-medium wp-image-1653\" alt=\"Richard-Fulco-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Richard-Fulco-1-200x300.jpg\" width=\"200\" height=\"300\" /></a>Your main character John Lenza, he’s a writer, but he doesn’t really write.</b>\r\n\r\nYeah, we all know people like that. Everyone’s writing, everyone has an idea for a story. John (Lenza) is a wannabee. The irony of the story is that he’s at a time in his life where he’s meeting all these people that he normally wouldn’t hang out with. He meets this man, Teeny Duncan, a recovering alcoholic, a gay man who’s in his early 40’s, late 30’s, and he meets a lot of young boys right out of high school and makes these elaborate films with them. He hangs out in the coffee shop, but he has a penchant for good literature, and that’s what draws John to him. When Teeny finds out that John is interested in writing, Teeny becomes a coach, then decides he’s going to write something on his own. And he writes a play. For John, who’s just thinking about writing, it’s really an eye-opener for him.\r\n\r\n<b>Tell me about your writing process.</b>\r\n\r\nFor a long time, it was when the muse struck. That was still when I was writing poetry and songs, I guess. When I started writing plays, I couldn\'t really wait for the muse to strike. I don’t know why I started writing plays, I think now it’s because of my background and my upbringing. I’ve always been drawn to dialogue, and I’ve always been attracted to the Italian-American dinner table. It’s tragic and it’s funny as hell, and there are eight million conversations going on at once. My mom was kind of the master at this. She would be talking to my dad, and she’d look over at me and have a conversation with me. She’s have four or five conversations at once. I was always drawn to that.\r\n\r\nWhen I decided I was going to write the novel, I knew it had to be every day. I had to sit down and force myself. I couldn’t just wait for the muse to strike or the inspiration to hit, so I was writing while I was teaching. I wasn’t married at the time, so I’d come home and write until ten, eleven, sometimes twelve o’ clock. Then when the kids came along, it was when they would go down to nap, and when they’d go down to sleep. When I did my last edit on the book, five or six months last year, it was every day for eight hours. Except for my kids, this was the hardest I\'ve ever worked in my life.\r\n\r\n<b>How did RiffRaf come about?</b>\r\n\r\nI really wanted to be a musician. I was always involved in music. When I was eighteen, I started college and I started playing the saxophone, I had played the guitar. I wanted to play music and I did it for about ten years. I played the scene, played the circuit. I was primarily in two bands. But I was going to college and studying to become a teacher, an English major. I never thought about my future. I would just keep on doing this as long as I could do it. The hardest thing was to let it go, and face myself at twenty-seven, twenty-eight and say “I’m too old for this, it’s not happening. I’m not good enough.” That was probably the most depressed I ever was in my life. Then I had to go teach, so I taught. And my wife Colleen, said four years ago, “You know more about music than anyone I know, why don’t you try and write about it?” I knew nothing about blogs, but the more I thought about it, the more I thought, again like the novel, that I was going to do that because it was something I wanted to do, and I really missed music. I just love talking about music. I relate to musicians more than I do any other artists.\r\n\r\nSo I started blogging. It started off once a week, then when it went to three times a week. That was a big deal. Then it was five days a week, then seven days a week. And now I have a staff.\r\n\r\nI thought I knew a lot about music four years ago, I know a lot more now. I love learning about music, I love the history of it. That’s how I started RiffRaf, from that angle. It would be mostly about the history, not about subjectivity. I wasn’t going to write about my favorite bands and why they were my favorite bands. I do write about my favorite bands, but I keep a lot of the editorial stuff out. I wasn’t going to write about Katy Perry or Lady Gaga because I don’t know them. I think that’s been the biggest challenge, trying to include different acts, different bands.\r\n\r\n<b>One more question I have about RiffRaf. Most of the articles are short, is that a conscious decision because of everyone’s shortened attention span that you keep everything on the short side?</b>\r\n\r\nNo. Its just the way I write. Adjectives and flowery language, and overwrought sentences are not for me. You have something you feel, you have something to say, boom, boom, boom. The people who write for me, when I edit their stuff, I try not to change their tone, but I do cut and I do slice. It’s not a conscious effort, but I do believe it’s best. For writing purposes and editing purposes, I can’t write a 3000 word article in a night. That’s not the way I work. So it is a conscious effort, but it’s not because of reader’s attention spans. I just go from point A to point B.','A Conversation with RiffRaf Founder Richard Fulco ','','inherit','open','open','','1650-revision-v1','','','2014-03-28 06:19:51','2014-03-28 12:19:51','',1650,'http://www.earthhertzrecords.com/2014/03/1650-revision-v1/',0,'revision','',0),(1657,2,'2014-03-28 06:30:36','2014-03-28 12:30:36','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/RichardFulco-2.jpg\"><img class=\"alignleft size-full wp-image-1652\" alt=\"RichardFulco-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/RichardFulco-2.jpg\" width=\"262\" height=\"283\" /></a>As if being a writer, teacher, husband, father, and musician wasn\'t enough to put on his resume, as of March 18th, Richard Fulco is also a published novelist. His first book, <a href=\"http://www.amazon.com/There-Is-End-This-Slope/dp/0979747171/ref=sr_1_1?ie=UTF8&qid=1393253687&sr=8-1&keywords=richard+fulco\"><em>There Is No End To This Slope</em> (Wampus Multimedia)</a>, is the story of an aspiring writer from Brooklyn, coincidentally or not, the same New York City borough where the author grew up. My first encounter with Richard was about a year ago, when he was still trying to finish the book, take care of his twin toddlers, and also edit and write for <a href=\"http://www.riffraf.net/\">RiffRaf</a>, the music blog he founded four years ago. Recently, I had the chance to speak with him about the journey from playwright to author of literary fiction, and that little road trip known as a music blog.\r\n\r\n \r\n\r\n<b>Kath Galasso: How long did it take to write the book?</b>\r\n\r\nRichard Fulco: On and off for seven years. I got a major chunk of it done before the kids were born. I was racing against the clock. I was teaching, and after teaching I was writing for seven or eight hours, and I was writing on weekends for twelve hours, to get it done before the kids came along.\r\n\r\nI really just wanted to finish the book, publication wasn’t even in my vision. I’m a playwright mostly, and I’ve started a lot of things and never finished them. I committed to this book after one of my plays was in the New York Fringe Festival. I got kind of tired of working in the theatre, and I thought the idea for the play might work better as a novel. It took me a long time to figure out how to write a novel. It took me years to figure out how to write it, and I was also trying to purge myself of a lot of things. It was therapeutic for a while, then I said I’ve had enough therapy. I just want to make this book the best book I can make it.\r\n\r\n<b>On behalf of all the writers I know, how did you manage to get a publishing deal?</b>\r\n\r\nI met Mark (Doyon) through RiffRaf. Mark is the publisher at <a href=\"http://wampus.com/richard-fulco/\">Wampus Multimedia</a>. Mark does great work with music, and he and I would just talk music. We just kept connecting musically, and I said “Mark, would you be interested in seeing a novel of literary fiction?” He published a couple of books of musical fiction, and he said “I was thinking about branching out into literary fiction, I’d love to see it.” So I sent him a copy, and about a month later he sent me a note with an in-depth analysis of the story. He taught me more about the story in that letter, than any editor has. And that was it.\r\n\r\n<b><a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Richard-Fulco-1.jpg\"><img class=\"alignright size-medium wp-image-1653\" alt=\"Richard-Fulco-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/03/Richard-Fulco-1-200x300.jpg\" width=\"200\" height=\"300\" /></a>Your main character John Lenza, he’s a writer, but he doesn’t really write.</b>\r\n\r\nYeah, we all know people like that. Everyone’s writing, everyone has an idea for a story. John (Lenza) is a wannabee. The irony of the story is that he’s at a time in his life where he’s meeting all these people that he normally wouldn’t hang out with. He meets this man, Teeny Duncan, a recovering alcoholic, a gay man who’s in his early 40’s, late 30’s, and he meets a lot of young boys right out of high school and makes these elaborate films with them. He hangs out in the coffee shop, but he has a penchant for good literature, and that’s what draws John to him. When Teeny finds out that John is interested in writing, Teeny becomes a coach, then decides he’s going to write something on his own. And he writes a play. For John, who’s just thinking about writing, it’s really an eye-opener for him.\r\n\r\n<b>Tell me about your writing process.</b>\r\n\r\nFor a long time, it was when the muse struck. That was still when I was writing poetry and songs, I guess. When I started writing plays, I couldn\'t really wait for the muse to strike. I don’t know why I started writing plays, I think now it’s because of my background and my upbringing. I’ve always been drawn to dialogue, and I’ve always been attracted to the Italian-American dinner table. It’s tragic and it’s funny as hell, and there are eight million conversations going on at once. My mom was kind of the master at this. She would be talking to my dad, and she’d look over at me and have a conversation with me. She’s have four or five conversations at once. I was always drawn to that.\r\n\r\nWhen I decided I was going to write the novel, I knew it had to be every day. I had to sit down and force myself. I couldn’t just wait for the muse to strike or the inspiration to hit, so I was writing while I was teaching. I wasn’t married at the time, so I’d come home and write until ten, eleven, sometimes twelve o’ clock. Then when the kids came along, it was when they would go down to nap, and when they’d go down to sleep. When I did my last edit on the book, five or six months last year, it was every day for eight hours. Except for my kids, this was the hardest I\'ve ever worked in my life.\r\n\r\n<b>How did RiffRaf come about?</b>\r\n\r\nI really wanted to be a musician. I was always involved in music. When I was eighteen, I started college and I started playing the saxophone, I had played the guitar. I wanted to play music and I did it for about ten years. I played the scene, played the circuit. I was primarily in two bands. But I was going to college and studying to become a teacher, an English major. I never thought about my future. I would just keep on doing this as long as I could do it. The hardest thing was to let it go, and face myself at twenty-seven, twenty-eight and say “I’m too old for this, it’s not happening. I’m not good enough.” That was probably the most depressed I ever was in my life. Then I had to go teach, so I taught. And my wife Colleen, said four years ago, “You know more about music than anyone I know, why don’t you try and write about it?” I knew nothing about blogs, but the more I thought about it, the more I thought, again like the novel, that I was going to do that because it was something I wanted to do, and I really missed music. I just love talking about music. I relate to musicians more than I do any other artists.\r\n\r\nSo I started blogging. It started off once a week, then when it went to three times a week. That was a big deal. Then it was five days a week, then seven days a week. And now I have a staff.\r\n\r\nI thought I knew a lot about music four years ago, I know a lot more now. I love learning about music, I love the history of it. That’s how I started RiffRaf, from that angle. It would be mostly about the history, not about subjectivity. I wasn’t going to write about my favorite bands and why they were my favorite bands. I do write about my favorite bands, but I keep a lot of the editorial stuff out. I wasn’t going to write about Katy Perry or Lady Gaga because I don’t know them. I think that’s been the biggest challenge, trying to include different acts, different bands.\r\n\r\n<b>One more question I have about RiffRaf. Most of the articles are short, is that a conscious decision because of everyone’s shortened attention span that you keep everything on the short side?</b>\r\n\r\nNo. Its just the way I write. Adjectives and flowery language, and overwrought sentences are not for me. You have something you feel, you have something to say, boom, boom, boom. The people who write for me, when I edit their stuff, I try not to change their tone, but I do cut and I do slice. It’s not a conscious effort, but I do believe it’s best. For writing purposes and editing purposes, I can’t write a 3000 word article in a night. That’s not the way I work. So it is a conscious effort, but it’s not because of reader’s attention spans. I just go from point A to point B.\r\n\r\nFollow Richard Fulco on Twitter <a href=\"https://twitter.com/RichardFulco\">@RichardFulco</a> and <a href=\"https://twitter.com/riffrafblog\">@RiffRafblog</a>','A Conversation with RiffRaf Founder Richard Fulco ','','inherit','open','open','','1650-revision-v1','','','2014-03-28 06:30:36','2014-03-28 12:30:36','',1650,'http://www.earthhertzrecords.com/2014/03/1650-revision-v1/',0,'revision','',0),(1659,1,'2014-03-28 11:44:25','2014-03-28 17:44:25','<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Alabama, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\n\r\n<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\n\r\n\r\n[caption id=\"attachment_132\" align=\"alignnone\" width=\"960\"]<a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\"><img class=\" wp-image-132\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/slide_001_en.png\" width=\"960\" height=\"210\" /></a> The Billy David Band. An inspiring blend of Reggae and Pop![/caption]','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2014-03-28 11:44:25','2014-03-28 17:44:25','',248,'http://www.earthhertzrecords.com/2014/03/248-revision-v1/',0,'revision','',0),(1660,1,'2014-03-28 11:45:32','2014-03-28 17:45:32','[caption id=\"attachment_132\" align=\"alignnone\" width=\"960\"]<a href=\"http://www.earthhertzrecords.com/artists/the-billy-david-band/\"><img class=\" wp-image-132\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/slide_001_en.png\" width=\"960\" height=\"210\" /></a> The Billy David Band. An inspiring blend of Reggae and Pop![/caption]\r\n\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\"><img class=\"alignleft size-full wp-image-511\" alt=\"EarthHertz-BillyDavid-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-1.jpg\" width=\"178\" height=\"178\" /></a>The song of a man\'s life is determined by the path he has traveled. Billy David Millican of <strong>The Billy David Band</strong>, has enjoyed a journey of adventures, as well as miles. Leaving his birthplace of Alabama, David spent years on both land and sea, experiencing many different cultures, lifestyles and music.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\"><img class=\"alignright size-full wp-image-512\" alt=\"EarthHertz-BillyDavid-2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-2.jpg\" width=\"178\" height=\"178\" /></a>Within the reggae community in Key West, David’s musical talents were nurtured. Later, after moving to San Diego, his connection with music was broadened, as he began building recording studios. The California vibe fits perfectly with David’s spirit, and love of nature. An avid beekeeper and caretaker of the planet, David’s music embodies a one world philosophy.\r\n\r\n<i> <a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\"><img class=\"alignleft size-full wp-image-513\" alt=\"EarthHertz-BillyDavid-3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/EarthHertz-BillyDavid-3.jpg\" width=\"178\" height=\"178\" /></a>Magic</i>, the first album release from The Billy David Band on Earth Hertz Records, takes that ideology and translates it into a reggae based, pop infused musical voyage. With many of reggae’s brightest stars adding their talent to David’s songs, <i>Magic</i> is a finely produced album where the artist remains true to his vision.\r\n\r\n\r\n<a href=\"https://itunes.apple.com/us/album/magic/id697425860?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>','The Billy David Band','','inherit','open','open','','248-revision-v1','','','2014-03-28 11:45:32','2014-03-28 17:45:32','',248,'http://www.earthhertzrecords.com/2014/03/248-revision-v1/',0,'revision','',0),(1661,1,'2014-03-28 11:47:21','2014-03-28 17:47:21','[caption id=\"attachment_135\" align=\"alignnone\" width=\"960\"]<a href=\"http://www.earthhertzrecords.com/artists/glen-spreen-2/\"><img class=\" wp-image-135\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/09/slide_002_en.png\" width=\"960\" height=\"210\" /></a> Glen Spreen has been enriching our lives thru music for 50 years![/caption]\r\n\r\n\r\n[caption id=\"attachment_579\" align=\"alignright\" width=\"224\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me.jpg\"><img class=\"size-medium wp-image-579\" alt=\"Glen with Wayne Jackson(r) of the Memphis Horns\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Wayne-and-Me-224x300.jpg\" width=\"224\" height=\"300\" /></a> Glen with Wayne Jackson(r) of the Memphis Horns[/caption]\r\n\r\nMusic has always been a major force in the life of <strong>Glen Spreen</strong>. Music was the reason he left his hometown of Houston, Texas, and it was also the reason he moved to Memphis, Nashville, Atlanta, Europe and California. Even after he retired from a successful career in the music business, he built a recording studio in his home to create the music that played inside his heart.\r\n\r\n[caption id=\"attachment_580\" align=\"alignleft\" width=\"150\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011.jpg\"><img class=\"size-thumbnail wp-image-580\" alt=\"With B.J. Thomas\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Austin-show-backstage-2011-150x150.jpg\" width=\"150\" height=\"150\" /></a> With B.J. Thomas[/caption]\r\n\r\nThroughout his career in the music business, Glen’s arrangements were known for creating a mood within a song. Working alongside such music legends as Joan Baez, Dave Loggins, Dan Fogelberg, B.J. Thomas and Elvis Presley, Spreen not only arranged, but also wrote, produced and played on a vast music catalog, crossing over many music genres.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams.jpg\"><img class=\"alignright size-thumbnail wp-image-581\" alt=\"Glen Spreen-Dreams\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/Glen-Spreen-Dreams-150x150.jpg\" width=\"150\" height=\"150\" /></a>In his first release for Earth Hertz Records, Glen Spreen has written, played all instrumentation, and produced an album where the moods are many, and the music is dynamic. <em>Dreams</em> is a instrumental journey through all the emotions your mind and heart can produce. From tension to elation, or serenity to adversity, <em>Dreams</em> uses tempo and melody as a way of passage from one emotion to the next.\r\n\r\n<strong>Dreams\r\n<a href=\"https://itunes.apple.com/us/album/dreams/id694336061?uo=4&at=10lb2y\" target=\"itunes_store\"style=\"display:inline-block;overflow:hidden;background:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.png) no-repeat;width:110px;height:40px;@media only screen{background-image:url(https://linkmaker.itunes.apple.com/htmlResources/assets/en_us//images/web/linkmaker/badge_itunes-lrg.svg);}\"></a>\r\nMP3</strong>\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00023-Dreams.mp3\r\n1. Dreams\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00024-WhispersofSigh.mp3\r\n2. Whispers Of Sigh\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00025-CloudsAreForming.mp3\r\n3. Clouds Are Forming\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00026-GameChanger.mp3\r\n4. Game Changer\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00027-HorizonstoVisualize.mp3\r\n5. Horizons To Visualize\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00028-Spirit.mp3\r\n6. Spirit\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00029-Willow.mp3\r\n7. Willow\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00030-Pensive.mp3\r\n8. Pensive\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00031-DimLight.mp3\r\n9. Dim Light\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00032-LovesEndlessWar.mp3\r\n10. Love\'s Endless War\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00033-NaivetyReleasing.mp3\r\n11. Naivety Releasing\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U99_11_00034-StormsofApria.mp3\r\n12. Storms of Apria\r\nhttps://s3.amazonaws.com/ehLaunchMP3/QM-U991100035-DimLightReprise.mp3\r\n13. Dim Light Reprise\r\n\r\n<strong>Videos</strong>\r\n<iframe src=\"//www.youtube.com/embed/6OybAAXA0W0\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\nDreams','Glen Spreen','','inherit','open','open','','747-revision-v1','','','2014-03-28 11:47:21','2014-03-28 17:47:21','',747,'http://www.earthhertzrecords.com/2014/03/747-revision-v1/',0,'revision','',0),(1663,1,'2014-03-28 14:26:58','2014-03-28 20:26:58','','','','inherit','open','open','','joshayers','','','2014-03-28 14:26:58','2014-03-28 20:26:58','',877,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers.png',0,'attachment','image/png',0),(1679,2,'2014-04-09 06:33:36','2014-04-09 12:33:36','<p align=\"center\"><strong><i>“I hear it callin\', baby\r\nSound so sweet and plain\r\nI gotta go\r\n\'cause the road\'s my middle name”</i></strong></p>\r\n<p align=\"center\">…”The Road’s My Middle Name” by Bonnie Raitt</p>\r\nApproaching her mid-60’s, Bonnie Raitt is still playing hard and kicking ass on tour, and just like her daddy before her, most of her life has been spent on the road. This is true for most musicians and especially true of the generation before Bonnie. Many of those old-timers in their late 70’s and 80’s are still paying their dues on the road. For many, it’s all they know and will just keep doing it until it’s physically impossible.\r\n\r\nGood idea or not?\r\n\r\nThere are several reasons artists keep on keeping on: the financial need to work or needing the camaraderie of those other road musicians you call family, are two of the main ones. And if the road family is the only one you have, they probably won’t tell you it’s time to quit.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/katstheory-blues-1.jpg\"><img class=\"alignleft size-medium wp-image-1680\" alt=\"katstheory-blues-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/katstheory-blues-1-257x300.jpg\" width=\"257\" height=\"300\" /></a>\r\n\r\nThis past week, there’s been news about two musical legends having problems during their live shows. As someone who considers it an honor to attend a concert by those musicians who broke the path, I don’t really expect some of the old blues artists for example, to be playing at the same level they were thirty years ago. Not too long ago, I was at a blues show where James Cotton sat and played his blues harp with everything he had. Listening, I could only imagine how good he was “in his day.” In the big picture, how well he played didn’t matter because it was privilege to be a witness to what will probably be one of his last tours.\r\n\r\nHowever there are moments when a legend starts losing command of his musicianship. It seems BB King had some issues at a recent St. Louis show, where he rambled instead of telling stories and completed only a handful of songs. Apparently, the crowd was not very understanding. Word also comes that Chuck Berry made many mistakes and forgot lyrics at a recent show. If I had attended those shows, I could never have heckled them, but I would have been overwhelmed by sadness. One can only hope the people around them will care more for the men themselves, and less for the money they bring in.\r\n\r\nAs more and more of the classic rock era musicians age many are still performing at a high level, though it’s becoming obvious many should quit and let fans retain memories of seeing them in their prime. Too often however, the draw of quick cash is all the incentive they need to get back on stage. A 73 year-old rocker once told me how sad it was to see other performers not able or willing to give the fans what they were expecting. Most of these fans had memories of what the artist once was, and when they saw their favorite singer a shadow of their former self, the admiration in their eyes turned to pity.\r\n\r\nLegends deserve better than that.\r\n\r\nPost by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Sometimes the Road is Too Long','','publish','open','open','','sometimes-the-road-is-too-long','','','2014-04-09 06:33:36','2014-04-09 12:33:36','',0,'http://www.earthhertzrecords.com/?p=1679',0,'post','',0),(1666,1,'2014-03-28 14:30:59','2014-03-28 20:30:59','[caption id=\"attachment_1663\" align=\"alignnone\" width=\"960\"]<img class=\" wp-image-1663 \" alt=\"JoshAyers\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/JoshAyers.png\" width=\"960\" height=\"210\" /> Joshua Ayers is an Earth Hertz producer. Watch for many more projects from this talented artist![/caption]\r\n\r\n ','','','inherit','open','open','','877-revision-v1','','','2014-03-28 14:30:59','2014-03-28 20:30:59','',877,'http://www.earthhertzrecords.com/2014/03/877-revision-v1/',0,'revision','',0),(1670,1,'2014-03-28 15:18:42','2014-03-28 21:18:42','','','','inherit','open','open','','hmslider-2','','','2014-03-28 15:18:42','2014-03-28 21:18:42','',872,'http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HMslider1.png',0,'attachment','image/png',0),(1671,1,'2014-03-28 15:19:21','2014-03-28 21:19:21','[caption id=\"attachment_1670\" align=\"alignnone\" width=\"1016\"]<img class=\" wp-image-1670\" alt=\"\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2013/10/HMslider1.png\" width=\"1016\" height=\"233\" /> Hannah Mae is making music in the woods of Kentucky and we are getting it out there![/caption]','','','inherit','open','open','','872-revision-v1','','','2014-03-28 15:19:21','2014-03-28 21:19:21','',872,'http://www.earthhertzrecords.com/2014/03/872-revision-v1/',0,'revision','',0),(1673,2,'2014-04-01 06:35:07','2014-04-01 12:35:07','Recently, while conducting an<a href=\"http://www.earthhertzrecords.com/2014/03/a-conversation-with-riffraf-founder-richard-fulco/\"> interview with Richard Fulco</a>, the founder of the music blog <a href=\"http://www.riffraf.net/\">RiffRaf</a>, our conversation drifted to the Grammy Awards, which I had been lucky enough to attend in January. We were talking about the odd pairings of musical acts the Grammys always seem to offer, and which more times than not, fail miserably. Case in point for this year: Chicago and Robin Thicke. As we talked about it, Richard said something to the effect that not every singer can cross-over to other genres and make it work. For example, not every R&B singer can sing rock and vice versa.\r\n\r\n[caption id=\"attachment_1674\" align=\"alignright\" width=\"199\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986.jpg\"><img class=\"size-medium wp-image-1674\" alt=\"photo via Wikipedia\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986-199x300.jpg\" width=\"199\" height=\"300\" /></a> photo via Wikipedia[/caption]\r\n\r\nThat got me thinking about how often rock drummers for example, can hold their own across different musical styles. Today marks what would have been the 60th birthday of one of the few drummers to excel far beyond the limits of rock. Jeff Porcaro was well known as one of the founding members of Toto, but as a session musician, he did way more than \"Hold The Line.\"\r\n\r\nHe began playing the drums around the age of seven, and at seventeen, he was already touring with Sonny & Cher. Toto was a huge part of his life, but then take a look at a few of the names he worked with in the studio: Earth, Wind & Fire, Barbra Streisand, Al Jarreau, Aretha Franklin, George Benson, Herbie Hancock, Dr. John, Ray Charles, Dolly Parton, Etta James, Ruben Blades, Bonnie Raitt, Boz Scaggs, and Dionne Warwick.\r\n\r\nImpressive, yeah some. As for the artists closer to the rock genre, here\'s a few names you might know: Jackson Browne, Joe Cocker, Crosby, Stills & Nash, Steely Dan, Hall & Oates, Don Henley, Michael Jackson, Elton John, Madonna, Pink Floyd, Bruce Springsteen, James Taylor, and Warren Zevon. This is just a partial list, and you can add in numerous compilations and movie soundtracks.\r\n\r\nWhile it\'s easy to name of the members of your favorite band, much of the work in the recording industry is performed by musicians who go mostly unrecognized... unless you read the liner notes, something not easily done in the world of streaming and downloads.\r\n\r\nBut the next time you hear Michael Jackson\'s \"Beat It,\" remember the name of the guy keeping the beat, Jeff Porcaro.','Keeping the Beat: Jeff Porcaro','','publish','open','open','','keeping-the-beat-jeff-porcaro','','','2014-04-01 06:35:07','2014-04-01 12:35:07','',0,'http://www.earthhertzrecords.com/?p=1673',0,'post','',0),(1674,2,'2014-04-01 06:27:17','2014-04-01 12:27:17','','220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986','photo via Wikipedia','inherit','open','open','','220px-jeff_porcaro_toto_fahrenheit_world_tour_1986','','','2014-04-01 06:27:17','2014-04-01 12:27:17','',1673,'http://www.earthhertzrecords.com/wp-content/uploads/2014/04/220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986.jpg',0,'attachment','image/jpeg',0),(1675,2,'2014-04-01 06:30:50','2014-04-01 12:30:50','Recently, while conducting an<a href=\"http://www.earthhertzrecords.com/2014/03/a-conversation-with-riffraf-founder-richard-fulco/\"> interview with Richard Fulco</a>, the founder of the music blog RiffRaf, our conversation drifted to the Grammy Awards, which I had been lucky enough to attend in January. We were talking about the odd pairings of musical acts the Grammys always seem to offer, and which more times than not, fail miserably. Case in point for this year: Chicago and Robin Thicke. As we talked about it, Richard said something to the effect that not every singer can cross-over to other genres and make it work. For example, not every R&B singer can sing rock and vice versa.\r\n\r\n[caption id=\"attachment_1674\" align=\"alignright\" width=\"199\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986.jpg\"><img class=\"size-medium wp-image-1674\" alt=\"photo via Wikipedia\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986-199x300.jpg\" width=\"199\" height=\"300\" /></a> photo via Wikipedia[/caption]\r\n\r\nThat got me thinking about how often rock drummers for example, can hold their own across different musical styles. Today marks what would have been the 60th birthday of one of the few drummers to excel far beyond the limits of rock. Jeff Porcaro was well known as one of the founding members of Toto, but as a session musician, he did way more than \"Hold The Line.\"\r\n\r\nHe began playing the drums around the age of seven, and at seventeen, he was already touring with Sonny & Cher. Toto was a huge part of his life, but then take a look at a few of the names he worked with in the studio: Earth, Wind & Fire, Barbra Streisand, Al Jarreau, Aretha Franklin, George Benson, Herbie Hancock, Dr. John, Ray Charles, Dolly Parton, Etta James, Ruben Blades, Bonnie Raitt, Boz Scaggs, and Dionne Warwick.\r\n\r\nImpressive, yeah some. As for the artists closer to the rock genre, here\'s a few names you might know: Jackson Browne, Joe Cocker, Crosby, Stills & Nash, Steely Dan, Hall & Oates, Don Henley, Michael Jackson, Elton John, Madonna, Pink Floyd, Bruce Springsteen, James Taylor, and Warren Zevon. This is just a partial list, and you can add in numerous compilations and movie soundtracks.\r\n\r\nWhile it\'s easy to name of the members of your favorite band, much of the work in the recording industry is performed by musicians who go mostly unrecognized... unless you read the liner notes, something not easily done in the world of streaming and downloads.\r\n\r\nBut the next time you hear Michael Jackson\'s \"Beat It,\" remember the name of the guy setting the beat, Jeff Porcaro.','Keeping the Beat: Jeff Porcaro','','inherit','open','open','','1673-revision-v1','','','2014-04-01 06:30:50','2014-04-01 12:30:50','',1673,'http://www.earthhertzrecords.com/2014/04/1673-revision-v1/',0,'revision','',0),(1676,2,'2014-04-01 06:33:02','2014-04-01 12:33:02','Recently, while conducting an<a href=\"http://www.earthhertzrecords.com/2014/03/a-conversation-with-riffraf-founder-richard-fulco/\"> interview with Richard Fulco</a>, the founder of the music blog <a href=\"http://www.riffraf.net/\">RiffRaf</a>, our conversation drifted to the Grammy Awards, which I had been lucky enough to attend in January. We were talking about the odd pairings of musical acts the Grammys always seem to offer, and which more times than not, fail miserably. Case in point for this year: Chicago and Robin Thicke. As we talked about it, Richard said something to the effect that not every singer can cross-over to other genres and make it work. For example, not every R&B singer can sing rock and vice versa.\r\n\r\n[caption id=\"attachment_1674\" align=\"alignright\" width=\"199\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986.jpg\"><img class=\"size-medium wp-image-1674\" alt=\"photo via Wikipedia\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986-199x300.jpg\" width=\"199\" height=\"300\" /></a> photo via Wikipedia[/caption]\r\n\r\nThat got me thinking about how often rock drummers for example, can hold their own across different musical styles. Today marks what would have been the 60th birthday of one of the few drummers to excel far beyond the limits of rock. Jeff Porcaro was well known as one of the founding members of Toto, but as a session musician, he did way more than \"Hold The Line.\"\r\n\r\nHe began playing the drums around the age of seven, and at seventeen, he was already touring with Sonny & Cher. Toto was a huge part of his life, but then take a look at a few of the names he worked with in the studio: Earth, Wind & Fire, Barbra Streisand, Al Jarreau, Aretha Franklin, George Benson, Herbie Hancock, Dr. John, Ray Charles, Dolly Parton, Etta James, Ruben Blades, Bonnie Raitt, Boz Scaggs, and Dionne Warwick.\r\n\r\nImpressive, yeah some. As for the artists closer to the rock genre, here\'s a few names you might know: Jackson Browne, Joe Cocker, Crosby, Stills & Nash, Steely Dan, Hall & Oates, Don Henley, Michael Jackson, Elton John, Madonna, Pink Floyd, Bruce Springsteen, James Taylor, and Warren Zevon. This is just a partial list, and you can add in numerous compilations and movie soundtracks.\r\n\r\nWhile it\'s easy to name of the members of your favorite band, much of the work in the recording industry is performed by musicians who go mostly unrecognized... unless you read the liner notes, something not easily done in the world of streaming and downloads.\r\n\r\nBut the next time you hear Michael Jackson\'s \"Beat It,\" remember the name of the guy setting the beat, Jeff Porcaro.','Keeping the Beat: Jeff Porcaro','','inherit','open','open','','1673-revision-v1','','','2014-04-01 06:33:02','2014-04-01 12:33:02','',1673,'http://www.earthhertzrecords.com/2014/04/1673-revision-v1/',0,'revision','',0),(1677,2,'2014-04-01 06:33:56','2014-04-01 12:33:56','Recently, while conducting an<a href=\"http://www.earthhertzrecords.com/2014/03/a-conversation-with-riffraf-founder-richard-fulco/\"> interview with Richard Fulco</a>, the founder of the music blog <a href=\"http://www.riffraf.net/\">RiffRaf</a>, our conversation drifted to the Grammy Awards, which I had been lucky enough to attend in January. We were talking about the odd pairings of musical acts the Grammys always seem to offer, and which more times than not, fail miserably. Case in point for this year: Chicago and Robin Thicke. As we talked about it, Richard said something to the effect that not every singer can cross-over to other genres and make it work. For example, not every R&B singer can sing rock and vice versa.\r\n\r\n[caption id=\"attachment_1674\" align=\"alignright\" width=\"199\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986.jpg\"><img class=\"size-medium wp-image-1674\" alt=\"photo via Wikipedia\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/220px-Jeff_Porcaro_Toto_Fahrenheit_World_Tour_1986-199x300.jpg\" width=\"199\" height=\"300\" /></a> photo via Wikipedia[/caption]\r\n\r\nThat got me thinking about how often rock drummers for example, can hold their own across different musical styles. Today marks what would have been the 60th birthday of one of the few drummers to excel far beyond the limits of rock. Jeff Porcaro was well known as one of the founding members of Toto, but as a session musician, he did way more than \"Hold The Line.\"\r\n\r\nHe began playing the drums around the age of seven, and at seventeen, he was already touring with Sonny & Cher. Toto was a huge part of his life, but then take a look at a few of the names he worked with in the studio: Earth, Wind & Fire, Barbra Streisand, Al Jarreau, Aretha Franklin, George Benson, Herbie Hancock, Dr. John, Ray Charles, Dolly Parton, Etta James, Ruben Blades, Bonnie Raitt, Boz Scaggs, and Dionne Warwick.\r\n\r\nImpressive, yeah some. As for the artists closer to the rock genre, here\'s a few names you might know: Jackson Browne, Joe Cocker, Crosby, Stills & Nash, Steely Dan, Hall & Oates, Don Henley, Michael Jackson, Elton John, Madonna, Pink Floyd, Bruce Springsteen, James Taylor, and Warren Zevon. This is just a partial list, and you can add in numerous compilations and movie soundtracks.\r\n\r\nWhile it\'s easy to name of the members of your favorite band, much of the work in the recording industry is performed by musicians who go mostly unrecognized... unless you read the liner notes, something not easily done in the world of streaming and downloads.\r\n\r\nBut the next time you hear Michael Jackson\'s \"Beat It,\" remember the name of the guy keeping the beat, Jeff Porcaro.','Keeping the Beat: Jeff Porcaro','','inherit','open','open','','1673-revision-v1','','','2014-04-01 06:33:56','2014-04-01 12:33:56','',1673,'http://www.earthhertzrecords.com/2014/04/1673-revision-v1/',0,'revision','',0),(1680,2,'2014-04-09 06:15:44','2014-04-09 12:15:44','','katstheory-blues-1','','inherit','open','open','','katstheory-blues-1','','','2014-04-09 06:15:44','2014-04-09 12:15:44','',1679,'http://www.earthhertzrecords.com/wp-content/uploads/2014/04/katstheory-blues-1.jpg',0,'attachment','image/jpeg',0),(1681,2,'2014-04-09 06:20:55','2014-04-09 12:20:55','<p align=\"center\"><i>“I hear it callin\', baby\r\nSound so sweet and plain\r\nI gotta go\r\n\'cause the road\'s my middle name”</i></p>\r\n<p align=\"center\">…”The Road’s My Middle Name” by Bonnie Raitt</p>\r\nApproaching her mid-60’s, Bonnie Raitt is still playing hard and kicking ass on tour, and just like her daddy before her, most of her life has been spent on the road. This is true for most musicians and especially true of the generation before Bonnie. Many of those old-timers in their late 70’s and 80’s are still paying their dues on the road. For many, it’s all they know, and will just keep doing it until it’s physically impossible. Good idea or not?\r\n\r\nThere are several reasons artists keep on keeping on: the financial need to work or needing the camaraderie of those other road musicians you call family, are two of the main ones. And if the road family is the only one you have, they probably won’t tell you it’s time to quit.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/katstheory-blues-1.jpg\"><img class=\"alignleft size-medium wp-image-1680\" alt=\"katstheory-blues-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/katstheory-blues-1-257x300.jpg\" width=\"257\" height=\"300\" /></a>\r\n\r\nThis past week, there’s been news about two musical legends having problems during their live shows. As someone who sees it as an honor to attend a concert by those musicians who broke the path, I don’t really expect some of the old blues musicians to be playing at the same level they were thirty years ago. Not too long ago, I was at a blues show where James Cotton sat and played his blues harp with everything he had. Listening, I could only imagine how good he was “in his day.” In the big picture, how well he played didn’t matter because it was privilege to be a witness to what will probably be one of his last tours.\r\n\r\nHowever there are moments when a legend starts losing command of his musicianship. It seems BB King had some issues at a recent St. Louis show, where he rambled instead of telling stories and completed only a handful of songs. Apparently, the crowd was not very understanding. Word also comes that Chuck Berry made many mistakes and forgot lyrics at a recent show. If I had been at one of those shows, I could never have heckled them, but only been overwhelmed by sadness. One can only hope the people around them will care more for the men themselves, and less for the money they bring in.\r\n\r\nAs more and more of the classic rock era musicians age many are still performing at a high level, though it’s becoming obvious many should quit and let fans retain memories of seeing them in their prime. Too often however, the draw of quick cash is all the incentive they need to get back on stage. A 73 year-old rocker once told me how sad it was to see other performers not able or willing to give the fans what they were expecting. Most of these fans had memories of what the artist once was, and when they saw their favorite singer a shadow of their former self, the admiration in their eyes turned to pity.\r\n\r\nLegends deserve better than that.','Sometimes the Road is Too Long','','inherit','open','open','','1679-revision-v1','','','2014-04-09 06:20:55','2014-04-09 12:20:55','',1679,'http://www.earthhertzrecords.com/2014/04/1679-revision-v1/',0,'revision','',0),(1682,2,'2014-04-09 06:29:45','2014-04-09 12:29:45','<p align=\"center\"><i>“I hear it callin\', baby\r\nSound so sweet and plain\r\nI gotta go\r\n\'cause the road\'s my middle name”</i></p>\r\n<p align=\"center\">…”The Road’s My Middle Name” by Bonnie Raitt</p>\r\nApproaching her mid-60’s, Bonnie Raitt is still playing hard and kicking ass on tour, and just like her daddy before her, most of her life has been spent on the road. This is true for most musicians and especially true of the generation before Bonnie. Many of those old-timers in their late 70’s and 80’s are still paying their dues on the road. For many, it’s all they know, and will just keep doing it until it’s physically impossible. Good idea or not?\r\n\r\nThere are several reasons artists keep on keeping on: the financial need to work or needing the camaraderie of those other road musicians you call family, are two of the main ones. And if the road family is the only one you have, they probably won’t tell you it’s time to quit.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/katstheory-blues-1.jpg\"><img class=\"alignleft size-medium wp-image-1680\" alt=\"katstheory-blues-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/katstheory-blues-1-257x300.jpg\" width=\"257\" height=\"300\" /></a>\r\n\r\nThis past week, there’s been news about two musical legends having problems during their live shows. As someone who considers it an honor to attend a concert by those musicians who broke the path, I don’t really expect some of the old blues artists for example, to be playing at the same level they were thirty years ago. Not too long ago, I was at a blues show where James Cotton sat and played his blues harp with everything he had. Listening, I could only imagine how good he was “in his day.” In the big picture, how well he played didn’t matter because it was privilege to be a witness to what will probably be one of his last tours.\r\n\r\nHowever there are moments when a legend starts losing command of his musicianship. It seems BB King had some issues at a recent St. Louis show, where he rambled instead of telling stories and completed only a handful of songs. Apparently, the crowd was not very understanding. Word also comes that Chuck Berry made many mistakes and forgot lyrics at a recent show. If I had attended those shows, I could never have heckled them, but I would have been overwhelmed by sadness. One can only hope the people around them will care more for the men themselves, and less for the money they bring in.\r\n\r\nAs more and more of the classic rock era musicians age many are still performing at a high level, though it’s becoming obvious many should quit and let fans retain memories of seeing them in their prime. Too often however, the draw of quick cash is all the incentive they need to get back on stage. A 73 year-old rocker once told me how sad it was to see other performers not able or willing to give the fans what they were expecting. Most of these fans had memories of what the artist once was, and when they saw their favorite singer a shadow of their former self, the admiration in their eyes turned to pity.\r\n\r\nLegends deserve better than that.\r\n\r\nPost by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Sometimes the Road is Too Long','','inherit','open','open','','1679-revision-v1','','','2014-04-09 06:29:45','2014-04-09 12:29:45','',1679,'http://www.earthhertzrecords.com/2014/04/1679-revision-v1/',0,'revision','',0),(1683,2,'2014-04-09 06:33:36','2014-04-09 12:33:36','<p align=\"center\"><strong><i>“I hear it callin\', baby\r\nSound so sweet and plain\r\nI gotta go\r\n\'cause the road\'s my middle name”</i></strong></p>\r\n<p align=\"center\">…”The Road’s My Middle Name” by Bonnie Raitt</p>\r\nApproaching her mid-60’s, Bonnie Raitt is still playing hard and kicking ass on tour, and just like her daddy before her, most of her life has been spent on the road. This is true for most musicians and especially true of the generation before Bonnie. Many of those old-timers in their late 70’s and 80’s are still paying their dues on the road. For many, it’s all they know and will just keep doing it until it’s physically impossible.\r\n\r\nGood idea or not?\r\n\r\nThere are several reasons artists keep on keeping on: the financial need to work or needing the camaraderie of those other road musicians you call family, are two of the main ones. And if the road family is the only one you have, they probably won’t tell you it’s time to quit.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/katstheory-blues-1.jpg\"><img class=\"alignleft size-medium wp-image-1680\" alt=\"katstheory-blues-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/katstheory-blues-1-257x300.jpg\" width=\"257\" height=\"300\" /></a>\r\n\r\nThis past week, there’s been news about two musical legends having problems during their live shows. As someone who considers it an honor to attend a concert by those musicians who broke the path, I don’t really expect some of the old blues artists for example, to be playing at the same level they were thirty years ago. Not too long ago, I was at a blues show where James Cotton sat and played his blues harp with everything he had. Listening, I could only imagine how good he was “in his day.” In the big picture, how well he played didn’t matter because it was privilege to be a witness to what will probably be one of his last tours.\r\n\r\nHowever there are moments when a legend starts losing command of his musicianship. It seems BB King had some issues at a recent St. Louis show, where he rambled instead of telling stories and completed only a handful of songs. Apparently, the crowd was not very understanding. Word also comes that Chuck Berry made many mistakes and forgot lyrics at a recent show. If I had attended those shows, I could never have heckled them, but I would have been overwhelmed by sadness. One can only hope the people around them will care more for the men themselves, and less for the money they bring in.\r\n\r\nAs more and more of the classic rock era musicians age many are still performing at a high level, though it’s becoming obvious many should quit and let fans retain memories of seeing them in their prime. Too often however, the draw of quick cash is all the incentive they need to get back on stage. A 73 year-old rocker once told me how sad it was to see other performers not able or willing to give the fans what they were expecting. Most of these fans had memories of what the artist once was, and when they saw their favorite singer a shadow of their former self, the admiration in their eyes turned to pity.\r\n\r\nLegends deserve better than that.\r\n\r\nPost by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Sometimes the Road is Too Long','','inherit','open','open','','1679-revision-v1','','','2014-04-09 06:33:36','2014-04-09 12:33:36','',1679,'http://www.earthhertzrecords.com/2014/04/1679-revision-v1/',0,'revision','',0),(1684,2,'2014-04-09 06:34:46','2014-04-09 12:34:46','<p align=\"center\"><strong><i>“I hear it callin\', baby\nSound so sweet and plain\nI gotta go\n\'cause the road\'s my middle name”</i></strong></p>\n<p align=\"center\">…”The Road’s My Middle Name” by Bonnie Raitt</p>\nApproaching her mid-60’s, Bonnie Raitt is still playing hard and kicking ass on tour, and just like her daddy before her, most of her life has been spent on the road. This is true for most musicians and especially true of the generation before Bonnie. Many of those old-timers in their late 70’s and 80’s are still paying their dues on the road. For many, it’s all they know and will just keep doing it until it’s physically impossible.\n\nGood idea or not?\n\nThere are several reasons artists keep on keeping on: the financial need to work or needing the camaraderie of those other road musicians you call family, are two of the main ones. And if the road family is the only one you have, they probably won’t tell you it’s time to quit.\n\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/katstheory-blues-1.jpg\"><img class=\"alignleft size-medium wp-image-1680\" alt=\"katstheory-blues-1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/katstheory-blues-1-257x300.jpg\" width=\"257\" height=\"300\" /></a>\n\nThis past week, there’s been news about two musical legends having problems during their live shows. As someone who considers it an honor to attend a concert by those musicians who broke the path, I don’t really expect some of the old blues artists for example, to be playing at the same level they were thirty years ago. Not too long ago, I was at a blues show where James Cotton sat and played his blues harp with everything he had. Listening, I could only imagine how good he was “in his day.” In the big picture, how well he played didn’t matter because it was privilege to be a witness to what will probably be one of his last tours.\n\nHowever there are moments when a legend starts losing command of his musicianship. It seems BB King had some issues at a recent St. Louis show, where he rambled instead of telling stories and completed only a handful of songs. Apparently, the crowd was not very understanding. Word also comes that Chuck Berry made many mistakes and forgot lyrics at a recent show. If I had attended those shows, I could never have heckled them, but I would have been overwhelmed by sadness. One can only hope the people around them will care more for the men themselves, and less for the money they bring in.\n\nAs more and more of the classic rock era musicians age many are still performing at a high level, though it’s becoming obvious many should quit and let fans retain memories of seeing them in their prime. Too often however, the draw of quick cash is all the incentive they need to get back on stage. A 73 year-old rocker once told me how sad it was to see other performers not able or willing to give the fans what they were expecting. Most of these fans had memories of what the artist once was, and when they saw their favorite singer a shadow of their former self, the admiration in their eyes turned to pity.\n\nLegends deserve better than that.\n\nPost by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Sometimes the Road is Too Long','','inherit','open','open','','1679-autosave-v1','','','2014-04-09 06:34:46','2014-04-09 12:34:46','',1679,'http://www.earthhertzrecords.com/2014/04/1679-autosave-v1/',0,'revision','',0),(1689,1,'2014-04-13 22:23:27','2014-04-14 04:23:27','<iframe src=\"//www.youtube.com/embed/YPfwQveHFNk\" height=\"315\" width=\"560\" allowfullscreen=\"\" frameborder=\"0\"></iframe>','The Billy David Band','','inherit','open','open','','714-revision-v1','','','2014-04-13 22:23:27','2014-04-14 04:23:27','',714,'http://www.earthhertzrecords.com/2014/04/714-revision-v1/',0,'revision','',0),(1691,1,'2014-04-14 11:17:04','2014-04-14 17:17:04','<span style=\"font-size: 16px;\">\r\n<strong>Contact Earth Hertz Records</strong>\r\n<span style=\"font-size: 12px;\">Nashville, TN</span>\r\n<span style=\"font-size: 12px;\">(615) 824-8649</span>\r\n</span>\r\n\r\n<strong>Robert Xeno\r\n</strong>CEO\r\n<a href=\"mailto:rxeno@earthhertz.com\">rxeno@earthhertz.com</a>\r\n\r\n<strong>Eloa Xeno </strong>\r\nCFO and Director of Art\r\n<a href=\"mailto:exeno@earthhertz.com\">exeno@earthhertz.com</a>\r\n\r\n<strong>Kath Galasso </strong>\r\nNew Media Coordinator and Director of Artist Promotions\r\n<a href=\"mailto:kgalasso@earthhertz.com\">kgalasso@earthhertz.com</a>\r\n\r\n<strong>Ashley Smith </strong>\r\nSystems Specialist\r\n<a href=\"mailto:exeno@earthhertz.com\">asmith@earthhertz.com</a>\r\n\r\n<strong>Joshua Ayers\r\n</strong>Producer\r\n<a href=\"mailto:kgalasso@earthhertz.com\">jayers@earthhertz.com</a>','CONTACT','','inherit','open','open','','23-revision-v1','','','2014-04-14 11:17:04','2014-04-14 17:17:04','',23,'http://www.earthhertzrecords.com/2014/04/23-revision-v1/',0,'revision','',0),(1692,2,'2014-04-15 07:36:28','2014-04-15 13:36:28','[caption id=\"attachment_1693\" align=\"alignright\" width=\"204\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/lindsayell1.jpg\"><img class=\"size-medium wp-image-1693\" alt=\"lindsayell1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/lindsayell1-204x300.jpg\" width=\"204\" height=\"300\" /></a> (Photo by: Jessica Wardwell)[/caption]\r\n\r\nShe’s the true triple threat. Not only is guitarist <a href=\"http://lindsayell.com/\">Lindsay Ell</a> able to go toe to toe with the big boys on her instrument, she’s also a unique vocalist and gifted songwriter. Honing her craft in bluegrass music camps before being discovered at age 13 by BTO/Guess Who guitarist Randy Bachman, Ell soon found herself becoming immersed in the power of the blues and eventually sharing the stage with the likes of Buddy Guy and Keith Urban. As evidenced by her latest single and video [Trippin’ On Us] and recent tour supporting The Band Perry, Ell is fast becoming a rising star in country music circles.\r\n\r\nEll is currently gearing up for another round of tour dates, one of which includes her Grand Ole Opry debut on April 15th. She’s also back in the studio finishing up work on her debut album that’s expected to be released this fall. An album that can be described as a female Keith Urban meets Sheryl Crow; with a little bit of John Mayer thrown in for good measure. It’s edgy, guitar driven country and all Lindsay Ell.\r\n\r\nI had the pleasure of speaking with Ell and getting an update on her music.\r\n\r\n<strong>Jim Wood: When you think about The Grand Ole Opry and performing there for the very first time, what thoughts come to mind?</strong>\r\n\r\nLindsay Ell: It’s incredibly humbling. Growing up, my Grandpa would always listen to the Grand Ole Opry and we were raised with it being such a special thing in my family. It’s going to be to be a surreal moment getting to step into that circle on April 15th. My parents are flying in and I’m so thankful that they can be there. My Grandpa has passed away but I know he’ll be there with me and I’ll be thinking of him the whole time.\r\n\r\n<strong>Can you give me an update on your album?</strong>\r\n\r\nWe’re in the studio this week cutting more songs and will probably go in one more time. We’re hoping to release the album in the fall but will be releasing another new single in the coming weeks. I’m so excited about this new music. I feel like a kid on Christmas morning!\r\n\r\n<strong>What’s the origin of the song, “Trippin’ On Us”?</strong>\r\n\r\nI wrote it with two friends of mine from Nashville: Vicky McGehee and David Fanning. It started out with a melodic guitar riff and the song just evolved from there. The thing I love about country music is that the lyrics really need to tell a story and I love the challenge of finding something that’s going to hit home with fans.\r\n\r\n<strong>Tell me a little about the video for the song.</strong>\r\n\r\nRoman White directed the video. He’s done videos for Carrie [Underwood] and Taylor [Swift] and was a pleasure to work with. It was a quick shoot. We started before 5am and finished it all in one day.\r\n\r\n<strong>Where do you find inspiration for your songs?</strong>\r\n\r\nThe coolest ideas and concepts for a song can come out of anything. For me, I actually find a lot of it from just people watching. It’s amazing when you can sit back and watch what’s going on around you. Like hearing fragments of conversations from people who just pass by or when you’re getting into your car and you hear the DJ say a few random sentences on air. I’ve become a lot more receptive to my environment and the world around me.\r\n\r\n[caption id=\"attachment_1694\" align=\"alignleft\" width=\"232\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/lindsayell2.jpg\"><img class=\"size-medium wp-image-1694\" alt=\"lindsayell2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/lindsayell2-232x300.jpg\" width=\"232\" height=\"300\" /></a> (Photo by: Jessica Wardwell)[/caption]\r\n\r\n<strong>Why do you enjoy playing Gibson Les Pauls and Martin guitars so much?</strong>\r\n\r\nI grew up with all different kinds of guitars because everyone in my family played. I remember picking up a Les Paul for the first time when I was little and just loved the way it sounded. I like how you can have a clean sound but can really dig in and not have to change that much of your set up. It’s an easy guitar to communicate with.\r\n\r\nMartin guitars have always been considered the pristine ones in my family, so when I saved up enough money to buy my own, it quickly became my favorite. I had the chance to speak with Martin about a year ago and it made sense that we’d start working together. I love how they’re such a family based and centered company. They’re all about values and tradition.\r\n\r\n<strong>What are you most looking forward to in 2014?</strong>\r\n\r\nApril 15th will be a big one. I’m also really excited for this record. All of the music I’ve recorded up to this point has built towards this moment. The first few singles and videos give a taste, but the album itself will tell the real story. It’s been a long, exciting journey and I can’t wait to share it with everyone!\r\n\r\nInterview by James Wood.\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Guitarist Lindsay Ell Talks New Music, Touring and The Grand Ole Opry','','publish','open','open','','guitarist-lindsay-ell-talks-new-music-touring-and-the-grand-ole-opry','','','2014-04-15 07:38:28','2014-04-15 13:38:28','',0,'http://www.earthhertzrecords.com/?p=1692',0,'post','',0),(1693,2,'2014-04-14 18:54:28','2014-04-15 00:54:28','','lindsayell1','','inherit','open','open','','lindsayell1','','','2014-04-14 18:54:28','2014-04-15 00:54:28','',1692,'http://www.earthhertzrecords.com/wp-content/uploads/2014/04/lindsayell1.jpg',0,'attachment','image/jpeg',0),(1694,2,'2014-04-14 18:56:00','2014-04-15 00:56:00','','lindsayell2','','inherit','open','open','','lindsayell2','','','2014-04-14 18:56:00','2014-04-15 00:56:00','',1692,'http://www.earthhertzrecords.com/wp-content/uploads/2014/04/lindsayell2.jpg',0,'attachment','image/jpeg',0),(1695,2,'2014-04-14 18:57:49','2014-04-15 00:57:49','[caption id=\"attachment_1693\" align=\"alignright\" width=\"204\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/lindsayell1.jpg\"><img class=\"size-medium wp-image-1693\" alt=\"lindsayell1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/lindsayell1-204x300.jpg\" width=\"204\" height=\"300\" /></a> (Photo by: Jessica Wardwell)[/caption]\r\n\r\nShe’s the true triple threat. Not only is guitarist <a href=\"http://lindsayell.com/\">Lindsay Ell</a> able to go toe to toe with the big boys on her instrument, she’s also a unique vocalist and gifted songwriter. Honing her craft in bluegrass music camps before being discovered at age 13 by BTO/Guess Who guitarist Randy Bachman, Ell soon found herself becoming immersed in the power of the blues and eventually sharing the stage with the likes of Buddy Guy and Keith Urban. As evidenced by her latest single and video [Trippin’ On Us] and recent tour supporting The Band Perry, Ell is fast becoming a rising star in country music circles.\r\n\r\nEll is currently gearing up for another round of tour dates, one of which includes her Grand Ole Opry debut on April 15th. She’s also back in the studio finishing up work on her debut album that’s expected to be released this fall. An album that can be described as a female Keith Urban meets Sheryl Crow; with a little bit of John Mayer thrown in for good measure. It’s edgy, guitar driven country and all Lindsay Ell.\r\n\r\nI had the pleasure of speaking with Ell and getting an update on her music.\r\n\r\n<strong>Jim Wood: When you think about The Grand Ole Opry and performing there for the very first time, what thoughts come to mind?</strong>\r\n\r\nLindsay Ell: It’s incredibly humbling. Growing up, my Grandpa would always listen to the Grand Ole Opry and we were raised with it being such a special thing in my family. It’s going to be to be a surreal moment getting to step into that circle on April 15th. My parents are flying in and I’m so thankful that they can be there. My Grandpa has passed away but I know he’ll be there with me and I’ll be thinking of him the whole time.\r\n\r\n<strong>Can you give me an update on your album?</strong>\r\n\r\nWe’re in the studio this week cutting more songs and will probably go in one more time. We’re hoping to release the album in the fall but will be releasing another new single in the coming weeks. I’m so excited about this new music. I feel like a kid on Christmas morning!\r\n\r\n<strong>What’s the origin of the song, “Trippin’ On Us”?</strong>\r\n\r\nI wrote it with two friends of mine from Nashville: Vicky McGehee and David Fanning. It started out with a melodic guitar riff and the song just evolved from there. The thing I love about country music is that the lyrics really need to tell a story and I love the challenge of finding something that’s going to hit home with fans.\r\n\r\n<strong>Tell me a little about the video for the song.</strong>\r\n\r\nRoman White directed the video. He’s done videos for Carrie [Underwood] and Taylor [Swift] and was a pleasure to work with. It was a quick shoot. We started before 5am and finished it all in one day.\r\n\r\n<strong>Where do you find inspiration for your songs?</strong>\r\n\r\nThe coolest ideas and concepts for a song can come out of anything. For me, I actually find a lot of it from just people watching. It’s amazing when you can sit back and watch what’s going on around you. Like hearing fragments of conversations from people who just pass by or when you’re getting into your car and you hear the DJ say a few random sentences on air. I’ve become a lot more receptive to my environment and the world around me.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/lindsayell2.jpg\"><img class=\"alignleft size-medium wp-image-1694\" alt=\"lindsayell2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/lindsayell2-232x300.jpg\" width=\"232\" height=\"300\" /></a>\r\n\r\n<strong>Why do you enjoy playing Gibson Les Pauls and Martin guitars so much?</strong>\r\n\r\nI grew up with all different kinds of guitars because everyone in my family played. I remember picking up a Les Paul for the first time when I was little and just loved the way it sounded. I like how you can have a clean sound but can really dig in and not have to change that much of your set up. It’s an easy guitar to communicate with.\r\n\r\nMartin guitars have always been considered the pristine ones in my family, so when I saved up enough money to buy my own, it quickly became my favorite. I had the chance to speak with Martin about a year ago and it made sense that we’d start working together. I love how they’re such a family based and centered company. They’re all about values and tradition.\r\n\r\n<strong>What are you most looking forward to in 2014?</strong>\r\n\r\nApril 15th will be a big one. I’m also really excited for this record. All of the music I’ve recorded up to this point has built towards this moment. The first few singles and videos give a taste, but the album itself will tell the real story. It’s been a long, exciting journey and I can’t wait to share it with everyone!\r\n\r\nInterview by James Wood.\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Guitarist Lindsay Ell Talks New Music, Touring and The Grand Ole Opry','','inherit','open','open','','1692-revision-v1','','','2014-04-14 18:57:49','2014-04-15 00:57:49','',1692,'http://www.earthhertzrecords.com/2014/04/1692-revision-v1/',0,'revision','',0),(1696,2,'2014-04-15 07:38:28','2014-04-15 13:38:28','[caption id=\"attachment_1693\" align=\"alignright\" width=\"204\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/lindsayell1.jpg\"><img class=\"size-medium wp-image-1693\" alt=\"lindsayell1\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/lindsayell1-204x300.jpg\" width=\"204\" height=\"300\" /></a> (Photo by: Jessica Wardwell)[/caption]\r\n\r\nShe’s the true triple threat. Not only is guitarist <a href=\"http://lindsayell.com/\">Lindsay Ell</a> able to go toe to toe with the big boys on her instrument, she’s also a unique vocalist and gifted songwriter. Honing her craft in bluegrass music camps before being discovered at age 13 by BTO/Guess Who guitarist Randy Bachman, Ell soon found herself becoming immersed in the power of the blues and eventually sharing the stage with the likes of Buddy Guy and Keith Urban. As evidenced by her latest single and video [Trippin’ On Us] and recent tour supporting The Band Perry, Ell is fast becoming a rising star in country music circles.\r\n\r\nEll is currently gearing up for another round of tour dates, one of which includes her Grand Ole Opry debut on April 15th. She’s also back in the studio finishing up work on her debut album that’s expected to be released this fall. An album that can be described as a female Keith Urban meets Sheryl Crow; with a little bit of John Mayer thrown in for good measure. It’s edgy, guitar driven country and all Lindsay Ell.\r\n\r\nI had the pleasure of speaking with Ell and getting an update on her music.\r\n\r\n<strong>Jim Wood: When you think about The Grand Ole Opry and performing there for the very first time, what thoughts come to mind?</strong>\r\n\r\nLindsay Ell: It’s incredibly humbling. Growing up, my Grandpa would always listen to the Grand Ole Opry and we were raised with it being such a special thing in my family. It’s going to be to be a surreal moment getting to step into that circle on April 15th. My parents are flying in and I’m so thankful that they can be there. My Grandpa has passed away but I know he’ll be there with me and I’ll be thinking of him the whole time.\r\n\r\n<strong>Can you give me an update on your album?</strong>\r\n\r\nWe’re in the studio this week cutting more songs and will probably go in one more time. We’re hoping to release the album in the fall but will be releasing another new single in the coming weeks. I’m so excited about this new music. I feel like a kid on Christmas morning!\r\n\r\n<strong>What’s the origin of the song, “Trippin’ On Us”?</strong>\r\n\r\nI wrote it with two friends of mine from Nashville: Vicky McGehee and David Fanning. It started out with a melodic guitar riff and the song just evolved from there. The thing I love about country music is that the lyrics really need to tell a story and I love the challenge of finding something that’s going to hit home with fans.\r\n\r\n<strong>Tell me a little about the video for the song.</strong>\r\n\r\nRoman White directed the video. He’s done videos for Carrie [Underwood] and Taylor [Swift] and was a pleasure to work with. It was a quick shoot. We started before 5am and finished it all in one day.\r\n\r\n<strong>Where do you find inspiration for your songs?</strong>\r\n\r\nThe coolest ideas and concepts for a song can come out of anything. For me, I actually find a lot of it from just people watching. It’s amazing when you can sit back and watch what’s going on around you. Like hearing fragments of conversations from people who just pass by or when you’re getting into your car and you hear the DJ say a few random sentences on air. I’ve become a lot more receptive to my environment and the world around me.\r\n\r\n[caption id=\"attachment_1694\" align=\"alignleft\" width=\"232\"]<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/lindsayell2.jpg\"><img class=\"size-medium wp-image-1694\" alt=\"lindsayell2\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/lindsayell2-232x300.jpg\" width=\"232\" height=\"300\" /></a> (Photo by: Jessica Wardwell)[/caption]\r\n\r\n<strong>Why do you enjoy playing Gibson Les Pauls and Martin guitars so much?</strong>\r\n\r\nI grew up with all different kinds of guitars because everyone in my family played. I remember picking up a Les Paul for the first time when I was little and just loved the way it sounded. I like how you can have a clean sound but can really dig in and not have to change that much of your set up. It’s an easy guitar to communicate with.\r\n\r\nMartin guitars have always been considered the pristine ones in my family, so when I saved up enough money to buy my own, it quickly became my favorite. I had the chance to speak with Martin about a year ago and it made sense that we’d start working together. I love how they’re such a family based and centered company. They’re all about values and tradition.\r\n\r\n<strong>What are you most looking forward to in 2014?</strong>\r\n\r\nApril 15th will be a big one. I’m also really excited for this record. All of the music I’ve recorded up to this point has built towards this moment. The first few singles and videos give a taste, but the album itself will tell the real story. It’s been a long, exciting journey and I can’t wait to share it with everyone!\r\n\r\nInterview by James Wood.\r\n\r\n<strong><i>James Wood is a writer, musician and self-proclaimed metal head who maintains his own website,</i></strong><b><i> </i></b><a href=\"http://gojimmygo.net/\"><b><i>GoJimmyGo.net</i></b></a><strong><i>. His articles and interviews are written on a variety of topics with both passion and humor. You can follow him on Twitter</i></strong><b><i> </i></b><a href=\"https://twitter.com/JimEWood\"><b><i>@JimEWood</i></b></a><strong><i>.</i></strong>\r\n\r\n<strong><i>Check out his new children\'s book at :</i></strong><b><i> </i></b><a href=\"http://www.doodledogbooks.com/\"><b><i>www.doodledogbooks.com</i></b></a>','Guitarist Lindsay Ell Talks New Music, Touring and The Grand Ole Opry','','inherit','open','open','','1692-revision-v1','','','2014-04-15 07:38:28','2014-04-15 13:38:28','',1692,'http://www.earthhertzrecords.com/2014/04/1692-revision-v1/',0,'revision','',0),(1697,2,'2014-04-16 18:46:08','2014-04-17 00:46:08','<strong>Director of Merchandising</strong>','About: Tony -The MerchGuy- Longval','','inherit','open','open','','1408-revision-v1','','','2014-04-16 18:46:08','2014-04-17 00:46:08','',1408,'http://www.earthhertzrecords.com/2014/04/1408-revision-v1/',0,'revision','',0),(1700,2,'2014-04-27 18:20:44','2014-04-28 00:20:44','So imagine you’ve just watched a music video and your jaw has dropped. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of a day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3.jpg\"><img class=\"alignright size-medium wp-image-1704\" alt=\"mikemasse3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3-300x240.jpg\" width=\"300\" height=\"240\" /></a>\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Shortly before his first birthday, Mike Masse\'s son Noah was diagnosed with brain cancer. Let that set in just a moment. <em>Before his first birthday</em>. During the time of Noah\'s illness, Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nAfter taking time to deal with his family situation, Mike has returned to playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\"><img class=\"alignleft size-full wp-image-1705\" alt=\"bookmikeimg\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\" width=\"141\" height=\"122\" /></a>\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michele who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michele) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow, and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4.jpg\"><img class=\"alignleft size-medium wp-image-1707\" alt=\"mikemasse-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4-300x198.jpg\" width=\"300\" height=\"198\" /></a>\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking with you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story between this, the fact that you’re a lawyer, and then I read about Noah.\r\n</b>\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we needed to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances. I was sitting there thinking I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted.\r\n\r\nSo I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\n<iframe src=\"//www.youtube.com/embed/-YAu-sGIpwQ\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard this was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Goudreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Goudreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5.jpg\"><img class=\"alignright size-medium wp-image-1712\" alt=\"mikemasse-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5-300x200.jpg\" width=\"300\" height=\"200\" /></a>\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry (\"How do you ask a man to be the last man to die for a mistake?\"), and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was.\r\n\r\n<iframe src=\"//www.youtube.com/embed/R3nDuVMey20\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nIt was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<a href=\"http://www.mikemasse.com/\">Mike Masse Website</a>\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Mike Masse, Out of Africa','','publish','open','open','','mike-masse-out-of-africa','','','2014-04-29 10:35:45','2014-04-29 16:35:45','',0,'http://www.earthhertzrecords.com/?p=1700',0,'post','',0),(1703,2,'2014-04-27 13:26:35','2014-04-27 19:26:35','So imagine you’ve just watched a video and your jaw is hanging. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of an entire day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Mike Masse’s son Noah was diagnosed with brain cancer before his first birthday, and Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nIn the past few months, Mike has continued playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and you could see the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking to you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story beween this, the fact that you’re a lawyer, and then when I read about Noah. </b>\r\n\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances and stuff. So I was sitting there thinking ‘I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted. So I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are a few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard that Primary Children’s was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Godreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Godreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. This was sort of a different thing for me. This was the first time I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry, and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was. It was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<a href=\"http://www.mikemasse.com/\">Mike Masse Website</a>\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-27 13:26:35','2014-04-27 19:26:35','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0),(1701,2,'2014-04-27 12:25:47','2014-04-27 18:25:47','So imagine you’ve just seen a video and your jaw is hanging. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band Hybrid Ice, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys, one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of an entire day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Mike Masse’s son Noah was diagnosed with brain cancer before his first birthday, and Mike had been filling in friends, family and fans via the Caring Bridge, a website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral, the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\nIn the past few months, Mike has continued playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that get nothing, and some other things blow up so huge that you can’t even fathom. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, had some of my audio recordings and she had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I had been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and you could see the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking to you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story beween this, the fact that you’re a lawyer, and then when I read about Noah. There’s just so much, and for you to be able to do this, I can see where you are touching people with your music.</b>\r\n\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances and stuff. So I was sitting there thinking ‘I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they want. So I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are a few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listen to “Let It Be” a lot going back and forth from the hospital because I thought the message that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because like you said, everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family. The whole story is just an amazing story.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard that Primary Children’s was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b>\r\n\r\n<b>And Noah was just a baby, a baby. I can’t even imagine what you went through. Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Godreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Godreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. This was sort of a different thing for me. This was the first time I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing it. So it was the original version with my vocals substituted. So I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to my eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\nSo imagine you’ve just seen a video and your jaw is hanging. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band Hybrid Ice, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys, one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of an entire day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Mike Masse’s son Noah was diagnosed with brain cancer before his first birthday, and Mike had been filling in friends, family and fans via the Caring Bridge, a website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral, the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\nIn the past few months, Mike has continued playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that get nothing, and some other things blow up so huge that you can’t even fathom. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, had some of my audio recordings and she had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I had been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and you could see the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking to you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story beween this, the fact that you’re a lawyer, and then when I read about Noah. There’s just so much, and for you to be able to do this, I can see where you are touching people with your music.</b>\r\n\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances and stuff. So I was sitting there thinking ‘I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they want. So I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are a few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listen to “Let It Be” a lot going back and forth from the hospital because I thought the message that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because like you said, everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family. The whole story is just an amazing story.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard that Primary Children’s was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b>\r\n\r\n<b>And Noah was just a baby, a baby. I can’t even imagine what you went through. Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Godreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Godreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. This was sort of a different thing for me. This was the first time I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing it. So it was the original version with my vocals substituted. So I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to my eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry, and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was. It was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n \r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n ','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-27 12:25:47','2014-04-27 18:25:47','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0),(1702,2,'2014-04-27 13:03:46','2014-04-27 19:03:46','So imagine you’ve just seen a video and your jaw is hanging. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of an entire day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Mike Masse’s son Noah was diagnosed with brain cancer before his first birthday, and Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nIn the past few months, Mike has continued playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and you could see the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking to you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story beween this, the fact that you’re a lawyer, and then when I read about Noah. </b>\r\n\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances and stuff. So I was sitting there thinking ‘I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted. So I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are a few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard that Primary Children’s was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Godreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Godreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. This was sort of a different thing for me. This was the first time I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\nSo imagine you’ve just seen a video and your jaw is hanging. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band Hybrid Ice, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys, one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of an entire day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Mike Masse’s son Noah was diagnosed with brain cancer before his first birthday, and Mike had been filling in friends, family and fans via the Caring Bridge, a website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral, the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\nIn the past few months, Mike has continued playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that get nothing, and some other things blow up so huge that you can’t even fathom. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, had some of my audio recordings and she had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I had been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and you could see the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking to you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story beween this, the fact that you’re a lawyer, and then when I read about Noah. There’s just so much, and for you to be able to do this, I can see where you are touching people with your music.</b>\r\n\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances and stuff. So I was sitting there thinking ‘I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they want. So I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are a few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listen to “Let It Be” a lot going back and forth from the hospital because I thought the message that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because like you said, everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family. The whole story is just an amazing story.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard that Primary Children’s was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b>\r\n\r\n<b>And Noah was just a baby, a baby. I can’t even imagine what you went through. Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Godreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Godreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. This was sort of a different thing for me. This was the first time I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing it. So it was the original version with my vocals substituted. So I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to my eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry, and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was. It was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-27 13:03:46','2014-04-27 19:03:46','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0),(1704,2,'2014-04-27 13:34:16','2014-04-27 19:34:16','','mikemasse3','','inherit','open','open','','mikemasse3','','','2014-04-27 13:34:16','2014-04-27 19:34:16','',1700,'http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3.jpg',0,'attachment','image/jpeg',0),(1705,2,'2014-04-27 13:35:01','2014-04-27 19:35:01','','bookmikeimg','','inherit','open','open','','bookmikeimg','','','2014-04-27 13:35:01','2014-04-27 19:35:01','',1700,'http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png',0,'attachment','image/png',0),(1706,2,'2014-04-27 13:35:32','2014-04-27 19:35:32','So imagine you’ve just watched a video and your jaw is hanging. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of an entire day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3.jpg\"><img class=\"alignright size-medium wp-image-1704\" alt=\"mikemasse3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3-300x240.jpg\" width=\"300\" height=\"240\" /></a>\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Mike Masse’s son Noah was diagnosed with brain cancer before his first birthday, and Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nIn the past few months, Mike has continued playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\"><img class=\"alignleft size-full wp-image-1705\" alt=\"bookmikeimg\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\" width=\"141\" height=\"122\" /></a>\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and you could see the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking to you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story beween this, the fact that you’re a lawyer, and then when I read about Noah. </b>\r\n\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances and stuff. So I was sitting there thinking ‘I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted. So I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are a few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard that Primary Children’s was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Godreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Godreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. This was sort of a different thing for me. This was the first time I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry, and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was. It was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<a href=\"http://www.mikemasse.com/\">Mike Masse Website</a>\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-27 13:35:32','2014-04-27 19:35:32','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0),(1707,2,'2014-04-27 13:40:22','2014-04-27 19:40:22','','mikemasse-4','','inherit','open','open','','mikemasse-4','','','2014-04-27 13:40:22','2014-04-27 19:40:22','',1700,'http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4.jpg',0,'attachment','image/jpeg',0),(1708,2,'2014-04-27 13:43:10','2014-04-27 19:43:10','So imagine you’ve just watched a video and your jaw is hanging. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of an entire day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3.jpg\"><img class=\"alignright size-medium wp-image-1704\" alt=\"mikemasse3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3-300x240.jpg\" width=\"300\" height=\"240\" /></a>\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Mike Masse’s son Noah was diagnosed with brain cancer before his first birthday, and Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nIn the past few months, Mike has continued playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\"><img class=\"alignleft size-full wp-image-1705\" alt=\"bookmikeimg\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\" width=\"141\" height=\"122\" /></a>\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4.jpg\"><img class=\"alignleft size-medium wp-image-1707\" alt=\"mikemasse-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4-300x198.jpg\" width=\"300\" height=\"198\" /></a>\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and you could see the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking to you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story beween this, the fact that you’re a lawyer, and then when I read about Noah. </b>\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances and stuff. So I was sitting there thinking ‘I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted. So I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are a few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard that Primary Children’s was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Godreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Godreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. This was sort of a different thing for me. This was the first time I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry, and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was. It was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<a href=\"http://www.mikemasse.com/\">Mike Masse Website</a>\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-27 13:43:10','2014-04-27 19:43:10','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0),(1709,2,'2014-04-27 13:45:00','2014-04-27 19:45:00','So imagine you’ve just watched a video and your jaw is hanging. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of an entire day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3.jpg\"><img class=\"alignright size-medium wp-image-1704\" alt=\"mikemasse3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3-300x240.jpg\" width=\"300\" height=\"240\" /></a>\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Mike Masse’s son Noah was diagnosed with brain cancer before his first birthday, and Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nIn the past few months, Mike has continued playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\"><img class=\"alignleft size-full wp-image-1705\" alt=\"bookmikeimg\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\" width=\"141\" height=\"122\" /></a>\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4.jpg\"><img class=\"alignleft size-medium wp-image-1707\" alt=\"mikemasse-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4-300x198.jpg\" width=\"300\" height=\"198\" /></a>\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and you could see the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking to you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story beween this, the fact that you’re a lawyer, and then when I read about Noah. </b>\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances and stuff. So I was sitting there thinking ‘I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted. So I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are a few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard that Primary Children’s was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Godreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Godreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. This was sort of a different thing for me. This was the first time I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry, and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was. It was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<a href=\"http://www.mikemasse.com/\">Mike Masse Website</a>\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-27 13:45:00','2014-04-27 19:45:00','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0),(1710,2,'2014-04-27 13:47:57','2014-04-27 19:47:57','So imagine you’ve just watched a video and your jaw is hanging. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of an entire day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3.jpg\"><img class=\"alignright size-medium wp-image-1704\" alt=\"mikemasse3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3-300x240.jpg\" width=\"300\" height=\"240\" /></a>\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Mike Masse’s son Noah was diagnosed with brain cancer before his first birthday, and Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nIn the past few months, Mike has continued playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\"><img class=\"alignleft size-full wp-image-1705\" alt=\"bookmikeimg\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\" width=\"141\" height=\"122\" /></a>\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4.jpg\"><img class=\"alignleft size-medium wp-image-1707\" alt=\"mikemasse-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4-300x198.jpg\" width=\"300\" height=\"198\" /></a>\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and you could see the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking to you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story beween this, the fact that you’re a lawyer, and then I read about Noah. </b>\r\n<iframe src=\"//www.youtube.com/embed/-YAu-sGIpwQ\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances and stuff. So I was sitting there thinking ‘I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted. So I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are a few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard that Primary Children’s was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Godreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Godreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. This was sort of a different thing for me. This was the first time I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry, and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was. It was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<a href=\"http://www.mikemasse.com/\">Mike Masse Website</a>\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-27 13:47:57','2014-04-27 19:47:57','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0),(1711,2,'2014-04-27 13:50:09','2014-04-27 19:50:09','So imagine you’ve just watched a video and your jaw is hanging. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of an entire day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3.jpg\"><img class=\"alignright size-medium wp-image-1704\" alt=\"mikemasse3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3-300x240.jpg\" width=\"300\" height=\"240\" /></a>\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Mike Masse’s son Noah was diagnosed with brain cancer before his first birthday, and Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nIn the past few months, Mike has continued playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\"><img class=\"alignleft size-full wp-image-1705\" alt=\"bookmikeimg\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\" width=\"141\" height=\"122\" /></a>\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4.jpg\"><img class=\"alignleft size-medium wp-image-1707\" alt=\"mikemasse-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4-300x198.jpg\" width=\"300\" height=\"198\" /></a>\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and you could see the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking to you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story beween this, the fact that you’re a lawyer, and then I read about Noah. </b>\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances and stuff. So I was sitting there thinking ‘I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted. So I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are a few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\n<iframe width=\"420\" height=\"315\" src=\"//www.youtube.com/embed/-YAu-sGIpwQ\" frameborder=\"0\" allowfullscreen></iframe>\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard that Primary Children’s was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Godreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Godreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. This was sort of a different thing for me. This was the first time I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry, and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was. It was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<a href=\"http://www.mikemasse.com/\">Mike Masse Website</a>\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-27 13:50:09','2014-04-27 19:50:09','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0),(1712,2,'2014-04-27 13:56:20','2014-04-27 19:56:20','','mikemasse-5','','inherit','open','open','','mikemasse-5','','','2014-04-27 13:56:20','2014-04-27 19:56:20','',1700,'http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5.jpg',0,'attachment','image/jpeg',0),(1713,2,'2014-04-27 13:59:41','2014-04-27 19:59:41','So imagine you’ve just watched a video and your jaw is hanging. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of an entire day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3.jpg\"><img class=\"alignright size-medium wp-image-1704\" alt=\"mikemasse3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3-300x240.jpg\" width=\"300\" height=\"240\" /></a>\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Mike Masse’s son Noah was diagnosed with brain cancer before his first birthday, and Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nIn the past few months, Mike has continued playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\"><img class=\"alignleft size-full wp-image-1705\" alt=\"bookmikeimg\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\" width=\"141\" height=\"122\" /></a>\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4.jpg\"><img class=\"alignleft size-medium wp-image-1707\" alt=\"mikemasse-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4-300x198.jpg\" width=\"300\" height=\"198\" /></a>\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and you could see the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking to you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story beween this, the fact that you’re a lawyer, and then I read about Noah. </b>\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances and stuff. So I was sitting there thinking ‘I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted. So I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are a few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\n<iframe src=\"//www.youtube.com/embed/-YAu-sGIpwQ\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard that Primary Children’s was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Goudreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Goudreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. This was sort of a different thing for me. This was the first time I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5.jpg\"><img class=\"alignright size-medium wp-image-1712\" alt=\"mikemasse-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5-300x200.jpg\" width=\"300\" height=\"200\" /></a>\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry, and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was.\r\n\r\n<iframe src=\"//www.youtube.com/embed/R3nDuVMey20\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nIt was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<a href=\"http://www.mikemasse.com/\">Mike Masse Website</a>\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-27 13:59:41','2014-04-27 19:59:41','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0),(1714,2,'2014-04-27 14:02:40','2014-04-27 20:02:40','So imagine you’ve just watched a video and your jaw is hanging. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of an entire day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3.jpg\"><img class=\"alignright size-medium wp-image-1704\" alt=\"mikemasse3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3-300x240.jpg\" width=\"300\" height=\"240\" /></a>\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Mike Masse’s son Noah was diagnosed with brain cancer before his first birthday, and Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nIn the past few months, Mike has continued playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\"><img class=\"alignleft size-full wp-image-1705\" alt=\"bookmikeimg\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\" width=\"141\" height=\"122\" /></a>\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4.jpg\"><img class=\"alignleft size-medium wp-image-1707\" alt=\"mikemasse-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4-300x198.jpg\" width=\"300\" height=\"198\" /></a>\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and you could see the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking to you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story between this, the fact that you’re a lawyer, and then I read about Noah.\r\n</b>\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances and stuff. So I was sitting there thinking ‘I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted. So I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are a few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\n<iframe src=\"//www.youtube.com/embed/-YAu-sGIpwQ\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard that Primary Children’s was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Goudreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Goudreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. This was sort of a different thing for me. This was the first time I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5.jpg\"><img class=\"alignright size-medium wp-image-1712\" alt=\"mikemasse-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5-300x200.jpg\" width=\"300\" height=\"200\" /></a>\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry, and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was.\r\n\r\n<iframe src=\"//www.youtube.com/embed/R3nDuVMey20\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nIt was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<a href=\"http://www.mikemasse.com/\">Mike Masse Website</a>\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-27 14:02:40','2014-04-27 20:02:40','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0),(1715,2,'2014-04-27 14:07:25','2014-04-27 20:07:25','So imagine you’ve just watched a video and your jaw is hanging. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of an entire day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3.jpg\"><img class=\"alignright size-medium wp-image-1704\" alt=\"mikemasse3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3-300x240.jpg\" width=\"300\" height=\"240\" /></a>\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Mike Masse’s son Noah was diagnosed with brain cancer before his first birthday, and Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nIn the past few months, Mike has continued playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\"><img class=\"alignleft size-full wp-image-1705\" alt=\"bookmikeimg\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\" width=\"141\" height=\"122\" /></a>\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4.jpg\"><img class=\"alignleft size-medium wp-image-1707\" alt=\"mikemasse-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4-300x198.jpg\" width=\"300\" height=\"198\" /></a>\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and you could see the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking to you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story between this, the fact that you’re a lawyer, and then I read about Noah.\r\n</b>\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances and stuff. So I was sitting there thinking ‘I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted.\r\n\r\nSo I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are a few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\n<iframe src=\"//www.youtube.com/embed/-YAu-sGIpwQ\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard that Primary Children’s was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Goudreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Goudreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. This was sort of a different thing for me. This was the first time I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5.jpg\"><img class=\"alignright size-medium wp-image-1712\" alt=\"mikemasse-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5-300x200.jpg\" width=\"300\" height=\"200\" /></a>\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry, and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was.\r\n\r\n<iframe src=\"//www.youtube.com/embed/R3nDuVMey20\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nIt was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<a href=\"http://www.mikemasse.com/\">Mike Masse Website</a>\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-27 14:07:25','2014-04-27 20:07:25','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0),(1716,2,'2014-04-27 17:27:50','2014-04-27 23:27:50','So imagine you’ve just watched a video and your jaw has dropped. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of a day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3.jpg\"><img class=\"alignright size-medium wp-image-1704\" alt=\"mikemasse3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3-300x240.jpg\" width=\"300\" height=\"240\" /></a>\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Shortly before his first birthday, Mike Masse\'s son Noah was diagnosed with brain cancer. Let that set in just a moment. Before his first birthday. Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nIn the past few months, Mike has continued playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\"><img class=\"alignleft size-full wp-image-1705\" alt=\"bookmikeimg\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\" width=\"141\" height=\"122\" /></a>\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4.jpg\"><img class=\"alignleft size-medium wp-image-1707\" alt=\"mikemasse-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4-300x198.jpg\" width=\"300\" height=\"198\" /></a>\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and you could see the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking to you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story between this, the fact that you’re a lawyer, and then I read about Noah.\r\n</b>\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances and stuff. So I was sitting there thinking ‘I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted.\r\n\r\nSo I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are a few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\n<iframe src=\"//www.youtube.com/embed/-YAu-sGIpwQ\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard that Primary Children’s was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Goudreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Goudreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. This was sort of a different thing for me. This was the first time I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5.jpg\"><img class=\"alignright size-medium wp-image-1712\" alt=\"mikemasse-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5-300x200.jpg\" width=\"300\" height=\"200\" /></a>\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry, and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was.\r\n\r\n<iframe src=\"//www.youtube.com/embed/R3nDuVMey20\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nIt was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<a href=\"http://www.mikemasse.com/\">Mike Masse Website</a>\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-27 17:27:50','2014-04-27 23:27:50','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0),(1717,2,'2014-04-27 18:02:03','2014-04-28 00:02:03','So imagine you’ve just watched a music video and your jaw has dropped. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of a day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3.jpg\"><img class=\"alignright size-medium wp-image-1704\" alt=\"mikemasse3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3-300x240.jpg\" width=\"300\" height=\"240\" /></a>\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Shortly before his first birthday, Mike Masse\'s son Noah was diagnosed with brain cancer. Let that set in just a moment. <em>Before his first birthday</em>. Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nAfter taking time to deal with his family situation, Mike has returned to playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\"><img class=\"alignleft size-full wp-image-1705\" alt=\"bookmikeimg\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\" width=\"141\" height=\"122\" /></a>\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow, and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4.jpg\"><img class=\"alignleft size-medium wp-image-1707\" alt=\"mikemasse-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4-300x198.jpg\" width=\"300\" height=\"198\" /></a>\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking with you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story between this, the fact that you’re a lawyer, and then I read about Noah.\r\n</b>\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we need to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances. I was sitting there thinking I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted.\r\n\r\nSo I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\n<iframe src=\"//www.youtube.com/embed/-YAu-sGIpwQ\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard this was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Goudreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Goudreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5.jpg\"><img class=\"alignright size-medium wp-image-1712\" alt=\"mikemasse-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5-300x200.jpg\" width=\"300\" height=\"200\" /></a>\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry(\"How do you ask a man to be the last man to die for a mistake?\"), and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was.\r\n\r\n<iframe src=\"//www.youtube.com/embed/R3nDuVMey20\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nIt was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<a href=\"http://www.mikemasse.com/\">Mike Masse Website</a>\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-27 18:02:03','2014-04-28 00:02:03','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0),(1718,2,'2014-04-27 18:18:25','2014-04-28 00:18:25','So imagine you’ve just watched a music video and your jaw has dropped. Then you start doing a little research into the singer in the video and you keep uncovering these interesting layers about his life. Yeah, that.\r\n\r\nSeveral months ago, Rick Klinger of the band <a href=\"http://www.hybridice.net/index.asp\">Hybrid Ice</a>, told me about this guy on YouTube who had done a cover of Toto’s song “Africa.” Listen to it he said, and check out the number of views it has. So I did. At that time it had close to 3 million views, now it’s close to 3.5 million. Two guys: one on bass, one on guitar, wearing shorts, singing in a… pizzeria.\r\n\r\n<iframe src=\"//www.youtube.com/embed/MLrC7e3vSv8\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nThe two guys are Mike Masse and Jeff Hall, friends and fellow lawyers from Utah. I told you it got more interesting. After hearing “Africa,” I spent the better part of a day watching their videos of some extremely well-known covers, and was totally knocked out by them.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3.jpg\"><img class=\"alignright size-medium wp-image-1704\" alt=\"mikemasse3\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse3-300x240.jpg\" width=\"300\" height=\"240\" /></a>\r\n\r\nIntrigued, I began to research a little more, and that’s when I learned about Noah. Shortly before his first birthday, Mike Masse\'s son Noah was diagnosed with brain cancer. Let that set in just a moment. <em>Before his first birthday</em>. During the time of Noah\'s illness, Mike had been filling in friends, family and fans via the <a href=\"http://www.caringbridge.org/\">Caring Bridge</a>, a protected website where updates can be posted during a family health crisis.\r\n\r\nEncouraged by his music distributor, Mike also recorded a song which could be downloaded for a donation, to help with the ongoing cost of Noah’s treatment. The good news is Mike’s music has continued to go viral; the better news is that Noah, now a little over 2 ½, is doing well.\r\n\r\nAfter taking time to deal with his family situation, Mike has returned to playing gigs, including a pre-game event during the NFL Playoffs outside Mile-High Stadium in Denver. He will also be part of a classic rock event in Mexico, playing with original members of Boston, on a bill along with John Cafferty & Michael ‘Tunes’ Antunes, Keven Chalfant, Jimi Jamison, Hybrid Ice and several others. Not bad for a guy playing covers in a pizza joint.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\"><img class=\"alignleft size-full wp-image-1705\" alt=\"bookmikeimg\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/bookmikeimg.png\" width=\"141\" height=\"122\" /></a>\r\n\r\nWhen you do interviews, sometimes you get excited because your subject is one of your musical favorites, or you’re lucky enough to “get” a big name. With Mike Masse, I was excited not only because of his music, but I wanted to peel those layers and see what was underneath. I was not disappointed.\r\n\r\n<b>Kath Galasso: So how are things going, everything ok?</b>\r\n\r\nMike Masse: Yeah, everything’s good. I’ve been extra busy with trying to respond to people’s messages and comments with “Africa” having another viral trip around the world, it’s renewed people’s interest, I guess. Getting the views is a weird thing. There’s some stuff out there that gets nothing, and some other things blow up so huge that you can’t even fathom it. Mine is definitely big compared to some, and to others it’s still small time. It’s fun though. That’s kind of why we set up the video camera, a virtual gig for the world to watch anytime they wanted to.\r\n\r\n<b>How did the progression start with it?</b>\r\n\r\nI have a sister Michelle who lives in Las Vegas, she had some of my audio recordings and had a friend who was a huge fan. She (Michelle) told me her friend wanted to come over while I was in town and hear me play the songs. So we sat down in her living room and played a few songs for her and a few friends. It was private, mellow, and Michelle made a comment that I should film some of these and put them on YouTube. And it just kind of clicked in my head “duh, of course I should do that.”\r\n\r\nThe first thing I did was “A Day In The Life,” and it was just me in my living room. Then I posted a few songs from a few early gigs. And from there I would just share it on my FaceBook page, and it spread from there. People I didn’t know would stumble upon the videos when they were searching for those songs, or acoustic versions of those songs, or covers of those songs. It started to build and people would subscribe. I tried to basically cover our whole song list. Jeff and I have been playing together for about twenty years now. And like me, he’s just thrilled when anybody cares, whether they’re in the room or not. He just thinks it’s great when anybody enjoys it.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4.jpg\"><img class=\"alignleft size-medium wp-image-1707\" alt=\"mikemasse-4\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-4-300x198.jpg\" width=\"300\" height=\"198\" /></a>\r\n\r\nAlong those same lines, I’ve gotten so many messages over the years from people you wouldn’t imagine hearing from, about how the music had an impact on them or helped them, or strengthened them or gave them hope at a difficult time. Or say things like “my dad was a big fan of yours and he passed, and your music gives me comfort,” just wonderful things like that. Or people who are back from the military and suffering from PTSDs and they find comfort in listening to our videos. And it’s all a credit to the music. I don’t take any part of that personally. My response to them is like “I know, right… the music is awesome.” I don’t think of it as me, I do this as a fan of the music. Performing and recreating it is the ultimate way for me to honor that music. It’s basically “hey I like this song so much, I learned it note for note… wanna hear it?” That’s kind of what I sit down to do. It’s about me enjoying the music as a fan. So when I’m performing the song, I still get to hear the song, and that’s what matters to me. I step outside of it and enjoy it as a listener, even though it’s me singing. I know that sounds weird, but that’s the way I experience it.\r\n\r\n<b>I don’t think it’s weird at all. In fact, I think it’s part of why your songs have gone viral. Honestly, the first time I saw “Africa,” I had tears in my eyes because of the purity, and the love you have in doing it. And I think that’s part of it, it’s not just that you’re spot on with the interpretation of the song. It’s coming from your soul and I think people really can relate to it.</b>\r\n\r\n<b>I was so looking forward to talking with you. I’ve talked to some interesting people in the past year, but you have such an interesting all-around story between this, the fact that you’re a lawyer, and then I read about Noah.\r\n</b>\r\nI appreciate that. When everything happened with Noah, it was like everything else stopped. Music stopped, work stopped, everything else stopped. It was Noah crunch time and we needed to figure this out. I stepped away for a while. Before Noah had his sickness, I had an older sister who had died of a brain tumor and I had seen there had been lots of struggles with finances. I was sitting there thinking I don’t want to make decisions of treatment based on finances. I wanted to give him what he needed and didn’t want money to be an issue. So, it was actually the record company that said why don’t you do a tribute song for Noah and ask for donations. I didn’t want to ask for a handout, but if it was a song people were buying, they could get something for what they pay… and they could pay whatever they wanted.\r\n\r\nSo I was trying to decide what song, and it came pretty quickly because it was a song I had been listening to in the car. When you have something so awful like that happen, a lot of pop culture and a lot of what you used to like before just really leaves a bad taste in your mouth. They seem trivial, small and unimportant, and there are few things that will survive that litmus test. And to me, the Beatles is one of them. Not all Beatles, but a song like “Let It Be,” you could listen to that all day when you’re having a horrible day. I had actually listened to “Let It Be” a lot going back and forth from the hospital because I thought the message: that some things are out of your control, hope and pray for the best, but you have to trust that the best thing is going to happen… whatever that may be. That’s how I interpreted it from a faith standpoint.\r\n\r\n<iframe src=\"//www.youtube.com/embed/-YAu-sGIpwQ\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nSo I recorded it and posted it, and people were like ‘oh ok, that’s what’s going on with Mike.’ And I realized quickly by doing that, we were sacrificing any sense of entitlement of privacy about the subject. Noah belongs to everybody now in the sense that they’ve all heard his story, they all love him, they all want the best for him, and they all deserve to know what’s going on. That’s why I started doing the Caring Bridge blog and all the updates. It wasn’t like we turned it into a reality story, we could still pick and choose what we wanted to make public, but it was more a community of concerned music fans. I’m so happy that people can tune in now and find a happy ending to our story, at least to today.\r\n\r\n<b>And the story is just so relatable because everybody has someone who has cancer, everybody has something that gets them down, and this is something that gives them hope. It makes you more family, more part of the global family.</b>\r\n\r\n<b>What got me about the story was the decisions you had to make, sometimes going against what one doctor said, to choose what the other doctor recommended. That to me, just tears your heart apart. You don’t know what the right answer is.</b>\r\n\r\nYeah. And you don’t want to be second guessing doctors without a reason.\r\n\r\n<b>I guess at some point you just have to go with what your gut tells you.</b>\r\n\r\nYeah and the other thing is we were at the place where other families had traveled to be at, because they’d heard this was the place for cancer treatment for children in our region. And suddenly, we’re starting to question whether or not we’re getting the best advice about his chemo. Part of me is like “who am I to challenge that,” and then my wife started doing more research and she found the doctor who wrote the protocol specifically for what Noah had. He had some pretty strong opinions about what to do and what not to do, and there were some pretty dangerous courses of treatment that had been proposed, that he talked us out of.\r\n\r\n<b> </b><b>And Noah was just a baby, a baby. I can’t even imagine what you went through. </b>\r\n\r\n<b>Ok. Let’s get back to the music. You do a lot of Boston covers and you’ve actually done some shows with Barry (Goudreau) and Sib (Hashian). How did that come about?</b>\r\n\r\nFrom what I’ve heard after the fact, there may have been a few people who sent to Barry Goudreau, the guitar player, links to me in the past, that he had brushed off or not really paid attention. But it was Rusty (Foulke) from Hybrid Ice that found me, and I got this email saying ‘I’m Rusty from Pennsylvania, and I perform sometimes with Sib and Barry from Boston, and we’d love to have you out for a gig and have you sing for us.’ I hadn’t had a lot of brushes with musical celebrities in any kind of style other than as a fan. I hadn’t had any situations where I was coming at them as a colleague or something. I’d actually perform some of these songs with the people that originally performed these songs. That was such a mind-blowing thing, I wasn’t sure how seriously to take it, how the logistics would work, I didn’t really know what they had going as far as gigs.\r\n\r\nSo what I did was, to up the ante a bit, I took the version of “More Than A Feeling” that’s included with Rock Band, and I recorded myself singing the lead vocal. So I had Brad (Delp) still singing the backing vocals and it was me singing the lead, with all of Boston playing. It was the original version with my vocals substituted. I made a recording of that and sent it to Rusty and he sent it to Barry. The next day, I got an email from Barry. I was pretty floored when I read that email; that was so cool to me because at heart, I’m still a music fan. I’m still just a kid looking at that LP cover. Then to read it, he said he heard my version of “More Than A Feeling,” and it literally brought tears to his eyes. And I knew what he meant by that. It brought tears to his eyes because of Brad. It reminded him enough of Brad, that it brought back those emotions and feelings he had for Brad. He loved Brad as a brother, and Brad’s tragic ending to his life, all that emotion. So he said he’d love to have me come out and audition.\r\n\r\n<a href=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5.jpg\"><img class=\"alignright size-medium wp-image-1712\" alt=\"mikemasse-5\" src=\"http://www.earthhertzrecords.com/wp-content/uploads/2014/04/mikemasse-5-300x200.jpg\" width=\"300\" height=\"200\" /></a>\r\n\r\nPlaying with those guys is like playing air guitar in your bedroom. Playing those songs and watching Barry do his solo on “Long Time,” whoa, that’s it. That’s the solo, that’s the guy, and I’m onstage with him. It was crazy.\r\n\r\nI had a lot of hard work to do, I literally had to get into shape, because it’s physically demanding to sing all those songs back-to-back. In the process of preparing for that and over the course of the next year or so, I lost forty pounds because I knew I needed to. I’m used to sitting down and playing songs, some of them are easy, some of them are hard. And suddenly, I’m going to be standing up and playing a lot of hard songs in a row. It is arguably one of the hardest rock repertoires there is. But it was a lot of fun and we’re doing another gig in May.\r\n\r\n<b>Yeah, the Mexico gig, that’s gonna be a lot of fun with all the classic rockers there. Does it work the same way as the rock cruise, where you only work one night?</b>\r\n\r\nI think so, yeah. We’re doing one night, but I’m assuming there might be some intermingling of bands and people. I’m sure it will be kind of loose. Anything can happen. I would love the chance to do an acoustic gig with Rusty because he knows a lot of the same songs I do, and he’s a way better guitar player than I am, and a great singer. I think we would have a lot of fun playing together.\r\n\r\n<b>I was going to ask if you wrote any of your own songs, then I saw you tweet a link with a few songs you have, and the song “This Mistake,” about the war in Iraq. It is a very moving song. Tell me about that.</b>\r\n\r\nThat was something that had been bothering me and a lot of people. I had heard that quote from John Kerry (\"How do you ask a man to be the last man to die for a mistake?\"), and it stuck with me. And I just felt like I wanted to write a song about it. I had the music sitting around and finally found a place to use it. I recorded it a few years earlier, then I made the video. So the song was actually written earlier, probably even before anyone knew who Barack Obama was.\r\n\r\n<iframe src=\"//www.youtube.com/embed/R3nDuVMey20\" height=\"315\" width=\"420\" allowfullscreen=\"\" frameborder=\"0\"></iframe>\r\n\r\nIt was more out of frustration, of why do we keep doing this? This is not working and people are dying. I was looking online for pictures and sobbing as I put that video together because it’s horrendous, seeing all those little kids at the funerals and stuff. And I’m glad that it (the Iraq War) has ended the way it did eventually, but it shouldn’t have taken so long. The same is true of Afghanistan, at some point you have to cut your losses so that there are no more losses.\r\n\r\n<b>What’s next?</b>\r\n\r\nWith the videos going viral, I’m getting different offers. This time it just feels different, I think it’s going to escalate a bit. So I’m interested to see where it’s going to go. I’m not so quick to say no to things. For a while there was the thing with Noah, and that was a valid reason to say no, but that reason is not as valid anymore, thankfully. So it’s a conversation I’ve had with my wife, to see what’s really there and what could be there. We’re trying to keep open minds about the future.\r\n\r\n<a href=\"http://www.mikemasse.com/\">Mike Masse Website</a>\r\n\r\nInterview by <a href=\"http://www.earthhertzrecords.com/2013/10/about-kath-galasso/\">Kath Galasso</a>','Mike Masse, Out of Africa','','inherit','open','open','','1700-revision-v1','','','2014-04-27 18:18:25','2014-04-28 00:18:25','',1700,'http://www.earthhertzrecords.com/2014/04/1700-revision-v1/',0,'revision','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL default '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL default '0', `term_order` int(11) NOT NULL default '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (1,2,0),(2,2,0),(3,2,0),(4,2,0),(5,2,0),(6,2,0),(7,2,0),(1238,58,0),(662,50,0),(1101,68,0),(615,47,0),(663,50,0),(615,49,0),(629,50,0),(615,48,0),(635,50,0),(1110,104,0),(661,50,0),(660,50,0),(1051,50,0),(631,50,0),(1242,57,0),(3,11,0),(422,13,0),(427,12,0),(427,16,0),(427,17,0),(427,18,0),(427,19,0),(427,20,0),(430,11,0),(430,21,0),(430,22,0),(430,23,0),(430,18,0),(432,13,0),(432,24,0),(432,25,0),(432,26,0),(432,27,0),(432,28,0),(1186,101,0),(1263,49,0),(432,33,0),(1259,102,0),(430,34,0),(427,34,0),(495,32,0),(495,35,0),(495,36,0),(495,37,0),(495,38,0),(495,39,0),(495,40,0),(495,41,0),(495,34,0),(615,46,0),(615,45,0),(645,50,0),(598,32,0),(598,42,0),(598,43,0),(598,44,0),(598,34,0),(637,50,0),(1367,255,0),(639,50,0),(1259,95,0),(1253,34,0),(721,50,0),(670,50,0),(1253,92,0),(734,58,0),(722,54,0),(736,58,0),(1253,91,0),(1253,49,0),(790,58,0),(734,54,0),(722,58,0),(736,54,0),(790,54,0),(1259,96,0),(795,58,0),(795,54,0),(797,58,0),(797,54,0),(803,59,0),(803,29,0),(1430,32,0),(831,54,0),(831,58,0),(839,61,0),(839,60,0),(1430,101,0),(615,66,0),(867,61,0),(867,60,0),(872,61,0),(872,60,0),(877,61,0),(877,60,0),(934,62,0),(934,13,0),(934,63,0),(934,64,0),(934,65,0),(941,29,0),(941,52,0),(1259,94,0),(1259,49,0),(1259,93,0),(1073,67,0),(1110,67,0),(1142,69,0),(1188,84,0),(1144,69,0),(1146,69,0),(1152,69,0),(1154,69,0),(1163,69,0),(1437,41,0),(1173,69,0),(1180,69,0),(1182,69,0),(1186,12,0),(1186,70,0),(1186,71,0),(1186,72,0),(1186,73,0),(1186,74,0),(1186,75,0),(1186,76,0),(1200,12,0),(1200,77,0),(1200,78,0),(1200,79,0),(1200,80,0),(1200,81,0),(1200,82,0),(1200,83,0),(1188,11,0),(1218,68,0),(1188,85,0),(1188,86,0),(1188,87,0),(1188,24,0),(1188,88,0),(1188,89,0),(1188,34,0),(1238,54,0),(1238,1,0),(1242,90,0),(1253,103,0),(1200,103,0),(1188,103,0),(1101,104,0),(1073,104,0),(615,99,0),(1218,104,0),(598,103,0),(495,103,0),(432,98,0),(430,103,0),(427,103,0),(422,99,0),(3,103,0),(1280,60,0),(1280,61,0),(1303,12,0),(1284,61,0),(1284,60,0),(1453,149,0),(1453,32,0),(1303,103,0),(1303,107,0),(1303,108,0),(1303,109,0),(1331,33,0),(1331,13,0),(1331,98,0),(1331,110,0),(1331,111,0),(1331,112,0),(1331,113,0),(1341,29,0),(1341,103,0),(1341,42,0),(1341,114,0),(1341,115,0),(1341,116,0),(1341,35,0),(1341,36,0),(1341,117,0),(1341,118,0),(1341,119,0),(1347,32,0),(1347,101,0),(1347,120,0),(1347,121,0),(1347,122,0),(1347,70,0),(1355,31,0),(1355,103,0),(1437,153,0),(1437,155,0),(1437,154,0),(1437,151,0),(1437,152,0),(1437,100,0),(1437,13,0),(1383,29,0),(1367,58,0),(1367,60,0),(1383,103,0),(1383,126,0),(1383,42,0),(1383,127,0),(1383,128,0),(1383,34,0),(1388,29,0),(1388,103,0),(1388,116,0),(1388,129,0),(1388,130,0),(1388,42,0),(1388,131,0),(1388,34,0),(1388,132,0),(1388,133,0),(1399,32,0),(1399,101,0),(1399,134,0),(1399,135,0),(1399,70,0),(1399,136,0),(1399,137,0),(1416,29,0),(1408,69,0),(1416,103,0),(1416,138,0),(1416,139,0),(1416,140,0),(1416,141,0),(1416,142,0),(1416,34,0),(1422,29,0),(1422,103,0),(1422,143,0),(1422,144,0),(1422,110,0),(1422,145,0),(1422,146,0),(1422,147,0),(1422,116,0),(1422,34,0),(1430,148,0),(1430,70,0),(1430,149,0),(1430,150,0),(1437,156,0),(1437,157,0),(1442,158,0),(1442,32,0),(1442,101,0),(1442,150,0),(1442,149,0),(1442,159,0),(1442,70,0),(1453,101,0),(1453,150,0),(1453,160,0),(1453,70,0),(1458,161,0),(1458,11,0),(1458,101,0),(1458,162,0),(1458,163,0),(1458,70,0),(1458,149,0),(1473,32,0),(1473,103,0),(1473,164,0),(1473,165,0),(1473,166,0),(1473,167,0),(1473,34,0),(1483,103,0),(1483,29,0),(1483,165,0),(1483,166,0),(1483,161,0),(1483,164,0),(1483,34,0),(1483,41,0),(1483,152,0),(1483,168,0),(1491,169,0),(1491,49,0),(1491,103,0),(1491,170,0),(1491,162,0),(1491,171,0),(1491,34,0),(1499,152,0),(1499,32,0),(1499,103,0),(1499,168,0),(1499,172,0),(1499,173,0),(1499,41,0),(1499,174,0),(1499,175,0),(1499,176,0),(1499,34,0),(1518,176,0),(1518,32,0),(1518,103,0),(1518,152,0),(1518,168,0),(1518,174,0),(1518,34,0),(1518,175,0),(1518,173,0),(1518,172,0),(1518,41,0),(1526,103,0),(1526,177,0),(1526,42,0),(1526,164,0),(1526,178,0),(1526,167,0),(1526,179,0),(1526,180,0),(1526,181,0),(1526,29,0),(1526,34,0),(1532,177,0),(1532,29,0),(1532,103,0),(1532,165,0),(1532,164,0),(1532,178,0),(1532,182,0),(1542,32,0),(1542,101,0),(1542,183,0),(1542,150,0),(1542,184,0),(1542,149,0),(1542,185,0),(1542,70,0),(1551,101,0),(1551,32,0),(1551,150,0),(1551,186,0),(1551,187,0),(1551,188,0),(1551,149,0),(1551,189,0),(1566,11,0),(1566,103,0),(1572,11,0),(1566,191,0),(1566,34,0),(1566,149,0),(1566,192,0),(1566,193,0),(1566,128,0),(1566,194,0),(1572,103,0),(1572,195,0),(1572,196,0),(1572,197,0),(1572,198,0),(1572,199,0),(1572,200,0),(1572,34,0),(1576,101,0),(1576,49,0),(1576,149,0),(1576,146,0),(1576,201,0),(1576,70,0),(1583,150,0),(1583,32,0),(1583,101,0),(1583,202,0),(1583,203,0),(1583,149,0),(1583,70,0),(1591,204,0),(1591,11,0),(1591,100,0),(1591,205,0),(1591,206,0),(1591,207,0),(1591,208,0),(1591,209,0),(1591,210,0),(1591,149,0),(1591,193,0),(1591,211,0),(1591,212,0),(1591,213,0),(1591,214,0),(1591,215,0),(1591,216,0),(1591,157,0),(1596,217,0),(1596,32,0),(1596,101,0),(1596,150,0),(1596,218,0),(1596,149,0),(1596,219,0),(1596,220,0),(1596,70,0),(1602,221,0),(1602,32,0),(1602,103,0),(1602,222,0),(1602,223,0),(1602,224,0),(1602,225,0),(1602,226,0),(1602,227,0),(1602,228,0),(1602,229,0),(1602,34,0),(1602,230,0),(1602,231,0),(1622,232,0),(1622,32,0),(1622,101,0),(1622,150,0),(1622,233,0),(1622,149,0),(1622,70,0),(1629,234,0),(1629,49,0),(1629,100,0),(1629,235,0),(1629,236,0),(1629,162,0),(1629,237,0),(1629,238,0),(1629,239,0),(1629,240,0),(1629,241,0),(1629,242,0),(1629,243,0),(1629,244,0),(1640,250,0),(1629,249,0),(1637,103,0),(1637,42,0),(1637,246,0),(1637,247,0),(1637,116,0),(1637,248,0),(1637,34,0),(1637,29,0),(1629,157,0),(1640,32,0),(1640,101,0),(1640,251,0),(1640,150,0),(1640,149,0),(1640,252,0),(1640,70,0),(1650,253,0),(1650,32,0),(1650,103,0),(1650,95,0),(1650,254,0),(1650,131,0),(1650,149,0),(1650,34,0),(1284,256,0),(1280,257,0),(872,260,0),(877,259,0),(867,261,0),(839,262,0),(1673,263,0),(1673,49,0),(1673,103,0),(1673,264,0),(1673,265,0),(1673,266,0),(1673,34,0),(1679,162,0),(1679,49,0),(1679,103,0),(1679,18,0),(1679,169,0),(1679,267,0),(1679,268,0),(1679,269,0),(1679,34,0),(1692,270,0),(1692,32,0),(1692,101,0),(1692,70,0),(1692,271,0),(1692,272,0),(1692,273,0),(1700,32,0),(1700,103,0),(1700,274,0),(1700,275,0),(1700,276,0),(1700,264,0),(1700,277,0),(1700,278,0),(1700,279,0),(1700,149,0),(1700,280,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL auto_increment, `term_id` bigint(20) unsigned NOT NULL default '0', `taxonomy` varchar(32) NOT NULL default '', `description` longtext NOT NULL, `parent` bigint(20) unsigned NOT NULL default '0', `count` bigint(20) NOT NULL default '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=MyISAM AUTO_INCREMENT=281 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'link_category','',0,7),(6,6,'category','',0,0),(45,45,'post_tag','',0,1),(10,10,'category','',6,0),(11,11,'category','',10,7),(12,12,'category','',10,4),(13,13,'category','',10,5),(51,51,'category','',6,0),(15,15,'post_format','',0,0),(16,16,'post_tag','',0,1),(17,17,'post_tag','',0,1),(18,18,'post_tag','',0,3),(19,19,'post_tag','',0,1),(20,20,'post_tag','',0,1),(21,21,'post_tag','',0,1),(22,22,'post_tag','',0,1),(23,23,'post_tag','',0,1),(24,24,'post_tag','',0,2),(25,25,'post_tag','',0,1),(26,26,'post_tag','',0,1),(27,27,'post_tag','',0,1),(28,28,'post_tag','',0,1),(29,29,'category','',0,11),(30,30,'post_tag','',0,0),(60,60,'category','',6,5),(31,31,'category','',6,0),(32,32,'category','',6,20),(33,33,'post_tag','',0,2),(34,34,'post_tag','',0,23),(35,35,'post_tag','',0,2),(36,36,'post_tag','',0,2),(37,37,'post_tag','',0,1),(38,38,'post_tag','',0,1),(39,39,'post_tag','',0,1),(40,40,'post_tag','',0,1),(41,41,'post_tag','',0,5),(42,42,'post_tag','',0,6),(43,43,'post_tag','',0,1),(44,44,'post_tag','',0,1),(46,46,'post_tag','',0,1),(47,47,'post_tag','',0,1),(48,48,'post_tag','',0,1),(49,49,'category','',6,8),(50,50,'nav_menu','',0,13),(59,59,'post_format','',0,1),(55,55,'post_format','',0,0),(52,52,'post_format','',0,1),(54,54,'category','',6,8),(56,56,'post_format','',0,0),(57,57,'post_format','',0,1),(58,58,'post_format','',0,9),(61,61,'post_format','',0,4),(62,62,'post_tag','',0,1),(63,63,'post_tag','',0,1),(64,64,'post_tag','',0,1),(65,65,'post_tag','',0,1),(66,66,'post_tag','',0,1),(67,67,'category','',49,2),(68,68,'category','',49,2),(69,69,'category','',6,9),(70,70,'post_tag','',0,14),(71,71,'post_tag','',0,1),(72,72,'post_tag','',0,1),(73,73,'post_tag','',0,1),(74,74,'post_tag','',0,1),(75,75,'post_tag','',0,1),(76,76,'post_tag','',0,1),(77,77,'post_tag','',0,1),(78,78,'post_tag','',0,1),(79,79,'post_tag','',0,1),(80,80,'post_tag','',0,1),(81,81,'post_tag','',0,1),(82,82,'post_tag','',0,1),(83,83,'post_tag','',0,1),(84,84,'post_tag','',0,1),(85,85,'post_tag','',0,1),(86,86,'post_tag','',0,1),(87,87,'post_tag','',0,1),(88,88,'post_tag','',0,1),(89,89,'post_tag','',0,1),(90,90,'category','',6,1),(91,91,'post_tag','',0,1),(92,92,'post_tag','',0,1),(93,93,'post_tag','',0,1),(94,94,'post_tag','',0,1),(95,95,'post_tag','',0,2),(96,96,'post_tag','',0,1),(97,97,'category','',6,0),(98,98,'category','',106,2),(99,99,'category','',106,2),(100,100,'category','',106,3),(101,101,'category','',106,15),(102,102,'category','',106,1),(103,103,'category','',106,29),(104,104,'category','',106,4),(105,105,'category','',106,0),(106,106,'category','',0,0),(107,107,'post_tag','',0,1),(108,108,'post_tag','',0,1),(109,109,'post_tag','',0,1),(110,110,'post_tag','',0,2),(111,111,'post_tag','',0,1),(112,112,'post_tag','',0,1),(113,113,'post_tag','',0,1),(114,114,'post_tag','',0,1),(115,115,'post_tag','',0,1),(116,116,'post_tag','',0,4),(117,117,'post_tag','',0,1),(118,118,'post_tag','',0,1),(119,119,'post_tag','',0,1),(120,120,'post_tag','',0,1),(121,121,'post_tag','',0,1),(122,122,'post_tag','',0,1),(123,123,'post_tag','',0,0),(124,124,'post_tag','',0,0),(125,125,'post_tag','',0,0),(126,126,'post_tag','',0,1),(127,127,'post_tag','',0,1),(128,128,'post_tag','',0,2),(129,129,'post_tag','',0,1),(130,130,'post_tag','',0,1),(131,131,'post_tag','',0,2),(132,132,'post_tag','',0,1),(133,133,'post_tag','',0,1),(134,134,'post_tag','',0,1),(135,135,'post_tag','',0,1),(136,136,'post_tag','',0,1),(137,137,'post_tag','',0,1),(138,138,'post_tag','',0,1),(139,139,'post_tag','',0,1),(140,140,'post_tag','',0,1),(141,141,'post_tag','',0,1),(142,142,'post_tag','',0,1),(143,143,'post_tag','',0,1),(144,144,'post_tag','',0,1),(145,145,'post_tag','',0,1),(146,146,'post_tag','',0,2),(147,147,'post_tag','',0,1),(148,148,'post_tag','',0,1),(149,149,'post_tag','',0,15),(150,150,'post_tag','',0,9),(151,151,'post_tag','',0,1),(152,152,'post_tag','',0,4),(153,153,'post_tag','',0,1),(154,154,'post_tag','',0,1),(155,155,'post_tag','',0,1),(156,156,'post_tag','',0,1),(157,157,'post_tag','',0,3),(158,158,'post_tag','',0,1),(159,159,'post_tag','',0,1),(160,160,'post_tag','',0,1),(161,161,'post_tag','',0,2),(162,162,'post_tag','',0,4),(163,163,'post_tag','',0,1),(164,164,'post_tag','',0,4),(165,165,'post_tag','',0,3),(166,166,'post_tag','',0,2),(167,167,'post_tag','',0,2),(168,168,'post_tag','',0,3),(169,169,'post_tag','',0,2),(170,170,'post_tag','',0,1),(171,171,'post_tag','',0,1),(172,172,'post_tag','',0,2),(173,173,'post_tag','',0,2),(174,174,'post_tag','',0,2),(175,175,'post_tag','',0,2),(176,176,'post_tag','',0,2),(177,177,'post_tag','',0,2),(178,178,'post_tag','',0,2),(179,179,'post_tag','',0,1),(180,180,'post_tag','',0,1),(181,181,'post_tag','',0,1),(182,182,'post_tag','',0,1),(183,183,'post_tag','',0,1),(184,184,'post_tag','',0,1),(185,185,'post_tag','',0,1),(186,186,'post_tag','',0,1),(187,187,'post_tag','',0,1),(188,188,'post_tag','',0,1),(189,189,'post_tag','',0,1),(190,190,'post_tag','',0,0),(191,191,'post_tag','',0,1),(192,192,'post_tag','',0,1),(193,193,'post_tag','',0,2),(194,194,'post_tag','',0,1),(195,195,'post_tag','',0,1),(196,196,'post_tag','',0,1),(197,197,'post_tag','',0,1),(198,198,'post_tag','',0,1),(199,199,'post_tag','',0,1),(200,200,'post_tag','',0,1),(201,201,'post_tag','',0,1),(202,202,'post_tag','',0,1),(203,203,'post_tag','',0,1),(204,204,'post_tag','',0,1),(205,205,'post_tag','',0,1),(206,206,'post_tag','',0,1),(207,207,'post_tag','',0,1),(208,208,'post_tag','',0,1),(209,209,'post_tag','',0,1),(210,210,'post_tag','',0,1),(211,211,'post_tag','',0,1),(212,212,'post_tag','',0,1),(213,213,'post_tag','',0,1),(214,214,'post_tag','',0,1),(215,215,'post_tag','',0,1),(216,216,'post_tag','',0,1),(217,217,'post_tag','',0,1),(218,218,'post_tag','',0,1),(219,219,'post_tag','',0,1),(220,220,'post_tag','',0,1),(221,221,'post_tag','',0,1),(222,222,'post_tag','',0,1),(223,223,'post_tag','',0,1),(224,224,'post_tag','',0,1),(225,225,'post_tag','',0,1),(226,226,'post_tag','',0,1),(227,227,'post_tag','',0,1),(228,228,'post_tag','',0,1),(229,229,'post_tag','',0,1),(230,230,'post_tag','',0,1),(231,231,'post_tag','',0,1),(232,232,'post_tag','',0,1),(233,233,'post_tag','',0,1),(234,234,'post_tag','',0,1),(235,235,'post_tag','',0,1),(236,236,'post_tag','',0,1),(237,237,'post_tag','',0,1),(238,238,'post_tag','',0,1),(239,239,'post_tag','',0,1),(240,240,'post_tag','',0,1),(241,241,'post_tag','',0,1),(242,242,'post_tag','',0,1),(243,243,'post_tag','',0,1),(244,244,'post_tag','',0,1),(245,245,'post_tag','',0,0),(250,250,'post_tag','',0,1),(246,246,'post_tag','',0,1),(247,247,'post_tag','',0,1),(248,248,'post_tag','',0,1),(249,249,'post_tag','',0,1),(251,251,'post_tag','',0,1),(252,252,'post_tag','',0,1),(253,253,'post_tag','',0,1),(254,254,'post_tag','',0,1),(255,255,'post_tag','',0,1),(256,256,'post_tag','',0,0),(257,257,'post_tag','',0,1),(258,258,'post_tag','',0,0),(259,259,'post_tag','',0,1),(260,260,'post_tag','',0,1),(261,261,'post_tag','',0,1),(262,262,'post_tag','',0,0),(263,263,'post_tag','',0,1),(264,264,'post_tag','',0,2),(265,265,'post_tag','',0,1),(266,266,'post_tag','',0,1),(267,267,'post_tag','',0,1),(268,268,'post_tag','',0,1),(269,269,'post_tag','',0,1),(270,270,'post_tag','',0,1),(271,271,'post_tag','',0,1),(272,272,'post_tag','',0,1),(273,273,'post_tag','',0,1),(274,274,'post_tag','',0,1),(275,275,'post_tag','',0,1),(276,276,'post_tag','',0,1),(277,277,'post_tag','',0,1),(278,278,'post_tag','',0,1),(279,279,'post_tag','',0,1),(280,280,'post_tag','',0,1); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL auto_increment, `name` varchar(200) NOT NULL default '', `slug` varchar(200) NOT NULL default '', `term_group` bigint(10) NOT NULL default '0', PRIMARY KEY (`term_id`), UNIQUE KEY `slug` (`slug`), KEY `name` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=281 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Blogroll','blogroll',0),(6,'Home','home',0),(45,'cassette','cassette',0),(10,'Reviews','reviews',0),(11,'Music Reviews','musicreviews',0),(12,'Show Reviews','showreviews',0),(13,'Book Reviews','bookreviews',0),(51,'Videos','videos',0),(15,'post-format-link','post-format-link',0),(16,'carolyn wonderland','carolyn-wonderland',0),(17,'nyc winery','nyc-winery',0),(18,'blues','blues',0),(19,'texas','texas',0),(20,'austin','austin',0),(21,'beth hart','beth-hart',0),(22,'bang bang boom boom','bang-bang-boom-boom',0),(23,'joe bonamassa','joe-bonamassa',0),(24,'roy orbison','roy-orbison',0),(25,'rhapsody in black','rhapsody-in-black',0),(26,'john kruth','john-kruth',0),(27,'townes van zandt','townes-van-zandt',0),(28,'biography','biography',0),(29,'Earth Hertz Blog','earthhertzblog',0),(30,'Earth Hertz Blog','earth-hertz-blog',0),(31,'Blog','blog',0),(32,'Interviews','interviews',0),(33,'Linda Roy','linda-roy',0),(34,'Kath Galasso','kath-galasso',0),(35,'matt guertin','matt-guertin',0),(36,'radartower','radartower',0),(37,'inerview','inerview',0),(38,'musical influences','musical-influences',0),(39,'muddy waters','muddy-waters',0),(40,'robert johnson','robert-johnson',0),(41,'the beatles','the-beatles',0),(42,'earth hertz records','earth-hertz-records',0),(43,'hannah mae rector','hannah-mae-rector',0),(44,'guns and run','guns-and-run',0),(46,'tape','tape',0),(47,'rolling stones','rolling-stones',0),(48,'keith richards','keith-richards',0),(49,'Music News','musicnews',0),(50,'Menu1','menu1',0),(52,'post-format-video','post-format-video',0),(54,'Music','music',0),(55,'post-format-chat','post-format-chat',0),(56,'post-format-aside','post-format-aside',0),(57,'post-format-gallery','post-format-gallery',0),(58,'post-format-quote','post-format-quote',0),(59,'post-format-status','post-format-status',0),(60,'Sliders','sliders',0),(61,'post-format-image','post-format-image',0),(62,'Ken Scott','ken-scott',0),(63,'Bobby Owsinski','bobby-owsinski',0),(64,'Abbgy Road','abbgy-road',0),(65,'Ziggy Stardust','ziggy-stardust',0),(66,'Lance Burson','lance-burson',0),(67,'Earth Hertz History','earthlabsmobile',0),(68,'56th Grammy® News','grammynews',0),(69,'About','about',0),(70,'James Wood','james-wood',0),(71,'Winery Dogs','winery-dogs',0),(72,'Allentown','allentown',0),(73,'Billy Sheehan','billy-sheehan',0),(74,'Richie Kotzen','richie-kotzen',0),(75,'Mike Portnoy','mike-portnoy',0),(76,'Lou Reed','lou-reed',0),(77,'Kath Galasso. The Rascals','kath-galasso-the-rascals',0),(78,'Once Upon a Dream','once-upon-a-dream',0),(79,'Dino Danelli','dino-danelli',0),(80,'Eddie Brigati','eddie-brigati',0),(81,'Gene Cornish','gene-cornish',0),(82,'Felix Cavalieri','felix-cavalieri',0),(83,'Steven Van Zandt','steven-van-zandt',0),(84,'Howlin Brothers','howlin-brothers',0),(85,'Sun Studio','sun-studio',0),(86,'Memphis','memphis',0),(87,'Americana','americana',0),(88,'Carl Perkins','carl-perkins',0),(89,'Boz Scaggs','boz-scaggs',0),(90,'Photos','photos',0),(91,'yellow dogs','yellow-dogs',0),(92,'iranian musicians','iranian-musicians',0),(93,'Jay Bennett','jay-bennett',0),(94,'Wilco','wilco',0),(95,'Richard Fulco','richard-fulco',0),(96,'Jeff Tweedy','jeff-tweedy',0),(97,'Authors','authors',0),(98,'Linda Roy','lindaroy',0),(99,'Lance Burson','lanceburson',0),(100,'Jen Kehl','jenkehl',0),(101,'James Wood','jameswood',0),(102,'Richard Fulco','rochardfulco',0),(103,'Kath Galasso','kathgalasso',0),(104,'Robert Xeno','robertxeno',0),(105,'Saint Christopher','saintchristopher',0),(106,'Writers','writers',0),(107,'arlo guthrie','arlo-guthrie',0),(108,'woody guthrie','woody-guthrie',0),(109,'newton theatre','newton-theatre',0),(110,'Linda Ronstadt','linda-ronstadt',0),(111,'Simple Dreams','simple-dreams',0),(112,'Book Review','book-review',0),(113,'Stone Poneys','stone-poneys',0),(114,'reviews','reviews-2',0),(115,'videos','videos-2',0),(116,'applegate nance','applegate-nance',0),(117,'st. christopher','st-christopher',0),(118,'joshua ayers','joshua-ayers',0),(119,'hannah mae','hannah-mae',0),(120,'terry mcdermott','terry-mcdermott',0),(121,'lose this feeling','lose-this-feeling',0),(122,'the voice','the-voice',0),(123,'sun studios','sun-studios',0),(124,'bluegrass','bluegrass',0),(125,'howl','howl',0),(126,'billy david band','billy-david-band',0),(127,'reggae','reggae',0),(128,'pop','pop',0),(129,'mike applegate','mike-applegate',0),(130,'kyle nance','kyle-nance',0),(131,'riffraf','riffraf',0),(132,'hey california','hey-california',0),(133,'the good bad and the sunny','the-good-bad-and-the-sunny',0),(134,'margo rey','margo-rey',0),(135,'john oates','john-oates',0),(136,'brides against breast cancer','brides-against-breast-cancer',0),(137,'this holiday night','this-holiday-night',0),(138,'beyonce','beyonce',0),(139,'new album','new-album',0),(140,'santa','santa',0),(141,'media','media',0),(142,'PR','pr',0),(143,'rock and roll hall of fame','rock-and-roll-hall-of-fame',0),(144,'hall and oates','hall-and-oates',0),(145,'nirvana','nirvana',0),(146,'kiss','kiss',0),(147,'peter gabriel','peter-gabriel',0),(148,'carmen electra','carmen-electra',0),(149,'music','music-2',0),(150,'entertainment','entertainment',0),(151,'jimmie nichol','jimmie-nichol',0),(152,'jim berkenstadt','jim-berkenstadt',0),(153,'Paul McCartney','paul-mccartney',0),(154,'Ringo Starr','ringo-starr',0),(155,'rock and roll','rock-and-roll',0),(156,'London','london',0),(157,'Jen Kehl','jen-kehl',0),(158,'american idol','american-idol',0),(159,'Scott MacIntyre','scott-macintyre',0),(160,'Tim Butler','tim-butler',0),(161,'reo speedwagon','reo-speedwagon',0),(162,'classic rock','classic-rock',0),(163,'kevin cronin','kevin-cronin',0),(164,'Laura Sullivan','laura-sullivan',0),(165,'Grammy Awards','grammy-awards',0),(166,'Grammy Nominee','grammy-nominee',0),(167,'Best New Age Album','best-new-age-album',0),(168,'jimmie nicol','jimmie-nicol',0),(169,'bb KIng','bb-king',0),(170,'the smithereens','the-smithereens',0),(171,'old school','old-school',0),(172,'the beatle who vanished','the-beatle-who-vanished',0),(173,'rock and roll detective','rock-and-roll-detective',0),(174,'john lennon','john-lennon',0),(175,'ringo','ringo',0),(176,'george harrison','george-harrison',0),(177,'the grammys','the-grammys',0),(178,'jennifer gasoi','jennifer-gasoi',0),(179,'best childrens album','best-childrens-album',0),(180,'nokia theatre','nokia-theatre',0),(181,'the staples center','the-staples-center',0),(182,'vassy','vassy',0),(183,'Asia','asia',0),(184,'Geoff Downes','geoff-downes',0),(185,'New Dance Orchestra','new-dance-orchestra',0),(186,'Love at First Sting','love-at-first-sting',0),(187,'Matthias Jabs','matthias-jabs',0),(188,'MTV','mtv',0),(189,'Scorpions.James Wood','scorpions-james-wood',0),(190,'Lake Side Dive','lake-side-dive',0),(191,'Bad Self Portraits','bad-self-portraits',0),(192,'Motown','motown',0),(193,'R&B','rb',0),(194,'Lake Street Dive','lake-street-dive',0),(195,'Benmont Tench','benmont-tench',0),(196,'Tom Petty','tom-petty',0),(197,'The Heartbreakers','the-heartbreakers',0),(198,'keyboards','keyboards',0),(199,'you should be so lucky','you-should-be-so-lucky',0),(200,'bob dylan','bob-dylan',0),(201,'Rock Hall Of Fame','rock-hall-of-fame',0),(202,'Gary Chapman','gary-chapman',0),(203,'Nashville','nashville',0),(204,'60′s music','60%e2%80%b2s-music',0),(205,'60s music','60s-music',0),(206,'70\'s Music','70s-music',0),(207,'album reviews','album-reviews',0),(208,'albums','albums',0),(209,'funk','funk',0),(210,'horn section','horn-section',0),(211,'review','review',0),(212,'sly and the family stone','sly-and-the-family-stone',0),(213,'sly and the family stone Higher!','sly-and-the-family-stone-higher',0),(214,'sly stone','sly-stone',0),(215,'the 60′s','the-60%e2%80%b2s',0),(216,'the sixties','the-sixties',0),(217,'Bill Leverty','bill-leverty',0),(218,'Firehouse','firehouse',0),(219,'Firefest','firefest',0),(220,'Monsters of Rock','monsters-of-rock',0),(221,'Smart Studio','smart-studio',0),(222,'Wendy Schneider','wendy-schneider',0),(223,'Butch Vig','butch-vig',0),(224,'Steve Marker','steve-marker',0),(225,'Nivana','nivana',0),(226,'Nevermind','nevermind',0),(227,'Smashing Pumpkins','smashing-pumpkins',0),(228,'Nine Inch Nails','nine-inch-nails',0),(229,'Kickstarter','kickstarter',0),(230,'documentary','documentary',0),(231,'indie artists','indie-artists',0),(232,'Brian Culbertson','brian-culbertson',0),(233,'Jazz','jazz',0),(234,'Brenda Lee','brenda-lee',0),(235,'Burt Reynolds','burt-reynolds',0),(236,'chet atkins','chet-atkins',0),(237,'country music','country-music',0),(238,'Elvis','elvis',0),(239,'elvis presley','elvis-presley',0),(240,'jerry reed','jerry-reed',0),(241,'Jerry Reed Jerry','jerry-reed-jerry',0),(242,'johnny cash','johnny-cash',0),(243,'rock','rock',0),(244,'Smokey and the Bandit','smokey-and-the-bandit',0),(245,'waylon jenningsJen Kehl','waylon-jenningsjen-kehl',0),(246,'warped tour','warped-tour',0),(247,'vans warped tour','vans-warped-tour',0),(248,'karma','karma',0),(249,'waylon jennings','waylon-jennings',0),(250,'Books','books',0),(251,'Duran Duran','duran-duran',0),(252,'Andrew Golub','andrew-golub',0),(253,'no end to the slope','no-end-to-the-slope',0),(254,'brooklyn','brooklyn',0),(255,'AN1','an1',0),(256,'MG','mg',0),(257,'AN2','an2',0),(258,'JA','ja',0),(259,'JA1','ja1',0),(260,'HM1','hm1',0),(261,'AN3','an3',0),(262,'MG2','mg2',0),(263,'Jeff Porcaro','jeff-porcaro',0),(264,'Toto','toto',0),(265,'drummer','drummer',0),(266,'session musician','session-musician',0),(267,'chuck berry','chuck-berry',0),(268,'james cotton','james-cotton',0),(269,'legends','legends',0),(270,'lindsey ell','lindsey-ell',0),(271,'grand ole opry','grand-ole-opry',0),(272,'les paul','les-paul',0),(273,'martin guitar','martin-guitar',0),(274,'mike masse','mike-masse',0),(275,'jeff hall','jeff-hall',0),(276,'africa','africa',0),(277,'boston','boston',0),(278,'barry godreau','barry-godreau',0),(279,'sib hashian','sib-hashian',0),(280,'covers','covers',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL auto_increment, `user_id` bigint(20) unsigned NOT NULL default '0', `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`) ) ENGINE=MyISAM AUTO_INCREMENT=15968 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'first_name','Robert'),(2,1,'last_name','Xeno'),(3,1,'nickname','Admin'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'aim',''),(10,1,'yim',''),(11,1,'jabber',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(13,1,'wp_user_level','10'),(15,1,'wp_user-settings','m4=o&m5=o&m1=o&m0=o&m8=o&m9=o&m10=o&m6=o&m2=o&editor=html&hidetb=1&imgsize=full&align=none&galfile=1&galord=ID&m11=o&libraryContent=browse&urlbutton=custom&uploader=1&mfold=o'),(16,1,'wp_user-settings-time','1398648346'),(17,1,'wp_dashboard_quick_press_last_post_id','1719'),(18,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(19,1,'metaboxhidden_nav-menus','a:2:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";}'),(20,1,'nav_menu_recently_edited','50'),(21,1,'dismissed_wp_pointers','wp340_customize_current_theme_link,wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp350_media,wp360_revisions,wp360_locks'),(22,2,'first_name','Kath'),(23,2,'last_name','Galasso'),(24,2,'nickname','kgalasso'),(25,2,'description',''),(26,2,'rich_editing','true'),(27,2,'comment_shortcuts','false'),(28,2,'admin_color','fresh'),(29,2,'use_ssl','0'),(30,2,'show_admin_bar_front','true'),(31,2,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(32,2,'wp_user_level','7'),(33,2,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp360_locks'),(34,3,'first_name','Eloa'),(35,3,'last_name','Xeno'),(36,3,'nickname','exeno'),(37,3,'description',''),(38,3,'rich_editing','true'),(39,3,'comment_shortcuts','false'),(40,3,'admin_color','fresh'),(41,3,'use_ssl','0'),(42,3,'show_admin_bar_front','true'),(43,3,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(44,3,'wp_user_level','7'),(45,3,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp360_locks'),(46,2,'wp_dashboard_quick_press_last_post_id','1720'),(47,1,'closedpostboxes_dashboard','a:1:{i:0;s:25:\"dashboard_recent_comments\";}'),(48,1,'metaboxhidden_dashboard','a:0:{}'),(49,2,'wp_user-settings','libraryContent=browse&imgsize=medium&align=right&editor=tinymce'),(50,2,'wp_user-settings-time','1398628777'),(51,1,'closedpostboxes_page','a:1:{i:0;s:12:\"sharing_meta\";}'),(52,1,'metaboxhidden_page','a:5:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}'),(53,1,'AtD_options',''),(54,1,'AtD_check_when',''),(55,1,'AtD_guess_lang',''),(56,1,'AtD_ignored_phrases',''),(57,1,'show_admin_bar_front','true'),(58,2,'aim',''),(59,2,'yim',''),(60,2,'jabber',''),(61,4,'first_name',''),(62,4,'last_name',''),(63,4,'nickname','lbzxxh520'),(64,4,'description',''),(65,4,'rich_editing','true'),(66,4,'comment_shortcuts','false'),(67,4,'admin_color','fresh'),(68,4,'use_ssl','0'),(69,4,'show_admin_bar_front','true'),(70,4,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(71,4,'wp_user_level','0'),(72,4,'default_password_nag','1'),(202,15,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(201,15,'show_admin_bar_front','true'),(200,15,'use_ssl','0'),(199,15,'admin_color','fresh'),(198,15,'comment_shortcuts','false'),(197,15,'rich_editing','true'),(196,15,'description',''),(195,15,'nickname','PatrickStarke'),(194,15,'last_name',''),(193,15,'first_name',''),(85,6,'first_name',''),(86,6,'last_name',''),(87,6,'nickname','MindyLeavens'),(88,6,'description',''),(89,6,'rich_editing','true'),(90,6,'comment_shortcuts','false'),(91,6,'admin_color','fresh'),(92,6,'use_ssl','0'),(93,6,'show_admin_bar_front','true'),(94,6,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(95,6,'wp_user_level','0'),(96,6,'default_password_nag','1'),(97,7,'first_name',''),(98,7,'last_name',''),(99,7,'nickname','Bertie6160'),(100,7,'description',''),(101,7,'rich_editing','true'),(102,7,'comment_shortcuts','false'),(103,7,'admin_color','fresh'),(104,7,'use_ssl','0'),(105,7,'show_admin_bar_front','true'),(106,7,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(107,7,'wp_user_level','0'),(108,7,'default_password_nag','1'),(109,8,'first_name',''),(110,8,'last_name',''),(111,8,'nickname','rodrigosantana1751'),(112,8,'description',''),(113,8,'rich_editing','true'),(114,8,'comment_shortcuts','false'),(115,8,'admin_color','fresh'),(116,8,'use_ssl','0'),(117,8,'show_admin_bar_front','true'),(118,8,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(119,8,'wp_user_level','0'),(120,8,'default_password_nag','1'),(121,9,'first_name',''),(122,9,'last_name',''),(123,9,'nickname','Gertrude53S'),(124,9,'description',''),(125,9,'rich_editing','true'),(126,9,'comment_shortcuts','false'),(127,9,'admin_color','fresh'),(128,9,'use_ssl','0'),(129,9,'show_admin_bar_front','true'),(130,9,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(131,9,'wp_user_level','0'),(132,9,'default_password_nag','1'),(133,10,'first_name',''),(134,10,'last_name',''),(135,10,'nickname','ErlindaVSWZ'),(136,10,'description',''),(137,10,'rich_editing','true'),(138,10,'comment_shortcuts','false'),(139,10,'admin_color','fresh'),(140,10,'use_ssl','0'),(141,10,'show_admin_bar_front','true'),(142,10,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(143,10,'wp_user_level','0'),(144,10,'default_password_nag','1'),(145,11,'first_name',''),(146,11,'last_name',''),(147,11,'nickname','MandyBrower'),(148,11,'description',''),(149,11,'rich_editing','true'),(150,11,'comment_shortcuts','false'),(151,11,'admin_color','fresh'),(152,11,'use_ssl','0'),(153,11,'show_admin_bar_front','true'),(154,11,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(155,11,'wp_user_level','0'),(156,11,'default_password_nag','1'),(157,12,'first_name',''),(158,12,'last_name',''),(159,12,'nickname','HayleyBarrallie'),(160,12,'description',''),(161,12,'rich_editing','true'),(162,12,'comment_shortcuts','false'),(163,12,'admin_color','fresh'),(164,12,'use_ssl','0'),(165,12,'show_admin_bar_front','true'),(166,12,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(167,12,'wp_user_level','0'),(168,12,'default_password_nag','1'),(169,13,'first_name',''),(170,13,'last_name',''),(171,13,'nickname','NidiaLockwood'),(172,13,'description',''),(173,13,'rich_editing','true'),(174,13,'comment_shortcuts','false'),(175,13,'admin_color','fresh'),(176,13,'use_ssl','0'),(177,13,'show_admin_bar_front','true'),(178,13,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(179,13,'wp_user_level','0'),(180,13,'default_password_nag','1'),(210,16,'comment_shortcuts','false'),(209,16,'rich_editing','true'),(208,16,'description',''),(207,16,'nickname','SheltonStLedger'),(206,16,'last_name',''),(205,16,'first_name',''),(204,15,'default_password_nag','1'),(203,15,'wp_user_level','0'),(211,16,'admin_color','fresh'),(212,16,'use_ssl','0'),(213,16,'show_admin_bar_front','true'),(214,16,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(215,16,'wp_user_level','0'),(216,16,'default_password_nag','1'),(217,17,'first_name',''),(218,17,'last_name',''),(219,17,'nickname','KindraCcsvuftav'),(220,17,'description',''),(221,17,'rich_editing','true'),(222,17,'comment_shortcuts','false'),(223,17,'admin_color','fresh'),(224,17,'use_ssl','0'),(225,17,'show_admin_bar_front','true'),(226,17,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(227,17,'wp_user_level','0'),(228,17,'default_password_nag','1'),(229,18,'first_name',''),(230,18,'last_name',''),(231,18,'nickname','Valarie99S'),(232,18,'description',''),(233,18,'rich_editing','true'),(234,18,'comment_shortcuts','false'),(235,18,'admin_color','fresh'),(236,18,'use_ssl','0'),(237,18,'show_admin_bar_front','true'),(238,18,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(239,18,'wp_user_level','0'),(240,18,'default_password_nag','1'),(241,19,'first_name',''),(242,19,'last_name',''),(243,19,'nickname','ChristineStrunk'),(244,19,'description',''),(245,19,'rich_editing','true'),(246,19,'comment_shortcuts','false'),(247,19,'admin_color','fresh'),(248,19,'use_ssl','0'),(249,19,'show_admin_bar_front','true'),(250,19,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(251,19,'wp_user_level','0'),(252,19,'default_password_nag','1'),(253,20,'first_name',''),(254,20,'last_name',''),(255,20,'nickname','BEDDinaheqh'),(256,20,'description',''),(257,20,'rich_editing','true'),(258,20,'comment_shortcuts','false'),(259,20,'admin_color','fresh'),(260,20,'use_ssl','0'),(261,20,'show_admin_bar_front','true'),(262,20,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(263,20,'wp_user_level','0'),(264,20,'default_password_nag','1'),(265,21,'first_name',''),(266,21,'last_name',''),(267,21,'nickname','BeatrizHavelock'),(268,21,'description',''),(269,21,'rich_editing','true'),(270,21,'comment_shortcuts','false'),(271,21,'admin_color','fresh'),(272,21,'use_ssl','0'),(273,21,'show_admin_bar_front','true'),(274,21,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(275,21,'wp_user_level','0'),(276,21,'default_password_nag','1'),(277,22,'first_name',''),(278,22,'last_name',''),(279,22,'nickname','AnnetteKelynack'),(280,22,'description',''),(281,22,'rich_editing','true'),(282,22,'comment_shortcuts','false'),(283,22,'admin_color','fresh'),(284,22,'use_ssl','0'),(285,22,'show_admin_bar_front','true'),(286,22,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(287,22,'wp_user_level','0'),(288,22,'default_password_nag','1'),(289,23,'first_name',''),(290,23,'last_name',''),(291,23,'nickname','VilmaSturdivant'),(292,23,'description',''),(293,23,'rich_editing','true'),(294,23,'comment_shortcuts','false'),(295,23,'admin_color','fresh'),(296,23,'use_ssl','0'),(297,23,'show_admin_bar_front','true'),(298,23,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(299,23,'wp_user_level','0'),(300,23,'default_password_nag','1'),(301,24,'first_name',''),(302,24,'last_name',''),(303,24,'nickname','MadisonQQGD'),(304,24,'description',''),(305,24,'rich_editing','true'),(306,24,'comment_shortcuts','false'),(307,24,'admin_color','fresh'),(308,24,'use_ssl','0'),(309,24,'show_admin_bar_front','true'),(310,24,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(311,24,'wp_user_level','0'),(312,24,'default_password_nag','1'),(313,25,'first_name',''),(314,25,'last_name',''),(315,25,'nickname','JadaBonetntcsj'),(316,25,'description',''),(317,25,'rich_editing','true'),(318,25,'comment_shortcuts','false'),(319,25,'admin_color','fresh'),(320,25,'use_ssl','0'),(321,25,'show_admin_bar_front','true'),(322,25,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(323,25,'wp_user_level','0'),(324,25,'default_password_nag','1'),(325,26,'first_name',''),(326,26,'last_name',''),(327,26,'nickname','GuillermoEuy'),(328,26,'description',''),(329,26,'rich_editing','true'),(330,26,'comment_shortcuts','false'),(331,26,'admin_color','fresh'),(332,26,'use_ssl','0'),(333,26,'show_admin_bar_front','true'),(334,26,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(335,26,'wp_user_level','0'),(336,26,'default_password_nag','1'),(337,27,'first_name',''),(338,27,'last_name',''),(339,27,'nickname','Deloras70H'),(340,27,'description',''),(341,27,'rich_editing','true'),(342,27,'comment_shortcuts','false'),(343,27,'admin_color','fresh'),(344,27,'use_ssl','0'),(345,27,'show_admin_bar_front','true'),(346,27,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(347,27,'wp_user_level','0'),(348,27,'default_password_nag','1'),(349,28,'first_name',''),(350,28,'last_name',''),(351,28,'nickname','TarahMcReynolds'),(352,28,'description',''),(353,28,'rich_editing','true'),(354,28,'comment_shortcuts','false'),(355,28,'admin_color','fresh'),(356,28,'use_ssl','0'),(357,28,'show_admin_bar_front','true'),(358,28,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(359,28,'wp_user_level','0'),(360,28,'default_password_nag','1'),(361,29,'first_name',''),(362,29,'last_name',''),(363,29,'nickname','SanoraCPIO'),(364,29,'description',''),(365,29,'rich_editing','true'),(366,29,'comment_shortcuts','false'),(367,29,'admin_color','fresh'),(368,29,'use_ssl','0'),(369,29,'show_admin_bar_front','true'),(370,29,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(371,29,'wp_user_level','0'),(372,29,'default_password_nag','1'),(373,30,'first_name',''),(374,30,'last_name',''),(375,30,'nickname','BrigidaSaylor'),(376,30,'description',''),(377,30,'rich_editing','true'),(378,30,'comment_shortcuts','false'),(379,30,'admin_color','fresh'),(380,30,'use_ssl','0'),(381,30,'show_admin_bar_front','true'),(382,30,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(383,30,'wp_user_level','0'),(384,30,'default_password_nag','1'),(385,31,'first_name',''),(386,31,'last_name',''),(387,31,'nickname','KristaParramore'),(388,31,'description',''),(389,31,'rich_editing','true'),(390,31,'comment_shortcuts','false'),(391,31,'admin_color','fresh'),(392,31,'use_ssl','0'),(393,31,'show_admin_bar_front','true'),(394,31,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(395,31,'wp_user_level','0'),(396,31,'default_password_nag','1'),(397,32,'first_name',''),(398,32,'last_name',''),(399,32,'nickname','MaryanneByrne'),(400,32,'description',''),(401,32,'rich_editing','true'),(402,32,'comment_shortcuts','false'),(403,32,'admin_color','fresh'),(404,32,'use_ssl','0'),(405,32,'show_admin_bar_front','true'),(406,32,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(407,32,'wp_user_level','0'),(408,32,'default_password_nag','1'),(409,33,'first_name',''),(410,33,'last_name',''),(411,33,'nickname','FerdinandLDIM'),(412,33,'description',''),(413,33,'rich_editing','true'),(414,33,'comment_shortcuts','false'),(415,33,'admin_color','fresh'),(416,33,'use_ssl','0'),(417,33,'show_admin_bar_front','true'),(418,33,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(419,33,'wp_user_level','0'),(420,33,'default_password_nag','1'),(421,34,'first_name',''),(422,34,'last_name',''),(423,34,'nickname','AngelaO16dhmqel'),(424,34,'description',''),(425,34,'rich_editing','true'),(426,34,'comment_shortcuts','false'),(427,34,'admin_color','fresh'),(428,34,'use_ssl','0'),(429,34,'show_admin_bar_front','true'),(430,34,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(431,34,'wp_user_level','0'),(432,34,'default_password_nag','1'),(433,35,'first_name',''),(434,35,'last_name',''),(435,35,'nickname','DexterLittle'),(436,35,'description',''),(437,35,'rich_editing','true'),(438,35,'comment_shortcuts','false'),(439,35,'admin_color','fresh'),(440,35,'use_ssl','0'),(441,35,'show_admin_bar_front','true'),(442,35,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(443,35,'wp_user_level','0'),(444,35,'default_password_nag','1'),(445,36,'first_name',''),(446,36,'last_name',''),(447,36,'nickname','Pauline97R'),(448,36,'description',''),(449,36,'rich_editing','true'),(450,36,'comment_shortcuts','false'),(451,36,'admin_color','fresh'),(452,36,'use_ssl','0'),(453,36,'show_admin_bar_front','true'),(454,36,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(455,36,'wp_user_level','0'),(456,36,'default_password_nag','1'),(457,37,'first_name',''),(458,37,'last_name',''),(459,37,'nickname','LaylaBustard'),(460,37,'description',''),(461,37,'rich_editing','true'),(462,37,'comment_shortcuts','false'),(463,37,'admin_color','fresh'),(464,37,'use_ssl','0'),(465,37,'show_admin_bar_front','true'),(466,37,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(467,37,'wp_user_level','0'),(468,37,'default_password_nag','1'),(469,38,'first_name',''),(470,38,'last_name',''),(471,38,'nickname','KathrinSamuels'),(472,38,'description',''),(473,38,'rich_editing','true'),(474,38,'comment_shortcuts','false'),(475,38,'admin_color','fresh'),(476,38,'use_ssl','0'),(477,38,'show_admin_bar_front','true'),(478,38,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(479,38,'wp_user_level','0'),(480,38,'default_password_nag','1'),(481,39,'first_name',''),(482,39,'last_name',''),(483,39,'nickname','TeddyPrather'),(484,39,'description',''),(485,39,'rich_editing','true'),(486,39,'comment_shortcuts','false'),(487,39,'admin_color','fresh'),(488,39,'use_ssl','0'),(489,39,'show_admin_bar_front','true'),(490,39,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(491,39,'wp_user_level','0'),(492,39,'default_password_nag','1'),(493,40,'first_name',''),(494,40,'last_name',''),(495,40,'nickname','TheronScribner'),(496,40,'description',''),(497,40,'rich_editing','true'),(498,40,'comment_shortcuts','false'),(499,40,'admin_color','fresh'),(500,40,'use_ssl','0'),(501,40,'show_admin_bar_front','true'),(502,40,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(503,40,'wp_user_level','0'),(504,40,'default_password_nag','1'),(505,41,'first_name',''),(506,41,'last_name',''),(507,41,'nickname','DeonValenzuela'),(508,41,'description',''),(509,41,'rich_editing','true'),(510,41,'comment_shortcuts','false'),(511,41,'admin_color','fresh'),(512,41,'use_ssl','0'),(513,41,'show_admin_bar_front','true'),(514,41,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(515,41,'wp_user_level','0'),(516,41,'default_password_nag','1'),(517,42,'first_name',''),(518,42,'last_name',''),(519,42,'nickname','RhondaG45wpva'),(520,42,'description',''),(521,42,'rich_editing','true'),(522,42,'comment_shortcuts','false'),(523,42,'admin_color','fresh'),(524,42,'use_ssl','0'),(525,42,'show_admin_bar_front','true'),(526,42,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(527,42,'wp_user_level','0'),(528,42,'default_password_nag','1'),(529,43,'first_name',''),(530,43,'last_name',''),(531,43,'nickname','EmelyGoble'),(532,43,'description',''),(533,43,'rich_editing','true'),(534,43,'comment_shortcuts','false'),(535,43,'admin_color','fresh'),(536,43,'use_ssl','0'),(537,43,'show_admin_bar_front','true'),(538,43,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(539,43,'wp_user_level','0'),(540,43,'default_password_nag','1'),(541,44,'first_name',''),(542,44,'last_name',''),(543,44,'nickname','RippBoisseau543'),(544,44,'description',''),(545,44,'rich_editing','true'),(546,44,'comment_shortcuts','false'),(547,44,'admin_color','fresh'),(548,44,'use_ssl','0'),(549,44,'show_admin_bar_front','false'),(550,44,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(551,44,'wp_user_level','0'),(552,44,'default_password_nag','1'),(553,44,'aim',''),(554,44,'yim',''),(555,44,'jabber',''),(556,45,'first_name',''),(557,45,'last_name',''),(558,45,'nickname','kfjgglfdfghhgkjhgfhjkflok'),(559,45,'description',''),(560,45,'rich_editing','true'),(561,45,'comment_shortcuts','false'),(562,45,'admin_color','fresh'),(563,45,'use_ssl','0'),(564,45,'show_admin_bar_front','true'),(565,45,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(566,45,'wp_user_level','0'),(567,45,'default_password_nag','1'),(568,46,'first_name',''),(569,46,'last_name',''),(570,46,'nickname','fdffdFD54'),(571,46,'description',''),(572,46,'rich_editing','true'),(573,46,'comment_shortcuts','false'),(574,46,'admin_color','fresh'),(575,46,'use_ssl','0'),(576,46,'show_admin_bar_front','true'),(577,46,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(578,46,'wp_user_level','0'),(579,46,'default_password_nag','1'),(580,47,'first_name',''),(581,47,'last_name',''),(582,47,'nickname','Theodoreerj'),(583,47,'description',''),(584,47,'rich_editing','true'),(585,47,'comment_shortcuts','false'),(586,47,'admin_color','fresh'),(587,47,'use_ssl','0'),(588,47,'show_admin_bar_front','true'),(589,47,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(590,47,'wp_user_level','0'),(591,47,'default_password_nag','1'),(592,48,'first_name',''),(593,48,'last_name',''),(594,48,'nickname','LouveniaF34'),(595,48,'description',''),(596,48,'rich_editing','true'),(597,48,'comment_shortcuts','false'),(598,48,'admin_color','fresh'),(599,48,'use_ssl','0'),(600,48,'show_admin_bar_front','true'),(601,48,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(602,48,'wp_user_level','0'),(603,48,'default_password_nag','1'),(604,49,'first_name',''),(605,49,'last_name',''),(606,49,'nickname','BreannaHursey'),(607,49,'description',''),(608,49,'rich_editing','true'),(609,49,'comment_shortcuts','false'),(610,49,'admin_color','fresh'),(611,49,'use_ssl','0'),(612,49,'show_admin_bar_front','true'),(613,49,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(614,49,'wp_user_level','0'),(615,49,'default_password_nag','1'),(616,50,'first_name',''),(617,50,'last_name',''),(618,50,'nickname','HelaineX93'),(619,50,'description',''),(620,50,'rich_editing','true'),(621,50,'comment_shortcuts','false'),(622,50,'admin_color','fresh'),(623,50,'use_ssl','0'),(624,50,'show_admin_bar_front','true'),(625,50,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(626,50,'wp_user_level','0'),(627,50,'default_password_nag','1'),(628,51,'first_name',''),(629,51,'last_name',''),(630,51,'nickname','JaydenSpina'),(631,51,'description',''),(632,51,'rich_editing','true'),(633,51,'comment_shortcuts','false'),(634,51,'admin_color','fresh'),(635,51,'use_ssl','0'),(636,51,'show_admin_bar_front','true'),(637,51,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(638,51,'wp_user_level','0'),(639,51,'default_password_nag','1'),(640,52,'first_name',''),(641,52,'last_name',''),(642,52,'nickname','MichaelLhotsky'),(643,52,'description',''),(644,52,'rich_editing','true'),(645,52,'comment_shortcuts','false'),(646,52,'admin_color','fresh'),(647,52,'use_ssl','0'),(648,52,'show_admin_bar_front','true'),(649,52,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(650,52,'wp_user_level','0'),(651,52,'default_password_nag','1'),(652,53,'first_name',''),(653,53,'last_name',''),(654,53,'nickname','BevConnolly'),(655,53,'description',''),(656,53,'rich_editing','true'),(657,53,'comment_shortcuts','false'),(658,53,'admin_color','fresh'),(659,53,'use_ssl','0'),(660,53,'show_admin_bar_front','true'),(661,53,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(662,53,'wp_user_level','0'),(663,53,'default_password_nag','1'),(664,54,'first_name',''),(665,54,'last_name',''),(666,54,'nickname','Adelaide1179'),(667,54,'description',''),(668,54,'rich_editing','true'),(669,54,'comment_shortcuts','false'),(670,54,'admin_color','fresh'),(671,54,'use_ssl','0'),(672,54,'show_admin_bar_front','true'),(673,54,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(674,54,'wp_user_level','0'),(675,54,'default_password_nag','1'),(676,55,'first_name',''),(677,55,'last_name',''),(678,55,'nickname','MohamedPerdue'),(679,55,'description',''),(680,55,'rich_editing','true'),(681,55,'comment_shortcuts','false'),(682,55,'admin_color','fresh'),(683,55,'use_ssl','0'),(684,55,'show_admin_bar_front','true'),(685,55,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(686,55,'wp_user_level','0'),(687,55,'default_password_nag','1'),(688,56,'first_name',''),(689,56,'last_name',''),(690,56,'nickname','MollieBonython'),(691,56,'description',''),(692,56,'rich_editing','true'),(693,56,'comment_shortcuts','false'),(694,56,'admin_color','fresh'),(695,56,'use_ssl','0'),(696,56,'show_admin_bar_front','true'),(697,56,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(698,56,'wp_user_level','0'),(699,56,'default_password_nag','1'),(700,57,'first_name',''),(701,57,'last_name',''),(702,57,'nickname','SalvatoreBandy'),(703,57,'description',''),(704,57,'rich_editing','true'),(705,57,'comment_shortcuts','false'),(706,57,'admin_color','fresh'),(707,57,'use_ssl','0'),(708,57,'show_admin_bar_front','true'),(709,57,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(710,57,'wp_user_level','0'),(711,57,'default_password_nag','1'),(712,58,'first_name',''),(713,58,'last_name',''),(714,58,'nickname','KZQFidelia'),(715,58,'description',''),(716,58,'rich_editing','true'),(717,58,'comment_shortcuts','false'),(718,58,'admin_color','fresh'),(719,58,'use_ssl','0'),(720,58,'show_admin_bar_front','true'),(721,58,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(722,58,'wp_user_level','0'),(723,58,'default_password_nag','1'),(724,59,'first_name',''),(725,59,'last_name',''),(726,59,'nickname','BrandenHuxley'),(727,59,'description',''),(728,59,'rich_editing','true'),(729,59,'comment_shortcuts','false'),(730,59,'admin_color','fresh'),(731,59,'use_ssl','0'),(732,59,'show_admin_bar_front','true'),(733,59,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(734,59,'wp_user_level','0'),(735,59,'default_password_nag','1'),(736,60,'first_name',''),(737,60,'last_name',''),(738,60,'nickname','ArnetteMonteneg'),(739,60,'description',''),(740,60,'rich_editing','true'),(741,60,'comment_shortcuts','false'),(742,60,'admin_color','fresh'),(743,60,'use_ssl','0'),(744,60,'show_admin_bar_front','true'),(745,60,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(746,60,'wp_user_level','0'),(747,60,'default_password_nag','1'),(748,61,'first_name',''),(749,61,'last_name',''),(750,61,'nickname','HongLaidley'),(751,61,'description',''),(752,61,'rich_editing','true'),(753,61,'comment_shortcuts','false'),(754,61,'admin_color','fresh'),(755,61,'use_ssl','0'),(756,61,'show_admin_bar_front','true'),(757,61,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(758,61,'wp_user_level','0'),(759,61,'default_password_nag','1'),(760,62,'first_name',''),(761,62,'last_name',''),(762,62,'nickname','JeraldBrient'),(763,62,'description',''),(764,62,'rich_editing','true'),(765,62,'comment_shortcuts','false'),(766,62,'admin_color','fresh'),(767,62,'use_ssl','0'),(768,62,'show_admin_bar_front','true'),(769,62,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(770,62,'wp_user_level','0'),(771,62,'default_password_nag','1'),(772,63,'first_name',''),(773,63,'last_name',''),(774,63,'nickname','MichelineTryon'),(775,63,'description',''),(776,63,'rich_editing','true'),(777,63,'comment_shortcuts','false'),(778,63,'admin_color','fresh'),(779,63,'use_ssl','0'),(780,63,'show_admin_bar_front','true'),(781,63,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(782,63,'wp_user_level','0'),(783,63,'default_password_nag','1'),(784,64,'first_name',''),(785,64,'last_name',''),(786,64,'nickname','Hassie50Inctvv'),(787,64,'description',''),(788,64,'rich_editing','true'),(789,64,'comment_shortcuts','false'),(790,64,'admin_color','fresh'),(791,64,'use_ssl','0'),(792,64,'show_admin_bar_front','true'),(793,64,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(794,64,'wp_user_level','0'),(795,64,'default_password_nag','1'),(796,65,'first_name',''),(797,65,'last_name',''),(798,65,'nickname','ArleneNFRciniux'),(799,65,'description',''),(800,65,'rich_editing','true'),(801,65,'comment_shortcuts','false'),(802,65,'admin_color','fresh'),(803,65,'use_ssl','0'),(804,65,'show_admin_bar_front','true'),(805,65,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(806,65,'wp_user_level','0'),(807,65,'default_password_nag','1'),(808,66,'first_name',''),(809,66,'last_name',''),(810,66,'nickname','Elvia95Uvrzyg'),(811,66,'description',''),(812,66,'rich_editing','true'),(813,66,'comment_shortcuts','false'),(814,66,'admin_color','fresh'),(815,66,'use_ssl','0'),(816,66,'show_admin_bar_front','true'),(817,66,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(818,66,'wp_user_level','0'),(819,66,'default_password_nag','1'),(820,67,'first_name',''),(821,67,'last_name',''),(822,67,'nickname','Meghan8481'),(823,67,'description',''),(824,67,'rich_editing','true'),(825,67,'comment_shortcuts','false'),(826,67,'admin_color','fresh'),(827,67,'use_ssl','0'),(828,67,'show_admin_bar_front','true'),(829,67,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(830,67,'wp_user_level','0'),(831,67,'default_password_nag','1'),(832,68,'first_name',''),(833,68,'last_name',''),(834,68,'nickname','Oma0671zlcpenr'),(835,68,'description',''),(836,68,'rich_editing','true'),(837,68,'comment_shortcuts','false'),(838,68,'admin_color','fresh'),(839,68,'use_ssl','0'),(840,68,'show_admin_bar_front','true'),(841,68,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(842,68,'wp_user_level','0'),(843,68,'default_password_nag','1'),(844,69,'first_name',''),(845,69,'last_name',''),(846,69,'nickname','DelmarPolley'),(847,69,'description',''),(848,69,'rich_editing','true'),(849,69,'comment_shortcuts','false'),(850,69,'admin_color','fresh'),(851,69,'use_ssl','0'),(852,69,'show_admin_bar_front','true'),(853,69,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(854,69,'wp_user_level','0'),(855,69,'default_password_nag','1'),(856,70,'first_name',''),(857,70,'last_name',''),(858,70,'nickname','JackiePowe'),(859,70,'description',''),(860,70,'rich_editing','true'),(861,70,'comment_shortcuts','false'),(862,70,'admin_color','fresh'),(863,70,'use_ssl','0'),(864,70,'show_admin_bar_front','true'),(865,70,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(866,70,'wp_user_level','0'),(867,70,'default_password_nag','1'),(868,71,'first_name',''),(869,71,'last_name',''),(870,71,'nickname','RoslynHargrave'),(871,71,'description',''),(872,71,'rich_editing','true'),(873,71,'comment_shortcuts','false'),(874,71,'admin_color','fresh'),(875,71,'use_ssl','0'),(876,71,'show_admin_bar_front','true'),(877,71,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(878,71,'wp_user_level','0'),(879,71,'default_password_nag','1'),(880,72,'first_name',''),(881,72,'last_name',''),(882,72,'nickname','Richelle9386'),(883,72,'description',''),(884,72,'rich_editing','true'),(885,72,'comment_shortcuts','false'),(886,72,'admin_color','fresh'),(887,72,'use_ssl','0'),(888,72,'show_admin_bar_front','true'),(889,72,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(890,72,'wp_user_level','0'),(891,72,'default_password_nag','1'),(892,73,'first_name',''),(893,73,'last_name',''),(894,73,'nickname','GemmaJuryhhfmx'),(895,73,'description',''),(896,73,'rich_editing','true'),(897,73,'comment_shortcuts','false'),(898,73,'admin_color','fresh'),(899,73,'use_ssl','0'),(900,73,'show_admin_bar_front','true'),(901,73,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(902,73,'wp_user_level','0'),(903,73,'default_password_nag','1'),(904,74,'first_name',''),(905,74,'last_name',''),(906,74,'nickname','DaniRqhywliru'),(907,74,'description',''),(908,74,'rich_editing','true'),(909,74,'comment_shortcuts','false'),(910,74,'admin_color','fresh'),(911,74,'use_ssl','0'),(912,74,'show_admin_bar_front','true'),(913,74,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(914,74,'wp_user_level','0'),(915,74,'default_password_nag','1'),(916,75,'first_name',''),(917,75,'last_name',''),(918,75,'nickname','LinnieBecker'),(919,75,'description',''),(920,75,'rich_editing','true'),(921,75,'comment_shortcuts','false'),(922,75,'admin_color','fresh'),(923,75,'use_ssl','0'),(924,75,'show_admin_bar_front','true'),(925,75,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(926,75,'wp_user_level','0'),(927,75,'default_password_nag','1'),(928,76,'first_name',''),(929,76,'last_name',''),(930,76,'nickname','GenevaDexter'),(931,76,'description',''),(932,76,'rich_editing','true'),(933,76,'comment_shortcuts','false'),(934,76,'admin_color','fresh'),(935,76,'use_ssl','0'),(936,76,'show_admin_bar_front','true'),(937,76,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(938,76,'wp_user_level','0'),(939,76,'default_password_nag','1'),(940,77,'first_name',''),(941,77,'last_name',''),(942,77,'nickname','KimberlyCKWI'),(943,77,'description',''),(944,77,'rich_editing','true'),(945,77,'comment_shortcuts','false'),(946,77,'admin_color','fresh'),(947,77,'use_ssl','0'),(948,77,'show_admin_bar_front','true'),(949,77,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(950,77,'wp_user_level','0'),(951,77,'default_password_nag','1'),(952,78,'first_name',''),(953,78,'last_name',''),(954,78,'nickname','SVBJamilackpu'),(955,78,'description',''),(956,78,'rich_editing','true'),(957,78,'comment_shortcuts','false'),(958,78,'admin_color','fresh'),(959,78,'use_ssl','0'),(960,78,'show_admin_bar_front','true'),(961,78,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(962,78,'wp_user_level','0'),(963,78,'default_password_nag','1'),(964,79,'first_name',''),(965,79,'last_name',''),(966,79,'nickname','LeviOztateygshh'),(967,79,'description',''),(968,79,'rich_editing','true'),(969,79,'comment_shortcuts','false'),(970,79,'admin_color','fresh'),(971,79,'use_ssl','0'),(972,79,'show_admin_bar_front','true'),(973,79,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(974,79,'wp_user_level','0'),(975,79,'default_password_nag','1'),(976,80,'first_name',''),(977,80,'last_name',''),(978,80,'nickname','Illubbloxia'),(979,80,'description',''),(980,80,'rich_editing','true'),(981,80,'comment_shortcuts','false'),(982,80,'admin_color','fresh'),(983,80,'use_ssl','0'),(984,80,'show_admin_bar_front','true'),(985,80,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(986,80,'wp_user_level','0'),(987,80,'default_password_nag','1'),(988,81,'first_name',''),(989,81,'last_name',''),(990,81,'nickname','FRIMaybelle'),(991,81,'description',''),(992,81,'rich_editing','true'),(993,81,'comment_shortcuts','false'),(994,81,'admin_color','fresh'),(995,81,'use_ssl','0'),(996,81,'show_admin_bar_front','true'),(997,81,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(998,81,'wp_user_level','0'),(999,81,'default_password_nag','1'),(1000,82,'first_name',''),(1001,82,'last_name',''),(1002,82,'nickname','DeelaSkekWelD'),(1003,82,'description',''),(1004,82,'rich_editing','true'),(1005,82,'comment_shortcuts','false'),(1006,82,'admin_color','fresh'),(1007,82,'use_ssl','0'),(1008,82,'show_admin_bar_front','true'),(1009,82,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1010,82,'wp_user_level','0'),(1011,82,'default_password_nag','1'),(1012,83,'first_name',''),(1013,83,'last_name',''),(1014,83,'nickname','easifprcq'),(1015,83,'description',''),(1016,83,'rich_editing','true'),(1017,83,'comment_shortcuts','false'),(1018,83,'admin_color','fresh'),(1019,83,'use_ssl','0'),(1020,83,'show_admin_bar_front','true'),(1021,83,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1022,83,'wp_user_level','0'),(1023,83,'default_password_nag','1'),(1024,84,'first_name',''),(1025,84,'last_name',''),(1026,84,'nickname','Kemnettelay'),(1027,84,'description',''),(1028,84,'rich_editing','true'),(1029,84,'comment_shortcuts','false'),(1030,84,'admin_color','fresh'),(1031,84,'use_ssl','0'),(1032,84,'show_admin_bar_front','true'),(1033,84,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1034,84,'wp_user_level','0'),(1035,84,'default_password_nag','1'),(1036,85,'first_name',''),(1037,85,'last_name',''),(1038,85,'nickname','sizetessy'),(1039,85,'description',''),(1040,85,'rich_editing','true'),(1041,85,'comment_shortcuts','false'),(1042,85,'admin_color','fresh'),(1043,85,'use_ssl','0'),(1044,85,'show_admin_bar_front','true'),(1045,85,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1046,85,'wp_user_level','0'),(1047,85,'default_password_nag','1'),(1048,86,'first_name','WhandyactuattfagovcGR'),(1049,86,'last_name','WhandyactuattfagovcGR'),(1050,86,'nickname','Argubboto'),(1051,86,'description','[i][u][b][url=http://www.itsgoodtobepham.com]uggs uk[/url] [/b][/u][/i] It\'s cool if you like to take notes during the interview, but save the essay for when you get home5 grams per large egg) and high in cholesterol (200 milligrams per large egg), but research has shown that one egg a day is not likely to have a substantial impact on our risk of heart disease or stroke, particularly if we already pretty healthy[i][u][b][url=http://www.gbpf.org.uk]cheap ugg boots sale[/url] [/b][/u][/i] Not only did the TWolves (the TWolves!) not extend his contract, they\'re not even giving him playing time Keep your back flat throughout this motion[i][u][b][url=http://www.yvonnelebrun.com]cheap ugg boots[/url] [/b][/u][/i] Now that the weather is warming up in spurts I am thrilled to start my routine of walking my beagle again Some models replica iwc watch provide Swiss replica Longines imitation w Breitling Navitimer Jaeger LeCoultre Grande Taille Chanel J12 Diamond White Ceramic Ladies Watch H0967 and Omega Constellation Double Eagle Quartz Ladies Watch 1589'),(1052,86,'rich_editing','true'),(1053,86,'comment_shortcuts','false'),(1054,86,'admin_color','fresh'),(1055,86,'use_ssl','0'),(1056,86,'show_admin_bar_front','true'),(1057,86,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1058,86,'wp_user_level','0'),(1059,86,'default_password_nag',''),(1060,86,'aim',''),(1061,86,'yim',''),(1062,86,'jabber',''),(1063,87,'first_name',''),(1064,87,'last_name',''),(1065,87,'nickname','teegepneula'),(1066,87,'description',''),(1067,87,'rich_editing','true'),(1068,87,'comment_shortcuts','false'),(1069,87,'admin_color','fresh'),(1070,87,'use_ssl','0'),(1071,87,'show_admin_bar_front','true'),(1072,87,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1073,87,'wp_user_level','0'),(1074,87,'default_password_nag','1'),(1075,88,'first_name',''),(1076,88,'last_name',''),(1077,88,'nickname','ConstanceEstes'),(1078,88,'description',''),(1079,88,'rich_editing','true'),(1080,88,'comment_shortcuts','false'),(1081,88,'admin_color','fresh'),(1082,88,'use_ssl','0'),(1083,88,'show_admin_bar_front','true'),(1084,88,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1085,88,'wp_user_level','0'),(1086,88,'default_password_nag','1'),(1087,89,'first_name',''),(1088,89,'last_name',''),(1089,89,'nickname','GilbertoGilbert'),(1090,89,'description',''),(1091,89,'rich_editing','true'),(1092,89,'comment_shortcuts','false'),(1093,89,'admin_color','fresh'),(1094,89,'use_ssl','0'),(1095,89,'show_admin_bar_front','true'),(1096,89,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1097,89,'wp_user_level','0'),(1098,89,'default_password_nag','1'),(1099,90,'first_name',''),(1100,90,'last_name',''),(1101,90,'nickname','LizaShufelt'),(1102,90,'description',''),(1103,90,'rich_editing','true'),(1104,90,'comment_shortcuts','false'),(1105,90,'admin_color','fresh'),(1106,90,'use_ssl','0'),(1107,90,'show_admin_bar_front','true'),(1108,90,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1109,90,'wp_user_level','0'),(1110,90,'default_password_nag','1'),(1111,91,'first_name',''),(1112,91,'last_name',''),(1113,91,'nickname','bebrissecer'),(1114,91,'description',''),(1115,91,'rich_editing','true'),(1116,91,'comment_shortcuts','false'),(1117,91,'admin_color','fresh'),(1118,91,'use_ssl','0'),(1119,91,'show_admin_bar_front','true'),(1120,91,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1121,91,'wp_user_level','0'),(1122,91,'default_password_nag','1'),(1123,92,'first_name',''),(1124,92,'last_name',''),(1125,92,'nickname','kazhx'),(1126,92,'description',''),(1127,92,'rich_editing','true'),(1128,92,'comment_shortcuts','false'),(1129,92,'admin_color','fresh'),(1130,92,'use_ssl','0'),(1131,92,'show_admin_bar_front','true'),(1132,92,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1133,92,'wp_user_level','0'),(1134,92,'default_password_nag','1'),(1135,93,'first_name',''),(1136,93,'last_name',''),(1137,93,'nickname','IsidroSwope'),(1138,93,'description',''),(1139,93,'rich_editing','true'),(1140,93,'comment_shortcuts','false'),(1141,93,'admin_color','fresh'),(1142,93,'use_ssl','0'),(1143,93,'show_admin_bar_front','true'),(1144,93,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1145,93,'wp_user_level','0'),(1146,93,'default_password_nag','1'),(1147,94,'first_name',''),(1148,94,'last_name',''),(1149,94,'nickname','jenkehl'),(1150,94,'description',''),(1151,94,'rich_editing','true'),(1152,94,'comment_shortcuts','false'),(1153,94,'admin_color','fresh'),(1154,94,'use_ssl','0'),(1155,94,'show_admin_bar_front','true'),(1156,94,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1157,94,'wp_user_level','0'),(1158,94,'default_password_nag',''),(1159,94,'aim',''),(1160,94,'yim',''),(1161,94,'jabber',''),(1162,95,'first_name',''),(1163,95,'last_name',''),(1164,95,'nickname','kvioervded'),(1165,95,'description',''),(1166,95,'rich_editing','true'),(1167,95,'comment_shortcuts','false'),(1168,95,'admin_color','fresh'),(1169,95,'use_ssl','0'),(1170,95,'show_admin_bar_front','true'),(1171,95,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1172,95,'wp_user_level','0'),(1173,95,'default_password_nag','1'),(1174,96,'first_name',''),(1175,96,'last_name',''),(1176,96,'nickname','Aidewayembami'),(1177,96,'description',''),(1178,96,'rich_editing','true'),(1179,96,'comment_shortcuts','false'),(1180,96,'admin_color','fresh'),(1181,96,'use_ssl','0'),(1182,96,'show_admin_bar_front','true'),(1183,96,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1184,96,'wp_user_level','0'),(1185,96,'default_password_nag','1'),(1186,97,'first_name',''),(1187,97,'last_name',''),(1188,97,'nickname','prefeaphy'),(1189,97,'description',''),(1190,97,'rich_editing','true'),(1191,97,'comment_shortcuts','false'),(1192,97,'admin_color','fresh'),(1193,97,'use_ssl','0'),(1194,97,'show_admin_bar_front','true'),(1195,97,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1196,97,'wp_user_level','0'),(1197,97,'default_password_nag','1'),(1198,98,'first_name',''),(1199,98,'last_name',''),(1200,98,'nickname','AlicaBwmkwyra'),(1201,98,'description',''),(1202,98,'rich_editing','true'),(1203,98,'comment_shortcuts','false'),(1204,98,'admin_color','fresh'),(1205,98,'use_ssl','0'),(1206,98,'show_admin_bar_front','true'),(1207,98,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1208,98,'wp_user_level','0'),(1209,98,'default_password_nag','1'),(1210,99,'first_name',''),(1211,99,'last_name',''),(1212,99,'nickname','SharronW05'),(1213,99,'description',''),(1214,99,'rich_editing','true'),(1215,99,'comment_shortcuts','false'),(1216,99,'admin_color','fresh'),(1217,99,'use_ssl','0'),(1218,99,'show_admin_bar_front','true'),(1219,99,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1220,99,'wp_user_level','0'),(1221,99,'default_password_nag','1'),(1222,100,'first_name',''),(1223,100,'last_name',''),(1224,100,'nickname','DewittSnelling'),(1225,100,'description',''),(1226,100,'rich_editing','true'),(1227,100,'comment_shortcuts','false'),(1228,100,'admin_color','fresh'),(1229,100,'use_ssl','0'),(1230,100,'show_admin_bar_front','true'),(1231,100,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1232,100,'wp_user_level','0'),(1233,100,'default_password_nag','1'),(1234,101,'first_name',''),(1235,101,'last_name',''),(1236,101,'nickname','JamesBabbage'),(1237,101,'description',''),(1238,101,'rich_editing','true'),(1239,101,'comment_shortcuts','false'),(1240,101,'admin_color','fresh'),(1241,101,'use_ssl','0'),(1242,101,'show_admin_bar_front','true'),(1243,101,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1244,101,'wp_user_level','0'),(1245,101,'default_password_nag','1'),(1246,102,'first_name',''),(1247,102,'last_name',''),(1248,102,'nickname','Sorgrobby'),(1249,102,'description',''),(1250,102,'rich_editing','true'),(1251,102,'comment_shortcuts','false'),(1252,102,'admin_color','fresh'),(1253,102,'use_ssl','0'),(1254,102,'show_admin_bar_front','true'),(1255,102,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1256,102,'wp_user_level','0'),(1257,102,'default_password_nag','1'),(1258,103,'first_name',''),(1259,103,'last_name',''),(1260,103,'nickname','MagdalenaAultma'),(1261,103,'description',''),(1262,103,'rich_editing','true'),(1263,103,'comment_shortcuts','false'),(1264,103,'admin_color','fresh'),(1265,103,'use_ssl','0'),(1266,103,'show_admin_bar_front','true'),(1267,103,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1268,103,'wp_user_level','0'),(1269,103,'default_password_nag','1'),(1270,104,'first_name',''),(1271,104,'last_name',''),(1272,104,'nickname','NevilleMahomet'),(1273,104,'description',''),(1274,104,'rich_editing','true'),(1275,104,'comment_shortcuts','false'),(1276,104,'admin_color','fresh'),(1277,104,'use_ssl','0'),(1278,104,'show_admin_bar_front','true'),(1279,104,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1280,104,'wp_user_level','0'),(1281,104,'default_password_nag','1'),(1282,105,'first_name',''),(1283,105,'last_name',''),(1284,105,'nickname','mxfktovxx'),(1285,105,'description',''),(1286,105,'rich_editing','true'),(1287,105,'comment_shortcuts','false'),(1288,105,'admin_color','fresh'),(1289,105,'use_ssl','0'),(1290,105,'show_admin_bar_front','true'),(1291,105,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1292,105,'wp_user_level','0'),(1293,105,'default_password_nag','1'),(1294,106,'first_name',''),(1295,106,'last_name',''),(1296,106,'nickname','EllaRFVoyawlsf'),(1297,106,'description',''),(1298,106,'rich_editing','true'),(1299,106,'comment_shortcuts','false'),(1300,106,'admin_color','fresh'),(1301,106,'use_ssl','0'),(1302,106,'show_admin_bar_front','true'),(1303,106,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1304,106,'wp_user_level','0'),(1305,106,'default_password_nag','1'),(1306,107,'first_name',''),(1307,107,'last_name',''),(1308,107,'nickname','dkbcliyel'),(1309,107,'description',''),(1310,107,'rich_editing','true'),(1311,107,'comment_shortcuts','false'),(1312,107,'admin_color','fresh'),(1313,107,'use_ssl','0'),(1314,107,'show_admin_bar_front','true'),(1315,107,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1316,107,'wp_user_level','0'),(1317,107,'default_password_nag','1'),(1318,108,'first_name',''),(1319,108,'last_name',''),(1320,108,'nickname','KarenVFCpya'),(1321,108,'description',''),(1322,108,'rich_editing','true'),(1323,108,'comment_shortcuts','false'),(1324,108,'admin_color','fresh'),(1325,108,'use_ssl','0'),(1326,108,'show_admin_bar_front','true'),(1327,108,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1328,108,'wp_user_level','0'),(1329,108,'default_password_nag','1'),(1330,109,'first_name',''),(1331,109,'last_name',''),(1332,109,'nickname','LatanyaMIJ'),(1333,109,'description',''),(1334,109,'rich_editing','true'),(1335,109,'comment_shortcuts','false'),(1336,109,'admin_color','fresh'),(1337,109,'use_ssl','0'),(1338,109,'show_admin_bar_front','true'),(1339,109,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1340,109,'wp_user_level','0'),(1341,109,'default_password_nag','1'),(1342,110,'first_name',''),(1343,110,'last_name',''),(1344,110,'nickname','BereniceBeasley'),(1345,110,'description',''),(1346,110,'rich_editing','true'),(1347,110,'comment_shortcuts','false'),(1348,110,'admin_color','fresh'),(1349,110,'use_ssl','0'),(1350,110,'show_admin_bar_front','true'),(1351,110,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1352,110,'wp_user_level','0'),(1353,110,'default_password_nag','1'),(1354,111,'first_name',''),(1355,111,'last_name',''),(1356,111,'nickname','MircooM'),(1357,111,'description',''),(1358,111,'rich_editing','true'),(1359,111,'comment_shortcuts','false'),(1360,111,'admin_color','fresh'),(1361,111,'use_ssl','0'),(1362,111,'show_admin_bar_front','true'),(1363,111,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1364,111,'wp_user_level','0'),(1365,111,'default_password_nag','1'),(1366,112,'first_name',''),(1367,112,'last_name',''),(1368,112,'nickname','KendraBalser'),(1369,112,'description',''),(1370,112,'rich_editing','true'),(1371,112,'comment_shortcuts','false'),(1372,112,'admin_color','fresh'),(1373,112,'use_ssl','0'),(1374,112,'show_admin_bar_front','true'),(1375,112,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1376,112,'wp_user_level','0'),(1377,112,'default_password_nag','1'),(1378,113,'first_name',''),(1379,113,'last_name',''),(1380,113,'nickname','PerryHenson'),(1381,113,'description',''),(1382,113,'rich_editing','true'),(1383,113,'comment_shortcuts','false'),(1384,113,'admin_color','fresh'),(1385,113,'use_ssl','0'),(1386,113,'show_admin_bar_front','true'),(1387,113,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1388,113,'wp_user_level','0'),(1389,113,'default_password_nag','1'),(1390,114,'first_name',''),(1391,114,'last_name',''),(1392,114,'nickname','Francesco83W'),(1393,114,'description',''),(1394,114,'rich_editing','true'),(1395,114,'comment_shortcuts','false'),(1396,114,'admin_color','fresh'),(1397,114,'use_ssl','0'),(1398,114,'show_admin_bar_front','true'),(1399,114,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1400,114,'wp_user_level','0'),(1401,114,'default_password_nag','1'),(1402,115,'first_name',''),(1403,115,'last_name',''),(1404,115,'nickname','ZZDLillian'),(1405,115,'description',''),(1406,115,'rich_editing','true'),(1407,115,'comment_shortcuts','false'),(1408,115,'admin_color','fresh'),(1409,115,'use_ssl','0'),(1410,115,'show_admin_bar_front','true'),(1411,115,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1412,115,'wp_user_level','0'),(1413,115,'default_password_nag','1'),(1414,116,'first_name',''),(1415,116,'last_name',''),(1416,116,'nickname','NannieSilvestri'),(1417,116,'description',''),(1418,116,'rich_editing','true'),(1419,116,'comment_shortcuts','false'),(1420,116,'admin_color','fresh'),(1421,116,'use_ssl','0'),(1422,116,'show_admin_bar_front','true'),(1423,116,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1424,116,'wp_user_level','0'),(1425,116,'default_password_nag','1'),(1426,117,'first_name',''),(1427,117,'last_name',''),(1428,117,'nickname','umlegtaej'),(1429,117,'description',''),(1430,117,'rich_editing','true'),(1431,117,'comment_shortcuts','false'),(1432,117,'admin_color','fresh'),(1433,117,'use_ssl','0'),(1434,117,'show_admin_bar_front','true'),(1435,117,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1436,117,'wp_user_level','0'),(1437,117,'default_password_nag','1'),(1438,118,'first_name',''),(1439,118,'last_name',''),(1440,118,'nickname','GenevieveTozer'),(1441,118,'description',''),(1442,118,'rich_editing','true'),(1443,118,'comment_shortcuts','false'),(1444,118,'admin_color','fresh'),(1445,118,'use_ssl','0'),(1446,118,'show_admin_bar_front','true'),(1447,118,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1448,118,'wp_user_level','0'),(1449,118,'default_password_nag','1'),(1450,119,'first_name',''),(1451,119,'last_name',''),(1452,119,'nickname','ZackGCCNutii'),(1453,119,'description',''),(1454,119,'rich_editing','true'),(1455,119,'comment_shortcuts','false'),(1456,119,'admin_color','fresh'),(1457,119,'use_ssl','0'),(1458,119,'show_admin_bar_front','true'),(1459,119,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1460,119,'wp_user_level','0'),(1461,119,'default_password_nag','1'),(1462,120,'first_name',''),(1463,120,'last_name',''),(1464,120,'nickname','LakeishaSoper'),(1465,120,'description',''),(1466,120,'rich_editing','true'),(1467,120,'comment_shortcuts','false'),(1468,120,'admin_color','fresh'),(1469,120,'use_ssl','0'),(1470,120,'show_admin_bar_front','true'),(1471,120,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1472,120,'wp_user_level','0'),(1473,120,'default_password_nag','1'),(1474,121,'first_name',''),(1475,121,'last_name',''),(1476,121,'nickname','AlejandraGoulbu'),(1477,121,'description',''),(1478,121,'rich_editing','true'),(1479,121,'comment_shortcuts','false'),(1480,121,'admin_color','fresh'),(1481,121,'use_ssl','0'),(1482,121,'show_admin_bar_front','true'),(1483,121,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1484,121,'wp_user_level','0'),(1485,121,'default_password_nag','1'),(1486,122,'first_name',''),(1487,122,'last_name',''),(1488,122,'nickname','ujecacee'),(1489,122,'description',''),(1490,122,'rich_editing','true'),(1491,122,'comment_shortcuts','false'),(1492,122,'admin_color','fresh'),(1493,122,'use_ssl','0'),(1494,122,'show_admin_bar_front','true'),(1495,122,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1496,122,'wp_user_level','0'),(1497,122,'default_password_nag','1'),(1498,123,'first_name',''),(1499,123,'last_name',''),(1500,123,'nickname','unagawas'),(1501,123,'description',''),(1502,123,'rich_editing','true'),(1503,123,'comment_shortcuts','false'),(1504,123,'admin_color','fresh'),(1505,123,'use_ssl','0'),(1506,123,'show_admin_bar_front','true'),(1507,123,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1508,123,'wp_user_level','0'),(1509,123,'default_password_nag','1'),(1510,124,'first_name',''),(1511,124,'last_name',''),(1512,124,'nickname','wgezoqano'),(1513,124,'description',''),(1514,124,'rich_editing','true'),(1515,124,'comment_shortcuts','false'),(1516,124,'admin_color','fresh'),(1517,124,'use_ssl','0'),(1518,124,'show_admin_bar_front','true'),(1519,124,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1520,124,'wp_user_level','0'),(1521,124,'default_password_nag','1'),(1522,125,'first_name',''),(1523,125,'last_name',''),(1524,125,'nickname','Lnq aqb y1fagovc'),(1525,125,'description',''),(1526,125,'rich_editing','true'),(1527,125,'comment_shortcuts','false'),(1528,125,'admin_color','fresh'),(1529,125,'use_ssl','0'),(1530,125,'show_admin_bar_front','true'),(1531,125,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1532,125,'wp_user_level','0'),(1533,125,'default_password_nag','1'),(1534,126,'first_name',''),(1535,126,'last_name',''),(1536,126,'nickname','exeflefuborgo'),(1537,126,'description',''),(1538,126,'rich_editing','true'),(1539,126,'comment_shortcuts','false'),(1540,126,'admin_color','fresh'),(1541,126,'use_ssl','0'),(1542,126,'show_admin_bar_front','true'),(1543,126,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1544,126,'wp_user_level','0'),(1545,126,'default_password_nag','1'),(1546,127,'first_name',''),(1547,127,'last_name',''),(1548,127,'nickname','DeandreSnowden'),(1549,127,'description',''),(1550,127,'rich_editing','true'),(1551,127,'comment_shortcuts','false'),(1552,127,'admin_color','fresh'),(1553,127,'use_ssl','0'),(1554,127,'show_admin_bar_front','true'),(1555,127,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1556,127,'wp_user_level','0'),(1557,127,'default_password_nag','1'),(1558,128,'first_name',''),(1559,128,'last_name',''),(1560,128,'nickname','MackN65daqdempr'),(1561,128,'description',''),(1562,128,'rich_editing','true'),(1563,128,'comment_shortcuts','false'),(1564,128,'admin_color','fresh'),(1565,128,'use_ssl','0'),(1566,128,'show_admin_bar_front','true'),(1567,128,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1568,128,'wp_user_level','0'),(1569,128,'default_password_nag','1'),(1570,129,'first_name',''),(1571,129,'last_name',''),(1572,129,'nickname','hvdmynnvy'),(1573,129,'description',''),(1574,129,'rich_editing','true'),(1575,129,'comment_shortcuts','false'),(1576,129,'admin_color','fresh'),(1577,129,'use_ssl','0'),(1578,129,'show_admin_bar_front','true'),(1579,129,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1580,129,'wp_user_level','0'),(1581,129,'default_password_nag','1'),(1582,130,'first_name',''),(1583,130,'last_name',''),(1584,130,'nickname','BryantRitchie'),(1585,130,'description',''),(1586,130,'rich_editing','true'),(1587,130,'comment_shortcuts','false'),(1588,130,'admin_color','fresh'),(1589,130,'use_ssl','0'),(1590,130,'show_admin_bar_front','true'),(1591,130,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1592,130,'wp_user_level','0'),(1593,130,'default_password_nag','1'),(1594,131,'first_name',''),(1595,131,'last_name',''),(1596,131,'nickname','NelliePrimrose'),(1597,131,'description',''),(1598,131,'rich_editing','true'),(1599,131,'comment_shortcuts','false'),(1600,131,'admin_color','fresh'),(1601,131,'use_ssl','0'),(1602,131,'show_admin_bar_front','true'),(1603,131,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1604,131,'wp_user_level','0'),(1605,131,'default_password_nag','1'),(1606,132,'first_name',''),(1607,132,'last_name',''),(1608,132,'nickname','vjqgtxuin'),(1609,132,'description',''),(1610,132,'rich_editing','true'),(1611,132,'comment_shortcuts','false'),(1612,132,'admin_color','fresh'),(1613,132,'use_ssl','0'),(1614,132,'show_admin_bar_front','true'),(1615,132,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1616,132,'wp_user_level','0'),(1617,132,'default_password_nag','1'),(1618,133,'first_name',''),(1619,133,'last_name',''),(1620,133,'nickname','VictoriaChishol'),(1621,133,'description',''),(1622,133,'rich_editing','true'),(1623,133,'comment_shortcuts','false'),(1624,133,'admin_color','fresh'),(1625,133,'use_ssl','0'),(1626,133,'show_admin_bar_front','true'),(1627,133,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1628,133,'wp_user_level','0'),(1629,133,'default_password_nag','1'),(1630,134,'first_name',''),(1631,134,'last_name',''),(1632,134,'nickname','grwjgqurx'),(1633,134,'description',''),(1634,134,'rich_editing','true'),(1635,134,'comment_shortcuts','false'),(1636,134,'admin_color','fresh'),(1637,134,'use_ssl','0'),(1638,134,'show_admin_bar_front','true'),(1639,134,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1640,134,'wp_user_level','0'),(1641,134,'default_password_nag','1'),(1642,135,'first_name',''),(1643,135,'last_name',''),(1644,135,'nickname','hlrcegxcr'),(1645,135,'description',''),(1646,135,'rich_editing','true'),(1647,135,'comment_shortcuts','false'),(1648,135,'admin_color','fresh'),(1649,135,'use_ssl','0'),(1650,135,'show_admin_bar_front','true'),(1651,135,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1652,135,'wp_user_level','0'),(1653,135,'default_password_nag','1'),(1654,136,'first_name',''),(1655,136,'last_name',''),(1656,136,'nickname','rawuwxpjb'),(1657,136,'description',''),(1658,136,'rich_editing','true'),(1659,136,'comment_shortcuts','false'),(1660,136,'admin_color','fresh'),(1661,136,'use_ssl','0'),(1662,136,'show_admin_bar_front','true'),(1663,136,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1664,136,'wp_user_level','0'),(1665,136,'default_password_nag','1'),(1666,137,'first_name',''),(1667,137,'last_name',''),(1668,137,'nickname','Lyncbabasty'),(1669,137,'description',''),(1670,137,'rich_editing','true'),(1671,137,'comment_shortcuts','false'),(1672,137,'admin_color','fresh'),(1673,137,'use_ssl','0'),(1674,137,'show_admin_bar_front','true'),(1675,137,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1676,137,'wp_user_level','0'),(1677,137,'default_password_nag','1'),(1678,138,'first_name',''),(1679,138,'last_name',''),(1680,138,'nickname','Martelariet'),(1681,138,'description',''),(1682,138,'rich_editing','true'),(1683,138,'comment_shortcuts','false'),(1684,138,'admin_color','fresh'),(1685,138,'use_ssl','0'),(1686,138,'show_admin_bar_front','true'),(1687,138,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1688,138,'wp_user_level','0'),(1689,138,'default_password_nag','1'),(1690,139,'first_name',''),(1691,139,'last_name',''),(1692,139,'nickname','fgt65ggjjg'),(1693,139,'description',''),(1694,139,'rich_editing','true'),(1695,139,'comment_shortcuts','false'),(1696,139,'admin_color','fresh'),(1697,139,'use_ssl','0'),(1698,139,'show_admin_bar_front','true'),(1699,139,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1700,139,'wp_user_level','0'),(1701,139,'default_password_nag','1'),(1702,140,'first_name',''),(1703,140,'last_name',''),(1704,140,'nickname','JeremiahDeluna'),(1705,140,'description',''),(1706,140,'rich_editing','true'),(1707,140,'comment_shortcuts','false'),(1708,140,'admin_color','fresh'),(1709,140,'use_ssl','0'),(1710,140,'show_admin_bar_front','true'),(1711,140,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1712,140,'wp_user_level','0'),(1713,140,'default_password_nag','1'),(1714,141,'first_name',''),(1715,141,'last_name',''),(1716,141,'nickname','MinnaHarbin'),(1717,141,'description',''),(1718,141,'rich_editing','true'),(1719,141,'comment_shortcuts','false'),(1720,141,'admin_color','fresh'),(1721,141,'use_ssl','0'),(1722,141,'show_admin_bar_front','true'),(1723,141,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1724,141,'wp_user_level','0'),(1725,141,'default_password_nag','1'),(1726,142,'first_name',''),(1727,142,'last_name',''),(1728,142,'nickname','ZulmaAKHyce'),(1729,142,'description',''),(1730,142,'rich_editing','true'),(1731,142,'comment_shortcuts','false'),(1732,142,'admin_color','fresh'),(1733,142,'use_ssl','0'),(1734,142,'show_admin_bar_front','true'),(1735,142,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1736,142,'wp_user_level','0'),(1737,142,'default_password_nag','1'),(1738,143,'first_name',''),(1739,143,'last_name',''),(1740,143,'nickname','Laurence88S'),(1741,143,'description',''),(1742,143,'rich_editing','true'),(1743,143,'comment_shortcuts','false'),(1744,143,'admin_color','fresh'),(1745,143,'use_ssl','0'),(1746,143,'show_admin_bar_front','true'),(1747,143,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1748,143,'wp_user_level','0'),(1749,143,'default_password_nag','1'),(1750,144,'first_name',''),(1751,144,'last_name',''),(1752,144,'nickname','IsraelEldred'),(1753,144,'description',''),(1754,144,'rich_editing','true'),(1755,144,'comment_shortcuts','false'),(1756,144,'admin_color','fresh'),(1757,144,'use_ssl','0'),(1758,144,'show_admin_bar_front','true'),(1759,144,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1760,144,'wp_user_level','0'),(1761,144,'default_password_nag','1'),(1762,145,'first_name',''),(1763,145,'last_name',''),(1764,145,'nickname','AnnieScutt'),(1765,145,'description',''),(1766,145,'rich_editing','true'),(1767,145,'comment_shortcuts','false'),(1768,145,'admin_color','fresh'),(1769,145,'use_ssl','0'),(1770,145,'show_admin_bar_front','true'),(1771,145,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1772,145,'wp_user_level','0'),(1773,145,'default_password_nag','1'),(1774,146,'first_name',''),(1775,146,'last_name',''),(1776,146,'nickname','NiamhAjqwcbdpt'),(1777,146,'description',''),(1778,146,'rich_editing','true'),(1779,146,'comment_shortcuts','false'),(1780,146,'admin_color','fresh'),(1781,146,'use_ssl','0'),(1782,146,'show_admin_bar_front','true'),(1783,146,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1784,146,'wp_user_level','0'),(1785,146,'default_password_nag','1'),(1786,147,'first_name','arjaxamovooma'),(1787,147,'last_name','arjaxamovooma'),(1788,147,'nickname','eugjufokof'),(1789,147,'description','<a href=\"http://essaywritingserviceonline.com/\" />usevpatakaxu</a> <a href=\"http://cialis20mgorder.com/\">ibreazi</a> http://orderlevitra20mg.org/'),(1790,147,'rich_editing','true'),(1791,147,'comment_shortcuts','false'),(1792,147,'admin_color','fresh'),(1793,147,'use_ssl','0'),(1794,147,'show_admin_bar_front','true'),(1795,147,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1796,147,'wp_user_level','0'),(1797,147,'default_password_nag',''),(1798,148,'first_name','oyevogezat'),(1799,148,'last_name','oyevogezat'),(1800,148,'nickname','axubodetosax'),(1801,148,'description','<a href=\"http://essaywritingserviceonline.com/\" />upawuzzew</a> <a href=\"http://cialis20mgorder.com/\">ujsosisiyede</a> http://orderlevitra20mg.org/'),(1802,148,'rich_editing','true'),(1803,148,'comment_shortcuts','false'),(1804,148,'admin_color','fresh'),(1805,148,'use_ssl','0'),(1806,148,'show_admin_bar_front','true'),(1807,148,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1808,148,'wp_user_level','0'),(1809,148,'default_password_nag',''),(1810,149,'first_name','imifeiyyi'),(1811,149,'last_name','imifeiyyi'),(1812,149,'nickname','uatomis'),(1813,149,'description','<a href=\"http://essaywritingserviceonline.com/\" />owohosigemeo</a> <a href=\"http://cialis20mgorder.com/\">univusubpiwut</a> http://orderlevitra20mg.org/'),(1814,149,'rich_editing','true'),(1815,149,'comment_shortcuts','false'),(1816,149,'admin_color','fresh'),(1817,149,'use_ssl','0'),(1818,149,'show_admin_bar_front','true'),(1819,149,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1820,149,'wp_user_level','0'),(1821,149,'default_password_nag',''),(1822,147,'aim',''),(1823,147,'yim',''),(1824,147,'jabber',''),(1825,148,'aim',''),(1826,148,'yim',''),(1827,148,'jabber',''),(1828,149,'aim',''),(1829,149,'yim',''),(1830,149,'jabber',''),(1831,150,'first_name',''),(1832,150,'last_name',''),(1833,150,'nickname','antiguehant'),(1834,150,'description',''),(1835,150,'rich_editing','true'),(1836,150,'comment_shortcuts','false'),(1837,150,'admin_color','fresh'),(1838,150,'use_ssl','0'),(1839,150,'show_admin_bar_front','true'),(1840,150,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1841,150,'wp_user_level','0'),(1842,150,'default_password_nag','1'),(1843,151,'first_name',''),(1844,151,'last_name',''),(1845,151,'nickname','Antoniomen'),(1846,151,'description',''),(1847,151,'rich_editing','true'),(1848,151,'comment_shortcuts','false'),(1849,151,'admin_color','fresh'),(1850,151,'use_ssl','0'),(1851,151,'show_admin_bar_front','true'),(1852,151,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1853,151,'wp_user_level','0'),(1854,151,'default_password_nag','1'),(1855,152,'first_name',''),(1856,152,'last_name',''),(1857,152,'nickname','KendallScrymgeo'),(1858,152,'description',''),(1859,152,'rich_editing','true'),(1860,152,'comment_shortcuts','false'),(1861,152,'admin_color','fresh'),(1862,152,'use_ssl','0'),(1863,152,'show_admin_bar_front','true'),(1864,152,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1865,152,'wp_user_level','0'),(1866,152,'default_password_nag','1'),(1867,153,'first_name',''),(1868,153,'last_name',''),(1869,153,'nickname','deeric'),(1870,153,'description',''),(1871,153,'rich_editing','true'),(1872,153,'comment_shortcuts','false'),(1873,153,'admin_color','fresh'),(1874,153,'use_ssl','0'),(1875,153,'show_admin_bar_front','true'),(1876,153,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1877,153,'wp_user_level','0'),(1878,153,'default_password_nag','1'),(1879,154,'first_name',''),(1880,154,'last_name',''),(1881,154,'nickname','MircooI'),(1882,154,'description',''),(1883,154,'rich_editing','true'),(1884,154,'comment_shortcuts','false'),(1885,154,'admin_color','fresh'),(1886,154,'use_ssl','0'),(1887,154,'show_admin_bar_front','true'),(1888,154,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1889,154,'wp_user_level','0'),(1890,154,'default_password_nag','1'),(1891,155,'first_name',''),(1892,155,'last_name',''),(1893,155,'nickname','KatherinaQwi'),(1894,155,'description',''),(1895,155,'rich_editing','true'),(1896,155,'comment_shortcuts','false'),(1897,155,'admin_color','fresh'),(1898,155,'use_ssl','0'),(1899,155,'show_admin_bar_front','true'),(1900,155,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1901,155,'wp_user_level','0'),(1902,155,'default_password_nag','1'),(1903,156,'first_name',''),(1904,156,'last_name',''),(1905,156,'nickname','Zy1Ve9Ns0'),(1906,156,'description',''),(1907,156,'rich_editing','true'),(1908,156,'comment_shortcuts','false'),(1909,156,'admin_color','fresh'),(1910,156,'use_ssl','0'),(1911,156,'show_admin_bar_front','true'),(1912,156,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1913,156,'wp_user_level','0'),(1914,156,'default_password_nag','1'),(1915,157,'first_name',''),(1916,157,'last_name',''),(1917,157,'nickname','MaurinePatten'),(1918,157,'description',''),(1919,157,'rich_editing','true'),(1920,157,'comment_shortcuts','false'),(1921,157,'admin_color','fresh'),(1922,157,'use_ssl','0'),(1923,157,'show_admin_bar_front','true'),(1924,157,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1925,157,'wp_user_level','0'),(1926,157,'default_password_nag','1'),(1927,158,'first_name',''),(1928,158,'last_name',''),(1929,158,'nickname','ZeldaMiramontes'),(1930,158,'description',''),(1931,158,'rich_editing','true'),(1932,158,'comment_shortcuts','false'),(1933,158,'admin_color','fresh'),(1934,158,'use_ssl','0'),(1935,158,'show_admin_bar_front','true'),(1936,158,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1937,158,'wp_user_level','0'),(1938,158,'default_password_nag','1'),(1939,159,'first_name',''),(1940,159,'last_name',''),(1941,159,'nickname','Cw7Zn4Xw0'),(1942,159,'description',''),(1943,159,'rich_editing','true'),(1944,159,'comment_shortcuts','false'),(1945,159,'admin_color','fresh'),(1946,159,'use_ssl','0'),(1947,159,'show_admin_bar_front','true'),(1948,159,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1949,159,'wp_user_level','0'),(1950,159,'default_password_nag','1'),(1951,160,'first_name',''),(1952,160,'last_name',''),(1953,160,'nickname','BernieGott'),(1954,160,'description',''),(1955,160,'rich_editing','true'),(1956,160,'comment_shortcuts','false'),(1957,160,'admin_color','fresh'),(1958,160,'use_ssl','0'),(1959,160,'show_admin_bar_front','true'),(1960,160,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1961,160,'wp_user_level','0'),(1962,160,'default_password_nag','1'),(1963,161,'first_name',''),(1964,161,'last_name',''),(1965,161,'nickname','JanessaG42'),(1966,161,'description',''),(1967,161,'rich_editing','true'),(1968,161,'comment_shortcuts','false'),(1969,161,'admin_color','fresh'),(1970,161,'use_ssl','0'),(1971,161,'show_admin_bar_front','true'),(1972,161,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1973,161,'wp_user_level','0'),(1974,161,'default_password_nag','1'),(1975,162,'first_name',''),(1976,162,'last_name',''),(1977,162,'nickname','LincolnPyf'),(1978,162,'description',''),(1979,162,'rich_editing','true'),(1980,162,'comment_shortcuts','false'),(1981,162,'admin_color','fresh'),(1982,162,'use_ssl','0'),(1983,162,'show_admin_bar_front','true'),(1984,162,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1985,162,'wp_user_level','0'),(1986,162,'default_password_nag','1'),(1987,163,'first_name',''),(1988,163,'last_name',''),(1989,163,'nickname','portru'),(1990,163,'description',''),(1991,163,'rich_editing','true'),(1992,163,'comment_shortcuts','false'),(1993,163,'admin_color','fresh'),(1994,163,'use_ssl','0'),(1995,163,'show_admin_bar_front','true'),(1996,163,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(1997,163,'wp_user_level','0'),(1998,163,'default_password_nag','1'),(1999,164,'first_name',''),(2000,164,'last_name',''),(2001,164,'nickname','WUKDeborah'),(2002,164,'description',''),(2003,164,'rich_editing','true'),(2004,164,'comment_shortcuts','false'),(2005,164,'admin_color','fresh'),(2006,164,'use_ssl','0'),(2007,164,'show_admin_bar_front','true'),(2008,164,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2009,164,'wp_user_level','0'),(2010,164,'default_password_nag','1'),(2011,165,'first_name',''),(2012,165,'last_name',''),(2013,165,'nickname','LucianaArreguin'),(2014,165,'description',''),(2015,165,'rich_editing','true'),(2016,165,'comment_shortcuts','false'),(2017,165,'admin_color','fresh'),(2018,165,'use_ssl','0'),(2019,165,'show_admin_bar_front','true'),(2020,165,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2021,165,'wp_user_level','0'),(2022,165,'default_password_nag','1'),(2023,166,'first_name',''),(2024,166,'last_name',''),(2025,166,'nickname','FranceAlarcon'),(2026,166,'description',''),(2027,166,'rich_editing','true'),(2028,166,'comment_shortcuts','false'),(2029,166,'admin_color','fresh'),(2030,166,'use_ssl','0'),(2031,166,'show_admin_bar_front','true'),(2032,166,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2033,166,'wp_user_level','0'),(2034,166,'default_password_nag','1'),(2035,167,'first_name',''),(2036,167,'last_name',''),(2037,167,'nickname','GeraldT44ha'),(2038,167,'description',''),(2039,167,'rich_editing','true'),(2040,167,'comment_shortcuts','false'),(2041,167,'admin_color','fresh'),(2042,167,'use_ssl','0'),(2043,167,'show_admin_bar_front','true'),(2044,167,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2045,167,'wp_user_level','0'),(2046,167,'default_password_nag','1'),(2047,168,'first_name',''),(2048,168,'last_name',''),(2049,168,'nickname','GabriellaMetcal'),(2050,168,'description',''),(2051,168,'rich_editing','true'),(2052,168,'comment_shortcuts','false'),(2053,168,'admin_color','fresh'),(2054,168,'use_ssl','0'),(2055,168,'show_admin_bar_front','true'),(2056,168,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2057,168,'wp_user_level','0'),(2058,168,'default_password_nag','1'),(2059,169,'first_name',''),(2060,169,'last_name',''),(2061,169,'nickname','NevilleRasch'),(2062,169,'description',''),(2063,169,'rich_editing','true'),(2064,169,'comment_shortcuts','false'),(2065,169,'admin_color','fresh'),(2066,169,'use_ssl','0'),(2067,169,'show_admin_bar_front','true'),(2068,169,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2069,169,'wp_user_level','0'),(2070,169,'default_password_nag','1'),(2071,170,'first_name',''),(2072,170,'last_name',''),(2073,170,'nickname','LourdesSelwyn'),(2074,170,'description',''),(2075,170,'rich_editing','true'),(2076,170,'comment_shortcuts','false'),(2077,170,'admin_color','fresh'),(2078,170,'use_ssl','0'),(2079,170,'show_admin_bar_front','true'),(2080,170,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2081,170,'wp_user_level','0'),(2082,170,'default_password_nag','1'),(2083,171,'first_name',''),(2084,171,'last_name',''),(2085,171,'nickname','SilviaRickert'),(2086,171,'description',''),(2087,171,'rich_editing','true'),(2088,171,'comment_shortcuts','false'),(2089,171,'admin_color','fresh'),(2090,171,'use_ssl','0'),(2091,171,'show_admin_bar_front','true'),(2092,171,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2093,171,'wp_user_level','0'),(2094,171,'default_password_nag','1'),(2095,172,'first_name',''),(2096,172,'last_name',''),(2097,172,'nickname','StepanieWilber'),(2098,172,'description',''),(2099,172,'rich_editing','true'),(2100,172,'comment_shortcuts','false'),(2101,172,'admin_color','fresh'),(2102,172,'use_ssl','0'),(2103,172,'show_admin_bar_front','true'),(2104,172,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2105,172,'wp_user_level','0'),(2106,172,'default_password_nag','1'),(2107,173,'first_name',''),(2108,173,'last_name',''),(2109,173,'nickname','ioniptiot'),(2110,173,'description',''),(2111,173,'rich_editing','true'),(2112,173,'comment_shortcuts','false'),(2113,173,'admin_color','fresh'),(2114,173,'use_ssl','0'),(2115,173,'show_admin_bar_front','true'),(2116,173,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2117,173,'wp_user_level','0'),(2118,173,'default_password_nag','1'),(2119,174,'first_name',''),(2120,174,'last_name',''),(2121,174,'nickname','LilaPinkston'),(2122,174,'description',''),(2123,174,'rich_editing','true'),(2124,174,'comment_shortcuts','false'),(2125,174,'admin_color','fresh'),(2126,174,'use_ssl','0'),(2127,174,'show_admin_bar_front','true'),(2128,174,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2129,174,'wp_user_level','0'),(2130,174,'default_password_nag','1'),(2131,175,'first_name',''),(2132,175,'last_name',''),(2133,175,'nickname','MircooA'),(2134,175,'description',''),(2135,175,'rich_editing','true'),(2136,175,'comment_shortcuts','false'),(2137,175,'admin_color','fresh'),(2138,175,'use_ssl','0'),(2139,175,'show_admin_bar_front','true'),(2140,175,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2141,175,'wp_user_level','0'),(2142,175,'default_password_nag','1'),(2143,176,'first_name',''),(2144,176,'last_name',''),(2145,176,'nickname','Nickolas2010'),(2146,176,'description',''),(2147,176,'rich_editing','true'),(2148,176,'comment_shortcuts','false'),(2149,176,'admin_color','fresh'),(2150,176,'use_ssl','0'),(2151,176,'show_admin_bar_front','true'),(2152,176,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2153,176,'wp_user_level','0'),(2154,176,'default_password_nag','1'),(2155,177,'first_name',''),(2156,177,'last_name',''),(2157,177,'nickname','Richardusek'),(2158,177,'description',''),(2159,177,'rich_editing','true'),(2160,177,'comment_shortcuts','false'),(2161,177,'admin_color','fresh'),(2162,177,'use_ssl','0'),(2163,177,'show_admin_bar_front','true'),(2164,177,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2165,177,'wp_user_level','0'),(2166,177,'default_password_nag','1'),(2167,178,'first_name',''),(2168,178,'last_name',''),(2169,178,'nickname','DeborahDayton'),(2170,178,'description',''),(2171,178,'rich_editing','true'),(2172,178,'comment_shortcuts','false'),(2173,178,'admin_color','fresh'),(2174,178,'use_ssl','0'),(2175,178,'show_admin_bar_front','true'),(2176,178,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2177,178,'wp_user_level','0'),(2178,178,'default_password_nag','1'),(2179,179,'first_name',''),(2180,179,'last_name',''),(2181,179,'nickname','LuciaBeier'),(2182,179,'description',''),(2183,179,'rich_editing','true'),(2184,179,'comment_shortcuts','false'),(2185,179,'admin_color','fresh'),(2186,179,'use_ssl','0'),(2187,179,'show_admin_bar_front','true'),(2188,179,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2189,179,'wp_user_level','0'),(2190,179,'default_password_nag','1'),(2191,180,'first_name',''),(2192,180,'last_name',''),(2193,180,'nickname','SolomonSelleck'),(2194,180,'description',''),(2195,180,'rich_editing','true'),(2196,180,'comment_shortcuts','false'),(2197,180,'admin_color','fresh'),(2198,180,'use_ssl','0'),(2199,180,'show_admin_bar_front','true'),(2200,180,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2201,180,'wp_user_level','0'),(2202,180,'default_password_nag','1'),(2203,181,'first_name',''),(2204,181,'last_name',''),(2205,181,'nickname','NapoleonRCNO'),(2206,181,'description',''),(2207,181,'rich_editing','true'),(2208,181,'comment_shortcuts','false'),(2209,181,'admin_color','fresh'),(2210,181,'use_ssl','0'),(2211,181,'show_admin_bar_front','true'),(2212,181,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2213,181,'wp_user_level','0'),(2214,181,'default_password_nag','1'),(2215,182,'first_name',''),(2216,182,'last_name',''),(2217,182,'nickname','annormaMeelry'),(2218,182,'description',''),(2219,182,'rich_editing','true'),(2220,182,'comment_shortcuts','false'),(2221,182,'admin_color','fresh'),(2222,182,'use_ssl','0'),(2223,182,'show_admin_bar_front','true'),(2224,182,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2225,182,'wp_user_level','0'),(2226,182,'default_password_nag','1'),(2227,183,'first_name',''),(2228,183,'last_name',''),(2229,183,'nickname','KentBellew'),(2230,183,'description',''),(2231,183,'rich_editing','true'),(2232,183,'comment_shortcuts','false'),(2233,183,'admin_color','fresh'),(2234,183,'use_ssl','0'),(2235,183,'show_admin_bar_front','true'),(2236,183,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2237,183,'wp_user_level','0'),(2238,183,'default_password_nag','1'),(2239,184,'first_name',''),(2240,184,'last_name',''),(2241,184,'nickname','GregorioEverhar'),(2242,184,'description',''),(2243,184,'rich_editing','true'),(2244,184,'comment_shortcuts','false'),(2245,184,'admin_color','fresh'),(2246,184,'use_ssl','0'),(2247,184,'show_admin_bar_front','true'),(2248,184,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2249,184,'wp_user_level','0'),(2250,184,'default_password_nag','1'),(2251,185,'first_name',''),(2252,185,'last_name',''),(2253,185,'nickname','DieterSmiley'),(2254,185,'description',''),(2255,185,'rich_editing','true'),(2256,185,'comment_shortcuts','false'),(2257,185,'admin_color','fresh'),(2258,185,'use_ssl','0'),(2259,185,'show_admin_bar_front','true'),(2260,185,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2261,185,'wp_user_level','0'),(2262,185,'default_password_nag','1'),(2263,186,'first_name',''),(2264,186,'last_name',''),(2265,186,'nickname','JaniceBarnhart'),(2266,186,'description',''),(2267,186,'rich_editing','true'),(2268,186,'comment_shortcuts','false'),(2269,186,'admin_color','fresh'),(2270,186,'use_ssl','0'),(2271,186,'show_admin_bar_front','true'),(2272,186,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2273,186,'wp_user_level','0'),(2274,186,'default_password_nag','1'),(2275,187,'first_name','amefulleyfagovcYT'),(2276,187,'last_name','amefulleyfagovcYT'),(2277,187,'nickname','Cidsaudip'),(2278,187,'description','http://www.ronnoc.com - louis vuitton outlet store TEPCO\'s account of the discovery this month of the leak of 300 tons of highly radioactive water showed a frightening level of amateurism:\"We found water spread at the bottom level of tanks near the tank No Merino sheepskin footwear from Australia exactly allow contemporary fashion Want to Buy Cheap UGG Boots? maintain their appearances always with trend\r\nhttp://www.markangelil.com - ugg outlet online Children sizes are renown for being cheaper!Buy boots in the off season After having spent 11 years of my adult life working in an office, I had woken up to the fact that I was doing a job I didn\'t like to buy stuff I didn\'t need\r\n http://www.ronnoc.com - louis vuitton factory outlet This urban styled trench coat features a sleek softshell exterior that keeps out the wind and light precipitation This approach trunk could be very lgt for extra fat even if they may be particularly big\r\n http://therevolvingdoorproject.com - cheap michael kors purses The whole thing is excellent On November, 7 we awoke to beautiful skies'),(2279,187,'rich_editing','true'),(2280,187,'comment_shortcuts','false'),(2281,187,'admin_color','fresh'),(2282,187,'use_ssl','0'),(2283,187,'show_admin_bar_front','true'),(2284,187,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2285,187,'wp_user_level','0'),(2286,187,'default_password_nag',''),(2287,187,'aim',''),(2288,187,'yim',''),(2289,187,'jabber',''),(2290,187,'gauthor','Cidsaudip'),(2291,188,'first_name',''),(2292,188,'last_name',''),(2293,188,'nickname','JohnathanFollan'),(2294,188,'description',''),(2295,188,'rich_editing','true'),(2296,188,'comment_shortcuts','false'),(2297,188,'admin_color','fresh'),(2298,188,'use_ssl','0'),(2299,188,'show_admin_bar_front','true'),(2300,188,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2301,188,'wp_user_level','0'),(2302,188,'default_password_nag','1'),(2303,189,'first_name',''),(2304,189,'last_name',''),(2305,189,'nickname','Excurigrearia'),(2306,189,'description',''),(2307,189,'rich_editing','true'),(2308,189,'comment_shortcuts','false'),(2309,189,'admin_color','fresh'),(2310,189,'use_ssl','0'),(2311,189,'show_admin_bar_front','true'),(2312,189,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2313,189,'wp_user_level','0'),(2314,189,'default_password_nag','1'),(2315,190,'first_name',''),(2316,190,'last_name',''),(2317,190,'nickname','ReginaldOh'),(2318,190,'description',''),(2319,190,'rich_editing','true'),(2320,190,'comment_shortcuts','false'),(2321,190,'admin_color','fresh'),(2322,190,'use_ssl','0'),(2323,190,'show_admin_bar_front','true'),(2324,190,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2325,190,'wp_user_level','0'),(2326,190,'default_password_nag','1'),(2327,191,'first_name',''),(2328,191,'last_name',''),(2329,191,'nickname','BarneyFAGF'),(2330,191,'description',''),(2331,191,'rich_editing','true'),(2332,191,'comment_shortcuts','false'),(2333,191,'admin_color','fresh'),(2334,191,'use_ssl','0'),(2335,191,'show_admin_bar_front','true'),(2336,191,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2337,191,'wp_user_level','0'),(2338,191,'default_password_nag','1'),(2339,192,'first_name',''),(2340,192,'last_name',''),(2341,192,'nickname','zobbyiskips'),(2342,192,'description',''),(2343,192,'rich_editing','true'),(2344,192,'comment_shortcuts','false'),(2345,192,'admin_color','fresh'),(2346,192,'use_ssl','0'),(2347,192,'show_admin_bar_front','true'),(2348,192,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2349,192,'wp_user_level','0'),(2350,192,'default_password_nag','1'),(2351,193,'first_name',''),(2352,193,'last_name',''),(2353,193,'nickname','cruinuike'),(2354,193,'description',''),(2355,193,'rich_editing','true'),(2356,193,'comment_shortcuts','false'),(2357,193,'admin_color','fresh'),(2358,193,'use_ssl','0'),(2359,193,'show_admin_bar_front','true'),(2360,193,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2361,193,'wp_user_level','0'),(2362,193,'default_password_nag','1'),(2363,194,'first_name','seapcoocaDQ'),(2364,194,'last_name','seapcoocaDQ'),(2365,194,'nickname','seapcooca'),(2366,194,'description','Damn aristocracy! Damn Daniel! <a href=\"http://ishigaki-senju.com/blogsys/lv/index.php?p=145\">ティファニー バイザヤード 価格</a> Fang Lin looked defiantly midair Qingpao Master, mouth evoke a touch of a smile. Lin Carter will actually Boer square as an enemy, put equivalent position, these mid-level m <a href=\"http://ishigaki-tokai.com/photo/lv-jp.php?p=17\">ルイヴィトン 財布 ヴェルニ アマラント</a> A congregation in order Master, listen to the Boer Fang Lin Carter covers such a large hat, one can not help but dizzy. Fang Lin actually going to the president appealed to the flange, these people ev t men, you kill him, Pol Carter blame him, can you afford not played. Speaker, while Fang Lin to apologize, he explains Qingpao Master of identity, it is the Bohr Carter launched, many of whom have threatened Fang Lin, Wang Wei let him do any meaning. <a href=\"http://ishigaki.biz/counter/lv/index.php?p=82\">ルイヴィトン 新作</a> Ha ha, this time, is really a fortune! Ye Yan very excited. Grabbed the wind sword, ready to leave here. After all, Ouyang Jian die here, if someone else found, then it may be necessary to rage out. At that time, Mian Bude leaves home to cause trouble. <a href=\"http://www.ishigakiichiba.com/mailform1/index.php?p=132\">ティファニー 指輪</a> Those magician, just want to protect Qingpao Master lives, where they could so many pieces, listening to Fang Lin said seriously, look at these people suddenly trembling hands, the upcoming release of magic also interrupted. Do not! Qingpao Master Just call out a word, however, has been completely late. Arrow blinks, strong cohesion Yin Lei mag <a href=\"http://www.ishigakijima-kotsu.com/l/jp-lv.php?p=110\">ルイヴィトン 新作</a> Tis a meaningful raloxifene looked for him, but it is in any case would not believe. However, raloxifene actually do not mind, Fang Lin four, regardless of the strength or talent, enough to make him commit intersect. Although four men and women, but from their confident attitude, tyrannical atmosphere point of view, raloxifene enough to see, these people are absolutely extraordinary history. ang Linsheng. It is very important to you? We are together, nature is a friend, where the head is not the head of what? \'Tis the Fang Lin is a hint eyes, laughed and said. <a href=\"http://www.jtbyaeyama.com/images/jp-lv.php?p=109\">ルイヴィトン 財布 コピー 代引き</a> e magic of hostilities with the family genius, in the end metamorphosis to what extent. Croom red eyes, this vile bastard now dare to ridicule him. However, Croom remembered Fang Lin\'s strength, and he really was the case four or five channels summon thunder elements that scene, as strong as Croom could not help but shudder. Croom did not know Fang Lin is quackish atmosphere, he even third mine can not control the elements, where the call will be only the fourth element. At this point because of fright Fang Lin Klum has such a powerful ability has not prepared to give him time to summon the elements. <a href=\"http://kamanta.jp/flashs/jp-lv.php?p=74\">ルイヴィトン 店舗 埼玉</a> The sky Xiao Lei magic, magic is a continuous monomer, it attacks the target range is very small, but lightning is a release together. <a href=\"http://www.kohama-k.com/phot/index.php?p=66\">ルイヴィトン時計新作</a> The next day, busy all night Wolf mercenaries who all wore a black eye. Fang Lin draw strength villain think gold is very mysterious way, he enthusiastically studied for a long time, but let Fang Linyu boring, he is completely in accordance with the golden villain of action, but it is unable to absorb the energy from a different space over ...... wn to a small amount of gray power. However golden villain, far less trouble. Even if the spirit of staying Fang Lin Hai, a breath between him, you can easily get gray energy. <a href=\"http://www.kubazaki-maru.com/images/lv/index.php?p=186\">ティファニー 指輪 箱</a> No ...... Financial drug time not too long, this process must end immediately. Stood quietly watching ?????? speak, Fang Lin seems to melt into a ball just wait until those herbs dregs, I would see him quickly these Mixed dregs of liquid poured out, and then purification, separation agents. Fang Lin body slightly reach the nose in front of the drug is carefully scrape smell a smell, I saw his eyebrows gently beating down, it seems that this result is very unhappy, just listen to the parties in Linkou, said: percent Five additional overflow effect, why does not every want to increase refining overflow pharmaceutical properties are so hard! <a href=\"http://www.mayagusukutour.com/images/louisvuitton/index.php?p=87\">ルイヴィトン 財布 新作 2014</a> Rowdy students suddenly fell silent, Fang Lin the vivid teacher in the eyes of the students was quite a lot.Respected Some instructors also looked at him suspiciously, Fang Lin said so sure, did not he been to the dragon\'s territory? Those guys Horoscope, I am afraid it will be very welcome strange intruder, right?'),(2367,194,'rich_editing','true'),(2368,194,'comment_shortcuts','false'),(2369,194,'admin_color','fresh'),(2370,194,'use_ssl','0'),(2371,194,'show_admin_bar_front','true'),(2372,194,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2373,194,'wp_user_level','0'),(2374,194,'default_password_nag',''),(2375,195,'first_name',''),(2376,195,'last_name',''),(2377,195,'nickname','Spoolloks'),(2378,195,'description',''),(2379,195,'rich_editing','true'),(2380,195,'comment_shortcuts','false'),(2381,195,'admin_color','fresh'),(2382,195,'use_ssl','0'),(2383,195,'show_admin_bar_front','true'),(2384,195,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2385,195,'wp_user_level','0'),(2386,195,'default_password_nag','1'),(2387,196,'first_name',''),(2388,196,'last_name',''),(2389,196,'nickname','SaraSkapy'),(2390,196,'description',''),(2391,196,'rich_editing','true'),(2392,196,'comment_shortcuts','false'),(2393,196,'admin_color','fresh'),(2394,196,'use_ssl','0'),(2395,196,'show_admin_bar_front','true'),(2396,196,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2397,196,'wp_user_level','0'),(2398,196,'default_password_nag','1'),(2399,197,'first_name','AcoulkshookIW'),(2400,197,'last_name','AcoulkshookIW'),(2401,197,'nickname','Acoulkshook'),(2402,197,'description','said minister malik shabazz http://www.blogmissferling.fr/chrome/38.html Toppings were for the taking. Pinkberry bags with gift tshirts inside were being toted around like badges of honor. Style.. I just returned from Wanderlust Whistler. I understand why some people really dig this festival but I can\'t say I\'m one of them. The festival is a lot less about yoga than it is about style, nightlife and a rather bizarre cult of celebrity. I\'m originally from a small town in PA and grew up in a farming community. With two different lifestyles under my belt I\'m wondering what to expect in Vancouver. I\'m female and dress up all the time here. The bath products were luxurious. The walkin, 2person shower was amazing. The staff was helpful, polite and accommodating. http://www.blogmissferling.fr/chrome/9.html Both the domestic and Global Economies seem to be slipping further into the abyss on a daily basis, despite the best intentions efforts of Central Bankers and their Political puppet masters. Sure, there a light at the end of the tunnel somewhere around 2011 (+/), but for many of us, there just doesn seem to be much about which to be optimistic in the interim. Our Industry, our Country, and the World are all undergoing fundamental changes that will forever alter our futures in ways we cannot yet predict, at least not with any more accuracy than S ability to predicts defaults. Common first signs of illness in a child are a change in behaviour and a high temperature. You may not be able to tell how sick your child is but there are some things you can do at home before you call your doctor. Watch your child carefully and watch for the development of further symptoms.. http://www.blogmissferling.fr/chrome/35.html Perhaps if I were a little bit better about planning in advance I wouldn always be trying to throw together a meal using only what I have at my disposal. Correct me if I wrong, but I don think much (that healthy or edible, anyway) can be made from the combination of canned tuna, Jiffy Corn Muffin Mix, puff pastry dough and frozen mango. This is definitely something that I have to work on if I plan on maintaining any sort of weight loss and if I want to teach my kids anything about healthy eating habits.. http://www.blogmissferling.fr/chrome/9.html Mancebo also moved up in GC, although not into the top spot he would have liked. The Competitive Cyclist rider finished third overall, moving up from sixth at the beginning of the day. Despite his crash and subsequent abandonment, Sheldon held onto the red climber\'s jersey, while Team Exergy\'s Carlos Alzate kept the green points jersey. Your online policy should be exactly the same. I started looking more at online comments lately and I really appalled at some of what I see. Why do you allow your paper website to be the local online chat room for such garbage? Well, I support free speech too, but here an idea: At least make people take off their white sheets.. http://www.blogmissferling.fr/chrome/18.html Wilkirson\'s involvement in Fondren came full circle after being away for about six years. As a business owner in the neighborhood and board member for FRF some time ago, he was approached in 2010 to step in during a transitional period for the foundation. Wilkirson was considered a consultant until he dove in head first last year. Your conversation could sound something like this: \'\'John, I know that you probably meant well but I cannot accept your Secret Santa gift. A gift card from a lingerie store is too personal and it will certainly get the rumour mill started at the office. How about you just exchange it and offer me a $25 Chapters gift card?\' No matter what words you choose, you must indicate that you wish to only have a professional relationship with him and return the gift.. The dry down is equally nice. I would it wear on a date if I wanted to seduce someone. The only reason it got a minus (instead ofan A) is because it is so similar to the Michael Kors original scent.. Past performance does not guarantee future results. Investors should always research companies and securities before making any investments. Nothing herein should be construed as an offer or solicitation to buy or sell any security.. http://www.blogmissferling.fr/chrome/1.html So we fell a behind a couple of groups. We also added about a quartermile to our total. But it was nice that. PS. To my husband, if you are reading this. Married to the Accountant Nathan, HOTttieee!! :) . 08/23/2013 Heritage Bike TourLearn about the unique history of Grand County through this multiday bicycle tour leaving from Kremmling, CO and touring through Hot Sulphur Springs, Grand Lake and Winter Park. $150 registration includes Thursday night mixer, historical interpretation including performances by Grand County Characters, entrances to four museums, dinner and historical movie al fresco at Pioneer Park, film showings at Grand Lake Community House and Grand Finale Celebration at Beavers Lodge in Winter Park. Proceeds benefit local historical and trail nonprofit organizations.. Write Your Kids Letters on Their Birthdays. If you have kids, this one is for you. I admittedly started later than I wished on this and though I can\'t take credit for the idea, I\'m doing it now and that\'s what matters. For example, Los Angeles has the Buttermilk Truck, which sells buttermilk pancake bites and Hawaiian bread French toast sticks. It would be nice to have them stop by Evanston for a day. And then maybe next week a different truck would come by, selling Belgian waffles , and then maybe next week there would be falafels.. http://www.blogmissferling.fr/chrome/11.html The buzzword is \"proactive,\" but what they\'re up to is acting as alert human beings. They\'re reaching out in a compassionate and effective way to try to stop suffering from occurring. That\'s about the healthiest attitude we can think of.. Was in pretty bad shape, Keaton remembered. Just needed some cards. Huggins said his father, Bill Huggins, opened House of Cards in 1979 in Wheaton and moved to its current location on Silver Spring Avenue in 2001. http://www.blogmissferling.fr/chrome/49.html That\'s Zite. Johnson won\'t say how many users it has now, but he says it has \"excellent user retention not quite Angry Birds, but close.\" The most common piece of feedback they\'ve received from users, he says, has been a request to make Zite available on more platforms. Building on today\'s launch, the goal is to be on every major platform within 12 months.. The Washington health department also distributes free condoms as part of the effort.DOLLAR HOMESGARY, Ind. (AP) Gary, Indiana, is offering quite a real estate deal. The city will offer 13 houses for a buck apiece. I hope I\'m not boring you, but there\'s more! SUNDAY! Mother\'s Day. I hope everyone had a great Mother\'s Day! Michael, Brooklyn and I drove to Long Beach to take my motherinlaw out for lunch. We headed to the Belmont Shore area which is a beautiful, familyoriented and dogfriendly beach community with gorgeous homes, amazing restaurants and cute little clothing boutiques. Greenberg.Larkita Norwood talked about how she was sorry for everything that happened, and how she\'s praying for the Murray family.\"I must tell you that my heart is also broken for Jayna\'s family.As a mother, I can only imagine how painful this is. The Murray family are in my prayers, I am askingforforgiveness and for strength and endurance during this difficult time for them. Seeing them hurting in court was very difficult for me. http://www.blogmissferling.fr/chrome/5.html With the stores full of shoppers and the stock price rising, it would appear investors believe Lululemon is pulling this off handsomely, creating realworld social networks that support the brand and insulate it from yogawear competitors (which now include the likes of Nike, Adidas and Under Armour). The challenges facing Day, however, stem precisely from the fact that investors are the ones making this appraisal. Publicly traded retail operations, Gray reminds me, need to show growth.. stock declined sharply in yesterday\'s trading session http://www.blogmissferling.fr/chrome/46.html The store will compete against Whole Foods Markets Inc. The American retailer operates eight stores in Canada, with four in Ontario and four new stores, including three more in Toronto, in the works. Further expansion plans may be announced during the quarterly results call at the end of the month, said a representative for the company... This was a funny clip from a few weeks ago. Penn + Dan on the slopes. You can see that we don have a lot of snow yet. The company also enjoys strong margins on its operations. In 2012, the company posted a 56.9% gross margin, which in turn helped the company boost its operating margin to 29% a 4% improvement over 2011. The strong growth in revenues and robust margins has translated to an abnormal earnings growth rate a rate that tends to normalize over the long run. http://www.blogmissferling.fr/chrome/9.html Among the handful of large companies due to report results today, Texas Instruments is expected to report secondquarter earnings of $0.42 per share on revenue of $3.1 billion after markets close tonight, while clothing retailer Lululemon Athletica is expected to report earnings of $0.30 per share on revenue of $341 million. A Bloomberg report suggested that Google may be about to announce a $1.1 billion deal to acquire Waze, an Israeli mapping and navigation firm. Apple may also be in focus; the iPhonemaker is expected to reveal an updated version of the software used on its iPad and iPhone devices at the firm\'s annual developer conference, which starts today.. There are two types of foursquare badges: foursquare badges and affiliate badges. The foursquare badges are round in shape and have been created by foursquare developers, with some of the most recent badges being related to checkins at ski resorts, offices or corporate buildings, coffee shops, and hardware stores. Affiliate badges have a shieldlike shape and are developed by businesses or organizations affiliated with foursquare to reward users who visit specific locations or businesses frequently. http://www.blogmissferling.fr/chrome/0.html The Tour de Suisse is the final preparation race before the Tour de France. Typically, it a mountainous affair. This year race opens with an 8kilometer prologue and finishes with a 26.8kilometer time trial that ends with a long, gradual climb. Among other things, he distributed several liquor brands. Mainly White Heather Scotch and Bushmill\'s Irish Whiskey, neither of which I had ever drank or even heard of. I got the scotch off to a fine start when I learned that Joe E. so that\'s weird http://www.blogmissferling.fr/chrome/31.html I\'m enjoying this period of my life because I see that I can do a lot more than I ever imagined before. It\'s all about rejigging your world and not limiting yourself. But my family comes before everything else. The dry down is equally nice. I would it wear on a date if I wanted to seduce someone. The only reason it got a minus (instead ofan A) is because it is so similar to the Michael Kors original scent.. Is in a highly competitive industry with extremely strong threats from formidable competitors such as Apple. The company has faced stiff product challenges in its markets since 2007. Top of that, she said the global economic downturn since 2008 has crippled RIM customer base in the corporate financial sector, which has gone through a downsizing.. http://www.blogmissferling.fr/chrome/47.html Yes, we knew Trevor had a heroin addiction, and we also knew that for three months he was clean. We did everything we could to ensure his success; the rest was up to him. We are not going to secondguess ourselves. I personally like wearing heels because I am 5 foot 4 inches and my husband is 6 foot 4 inches, so when we go out I can talk and dance with him without getting a sore neck from looking up at him the whole night. I also love heels because if I have my shoes on a few minutes before we leave to go out, I can reach so many things in the cupboards and shelves in the kitchen. (HAHAHA) It makes such a difference though.. Hair styling provided by Obadiah Salon. A VIP Party will follow the show inside the store by invitation only. Join us for cocktails, music, giveaways, and shopping. Store productivity is measured as average annual sales per square foot of store area. Is $668 per square foot. This is expected to increase to $770 per square foot by 2013, enhanced by the opening of new stores. http://www.blogmissferling.fr/chrome/21.html she said to kiefer I did not binge, I just ate more carbs a little sugar too. Maybe that what my body needs to recuperate? was going to aim for another 1000+ calorie workout day today. However I have decided 300 is enough and I treat today as my rest day.. Supervise print production manage quality cost of projects. Use knowledge of print, broadcast digital production to develop design projects. Chicago, IL location. http://www.blogmissferling.fr/chrome/33.html'),(2403,197,'rich_editing','true'),(2404,197,'comment_shortcuts','false'),(2405,197,'admin_color','fresh'),(2406,197,'use_ssl','0'),(2407,197,'show_admin_bar_front','true'),(2408,197,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2409,197,'wp_user_level','0'),(2410,197,'default_password_nag',''),(2411,198,'first_name','advadvaniepiGJL'),(2412,198,'last_name','advadvaniepiGJL'),(2413,198,'nickname','advadvaniepiG'),(2414,198,'description','Drivers. Definitely. Train. Maybe I should start packing sandwiches so I have more to spend on clothes. It tough when you come out shopping, and you want the new jeans from Zara, but you know you should be saving. 3.53! I can save much at all. What is equally important to take away here is that Athleta is a brand purchased by CEO Glenn Murphy quickly upon his arrival at the company. That means Athleta\'s growth path and in turn performance, is owned by him. All of this shows in the time and care taken to develop the brand online first since Athleta joined the Gap family of brands in 2008, at a cool $150 million (looks like a steal in hindsight).. <a href=\"http://www.smejobs.com/css/burberry/index.asp?id=4\">バーバリー 財布 値段</a> Coldwater Creek, the clothing retailer was profiled this week after the company announced its Q2 earnings were grim, thanks to decreased store traffic and shrunken direct channel sales. We asked respondents at 24 retail locations nationwide about which summer item is the bestseller, is there more merchandise now vs. Last year, are you offering seasonal merchandise, do you foresee a lot of sale merchandise this season and are your shoppers repeats or newbies... Brush the upmost side with oil (but don season it), turn and cook this side too, removing to plate when done. Set aside to cool.At the same time, place the bulgur in a large bowl, cover plentifully with boiling water and leave to soak for 15 minutes. Drain in a sieve, give it a good shake and set aside to cool.Add the broad beans to a pan of boiling salted water and boil until tender, 67 minutes for fresh or 45 minutes for frozen. <a href=\"http://www.smejobs.com/css/burberry/index.asp?id=9\">バーバリー 財布 人気</a> Can do business on a dead planet. Nau commitment to sustainability shines through their store, clothes, and service. Nau, Polynesian for welcome, or come to me makes outdoor gear to wear anytime/anyplace. In the last trading session, shares of Lululemon have gone up US$8.54 or 12.45% to US$77.14 with heavy volume traded. There were 17.13 million stock shares traded, which was 7 times more than average volume. The stock has a 52week low of US$41.70 and a 52week high of US$81.09.. so i think there will be a short impulse <a href=\"http://www.smejobs.com/css/burberry/index.asp?id=2\">バーバリー 財布 メンズ</a> We had a great table inside with a view of the fountains. The food and service there is just average. I would spend a little more $$ and go somewhere nicer next time.. That day, it hit me that everyone else was looking at themselves in the mirror and not me. So no worries, I could keep raising my arms overhead no one\'s going to think I have an aggressive five o\'clock pit shadow.But this patch of sweat was spreading from splotches into a triangle, and I was stretching into triangle pose, and dear Buddha, this was a noticeable triangle.In the front row.Between cursing the fabric failure causing the, er, disruption in my lower chakras, I cursed myself for not testing the shorts at home first. I knew better. <a href=\"http://www.smejobs.com/css/burberry/index.asp?id=26\">バーバリー 財布 赤</a> That\'s not forward, it\'s partially backward. This is terribly wrong. Lululemon did not lower guidance for Q2, it just issued guidance that was below analyst expectations at that time.. I teach my kids to be accepting of all people and their opinionsthey don\'t have to agree with them but they do have to be respectful of their choice. Maybe I\'m wrong but that\'s the way I am. We have plenty of friends on both sides of the political spectrum and it all works fine... Lululemon\'s revenue grew 57 percent, to about $712 million.\"This trend is 100 percent driven by Lululemon,\" said analyst of equity research firm .While yoga has been around for millennia, Lululemon \"helped turn it into a social thing for women by making them feel like they looked good while doing it,\" said , a Los Angeles yoga instructor.The company was founded by entrepreneur in 1998 after he took a yoga class and found that the clothing then available wasn\'t ideal for yoga. With a canny blend of fashion and lifestyle marketing besides the free yoga classes, it spotlights local \"ambassadors\" who \"embody the Lululemon lifestyle\" the retailer has built a cultlike following.Rivals appear to be undercutting Lululemon on price. A jacket in Nordstrom\'s Zella line goes for $98, $20 less than a Lululemon version.. <a href=\"http://www.smejobs.com/css/burberry/index.asp?id=26\">バーバリー 財布 赤</a> so here the thing Then you \"take a break\". See my posts here and here for details of my \"break\" (aka quitting spell). And then! The results! The amazing results! The best week EVAH! (nod to HaleyO for that ohsoemphatic \"evah\").. { Off topic: Mr. Who Knows is disappointed to see that Bravo is replacing Wolfgang Puck. While he did not like Puck\'s, Bravo is not much better. So we tried to give ourselves a hard talking to. This workout was HARD and we never done many of these exercises. Pushups on medicine balls YEAH RIGHT!!! Only. On big nights out, safety is an immediate concern. As woman get drunk and struggle to remain coherent, they become increasingly vulnerable and an easy target for assault and abuse. Effects on their health can include poor concentration, mood changes, anxiety leading to more serious issues of depression, brain damage, memory loss, breast cancer and cirrhosis of the liver... <a href=\"http://www.smejobs.com/css/burberry/index.asp?id=7\">バーバリー 財布 通販</a> This was our first of many glaciers whilst on a 3 week holiday in Alaska. It was a last minute addition to our trip and I am sooooo pleased we did not miss out. Knik is stunning, so vast and so very different to all the other glaciers we see. Exchanges. In a sign of official encouragement, a Chinese business magazine said a state bank has provided $1 billion in loans to help companies with listings abroad move them to domestic exchanges. Regulators can oversee their Chinabased auditors. In the first six months of 2012, the company set aside $225,789 for each employee on average. Morgan investment bank set aside $184,989 for its staff. Goldman is also very exclusive. Set aside. DRESSING: Place eggs, juice, parsley, garlic and mustard in a food processor. Process until smooth. <a href=\"http://www.smejobs.com/css/burberry/index.asp?id=18\">財布 バーバリー</a> I wouldn\'t care if he was Barnie purple he is destroying the USA and in doing so he is destabilizing the world we live in. He is turning his back on our allies in Eastern Europe and embracing the dictators of the world such as Chavez and Castro. He is the one who says he is black and sat in a black racist American hating church for twenty years and never heard any of the hatred from his best friend and minister who performed the marriage ceremony and baptised his children Rev.. <a href=\"http://www.smejobs.com/css/burberry/index.asp?id=11\">バーバリー 長財布</a> I wear make up because I damn well want to. I happily change as the relationship progresses as there is a give and take. I think in a relationship you do have to watch your appearance because it just a common courtesy. But seeing through multiple dimensions and hearing guides were how MINE happened. Your \"wake up\" experience won\'t look like mine. Or maybe it will. The Baldwin is a better place to stay but in August the best price I could get was $135 a night. Therefore, the Astoria was a much better deal. Both hotels are old but the Baldwin was better maintained. The two campaigns schedules left little doubt where the election would be won or lost: Obama was holding rallies in Wisconsin and Iowa. Romney was cutting a broader swath, with rallies in Florida, Virginia and New Hampshire. But the richest prize is Ohio, and on Monday both Obama and Romney were rallying their supporters in its capital, Columbus. Benefits. Must be 23 yrs old. RESPONSIBILITIES: Set up and operate machine as needed. I\'m a big fan of boutique hotels and this is another one that goes on my list of great places to stay for understated luxury and good value. It is the opposite of a large scale mega hotel. It has I think 72 all suite rooms. <a href=\"http://www.smejobs.com/css/burberry/index.asp?id=21\">burberry 長財布</a> Much akin the previous style, the ground style of combat is also closely linked with wrestling of the past and the martial arts. Here, there is much more focus on hitting the ground and gaining control of the opponent with this as a vantage point. Very much a style which more relies on submission than striking, total body mass is not always a good thing here.. The trick to finding the right shade of red is understanding your skin tone. For a more natural red look keep it in the same color family as your complexion. Cool skin tones will be more subtle with a bluebased red, like rubies or crimsons. 4. Look out . Inc. <a href=\"http://www.smejobs.com/css/burberry/index.asp?id=12\">バーバリー メンズ 財布</a> Then, nothing for. 30 years. This year, after the horrible winter we had, I wanted to enjoy the outdoors and started going for long walks. \"It got pretty chaotic toward the end,\" said runnerup Hanson. \"We didn\'t get our order set like we wanted to, but Friedman took off with about three laps to go and kept the pace high because it started to slow down a little. Then we got organised, and we had me, Friedman, Candelario and Creed up there... she barely smoked'),(2415,198,'rich_editing','true'),(2416,198,'comment_shortcuts','false'),(2417,198,'admin_color','fresh'),(2418,198,'use_ssl','0'),(2419,198,'show_admin_bar_front','true'),(2420,198,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2421,198,'wp_user_level','0'),(2422,198,'default_password_nag',''),(2423,199,'first_name',''),(2424,199,'last_name',''),(2425,199,'nickname','RizKefzerry'),(2426,199,'description',''),(2427,199,'rich_editing','true'),(2428,199,'comment_shortcuts','false'),(2429,199,'admin_color','fresh'),(2430,199,'use_ssl','0'),(2431,199,'show_admin_bar_front','true'),(2432,199,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2433,199,'wp_user_level','0'),(2434,199,'default_password_nag','1'),(2435,200,'first_name','AlixuplivekexUZ'),(2436,200,'last_name','AlixuplivekexUZ'),(2437,200,'nickname','Alixuplivekex'),(2438,200,'description','Although Aobo Lai spent many years http://itsallpink.com/images/lv-jp/8.html Oh, I\'m not ready to fight with these people, just some ideas, some small trials do if my idea is right, then I do not have to meet with those people, so that they can be guaranteed to eat burned! Judging from the citizens of the sound, a congregation Lance Lodge instructors and trainees, cheerful humiliation silently away. http://itsallpink.com/images/lv-jp/69.html Czech? Aisi Li Fendt, what nonsense!! Seniors Barry heard the voice, facial expressions will be even lower variable. This is being allies say then? I am afraid that even the enemy, the most they can say such a vicious remarks. What do you mean my friend, my people do all the magic guild waste it? Flange though I came, however, still not let the magic guild in my generation perish. Look to the speaker flange, face no authentic expression. http://itsallpink.com/images/lv-jp/4.html here, I hide? Fang Lin stared asked. http://itsallpink.com/images/lv-jp/106.html . People like them, but the magic guild generation of veterans, out of so many things these days, they not only did not get any benefit, but even the most expensive assassin\'s book should fall Fang Lin rubbing hands, this is really not acceptable to allow deacons elders . http://itsallpink.com/images/lv-jp/23.html No wonder there is such a powerful Fang Lin appeal, before they just wonder, I thought even strengthen agonist was born, the Holy Order of the strong do not cause them so much importance now. It now appears that the original is that they are too stupid, these waves have been telling others they also face looks like nothing had happened. But they\'d never intended to conceal the fact that, after all, a few days ago 奥柯伦 City Pharmacy auction, pass too Feifei Yangyang, even entire Bourbon kingdom knew. As long as these Tomahawk tribe determined to find out, there will always know. But even those who Bourbon did not think that, for the Fang Lin, Tomahawk family simply had never put him in the eyes, if not Fang Lin is a master agent, can be refined to strengthen the pharmaceutical, thunder Lin States and other talented people in this country, where the party will keep the for http://itsallpink.com/images/lv-jp/80.html Of course you have heard this name, as long as mercenaries, mercenary group will outsize this! Left hand of God, he is a mercenary group extant legends class, ranked second in the powerful mercenary group, compared to the continent\'s first A mercenary group, nor much worse! Fang Lin is also a little strange, staring Guleigeli same. http://itsallpink.com/images/lv-jp/98.html ally eat a surprise, as the words of Raphael and surprised. http://itsallpink.com/images/lv-jp/59.html The occasion of the night sky, the vast expanse of gray mountains, and finally started to show a little greenery. In the afterglow of the setting sun shining, and that the purpose of the green into the green, as if heaven is perfect plant, brings unlimited vigor and warm feeling. No goods cumbersome caravan, speed suddenly a lot higher. This way, Fang Lin, who met several waves of attack again, in addition to countless size skeletons, the touches that give people no longer cast a curse skull appears. Camp now, a short break! Although the forest is at hand, and sprinkle Drago http://itsallpink.com/images/lv-jp/75.html But I do not believe you! Fang Lin said coldly. He looked at Irene, empty indifferent gaze swept over her body, there is no room for the slightest rejected. Just you made under oath, will not have forgotten it! Fang Lin coldly looked at the head of group risk, look to her face, like watching a group of air no entity. No matter the kind of indifference, no eyes slightest emotional fluctuations, the female head of the body stiff, the heart can not help but tremble in more students from chill. http://itsallpink.com/images/lv-jp/37.html ? In the family leaves home test, Yan Ye rise like a comet-like, so that leaves the young and old village, jaw off the floor. Until after the end of the test, we are still talking about the matter. In martial bril'),(2439,200,'rich_editing','true'),(2440,200,'comment_shortcuts','false'),(2441,200,'admin_color','fresh'),(2442,200,'use_ssl','0'),(2443,200,'show_admin_bar_front','true'),(2444,200,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2445,200,'wp_user_level','0'),(2446,200,'default_password_nag',''),(2447,201,'first_name','effernalifsYR'),(2448,201,'last_name','effernalifsYR'),(2449,201,'nickname','effernalifs'),(2450,201,'description','Preiss uncle, Chuck Czech of St. Joseph, Minn., said the couple worked at the theme park at the Mall of America. They were friends for a long time and recently became engaged. Till was in Mississippi visiting family when he was killed for allegedly flirting with a white woman. He was beaten, had his eyes gouged out and was shot in the head before his assailants tied a cotton gin fan to his body with barbed wire and tossed his body into the Tallahatchie River. Two white men, including the woman\'s husband, were acquitted of the killing by an allwhite jury.. http://www.blogmissferling.fr/louis-vuitton/24.html \"I was doodling a little too much with it. That\'s why they were hitting hard line drives. When I\'ve got a good sinker, I could usually get out of jams.\". It really is. Amen and holy shit. It smells really old and wise like my Uncle Wallace or a dogeared Farmer TMs Almanac from 1943 (Augusta, Georgia: JULY 1943: temperature 71 (1 above avg.); precipitation 3\" (1\" below avg.); Jul 12: Sunny, hot; Jul 37: Tstorms, then sunny, warm; Jul 812: Scattered tstorms, hot and humid; Jul 1316: Sunny, warm; Jul 1723: Scattered tstorms, turning cool; Jul 2431: A couple of tstorms, warm.) It was marked down from the original antiquated list price of $879.00 down to $9.99 down to $2.99 then minus a whopping 70% off. Now apply coverup if needed and blush. Now finally lipstick. A bright red will look dramatic and a soft pink will look cute (like the girlnextdoor). The problem, of course, is the NIMBY\'s. We have seen how they are fighting economic growth throughout Evanston, most notably with the tower. Not only does this prevent the creation of jobs, but the reduced tax revenue makes it more difficult for the city to hire more policemen, or pay them more, get them the latest equipment, or even buy them houses to live in in the 8th ward.. http://www.blindaxe.com/lv/10.html stayed here for three weeks Recently on Facebook I was involved in a thread about sweatpants. Though it was one of many as of late this one got ugly. Do I like to poke the bear? Maybe a little but only because people are so defensive about their right to wear sweat pants. While I\'ll admit her clothes are not exactly things I\'d wear everyday to the gym, I had no choice but to put at the top of my list because. Well it\'s Stella. Stella (Yep on a first name basis) obviously puts some real design into her fitness line. http://www.eddiemotorsports.com/images/louisvuitton/67.html Personal integrity is an oxymoron. It always involves other people. Remember that and the dance of chance plays on.. Box 357, Marshfield Hills, MA 02051. Confirmation by eMail, send your email address with payment is accepting private reservations for dinner and appetizer. Oct. http://www.aspaceart.com/JPlv/2.html Very good hotel with clean rooms, good service from the reception and housekeeping staff. Breakfast is amazing, never had such a good cooked breakfast at any other hotels I\'ve stayed in so far. The only quirk is the restaurant. \"In everyday life all the people, friends and family around me. For work: the girls that we are designing for. We rely on their feedback so much to hear what they need and want. Sheree Waterson, Chief Product Officer, attributes Lululemon\'s ability to get product from design to shelf in 45 days to this smooth flow of information. In response to these strategic goals, the structure at Lululemon is further enhanced by grouping by product or project horizontally within functions. For example, you will find ecommerce within the IT function, administration and asset protection within Finance and brand experience/communications reporting to Retail Operations. http://www.mymodernmixtape.com/lv-jp/50.html The three obvious answers are yes, no, and maybe. I start with an easy yes. You see, as adjunct faculty, that what I do. His record needs to be expunged immediately ( 2 weeks maximum). As a parent whose invested so much ($100k +) in tuition over the past 6 years, I would hate to see a great career opportunity pass by due my childs record not being expunged. Every lawyer we talk to says 90 to 120 days. But as I stood there staring at a sea of undies I realized, if they were any good, it would be a bargain. So I took a flier on a 3 pack. They are better than good, they are fantastic (sorry, I can\'t get myself to call underwear Fabulous in any way, shape or form). The only difference is that TJ\'s is cheaper. Because TJ\'s have simple stores that can sell items at cheaper prices than the Fresh Market. The Fresh Market spends a lot of money building extravagant upscale stores so their prices are much higher... A second revelation occurred in class when he was struggling to keep his body in a difficult position. Was sweating, my muscles shaking, in triangle pose, and Bikram was talking about how fast he was as a boy in Calcutta. How he could catch this dog. http://mymarriagestore.com/lv/140.html See and Be Seen: When you think of reflective gear, fashion may be the last thing that comes to mind. But brands are realizing that you don\'t have to sacrifice style for safety and they\'re coming up with reflective duds that will make you stand out in more ways than one. Try the Women\'s Nightlife Equilibrium LS II ($50) longsleeve shirt from Brooks Running.. LuLulemon Sale said it had not determined why these pants fabric Qingbotouming, because they did not replace the materials used, is currently working with suppliers and other manufacturers cooperation, so as to replace the fabric and replenish stocks. The company said the affected pants are on sale March 1, welcome to buy this after this date yoga pants customer returns, and apologize for any inconvenience caused. The company announced on Tuesday, has a number of black Luon package hip yoga pants off the shelf, because the material used is too Qingbotouming.. http://iallure.com.au/JPlv/170.html In today\'s Network Economya world that now depends and runs on networksaccurate visibility and precise tracking of data crossing networks have become crucial to the availability, performance and security of applications and services. The growing complexity of IP transactions, the explosion of mobile applications, and the mainstream adoption of cloud computing surpass the capabilities of conventional tools to improve how networks operate, expand services, and cope with cybersecurity. Like Business Intelligence solutions emerged to unlock information hidden in the enterprise, Network Intelligence technology is an emerging category of technology to reveal the critical details of the data locked inside network traffic and transactions... http://uniomystica.hu/wp-content/lvjapan/229.html Potential earnings now thru Dec. $60,000+. Call 8156564300 (id:4349838)AUTO SALES Auto Sales Big Money! Short Hours! No Headaches! Are you ready for a change? We\'re looking for aggressive individuals to sell both new used cars and earn big $$$. In that they are refreshing they make the old timers jump. It democracy in action. The question is how long before they are absorbed by the system.Jan Schakowsky will always be ready to have government give you and me a hand. The short interest was 7.01% as of 06/06/2012. Regeneron Pharmaceuticals, Inc., a biopharmaceutical company, discovers, develops, and commercializes medicines for the treatment of serious medical conditions in the United States. The company\'s commercial products include EYLEA (aflibercept) Injection for the treatment of neovascular agerelated macular degeneration; and ARCALYST (rilonacept) injection for subcutaneous use for the treatment of cryopyrinassociated periodic syndromes, including familial cold autoinflammatory syndrome and mucklewells syndrome in adults and children. Recovery then occurs over weeks or sometimes months. Fortunately people with hepatitis A do not go on to harbour the infection as carriers. Instead they develop protective antibodies. Alexion Pharmaceuticals has 0% debt to shareholder equity, a cash flow of $1.53 per share, a return on equity of 27%, an EPS growth rate of 66%, and it spends 17.5% of sales on R The P/E ratio is currently at 60, which is in the lower end of its 5year range of 30171. Mutual funds love the numbers above as fund ownership has increased from 690 to 1061 funds during the past eight quarters. Management still owns 4% of the shares outstanding. http://conspiratees.net/lv-japan/256.html One thing I\'ve talked about since this issue came up was the ability to overcome this issue. This company has a very loyal customer base, and has been one of the best run retailers out there in recent years. This wasn\'t a company in trouble where one issue could destroy the company. Here\'s some advice for you: 1. Open a 401k as soon as you\'re given the chance to w/ your employer. The best interest rate on a car loan or a mortgage is usually the lowest one you can get. On Nov. 15, the caterer will stop serving at the country club events. According to H Jamie Ciaschi, the club owner has defaulted on the terms of a lease agreement. http://www.pasto.no/lv-jp/317.html Which I LOVE LOVE! >>> I have hypothyroidism and strive to maintain an optimum weight for the training I am doing. I do this by following the (Michelle Bridges) 12WBT program. >>> I am happiest when I \"Sweat Once A Day\".. \"We have concluded that early development is sensitive to the effects of bisphenol A. Food and Drug Administration (FDA) has said it does not consider normal exposure to BPA to be a hazard. However, on Apr. shower and change'),(2451,201,'rich_editing','true'),(2452,201,'comment_shortcuts','false'),(2453,201,'admin_color','fresh'),(2454,201,'use_ssl','0'),(2455,201,'show_admin_bar_front','true'),(2456,201,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2457,201,'wp_user_level','0'),(2458,201,'default_password_nag',''),(2459,202,'first_name','LitetennySinyDV'),(2460,202,'last_name','LitetennySinyDV'),(2461,202,'nickname','LitetennySiny'),(2462,202,'description','simply look for a label that reads [url=http://www.poole.ed.jp/wp-content/plugins/inline/coach-japan.php?id=46]コーチ バングル[/url] I retain the rights to all content found here. Thanks a million. Kal Barteski 2006 2013. One of my favorite plants. A few steps later: Lavender, that TMs my favorite. I love the way it smells, the way it looks. If you become more experienced with yoga and you are experimenting with other poses on your own, you may require a yoga block to help when you need support for proper alignment. You should find the right type of yoga block for your budget by searching for the best cork yoga blocks review online. If you are planning to buy the cork versions, look for a good cork yoga blocks review or two to know what makes a good yoga block.. Versace boot has Various sample color and various styles, you bound to select a pair your favorite boot. If you buy more, the price would be even cheaper. Attention everybody! There are many cheap sunglasses, especially Oakley sunglasses. Most of the time I don have a clue what it buzzing about and I miss calls like nobodies business because I just don clue in to why my pocket is buzzing. I lame. I know. [url=http://www.poole.ed.jp/wp-content/plugins/inline/coach-japan.php?id=104]コーチファクトリーストア[/url] A downgrade for France could scuttle the region efforts to stem its debt crisis. Europe bailout fund needs France and Germany to keep their sterling credit ratings so it can borrow at affordable rates. Corporate earnings season, aluminum maker Alcoa said late Monday that its fourthquarter revenue far outpaced analysts projections. said the most amazing words [url=http://www.poole.ed.jp/wp-content/plugins/exec/coach.php?id=15]coach 通販[/url] Ann Taylor\'s strategic decision to remain laser focused solely on adult women will continue to pay dividends against rivals like Gap. Gap has a much wider target demographic that encompasses both sexes, children, and multiple income levels. Gap\'s wide range of customers gives the company more room for potential errors in failed product launches or entries into unprofitable markets. [url=http://www.poole.ed.jp/wp-content/plugins/exec/coach.php?id=83]コーチ 財布 通販[/url] Both make quite an effort to create a community, said Annie Foster, 27, a yoga instructor and blogger in New York who attended an Athleta marketing event and received free pants and a top. Don think I had really heard of them before, and it was a really cool way to lay the groundwork before they set up shop here. Lululemon offers a 15 percent instore discount for certified fitness instructors in exchange for feedback on garments, Athleta offers 30 percent. selon nos sources [url=http://www.poole.ed.jp/wp-content/upgrade/jp/coach.php?id=98]コーチオンラインストア[/url] Regardless of what vegetables you plant, the worst thing you can do is grow the same vegetables in the same place each year. The inevitable result is pests and a variety of plant diseases, which will proliferate each year, eventually destroying a significant amount of the crop. When plants are rotated between beds, pests and disease problems are significantly reduced... Whether or not the students learned anything of value, you have to ask them. Or, we can check in with them in about 20 years to see where things stand. Achieving the goal is another story entirely where the jury might be out for decades. That P90X work outs vary in color tremendously addressing many techniques from Box and also Here we are at Meditation Times as well as Back button Extention. Dog trainer A2z tony Horton guidelines contributors as a result of many 16 workouts getting them to give it their own every. Utilizing P90X, compared with Mania Routine, there does exist quite a few accessories expected. So assuming that they each of the stores that they have already opened in 2011 are earning their max potential, and in 2012, they are only able to double (350 would actually be more than double the stores in NA), their earnings would be 2.5 a share, giving them a $29 PE. AND that doesnt include growth internationally, they are opening a store in Hong Kong London. So add to the potential growth internationally, and there is quite a large jump potential in profits. [url=http://www.poole.ed.jp/wp-content/upgrade/jp/coach.php?id=53]コーチ ホームページ[/url] No. Most of the time what happens is administrators mention the policies, pass out a handbook, but the majority of students don look at it. Unless someone sits down with students, goes over it and explains it, it is unlikely that students will understand A.) that sexual harassment policy exists and B.) what it is... Star magnolia is one of the earliest spring bloomers. It is a small, shrublike tree with primarily white flowers that are tinged with pink. The narrowlooking petals are actually called tepals, and flowers can be up to 4 inches in diameter. These are factors that bode well with Lululemon business model. Although Nike also offers training and education to their customers, they do not offer free instore classes. And Gander Mountain, who both sell fitness gear and offer ways that customers can engage in stores to try out merchandise (climbing wall) or sign up for a class such as gun safety (not yoga). [url=http://www.e-jemai.jp/contact/coach/jp.php?id=39]コーチ トートバッグ[/url] some fired rifles into the air [url=http://www.e-jemai.jp/contact/coach/jp.php?id=81]コーチ 財布 人気[/url] As I alluded to above,abercrombie, it can be very advantageous to have the facilities to be able to do the printing and binding yourself instead of having to order the job done,air jordan pas cher,karen millen outlet Finding Targeted Website Traff. There are many local printers who offer these services but you don want to have to rely on them in a bind if you have never used them before,mulberry outlet. Another issue with doing them yourself is the time factor. Nalgene ATB BPAFree Bottle\"This is a hygienic bottle with an easytoshut cover,\" trainer Ashley Borden says of this Nalgene ATB BPAFree bottle, which is made of nonleaching LDPE plastic with an opening large enough for ice cubes. Plus, as Borden explains, \"You get a huge amount of water through the squeeze tip, making staying hydrated easy and clean.\" Brynn Jinnett agrees. \"I sometimes forget to drink enough water, so I\'m working on changing my environment by keeping a water bottle in my bag. If you\'d like to learn about another great athletic apparel company, consider Lululemon, which has the potential to grow its sales by 10 times if it can penetrate its other markets like it has in Canada. However, the competitive landscape is starting to increase. Can lululemon fight off larger retailers and ultimately deliver huge profits for savvy investors? The Motley Fool answers these questions and more in its. [url=http://www.e-jemai.jp/css/coach-japan/jp.php?id=56]コーチ ポピー 財布[/url] The young designer, already known for her skilled leather workmanship, has dressed celebrities such as singer Keri Hilson and actress Shenae Grimes and been featured in Flare and Teen Vogue magazines. Lew Kee says she is currently focused on growing her small business, expanding her creative range and increasing global awareness of her brand. Toronto is a good testing ground for that, she says. We had only excellent service at Chives, and the same is true so far at 2 Doors Down. Varieties. Probably the only thing I don like about 2 Doors Down is the beer selection, which is comprised of three beers on tap, one from each of three microbreweries around the province. [url=http://www.e-jemai.jp/css/coach-japan/jp.php?id=8]coach 財布[/url] For an admission price of $25 shoppers are granted entrance to the mall and access to many exclusive \'onenight only\' discounts and special offers. The evening promises to be one of indulgence and surprises with goodie bags for the first 1,000 guests, prizes and live entertainment. Gourmet goodies and wine tastings will complete the experience.. Chain Free Austin is also accepting donations of new and gently used dog houses; call 9238881 for details. Don\'t forget to bring a new, unwrapped toy for donation to Operation Blue Santa. Through Dec. In 2006, and again in 2011, she was named to the Time 100, Time Magazine\'s list of the world\'s 100 most influential people. In economics. At 21, she became president of the famed debating society, the Cambridge Union. \r\n \r\nRelated Articles: \r\nhttp://www.megahappybaby.ru/forum/viewtopic.php?pid=214723#p214723\r\nhttp://teampierce.net/test/index.php?topic=232567.new#new\r\nhttp://astrumtur.ru/images/guest/index.php?showforum=1\r\nhttp://www.lekool.net/forum.php?mod=viewthread&tid=7740559&extra=\r\nhttp://www.dianxinge.com/modules/newbb/newtopic.php?forum=3%20\r\nhttp://restorationbb.com/viewtopic.php?f=7&t=191684\r\nhttp://www.mpegts.org/index.php?topic=24724.new#new\r\nhttp://www.forum.cabedalis.com.br/viewtopic.php?f=9&t=3046812\r\nhttp://www.dianxinge.com/modules/newbb/newtopic.php?forum=7\r\nhttp://forum.garda-lublin.pl/index.php?action=vthread&forum=3&topic=26044&page=4816#msg123681'),(2463,202,'rich_editing','true'),(2464,202,'comment_shortcuts','false'),(2465,202,'admin_color','fresh'),(2466,202,'use_ssl','0'),(2467,202,'show_admin_bar_front','true'),(2468,202,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2469,202,'wp_user_level','0'),(2470,202,'default_password_nag',''),(2471,203,'first_name',''),(2472,203,'last_name',''),(2473,203,'nickname','Lacy6652wijelc'),(2474,203,'description',''),(2475,203,'rich_editing','true'),(2476,203,'comment_shortcuts','false'),(2477,203,'admin_color','fresh'),(2478,203,'use_ssl','0'),(2479,203,'show_admin_bar_front','true'),(2480,203,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2481,203,'wp_user_level','0'),(2482,203,'default_password_nag','1'),(2483,204,'first_name',''),(2484,204,'last_name',''),(2485,204,'nickname','CharmainTierney'),(2486,204,'description',''),(2487,204,'rich_editing','true'),(2488,204,'comment_shortcuts','false'),(2489,204,'admin_color','fresh'),(2490,204,'use_ssl','0'),(2491,204,'show_admin_bar_front','true'),(2492,204,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2493,204,'wp_user_level','0'),(2494,204,'default_password_nag','1'),(2495,205,'first_name',''),(2496,205,'last_name',''),(2497,205,'nickname','Advisydrisy'),(2498,205,'description',''),(2499,205,'rich_editing','true'),(2500,205,'comment_shortcuts','false'),(2501,205,'admin_color','fresh'),(2502,205,'use_ssl','0'),(2503,205,'show_admin_bar_front','true'),(2504,205,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2505,205,'wp_user_level','0'),(2506,205,'default_password_nag','1'),(2507,206,'first_name',''),(2508,206,'last_name',''),(2509,206,'nickname','VernitaY16'),(2510,206,'description',''),(2511,206,'rich_editing','true'),(2512,206,'comment_shortcuts','false'),(2513,206,'admin_color','fresh'),(2514,206,'use_ssl','0'),(2515,206,'show_admin_bar_front','true'),(2516,206,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2517,206,'wp_user_level','0'),(2518,206,'default_password_nag','1'),(2519,207,'first_name','azithromycin 500mg uses'),(2520,207,'last_name','zithromax cheap online'),(2521,207,'nickname','Amyamoxylpa'),(2522,207,'description','<a href=\"http://ciloxandropsdosage78496.soup.io\">http://stomsk.ru/pics/pic.gif</a> \r\nZithromax Dosering Klamydia\r\nJag Kan Ta Rolaids Under Graviditeten\r\nMedicinering Zithromax\r\n <a href=\"http://zyclaragenericcost37941.soup.io/#square_enix_rpg_games_for_psp\">Z Pack Antibiotika Biverkningar</a> \r\nAzithromycin Sandoz 250 Mg http://doeszyclaraworkforwarts34858.soup.io/#polymyxin_b_sulfate_and_trimethoprim_ophthalmic_for_pink_eye \r\nZithromax Under Graviditeten\r\nZithromax En Dos\r\nZithromax Allergi\r\n \r\nmamoleptino321 \r\n<a href=\"http://bleacherreport.com/users/3443394-generic-lipitor-costs-lipitor-10mg-reviews/#antybiotyk_duomox_1000_cena\">Zpack</a> \r\n<a href=\"http://phinisi.info/index.php/k2-showcase/k2-category/world/item/93-germans-query-terror-warning\">http://www.freelancer.ph/buyers/create.php</a>'),(2523,207,'rich_editing','true'),(2524,207,'comment_shortcuts','false'),(2525,207,'admin_color','fresh'),(2526,207,'use_ssl','0'),(2527,207,'show_admin_bar_front','true'),(2528,207,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2529,207,'wp_user_level','0'),(2530,207,'default_password_nag',''),(2531,207,'aim',''),(2532,207,'yim',''),(2533,207,'jabber',''),(2534,207,'gauthor','Amyamoxylpa'),(2575,211,'first_name',''),(2576,211,'last_name',''),(2577,211,'nickname','MathiasMackay'),(2578,211,'description',''),(2579,211,'rich_editing','true'),(2580,211,'comment_shortcuts','false'),(2581,211,'admin_color','fresh'),(2582,211,'use_ssl','0'),(2583,211,'show_admin_bar_front','true'),(2584,211,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2585,211,'wp_user_level','0'),(2586,211,'default_password_nag','1'),(2551,209,'first_name',''),(2552,209,'last_name',''),(2553,209,'nickname','EvonneWild'),(2554,209,'description',''),(2555,209,'rich_editing','true'),(2556,209,'comment_shortcuts','false'),(2557,209,'admin_color','fresh'),(2558,209,'use_ssl','0'),(2559,209,'show_admin_bar_front','true'),(2560,209,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2535,198,'aim',''),(2536,198,'yim',''),(2537,198,'jabber',''),(2538,198,'gauthor','advadvaniepiG'),(2539,208,'first_name',''),(2540,208,'last_name',''),(2541,208,'nickname','mkoutletuft'),(2542,208,'description',''),(2543,208,'rich_editing','true'),(2544,208,'comment_shortcuts','false'),(2545,208,'admin_color','fresh'),(2546,208,'use_ssl','0'),(2547,208,'show_admin_bar_front','true'),(2548,208,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2549,208,'wp_user_level','0'),(2550,208,'default_password_nag','1'),(2561,209,'wp_user_level','0'),(2562,209,'default_password_nag','1'),(2563,210,'first_name',''),(2564,210,'last_name',''),(2565,210,'nickname','StephenBussell'),(2566,210,'description',''),(2567,210,'rich_editing','true'),(2568,210,'comment_shortcuts','false'),(2569,210,'admin_color','fresh'),(2570,210,'use_ssl','0'),(2571,210,'show_admin_bar_front','true'),(2572,210,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2573,210,'wp_user_level','0'),(2574,210,'default_password_nag','1'),(7037,579,'default_password_nag','1'),(7038,580,'first_name',''),(7039,580,'last_name',''),(7040,580,'nickname','RoscoeKawamoto'),(7041,580,'description',''),(7042,580,'rich_editing','true'),(7043,580,'comment_shortcuts','false'),(2695,220,'first_name',''),(2696,220,'last_name',''),(2697,220,'nickname','Ruth1926aubbel'),(2698,220,'description',''),(2699,220,'rich_editing','true'),(2700,220,'comment_shortcuts','false'),(2701,220,'admin_color','fresh'),(2702,220,'use_ssl','0'),(2703,220,'show_admin_bar_front','true'),(2704,220,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2705,220,'wp_user_level','0'),(2706,220,'default_password_nag','1'),(2835,231,'first_name',''),(2836,231,'last_name',''),(2837,231,'nickname','easqkrkaa'),(2838,231,'description',''),(2839,231,'rich_editing','true'),(2840,231,'comment_shortcuts','false'),(2707,221,'first_name',''),(2708,221,'last_name',''),(2709,221,'nickname','GilbertDck'),(2710,221,'description',''),(2711,221,'rich_editing','true'),(2587,197,'aim',''),(2588,197,'yim',''),(2589,197,'jabber',''),(2590,197,'gauthor','Acoulkshook'),(2823,230,'first_name',''),(2824,230,'last_name',''),(2825,230,'nickname','ChaseSweet'),(2826,230,'description',''),(2827,230,'rich_editing','true'),(2828,230,'comment_shortcuts','false'),(2829,230,'admin_color','fresh'),(2830,230,'use_ssl','0'),(2831,230,'show_admin_bar_front','true'),(2832,230,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2833,230,'wp_user_level','0'),(2834,230,'default_password_nag','1'),(3608,295,'last_name',''),(2732,222,'yim',''),(2733,222,'jabber',''),(2734,222,'gauthor',''),(2735,223,'first_name',''),(2736,223,'last_name',''),(2737,223,'nickname','papplhwp'),(2738,223,'description',''),(2739,223,'rich_editing','true'),(2740,223,'comment_shortcuts','false'),(2741,223,'admin_color','fresh'),(2742,223,'use_ssl','0'),(2743,223,'show_admin_bar_front','true'),(2744,223,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2595,212,'first_name',''),(2596,212,'last_name',''),(2597,212,'nickname','Ashly63Ygp'),(2598,212,'description',''),(2599,212,'rich_editing','true'),(2600,212,'comment_shortcuts','false'),(2601,212,'admin_color','fresh'),(2602,212,'use_ssl','0'),(2603,212,'show_admin_bar_front','true'),(2841,231,'admin_color','fresh'),(2842,231,'use_ssl','0'),(2843,231,'show_admin_bar_front','true'),(2844,231,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2845,231,'wp_user_level','0'),(2846,231,'default_password_nag','1'),(3081,251,'admin_color','fresh'),(3082,251,'use_ssl','0'),(2931,239,'first_name',''),(2932,239,'last_name',''),(2933,239,'nickname','Ilarion9wtx'),(2934,239,'description',''),(2935,239,'rich_editing','true'),(2936,239,'comment_shortcuts','false'),(2937,239,'admin_color','fresh'),(2938,239,'use_ssl','0'),(2939,239,'show_admin_bar_front','true'),(2940,239,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2941,239,'wp_user_level','0'),(2942,239,'default_password_nag','1'),(2943,240,'first_name',''),(2944,240,'last_name',''),(2945,240,'nickname','FelicitasPaige'),(2946,240,'description',''),(2947,240,'rich_editing','true'),(2948,240,'comment_shortcuts','false'),(2949,240,'admin_color','fresh'),(2847,232,'first_name',''),(2848,232,'last_name',''),(2849,232,'nickname','MelvinBeauchamp'),(2850,232,'description',''),(2851,232,'rich_editing','true'),(2852,232,'comment_shortcuts','false'),(2853,232,'admin_color','fresh'),(2604,212,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2605,212,'wp_user_level','0'),(2606,212,'default_password_nag','1'),(2591,201,'aim',''),(2592,201,'yim',''),(2593,201,'jabber',''),(2594,201,'gauthor','effernalifs'),(2607,213,'first_name',''),(2608,213,'last_name',''),(2609,213,'nickname','NiamhG49twovq'),(2610,213,'description',''),(2611,213,'rich_editing','true'),(2612,213,'comment_shortcuts','false'),(2613,213,'admin_color','fresh'),(2614,213,'use_ssl','0'),(2615,213,'show_admin_bar_front','true'),(2616,213,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2617,213,'wp_user_level','0'),(2618,213,'default_password_nag','1'),(2619,214,'first_name',''),(2620,214,'last_name',''),(2621,214,'nickname','BennyKulka33'),(2622,214,'description',''),(2623,214,'rich_editing','true'),(2624,214,'comment_shortcuts','false'),(2625,214,'admin_color','fresh'),(2626,214,'use_ssl','0'),(2627,214,'show_admin_bar_front','true'),(2628,214,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2629,214,'wp_user_level','0'),(2630,214,'default_password_nag','1'),(2631,215,'first_name',''),(2632,215,'last_name',''),(2633,215,'nickname','RandolphK23'),(2634,215,'description',''),(2635,215,'rich_editing','true'),(2636,215,'comment_shortcuts','false'),(2637,215,'admin_color','fresh'),(2638,215,'use_ssl','0'),(2639,215,'show_admin_bar_front','true'),(2640,215,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2641,215,'wp_user_level','0'),(2642,215,'default_password_nag','1'),(2643,216,'first_name',''),(2644,216,'last_name',''),(2645,216,'nickname','MillieCockle'),(2646,216,'description',''),(2647,216,'rich_editing','true'),(2648,216,'comment_shortcuts','false'),(2649,216,'admin_color','fresh'),(2650,216,'use_ssl','0'),(2651,216,'show_admin_bar_front','true'),(2652,216,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2653,216,'wp_user_level','0'),(2654,216,'default_password_nag','1'),(2655,217,'first_name',''),(2656,217,'last_name',''),(2657,217,'nickname','FayeMazure'),(2658,217,'description',''),(2659,217,'rich_editing','true'),(2660,217,'comment_shortcuts','false'),(2661,217,'admin_color','fresh'),(2662,217,'use_ssl','0'),(2663,217,'show_admin_bar_front','true'),(2664,217,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2665,217,'wp_user_level','0'),(2666,217,'default_password_nag','1'),(2667,218,'first_name',''),(2668,218,'last_name',''),(2669,218,'nickname','BonitaBurks'),(2670,218,'description',''),(2671,218,'rich_editing','true'),(2672,218,'comment_shortcuts','false'),(2673,218,'admin_color','fresh'),(2674,218,'use_ssl','0'),(2675,218,'show_admin_bar_front','true'),(2676,218,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2677,218,'wp_user_level','0'),(2678,218,'default_password_nag','1'),(2679,219,'first_name',''),(2680,219,'last_name',''),(2681,219,'nickname','Dp4Ss6Vh5'),(2682,219,'description',''),(2683,219,'rich_editing','true'),(2684,219,'comment_shortcuts','false'),(2685,219,'admin_color','fresh'),(2686,219,'use_ssl','0'),(2687,219,'show_admin_bar_front','true'),(2688,219,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2689,219,'wp_user_level','0'),(2690,219,'default_password_nag','1'),(3136,256,'last_name',''),(3137,256,'nickname','JeremiahCrossle'),(3138,256,'description',''),(3139,256,'rich_editing','true'),(3140,256,'comment_shortcuts','false'),(3141,256,'admin_color','fresh'),(3142,256,'use_ssl','0'),(3143,256,'show_admin_bar_front','true'),(3144,256,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3145,256,'wp_user_level','0'),(3146,256,'default_password_nag','1'),(3147,257,'first_name',''),(3148,257,'last_name',''),(2955,241,'first_name',''),(2956,241,'last_name',''),(2957,241,'nickname','JanessaSosa'),(2958,241,'description',''),(2959,241,'rich_editing','true'),(2960,241,'comment_shortcuts','false'),(2961,241,'admin_color','fresh'),(2962,241,'use_ssl','0'),(2963,241,'show_admin_bar_front','true'),(3083,251,'show_admin_bar_front','true'),(3084,251,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2719,222,'first_name',''),(2720,222,'last_name',''),(2721,222,'nickname','QueryBibber412'),(2722,222,'description',''),(2723,222,'rich_editing','true'),(2724,222,'comment_shortcuts','false'),(2725,222,'admin_color','fresh'),(2726,222,'use_ssl','0'),(2691,202,'aim',''),(2692,202,'yim',''),(2693,202,'jabber',''),(2694,202,'gauthor','LitetennySiny'),(2712,221,'comment_shortcuts','false'),(2713,221,'admin_color','fresh'),(2714,221,'use_ssl','0'),(2715,221,'show_admin_bar_front','true'),(2716,221,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2717,221,'wp_user_level','0'),(2718,221,'default_password_nag','1'),(2727,222,'show_admin_bar_front','false'),(2728,222,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2729,222,'wp_user_level','0'),(2730,222,'default_password_nag','1'),(2731,222,'aim',''),(2745,223,'wp_user_level','0'),(2746,223,'default_password_nag','1'),(5553,456,'default_password_nag','1'),(5554,457,'first_name',''),(5555,457,'last_name',''),(5556,457,'nickname','AIBSimawgug'),(5557,457,'description',''),(5558,457,'rich_editing','true'),(5559,457,'comment_shortcuts','false'),(3987,326,'show_admin_bar_front','true'),(3988,326,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3609,295,'nickname','NamTsemwava'),(3610,295,'description',''),(7030,579,'rich_editing','true'),(7031,579,'comment_shortcuts','false'),(7032,579,'admin_color','fresh'),(7033,579,'use_ssl','0'),(7034,579,'show_admin_bar_front','true'),(7035,579,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7036,579,'wp_user_level','0'),(2747,194,'aim',''),(2748,194,'yim',''),(2749,194,'jabber',''),(2750,194,'gauthor','seapcooca'),(2751,224,'first_name',''),(2752,224,'last_name',''),(2753,224,'nickname','NoeAhuiaOva'),(2754,224,'description',''),(2755,224,'rich_editing','true'),(2756,224,'comment_shortcuts','false'),(2757,224,'admin_color','fresh'),(2758,224,'use_ssl','0'),(2759,224,'show_admin_bar_front','true'),(2760,224,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2761,224,'wp_user_level','0'),(2762,224,'default_password_nag','1'),(3607,295,'first_name',''),(2950,240,'use_ssl','0'),(2951,240,'show_admin_bar_front','true'),(2952,240,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2953,240,'wp_user_level','0'),(2954,240,'default_password_nag','1'),(3054,249,'description',''),(3055,249,'rich_editing','true'),(3056,249,'comment_shortcuts','false'),(3057,249,'admin_color','fresh'),(3058,249,'use_ssl','0'),(3059,249,'show_admin_bar_front','true'),(2763,225,'first_name',''),(2764,225,'last_name',''),(2765,225,'nickname','Isla4910vqtvsck'),(2766,225,'description',''),(2767,225,'rich_editing','true'),(2768,225,'comment_shortcuts','false'),(2769,225,'admin_color','fresh'),(2770,225,'use_ssl','0'),(2771,225,'show_admin_bar_front','true'),(2772,225,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2773,225,'wp_user_level','0'),(2774,225,'default_password_nag','1'),(3085,251,'wp_user_level','0'),(3086,251,'default_password_nag','1'),(3130,255,'use_ssl','0'),(3131,255,'show_admin_bar_front','true'),(3132,255,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3133,255,'wp_user_level','0'),(3134,255,'default_password_nag','1'),(3135,256,'first_name',''),(2775,226,'first_name',''),(2776,226,'last_name',''),(2777,226,'nickname','AdalbertoK06'),(2778,226,'description',''),(2779,226,'rich_editing','true'),(2780,226,'comment_shortcuts','false'),(2781,226,'admin_color','fresh'),(2782,226,'use_ssl','0'),(2783,226,'show_admin_bar_front','true'),(2784,226,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2785,226,'wp_user_level','0'),(2786,226,'default_password_nag','1'),(2787,227,'first_name',''),(2788,227,'last_name',''),(2789,227,'nickname','easxveepz'),(2790,227,'description',''),(2791,227,'rich_editing','true'),(2792,227,'comment_shortcuts','false'),(2793,227,'admin_color','fresh'),(2794,227,'use_ssl','0'),(2795,227,'show_admin_bar_front','true'),(2796,227,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2797,227,'wp_user_level','0'),(2798,227,'default_password_nag','1'),(3060,249,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3061,249,'wp_user_level','0'),(3062,249,'default_password_nag','1'),(2799,228,'first_name',''),(2800,228,'last_name',''),(2801,228,'nickname','WallaceFhp'),(2802,228,'description',''),(2803,228,'rich_editing','true'),(2804,228,'comment_shortcuts','false'),(2805,228,'admin_color','fresh'),(2806,228,'use_ssl','0'),(2807,228,'show_admin_bar_front','true'),(2808,228,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2809,228,'wp_user_level','0'),(2810,228,'default_password_nag','1'),(2811,229,'first_name',''),(2812,229,'last_name',''),(2813,229,'nickname','AlexandriaHaywo'),(2814,229,'description',''),(2815,229,'rich_editing','true'),(2816,229,'comment_shortcuts','false'),(2817,229,'admin_color','fresh'),(2818,229,'use_ssl','0'),(2819,229,'show_admin_bar_front','true'),(2820,229,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2821,229,'wp_user_level','0'),(2822,229,'default_password_nag','1'),(2854,232,'use_ssl','0'),(2855,232,'show_admin_bar_front','true'),(2856,232,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2857,232,'wp_user_level','0'),(2858,232,'default_password_nag','1'),(2859,233,'first_name',''),(2860,233,'last_name',''),(2861,233,'nickname','KathyHorner'),(2862,233,'description',''),(2863,233,'rich_editing','true'),(2864,233,'comment_shortcuts','false'),(2865,233,'admin_color','fresh'),(2866,233,'use_ssl','0'),(2867,233,'show_admin_bar_front','true'),(2868,233,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2869,233,'wp_user_level','0'),(2870,233,'default_password_nag','1'),(2871,234,'first_name',''),(2872,234,'last_name',''),(2873,234,'nickname','easambmts'),(2874,234,'description',''),(2875,234,'rich_editing','true'),(2876,234,'comment_shortcuts','false'),(2877,234,'admin_color','fresh'),(2878,234,'use_ssl','0'),(2879,234,'show_admin_bar_front','true'),(2880,234,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2881,234,'wp_user_level','0'),(2882,234,'default_password_nag','1'),(2973,242,'admin_color','fresh'),(2974,242,'use_ssl','0'),(2975,242,'show_admin_bar_front','true'),(2976,242,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2977,242,'wp_user_level','0'),(2978,242,'default_password_nag','1'),(3149,257,'nickname','otpvlfx99'),(3051,249,'first_name',''),(3052,249,'last_name',''),(3053,249,'nickname','BeatrisDriver'),(2967,242,'first_name',''),(2968,242,'last_name',''),(2969,242,'nickname','SabrinaD20'),(2970,242,'description',''),(2971,242,'rich_editing','true'),(2972,242,'comment_shortcuts','false'),(7025,578,'default_password_nag','1'),(7026,579,'first_name',''),(7027,579,'last_name',''),(7028,579,'nickname','LorieOgctusik'),(7029,579,'description',''),(2964,241,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2965,241,'wp_user_level','0'),(2966,241,'default_password_nag','1'),(3101,253,'nickname','DarleneRountree'),(3102,253,'description',''),(3103,253,'rich_editing','true'),(3104,253,'comment_shortcuts','false'),(3105,253,'admin_color','fresh'),(3106,253,'use_ssl','0'),(3107,253,'show_admin_bar_front','true'),(3108,253,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3109,253,'wp_user_level','0'),(3110,253,'default_password_nag','1'),(3063,250,'first_name',''),(3064,250,'last_name',''),(3065,250,'nickname','AnibalIacovelli'),(3066,250,'description',''),(3067,250,'rich_editing','true'),(3068,250,'comment_shortcuts','false'),(3069,250,'admin_color','fresh'),(3070,250,'use_ssl','0'),(3071,250,'show_admin_bar_front','true'),(3072,250,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3073,250,'wp_user_level','0'),(3074,250,'default_password_nag','1'),(3075,251,'first_name',''),(3076,251,'last_name',''),(3077,251,'nickname','ElvinMacalister'),(3078,251,'description',''),(3079,251,'rich_editing','true'),(3080,251,'comment_shortcuts','false'),(2883,235,'first_name',''),(2884,235,'last_name',''),(2885,235,'nickname','LaraDelgado'),(2886,235,'description',''),(2887,235,'rich_editing','true'),(2888,235,'comment_shortcuts','false'),(2889,235,'admin_color','fresh'),(2890,235,'use_ssl','0'),(2891,235,'show_admin_bar_front','true'),(2892,235,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2893,235,'wp_user_level','0'),(2894,235,'default_password_nag','1'),(2895,236,'first_name',''),(2896,236,'last_name',''),(2897,236,'nickname','Luann63Swlr'),(2898,236,'description',''),(2899,236,'rich_editing','true'),(2900,236,'comment_shortcuts','false'),(2901,236,'admin_color','fresh'),(2902,236,'use_ssl','0'),(2903,236,'show_admin_bar_front','true'),(2904,236,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2905,236,'wp_user_level','0'),(2906,236,'default_password_nag','1'),(2907,237,'first_name',''),(2908,237,'last_name',''),(2909,237,'nickname','CeceliaDollery'),(2910,237,'description',''),(2911,237,'rich_editing','true'),(2912,237,'comment_shortcuts','false'),(2913,237,'admin_color','fresh'),(2914,237,'use_ssl','0'),(2915,237,'show_admin_bar_front','true'),(2916,237,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2917,237,'wp_user_level','0'),(2918,237,'default_password_nag','1'),(2919,238,'first_name',''),(2920,238,'last_name',''),(2921,238,'nickname','CarissaWentwort'),(2922,238,'description',''),(2923,238,'rich_editing','true'),(2924,238,'comment_shortcuts','false'),(2925,238,'admin_color','fresh'),(2926,238,'use_ssl','0'),(2927,238,'show_admin_bar_front','true'),(2928,238,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2929,238,'wp_user_level','0'),(2930,238,'default_password_nag','1'),(3590,293,'use_ssl','0'),(3591,293,'show_admin_bar_front','true'),(3183,260,'first_name',''),(3184,260,'last_name',''),(3185,260,'nickname','AntoinetteSting'),(3186,260,'description',''),(3187,260,'rich_editing','true'),(3188,260,'comment_shortcuts','false'),(3123,255,'first_name',''),(3124,255,'last_name',''),(3125,255,'nickname','Vladyslavafwi'),(3091,252,'rich_editing','true'),(3092,252,'comment_shortcuts','false'),(3093,252,'admin_color','fresh'),(3094,252,'use_ssl','0'),(3095,252,'show_admin_bar_front','true'),(3096,252,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3097,252,'wp_user_level','0'),(3098,252,'default_password_nag','1'),(3099,253,'first_name',''),(3100,253,'last_name',''),(2979,243,'first_name',''),(2980,243,'last_name',''),(2981,243,'nickname','WesleyBenavides'),(2982,243,'description',''),(2983,243,'rich_editing','true'),(2984,243,'comment_shortcuts','false'),(2985,243,'admin_color','fresh'),(2986,243,'use_ssl','0'),(2987,243,'show_admin_bar_front','true'),(2988,243,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(2989,243,'wp_user_level','0'),(2990,243,'default_password_nag','1'),(7014,578,'first_name',''),(7015,578,'last_name',''),(7016,578,'nickname','ErikaVJWId'),(7017,578,'description',''),(7018,578,'rich_editing','true'),(7019,578,'comment_shortcuts','false'),(7020,578,'admin_color','fresh'),(7021,578,'use_ssl','0'),(7022,578,'show_admin_bar_front','true'),(7023,578,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7024,578,'wp_user_level','0'),(6899,568,'comment_shortcuts','false'),(6900,568,'admin_color','fresh'),(6901,568,'use_ssl','0'),(6902,568,'show_admin_bar_front','true'),(6903,568,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6904,568,'wp_user_level','0'),(6905,568,'default_password_nag','1'),(6906,569,'first_name',''),(6907,569,'last_name',''),(6908,569,'nickname','AmyMontanez'),(6909,569,'description',''),(6910,569,'rich_editing','true'),(6911,569,'comment_shortcuts','false'),(6912,569,'admin_color','fresh'),(3087,252,'first_name',''),(3088,252,'last_name',''),(3089,252,'nickname','GerardoSchubert'),(3090,252,'description',''),(2991,244,'first_name',''),(2992,244,'last_name',''),(2993,244,'nickname','SaulLammzqngtyg'),(2994,244,'description',''),(2995,244,'rich_editing','true'),(2996,244,'comment_shortcuts','false'),(2997,244,'admin_color','fresh'),(2998,244,'use_ssl','0'),(2999,244,'show_admin_bar_front','true'),(3000,244,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3001,244,'wp_user_level','0'),(3002,244,'default_password_nag','1'),(3003,245,'first_name',''),(3004,245,'last_name',''),(3005,245,'nickname','easavurnd'),(3006,245,'description',''),(3007,245,'rich_editing','true'),(3008,245,'comment_shortcuts','false'),(3009,245,'admin_color','fresh'),(3010,245,'use_ssl','0'),(3011,245,'show_admin_bar_front','true'),(3012,245,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3013,245,'wp_user_level','0'),(3014,245,'default_password_nag','1'),(3015,246,'first_name',''),(3016,246,'last_name',''),(3017,246,'nickname','GeorgianaHartwi'),(3018,246,'description',''),(3019,246,'rich_editing','true'),(3020,246,'comment_shortcuts','false'),(3021,246,'admin_color','fresh'),(3022,246,'use_ssl','0'),(3023,246,'show_admin_bar_front','true'),(3024,246,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3025,246,'wp_user_level','0'),(3026,246,'default_password_nag','1'),(3027,247,'first_name',''),(3028,247,'last_name',''),(3029,247,'nickname','CristinaHallstr'),(3030,247,'description',''),(3031,247,'rich_editing','true'),(3032,247,'comment_shortcuts','false'),(3033,247,'admin_color','fresh'),(3034,247,'use_ssl','0'),(3035,247,'show_admin_bar_front','true'),(3036,247,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3037,247,'wp_user_level','0'),(3038,247,'default_password_nag','1'),(3039,248,'first_name',''),(3040,248,'last_name',''),(3041,248,'nickname','RandolphWarburt'),(3042,248,'description',''),(3043,248,'rich_editing','true'),(3044,248,'comment_shortcuts','false'),(3045,248,'admin_color','fresh'),(3046,248,'use_ssl','0'),(3047,248,'show_admin_bar_front','true'),(3048,248,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3049,248,'wp_user_level','0'),(3050,248,'default_password_nag','1'),(3126,255,'description',''),(3127,255,'rich_editing','true'),(3128,255,'comment_shortcuts','false'),(3129,255,'admin_color','fresh'),(7182,592,'first_name',''),(7183,592,'last_name',''),(7184,592,'nickname','BeatriceKeaton'),(7185,592,'description',''),(7186,592,'rich_editing','true'),(7187,592,'comment_shortcuts','false'),(7188,592,'admin_color','fresh'),(7189,592,'use_ssl','0'),(7190,592,'show_admin_bar_front','true'),(7191,592,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7192,592,'wp_user_level','0'),(7193,592,'default_password_nag','1'),(7194,593,'first_name',''),(7195,593,'last_name',''),(7196,593,'nickname','LiefP81thp'),(7197,593,'description',''),(7198,593,'rich_editing','true'),(7199,593,'comment_shortcuts','false'),(3111,254,'first_name',''),(3112,254,'last_name',''),(3113,254,'nickname','JulianSwett'),(3114,254,'description',''),(3115,254,'rich_editing','true'),(3116,254,'comment_shortcuts','false'),(3117,254,'admin_color','fresh'),(3118,254,'use_ssl','0'),(3119,254,'show_admin_bar_front','true'),(3120,254,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3121,254,'wp_user_level','0'),(3122,254,'default_password_nag','1'),(3150,257,'description',''),(3151,257,'rich_editing','true'),(3152,257,'comment_shortcuts','false'),(3153,257,'admin_color','fresh'),(3154,257,'use_ssl','0'),(3155,257,'show_admin_bar_front','true'),(3156,257,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3157,257,'wp_user_level','0'),(3158,257,'default_password_nag','1'),(3159,258,'first_name',''),(3160,258,'last_name',''),(3161,258,'nickname','AndyB00kmf'),(3162,258,'description',''),(3163,258,'rich_editing','true'),(3164,258,'comment_shortcuts','false'),(3165,258,'admin_color','fresh'),(3166,258,'use_ssl','0'),(3167,258,'show_admin_bar_front','true'),(3168,258,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3169,258,'wp_user_level','0'),(3170,258,'default_password_nag','1'),(3171,259,'first_name',''),(3172,259,'last_name',''),(3173,259,'nickname','MarissaNyb'),(3174,259,'description',''),(3175,259,'rich_editing','true'),(3176,259,'comment_shortcuts','false'),(3177,259,'admin_color','fresh'),(3178,259,'use_ssl','0'),(3179,259,'show_admin_bar_front','true'),(3180,259,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3181,259,'wp_user_level','0'),(3182,259,'default_password_nag','1'),(3189,260,'admin_color','fresh'),(3190,260,'use_ssl','0'),(3191,260,'show_admin_bar_front','true'),(3192,260,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3193,260,'wp_user_level','0'),(3194,260,'default_password_nag','1'),(3562,291,'description',''),(3563,291,'rich_editing','true'),(3523,288,'first_name',''),(3524,288,'last_name',''),(3525,288,'nickname','Minai3l3w'),(3526,288,'description',''),(3527,288,'rich_editing','true'),(3528,288,'comment_shortcuts','false'),(3529,288,'admin_color','fresh'),(3530,288,'use_ssl','0'),(3531,288,'show_admin_bar_front','true'),(3532,288,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3391,277,'first_name',''),(3392,277,'last_name',''),(3393,277,'nickname','VincentFWFO'),(3394,277,'description',''),(3395,277,'rich_editing','true'),(3396,277,'comment_shortcuts','false'),(3397,277,'admin_color','fresh'),(3398,277,'use_ssl','0'),(3399,277,'show_admin_bar_front','true'),(3400,277,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3401,277,'wp_user_level','0'),(3195,261,'first_name',''),(3196,261,'last_name',''),(3197,261,'nickname','cbzweglwe'),(3198,261,'description',''),(3199,261,'rich_editing','true'),(3200,261,'comment_shortcuts','false'),(3201,261,'admin_color','fresh'),(3202,261,'use_ssl','0'),(3203,261,'show_admin_bar_front','true'),(3204,261,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3205,261,'wp_user_level','0'),(3206,261,'default_password_nag','1'),(3207,262,'first_name',''),(3208,262,'last_name',''),(3209,262,'nickname','sfayomgki'),(3210,262,'description',''),(3211,262,'rich_editing','true'),(3212,262,'comment_shortcuts','false'),(3213,262,'admin_color','fresh'),(3214,262,'use_ssl','0'),(3215,262,'show_admin_bar_front','true'),(3216,262,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3217,262,'wp_user_level','0'),(3218,262,'default_password_nag','1'),(3219,263,'first_name',''),(3220,263,'last_name',''),(3221,263,'nickname','Dena09Swrdjf'),(3222,263,'description',''),(3223,263,'rich_editing','true'),(3224,263,'comment_shortcuts','false'),(3225,263,'admin_color','fresh'),(3226,263,'use_ssl','0'),(3227,263,'show_admin_bar_front','true'),(3228,263,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3229,263,'wp_user_level','0'),(3230,263,'default_password_nag','1'),(3231,264,'first_name',''),(3232,264,'last_name',''),(3233,264,'nickname','enemossemning'),(3234,264,'description',''),(3235,264,'rich_editing','true'),(3236,264,'comment_shortcuts','false'),(3237,264,'admin_color','fresh'),(3238,264,'use_ssl','0'),(3239,264,'show_admin_bar_front','true'),(3240,264,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3241,264,'wp_user_level','0'),(3242,264,'default_password_nag','1'),(3243,265,'first_name','carpinteyrobocYU'),(3244,265,'last_name','carpinteyrocowYU'),(3245,265,'nickname','carpinteyroxyr'),(3246,265,'description','http://www.smzbw.nl/ - Jassen Canada Goose;http://www.wapngo.nl/ - Woolrich;http://www.qweri.nl/ - Woolrich Jassen MannenGossip Girl star, Michelle Trachtenberg, was also in attendance and is shown here with Rebecca Minkoff herself.All images courtesy of the Rebecca Minkoff blog, Minkettebags. To view all of the images, please I am not one to get too excited for movies or television shows, but I\'m DYINGover the release of SATC2!!! Many of you can relate to the fact that, let\'s face it, Carrie, Samantha, Miranda and Charlotte are some of our very best friends! If you haven\'t seen the trailer, you simply must watch it this second, so that we can all celebrate together the return of the girls, the city, their men and all the adventures of love, fashion, friendship, cocktails and of course, ridiculously priced shoes! Be sure to enter Handbago\'s SATC2 Giveaway at! Also, be sure to keep your eye out for handbag appearances by some of our favorite handbag designers, Beirn Adriana Castro!The fun, the fashion, the friendship: Sex and the City 2 brings it all back and more as Carrie (Sarah Jessica Parker), Samantha (Kim Cattrall), Charlotte (Kristin Davis) and Miranda (Cynthia Nixon) take another bite out of The Big Apple and beyond carrying on with their busy lives and loves in a sequel that truly sparkles.\r\n http://www.sheremy.nl/ - Moncler Jassen Online Bestellen\"Baby steps,\" says Karani with a sigh. At least his boyfriend\'s parents don\'t ask him to marry a woman anymore.When D\'kloset owner Vhatwar,a Hindu,married his partner,a Muslim,eight years ago,they threw a four-day ceremony—not recognized by the state—officiated by a Hindu priest chanting mantras. Vhatwar\'s family did not attend. The couple is not together anymore.In Delhi,Jerry Johnson and Deepak Kashyap got engaged in March after three years together. Johnson\'s conservative Christian family refuses to accept the relationship. \"My mother keeps insisting that I should leave him and get married,that she\'s looking for a girl,\" he says. \"But I don\'t need her acceptance anymore.\"Marriage isn\'t the only fraught issue for India\'s homosexuals who wish to start a family of their own.\r\n http://www.marocplaza.nl/ - Moncler Online Shop\"? He claimed Labour\'s decision to oppose the government showed that they were not serious about welfare reform.I am particularly disappointed by the attitude of the Labour party who last week were talking about the need to take tough decisions on welfare, but when it actually comes to it in the House of Commons or the House of Lords they won\'t take those decisions. Photograph: Olivia Harris/Reuters 9.19am: Nick Clegg, the deputy prime minister, has been speaking today about the way he has got more than 100 firms to sign up to a code of good practice on making work experience opportunities freely available. You can read the Guardian story about it here, the Cabinet Office press notice here and details of how the \"business compact\" will actually work here.\r\n http://www.simsrs.nl/ - Canada Goose NederlandThey saw him as free to do so.Mel Brooks\'s 11 Favorite Movie Scenes: ‘Psycho\' to ‘Some Like It Hot\' Mel Brooks\'s favorite movie scenes,including from \"The Hangover,\" \"Swing Time,\" \"Some Like It Hot,\" and \"Psycho.\" (Michael Grecco/PBS (center))Swing Time: Fred Astaire\'s Big Dance SceneLet\'s start with one of my favorite movies. That\'s from 1936,starring Fred Astaire and Ginger Rogers. The scene that I really love has Eric Blore as a character running a dance studio,and he employs Rogers to teach people how to dance. Astaire gets mixed up with her and falls madly in love. We know it\'s Fred Astaire,the greatest dancer who ever lived. In order to stick with her,he acts helpless. He keeps flipping so he can hold her.\r\n http://www.qweri.nl/ - Woolrich JasLast week we shared how our Giving process has evolved with the business, making the shift from Shoe Drops wherein TOMS family and friends would help distribute shoes to children in need to Giving Trips, those unique experiences where TOMS employees and contests winners have the opportunity to visit the humanitarian organizations we call Giving Partners, to learn and help distribute shoes in the communities they serve.Larry and Aaron are two TOMS employees who\'e been around to watch the evolution unfold. In TOMS early days, these guys traveled with TOMS to Argentina on one of the last Shoe Drops. Last year they each embarked on Giving Trips with Giving Partner Save the Children in el Salvador.'),(3247,265,'rich_editing','true'),(3248,265,'comment_shortcuts','false'),(3249,265,'admin_color','fresh'),(3250,265,'use_ssl','0'),(3251,265,'show_admin_bar_front','true'),(3252,265,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3253,265,'wp_user_level','0'),(3254,265,'default_password_nag',''),(3255,266,'first_name',''),(3256,266,'last_name',''),(3257,266,'nickname','htehegzil'),(3258,266,'description',''),(3259,266,'rich_editing','true'),(3260,266,'comment_shortcuts','false'),(3261,266,'admin_color','fresh'),(3262,266,'use_ssl','0'),(3263,266,'show_admin_bar_front','true'),(3264,266,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3265,266,'wp_user_level','0'),(3266,266,'default_password_nag','1'),(3267,267,'first_name',''),(3268,267,'last_name',''),(3269,267,'nickname','ldivopvfm'),(3270,267,'description',''),(3271,267,'rich_editing','true'),(3272,267,'comment_shortcuts','false'),(3273,267,'admin_color','fresh'),(3274,267,'use_ssl','0'),(3275,267,'show_admin_bar_front','true'),(3276,267,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3277,267,'wp_user_level','0'),(3278,267,'default_password_nag','1'),(3279,268,'first_name',''),(3280,268,'last_name',''),(3281,268,'nickname','BlakeCarmichael'),(3282,268,'description',''),(3283,268,'rich_editing','true'),(3284,268,'comment_shortcuts','false'),(3285,268,'admin_color','fresh'),(3286,268,'use_ssl','0'),(3287,268,'show_admin_bar_front','true'),(3288,268,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3289,268,'wp_user_level','0'),(3290,268,'default_password_nag','1'),(3291,269,'first_name',''),(3292,269,'last_name',''),(3293,269,'nickname','GilbertPersse'),(3294,269,'description',''),(3295,269,'rich_editing','true'),(3296,269,'comment_shortcuts','false'),(3297,269,'admin_color','fresh'),(3298,269,'use_ssl','0'),(3299,269,'show_admin_bar_front','true'),(3300,269,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3301,269,'wp_user_level','0'),(3302,269,'default_password_nag','1'),(3303,270,'first_name',''),(3304,270,'last_name',''),(3305,270,'nickname','HauhFavaCar'),(3306,270,'description',''),(3307,270,'rich_editing','true'),(3308,270,'comment_shortcuts','false'),(3309,270,'admin_color','fresh'),(3310,270,'use_ssl','0'),(3311,270,'show_admin_bar_front','true'),(3312,270,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3313,270,'wp_user_level','0'),(3314,270,'default_password_nag','1'),(3315,271,'first_name',''),(3316,271,'last_name',''),(3317,271,'nickname','Stasiafof'),(3318,271,'description',''),(3319,271,'rich_editing','true'),(3320,271,'comment_shortcuts','false'),(3321,271,'admin_color','fresh'),(3322,271,'use_ssl','0'),(3323,271,'show_admin_bar_front','true'),(3324,271,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3325,271,'wp_user_level','0'),(3326,271,'default_password_nag','1'),(3327,272,'first_name',''),(3328,272,'last_name',''),(3329,272,'nickname','easjbdbkb'),(3330,272,'description',''),(3331,272,'rich_editing','true'),(3332,272,'comment_shortcuts','false'),(3333,272,'admin_color','fresh'),(3334,272,'use_ssl','0'),(3335,272,'show_admin_bar_front','true'),(3336,272,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3337,272,'wp_user_level','0'),(3338,272,'default_password_nag','1'),(3339,273,'first_name',''),(3340,273,'last_name',''),(3341,273,'nickname','easiiadzc'),(3342,273,'description',''),(3343,273,'rich_editing','true'),(3344,273,'comment_shortcuts','false'),(3345,273,'admin_color','fresh'),(3346,273,'use_ssl','0'),(3347,273,'show_admin_bar_front','true'),(3348,273,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3349,273,'wp_user_level','0'),(3350,273,'default_password_nag','1'),(3351,274,'first_name',''),(3352,274,'last_name',''),(3353,274,'nickname','Ementypem'),(3354,274,'description',''),(3355,274,'rich_editing','true'),(3356,274,'comment_shortcuts','false'),(3357,274,'admin_color','fresh'),(3358,274,'use_ssl','0'),(3359,274,'show_admin_bar_front','true'),(3360,274,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3361,274,'wp_user_level','0'),(3362,274,'default_password_nag','1'),(3363,275,'first_name',''),(3364,275,'last_name',''),(3365,275,'nickname','Grant6289hyywad'),(3366,275,'description',''),(3367,275,'rich_editing','true'),(3368,275,'comment_shortcuts','false'),(3369,275,'admin_color','fresh'),(3370,275,'use_ssl','0'),(3371,275,'show_admin_bar_front','true'),(3372,275,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3373,275,'wp_user_level','0'),(3374,275,'default_password_nag','1'),(3375,276,'first_name',''),(3376,276,'last_name',''),(3377,276,'nickname','SangHeiman'),(3378,276,'description',''),(3379,276,'rich_editing','true'),(3380,276,'comment_shortcuts','false'),(3381,276,'admin_color','fresh'),(3382,276,'use_ssl','0'),(3383,276,'show_admin_bar_front','true'),(3384,276,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3385,276,'wp_user_level','0'),(3386,276,'default_password_nag','1'),(3387,265,'aim',''),(3388,265,'yim',''),(3389,265,'jabber',''),(3390,265,'gauthor','carpinteyroxyr'),(3403,278,'first_name',''),(3402,277,'default_password_nag','1'),(3404,278,'last_name',''),(3405,278,'nickname','handsfree traffic'),(3406,278,'description',''),(3407,278,'rich_editing','true'),(3408,278,'comment_shortcuts','false'),(3409,278,'admin_color','fresh'),(3410,278,'use_ssl','0'),(3411,278,'show_admin_bar_front','true'),(3412,278,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3413,278,'wp_user_level','0'),(3414,278,'default_password_nag','1'),(3415,279,'first_name',''),(3416,279,'last_name',''),(3417,279,'nickname','Sabine29Eryog'),(3418,279,'description',''),(3419,279,'rich_editing','true'),(3420,279,'comment_shortcuts','false'),(3421,279,'admin_color','fresh'),(3422,279,'use_ssl','0'),(3423,279,'show_admin_bar_front','true'),(3424,279,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3425,279,'wp_user_level','0'),(3426,279,'default_password_nag','1'),(3427,280,'first_name',''),(3428,280,'last_name',''),(3429,280,'nickname','CeceliaCry'),(3430,280,'description',''),(3431,280,'rich_editing','true'),(3432,280,'comment_shortcuts','false'),(3433,280,'admin_color','fresh'),(3434,280,'use_ssl','0'),(3435,280,'show_admin_bar_front','true'),(3436,280,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3437,280,'wp_user_level','0'),(3438,280,'default_password_nag','1'),(3439,281,'first_name',''),(3440,281,'last_name',''),(3441,281,'nickname','zltlingx'),(3442,281,'description',''),(3443,281,'rich_editing','true'),(3444,281,'comment_shortcuts','false'),(3445,281,'admin_color','fresh'),(3446,281,'use_ssl','0'),(3447,281,'show_admin_bar_front','true'),(3448,281,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3449,281,'wp_user_level','0'),(3450,281,'default_password_nag','1'),(3451,282,'first_name',''),(3452,282,'last_name',''),(3453,282,'nickname','lclwbkfh'),(3454,282,'description',''),(3455,282,'rich_editing','true'),(3456,282,'comment_shortcuts','false'),(3457,282,'admin_color','fresh'),(3458,282,'use_ssl','0'),(3459,282,'show_admin_bar_front','true'),(3460,282,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3461,282,'wp_user_level','0'),(3462,282,'default_password_nag','1'),(3564,291,'comment_shortcuts','false'),(3565,291,'admin_color','fresh'),(3566,291,'use_ssl','0'),(3567,291,'show_admin_bar_front','true'),(3568,291,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3463,283,'first_name',''),(3464,283,'last_name',''),(3465,283,'nickname','jksahdipqy'),(3466,283,'description',''),(3467,283,'rich_editing','true'),(3468,283,'comment_shortcuts','false'),(3469,283,'admin_color','fresh'),(3470,283,'use_ssl','0'),(3471,283,'show_admin_bar_front','true'),(3472,283,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3473,283,'wp_user_level','0'),(3474,283,'default_password_nag','1'),(3475,284,'first_name',''),(3476,284,'last_name',''),(3477,284,'nickname','dsjkjdkns'),(3478,284,'description',''),(3479,284,'rich_editing','true'),(3480,284,'comment_shortcuts','false'),(3481,284,'admin_color','fresh'),(3482,284,'use_ssl','0'),(3483,284,'show_admin_bar_front','true'),(3484,284,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3485,284,'wp_user_level','0'),(3486,284,'default_password_nag','1'),(3487,285,'first_name',''),(3488,285,'last_name',''),(3489,285,'nickname','dwajkrkq'),(3490,285,'description',''),(3491,285,'rich_editing','true'),(3492,285,'comment_shortcuts','false'),(3493,285,'admin_color','fresh'),(3494,285,'use_ssl','0'),(3495,285,'show_admin_bar_front','true'),(3496,285,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3497,285,'wp_user_level','0'),(3498,285,'default_password_nag','1'),(3499,286,'first_name',''),(3500,286,'last_name',''),(3501,286,'nickname','UlrikePercy'),(3502,286,'description',''),(3503,286,'rich_editing','true'),(3504,286,'comment_shortcuts','false'),(3505,286,'admin_color','fresh'),(3506,286,'use_ssl','0'),(3507,286,'show_admin_bar_front','true'),(3508,286,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3509,286,'wp_user_level','0'),(3510,286,'default_password_nag','1'),(3511,287,'first_name',''),(3512,287,'last_name',''),(3513,287,'nickname','JudiWrixon'),(3514,287,'description',''),(3515,287,'rich_editing','true'),(3516,287,'comment_shortcuts','false'),(3517,287,'admin_color','fresh'),(3518,287,'use_ssl','0'),(3519,287,'show_admin_bar_front','true'),(3520,287,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3521,287,'wp_user_level','0'),(3522,287,'default_password_nag','1'),(3583,293,'first_name',''),(3584,293,'last_name',''),(3585,293,'nickname','HermanObryan'),(3586,293,'description',''),(3587,293,'rich_editing','true'),(3588,293,'comment_shortcuts','false'),(3589,293,'admin_color','fresh'),(3569,291,'wp_user_level','0'),(3570,291,'default_password_nag','1'),(3571,292,'first_name',''),(3572,292,'last_name',''),(3573,292,'nickname','sotelooi'),(3574,292,'description',''),(3575,292,'rich_editing','true'),(3576,292,'comment_shortcuts','false'),(3577,292,'admin_color','fresh'),(3533,288,'wp_user_level','0'),(3534,288,'default_password_nag','1'),(3535,289,'first_name',''),(3536,289,'last_name',''),(3537,289,'nickname','BrigidaTidwell'),(3538,289,'description',''),(3539,289,'rich_editing','true'),(3540,289,'comment_shortcuts','false'),(3541,289,'admin_color','fresh'),(3542,289,'use_ssl','0'),(3543,289,'show_admin_bar_front','true'),(3544,289,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3545,289,'wp_user_level','0'),(3546,289,'default_password_nag','1'),(3547,290,'first_name',''),(3548,290,'last_name',''),(3549,290,'nickname','BufordO47jd'),(3550,290,'description',''),(3551,290,'rich_editing','true'),(3552,290,'comment_shortcuts','false'),(3553,290,'admin_color','fresh'),(3554,290,'use_ssl','0'),(3555,290,'show_admin_bar_front','true'),(3556,290,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3557,290,'wp_user_level','0'),(3558,290,'default_password_nag','1'),(3559,291,'first_name',''),(3560,291,'last_name',''),(3561,291,'nickname','AntjeJ39hfp'),(3578,292,'use_ssl','0'),(3579,292,'show_admin_bar_front','true'),(3580,292,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3581,292,'wp_user_level','0'),(3582,292,'default_password_nag','1'),(3592,293,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3593,293,'wp_user_level','0'),(3594,293,'default_password_nag','1'),(3595,294,'first_name',''),(3596,294,'last_name',''),(3597,294,'nickname','JoeArsenault'),(3598,294,'description',''),(3599,294,'rich_editing','true'),(3600,294,'comment_shortcuts','false'),(3601,294,'admin_color','fresh'),(3602,294,'use_ssl','0'),(3603,294,'show_admin_bar_front','true'),(3604,294,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3605,294,'wp_user_level','0'),(3606,294,'default_password_nag','1'),(3611,295,'rich_editing','true'),(3612,295,'comment_shortcuts','false'),(3613,295,'admin_color','fresh'),(3614,295,'use_ssl','0'),(3615,295,'show_admin_bar_front','true'),(3616,295,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3617,295,'wp_user_level','0'),(3618,295,'default_password_nag','1'),(3979,326,'first_name',''),(3980,326,'last_name',''),(3981,326,'nickname','AprilYeager'),(3982,326,'description',''),(3983,326,'rich_editing','true'),(3984,326,'comment_shortcuts','false'),(3985,326,'admin_color','fresh'),(3986,326,'use_ssl','0'),(3903,319,'show_admin_bar_front','true'),(3819,312,'show_admin_bar_front','true'),(3820,312,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3821,312,'wp_user_level','0'),(3631,297,'first_name',''),(3632,297,'last_name',''),(3633,297,'nickname','pdjhmpsir'),(3634,297,'description',''),(3635,297,'rich_editing','true'),(3636,297,'comment_shortcuts','false'),(3637,297,'admin_color','fresh'),(3638,297,'use_ssl','0'),(3639,297,'show_admin_bar_front','true'),(3640,297,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3641,297,'wp_user_level','0'),(3642,297,'default_password_nag','1'),(3643,298,'first_name',''),(3644,298,'last_name',''),(3645,298,'nickname','easspyclz'),(3646,298,'description',''),(3647,298,'rich_editing','true'),(3648,298,'comment_shortcuts','false'),(3649,298,'admin_color','fresh'),(3650,298,'use_ssl','0'),(3651,298,'show_admin_bar_front','true'),(3652,298,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3619,296,'first_name',''),(3620,296,'last_name',''),(3621,296,'nickname','DaniellaLoughli'),(3622,296,'description',''),(3623,296,'rich_editing','true'),(3624,296,'comment_shortcuts','false'),(3625,296,'admin_color','fresh'),(3626,296,'use_ssl','0'),(3627,296,'show_admin_bar_front','true'),(3628,296,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3629,296,'wp_user_level','0'),(3630,296,'default_password_nag','1'),(3653,298,'wp_user_level','0'),(3654,298,'default_password_nag','1'),(3655,299,'first_name',''),(3656,299,'last_name',''),(3657,299,'nickname','LashayRobin'),(3658,299,'description',''),(3659,299,'rich_editing','true'),(3660,299,'comment_shortcuts','false'),(3661,299,'admin_color','fresh'),(3662,299,'use_ssl','0'),(3663,299,'show_admin_bar_front','true'),(3664,299,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3665,299,'wp_user_level','0'),(3666,299,'default_password_nag','1'),(3811,312,'first_name',''),(3812,312,'last_name',''),(3813,312,'nickname','WillGraber'),(3814,312,'description',''),(3815,312,'rich_editing','true'),(3775,309,'first_name',''),(3776,309,'last_name',''),(3691,302,'first_name',''),(3692,302,'last_name',''),(3667,300,'first_name',''),(3668,300,'last_name',''),(3669,300,'nickname','Damion21Wi'),(3670,300,'description',''),(3671,300,'rich_editing','true'),(3672,300,'comment_shortcuts','false'),(3673,300,'admin_color','fresh'),(3674,300,'use_ssl','0'),(3675,300,'show_admin_bar_front','true'),(3676,300,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3677,300,'wp_user_level','0'),(3678,300,'default_password_nag','1'),(3679,301,'first_name',''),(3680,301,'last_name',''),(3681,301,'nickname','CarmineX45'),(3682,301,'description',''),(3683,301,'rich_editing','true'),(3684,301,'comment_shortcuts','false'),(3685,301,'admin_color','fresh'),(3686,301,'use_ssl','0'),(3687,301,'show_admin_bar_front','true'),(3688,301,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3689,301,'wp_user_level','0'),(3690,301,'default_password_nag','1'),(3693,302,'nickname','CaraBadilla'),(3694,302,'description',''),(3695,302,'rich_editing','true'),(3696,302,'comment_shortcuts','false'),(3697,302,'admin_color','fresh'),(3698,302,'use_ssl','0'),(3699,302,'show_admin_bar_front','true'),(3700,302,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3701,302,'wp_user_level','0'),(3702,302,'default_password_nag','1'),(3703,303,'first_name',''),(3704,303,'last_name',''),(3705,303,'nickname','FrancisFoulds'),(3706,303,'description',''),(3707,303,'rich_editing','true'),(3708,303,'comment_shortcuts','false'),(3709,303,'admin_color','fresh'),(3710,303,'use_ssl','0'),(3711,303,'show_admin_bar_front','true'),(3712,303,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3713,303,'wp_user_level','0'),(3714,303,'default_password_nag','1'),(3715,304,'first_name',''),(3716,304,'last_name',''),(3717,304,'nickname','RoseannaO07'),(3718,304,'description',''),(3719,304,'rich_editing','true'),(3720,304,'comment_shortcuts','false'),(3721,304,'admin_color','fresh'),(3722,304,'use_ssl','0'),(3723,304,'show_admin_bar_front','true'),(3724,304,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3725,304,'wp_user_level','0'),(3726,304,'default_password_nag','1'),(3727,305,'first_name',''),(3728,305,'last_name',''),(3729,305,'nickname','QuinnDagostino'),(3730,305,'description',''),(3731,305,'rich_editing','true'),(3732,305,'comment_shortcuts','false'),(3733,305,'admin_color','fresh'),(3734,305,'use_ssl','0'),(3735,305,'show_admin_bar_front','true'),(3736,305,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3737,305,'wp_user_level','0'),(3738,305,'default_password_nag','1'),(3739,306,'first_name',''),(3740,306,'last_name',''),(3741,306,'nickname','XiomaraB85'),(3742,306,'description',''),(3743,306,'rich_editing','true'),(3744,306,'comment_shortcuts','false'),(3745,306,'admin_color','fresh'),(3746,306,'use_ssl','0'),(3747,306,'show_admin_bar_front','true'),(3748,306,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3749,306,'wp_user_level','0'),(3750,306,'default_password_nag','1'),(3763,308,'first_name',''),(3764,308,'last_name',''),(3765,308,'nickname','AngelBrownell'),(3766,308,'description',''),(3767,308,'rich_editing','true'),(3768,308,'comment_shortcuts','false'),(3769,308,'admin_color','fresh'),(3770,308,'use_ssl','0'),(3771,308,'show_admin_bar_front','true'),(3772,308,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3773,308,'wp_user_level','0'),(3774,308,'default_password_nag','1'),(3816,312,'comment_shortcuts','false'),(3817,312,'admin_color','fresh'),(3818,312,'use_ssl','0'),(3751,307,'first_name',''),(3752,307,'last_name',''),(3753,307,'nickname','TysonCastleberr'),(3754,307,'description',''),(3755,307,'rich_editing','true'),(3756,307,'comment_shortcuts','false'),(3757,307,'admin_color','fresh'),(3758,307,'use_ssl','0'),(3759,307,'show_admin_bar_front','true'),(3760,307,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3761,307,'wp_user_level','0'),(3762,307,'default_password_nag','1'),(3777,309,'nickname','HenryCasper'),(3778,309,'description',''),(3779,309,'rich_editing','true'),(3780,309,'comment_shortcuts','false'),(3781,309,'admin_color','fresh'),(3782,309,'use_ssl','0'),(3783,309,'show_admin_bar_front','true'),(3784,309,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3785,309,'wp_user_level','0'),(3786,309,'default_password_nag','1'),(3822,312,'default_password_nag','1'),(3823,313,'first_name',''),(3824,313,'last_name',''),(3825,313,'nickname','RoyalXzmrgeiebc'),(3826,313,'description',''),(3827,313,'rich_editing','true'),(3828,313,'comment_shortcuts','false'),(3829,313,'admin_color','fresh'),(3830,313,'use_ssl','0'),(3831,313,'show_admin_bar_front','true'),(3832,313,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3833,313,'wp_user_level','0'),(3834,313,'default_password_nag','1'),(3850,315,'description',''),(3851,315,'rich_editing','true'),(3852,315,'comment_shortcuts','false'),(3853,315,'admin_color','fresh'),(3854,315,'use_ssl','0'),(3855,315,'show_admin_bar_front','true'),(3856,315,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3857,315,'wp_user_level','0'),(3787,310,'first_name',''),(3788,310,'last_name',''),(3789,310,'nickname','CollinGibney'),(3790,310,'description',''),(3791,310,'rich_editing','true'),(3792,310,'comment_shortcuts','false'),(3793,310,'admin_color','fresh'),(3794,310,'use_ssl','0'),(3795,310,'show_admin_bar_front','true'),(3796,310,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3797,310,'wp_user_level','0'),(3798,310,'default_password_nag','1'),(3799,311,'first_name',''),(3800,311,'last_name',''),(3801,311,'nickname','Harriet27V'),(3802,311,'description',''),(3803,311,'rich_editing','true'),(3804,311,'comment_shortcuts','false'),(3805,311,'admin_color','fresh'),(3806,311,'use_ssl','0'),(3807,311,'show_admin_bar_front','true'),(3808,311,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3809,311,'wp_user_level','0'),(3810,311,'default_password_nag','1'),(3835,314,'first_name',''),(3836,314,'last_name',''),(3837,314,'nickname','AimeeGentry'),(3838,314,'description',''),(3839,314,'rich_editing','true'),(3840,314,'comment_shortcuts','false'),(3841,314,'admin_color','fresh'),(3842,314,'use_ssl','0'),(3843,314,'show_admin_bar_front','true'),(3844,314,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3845,314,'wp_user_level','0'),(3846,314,'default_password_nag','1'),(3883,318,'first_name',''),(3884,318,'last_name',''),(3847,315,'first_name',''),(3848,315,'last_name',''),(3849,315,'nickname','eastnojnd'),(3895,319,'first_name',''),(3896,319,'last_name',''),(3897,319,'nickname','Benjamin36V'),(3898,319,'description',''),(3899,319,'rich_editing','true'),(3900,319,'comment_shortcuts','false'),(3901,319,'admin_color','fresh'),(3902,319,'use_ssl','0'),(3885,318,'nickname','ValenciaCockrel'),(3886,318,'description',''),(3887,318,'rich_editing','true'),(3888,318,'comment_shortcuts','false'),(3858,315,'default_password_nag','1'),(3859,316,'first_name',''),(3860,316,'last_name',''),(3861,316,'nickname','AngelitaGrayndl'),(3862,316,'description',''),(3863,316,'rich_editing','true'),(3864,316,'comment_shortcuts','false'),(3865,316,'admin_color','fresh'),(3866,316,'use_ssl','0'),(3867,316,'show_admin_bar_front','true'),(3868,316,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3869,316,'wp_user_level','0'),(3870,316,'default_password_nag','1'),(3871,317,'first_name',''),(3872,317,'last_name',''),(3873,317,'nickname','eyrdwwnau'),(3874,317,'description',''),(3875,317,'rich_editing','true'),(3876,317,'comment_shortcuts','false'),(3877,317,'admin_color','fresh'),(3878,317,'use_ssl','0'),(3879,317,'show_admin_bar_front','true'),(3880,317,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3881,317,'wp_user_level','0'),(3882,317,'default_password_nag','1'),(3889,318,'admin_color','fresh'),(3890,318,'use_ssl','0'),(3891,318,'show_admin_bar_front','true'),(3892,318,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3893,318,'wp_user_level','0'),(3894,318,'default_password_nag','1'),(3904,319,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3905,319,'wp_user_level','0'),(3906,319,'default_password_nag','1'),(3919,321,'first_name',''),(3920,321,'last_name',''),(3921,321,'nickname','AGMPaulsizcxstn'),(3922,321,'description',''),(3923,321,'rich_editing','true'),(3924,321,'comment_shortcuts','false'),(3925,321,'admin_color','fresh'),(3907,320,'first_name',''),(3908,320,'last_name',''),(3909,320,'nickname','JamiBracyxw'),(3910,320,'description',''),(3911,320,'rich_editing','true'),(3912,320,'comment_shortcuts','false'),(3913,320,'admin_color','fresh'),(3914,320,'use_ssl','0'),(3915,320,'show_admin_bar_front','true'),(3916,320,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3917,320,'wp_user_level','0'),(3918,320,'default_password_nag','1'),(3926,321,'use_ssl','0'),(3927,321,'show_admin_bar_front','true'),(3928,321,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3929,321,'wp_user_level','0'),(3930,321,'default_password_nag','1'),(3931,322,'first_name',''),(3932,322,'last_name',''),(3933,322,'nickname','DoyleClare'),(3934,322,'description',''),(3935,322,'rich_editing','true'),(3936,322,'comment_shortcuts','false'),(3937,322,'admin_color','fresh'),(3938,322,'use_ssl','0'),(3939,322,'show_admin_bar_front','true'),(3940,322,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3941,322,'wp_user_level','0'),(3942,322,'default_password_nag','1'),(3943,323,'first_name',''),(3944,323,'last_name',''),(3945,323,'nickname','TammiParent'),(3946,323,'description',''),(3947,323,'rich_editing','true'),(3948,323,'comment_shortcuts','false'),(3949,323,'admin_color','fresh'),(3950,323,'use_ssl','0'),(3951,323,'show_admin_bar_front','true'),(3952,323,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3953,323,'wp_user_level','0'),(3954,323,'default_password_nag','1'),(3955,324,'first_name',''),(3956,324,'last_name',''),(3957,324,'nickname','Nestorrcj78'),(3958,324,'description',''),(3959,324,'rich_editing','true'),(3960,324,'comment_shortcuts','false'),(3961,324,'admin_color','fresh'),(3962,324,'use_ssl','0'),(3963,324,'show_admin_bar_front','true'),(3964,324,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3965,324,'wp_user_level','0'),(3966,324,'default_password_nag','1'),(3967,325,'first_name',''),(3968,325,'last_name',''),(3969,325,'nickname','EllisDunlea'),(3970,325,'description',''),(3971,325,'rich_editing','true'),(3972,325,'comment_shortcuts','false'),(3973,325,'admin_color','fresh'),(3974,325,'use_ssl','0'),(3975,325,'show_admin_bar_front','true'),(3976,325,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(3977,325,'wp_user_level','0'),(3978,325,'default_password_nag','1'),(3989,326,'wp_user_level','0'),(3990,326,'default_password_nag','1'),(5537,455,'use_ssl','0'),(5538,455,'show_admin_bar_front','true'),(5539,455,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5540,455,'wp_user_level','0'),(5541,455,'default_password_nag','1'),(5542,456,'first_name',''),(5543,456,'last_name',''),(5544,456,'nickname','OuidaHussain'),(5545,456,'description',''),(5546,456,'rich_editing','true'),(5547,456,'comment_shortcuts','false'),(5548,456,'admin_color','fresh'),(5549,456,'use_ssl','0'),(5550,456,'show_admin_bar_front','true'),(5551,456,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5552,456,'wp_user_level','0'),(4063,333,'first_name',''),(4064,333,'last_name',''),(4065,333,'nickname','CoralMGPcg'),(4066,333,'description',''),(4067,333,'rich_editing','true'),(4068,333,'comment_shortcuts','false'),(4069,333,'admin_color','fresh'),(4070,333,'use_ssl','0'),(4071,333,'show_admin_bar_front','true'),(3991,327,'first_name',''),(3992,327,'last_name',''),(3993,327,'nickname','ScotM73ygk'),(3994,327,'description',''),(3995,327,'rich_editing','true'),(3996,327,'comment_shortcuts','false'),(3997,327,'admin_color','fresh'),(3998,327,'use_ssl','0'),(3999,327,'show_admin_bar_front','true'),(4000,327,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4001,327,'wp_user_level','0'),(4002,327,'default_password_nag','1'),(4003,328,'first_name',''),(4004,328,'last_name',''),(4005,328,'nickname','GretaHuggins'),(4006,328,'description',''),(4007,328,'rich_editing','true'),(4008,328,'comment_shortcuts','false'),(4009,328,'admin_color','fresh'),(4010,328,'use_ssl','0'),(4011,328,'show_admin_bar_front','true'),(4012,328,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4013,328,'wp_user_level','0'),(4014,328,'default_password_nag','1'),(4015,329,'first_name',''),(4016,329,'last_name',''),(4017,329,'nickname','MariUnderhill'),(4018,329,'description',''),(4019,329,'rich_editing','true'),(4020,329,'comment_shortcuts','false'),(4021,329,'admin_color','fresh'),(4022,329,'use_ssl','0'),(4023,329,'show_admin_bar_front','true'),(4024,329,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4025,329,'wp_user_level','0'),(4026,329,'default_password_nag','1'),(4039,331,'first_name',''),(4040,331,'last_name',''),(4041,331,'nickname','EdmundMccollum'),(4042,331,'description',''),(4027,330,'first_name',''),(4028,330,'last_name',''),(4029,330,'nickname','JorgBertram'),(4030,330,'description',''),(4031,330,'rich_editing','true'),(4032,330,'comment_shortcuts','false'),(4033,330,'admin_color','fresh'),(4034,330,'use_ssl','0'),(4035,330,'show_admin_bar_front','true'),(4036,330,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4037,330,'wp_user_level','0'),(4038,330,'default_password_nag','1'),(4043,331,'rich_editing','true'),(4044,331,'comment_shortcuts','false'),(4045,331,'admin_color','fresh'),(4046,331,'use_ssl','0'),(4047,331,'show_admin_bar_front','true'),(4048,331,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4049,331,'wp_user_level','0'),(4050,331,'default_password_nag','1'),(4051,332,'first_name',''),(4052,332,'last_name',''),(4053,332,'nickname','AlbertaReasoner'),(4054,332,'description',''),(4055,332,'rich_editing','true'),(4056,332,'comment_shortcuts','false'),(4057,332,'admin_color','fresh'),(4058,332,'use_ssl','0'),(4059,332,'show_admin_bar_front','true'),(4060,332,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4061,332,'wp_user_level','0'),(4062,332,'default_password_nag','1'),(4072,333,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4073,333,'wp_user_level','0'),(4074,333,'default_password_nag','1'),(4075,334,'first_name',''),(4076,334,'last_name',''),(4077,334,'nickname','NidiaU81tt'),(4078,334,'description',''),(4079,334,'rich_editing','true'),(4080,334,'comment_shortcuts','false'),(4081,334,'admin_color','fresh'),(4082,334,'use_ssl','0'),(4083,334,'show_admin_bar_front','true'),(4084,334,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4085,334,'wp_user_level','0'),(4086,334,'default_password_nag','1'),(4087,335,'first_name',''),(4088,335,'last_name',''),(4089,335,'nickname','ShelliHalvorsen'),(4090,335,'description',''),(4091,335,'rich_editing','true'),(4092,335,'comment_shortcuts','false'),(4093,335,'admin_color','fresh'),(4094,335,'use_ssl','0'),(4095,335,'show_admin_bar_front','true'),(4096,335,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4097,335,'wp_user_level','0'),(4098,335,'default_password_nag','1'),(4099,336,'first_name',''),(4100,336,'last_name',''),(4101,336,'nickname','BridgetteNolett'),(4102,336,'description',''),(4103,336,'rich_editing','true'),(4104,336,'comment_shortcuts','false'),(4105,336,'admin_color','fresh'),(4106,336,'use_ssl','0'),(4107,336,'show_admin_bar_front','true'),(4108,336,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4109,336,'wp_user_level','0'),(4110,336,'default_password_nag','1'),(4111,337,'first_name',''),(4112,337,'last_name',''),(4113,337,'nickname','EvonneThtdcbe'),(4114,337,'description',''),(4115,337,'rich_editing','true'),(4116,337,'comment_shortcuts','false'),(4117,337,'admin_color','fresh'),(4118,337,'use_ssl','0'),(4119,337,'show_admin_bar_front','true'),(4120,337,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4121,337,'wp_user_level','0'),(4122,337,'default_password_nag','1'),(4123,338,'first_name',''),(4124,338,'last_name',''),(4125,338,'nickname','Carole9189'),(4126,338,'description',''),(4127,338,'rich_editing','true'),(4128,338,'comment_shortcuts','false'),(4129,338,'admin_color','fresh'),(4130,338,'use_ssl','0'),(4131,338,'show_admin_bar_front','true'),(4132,338,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4133,338,'wp_user_level','0'),(4134,338,'default_password_nag','1'),(4135,339,'first_name',''),(4136,339,'last_name',''),(4137,339,'nickname','CalebBeauvais'),(4138,339,'description',''),(4139,339,'rich_editing','true'),(4140,339,'comment_shortcuts','false'),(4141,339,'admin_color','fresh'),(4142,339,'use_ssl','0'),(4143,339,'show_admin_bar_front','true'),(4144,339,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4145,339,'wp_user_level','0'),(4146,339,'default_password_nag','1'),(4147,340,'first_name',''),(4148,340,'last_name',''),(4149,340,'nickname','DamianTellez'),(4150,340,'description',''),(4151,340,'rich_editing','true'),(4152,340,'comment_shortcuts','false'),(4153,340,'admin_color','fresh'),(4154,340,'use_ssl','0'),(4155,340,'show_admin_bar_front','true'),(4156,340,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4157,340,'wp_user_level','0'),(4158,340,'default_password_nag','1'),(4159,341,'first_name',''),(4160,341,'last_name',''),(4161,341,'nickname','Selina4849'),(4162,341,'description',''),(4163,341,'rich_editing','true'),(4164,341,'comment_shortcuts','false'),(4165,341,'admin_color','fresh'),(4166,341,'use_ssl','0'),(4167,341,'show_admin_bar_front','true'),(4168,341,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4169,341,'wp_user_level','0'),(4170,341,'default_password_nag','1'),(4171,342,'first_name',''),(4172,342,'last_name',''),(4173,342,'nickname','QADKatherin'),(4174,342,'description',''),(4175,342,'rich_editing','true'),(4176,342,'comment_shortcuts','false'),(4177,342,'admin_color','fresh'),(4178,342,'use_ssl','0'),(4179,342,'show_admin_bar_front','true'),(4180,342,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4181,342,'wp_user_level','0'),(4182,342,'default_password_nag','1'),(4183,343,'first_name',''),(4184,343,'last_name',''),(4185,343,'nickname','FZCJacquelyn'),(4186,343,'description',''),(4187,343,'rich_editing','true'),(4188,343,'comment_shortcuts','false'),(4189,343,'admin_color','fresh'),(4190,343,'use_ssl','0'),(4191,343,'show_admin_bar_front','true'),(4192,343,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4193,343,'wp_user_level','0'),(4194,343,'default_password_nag','1'),(4195,344,'first_name',''),(4196,344,'last_name',''),(4197,344,'nickname','ForestY72akwwxf'),(4198,344,'description',''),(4199,344,'rich_editing','true'),(4200,344,'comment_shortcuts','false'),(4201,344,'admin_color','fresh'),(4202,344,'use_ssl','0'),(4203,344,'show_admin_bar_front','true'),(4204,344,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4205,344,'wp_user_level','0'),(4206,344,'default_password_nag','1'),(4207,345,'first_name',''),(4208,345,'last_name',''),(4209,345,'nickname','Marissa05H'),(4210,345,'description',''),(4211,345,'rich_editing','true'),(4212,345,'comment_shortcuts','false'),(4213,345,'admin_color','fresh'),(4214,345,'use_ssl','0'),(4215,345,'show_admin_bar_front','true'),(4216,345,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4217,345,'wp_user_level','0'),(4218,345,'default_password_nag','1'),(4219,346,'first_name',''),(4220,346,'last_name',''),(4221,346,'nickname','Tammara51G'),(4222,346,'description',''),(4223,346,'rich_editing','true'),(4224,346,'comment_shortcuts','false'),(4225,346,'admin_color','fresh'),(4226,346,'use_ssl','0'),(4227,346,'show_admin_bar_front','true'),(4228,346,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4229,346,'wp_user_level','0'),(4230,346,'default_password_nag','1'),(4231,347,'first_name',''),(4232,347,'last_name',''),(4233,347,'nickname','VIDGeorgiana'),(4234,347,'description',''),(4235,347,'rich_editing','true'),(4236,347,'comment_shortcuts','false'),(4237,347,'admin_color','fresh'),(4238,347,'use_ssl','0'),(4239,347,'show_admin_bar_front','true'),(4240,347,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4241,347,'wp_user_level','0'),(4242,347,'default_password_nag','1'),(4243,348,'first_name',''),(4244,348,'last_name',''),(4245,348,'nickname','ErickRaygiim'),(4246,348,'description',''),(4247,348,'rich_editing','true'),(4248,348,'comment_shortcuts','false'),(4249,348,'admin_color','fresh'),(4250,348,'use_ssl','0'),(4251,348,'show_admin_bar_front','true'),(4252,348,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4253,348,'wp_user_level','0'),(4254,348,'default_password_nag','1'),(4255,349,'first_name',''),(4256,349,'last_name',''),(4257,349,'nickname','KellyeRios'),(4258,349,'description',''),(4259,349,'rich_editing','true'),(4260,349,'comment_shortcuts','false'),(4261,349,'admin_color','fresh'),(4262,349,'use_ssl','0'),(4263,349,'show_admin_bar_front','true'),(4264,349,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4265,349,'wp_user_level','0'),(4266,349,'default_password_nag','1'),(4267,350,'first_name',''),(4268,350,'last_name',''),(4269,350,'nickname','AngeliaCremor'),(4270,350,'description',''),(4271,350,'rich_editing','true'),(4272,350,'comment_shortcuts','false'),(4273,350,'admin_color','fresh'),(4274,350,'use_ssl','0'),(4275,350,'show_admin_bar_front','true'),(4276,350,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4277,350,'wp_user_level','0'),(4278,350,'default_password_nag','1'),(4279,351,'first_name',''),(4280,351,'last_name',''),(4281,351,'nickname','Josefina81P'),(4282,351,'description',''),(4283,351,'rich_editing','true'),(4284,351,'comment_shortcuts','false'),(4285,351,'admin_color','fresh'),(4286,351,'use_ssl','0'),(4287,351,'show_admin_bar_front','true'),(4288,351,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4289,351,'wp_user_level','0'),(4290,351,'default_password_nag','1'),(4291,352,'first_name',''),(4292,352,'last_name',''),(4293,352,'nickname','DevonNJEOxcnu'),(4294,352,'description',''),(4295,352,'rich_editing','true'),(4296,352,'comment_shortcuts','false'),(4297,352,'admin_color','fresh'),(4298,352,'use_ssl','0'),(4299,352,'show_admin_bar_front','true'),(4300,352,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4301,352,'wp_user_level','0'),(4302,352,'default_password_nag','1'),(4303,353,'first_name',''),(4304,353,'last_name',''),(4305,353,'nickname','GrazynaCuster'),(4306,353,'description',''),(4307,353,'rich_editing','true'),(4308,353,'comment_shortcuts','false'),(4309,353,'admin_color','fresh'),(4310,353,'use_ssl','0'),(4311,353,'show_admin_bar_front','true'),(4312,353,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4313,353,'wp_user_level','0'),(4314,353,'default_password_nag','1'),(4315,354,'first_name',''),(4316,354,'last_name',''),(4317,354,'nickname','HeathSuffolk'),(4318,354,'description',''),(4319,354,'rich_editing','true'),(4320,354,'comment_shortcuts','false'),(4321,354,'admin_color','fresh'),(4322,354,'use_ssl','0'),(4323,354,'show_admin_bar_front','true'),(4324,354,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4325,354,'wp_user_level','0'),(4326,354,'default_password_nag','1'),(4327,355,'first_name',''),(4328,355,'last_name',''),(4329,355,'nickname','VanitaEJBD'),(4330,355,'description',''),(4331,355,'rich_editing','true'),(4332,355,'comment_shortcuts','false'),(4333,355,'admin_color','fresh'),(4334,355,'use_ssl','0'),(4335,355,'show_admin_bar_front','true'),(4336,355,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4337,355,'wp_user_level','0'),(4338,355,'default_password_nag','1'),(4339,356,'first_name',''),(4340,356,'last_name',''),(4341,356,'nickname','FerdinandLirian'),(4342,356,'description',''),(4343,356,'rich_editing','true'),(4344,356,'comment_shortcuts','false'),(4345,356,'admin_color','fresh'),(4346,356,'use_ssl','0'),(4347,356,'show_admin_bar_front','true'),(4348,356,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4349,356,'wp_user_level','0'),(4350,356,'default_password_nag','1'),(4351,357,'first_name',''),(4352,357,'last_name',''),(4353,357,'nickname','tapywuxwuna246'),(4354,357,'description',''),(4355,357,'rich_editing','true'),(4356,357,'comment_shortcuts','false'),(4357,357,'admin_color','fresh'),(4358,357,'use_ssl','0'),(4359,357,'show_admin_bar_front','true'),(4360,357,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4361,357,'wp_user_level','0'),(4362,357,'default_password_nag','1'),(4363,358,'first_name',''),(4364,358,'last_name',''),(4365,358,'nickname','FrankRPSntnjysy'),(4366,358,'description',''),(4367,358,'rich_editing','true'),(4368,358,'comment_shortcuts','false'),(4369,358,'admin_color','fresh'),(4370,358,'use_ssl','0'),(4371,358,'show_admin_bar_front','true'),(4372,358,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4373,358,'wp_user_level','0'),(4374,358,'default_password_nag','1'),(4375,359,'first_name',''),(4376,359,'last_name',''),(4377,359,'nickname','DianTasman'),(4378,359,'description',''),(4379,359,'rich_editing','true'),(4380,359,'comment_shortcuts','false'),(4381,359,'admin_color','fresh'),(4382,359,'use_ssl','0'),(4383,359,'show_admin_bar_front','true'),(4384,359,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4385,359,'wp_user_level','0'),(4386,359,'default_password_nag','1'),(4387,360,'first_name',''),(4388,360,'last_name',''),(4389,360,'nickname','Uliannavd6v'),(4390,360,'description',''),(4391,360,'rich_editing','true'),(4392,360,'comment_shortcuts','false'),(4393,360,'admin_color','fresh'),(4394,360,'use_ssl','0'),(4395,360,'show_admin_bar_front','true'),(4396,360,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4397,360,'wp_user_level','0'),(4398,360,'default_password_nag','1'),(4399,361,'first_name',''),(4400,361,'last_name',''),(4401,361,'nickname','GordonHnqdk'),(4402,361,'description',''),(4403,361,'rich_editing','true'),(4404,361,'comment_shortcuts','false'),(4405,361,'admin_color','fresh'),(4406,361,'use_ssl','0'),(4407,361,'show_admin_bar_front','true'),(4408,361,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4409,361,'wp_user_level','0'),(4410,361,'default_password_nag','1'),(4411,362,'first_name',''),(4412,362,'last_name',''),(4413,362,'nickname','CarissaCalliste'),(4414,362,'description',''),(4415,362,'rich_editing','true'),(4416,362,'comment_shortcuts','false'),(4417,362,'admin_color','fresh'),(4418,362,'use_ssl','0'),(4419,362,'show_admin_bar_front','true'),(4420,362,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4421,362,'wp_user_level','0'),(4422,362,'default_password_nag','1'),(4423,363,'first_name',''),(4424,363,'last_name',''),(4425,363,'nickname','WilfredoMcEncro'),(4426,363,'description',''),(4427,363,'rich_editing','true'),(4428,363,'comment_shortcuts','false'),(4429,363,'admin_color','fresh'),(4430,363,'use_ssl','0'),(4431,363,'show_admin_bar_front','true'),(4432,363,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4433,363,'wp_user_level','0'),(4434,363,'default_password_nag','1'),(4435,364,'first_name',''),(4436,364,'last_name',''),(4437,364,'nickname','OdetteMargaret'),(4438,364,'description',''),(4439,364,'rich_editing','true'),(4440,364,'comment_shortcuts','false'),(4441,364,'admin_color','fresh'),(4442,364,'use_ssl','0'),(4443,364,'show_admin_bar_front','true'),(4444,364,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4445,364,'wp_user_level','0'),(4446,364,'default_password_nag','1'),(4447,365,'first_name',''),(4448,365,'last_name',''),(4449,365,'nickname','Gemma84Wrvgyit'),(4450,365,'description',''),(4451,365,'rich_editing','true'),(4452,365,'comment_shortcuts','false'),(4453,365,'admin_color','fresh'),(4454,365,'use_ssl','0'),(4455,365,'show_admin_bar_front','true'),(4456,365,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4457,365,'wp_user_level','0'),(4458,365,'default_password_nag','1'),(4459,366,'first_name',''),(4460,366,'last_name',''),(4461,366,'nickname','MargoLaura'),(4462,366,'description',''),(4463,366,'rich_editing','true'),(4464,366,'comment_shortcuts','false'),(4465,366,'admin_color','fresh'),(4466,366,'use_ssl','0'),(4467,366,'show_admin_bar_front','true'),(4468,366,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4469,366,'wp_user_level','0'),(4470,366,'default_password_nag','1'),(4471,367,'first_name',''),(4472,367,'last_name',''),(4473,367,'nickname','LutherBlackman'),(4474,367,'description',''),(4475,367,'rich_editing','true'),(4476,367,'comment_shortcuts','false'),(4477,367,'admin_color','fresh'),(4478,367,'use_ssl','0'),(4479,367,'show_admin_bar_front','true'),(4480,367,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4481,367,'wp_user_level','0'),(4482,367,'default_password_nag','1'),(4483,368,'first_name',''),(4484,368,'last_name',''),(4485,368,'nickname','PaulineDove'),(4486,368,'description',''),(4487,368,'rich_editing','true'),(4488,368,'comment_shortcuts','false'),(4489,368,'admin_color','fresh'),(4490,368,'use_ssl','0'),(4491,368,'show_admin_bar_front','true'),(4492,368,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4493,368,'wp_user_level','0'),(4494,368,'default_password_nag','1'),(4495,369,'first_name',''),(4496,369,'last_name',''),(4497,369,'nickname','RodgerBaumgaert'),(4498,369,'description',''),(4499,369,'rich_editing','true'),(4500,369,'comment_shortcuts','false'),(4501,369,'admin_color','fresh'),(4502,369,'use_ssl','0'),(4503,369,'show_admin_bar_front','true'),(4504,369,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4505,369,'wp_user_level','0'),(4506,369,'default_password_nag','1'),(4507,370,'first_name',''),(4508,370,'last_name',''),(4509,370,'nickname','NicoleSandlin'),(4510,370,'description',''),(4511,370,'rich_editing','true'),(4512,370,'comment_shortcuts','false'),(4513,370,'admin_color','fresh'),(4514,370,'use_ssl','0'),(4515,370,'show_admin_bar_front','true'),(4516,370,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4517,370,'wp_user_level','0'),(4518,370,'default_password_nag','1'),(4519,371,'first_name',''),(4520,371,'last_name',''),(4521,371,'nickname','DebbraShah'),(4522,371,'description',''),(4523,371,'rich_editing','true'),(4524,371,'comment_shortcuts','false'),(4525,371,'admin_color','fresh'),(4526,371,'use_ssl','0'),(4527,371,'show_admin_bar_front','true'),(4528,371,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4529,371,'wp_user_level','0'),(4530,371,'default_password_nag','1'),(4531,372,'first_name',''),(4532,372,'last_name',''),(4533,372,'nickname','EusebiaAKA'),(4534,372,'description',''),(4535,372,'rich_editing','true'),(4536,372,'comment_shortcuts','false'),(4537,372,'admin_color','fresh'),(4538,372,'use_ssl','0'),(4539,372,'show_admin_bar_front','true'),(4540,372,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4541,372,'wp_user_level','0'),(4542,372,'default_password_nag','1'),(4543,373,'first_name',''),(4544,373,'last_name',''),(4545,373,'nickname','CassandraDoyle'),(4546,373,'description',''),(4547,373,'rich_editing','true'),(4548,373,'comment_shortcuts','false'),(4549,373,'admin_color','fresh'),(4550,373,'use_ssl','0'),(4551,373,'show_admin_bar_front','true'),(4552,373,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4553,373,'wp_user_level','0'),(4554,373,'default_password_nag','1'),(4555,374,'first_name',''),(4556,374,'last_name',''),(4557,374,'nickname','AlishaTXIlc'),(4558,374,'description',''),(4559,374,'rich_editing','true'),(4560,374,'comment_shortcuts','false'),(4561,374,'admin_color','fresh'),(4562,374,'use_ssl','0'),(4563,374,'show_admin_bar_front','true'),(4564,374,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4565,374,'wp_user_level','0'),(4566,374,'default_password_nag','1'),(4567,375,'first_name',''),(4568,375,'last_name',''),(4569,375,'nickname','FlorrieVDV'),(4570,375,'description',''),(4571,375,'rich_editing','true'),(4572,375,'comment_shortcuts','false'),(4573,375,'admin_color','fresh'),(4574,375,'use_ssl','0'),(4575,375,'show_admin_bar_front','true'),(4576,375,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4577,375,'wp_user_level','0'),(4578,375,'default_password_nag','1'),(4579,376,'first_name',''),(4580,376,'last_name',''),(4581,376,'nickname','ElsieBergin'),(4582,376,'description',''),(4583,376,'rich_editing','true'),(4584,376,'comment_shortcuts','false'),(4585,376,'admin_color','fresh'),(4586,376,'use_ssl','0'),(4587,376,'show_admin_bar_front','true'),(4588,376,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4589,376,'wp_user_level','0'),(4590,376,'default_password_nag','1'),(4591,377,'first_name',''),(4592,377,'last_name',''),(4593,377,'nickname','CKHPamelaiultle'),(4594,377,'description',''),(4595,377,'rich_editing','true'),(4596,377,'comment_shortcuts','false'),(4597,377,'admin_color','fresh'),(4598,377,'use_ssl','0'),(4599,377,'show_admin_bar_front','true'),(4600,377,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4601,377,'wp_user_level','0'),(4602,377,'default_password_nag','1'),(4603,378,'first_name',''),(4604,378,'last_name',''),(4605,378,'nickname','LylePicton'),(4606,378,'description',''),(4607,378,'rich_editing','true'),(4608,378,'comment_shortcuts','false'),(4609,378,'admin_color','fresh'),(4610,378,'use_ssl','0'),(4611,378,'show_admin_bar_front','true'),(4612,378,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4613,378,'wp_user_level','0'),(4614,378,'default_password_nag','1'),(4615,379,'first_name',''),(4616,379,'last_name',''),(4617,379,'nickname','JeremiahKearns'),(4618,379,'description',''),(4619,379,'rich_editing','true'),(4620,379,'comment_shortcuts','false'),(4621,379,'admin_color','fresh'),(4622,379,'use_ssl','0'),(4623,379,'show_admin_bar_front','true'),(4624,379,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4625,379,'wp_user_level','0'),(4626,379,'default_password_nag','1'),(4627,380,'first_name',''),(4628,380,'last_name',''),(4629,380,'nickname','BereniceBerube'),(4630,380,'description',''),(4631,380,'rich_editing','true'),(4632,380,'comment_shortcuts','false'),(4633,380,'admin_color','fresh'),(4634,380,'use_ssl','0'),(4635,380,'show_admin_bar_front','true'),(4636,380,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4637,380,'wp_user_level','0'),(4638,380,'default_password_nag','1'),(4639,381,'first_name',''),(4640,381,'last_name',''),(4641,381,'nickname','JaimeArriola'),(4642,381,'description',''),(4643,381,'rich_editing','true'),(4644,381,'comment_shortcuts','false'),(4645,381,'admin_color','fresh'),(4646,381,'use_ssl','0'),(4647,381,'show_admin_bar_front','true'),(4648,381,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4649,381,'wp_user_level','0'),(4650,381,'default_password_nag','1'),(4651,382,'first_name',''),(4652,382,'last_name',''),(4653,382,'nickname','BennyMortensen'),(4654,382,'description',''),(4655,382,'rich_editing','true'),(4656,382,'comment_shortcuts','false'),(4657,382,'admin_color','fresh'),(4658,382,'use_ssl','0'),(4659,382,'show_admin_bar_front','true'),(4660,382,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4661,382,'wp_user_level','0'),(4662,382,'default_password_nag','1'),(4663,383,'first_name',''),(4664,383,'last_name',''),(4665,383,'nickname','DenaH12xdd'),(4666,383,'description',''),(4667,383,'rich_editing','true'),(4668,383,'comment_shortcuts','false'),(4669,383,'admin_color','fresh'),(4670,383,'use_ssl','0'),(4671,383,'show_admin_bar_front','true'),(4672,383,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4673,383,'wp_user_level','0'),(4674,383,'default_password_nag','1'),(4675,384,'first_name',''),(4676,384,'last_name',''),(4677,384,'nickname','PaulinaHewlett'),(4678,384,'description',''),(4679,384,'rich_editing','true'),(4680,384,'comment_shortcuts','false'),(4681,384,'admin_color','fresh'),(4682,384,'use_ssl','0'),(4683,384,'show_admin_bar_front','true'),(4684,384,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4685,384,'wp_user_level','0'),(4686,384,'default_password_nag','1'),(4687,385,'first_name',''),(4688,385,'last_name',''),(4689,385,'nickname','AlysaGreer'),(4690,385,'description',''),(4691,385,'rich_editing','true'),(4692,385,'comment_shortcuts','false'),(4693,385,'admin_color','fresh'),(4694,385,'use_ssl','0'),(4695,385,'show_admin_bar_front','true'),(4696,385,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4697,385,'wp_user_level','0'),(4698,385,'default_password_nag','1'),(4699,386,'first_name',''),(4700,386,'last_name',''),(4701,386,'nickname','DarrellS36'),(4702,386,'description',''),(4703,386,'rich_editing','true'),(4704,386,'comment_shortcuts','false'),(4705,386,'admin_color','fresh'),(4706,386,'use_ssl','0'),(4707,386,'show_admin_bar_front','true'),(4708,386,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4709,386,'wp_user_level','0'),(4710,386,'default_password_nag','1'),(4711,387,'first_name',''),(4712,387,'last_name',''),(4713,387,'nickname','Barbara9547'),(4714,387,'description',''),(4715,387,'rich_editing','true'),(4716,387,'comment_shortcuts','false'),(4717,387,'admin_color','fresh'),(4718,387,'use_ssl','0'),(4719,387,'show_admin_bar_front','true'),(4720,387,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4721,387,'wp_user_level','0'),(4722,387,'default_password_nag','1'),(4723,388,'first_name',''),(4724,388,'last_name',''),(4725,388,'nickname','MartiGallant'),(4726,388,'description',''),(4727,388,'rich_editing','true'),(4728,388,'comment_shortcuts','false'),(4729,388,'admin_color','fresh'),(4730,388,'use_ssl','0'),(4731,388,'show_admin_bar_front','true'),(4732,388,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4733,388,'wp_user_level','0'),(4734,388,'default_password_nag','1'),(4735,389,'first_name',''),(4736,389,'last_name',''),(4737,389,'nickname','EzekielScarboro'),(4738,389,'description',''),(4739,389,'rich_editing','true'),(4740,389,'comment_shortcuts','false'),(4741,389,'admin_color','fresh'),(4742,389,'use_ssl','0'),(4743,389,'show_admin_bar_front','true'),(4744,389,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4745,389,'wp_user_level','0'),(4746,389,'default_password_nag','1'),(4747,390,'first_name',''),(4748,390,'last_name',''),(4749,390,'nickname','RaymonClapp'),(4750,390,'description',''),(4751,390,'rich_editing','true'),(4752,390,'comment_shortcuts','false'),(4753,390,'admin_color','fresh'),(4754,390,'use_ssl','0'),(4755,390,'show_admin_bar_front','true'),(4756,390,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4757,390,'wp_user_level','0'),(4758,390,'default_password_nag','1'),(4759,2,'closedpostboxes_dashboard','a:0:{}'),(4760,2,'metaboxhidden_dashboard','a:0:{}'),(4761,391,'first_name',''),(4762,391,'last_name',''),(4763,391,'nickname','CharlineYVP'),(4764,391,'description',''),(4765,391,'rich_editing','true'),(4766,391,'comment_shortcuts','false'),(4767,391,'admin_color','fresh'),(4768,391,'use_ssl','0'),(4769,391,'show_admin_bar_front','true'),(4770,391,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4771,391,'wp_user_level','0'),(4772,391,'default_password_nag','1'),(4773,392,'first_name',''),(4774,392,'last_name',''),(4775,392,'nickname','RigobertoWnn'),(4776,392,'description',''),(4777,392,'rich_editing','true'),(4778,392,'comment_shortcuts','false'),(4779,392,'admin_color','fresh'),(4780,392,'use_ssl','0'),(4781,392,'show_admin_bar_front','true'),(4782,392,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4783,392,'wp_user_level','0'),(4784,392,'default_password_nag','1'),(4785,393,'first_name',''),(4786,393,'last_name',''),(4787,393,'nickname','LaraRPPlrgklos'),(4788,393,'description',''),(4789,393,'rich_editing','true'),(4790,393,'comment_shortcuts','false'),(4791,393,'admin_color','fresh'),(4792,393,'use_ssl','0'),(4793,393,'show_admin_bar_front','true'),(4794,393,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4795,393,'wp_user_level','0'),(4796,393,'default_password_nag','1'),(4797,394,'first_name',''),(4798,394,'last_name',''),(4799,394,'nickname','ClaribelAlfred'),(4800,394,'description',''),(4801,394,'rich_editing','true'),(4802,394,'comment_shortcuts','false'),(4803,394,'admin_color','fresh'),(4804,394,'use_ssl','0'),(4805,394,'show_admin_bar_front','true'),(4806,394,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4807,394,'wp_user_level','0'),(4808,394,'default_password_nag','1'),(4809,395,'first_name',''),(4810,395,'last_name',''),(4811,395,'nickname','RamonHowton'),(4812,395,'description',''),(4813,395,'rich_editing','true'),(4814,395,'comment_shortcuts','false'),(4815,395,'admin_color','fresh'),(4816,395,'use_ssl','0'),(4817,395,'show_admin_bar_front','true'),(4818,395,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4819,395,'wp_user_level','0'),(4820,395,'default_password_nag','1'),(4821,396,'first_name',''),(4822,396,'last_name',''),(4823,396,'nickname','FelipeBlumentha'),(4824,396,'description',''),(4825,396,'rich_editing','true'),(4826,396,'comment_shortcuts','false'),(4827,396,'admin_color','fresh'),(4828,396,'use_ssl','0'),(4829,396,'show_admin_bar_front','true'),(4830,396,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4831,396,'wp_user_level','0'),(4832,396,'default_password_nag','1'),(4833,397,'first_name',''),(4834,397,'last_name',''),(4835,397,'nickname','Jesus47Nppfel'),(4836,397,'description',''),(4837,397,'rich_editing','true'),(4838,397,'comment_shortcuts','false'),(4839,397,'admin_color','fresh'),(4840,397,'use_ssl','0'),(4841,397,'show_admin_bar_front','true'),(4842,397,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4843,397,'wp_user_level','0'),(4844,397,'default_password_nag','1'),(4845,398,'first_name',''),(4846,398,'last_name',''),(4847,398,'nickname','BrigidaHawk'),(4848,398,'description',''),(4849,398,'rich_editing','true'),(4850,398,'comment_shortcuts','false'),(4851,398,'admin_color','fresh'),(4852,398,'use_ssl','0'),(4853,398,'show_admin_bar_front','true'),(4854,398,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4855,398,'wp_user_level','0'),(4856,398,'default_password_nag','1'),(4857,399,'first_name',''),(4858,399,'last_name',''),(4859,399,'nickname','MindyNester'),(4860,399,'description',''),(4861,399,'rich_editing','true'),(4862,399,'comment_shortcuts','false'),(4863,399,'admin_color','fresh'),(4864,399,'use_ssl','0'),(4865,399,'show_admin_bar_front','true'),(4866,399,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4867,399,'wp_user_level','0'),(4868,399,'default_password_nag','1'),(4869,400,'first_name',''),(4870,400,'last_name',''),(4871,400,'nickname','Candidxi1'),(4872,400,'description',''),(4873,400,'rich_editing','true'),(4874,400,'comment_shortcuts','false'),(4875,400,'admin_color','fresh'),(4876,400,'use_ssl','0'),(4877,400,'show_admin_bar_front','true'),(4878,400,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4879,400,'wp_user_level','0'),(4880,400,'default_password_nag','1'),(4881,401,'first_name',''),(4882,401,'last_name',''),(4883,401,'nickname','StevenWhitson'),(4884,401,'description',''),(4885,401,'rich_editing','true'),(4886,401,'comment_shortcuts','false'),(4887,401,'admin_color','fresh'),(4888,401,'use_ssl','0'),(4889,401,'show_admin_bar_front','true'),(4890,401,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4891,401,'wp_user_level','0'),(4892,401,'default_password_nag','1'),(4893,402,'first_name',''),(4894,402,'last_name',''),(4895,402,'nickname','FrederickaMcgre'),(4896,402,'description',''),(4897,402,'rich_editing','true'),(4898,402,'comment_shortcuts','false'),(4899,402,'admin_color','fresh'),(4900,402,'use_ssl','0'),(4901,402,'show_admin_bar_front','true'),(4902,402,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4903,402,'wp_user_level','0'),(4904,402,'default_password_nag','1'),(4905,403,'first_name',''),(4906,403,'last_name',''),(4907,403,'nickname','PrinceMosely'),(4908,403,'description',''),(4909,403,'rich_editing','true'),(4910,403,'comment_shortcuts','false'),(4911,403,'admin_color','fresh'),(4912,403,'use_ssl','0'),(4913,403,'show_admin_bar_front','true'),(4914,403,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4915,403,'wp_user_level','0'),(4916,403,'default_password_nag','1'),(4917,404,'first_name',''),(4918,404,'last_name',''),(4919,404,'nickname','ChanceBazile'),(4920,404,'description',''),(4921,404,'rich_editing','true'),(4922,404,'comment_shortcuts','false'),(4923,404,'admin_color','fresh'),(4924,404,'use_ssl','0'),(4925,404,'show_admin_bar_front','true'),(4926,404,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4927,404,'wp_user_level','0'),(4928,404,'default_password_nag','1'),(4929,405,'first_name',''),(4930,405,'last_name',''),(4931,405,'nickname','MarioJLFpls'),(4932,405,'description',''),(4933,405,'rich_editing','true'),(4934,405,'comment_shortcuts','false'),(4935,405,'admin_color','fresh'),(4936,405,'use_ssl','0'),(4937,405,'show_admin_bar_front','true'),(4938,405,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4939,405,'wp_user_level','0'),(4940,405,'default_password_nag','1'),(4941,406,'first_name',''),(4942,406,'last_name',''),(4943,406,'nickname','SashaKennemer'),(4944,406,'description',''),(4945,406,'rich_editing','true'),(4946,406,'comment_shortcuts','false'),(4947,406,'admin_color','fresh'),(4948,406,'use_ssl','0'),(4949,406,'show_admin_bar_front','true'),(4950,406,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4951,406,'wp_user_level','0'),(4952,406,'default_password_nag','1'),(4953,407,'first_name',''),(4954,407,'last_name',''),(4955,407,'nickname','ChelseaHeagney'),(4956,407,'description',''),(4957,407,'rich_editing','true'),(4958,407,'comment_shortcuts','false'),(4959,407,'admin_color','fresh'),(4960,407,'use_ssl','0'),(4961,407,'show_admin_bar_front','true'),(4962,407,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4963,407,'wp_user_level','0'),(4964,407,'default_password_nag','1'),(4965,408,'first_name',''),(4966,408,'last_name',''),(4967,408,'nickname','ShelleySchnaars'),(4968,408,'description',''),(4969,408,'rich_editing','true'),(4970,408,'comment_shortcuts','false'),(4971,408,'admin_color','fresh'),(4972,408,'use_ssl','0'),(4973,408,'show_admin_bar_front','true'),(4974,408,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4975,408,'wp_user_level','0'),(4976,408,'default_password_nag','1'),(4977,409,'first_name',''),(4978,409,'last_name',''),(4979,409,'nickname','HermanCAMM'),(4980,409,'description',''),(4981,409,'rich_editing','true'),(4982,409,'comment_shortcuts','false'),(4983,409,'admin_color','fresh'),(4984,409,'use_ssl','0'),(4985,409,'show_admin_bar_front','true'),(4986,409,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4987,409,'wp_user_level','0'),(4988,409,'default_password_nag','1'),(4989,410,'first_name',''),(4990,410,'last_name',''),(4991,410,'nickname','WesleyEastwood'),(4992,410,'description',''),(4993,410,'rich_editing','true'),(4994,410,'comment_shortcuts','false'),(4995,410,'admin_color','fresh'),(4996,410,'use_ssl','0'),(4997,410,'show_admin_bar_front','true'),(4998,410,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(4999,410,'wp_user_level','0'),(5000,410,'default_password_nag','1'),(5001,411,'first_name',''),(5002,411,'last_name',''),(5003,411,'nickname','JulianaDixson'),(5004,411,'description',''),(5005,411,'rich_editing','true'),(5006,411,'comment_shortcuts','false'),(5007,411,'admin_color','fresh'),(5008,411,'use_ssl','0'),(5009,411,'show_admin_bar_front','true'),(5010,411,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5011,411,'wp_user_level','0'),(5012,411,'default_password_nag','1'),(5013,412,'first_name',''),(5014,412,'last_name',''),(5015,412,'nickname','KattieOlvera'),(5016,412,'description',''),(5017,412,'rich_editing','true'),(5018,412,'comment_shortcuts','false'),(5019,412,'admin_color','fresh'),(5020,412,'use_ssl','0'),(5021,412,'show_admin_bar_front','true'),(5022,412,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5023,412,'wp_user_level','0'),(5024,412,'default_password_nag','1'),(5025,413,'first_name',''),(5026,413,'last_name',''),(5027,413,'nickname','LaceyShelly'),(5028,413,'description',''),(5029,413,'rich_editing','true'),(5030,413,'comment_shortcuts','false'),(5031,413,'admin_color','fresh'),(5032,413,'use_ssl','0'),(5033,413,'show_admin_bar_front','true'),(5034,413,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5035,413,'wp_user_level','0'),(5036,413,'default_password_nag','1'),(5037,414,'first_name',''),(5038,414,'last_name',''),(5039,414,'nickname','Milla47Maiaqx'),(5040,414,'description',''),(5041,414,'rich_editing','true'),(5042,414,'comment_shortcuts','false'),(5043,414,'admin_color','fresh'),(5044,414,'use_ssl','0'),(5045,414,'show_admin_bar_front','true'),(5046,414,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5047,414,'wp_user_level','0'),(5048,414,'default_password_nag','1'),(5049,415,'first_name',''),(5050,415,'last_name',''),(5051,415,'nickname','JeffereyPeebles'),(5052,415,'description',''),(5053,415,'rich_editing','true'),(5054,415,'comment_shortcuts','false'),(5055,415,'admin_color','fresh'),(5056,415,'use_ssl','0'),(5057,415,'show_admin_bar_front','true'),(5058,415,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5059,415,'wp_user_level','0'),(5060,415,'default_password_nag','1'),(5061,416,'first_name',''),(5062,416,'last_name',''),(5063,416,'nickname','CaryHaugen'),(5064,416,'description',''),(5065,416,'rich_editing','true'),(5066,416,'comment_shortcuts','false'),(5067,416,'admin_color','fresh'),(5068,416,'use_ssl','0'),(5069,416,'show_admin_bar_front','true'),(5070,416,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5071,416,'wp_user_level','0'),(5072,416,'default_password_nag','1'),(5073,417,'first_name',''),(5074,417,'last_name',''),(5075,417,'nickname','FloreneMacdonal'),(5076,417,'description',''),(5077,417,'rich_editing','true'),(5078,417,'comment_shortcuts','false'),(5079,417,'admin_color','fresh'),(5080,417,'use_ssl','0'),(5081,417,'show_admin_bar_front','true'),(5082,417,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5083,417,'wp_user_level','0'),(5084,417,'default_password_nag','1'),(5085,418,'first_name',''),(5086,418,'last_name',''),(5087,418,'nickname','DianneGriswold'),(5088,418,'description',''),(5089,418,'rich_editing','true'),(5090,418,'comment_shortcuts','false'),(5091,418,'admin_color','fresh'),(5092,418,'use_ssl','0'),(5093,418,'show_admin_bar_front','true'),(5094,418,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5095,418,'wp_user_level','0'),(5096,418,'default_password_nag','1'),(5097,419,'first_name',''),(5098,419,'last_name',''),(5099,419,'nickname','DoraNoblewst'),(5100,419,'description',''),(5101,419,'rich_editing','true'),(5102,419,'comment_shortcuts','false'),(5103,419,'admin_color','fresh'),(5104,419,'use_ssl','0'),(5105,419,'show_admin_bar_front','true'),(5106,419,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5107,419,'wp_user_level','0'),(5108,419,'default_password_nag','1'),(5109,420,'first_name',''),(5110,420,'last_name',''),(5111,420,'nickname','easypbmyo'),(5112,420,'description',''),(5113,420,'rich_editing','true'),(5114,420,'comment_shortcuts','false'),(5115,420,'admin_color','fresh'),(5116,420,'use_ssl','0'),(5117,420,'show_admin_bar_front','true'),(5118,420,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5119,420,'wp_user_level','0'),(5120,420,'default_password_nag','1'),(5121,421,'first_name',''),(5122,421,'last_name',''),(5123,421,'nickname','HumbertoBlair'),(5124,421,'description',''),(5125,421,'rich_editing','true'),(5126,421,'comment_shortcuts','false'),(5127,421,'admin_color','fresh'),(5128,421,'use_ssl','0'),(5129,421,'show_admin_bar_front','true'),(5130,421,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5131,421,'wp_user_level','0'),(5132,421,'default_password_nag','1'),(5133,422,'first_name',''),(5134,422,'last_name',''),(5135,422,'nickname','easnpyoxu'),(5136,422,'description',''),(5137,422,'rich_editing','true'),(5138,422,'comment_shortcuts','false'),(5139,422,'admin_color','fresh'),(5140,422,'use_ssl','0'),(5141,422,'show_admin_bar_front','true'),(5142,422,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5143,422,'wp_user_level','0'),(5144,422,'default_password_nag','1'),(5145,423,'first_name',''),(5146,423,'last_name',''),(5147,423,'nickname','easxaotkw'),(5148,423,'description',''),(5149,423,'rich_editing','true'),(5150,423,'comment_shortcuts','false'),(5151,423,'admin_color','fresh'),(5152,423,'use_ssl','0'),(5153,423,'show_admin_bar_front','true'),(5154,423,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5155,423,'wp_user_level','0'),(5156,423,'default_password_nag','1'),(5157,424,'first_name',''),(5158,424,'last_name',''),(5159,424,'nickname','JoycelynCAYL'),(5160,424,'description',''),(5161,424,'rich_editing','true'),(5162,424,'comment_shortcuts','false'),(5163,424,'admin_color','fresh'),(5164,424,'use_ssl','0'),(5165,424,'show_admin_bar_front','true'),(5166,424,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5167,424,'wp_user_level','0'),(5168,424,'default_password_nag','1'),(5169,425,'first_name',''),(5170,425,'last_name',''),(5171,425,'nickname','ArleenYLVwvin'),(5172,425,'description',''),(5173,425,'rich_editing','true'),(5174,425,'comment_shortcuts','false'),(5175,425,'admin_color','fresh'),(5176,425,'use_ssl','0'),(5177,425,'show_admin_bar_front','true'),(5178,425,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5179,425,'wp_user_level','0'),(5180,425,'default_password_nag','1'),(5181,426,'first_name',''),(5182,426,'last_name',''),(5183,426,'nickname','EQGGregory'),(5184,426,'description',''),(5185,426,'rich_editing','true'),(5186,426,'comment_shortcuts','false'),(5187,426,'admin_color','fresh'),(5188,426,'use_ssl','0'),(5189,426,'show_admin_bar_front','true'),(5190,426,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5191,426,'wp_user_level','0'),(5192,426,'default_password_nag','1'),(5193,427,'first_name',''),(5194,427,'last_name',''),(5195,427,'nickname','AracelisRowcrof'),(5196,427,'description',''),(5197,427,'rich_editing','true'),(5198,427,'comment_shortcuts','false'),(5199,427,'admin_color','fresh'),(5200,427,'use_ssl','0'),(5201,427,'show_admin_bar_front','true'),(5202,427,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5203,427,'wp_user_level','0'),(5204,427,'default_password_nag','1'),(5205,428,'first_name',''),(5206,428,'last_name',''),(5207,428,'nickname','JurgenKFNt'),(5208,428,'description',''),(5209,428,'rich_editing','true'),(5210,428,'comment_shortcuts','false'),(5211,428,'admin_color','fresh'),(5212,428,'use_ssl','0'),(5213,428,'show_admin_bar_front','true'),(5214,428,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5215,428,'wp_user_level','0'),(5216,428,'default_password_nag','1'),(5217,429,'first_name',''),(5218,429,'last_name',''),(5219,429,'nickname','LorrieGlasfurd'),(5220,429,'description',''),(5221,429,'rich_editing','true'),(5222,429,'comment_shortcuts','false'),(5223,429,'admin_color','fresh'),(5224,429,'use_ssl','0'),(5225,429,'show_admin_bar_front','true'),(5226,429,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5227,429,'wp_user_level','0'),(5228,429,'default_password_nag','1'),(5229,430,'first_name',''),(5230,430,'last_name',''),(5231,430,'nickname','ShonaCYTsybnl'),(5232,430,'description',''),(5233,430,'rich_editing','true'),(5234,430,'comment_shortcuts','false'),(5235,430,'admin_color','fresh'),(5236,430,'use_ssl','0'),(5237,430,'show_admin_bar_front','true'),(5238,430,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5239,430,'wp_user_level','0'),(5240,430,'default_password_nag','1'),(5241,431,'first_name',''),(5242,431,'last_name',''),(5243,431,'nickname','CaitlynLeichhar'),(5244,431,'description',''),(5245,431,'rich_editing','true'),(5246,431,'comment_shortcuts','false'),(5247,431,'admin_color','fresh'),(5248,431,'use_ssl','0'),(5249,431,'show_admin_bar_front','true'),(5250,431,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5251,431,'wp_user_level','0'),(5252,431,'default_password_nag','1'),(5253,432,'first_name',''),(5254,432,'last_name',''),(5255,432,'nickname','AdellPichardo'),(5256,432,'description',''),(5257,432,'rich_editing','true'),(5258,432,'comment_shortcuts','false'),(5259,432,'admin_color','fresh'),(5260,432,'use_ssl','0'),(5261,432,'show_admin_bar_front','true'),(5262,432,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5263,432,'wp_user_level','0'),(5264,432,'default_password_nag','1'),(5265,433,'first_name',''),(5266,433,'last_name',''),(5267,433,'nickname','KeiraMaples'),(5268,433,'description',''),(5269,433,'rich_editing','true'),(5270,433,'comment_shortcuts','false'),(5271,433,'admin_color','fresh'),(5272,433,'use_ssl','0'),(5273,433,'show_admin_bar_front','true'),(5274,433,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5275,433,'wp_user_level','0'),(5276,433,'default_password_nag','1'),(5277,434,'first_name',''),(5278,434,'last_name',''),(5279,434,'nickname','Edison4495'),(5280,434,'description',''),(5281,434,'rich_editing','true'),(5282,434,'comment_shortcuts','false'),(5283,434,'admin_color','fresh'),(5284,434,'use_ssl','0'),(5285,434,'show_admin_bar_front','true'),(5286,434,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5287,434,'wp_user_level','0'),(5288,434,'default_password_nag','1'),(5289,2,'default_password_nag',''),(5290,435,'first_name',''),(5291,435,'last_name',''),(5292,435,'nickname','LatanyaHornick'),(5293,435,'description',''),(5294,435,'rich_editing','true'),(5295,435,'comment_shortcuts','false'),(5296,435,'admin_color','fresh'),(5297,435,'use_ssl','0'),(5298,435,'show_admin_bar_front','true'),(5299,435,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5300,435,'wp_user_level','0'),(5301,435,'default_password_nag','1'),(5302,436,'first_name',''),(5303,436,'last_name',''),(5304,436,'nickname','ElizbethDeyoung'),(5305,436,'description',''),(5306,436,'rich_editing','true'),(5307,436,'comment_shortcuts','false'),(5308,436,'admin_color','fresh'),(5309,436,'use_ssl','0'),(5310,436,'show_admin_bar_front','true'),(5311,436,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5312,436,'wp_user_level','0'),(5313,436,'default_password_nag','1'),(5314,437,'first_name',''),(5315,437,'last_name',''),(5316,437,'nickname','Jay93Domxlog'),(5317,437,'description',''),(5318,437,'rich_editing','true'),(5319,437,'comment_shortcuts','false'),(5320,437,'admin_color','fresh'),(5321,437,'use_ssl','0'),(5322,437,'show_admin_bar_front','true'),(5323,437,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5324,437,'wp_user_level','0'),(5325,437,'default_password_nag','1'),(5326,438,'first_name',''),(5327,438,'last_name',''),(5328,438,'nickname','WernerWieck'),(5329,438,'description',''),(5330,438,'rich_editing','true'),(5331,438,'comment_shortcuts','false'),(5332,438,'admin_color','fresh'),(5333,438,'use_ssl','0'),(5334,438,'show_admin_bar_front','true'),(5335,438,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5336,438,'wp_user_level','0'),(5337,438,'default_password_nag','1'),(5338,439,'first_name',''),(5339,439,'last_name',''),(5340,439,'nickname','Desmond25Q'),(5341,439,'description',''),(5342,439,'rich_editing','true'),(5343,439,'comment_shortcuts','false'),(5344,439,'admin_color','fresh'),(5345,439,'use_ssl','0'),(5346,439,'show_admin_bar_front','true'),(5347,439,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5348,439,'wp_user_level','0'),(5349,439,'default_password_nag','1'),(5350,440,'first_name',''),(5351,440,'last_name',''),(5352,440,'nickname','AnjaLouise'),(5353,440,'description',''),(5354,440,'rich_editing','true'),(5355,440,'comment_shortcuts','false'),(5356,440,'admin_color','fresh'),(5357,440,'use_ssl','0'),(5358,440,'show_admin_bar_front','true'),(5359,440,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5360,440,'wp_user_level','0'),(5361,440,'default_password_nag','1'),(5362,441,'first_name',''),(5363,441,'last_name',''),(5364,441,'nickname','LancePelliomav'),(5365,441,'description',''),(5366,441,'rich_editing','true'),(5367,441,'comment_shortcuts','false'),(5368,441,'admin_color','fresh'),(5369,441,'use_ssl','0'),(5370,441,'show_admin_bar_front','true'),(5371,441,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5372,441,'wp_user_level','0'),(5373,441,'default_password_nag','1'),(5374,442,'first_name',''),(5375,442,'last_name',''),(5376,442,'nickname','Karolyn65D'),(5377,442,'description',''),(5378,442,'rich_editing','true'),(5379,442,'comment_shortcuts','false'),(5380,442,'admin_color','fresh'),(5381,442,'use_ssl','0'),(5382,442,'show_admin_bar_front','true'),(5383,442,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5384,442,'wp_user_level','0'),(5385,442,'default_password_nag','1'),(5386,443,'first_name',''),(5387,443,'last_name',''),(5388,443,'nickname','JacobFoster'),(5389,443,'description',''),(5390,443,'rich_editing','true'),(5391,443,'comment_shortcuts','false'),(5392,443,'admin_color','fresh'),(5393,443,'use_ssl','0'),(5394,443,'show_admin_bar_front','true'),(5395,443,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5396,443,'wp_user_level','0'),(5397,443,'default_password_nag','1'),(5398,444,'first_name',''),(5399,444,'last_name',''),(5400,444,'nickname','Boryslavat67'),(5401,444,'description',''),(5402,444,'rich_editing','true'),(5403,444,'comment_shortcuts','false'),(5404,444,'admin_color','fresh'),(5405,444,'use_ssl','0'),(5406,444,'show_admin_bar_front','true'),(5407,444,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5408,444,'wp_user_level','0'),(5409,444,'default_password_nag','1'),(5410,445,'first_name',''),(5411,445,'last_name',''),(5412,445,'nickname','PedroLlanos'),(5413,445,'description',''),(5414,445,'rich_editing','true'),(5415,445,'comment_shortcuts','false'),(5416,445,'admin_color','fresh'),(5417,445,'use_ssl','0'),(5418,445,'show_admin_bar_front','true'),(5419,445,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5420,445,'wp_user_level','0'),(5421,445,'default_password_nag','1'),(5422,446,'first_name',''),(5423,446,'last_name',''),(5424,446,'nickname','LatriceT36'),(5425,446,'description',''),(5426,446,'rich_editing','true'),(5427,446,'comment_shortcuts','false'),(5428,446,'admin_color','fresh'),(5429,446,'use_ssl','0'),(5430,446,'show_admin_bar_front','true'),(5431,446,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5432,446,'wp_user_level','0'),(5433,446,'default_password_nag','1'),(5434,447,'first_name',''),(5435,447,'last_name',''),(5436,447,'nickname','DeangeloHarlow'),(5437,447,'description',''),(5438,447,'rich_editing','true'),(5439,447,'comment_shortcuts','false'),(5440,447,'admin_color','fresh'),(5441,447,'use_ssl','0'),(5442,447,'show_admin_bar_front','true'),(5443,447,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5444,447,'wp_user_level','0'),(5445,447,'default_password_nag','1'),(5446,448,'first_name',''),(5447,448,'last_name',''),(5448,448,'nickname','Muhammad9975'),(5449,448,'description',''),(5450,448,'rich_editing','true'),(5451,448,'comment_shortcuts','false'),(5452,448,'admin_color','fresh'),(5453,448,'use_ssl','0'),(5454,448,'show_admin_bar_front','true'),(5455,448,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5456,448,'wp_user_level','0'),(5457,448,'default_password_nag','1'),(5530,455,'first_name',''),(5531,455,'last_name',''),(5532,455,'nickname','KermitLowerson'),(5533,455,'description',''),(5534,455,'rich_editing','true'),(5535,455,'comment_shortcuts','false'),(5536,455,'admin_color','fresh'),(5458,449,'first_name',''),(5459,449,'last_name',''),(5460,449,'nickname','DallasBone'),(5461,449,'description',''),(5462,449,'rich_editing','true'),(5463,449,'comment_shortcuts','false'),(5464,449,'admin_color','fresh'),(5465,449,'use_ssl','0'),(5466,449,'show_admin_bar_front','true'),(5467,449,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5468,449,'wp_user_level','0'),(5469,449,'default_password_nag','1'),(5470,450,'first_name',''),(5471,450,'last_name',''),(5472,450,'nickname','CatherineMash'),(5473,450,'description',''),(5474,450,'rich_editing','true'),(5475,450,'comment_shortcuts','false'),(5476,450,'admin_color','fresh'),(5477,450,'use_ssl','0'),(5478,450,'show_admin_bar_front','true'),(5479,450,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5480,450,'wp_user_level','0'),(5481,450,'default_password_nag','1'),(5482,451,'first_name',''),(5483,451,'last_name',''),(5484,451,'nickname','JeannieRTGF'),(5485,451,'description',''),(5486,451,'rich_editing','true'),(5487,451,'comment_shortcuts','false'),(5488,451,'admin_color','fresh'),(5489,451,'use_ssl','0'),(5490,451,'show_admin_bar_front','true'),(5491,451,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5492,451,'wp_user_level','0'),(5493,451,'default_password_nag','1'),(5494,452,'first_name',''),(5495,452,'last_name',''),(5496,452,'nickname','HollisCommons'),(5497,452,'description',''),(5498,452,'rich_editing','true'),(5499,452,'comment_shortcuts','false'),(5500,452,'admin_color','fresh'),(5501,452,'use_ssl','0'),(5502,452,'show_admin_bar_front','true'),(5503,452,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5504,452,'wp_user_level','0'),(5505,452,'default_password_nag','1'),(5506,453,'first_name',''),(5507,453,'last_name',''),(5508,453,'nickname','SalvatoreQff'),(5509,453,'description',''),(5510,453,'rich_editing','true'),(5511,453,'comment_shortcuts','false'),(5512,453,'admin_color','fresh'),(5513,453,'use_ssl','0'),(5514,453,'show_admin_bar_front','true'),(5515,453,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5516,453,'wp_user_level','0'),(5517,453,'default_password_nag','1'),(5518,454,'first_name',''),(5519,454,'last_name',''),(5520,454,'nickname','GayStickler'),(5521,454,'description',''),(5522,454,'rich_editing','true'),(5523,454,'comment_shortcuts','false'),(5524,454,'admin_color','fresh'),(5525,454,'use_ssl','0'),(5526,454,'show_admin_bar_front','true'),(5527,454,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5528,454,'wp_user_level','0'),(5529,454,'default_password_nag','1'),(5560,457,'admin_color','fresh'),(5561,457,'use_ssl','0'),(5562,457,'show_admin_bar_front','true'),(5563,457,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5564,457,'wp_user_level','0'),(5565,457,'default_password_nag','1'),(5566,458,'first_name',''),(5567,458,'last_name',''),(5568,458,'nickname','WilsonBFVmwvzsz'),(5569,458,'description',''),(5570,458,'rich_editing','true'),(5571,458,'comment_shortcuts','false'),(5572,458,'admin_color','fresh'),(5573,458,'use_ssl','0'),(5574,458,'show_admin_bar_front','true'),(5575,458,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5576,458,'wp_user_level','0'),(5577,458,'default_password_nag','1'),(5578,459,'first_name',''),(5579,459,'last_name',''),(5580,459,'nickname','wonSpodeDwece'),(5581,459,'description',''),(5582,459,'rich_editing','true'),(5583,459,'comment_shortcuts','false'),(5584,459,'admin_color','fresh'),(5585,459,'use_ssl','0'),(5586,459,'show_admin_bar_front','true'),(5587,459,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5588,459,'wp_user_level','0'),(5589,459,'default_password_nag','1'),(7355,606,'comment_shortcuts','false'),(7356,606,'admin_color','fresh'),(6564,540,'admin_color','fresh'),(6565,540,'use_ssl','0'),(6566,540,'show_admin_bar_front','true'),(6567,540,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6568,540,'wp_user_level','0'),(5951,489,'comment_shortcuts','false'),(5841,480,'default_password_nag','1'),(5744,472,'wp_user_level','0'),(5745,472,'default_password_nag','1'),(5830,480,'first_name',''),(5831,480,'last_name',''),(5832,480,'nickname','ClaribelPoate'),(5833,480,'description',''),(5834,480,'rich_editing','true'),(5835,480,'comment_shortcuts','false'),(5836,480,'admin_color','fresh'),(5837,480,'use_ssl','0'),(5838,480,'show_admin_bar_front','true'),(5839,480,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5840,480,'wp_user_level','0'),(5590,460,'first_name',''),(5591,460,'last_name',''),(5592,460,'nickname','Kurt22Ecfnfso'),(5593,460,'description',''),(5594,460,'rich_editing','true'),(5595,460,'comment_shortcuts','false'),(5596,460,'admin_color','fresh'),(5597,460,'use_ssl','0'),(5598,460,'show_admin_bar_front','true'),(5599,460,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5600,460,'wp_user_level','0'),(5601,460,'default_password_nag','1'),(5602,461,'first_name',''),(5603,461,'last_name',''),(5604,461,'nickname','AlexFarrow'),(5605,461,'description',''),(5606,461,'rich_editing','true'),(5607,461,'comment_shortcuts','false'),(5608,461,'admin_color','fresh'),(5609,461,'use_ssl','0'),(5610,461,'show_admin_bar_front','true'),(5611,461,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5612,461,'wp_user_level','0'),(5613,461,'default_password_nag','1'),(5740,472,'admin_color','fresh'),(5741,472,'use_ssl','0'),(5742,472,'show_admin_bar_front','true'),(5743,472,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5614,462,'first_name',''),(5615,462,'last_name',''),(5616,462,'nickname','FreemanV10'),(5617,462,'description',''),(5618,462,'rich_editing','true'),(5619,462,'comment_shortcuts','false'),(5620,462,'admin_color','fresh'),(5621,462,'use_ssl','0'),(5622,462,'show_admin_bar_front','true'),(5623,462,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5624,462,'wp_user_level','0'),(5625,462,'default_password_nag','1'),(5626,463,'first_name',''),(5627,463,'last_name',''),(5628,463,'nickname','dod13'),(5629,463,'description',''),(5630,463,'rich_editing','true'),(5631,463,'comment_shortcuts','false'),(5632,463,'admin_color','fresh'),(5633,463,'use_ssl','0'),(5634,463,'show_admin_bar_front','true'),(5635,463,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5636,463,'wp_user_level','0'),(5637,463,'default_password_nag','1'),(5638,464,'first_name',''),(5639,464,'last_name',''),(5640,464,'nickname','EugeneGlouceste'),(5641,464,'description',''),(5642,464,'rich_editing','true'),(5643,464,'comment_shortcuts','false'),(5644,464,'admin_color','fresh'),(5645,464,'use_ssl','0'),(5646,464,'show_admin_bar_front','true'),(5647,464,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5648,464,'wp_user_level','0'),(5649,464,'default_password_nag','1'),(5650,465,'first_name',''),(5651,465,'last_name',''),(5652,465,'nickname','AnkeNeilsen'),(5653,465,'description',''),(5654,465,'rich_editing','true'),(5655,465,'comment_shortcuts','false'),(5656,465,'admin_color','fresh'),(5657,465,'use_ssl','0'),(5658,465,'show_admin_bar_front','true'),(5659,465,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5660,465,'wp_user_level','0'),(5661,465,'default_password_nag','1'),(5662,466,'first_name',''),(5663,466,'last_name',''),(5664,466,'nickname','OctavioHOG'),(5665,466,'description',''),(5666,466,'rich_editing','true'),(5667,466,'comment_shortcuts','false'),(5668,466,'admin_color','fresh'),(5669,466,'use_ssl','0'),(5670,466,'show_admin_bar_front','true'),(5671,466,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5672,466,'wp_user_level','0'),(5673,466,'default_password_nag','1'),(5674,467,'first_name',''),(5675,467,'last_name',''),(5676,467,'nickname','Mackenzie2517'),(5677,467,'description',''),(5678,467,'rich_editing','true'),(5679,467,'comment_shortcuts','false'),(5680,467,'admin_color','fresh'),(5681,467,'use_ssl','0'),(5682,467,'show_admin_bar_front','true'),(5683,467,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5684,467,'wp_user_level','0'),(5685,467,'default_password_nag','1'),(5734,472,'first_name',''),(5735,472,'last_name',''),(5736,472,'nickname','EmilieDarden'),(5737,472,'description',''),(5738,472,'rich_editing','true'),(5739,472,'comment_shortcuts','false'),(5686,468,'first_name',''),(5687,468,'last_name',''),(5688,468,'nickname','AndyDurbin'),(5689,468,'description',''),(5690,468,'rich_editing','true'),(5691,468,'comment_shortcuts','false'),(5692,468,'admin_color','fresh'),(5693,468,'use_ssl','0'),(5694,468,'show_admin_bar_front','true'),(5695,468,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5696,468,'wp_user_level','0'),(5697,468,'default_password_nag','1'),(5698,469,'first_name',''),(5699,469,'last_name',''),(5700,469,'nickname','JeremyTord'),(5701,469,'description',''),(5702,469,'rich_editing','true'),(5703,469,'comment_shortcuts','false'),(5704,469,'admin_color','fresh'),(5705,469,'use_ssl','0'),(5706,469,'show_admin_bar_front','true'),(5707,469,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5708,469,'wp_user_level','0'),(5709,469,'default_password_nag','1'),(5710,470,'first_name',''),(5711,470,'last_name',''),(5712,470,'nickname','asd14'),(5713,470,'description',''),(5714,470,'rich_editing','true'),(5715,470,'comment_shortcuts','false'),(5716,470,'admin_color','fresh'),(5717,470,'use_ssl','0'),(5718,470,'show_admin_bar_front','true'),(5719,470,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5720,470,'wp_user_level','0'),(5721,470,'default_password_nag','1'),(5722,471,'first_name',''),(5723,471,'last_name',''),(5724,471,'nickname','MinnieTrenerry'),(5725,471,'description',''),(5726,471,'rich_editing','true'),(5727,471,'comment_shortcuts','false'),(5728,471,'admin_color','fresh'),(5729,471,'use_ssl','0'),(5730,471,'show_admin_bar_front','true'),(5731,471,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5732,471,'wp_user_level','0'),(5733,471,'default_password_nag','1'),(5854,482,'first_name',''),(5855,482,'last_name',''),(5746,473,'first_name',''),(5747,473,'last_name',''),(5748,473,'nickname','AliceBarela'),(5749,473,'description',''),(5750,473,'rich_editing','true'),(5751,473,'comment_shortcuts','false'),(5752,473,'admin_color','fresh'),(5753,473,'use_ssl','0'),(5754,473,'show_admin_bar_front','true'),(5755,473,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5756,473,'wp_user_level','0'),(5757,473,'default_password_nag','1'),(5842,481,'first_name',''),(5843,481,'last_name',''),(5844,481,'nickname','VilmaNtberbayt'),(5845,481,'description',''),(5846,481,'rich_editing','true'),(5847,481,'comment_shortcuts','false'),(5848,481,'admin_color','fresh'),(5849,481,'use_ssl','0'),(5850,481,'show_admin_bar_front','true'),(5851,481,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5852,481,'wp_user_level','0'),(5853,481,'default_password_nag','1'),(5758,474,'first_name','tongzwrYU'),(5759,474,'last_name','carpinteyroiizYU'),(5760,474,'nickname','manylkv'),(5761,474,'description','[b][url=http://www.artesianpoolstx.com/testimonials/soldes-louboutin.asp]クリスチャンルブタン[/url][/b];[b][url=http://www.etcan.org/controls/]Mcm バッグ 人気[/url][/b];[b][url=http://www.cwpab.org/]コーチ 人気[/url][/b];す。その方がいいかもしれませんよ。薬の影響かもしれませんし、病気が治れば、そうした懸念のあることもクリアするというか戻るでしょう。まぁなんであれ、すべては主治医に訊くのがベストです。主治医は、診察して、質問者さまのことを熟知しているのですから。日行で宜しいので、よかったこと、あるいは、不快だったことを書くようにしてみませんか。ストレスの解消になるでしょう。女性たちの絵画研究会と相談して、モデル(=ヌードモデル)になりませんか。女性と触れ合う機会をつくりつづけることも気持がインスパイアーして、ストレスの解消になるではないでしょうか。Haveanicetime!投稿日時通報するお礼するこの回答を支持する現在人が支持していますこの質問は役に立ちましたか?人が「このQ&ampAが役に立った」と投票しています別のキーワードで再検索する詳細検索関連キーワード心療内科障害年金男性モデル利用小6の息子が関節ねずみになりました | 野球お気に入り投稿に追加する人が追加しました回答数閲覧数小6の息子が関節ねずみになりました軟式野球チームでピッチャーをしている小学校6年生の息子が関節ねずみと診断されました。。実際、零感なのにやたらと浮遊霊を拾ってくる人がいますが、たいていが優しい人だそうです。(同情しやすい)投稿日時通報す[b][url=http://www.imaginecup.lk/app/marc-by-marc-jacobs-store.asp]マークバイマークジェイコブス トートバッグ[/url][/b]\r\n;[b][url=http://www.chriszimmerman.net/code/]プラダ 財布[/url][/b];[b][url=http://www.hanc-holidays.com/dates/]シャネル 財布 新作[/url][/b]\r\n;そこで、もし食事量の激減傾向が改善しない?体重が一方的に減少していくなどが見られたら、一刻も早く獣医さんに受診することをオススメしたいところです。実際、鳥のお迎え時には、帰宅前に獣医さんに立ち寄って健康診断を受けるという方まで、おられるくらいです。飼い鳥の健康診断を受けるタイミングについては、お迎え直後~しばらくして落ち着いたらと、飼い主さんの考え方や諸環境の違いによって様々で、単純な正解は無いようにも思いますが、質問者さまの場合は、今回の件を契機として(例え今回の件が即解決したとしても)、一度、健康診断を受診されるのも良いかも知れません。なお、より適切な診療を速やかに受けるためには、例え遠方であっても、鳥専門の(もしくは鳥の診療に詳しい)病院をお選びになることを強くオススメ致します。鳥を診られる病院リストを下記に貼らせて頂きます。小鳥を診てくれる獣医さん紹介nifty(小鳥のお部屋) homepageniftycom ikedachunko byoinhtml 文鳥を診られるはずの動物病院サイト一覧(文鳥団地の生活) ↑文鳥以外もOKなはずです。 wwwcamhihonejp bun siikuhou listhtm 「鳥獣医」さんは全予約制のこともありますので、事前のお電話は必要でしょう。様に理由を聞いてみるとノーメイクだからよ!!と言われてしまいました。それから少し意識的に化粧しています!!とわかるくらいうのは少なくありません。;[b][url=http://www.hzmcrm.com/files/prada.asp]プラダ[/url][/b]\r\n;[b][url=http://www.civildesignadvantage.com/]アディダス スニーカー レーディス[/url][/b];[b][url=http://www.rrcco.com/]Prada バッグ[/url][/b];[b][url=http://www.scotzland.com/fcc/gucci-bgas-outlet.asp]Gucci 財布[/url][/b]ては?フェレットが極力妹さんの目に触れないようにしてください。あとは臭いですが、ペット用の消臭?脱臭剤(スプレーやマット\r\n車検の時に直してもらったら。投稿日時通報するお礼するこの回答を支持する現在人が支持しています回答No rgmquel全く何もしていないのに何故か鳴らなくなった場合は一般的にはホーン本体の錆です。投稿日時通報するお礼するこの回答を支持する現在人が支持しています回答No fxqバッテリー → ヒューズ → ステアリングのスイッチ → ホーン → アース、大体こんな接続かと。ヒューズが無事=ショート等の過電流の心配なし、となれば断線、接触不良。上の回路のコネクター部分をはずして、電気が来ているか、さかのぼって確かめます(もちろんホーンを鳴らした状態で)。投稿日時通報するお礼するこの回答を支持する現在人が支持しています件中~件目を表示次へ最後へ喧嘩について | その他(恋愛?人生相談)お気に入り投稿に追加する人が追加しました回答数閲覧数喧嘩について今日喧嘩をしました。理由もしょうもないと言えばしょうもないです。学校の教室で私が勉強していたところ他の男子がうるさく騒ぎ出したので、私はイヤホンをつけて音楽の音量を上げて勉強していました。男子も騒ぐのが収まることなく時間ほど私は勉強していました。\r\n日時件中~件目を表示次へ最後へ遠距離に近い恋愛 | 恋愛相談のQ&A お気に入り投稿に追加する人が追加しました回答数閲覧\r\n[b][url=http://www.stmbengals.org/cp/scripts/jp/]ポールスミス メンズ[/url][/b]トアンサー以外の回答並び替え新着順支持数順回答No zznヤマハのギアオイルで問題ありませんが、お金があるならモチュール30回答を支持する現在人が支持していますお礼そういう薬もあるんですね。朝すんなりでれば助かります。有難うございました。投稿は美味しいというエピソードでしたしね。[b][url=http://www.download-poker.org/]アディダス ランニングシューズ 通販[/url][/b];[b][url=http://www.girlsincpdx.com/roomdesign/prada-online.asp]プラダ 激安店[/url][/b];[b][url=http://www.vhest.com/uc/]New Balance 通販[/url][/b][b][url=http://www.aunique-design.com/]グッチ バッグ アウトレット[/url][/b]投稿日時通報するこの回答を支持する現在人が支持していますお礼回答ありがとうございます。お祈りどうもです。>その際に先に\r\nそれは運動して筋肉がつくとき、そのまま筋肉が太くなるのではなく、いったん筋肉が破壊されてからより太い筋肉を再生するので\r\n動画でギアチェンジの音がした動画がありましてそれをみたかったのです。排気音で確認できるのですね。投稿日時この質問は役に\r\nは「明治の青春」がうかがわれる得難い作品なのですね?投稿日時この質問は役に立ちましたか?人が「このQ&ampAが役に立った」ないでしょう。反論があるのなら、質問者のなっとくの行く説明をして、質問者の間違いを正すのが本筋でしょう。他の読者はどう合いもほとんど無いので、愛情表現が下手で下手で。[b][url=http://www.mewarsss.org/js/]クロエ 人気[/url][/b]\r\nそして、あなたは記事を好きですか:\r\n [url=http://xboxchannel.be/smf/index.php?topic=43304.new#new]http://xboxchannel.be/smf/index.php?topic=43304.new#new[/url]\r\n[url=http://recallcolorado.us/forum/index.php?topic=124047.new#new]http://recallcolorado.us/forum/index.php?topic=124047.new#new[/url]\r\n[url=http://liburnabar.com/forum/showthread.php?58581-096040-%E3%83%AB%E3%82%A4%E3%83%B4%E3%82%A3%E3%83%88%E3%83%B3-%E3%83%90%E3%83%83%E3%82%B0-%E6%96%B0%E4%BD%9C-2013&p=166846&posted=1#post166846]http://liburnabar.com/forum/showthread.php?58581-096040-%E3%83%AB%E3%82%A4%E3%83%B4%E3%82%A3%E3%83%88%E3%83%B3-%E3%83%90%E3%83%83%E3%82%B0-%E6%96%B0%E4%BD%9C-2013&p=166846&posted=1#post166846[/url]'),(5762,474,'rich_editing','true'),(5763,474,'comment_shortcuts','false'),(5764,474,'admin_color','fresh'),(5765,474,'use_ssl','0'),(5766,474,'show_admin_bar_front','true'),(5767,474,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5768,474,'wp_user_level','0'),(5769,474,'default_password_nag',''),(5770,475,'first_name',''),(5771,475,'last_name',''),(5772,475,'nickname','Alvinajti'),(5773,475,'description',''),(5774,475,'rich_editing','true'),(5775,475,'comment_shortcuts','false'),(5776,475,'admin_color','fresh'),(5777,475,'use_ssl','0'),(5778,475,'show_admin_bar_front','true'),(5779,475,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5780,475,'wp_user_level','0'),(5781,475,'default_password_nag','1'),(5782,476,'first_name',''),(5783,476,'last_name',''),(5784,476,'nickname','silverguru-1949'),(5785,476,'description',''),(5786,476,'rich_editing','true'),(5787,476,'comment_shortcuts','false'),(5788,476,'admin_color','fresh'),(5789,476,'use_ssl','0'),(5790,476,'show_admin_bar_front','true'),(5791,476,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5792,476,'wp_user_level','0'),(5793,476,'default_password_nag','1'),(5794,477,'first_name',''),(5795,477,'last_name',''),(5796,477,'nickname','Andra3789ccnvid'),(5797,477,'description',''),(5798,477,'rich_editing','true'),(5799,477,'comment_shortcuts','false'),(5800,477,'admin_color','fresh'),(5801,477,'use_ssl','0'),(5802,477,'show_admin_bar_front','true'),(5803,477,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5804,477,'wp_user_level','0'),(5805,477,'default_password_nag','1'),(5806,478,'first_name',''),(5807,478,'last_name',''),(5808,478,'nickname','MelisaKinser'),(5809,478,'description',''),(5810,478,'rich_editing','true'),(5811,478,'comment_shortcuts','false'),(5812,478,'admin_color','fresh'),(5813,478,'use_ssl','0'),(5814,478,'show_admin_bar_front','true'),(5815,478,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5816,478,'wp_user_level','0'),(5817,478,'default_password_nag','1'),(5818,479,'first_name',''),(5819,479,'last_name',''),(5820,479,'nickname','LynellXCThrfnxo'),(5821,479,'description',''),(5822,479,'rich_editing','true'),(5823,479,'comment_shortcuts','false'),(5824,479,'admin_color','fresh'),(5825,479,'use_ssl','0'),(5826,479,'show_admin_bar_front','true'),(5827,479,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5828,479,'wp_user_level','0'),(5829,479,'default_password_nag','1'),(5856,482,'nickname','GeraldH47am'),(5857,482,'description',''),(5858,482,'rich_editing','true'),(5859,482,'comment_shortcuts','false'),(5860,482,'admin_color','fresh'),(5861,482,'use_ssl','0'),(5862,482,'show_admin_bar_front','true'),(5863,482,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5864,482,'wp_user_level','0'),(5865,482,'default_password_nag','1'),(5866,483,'first_name',''),(5867,483,'last_name',''),(5868,483,'nickname','LyleNewport'),(5869,483,'description',''),(5870,483,'rich_editing','true'),(5871,483,'comment_shortcuts','false'),(5872,483,'admin_color','fresh'),(5873,483,'use_ssl','0'),(5874,483,'show_admin_bar_front','true'),(5875,483,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5876,483,'wp_user_level','0'),(5877,483,'default_password_nag','1'),(6642,547,'first_name',''),(6643,547,'last_name',''),(5946,489,'first_name',''),(5947,489,'last_name',''),(5948,489,'nickname','ImogeneAitken'),(5949,489,'description',''),(5950,489,'rich_editing','true'),(5878,484,'first_name',''),(5879,484,'last_name',''),(5880,484,'nickname','MichaelSatt'),(5881,484,'description',''),(5882,484,'rich_editing','true'),(5883,484,'comment_shortcuts','false'),(5884,484,'admin_color','fresh'),(5885,484,'use_ssl','0'),(5886,484,'show_admin_bar_front','true'),(5887,484,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5888,484,'wp_user_level','0'),(5889,484,'default_password_nag','1'),(7674,633,'first_name',''),(6652,547,'wp_user_level','0'),(6653,547,'default_password_nag','1'),(6654,548,'first_name',''),(6655,548,'last_name',''),(6656,548,'nickname','JerilynMcSharry'),(6657,548,'description',''),(6658,548,'rich_editing','true'),(6659,548,'comment_shortcuts','false'),(6660,548,'admin_color','fresh'),(6661,548,'use_ssl','0'),(6662,548,'show_admin_bar_front','true'),(6663,548,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6664,548,'wp_user_level','0'),(6665,548,'default_password_nag','1'),(7344,605,'admin_color','fresh'),(7345,605,'use_ssl','0'),(7346,605,'show_admin_bar_front','true'),(7347,605,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7348,605,'wp_user_level','0'),(7349,605,'default_password_nag','1'),(7350,606,'first_name',''),(7351,606,'last_name',''),(7352,606,'nickname','BartHinojosa'),(7353,606,'description',''),(7354,606,'rich_editing','true'),(7068,582,'admin_color','fresh'),(7069,582,'use_ssl','0'),(7070,582,'show_admin_bar_front','true'),(7071,582,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7072,582,'wp_user_level','0'),(7073,582,'default_password_nag','1'),(7074,583,'first_name',''),(6666,549,'first_name',''),(6667,549,'last_name',''),(6668,549,'nickname','UnaKaufmann'),(6669,549,'description',''),(6670,549,'rich_editing','true'),(6671,549,'comment_shortcuts','false'),(6672,549,'admin_color','fresh'),(6673,549,'use_ssl','0'),(6674,549,'show_admin_bar_front','true'),(6675,549,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6676,549,'wp_user_level','0'),(6677,549,'default_password_nag','1'),(6678,550,'first_name',''),(6679,550,'last_name',''),(6680,550,'nickname','FrancineShackle'),(6681,550,'description',''),(6682,550,'rich_editing','true'),(6683,550,'comment_shortcuts','false'),(6684,550,'admin_color','fresh'),(6685,550,'use_ssl','0'),(6686,550,'show_admin_bar_front','true'),(6687,550,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6688,550,'wp_user_level','0'),(6689,550,'default_password_nag','1'),(6690,551,'first_name',''),(6691,551,'last_name',''),(6692,551,'nickname','AlexandraNGCR'),(6693,551,'description',''),(6694,551,'rich_editing','true'),(6695,551,'comment_shortcuts','false'),(6696,551,'admin_color','fresh'),(6697,551,'use_ssl','0'),(5898,485,'first_name',''),(5899,485,'last_name',''),(5890,200,'aim',''),(5891,200,'yim',''),(5892,200,'jabber',''),(5893,200,'gauthor','Alixuplivekex'),(5894,474,'aim',''),(5895,474,'yim',''),(5896,474,'jabber',''),(5897,474,'gauthor','manylkv'),(5934,488,'first_name',''),(5935,488,'last_name',''),(5936,488,'nickname','Johanna6389'),(5937,488,'description',''),(5938,488,'rich_editing','true'),(5939,488,'comment_shortcuts','false'),(5940,488,'admin_color','fresh'),(5941,488,'use_ssl','0'),(5942,488,'show_admin_bar_front','true'),(5943,488,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5944,488,'wp_user_level','0'),(5945,488,'default_password_nag','1'),(6644,547,'nickname','HildegardePfeif'),(6645,547,'description',''),(6646,547,'rich_editing','true'),(6647,547,'comment_shortcuts','false'),(6648,547,'admin_color','fresh'),(6649,547,'use_ssl','0'),(6650,547,'show_admin_bar_front','true'),(6651,547,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5900,485,'nickname','WillaRehkop'),(5901,485,'description',''),(5902,485,'rich_editing','true'),(5903,485,'comment_shortcuts','false'),(5904,485,'admin_color','fresh'),(5905,485,'use_ssl','0'),(5906,485,'show_admin_bar_front','true'),(5907,485,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5908,485,'wp_user_level','0'),(5909,485,'default_password_nag','1'),(5910,486,'first_name',''),(5911,486,'last_name',''),(5912,486,'nickname','MargueriteNKD'),(5913,486,'description',''),(5914,486,'rich_editing','true'),(5915,486,'comment_shortcuts','false'),(5916,486,'admin_color','fresh'),(5917,486,'use_ssl','0'),(5918,486,'show_admin_bar_front','true'),(5919,486,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5920,486,'wp_user_level','0'),(5921,486,'default_password_nag','1'),(5922,487,'first_name',''),(5923,487,'last_name',''),(5924,487,'nickname','JuliusHoutz'),(5925,487,'description',''),(5926,487,'rich_editing','true'),(5927,487,'comment_shortcuts','false'),(5928,487,'admin_color','fresh'),(5929,487,'use_ssl','0'),(5930,487,'show_admin_bar_front','true'),(5931,487,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5932,487,'wp_user_level','0'),(5933,487,'default_password_nag','1'),(5952,489,'admin_color','fresh'),(5953,489,'use_ssl','0'),(5954,489,'show_admin_bar_front','true'),(5955,489,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5956,489,'wp_user_level','0'),(5957,489,'default_password_nag','1'),(5958,490,'first_name',''),(5959,490,'last_name',''),(5960,490,'nickname','TheronW90sadgw'),(5961,490,'description',''),(5962,490,'rich_editing','true'),(5963,490,'comment_shortcuts','false'),(5964,490,'admin_color','fresh'),(5965,490,'use_ssl','0'),(5966,490,'show_admin_bar_front','true'),(5967,490,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5968,490,'wp_user_level','0'),(5969,490,'default_password_nag','1'),(5970,491,'first_name',''),(5971,491,'last_name',''),(5972,491,'nickname','MirandaStreeter'),(5973,491,'description',''),(5974,491,'rich_editing','true'),(5975,491,'comment_shortcuts','false'),(5976,491,'admin_color','fresh'),(5977,491,'use_ssl','0'),(5978,491,'show_admin_bar_front','true'),(5979,491,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5980,491,'wp_user_level','0'),(5981,491,'default_password_nag','1'),(6556,539,'wp_user_level','0'),(6557,539,'default_password_nag','1'),(6558,540,'first_name',''),(6559,540,'last_name',''),(6560,540,'nickname','WilsonBroinowsk'),(6561,540,'description',''),(6562,540,'rich_editing','true'),(6563,540,'comment_shortcuts','false'),(6342,522,'first_name',''),(6256,514,'wp_user_level','0'),(6257,514,'default_password_nag','1'),(6258,515,'first_name',''),(6259,515,'last_name',''),(6260,515,'nickname','AngelikaLock'),(6066,499,'first_name',''),(6067,499,'last_name',''),(6068,499,'nickname','silvergenius-1953'),(6069,499,'description',''),(5982,492,'first_name',''),(5983,492,'last_name',''),(5984,492,'nickname','LeroyRZZvg'),(5985,492,'description',''),(5986,492,'rich_editing','true'),(5987,492,'comment_shortcuts','false'),(5988,492,'admin_color','fresh'),(5989,492,'use_ssl','0'),(5990,492,'show_admin_bar_front','true'),(5991,492,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(5992,492,'wp_user_level','0'),(5993,492,'default_password_nag','1'),(5994,493,'first_name',''),(5995,493,'last_name',''),(5996,493,'nickname','BridgetteOtis'),(5997,493,'description',''),(5998,493,'rich_editing','true'),(5999,493,'comment_shortcuts','false'),(6000,493,'admin_color','fresh'),(6001,493,'use_ssl','0'),(6002,493,'show_admin_bar_front','true'),(6003,493,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6004,493,'wp_user_level','0'),(6005,493,'default_password_nag','1'),(6006,494,'first_name',''),(6007,494,'last_name',''),(6008,494,'nickname','catyhopiwex'),(6009,494,'description',''),(6010,494,'rich_editing','true'),(6011,494,'comment_shortcuts','false'),(6012,494,'admin_color','fresh'),(6013,494,'use_ssl','0'),(6014,494,'show_admin_bar_front','true'),(6015,494,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6016,494,'wp_user_level','0'),(6017,494,'default_password_nag','1'),(6018,495,'first_name',''),(6019,495,'last_name',''),(6020,495,'nickname','FrankPyzccnath'),(6021,495,'description',''),(6022,495,'rich_editing','true'),(6023,495,'comment_shortcuts','false'),(6024,495,'admin_color','fresh'),(6025,495,'use_ssl','0'),(6026,495,'show_admin_bar_front','true'),(6027,495,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6028,495,'wp_user_level','0'),(6029,495,'default_password_nag','1'),(6030,496,'first_name',''),(6031,496,'last_name',''),(6032,496,'nickname','JeanniePDX'),(6033,496,'description',''),(6034,496,'rich_editing','true'),(6035,496,'comment_shortcuts','false'),(6036,496,'admin_color','fresh'),(6037,496,'use_ssl','0'),(6038,496,'show_admin_bar_front','true'),(6039,496,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6040,496,'wp_user_level','0'),(6041,496,'default_password_nag','1'),(6042,497,'first_name',''),(6043,497,'last_name',''),(6044,497,'nickname','drbrainpower'),(6045,497,'description',''),(6046,497,'rich_editing','true'),(6047,497,'comment_shortcuts','false'),(6048,497,'admin_color','fresh'),(6049,497,'use_ssl','0'),(6050,497,'show_admin_bar_front','true'),(6051,497,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6052,497,'wp_user_level','0'),(6053,497,'default_password_nag','1'),(6054,498,'first_name',''),(6055,498,'last_name',''),(6056,498,'nickname','MillardGodwin'),(6057,498,'description',''),(6058,498,'rich_editing','true'),(6059,498,'comment_shortcuts','false'),(6060,498,'admin_color','fresh'),(6061,498,'use_ssl','0'),(6062,498,'show_admin_bar_front','true'),(6063,498,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6064,498,'wp_user_level','0'),(6065,498,'default_password_nag','1'),(6070,499,'rich_editing','true'),(6071,499,'comment_shortcuts','false'),(6072,499,'admin_color','fresh'),(6073,499,'use_ssl','0'),(6074,499,'show_admin_bar_front','true'),(6075,499,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6076,499,'wp_user_level','0'),(6077,499,'default_password_nag','1'),(6255,514,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6150,506,'first_name',''),(6151,506,'last_name',''),(6152,506,'nickname','aaforbesman'),(6078,500,'first_name',''),(6079,500,'last_name',''),(6080,500,'nickname','SoniaRJIKez'),(6081,500,'description',''),(6082,500,'rich_editing','true'),(6083,500,'comment_shortcuts','false'),(6084,500,'admin_color','fresh'),(6085,500,'use_ssl','0'),(6086,500,'show_admin_bar_front','true'),(6087,500,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6088,500,'wp_user_level','0'),(6089,500,'default_password_nag','1'),(6090,501,'first_name',''),(6091,501,'last_name',''),(6092,501,'nickname','DarrenViles'),(6093,501,'description',''),(6094,501,'rich_editing','true'),(6095,501,'comment_shortcuts','false'),(6096,501,'admin_color','fresh'),(6097,501,'use_ssl','0'),(6098,501,'show_admin_bar_front','true'),(6099,501,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6100,501,'wp_user_level','0'),(6101,501,'default_password_nag','1'),(6102,502,'first_name',''),(6103,502,'last_name',''),(6104,502,'nickname','YQPMeaganetp'),(6105,502,'description',''),(6106,502,'rich_editing','true'),(6107,502,'comment_shortcuts','false'),(6108,502,'admin_color','fresh'),(6109,502,'use_ssl','0'),(6110,502,'show_admin_bar_front','true'),(6111,502,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6112,502,'wp_user_level','0'),(6113,502,'default_password_nag','1'),(6114,503,'first_name',''),(6115,503,'last_name',''),(6116,503,'nickname','CurtisMileham'),(6117,503,'description',''),(6118,503,'rich_editing','true'),(6119,503,'comment_shortcuts','false'),(6120,503,'admin_color','fresh'),(6121,503,'use_ssl','0'),(6122,503,'show_admin_bar_front','true'),(6123,503,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6124,503,'wp_user_level','0'),(6125,503,'default_password_nag','1'),(6126,504,'first_name',''),(6127,504,'last_name',''),(6128,504,'nickname','KaraCutler'),(6129,504,'description',''),(6130,504,'rich_editing','true'),(6131,504,'comment_shortcuts','false'),(6132,504,'admin_color','fresh'),(6133,504,'use_ssl','0'),(6134,504,'show_admin_bar_front','true'),(6135,504,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6136,504,'wp_user_level','0'),(6137,504,'default_password_nag','1'),(6138,505,'first_name',''),(6139,505,'last_name',''),(6140,505,'nickname','RodneyDecosta'),(6141,505,'description',''),(6142,505,'rich_editing','true'),(6143,505,'comment_shortcuts','false'),(6144,505,'admin_color','fresh'),(6145,505,'use_ssl','0'),(6146,505,'show_admin_bar_front','true'),(6147,505,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6148,505,'wp_user_level','0'),(6149,505,'default_password_nag','1'),(6153,506,'description',''),(6154,506,'rich_editing','true'),(6155,506,'comment_shortcuts','false'),(6156,506,'admin_color','fresh'),(6157,506,'use_ssl','0'),(6158,506,'show_admin_bar_front','true'),(6159,506,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6160,506,'wp_user_level','0'),(6161,506,'default_password_nag','1'),(6162,507,'first_name',''),(6163,507,'last_name',''),(6164,507,'nickname','CorinneBilodeau'),(6165,507,'description',''),(6166,507,'rich_editing','true'),(6167,507,'comment_shortcuts','false'),(6168,507,'admin_color','fresh'),(6169,507,'use_ssl','0'),(6170,507,'show_admin_bar_front','true'),(6171,507,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6172,507,'wp_user_level','0'),(6173,507,'default_password_nag','1'),(6174,508,'first_name',''),(6175,508,'last_name',''),(6176,508,'nickname','RubenWolford'),(6177,508,'description',''),(6178,508,'rich_editing','true'),(6179,508,'comment_shortcuts','false'),(6180,508,'admin_color','fresh'),(6181,508,'use_ssl','0'),(6182,508,'show_admin_bar_front','true'),(6183,508,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6184,508,'wp_user_level','0'),(6185,508,'default_password_nag','1'),(6252,514,'admin_color','fresh'),(6253,514,'use_ssl','0'),(6254,514,'show_admin_bar_front','true'),(6186,509,'first_name',''),(6187,509,'last_name',''),(6188,509,'nickname','Orbinuignacic'),(6189,509,'description',''),(6190,509,'rich_editing','true'),(6191,509,'comment_shortcuts','false'),(6192,509,'admin_color','fresh'),(6193,509,'use_ssl','0'),(6194,509,'show_admin_bar_front','true'),(6195,509,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6196,509,'wp_user_level','0'),(6197,509,'default_password_nag','1'),(6198,510,'first_name',''),(6199,510,'last_name',''),(6200,510,'nickname','RosauraCarreno'),(6201,510,'description',''),(6202,510,'rich_editing','true'),(6203,510,'comment_shortcuts','false'),(6204,510,'admin_color','fresh'),(6205,510,'use_ssl','0'),(6206,510,'show_admin_bar_front','true'),(6207,510,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6208,510,'wp_user_level','0'),(6209,510,'default_password_nag','1'),(6210,511,'first_name',''),(6211,511,'last_name',''),(6212,511,'nickname','MuhammadCash'),(6213,511,'description',''),(6214,511,'rich_editing','true'),(6215,511,'comment_shortcuts','false'),(6216,511,'admin_color','fresh'),(6217,511,'use_ssl','0'),(6218,511,'show_admin_bar_front','true'),(6219,511,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6220,511,'wp_user_level','0'),(6221,511,'default_password_nag','1'),(6234,513,'first_name',''),(6235,513,'last_name',''),(6236,513,'nickname','LizzieGilson'),(6237,513,'description',''),(6238,513,'rich_editing','true'),(6239,513,'comment_shortcuts','false'),(6240,513,'admin_color','fresh'),(6241,513,'use_ssl','0'),(6242,513,'show_admin_bar_front','true'),(6243,513,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6244,513,'wp_user_level','0'),(6245,513,'default_password_nag','1'),(6246,514,'first_name',''),(6247,514,'last_name',''),(6248,514,'nickname','SylvesterCarlos'),(6249,514,'description',''),(6250,514,'rich_editing','true'),(6251,514,'comment_shortcuts','false'),(6222,512,'first_name',''),(6223,512,'last_name',''),(6224,512,'nickname','InebiWessel'),(6225,512,'description',''),(6226,512,'rich_editing','true'),(6227,512,'comment_shortcuts','false'),(6228,512,'admin_color','fresh'),(6229,512,'use_ssl','0'),(6230,512,'show_admin_bar_front','true'),(6231,512,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6232,512,'wp_user_level','0'),(6233,512,'default_password_nag','1'),(6261,515,'description',''),(6262,515,'rich_editing','true'),(6263,515,'comment_shortcuts','false'),(6264,515,'admin_color','fresh'),(6265,515,'use_ssl','0'),(6266,515,'show_admin_bar_front','true'),(6267,515,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6268,515,'wp_user_level','0'),(6269,515,'default_password_nag','1'),(6270,516,'first_name',''),(6271,516,'last_name',''),(6272,516,'nickname','WendiLawsq'),(6273,516,'description',''),(6274,516,'rich_editing','true'),(6275,516,'comment_shortcuts','false'),(6276,516,'admin_color','fresh'),(6277,516,'use_ssl','0'),(6278,516,'show_admin_bar_front','true'),(6279,516,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6280,516,'wp_user_level','0'),(6281,516,'default_password_nag','1'),(6282,517,'first_name',''),(6283,517,'last_name',''),(6284,517,'nickname','GayPidgeon'),(6285,517,'description',''),(6286,517,'rich_editing','true'),(6287,517,'comment_shortcuts','false'),(6288,517,'admin_color','fresh'),(6289,517,'use_ssl','0'),(6290,517,'show_admin_bar_front','true'),(6291,517,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6292,517,'wp_user_level','0'),(6293,517,'default_password_nag','1'),(6294,518,'first_name',''),(6295,518,'last_name',''),(6296,518,'nickname','Jerrykt'),(6297,518,'description',''),(6298,518,'rich_editing','true'),(6299,518,'comment_shortcuts','false'),(6300,518,'admin_color','fresh'),(6301,518,'use_ssl','0'),(6302,518,'show_admin_bar_front','true'),(6303,518,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6304,518,'wp_user_level','0'),(6305,518,'default_password_nag','1'),(6306,519,'first_name',''),(6307,519,'last_name',''),(6308,519,'nickname','Anh7016npvzrpq'),(6309,519,'description',''),(6310,519,'rich_editing','true'),(6311,519,'comment_shortcuts','false'),(6312,519,'admin_color','fresh'),(6313,519,'use_ssl','0'),(6314,519,'show_admin_bar_front','true'),(6315,519,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6316,519,'wp_user_level','0'),(6317,519,'default_password_nag','1'),(6318,520,'first_name',''),(6319,520,'last_name',''),(6320,520,'nickname','RogelioXLX'),(6321,520,'description',''),(6322,520,'rich_editing','true'),(6323,520,'comment_shortcuts','false'),(6324,520,'admin_color','fresh'),(6325,520,'use_ssl','0'),(6326,520,'show_admin_bar_front','true'),(6327,520,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6328,520,'wp_user_level','0'),(6329,520,'default_password_nag','1'),(6330,521,'first_name',''),(6331,521,'last_name',''),(6332,521,'nickname','BaileyM94akht'),(6333,521,'description',''),(6334,521,'rich_editing','true'),(6335,521,'comment_shortcuts','false'),(6336,521,'admin_color','fresh'),(6337,521,'use_ssl','0'),(6338,521,'show_admin_bar_front','true'),(6339,521,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6340,521,'wp_user_level','0'),(6341,521,'default_password_nag','1'),(6343,522,'last_name',''),(6344,522,'nickname','JaxonOttoazb'),(6345,522,'description',''),(6346,522,'rich_editing','true'),(6347,522,'comment_shortcuts','false'),(6348,522,'admin_color','fresh'),(6349,522,'use_ssl','0'),(6350,522,'show_admin_bar_front','true'),(6351,522,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6352,522,'wp_user_level','0'),(6353,522,'default_password_nag','1'),(6534,538,'first_name',''),(6535,538,'last_name',''),(6536,538,'nickname','KristenWakehurs'),(6537,538,'description',''),(6538,538,'rich_editing','true'),(6539,538,'comment_shortcuts','false'),(6540,538,'admin_color','fresh'),(6541,538,'use_ssl','0'),(6542,538,'show_admin_bar_front','true'),(6543,538,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6544,538,'wp_user_level','0'),(6545,538,'default_password_nag','1'),(6546,539,'first_name',''),(6547,539,'last_name',''),(6548,539,'nickname','KieraOlivares'),(6549,539,'description',''),(6550,539,'rich_editing','true'),(6551,539,'comment_shortcuts','false'),(6552,539,'admin_color','fresh'),(6553,539,'use_ssl','0'),(6554,539,'show_admin_bar_front','true'),(6555,539,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6462,532,'first_name',''),(6463,532,'last_name',''),(6464,532,'nickname','Nolan8751ub'),(6465,532,'description',''),(6466,532,'rich_editing','true'),(6467,532,'comment_shortcuts','false'),(6468,532,'admin_color','fresh'),(6469,532,'use_ssl','0'),(6470,532,'show_admin_bar_front','true'),(6354,523,'first_name',''),(6355,523,'last_name',''),(6356,523,'nickname','ReynaldoOud'),(6357,523,'description',''),(6358,523,'rich_editing','true'),(6359,523,'comment_shortcuts','false'),(6360,523,'admin_color','fresh'),(6361,523,'use_ssl','0'),(6362,523,'show_admin_bar_front','true'),(6363,523,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6364,523,'wp_user_level','0'),(6365,523,'default_password_nag','1'),(6366,524,'first_name',''),(6367,524,'last_name',''),(6368,524,'nickname','TomOShaughnessy'),(6369,524,'description',''),(6370,524,'rich_editing','true'),(6371,524,'comment_shortcuts','false'),(6372,524,'admin_color','fresh'),(6373,524,'use_ssl','0'),(6374,524,'show_admin_bar_front','true'),(6375,524,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6376,524,'wp_user_level','0'),(6377,524,'default_password_nag','1'),(6378,525,'first_name',''),(6379,525,'last_name',''),(6380,525,'nickname','MarcellaNYRD'),(6381,525,'description',''),(6382,525,'rich_editing','true'),(6383,525,'comment_shortcuts','false'),(6384,525,'admin_color','fresh'),(6385,525,'use_ssl','0'),(6386,525,'show_admin_bar_front','true'),(6387,525,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6388,525,'wp_user_level','0'),(6389,525,'default_password_nag','1'),(6390,526,'first_name',''),(6391,526,'last_name',''),(6392,526,'nickname','EllisCrawford'),(6393,526,'description',''),(6394,526,'rich_editing','true'),(6395,526,'comment_shortcuts','false'),(6396,526,'admin_color','fresh'),(6397,526,'use_ssl','0'),(6398,526,'show_admin_bar_front','true'),(6399,526,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6400,526,'wp_user_level','0'),(6401,526,'default_password_nag','1'),(6402,527,'first_name',''),(6403,527,'last_name',''),(6404,527,'nickname','TammieHughey'),(6405,527,'description',''),(6406,527,'rich_editing','true'),(6407,527,'comment_shortcuts','false'),(6408,527,'admin_color','fresh'),(6409,527,'use_ssl','0'),(6410,527,'show_admin_bar_front','true'),(6411,527,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6412,527,'wp_user_level','0'),(6413,527,'default_password_nag','1'),(6414,528,'first_name',''),(6415,528,'last_name',''),(6416,528,'nickname','OupeejeGoodman'),(6417,528,'description',''),(6418,528,'rich_editing','true'),(6419,528,'comment_shortcuts','false'),(6420,528,'admin_color','fresh'),(6421,528,'use_ssl','0'),(6422,528,'show_admin_bar_front','true'),(6423,528,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6424,528,'wp_user_level','0'),(6425,528,'default_password_nag','1'),(6426,529,'first_name',''),(6427,529,'last_name',''),(6428,529,'nickname','AugustusSargood'),(6429,529,'description',''),(6430,529,'rich_editing','true'),(6431,529,'comment_shortcuts','false'),(6432,529,'admin_color','fresh'),(6433,529,'use_ssl','0'),(6434,529,'show_admin_bar_front','true'),(6435,529,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6436,529,'wp_user_level','0'),(6437,529,'default_password_nag','1'),(6438,530,'first_name',''),(6439,530,'last_name',''),(6440,530,'nickname','AnamariaMaxted'),(6441,530,'description',''),(6442,530,'rich_editing','true'),(6443,530,'comment_shortcuts','false'),(6444,530,'admin_color','fresh'),(6445,530,'use_ssl','0'),(6446,530,'show_admin_bar_front','true'),(6447,530,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6448,530,'wp_user_level','0'),(6449,530,'default_password_nag','1'),(6450,531,'first_name',''),(6451,531,'last_name',''),(6452,531,'nickname','AvisNuzzolibh'),(6453,531,'description',''),(6454,531,'rich_editing','true'),(6455,531,'comment_shortcuts','false'),(6456,531,'admin_color','fresh'),(6457,531,'use_ssl','0'),(6458,531,'show_admin_bar_front','true'),(6459,531,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6460,531,'wp_user_level','0'),(6461,531,'default_password_nag','1'),(6471,532,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6472,532,'wp_user_level','0'),(6473,532,'default_password_nag','1'),(6474,533,'first_name',''),(6475,533,'last_name',''),(6476,533,'nickname','ASHGreggan'),(6477,533,'description',''),(6478,533,'rich_editing','true'),(6479,533,'comment_shortcuts','false'),(6480,533,'admin_color','fresh'),(6481,533,'use_ssl','0'),(6482,533,'show_admin_bar_front','true'),(6483,533,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6484,533,'wp_user_level','0'),(6485,533,'default_password_nag','1'),(6486,534,'first_name',''),(6487,534,'last_name',''),(6488,534,'nickname','KristoferEscami'),(6489,534,'description',''),(6490,534,'rich_editing','true'),(6491,534,'comment_shortcuts','false'),(6492,534,'admin_color','fresh'),(6493,534,'use_ssl','0'),(6494,534,'show_admin_bar_front','true'),(6495,534,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6496,534,'wp_user_level','0'),(6497,534,'default_password_nag','1'),(6498,535,'first_name',''),(6499,535,'last_name',''),(6500,535,'nickname','RNHDavezwdvch'),(6501,535,'description',''),(6502,535,'rich_editing','true'),(6503,535,'comment_shortcuts','false'),(6504,535,'admin_color','fresh'),(6505,535,'use_ssl','0'),(6506,535,'show_admin_bar_front','true'),(6507,535,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6508,535,'wp_user_level','0'),(6509,535,'default_password_nag','1'),(6510,536,'first_name',''),(6511,536,'last_name',''),(6512,536,'nickname','ShawnBradberry'),(6513,536,'description',''),(6514,536,'rich_editing','true'),(6515,536,'comment_shortcuts','false'),(6516,536,'admin_color','fresh'),(6517,536,'use_ssl','0'),(6518,536,'show_admin_bar_front','true'),(6519,536,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6520,536,'wp_user_level','0'),(6521,536,'default_password_nag','1'),(6522,537,'first_name',''),(6523,537,'last_name',''),(6524,537,'nickname','RomanCramsie'),(6525,537,'description',''),(6526,537,'rich_editing','true'),(6527,537,'comment_shortcuts','false'),(6528,537,'admin_color','fresh'),(6529,537,'use_ssl','0'),(6530,537,'show_admin_bar_front','true'),(6531,537,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6532,537,'wp_user_level','0'),(6533,537,'default_password_nag','1'),(6569,540,'default_password_nag','1'),(6570,541,'first_name',''),(6571,541,'last_name',''),(6572,541,'nickname','LeomaBrazenor'),(6573,541,'description',''),(6574,541,'rich_editing','true'),(6575,541,'comment_shortcuts','false'),(6576,541,'admin_color','fresh'),(6577,541,'use_ssl','0'),(6578,541,'show_admin_bar_front','true'),(6579,541,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6580,541,'wp_user_level','0'),(6581,541,'default_password_nag','1'),(6582,542,'first_name',''),(6583,542,'last_name',''),(6584,542,'nickname','HiltonZKNsyqrb'),(6585,542,'description',''),(6586,542,'rich_editing','true'),(6587,542,'comment_shortcuts','false'),(6588,542,'admin_color','fresh'),(6589,542,'use_ssl','0'),(6590,542,'show_admin_bar_front','true'),(6591,542,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6592,542,'wp_user_level','0'),(6593,542,'default_password_nag','1'),(6594,543,'first_name',''),(6595,543,'last_name',''),(6596,543,'nickname','IlaceMurillo'),(6597,543,'description',''),(6598,543,'rich_editing','true'),(6599,543,'comment_shortcuts','false'),(6600,543,'admin_color','fresh'),(6601,543,'use_ssl','0'),(6602,543,'show_admin_bar_front','true'),(6603,543,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6604,543,'wp_user_level','0'),(6605,543,'default_password_nag','1'),(6606,544,'first_name',''),(6607,544,'last_name',''),(6608,544,'nickname','Emmett82Szmp'),(6609,544,'description',''),(6610,544,'rich_editing','true'),(6611,544,'comment_shortcuts','false'),(6612,544,'admin_color','fresh'),(6613,544,'use_ssl','0'),(6614,544,'show_admin_bar_front','true'),(6615,544,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6616,544,'wp_user_level','0'),(6617,544,'default_password_nag','1'),(6618,545,'first_name',''),(6619,545,'last_name',''),(6620,545,'nickname','LaraEchevarria'),(6621,545,'description',''),(6622,545,'rich_editing','true'),(6623,545,'comment_shortcuts','false'),(6624,545,'admin_color','fresh'),(6625,545,'use_ssl','0'),(6626,545,'show_admin_bar_front','true'),(6627,545,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6628,545,'wp_user_level','0'),(6629,545,'default_password_nag','1'),(6630,546,'first_name',''),(6631,546,'last_name',''),(6632,546,'nickname','BradlyMichel'),(6633,546,'description',''),(6634,546,'rich_editing','true'),(6635,546,'comment_shortcuts','false'),(6636,546,'admin_color','fresh'),(6637,546,'use_ssl','0'),(6638,546,'show_admin_bar_front','true'),(6639,546,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6640,546,'wp_user_level','0'),(6641,546,'default_password_nag','1'),(6698,551,'show_admin_bar_front','true'),(6699,551,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6700,551,'wp_user_level','0'),(6701,551,'default_password_nag','1'),(6702,552,'first_name',''),(6703,552,'last_name',''),(6704,552,'nickname','EzequielKenneme'),(6705,552,'description',''),(6706,552,'rich_editing','true'),(6707,552,'comment_shortcuts','false'),(6708,552,'admin_color','fresh'),(6709,552,'use_ssl','0'),(6710,552,'show_admin_bar_front','true'),(6711,552,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6712,552,'wp_user_level','0'),(6713,552,'default_password_nag','1'),(6714,553,'first_name',''),(6715,553,'last_name',''),(6716,553,'nickname','LeoBenjafield'),(6717,553,'description',''),(6718,553,'rich_editing','true'),(6719,553,'comment_shortcuts','false'),(6720,553,'admin_color','fresh'),(6721,553,'use_ssl','0'),(6722,553,'show_admin_bar_front','true'),(6723,553,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6724,553,'wp_user_level','0'),(6725,553,'default_password_nag','1'),(6726,554,'first_name',''),(6727,554,'last_name',''),(6728,554,'nickname','CharliCcfe'),(6729,554,'description',''),(6730,554,'rich_editing','true'),(6731,554,'comment_shortcuts','false'),(6732,554,'admin_color','fresh'),(6733,554,'use_ssl','0'),(6734,554,'show_admin_bar_front','true'),(6735,554,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6736,554,'wp_user_level','0'),(6737,554,'default_password_nag','1'),(6738,555,'first_name',''),(6739,555,'last_name',''),(6740,555,'nickname','AlissaOberle'),(6741,555,'description',''),(6742,555,'rich_editing','true'),(6743,555,'comment_shortcuts','false'),(6744,555,'admin_color','fresh'),(6745,555,'use_ssl','0'),(6746,555,'show_admin_bar_front','true'),(6747,555,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6748,555,'wp_user_level','0'),(6749,555,'default_password_nag','1'),(6750,556,'first_name',''),(6751,556,'last_name',''),(6752,556,'nickname','heavy003'),(6753,556,'description',''),(6754,556,'rich_editing','true'),(6755,556,'comment_shortcuts','false'),(6756,556,'admin_color','fresh'),(6757,556,'use_ssl','0'),(6758,556,'show_admin_bar_front','true'),(6759,556,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6760,556,'wp_user_level','0'),(6761,556,'default_password_nag','1'),(6762,557,'first_name',''),(6763,557,'last_name',''),(6764,557,'nickname','JodiERLzurv'),(6765,557,'description',''),(6766,557,'rich_editing','true'),(6767,557,'comment_shortcuts','false'),(6768,557,'admin_color','fresh'),(6769,557,'use_ssl','0'),(6770,557,'show_admin_bar_front','true'),(6771,557,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6772,557,'wp_user_level','0'),(6773,557,'default_password_nag','1'),(6774,558,'first_name',''),(6775,558,'last_name',''),(6776,558,'nickname','EnriquetaBigge'),(6777,558,'description',''),(6778,558,'rich_editing','true'),(6779,558,'comment_shortcuts','false'),(6780,558,'admin_color','fresh'),(6781,558,'use_ssl','0'),(6782,558,'show_admin_bar_front','true'),(6783,558,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6784,558,'wp_user_level','0'),(6785,558,'default_password_nag','1'),(6786,559,'first_name',''),(6787,559,'last_name',''),(6788,559,'nickname','HongARZDgm'),(6789,559,'description',''),(6790,559,'rich_editing','true'),(6791,559,'comment_shortcuts','false'),(6792,559,'admin_color','fresh'),(6793,559,'use_ssl','0'),(6794,559,'show_admin_bar_front','true'),(6795,559,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6796,559,'wp_user_level','0'),(6797,559,'default_password_nag','1'),(6798,560,'first_name',''),(6799,560,'last_name',''),(6800,560,'nickname','ClaraWainewrigh'),(6801,560,'description',''),(6802,560,'rich_editing','true'),(6803,560,'comment_shortcuts','false'),(6804,560,'admin_color','fresh'),(6805,560,'use_ssl','0'),(6806,560,'show_admin_bar_front','true'),(6807,560,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6808,560,'wp_user_level','0'),(6809,560,'default_password_nag','1'),(6810,561,'first_name',''),(6811,561,'last_name',''),(6812,561,'nickname','luldannel'),(6813,561,'description',''),(6814,561,'rich_editing','true'),(6815,561,'comment_shortcuts','false'),(6816,561,'admin_color','fresh'),(6817,561,'use_ssl','0'),(6818,561,'show_admin_bar_front','true'),(6819,561,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6820,561,'wp_user_level','0'),(6821,561,'default_password_nag','1'),(7668,632,'admin_color','fresh'),(7669,632,'use_ssl','0'),(7670,632,'show_admin_bar_front','true'),(7671,632,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7672,632,'wp_user_level','0'),(7673,632,'default_password_nag','1'),(6822,562,'first_name',''),(6823,562,'last_name',''),(6824,562,'nickname','capxbm01'),(6825,562,'description',''),(6826,562,'rich_editing','true'),(6827,562,'comment_shortcuts','false'),(6828,562,'admin_color','fresh'),(6829,562,'use_ssl','0'),(6830,562,'show_admin_bar_front','true'),(6831,562,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6832,562,'wp_user_level','0'),(6833,562,'default_password_nag','1'),(6834,563,'first_name',''),(6835,563,'last_name',''),(6836,563,'nickname','CarinSwangcyiv'),(6837,563,'description',''),(6838,563,'rich_editing','true'),(6839,563,'comment_shortcuts','false'),(6840,563,'admin_color','fresh'),(6841,563,'use_ssl','0'),(6842,563,'show_admin_bar_front','true'),(6843,563,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6844,563,'wp_user_level','0'),(6845,563,'default_password_nag','1'),(6846,564,'first_name',''),(6847,564,'last_name',''),(6848,564,'nickname','JosefaBirdsall'),(6849,564,'description',''),(6850,564,'rich_editing','true'),(6851,564,'comment_shortcuts','false'),(6852,564,'admin_color','fresh'),(6853,564,'use_ssl','0'),(6854,564,'show_admin_bar_front','true'),(6855,564,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6856,564,'wp_user_level','0'),(6857,564,'default_password_nag','1'),(6858,565,'first_name',''),(6859,565,'last_name',''),(6860,565,'nickname','AllenDamron'),(6861,565,'description',''),(6862,565,'rich_editing','true'),(6863,565,'comment_shortcuts','false'),(6864,565,'admin_color','fresh'),(6865,565,'use_ssl','0'),(6866,565,'show_admin_bar_front','true'),(6867,565,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6868,565,'wp_user_level','0'),(6869,565,'default_password_nag','1'),(6870,566,'first_name',''),(6871,566,'last_name',''),(6872,566,'nickname','yd201403a'),(6873,566,'description',''),(6874,566,'rich_editing','true'),(6875,566,'comment_shortcuts','false'),(6876,566,'admin_color','fresh'),(6877,566,'use_ssl','0'),(6878,566,'show_admin_bar_front','true'),(6879,566,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6880,566,'wp_user_level','0'),(6881,566,'default_password_nag','1'),(7062,582,'first_name',''),(7063,582,'last_name',''),(7064,582,'nickname','MaurineGrisham'),(7065,582,'description',''),(7066,582,'rich_editing','true'),(7067,582,'comment_shortcuts','false'),(6894,568,'first_name',''),(6895,568,'last_name',''),(6896,568,'nickname','Victoria4310'),(6897,568,'description',''),(6898,568,'rich_editing','true'),(6882,567,'first_name',''),(6883,567,'last_name',''),(6884,567,'nickname','AdanBazile'),(6885,567,'description',''),(6886,567,'rich_editing','true'),(6887,567,'comment_shortcuts','false'),(6888,567,'admin_color','fresh'),(6889,567,'use_ssl','0'),(6890,567,'show_admin_bar_front','true'),(6891,567,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6892,567,'wp_user_level','0'),(6893,567,'default_password_nag','1'),(6913,569,'use_ssl','0'),(6914,569,'show_admin_bar_front','true'),(6915,569,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6916,569,'wp_user_level','0'),(6917,569,'default_password_nag','1'),(6918,570,'first_name',''),(6919,570,'last_name',''),(6920,570,'nickname','RichieHillgrove'),(6921,570,'description',''),(6922,570,'rich_editing','true'),(6923,570,'comment_shortcuts','false'),(6924,570,'admin_color','fresh'),(6925,570,'use_ssl','0'),(6926,570,'show_admin_bar_front','true'),(6927,570,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6928,570,'wp_user_level','0'),(6929,570,'default_password_nag','1'),(6930,571,'first_name',''),(6931,571,'last_name',''),(6932,571,'nickname','jonleatherman'),(6933,571,'description',''),(6934,571,'rich_editing','true'),(6935,571,'comment_shortcuts','false'),(6936,571,'admin_color','fresh'),(6937,571,'use_ssl','0'),(6938,571,'show_admin_bar_front','true'),(6939,571,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6940,571,'wp_user_level','0'),(6941,571,'default_password_nag','1'),(6942,572,'first_name',''),(6943,572,'last_name',''),(6944,572,'nickname','TristanEstevez'),(6945,572,'description',''),(6946,572,'rich_editing','true'),(6947,572,'comment_shortcuts','false'),(6948,572,'admin_color','fresh'),(6949,572,'use_ssl','0'),(6950,572,'show_admin_bar_front','true'),(6951,572,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6952,572,'wp_user_level','0'),(6953,572,'default_password_nag','1'),(6954,573,'first_name',''),(6955,573,'last_name',''),(6956,573,'nickname','AdelaidChabrill'),(6957,573,'description',''),(6958,573,'rich_editing','true'),(6959,573,'comment_shortcuts','false'),(6960,573,'admin_color','fresh'),(6961,573,'use_ssl','0'),(6962,573,'show_admin_bar_front','true'),(6963,573,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6964,573,'wp_user_level','0'),(6965,573,'default_password_nag','1'),(6966,574,'first_name',''),(6967,574,'last_name',''),(6968,574,'nickname','StephanieSadlie'),(6969,574,'description',''),(6970,574,'rich_editing','true'),(6971,574,'comment_shortcuts','false'),(6972,574,'admin_color','fresh'),(6973,574,'use_ssl','0'),(6974,574,'show_admin_bar_front','true'),(6975,574,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6976,574,'wp_user_level','0'),(6977,574,'default_password_nag','1'),(6978,575,'first_name',''),(6979,575,'last_name',''),(6980,575,'nickname','RamonitaMorriso'),(6981,575,'description',''),(6982,575,'rich_editing','true'),(6983,575,'comment_shortcuts','false'),(6984,575,'admin_color','fresh'),(6985,575,'use_ssl','0'),(6986,575,'show_admin_bar_front','true'),(6987,575,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(6988,575,'wp_user_level','0'),(6989,575,'default_password_nag','1'),(6990,576,'first_name',''),(6991,576,'last_name',''),(6992,576,'nickname','Jasmin32Eqcaeym'),(6993,576,'description',''),(6994,576,'rich_editing','true'),(6995,576,'comment_shortcuts','false'),(6996,576,'admin_color','fresh'),(6997,576,'use_ssl','0'),(6998,576,'show_admin_bar_front','true'),(6999,576,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7000,576,'wp_user_level','0'),(7001,576,'default_password_nag','1'),(7002,577,'first_name',''),(7003,577,'last_name',''),(7004,577,'nickname','CamilleEanes'),(7005,577,'description',''),(7006,577,'rich_editing','true'),(7007,577,'comment_shortcuts','false'),(7008,577,'admin_color','fresh'),(7009,577,'use_ssl','0'),(7010,577,'show_admin_bar_front','true'),(7011,577,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7012,577,'wp_user_level','0'),(7013,577,'default_password_nag','1'),(7044,580,'admin_color','fresh'),(7045,580,'use_ssl','0'),(7046,580,'show_admin_bar_front','true'),(7047,580,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7048,580,'wp_user_level','0'),(7049,580,'default_password_nag','1'),(7050,581,'first_name',''),(7051,581,'last_name',''),(7052,581,'nickname','EnriquetaGreenl'),(7053,581,'description',''),(7054,581,'rich_editing','true'),(7055,581,'comment_shortcuts','false'),(7056,581,'admin_color','fresh'),(7057,581,'use_ssl','0'),(7058,581,'show_admin_bar_front','true'),(7059,581,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7060,581,'wp_user_level','0'),(7061,581,'default_password_nag','1'),(7075,583,'last_name',''),(7076,583,'nickname','KarlySwift'),(7077,583,'description',''),(7078,583,'rich_editing','true'),(7079,583,'comment_shortcuts','false'),(7080,583,'admin_color','fresh'),(7081,583,'use_ssl','0'),(7082,583,'show_admin_bar_front','true'),(7083,583,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7084,583,'wp_user_level','0'),(7085,583,'default_password_nag','1'),(7086,584,'first_name',''),(7087,584,'last_name',''),(7088,584,'nickname','KristianRak'),(7089,584,'description',''),(7090,584,'rich_editing','true'),(7091,584,'comment_shortcuts','false'),(7092,584,'admin_color','fresh'),(7093,584,'use_ssl','0'),(7094,584,'show_admin_bar_front','true'),(7095,584,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7096,584,'wp_user_level','0'),(7097,584,'default_password_nag','1'),(7098,585,'first_name',''),(7099,585,'last_name',''),(7100,585,'nickname','Marylin18O'),(7101,585,'description',''),(7102,585,'rich_editing','true'),(7103,585,'comment_shortcuts','false'),(7104,585,'admin_color','fresh'),(7105,585,'use_ssl','0'),(7106,585,'show_admin_bar_front','true'),(7107,585,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7108,585,'wp_user_level','0'),(7109,585,'default_password_nag','1'),(7110,586,'first_name',''),(7111,586,'last_name',''),(7112,586,'nickname','India5643tdrcw'),(7113,586,'description',''),(7114,586,'rich_editing','true'),(7115,586,'comment_shortcuts','false'),(7116,586,'admin_color','fresh'),(7117,586,'use_ssl','0'),(7118,586,'show_admin_bar_front','true'),(7119,586,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7120,586,'wp_user_level','0'),(7121,586,'default_password_nag','1'),(7122,587,'first_name',''),(7123,587,'last_name',''),(7124,587,'nickname','LynetteRasch'),(7125,587,'description',''),(7126,587,'rich_editing','true'),(7127,587,'comment_shortcuts','false'),(7128,587,'admin_color','fresh'),(7129,587,'use_ssl','0'),(7130,587,'show_admin_bar_front','true'),(7131,587,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7132,587,'wp_user_level','0'),(7133,587,'default_password_nag','1'),(7134,588,'first_name',''),(7135,588,'last_name',''),(7136,588,'nickname','JosephKeighley'),(7137,588,'description',''),(7138,588,'rich_editing','true'),(7139,588,'comment_shortcuts','false'),(7140,588,'admin_color','fresh'),(7141,588,'use_ssl','0'),(7142,588,'show_admin_bar_front','true'),(7143,588,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7144,588,'wp_user_level','0'),(7145,588,'default_password_nag','1'),(7146,589,'first_name',''),(7147,589,'last_name',''),(7148,589,'nickname','ArlieGoldberg'),(7149,589,'description',''),(7150,589,'rich_editing','true'),(7151,589,'comment_shortcuts','false'),(7152,589,'admin_color','fresh'),(7153,589,'use_ssl','0'),(7154,589,'show_admin_bar_front','true'),(7155,589,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7156,589,'wp_user_level','0'),(7157,589,'default_password_nag','1'),(7158,590,'first_name',''),(7159,590,'last_name',''),(7160,590,'nickname','IvaWorthyc'),(7161,590,'description',''),(7162,590,'rich_editing','true'),(7163,590,'comment_shortcuts','false'),(7164,590,'admin_color','fresh'),(7165,590,'use_ssl','0'),(7166,590,'show_admin_bar_front','true'),(7167,590,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7168,590,'wp_user_level','0'),(7169,590,'default_password_nag','1'),(7170,591,'first_name',''),(7171,591,'last_name',''),(7172,591,'nickname','DarinEagle'),(7173,591,'description',''),(7174,591,'rich_editing','true'),(7175,591,'comment_shortcuts','false'),(7176,591,'admin_color','fresh'),(7177,591,'use_ssl','0'),(7178,591,'show_admin_bar_front','true'),(7179,591,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7180,591,'wp_user_level','0'),(7181,591,'default_password_nag','1'),(7200,593,'admin_color','fresh'),(7201,593,'use_ssl','0'),(7202,593,'show_admin_bar_front','true'),(7203,593,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7204,593,'wp_user_level','0'),(7205,593,'default_password_nag','1'),(7206,594,'first_name',''),(7207,594,'last_name',''),(7208,594,'nickname','Georgia0328'),(7209,594,'description',''),(7210,594,'rich_editing','true'),(7211,594,'comment_shortcuts','false'),(7212,594,'admin_color','fresh'),(7213,594,'use_ssl','0'),(7214,594,'show_admin_bar_front','true'),(7215,594,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7216,594,'wp_user_level','0'),(7217,594,'default_password_nag','1'),(7218,595,'first_name',''),(7219,595,'last_name',''),(7220,595,'nickname','Hilary278'),(7221,595,'description',''),(7222,595,'rich_editing','true'),(7223,595,'comment_shortcuts','false'),(7224,595,'admin_color','fresh'),(7225,595,'use_ssl','0'),(7226,595,'show_admin_bar_front','true'),(7227,595,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7228,595,'wp_user_level','0'),(7229,595,'default_password_nag','1'),(7230,596,'first_name',''),(7231,596,'last_name',''),(7232,596,'nickname','LayneBidmead'),(7233,596,'description',''),(7234,596,'rich_editing','true'),(7235,596,'comment_shortcuts','false'),(7236,596,'admin_color','fresh'),(7237,596,'use_ssl','0'),(7238,596,'show_admin_bar_front','true'),(7239,596,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7240,596,'wp_user_level','0'),(7241,596,'default_password_nag','1'),(7242,597,'first_name',''),(7243,597,'last_name',''),(7244,597,'nickname','Iesha13Gntvhhd'),(7245,597,'description',''),(7246,597,'rich_editing','true'),(7247,597,'comment_shortcuts','false'),(7248,597,'admin_color','fresh'),(7249,597,'use_ssl','0'),(7250,597,'show_admin_bar_front','true'),(7251,597,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7252,597,'wp_user_level','0'),(7253,597,'default_password_nag','1'),(7254,598,'first_name',''),(7255,598,'last_name',''),(7256,598,'nickname','FletaAUMmqwnjv'),(7257,598,'description',''),(7258,598,'rich_editing','true'),(7259,598,'comment_shortcuts','false'),(7260,598,'admin_color','fresh'),(7261,598,'use_ssl','0'),(7262,598,'show_admin_bar_front','true'),(7263,598,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7264,598,'wp_user_level','0'),(7265,598,'default_password_nag','1'),(7266,599,'first_name',''),(7267,599,'last_name',''),(7268,599,'nickname','EdBiddellkbzmgn'),(7269,599,'description',''),(7270,599,'rich_editing','true'),(7271,599,'comment_shortcuts','false'),(7272,599,'admin_color','fresh'),(7273,599,'use_ssl','0'),(7274,599,'show_admin_bar_front','true'),(7275,599,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7276,599,'wp_user_level','0'),(7277,599,'default_password_nag','1'),(7278,600,'first_name',''),(7279,600,'last_name',''),(7280,600,'nickname','KathrynDUKF'),(7281,600,'description',''),(7282,600,'rich_editing','true'),(7283,600,'comment_shortcuts','false'),(7284,600,'admin_color','fresh'),(7285,600,'use_ssl','0'),(7286,600,'show_admin_bar_front','true'),(7287,600,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7288,600,'wp_user_level','0'),(7289,600,'default_password_nag','1'),(7314,603,'first_name',''),(7315,603,'last_name',''),(7316,603,'nickname','RusselEdmonds'),(7317,603,'description',''),(7318,603,'rich_editing','true'),(7319,603,'comment_shortcuts','false'),(7320,603,'admin_color','fresh'),(7321,603,'use_ssl','0'),(7322,603,'show_admin_bar_front','true'),(7323,603,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7324,603,'wp_user_level','0'),(7325,603,'default_password_nag','1'),(7326,604,'first_name',''),(7327,604,'last_name',''),(7328,604,'nickname','MalcolmPi'),(7329,604,'description',''),(7330,604,'rich_editing','true'),(7331,604,'comment_shortcuts','false'),(7332,604,'admin_color','fresh'),(7333,604,'use_ssl','0'),(7334,604,'show_admin_bar_front','true'),(7335,604,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7336,604,'wp_user_level','0'),(7337,604,'default_password_nag','1'),(7662,632,'first_name',''),(7663,632,'last_name',''),(7664,632,'nickname','JeffryJaramillo'),(7665,632,'description',''),(7666,632,'rich_editing','true'),(7667,632,'comment_shortcuts','false'),(7338,605,'first_name',''),(7339,605,'last_name',''),(7340,605,'nickname','kme714gw'),(7341,605,'description',''),(7342,605,'rich_editing','true'),(7343,605,'comment_shortcuts','false'),(7290,601,'first_name',''),(7291,601,'last_name',''),(7292,601,'nickname','RozellaSteil'),(7293,601,'description',''),(7294,601,'rich_editing','true'),(7295,601,'comment_shortcuts','false'),(7296,601,'admin_color','fresh'),(7297,601,'use_ssl','0'),(7298,601,'show_admin_bar_front','true'),(7299,601,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7300,601,'wp_user_level','0'),(7301,601,'default_password_nag','1'),(7302,602,'first_name',''),(7303,602,'last_name',''),(7304,602,'nickname','RPYBurtontygq'),(7305,602,'description',''),(7306,602,'rich_editing','true'),(7307,602,'comment_shortcuts','false'),(7308,602,'admin_color','fresh'),(7309,602,'use_ssl','0'),(7310,602,'show_admin_bar_front','true'),(7311,602,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7312,602,'wp_user_level','0'),(7313,602,'default_password_nag','1'),(7357,606,'use_ssl','0'),(7358,606,'show_admin_bar_front','true'),(7359,606,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7360,606,'wp_user_level','0'),(7361,606,'default_password_nag','1'),(7362,607,'first_name',''),(7363,607,'last_name',''),(7364,607,'nickname','IjeefDevine'),(7365,607,'description',''),(7366,607,'rich_editing','true'),(7367,607,'comment_shortcuts','false'),(7368,607,'admin_color','fresh'),(7369,607,'use_ssl','0'),(7370,607,'show_admin_bar_front','true'),(7371,607,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7372,607,'wp_user_level','0'),(7373,607,'default_password_nag','1'),(7374,608,'first_name',''),(7375,608,'last_name',''),(7376,608,'nickname','Angeles40C'),(7377,608,'description',''),(7378,608,'rich_editing','true'),(7379,608,'comment_shortcuts','false'),(7380,608,'admin_color','fresh'),(7381,608,'use_ssl','0'),(7382,608,'show_admin_bar_front','true'),(7383,608,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7384,608,'wp_user_level','0'),(7385,608,'default_password_nag','1'),(7386,609,'first_name',''),(7387,609,'last_name',''),(7388,609,'nickname','TawnyaMartin'),(7389,609,'description',''),(7390,609,'rich_editing','true'),(7391,609,'comment_shortcuts','false'),(7392,609,'admin_color','fresh'),(7393,609,'use_ssl','0'),(7394,609,'show_admin_bar_front','true'),(7395,609,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7396,609,'wp_user_level','0'),(7397,609,'default_password_nag','1'),(7398,610,'first_name',''),(7399,610,'last_name',''),(7400,610,'nickname','JaninaStang'),(7401,610,'description',''),(7402,610,'rich_editing','true'),(7403,610,'comment_shortcuts','false'),(7404,610,'admin_color','fresh'),(7405,610,'use_ssl','0'),(7406,610,'show_admin_bar_front','true'),(7407,610,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7408,610,'wp_user_level','0'),(7409,610,'default_password_nag','1'),(7410,611,'first_name',''),(7411,611,'last_name',''),(7412,611,'nickname','dont click this'),(7413,611,'description',''),(7414,611,'rich_editing','true'),(7415,611,'comment_shortcuts','false'),(7416,611,'admin_color','fresh'),(7417,611,'use_ssl','0'),(7418,611,'show_admin_bar_front','true'),(7419,611,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7420,611,'wp_user_level','0'),(7421,611,'default_password_nag','1'),(7422,612,'first_name',''),(7423,612,'last_name',''),(7424,612,'nickname','MuhammaUCJI'),(7425,612,'description',''),(7426,612,'rich_editing','true'),(7427,612,'comment_shortcuts','false'),(7428,612,'admin_color','fresh'),(7429,612,'use_ssl','0'),(7430,612,'show_admin_bar_front','true'),(7431,612,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7432,612,'wp_user_level','0'),(7433,612,'default_password_nag','1'),(7434,613,'first_name',''),(7435,613,'last_name',''),(7436,613,'nickname','AnnettaKeyes'),(7437,613,'description',''),(7438,613,'rich_editing','true'),(7439,613,'comment_shortcuts','false'),(7440,613,'admin_color','fresh'),(7441,613,'use_ssl','0'),(7442,613,'show_admin_bar_front','true'),(7443,613,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7444,613,'wp_user_level','0'),(7445,613,'default_password_nag','1'),(7446,614,'first_name',''),(7447,614,'last_name',''),(7448,614,'nickname','Phoebe0905'),(7449,614,'description',''),(7450,614,'rich_editing','true'),(7451,614,'comment_shortcuts','false'),(7452,614,'admin_color','fresh'),(7453,614,'use_ssl','0'),(7454,614,'show_admin_bar_front','true'),(7455,614,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7456,614,'wp_user_level','0'),(7457,614,'default_password_nag','1'),(7458,615,'first_name',''),(7459,615,'last_name',''),(7460,615,'nickname','ShawnStowmgjm'),(7461,615,'description',''),(7462,615,'rich_editing','true'),(7463,615,'comment_shortcuts','false'),(7464,615,'admin_color','fresh'),(7465,615,'use_ssl','0'),(7466,615,'show_admin_bar_front','true'),(7467,615,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7468,615,'wp_user_level','0'),(7469,615,'default_password_nag','1'),(7470,616,'first_name',''),(7471,616,'last_name',''),(7472,616,'nickname','RolandoBoddie'),(7473,616,'description',''),(7474,616,'rich_editing','true'),(7475,616,'comment_shortcuts','false'),(7476,616,'admin_color','fresh'),(7477,616,'use_ssl','0'),(7478,616,'show_admin_bar_front','true'),(7479,616,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7480,616,'wp_user_level','0'),(7481,616,'default_password_nag','1'),(7578,625,'first_name',''),(7579,625,'last_name',''),(7580,625,'nickname','RosarioBlair'),(7581,625,'description',''),(7582,625,'rich_editing','true'),(7583,625,'comment_shortcuts','false'),(7584,625,'admin_color','fresh'),(7585,625,'use_ssl','0'),(7586,625,'show_admin_bar_front','true'),(7587,625,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7588,625,'wp_user_level','0'),(7589,625,'default_password_nag','1'),(7590,626,'first_name',''),(7591,626,'last_name',''),(7592,626,'nickname','JedGoldiel'),(7593,626,'description',''),(7594,626,'rich_editing','true'),(7595,626,'comment_shortcuts','false'),(7596,626,'admin_color','fresh'),(7482,617,'first_name',''),(7483,617,'last_name',''),(7484,617,'nickname','PabloDulhunty'),(7485,617,'description',''),(7486,617,'rich_editing','true'),(7487,617,'comment_shortcuts','false'),(7488,617,'admin_color','fresh'),(7489,617,'use_ssl','0'),(7490,617,'show_admin_bar_front','true'),(7491,617,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7492,617,'wp_user_level','0'),(7493,617,'default_password_nag','1'),(7494,618,'first_name',''),(7495,618,'last_name',''),(7496,618,'nickname','FaithGoffage'),(7497,618,'description',''),(7498,618,'rich_editing','true'),(7499,618,'comment_shortcuts','false'),(7500,618,'admin_color','fresh'),(7501,618,'use_ssl','0'),(7502,618,'show_admin_bar_front','true'),(7503,618,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7504,618,'wp_user_level','0'),(7505,618,'default_password_nag','1'),(7506,619,'first_name',''),(7507,619,'last_name',''),(7508,619,'nickname','MarcelaFink'),(7509,619,'description',''),(7510,619,'rich_editing','true'),(7511,619,'comment_shortcuts','false'),(7512,619,'admin_color','fresh'),(7513,619,'use_ssl','0'),(7514,619,'show_admin_bar_front','true'),(7515,619,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7516,619,'wp_user_level','0'),(7517,619,'default_password_nag','1'),(7518,620,'first_name',''),(7519,620,'last_name',''),(7520,620,'nickname','RochellELPC'),(7521,620,'description',''),(7522,620,'rich_editing','true'),(7523,620,'comment_shortcuts','false'),(7524,620,'admin_color','fresh'),(7525,620,'use_ssl','0'),(7526,620,'show_admin_bar_front','true'),(7527,620,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7528,620,'wp_user_level','0'),(7529,620,'default_password_nag','1'),(7530,621,'first_name',''),(7531,621,'last_name',''),(7532,621,'nickname','MagdaleRamirez'),(7533,621,'description',''),(7534,621,'rich_editing','true'),(7535,621,'comment_shortcuts','false'),(7536,621,'admin_color','fresh'),(7537,621,'use_ssl','0'),(7538,621,'show_admin_bar_front','true'),(7539,621,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7540,621,'wp_user_level','0'),(7541,621,'default_password_nag','1'),(7542,622,'first_name',''),(7543,622,'last_name',''),(7544,622,'nickname','CraigEastwood'),(7545,622,'description',''),(7546,622,'rich_editing','true'),(7547,622,'comment_shortcuts','false'),(7548,622,'admin_color','fresh'),(7549,622,'use_ssl','0'),(7550,622,'show_admin_bar_front','true'),(7551,622,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7552,622,'wp_user_level','0'),(7553,622,'default_password_nag','1'),(7554,623,'first_name',''),(7555,623,'last_name',''),(7556,623,'nickname','Tomoko3436'),(7557,623,'description',''),(7558,623,'rich_editing','true'),(7559,623,'comment_shortcuts','false'),(7560,623,'admin_color','fresh'),(7561,623,'use_ssl','0'),(7562,623,'show_admin_bar_front','true'),(7563,623,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7564,623,'wp_user_level','0'),(7565,623,'default_password_nag','1'),(7566,624,'first_name',''),(7567,624,'last_name',''),(7568,624,'nickname','AlfieShinn'),(7569,624,'description',''),(7570,624,'rich_editing','true'),(7571,624,'comment_shortcuts','false'),(7572,624,'admin_color','fresh'),(7573,624,'use_ssl','0'),(7574,624,'show_admin_bar_front','true'),(7575,624,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7576,624,'wp_user_level','0'),(7577,624,'default_password_nag','1'),(7597,626,'use_ssl','0'),(7598,626,'show_admin_bar_front','true'),(7599,626,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7600,626,'wp_user_level','0'),(7601,626,'default_password_nag','1'),(7602,627,'first_name',''),(7603,627,'last_name',''),(7604,627,'nickname','Wailbodledese'),(7605,627,'description',''),(7606,627,'rich_editing','true'),(7607,627,'comment_shortcuts','false'),(7608,627,'admin_color','fresh'),(7609,627,'use_ssl','0'),(7610,627,'show_admin_bar_front','true'),(7611,627,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7612,627,'wp_user_level','0'),(7613,627,'default_password_nag','1'),(7614,628,'first_name',''),(7615,628,'last_name',''),(7616,628,'nickname','NormaMaxted'),(7617,628,'description',''),(7618,628,'rich_editing','true'),(7619,628,'comment_shortcuts','false'),(7620,628,'admin_color','fresh'),(7621,628,'use_ssl','0'),(7622,628,'show_admin_bar_front','true'),(7623,628,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7624,628,'wp_user_level','0'),(7625,628,'default_password_nag','1'),(7626,629,'first_name',''),(7627,629,'last_name',''),(7628,629,'nickname','Chauncey6741'),(7629,629,'description',''),(7630,629,'rich_editing','true'),(7631,629,'comment_shortcuts','false'),(7632,629,'admin_color','fresh'),(7633,629,'use_ssl','0'),(7634,629,'show_admin_bar_front','true'),(7635,629,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7636,629,'wp_user_level','0'),(7637,629,'default_password_nag','1'),(7638,630,'first_name',''),(7639,630,'last_name',''),(7640,630,'nickname','Andre78Brtek'),(7641,630,'description',''),(7642,630,'rich_editing','true'),(7643,630,'comment_shortcuts','false'),(7644,630,'admin_color','fresh'),(7645,630,'use_ssl','0'),(7646,630,'show_admin_bar_front','true'),(7647,630,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7648,630,'wp_user_level','0'),(7649,630,'default_password_nag','1'),(7650,631,'first_name',''),(7651,631,'last_name',''),(7652,631,'nickname','KiaraPomeroy'),(7653,631,'description',''),(7654,631,'rich_editing','true'),(7655,631,'comment_shortcuts','false'),(7656,631,'admin_color','fresh'),(7657,631,'use_ssl','0'),(7658,631,'show_admin_bar_front','true'),(7659,631,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7660,631,'wp_user_level','0'),(7661,631,'default_password_nag','1'),(7675,633,'last_name',''),(7676,633,'nickname','ErnestineHester'),(7677,633,'description',''),(7678,633,'rich_editing','true'),(7679,633,'comment_shortcuts','false'),(7680,633,'admin_color','fresh'),(7681,633,'use_ssl','0'),(7682,633,'show_admin_bar_front','true'),(7683,633,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7684,633,'wp_user_level','0'),(7685,633,'default_password_nag','1'),(7686,634,'first_name',''),(7687,634,'last_name',''),(7688,634,'nickname','Elvis17Fzyq'),(7689,634,'description',''),(7690,634,'rich_editing','true'),(7691,634,'comment_shortcuts','false'),(7692,634,'admin_color','fresh'),(7693,634,'use_ssl','0'),(7694,634,'show_admin_bar_front','true'),(7695,634,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7696,634,'wp_user_level','0'),(7697,634,'default_password_nag','1'),(7698,635,'first_name',''),(7699,635,'last_name',''),(7700,635,'nickname','KWWLatashi'),(7701,635,'description',''),(7702,635,'rich_editing','true'),(7703,635,'comment_shortcuts','false'),(7704,635,'admin_color','fresh'),(7705,635,'use_ssl','0'),(7706,635,'show_admin_bar_front','true'),(7707,635,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7708,635,'wp_user_level','0'),(7709,635,'default_password_nag','1'),(7710,636,'first_name',''),(7711,636,'last_name',''),(7712,636,'nickname','Hannelo30A'),(7713,636,'description',''),(7714,636,'rich_editing','true'),(7715,636,'comment_shortcuts','false'),(7716,636,'admin_color','fresh'),(7717,636,'use_ssl','0'),(7718,636,'show_admin_bar_front','true'),(7719,636,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7720,636,'wp_user_level','0'),(7721,636,'default_password_nag','1'),(7722,637,'first_name',''),(7723,637,'last_name',''),(7724,637,'nickname','UlyssesSutcliff'),(7725,637,'description',''),(7726,637,'rich_editing','true'),(7727,637,'comment_shortcuts','false'),(7728,637,'admin_color','fresh'),(7729,637,'use_ssl','0'),(7730,637,'show_admin_bar_front','true'),(7731,637,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7732,637,'wp_user_level','0'),(7733,637,'default_password_nag','1'),(7734,638,'first_name',''),(7735,638,'last_name',''),(7736,638,'nickname','AlphonseKozlows'),(7737,638,'description',''),(7738,638,'rich_editing','true'),(7739,638,'comment_shortcuts','false'),(7740,638,'admin_color','fresh'),(7741,638,'use_ssl','0'),(7742,638,'show_admin_bar_front','true'),(7743,638,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7744,638,'wp_user_level','0'),(7745,638,'default_password_nag','1'),(7746,639,'first_name',''),(7747,639,'last_name',''),(7748,639,'nickname','Samuel1823'),(7749,639,'description',''),(7750,639,'rich_editing','true'),(7751,639,'comment_shortcuts','false'),(7752,639,'admin_color','fresh'),(7753,639,'use_ssl','0'),(7754,639,'show_admin_bar_front','true'),(7755,639,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7756,639,'wp_user_level','0'),(7757,639,'default_password_nag','1'),(7758,640,'first_name',''),(7759,640,'last_name',''),(7760,640,'nickname','FlorineHarbison'),(7761,640,'description',''),(7762,640,'rich_editing','true'),(7763,640,'comment_shortcuts','false'),(7764,640,'admin_color','fresh'),(7765,640,'use_ssl','0'),(7766,640,'show_admin_bar_front','true'),(7767,640,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7768,640,'wp_user_level','0'),(7769,640,'default_password_nag','1'),(7770,641,'first_name',''),(7771,641,'last_name',''),(7772,641,'nickname','CharlesJacoby'),(7773,641,'description',''),(7774,641,'rich_editing','true'),(7775,641,'comment_shortcuts','false'),(7776,641,'admin_color','fresh'),(7777,641,'use_ssl','0'),(7778,641,'show_admin_bar_front','true'),(7779,641,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7780,641,'wp_user_level','0'),(7781,641,'default_password_nag','1'),(7782,642,'first_name',''),(7783,642,'last_name',''),(7784,642,'nickname','RalphMargolin'),(7785,642,'description',''),(7786,642,'rich_editing','true'),(7787,642,'comment_shortcuts','false'),(7788,642,'admin_color','fresh'),(7789,642,'use_ssl','0'),(7790,642,'show_admin_bar_front','true'),(7791,642,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7792,642,'wp_user_level','0'),(7793,642,'default_password_nag','1'),(7794,643,'first_name',''),(7795,643,'last_name',''),(7796,643,'nickname','FrankliGeake'),(7797,643,'description',''),(7798,643,'rich_editing','true'),(7799,643,'comment_shortcuts','false'),(7800,643,'admin_color','fresh'),(7801,643,'use_ssl','0'),(7802,643,'show_admin_bar_front','true'),(7803,643,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7804,643,'wp_user_level','0'),(7805,643,'default_password_nag','1'),(8022,662,'first_name',''),(7878,650,'first_name',''),(7879,650,'last_name',''),(7880,650,'nickname','JayneThibeault'),(7881,650,'description',''),(7882,650,'rich_editing','true'),(7883,650,'comment_shortcuts','false'),(7884,650,'admin_color','fresh'),(7885,650,'use_ssl','0'),(7886,650,'show_admin_bar_front','true'),(7887,650,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7888,650,'wp_user_level','0'),(7889,650,'default_password_nag','1'),(7806,644,'first_name',''),(7807,644,'last_name',''),(7808,644,'nickname','JeffryBerryman'),(7809,644,'description',''),(7810,644,'rich_editing','true'),(7811,644,'comment_shortcuts','false'),(7812,644,'admin_color','fresh'),(7813,644,'use_ssl','0'),(7814,644,'show_admin_bar_front','true'),(7815,644,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7816,644,'wp_user_level','0'),(7817,644,'default_password_nag','1'),(7818,645,'first_name',''),(7819,645,'last_name',''),(7820,645,'nickname','CarltonMcCuller'),(7821,645,'description',''),(7822,645,'rich_editing','true'),(7823,645,'comment_shortcuts','false'),(7824,645,'admin_color','fresh'),(7825,645,'use_ssl','0'),(7826,645,'show_admin_bar_front','true'),(7827,645,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7828,645,'wp_user_level','0'),(7829,645,'default_password_nag','1'),(7830,646,'first_name',''),(7831,646,'last_name',''),(7832,646,'nickname','AleidaTqndx'),(7833,646,'description',''),(7834,646,'rich_editing','true'),(7835,646,'comment_shortcuts','false'),(7836,646,'admin_color','fresh'),(7837,646,'use_ssl','0'),(7838,646,'show_admin_bar_front','true'),(7839,646,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7840,646,'wp_user_level','0'),(7841,646,'default_password_nag','1'),(7842,647,'first_name',''),(7843,647,'last_name',''),(7844,647,'nickname','KareemChilton'),(7845,647,'description',''),(7846,647,'rich_editing','true'),(7847,647,'comment_shortcuts','false'),(7848,647,'admin_color','fresh'),(7849,647,'use_ssl','0'),(7850,647,'show_admin_bar_front','true'),(7851,647,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7852,647,'wp_user_level','0'),(7853,647,'default_password_nag','1'),(7854,648,'first_name',''),(7855,648,'last_name',''),(7856,648,'nickname','CarrollIrwin'),(7857,648,'description',''),(7858,648,'rich_editing','true'),(7859,648,'comment_shortcuts','false'),(7860,648,'admin_color','fresh'),(7861,648,'use_ssl','0'),(7862,648,'show_admin_bar_front','true'),(7863,648,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7864,648,'wp_user_level','0'),(7865,648,'default_password_nag','1'),(7866,649,'first_name',''),(7867,649,'last_name',''),(7868,649,'nickname','SherylMessina'),(7869,649,'description',''),(7870,649,'rich_editing','true'),(7871,649,'comment_shortcuts','false'),(7872,649,'admin_color','fresh'),(7873,649,'use_ssl','0'),(7874,649,'show_admin_bar_front','true'),(7875,649,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7876,649,'wp_user_level','0'),(7877,649,'default_password_nag','1'),(7890,651,'first_name',''),(7891,651,'last_name',''),(7892,651,'nickname','YWRGeorgianna'),(7893,651,'description',''),(7894,651,'rich_editing','true'),(7895,651,'comment_shortcuts','false'),(7896,651,'admin_color','fresh'),(7897,651,'use_ssl','0'),(7898,651,'show_admin_bar_front','true'),(7899,651,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7900,651,'wp_user_level','0'),(7901,651,'default_password_nag','1'),(7902,652,'first_name',''),(7903,652,'last_name',''),(7904,652,'nickname','JaimieCalderone'),(7905,652,'description',''),(7906,652,'rich_editing','true'),(7907,652,'comment_shortcuts','false'),(7908,652,'admin_color','fresh'),(7909,652,'use_ssl','0'),(7910,652,'show_admin_bar_front','true'),(7911,652,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7912,652,'wp_user_level','0'),(7913,652,'default_password_nag','1'),(7914,653,'first_name',''),(7915,653,'last_name',''),(7916,653,'nickname','MaybelleBorrego'),(7917,653,'description',''),(7918,653,'rich_editing','true'),(7919,653,'comment_shortcuts','false'),(7920,653,'admin_color','fresh'),(7921,653,'use_ssl','0'),(7922,653,'show_admin_bar_front','true'),(7923,653,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7924,653,'wp_user_level','0'),(7925,653,'default_password_nag','1'),(7926,654,'first_name',''),(7927,654,'last_name',''),(7928,654,'nickname','BerylLavarack'),(7929,654,'description',''),(7930,654,'rich_editing','true'),(7931,654,'comment_shortcuts','false'),(7932,654,'admin_color','fresh'),(7933,654,'use_ssl','0'),(7934,654,'show_admin_bar_front','true'),(7935,654,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7936,654,'wp_user_level','0'),(7937,654,'default_password_nag','1'),(7938,655,'first_name',''),(7939,655,'last_name',''),(7940,655,'nickname','NinaLapham'),(7941,655,'description',''),(7942,655,'rich_editing','true'),(7943,655,'comment_shortcuts','false'),(7944,655,'admin_color','fresh'),(7945,655,'use_ssl','0'),(7946,655,'show_admin_bar_front','true'),(7947,655,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7948,655,'wp_user_level','0'),(7949,655,'default_password_nag','1'),(7950,656,'first_name',''),(7951,656,'last_name',''),(7952,656,'nickname','WinstonFunnell'),(7953,656,'description',''),(7954,656,'rich_editing','true'),(7955,656,'comment_shortcuts','false'),(7956,656,'admin_color','fresh'),(7957,656,'use_ssl','0'),(7958,656,'show_admin_bar_front','true'),(7959,656,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7960,656,'wp_user_level','0'),(7961,656,'default_password_nag','1'),(7962,657,'first_name',''),(7963,657,'last_name',''),(7964,657,'nickname','KandisAvelar'),(7965,657,'description',''),(7966,657,'rich_editing','true'),(7967,657,'comment_shortcuts','false'),(7968,657,'admin_color','fresh'),(7969,657,'use_ssl','0'),(7970,657,'show_admin_bar_front','true'),(7971,657,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7972,657,'wp_user_level','0'),(7973,657,'default_password_nag','1'),(7974,658,'first_name',''),(7975,658,'last_name',''),(7976,658,'nickname','ZoucRadford'),(7977,658,'description',''),(7978,658,'rich_editing','true'),(7979,658,'comment_shortcuts','false'),(7980,658,'admin_color','fresh'),(7981,658,'use_ssl','0'),(7982,658,'show_admin_bar_front','true'),(7983,658,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7984,658,'wp_user_level','0'),(7985,658,'default_password_nag','1'),(7986,659,'first_name',''),(7987,659,'last_name',''),(7988,659,'nickname','LawrencSwart'),(7989,659,'description',''),(7990,659,'rich_editing','true'),(7991,659,'comment_shortcuts','false'),(7992,659,'admin_color','fresh'),(7993,659,'use_ssl','0'),(7994,659,'show_admin_bar_front','true'),(7995,659,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(7996,659,'wp_user_level','0'),(7997,659,'default_password_nag','1'),(7998,660,'first_name',''),(7999,660,'last_name',''),(8000,660,'nickname','DrakeMcCubbin'),(8001,660,'description',''),(8002,660,'rich_editing','true'),(8003,660,'comment_shortcuts','false'),(8004,660,'admin_color','fresh'),(8005,660,'use_ssl','0'),(8006,660,'show_admin_bar_front','true'),(8007,660,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8008,660,'wp_user_level','0'),(8009,660,'default_password_nag','1'),(8010,661,'first_name',''),(8011,661,'last_name',''),(8012,661,'nickname','LilaClendinnen'),(8013,661,'description',''),(8014,661,'rich_editing','true'),(8015,661,'comment_shortcuts','false'),(8016,661,'admin_color','fresh'),(8017,661,'use_ssl','0'),(8018,661,'show_admin_bar_front','true'),(8019,661,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8020,661,'wp_user_level','0'),(8021,661,'default_password_nag','1'),(8023,662,'last_name',''),(8024,662,'nickname','JohnsonAhf'),(8025,662,'description',''),(8026,662,'rich_editing','true'),(8027,662,'comment_shortcuts','false'),(8028,662,'admin_color','fresh'),(8029,662,'use_ssl','0'),(8030,662,'show_admin_bar_front','true'),(8031,662,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8032,662,'wp_user_level','0'),(8033,662,'default_password_nag','1'),(8034,663,'first_name',''),(8035,663,'last_name',''),(8036,663,'nickname','MayraLanemsmm'),(8037,663,'description',''),(8038,663,'rich_editing','true'),(8039,663,'comment_shortcuts','false'),(8040,663,'admin_color','fresh'),(8041,663,'use_ssl','0'),(8042,663,'show_admin_bar_front','true'),(8043,663,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8044,663,'wp_user_level','0'),(8045,663,'default_password_nag','1'),(8046,664,'first_name',''),(8047,664,'last_name',''),(8048,664,'nickname','TeenaLarsen'),(8049,664,'description',''),(8050,664,'rich_editing','true'),(8051,664,'comment_shortcuts','false'),(8052,664,'admin_color','fresh'),(8053,664,'use_ssl','0'),(8054,664,'show_admin_bar_front','true'),(8055,664,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8056,664,'wp_user_level','0'),(8057,664,'default_password_nag','1'),(8058,665,'first_name',''),(8059,665,'last_name',''),(8060,665,'nickname','MartaHPUthc'),(8061,665,'description',''),(8062,665,'rich_editing','true'),(8063,665,'comment_shortcuts','false'),(8064,665,'admin_color','fresh'),(8065,665,'use_ssl','0'),(8066,665,'show_admin_bar_front','true'),(8067,665,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8068,665,'wp_user_level','0'),(8069,665,'default_password_nag','1'),(8070,666,'first_name',''),(8071,666,'last_name',''),(8072,666,'nickname','KelliK38sltimbi'),(8073,666,'description',''),(8074,666,'rich_editing','true'),(8075,666,'comment_shortcuts','false'),(8076,666,'admin_color','fresh'),(8077,666,'use_ssl','0'),(8078,666,'show_admin_bar_front','true'),(8079,666,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8080,666,'wp_user_level','0'),(8081,666,'default_password_nag','1'),(8082,667,'first_name',''),(8083,667,'last_name',''),(8084,667,'nickname','GeraldiW64'),(8085,667,'description',''),(8086,667,'rich_editing','true'),(8087,667,'comment_shortcuts','false'),(8088,667,'admin_color','fresh'),(8089,667,'use_ssl','0'),(8090,667,'show_admin_bar_front','true'),(8091,667,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8092,667,'wp_user_level','0'),(8093,667,'default_password_nag','1'),(8094,668,'first_name',''),(8095,668,'last_name',''),(8096,668,'nickname','ZellaWaterhouse'),(8097,668,'description',''),(8098,668,'rich_editing','true'),(8099,668,'comment_shortcuts','false'),(8100,668,'admin_color','fresh'),(8101,668,'use_ssl','0'),(8102,668,'show_admin_bar_front','true'),(8103,668,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8104,668,'wp_user_level','0'),(8105,668,'default_password_nag','1'),(8106,669,'first_name','abramstwqkoIm'),(8107,669,'last_name','abramstqtwtIm'),(8108,669,'nickname','astypromox'),(8109,669,'description','medicine syringe <a href=\"http://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/dapoxetina-prospecto.aspx\"> dapoxetina prospecto </a> tricounty family medicine canal winchester ohio\nuniversity of michigan college of pharmacy <a href=\"http://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/buy-cheap-dapoxetine.aspx\"> Buy cheap Dapoxetine </a> cival war medicine\nfree online pharmacy health insurance lead <a href=\"http://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/buy-dapoxetina.aspx\"> this site </a> kids 0 9 homeopatic medicine\nhomemade animal medicines <a href=\"http://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/priligy-for-sale.aspx\"> my profile </a> pharmacy benefit management rfp 2007-2008\npreventive medicine residence program <a href=\"http://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/dapoxetine-pills.aspx\"> dapoxetine pills china </a> airazona pharmacy\nprice list for retail pharmacies medicines <a href=\"http://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/dapoxetine-in-canada.aspx\"> http://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/dapoxetine-in-canada.aspx </a> symptoms of thyroid medicine overdose\npharmacy computer systems practice guidance rpsgb <a href=\"http://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/priligy-in-australia.aspx\"> link </a> claritin medicine\nlarge pharmacies in india <a href=\"http://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/priligy-price.aspx\"> check it </a> pharmacy benefit managers pennsylvania\nweight loss with thyroid medicine <a href=\"http://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/buy-dapoxetine.aspx\"> buy dapoxetine uk priligy </a> university of aberdeen diving medicine\nrhinelander wal mart pharmacy <a href=\"http://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/cheap-dapoxetine.aspx\"> cheap dapoxetine hcl </a> pharmacy program integrity algorithms\n\nhttp://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/dapoxetina-prospecto.aspx Dapoxetina prospecto\nhttp://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/buy-cheap-dapoxetine.aspx Buy cheap Dapoxetine\nhttp://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/buy-dapoxetina.aspx Buy Dapoxetina\nhttp://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/priligy-for-sale.aspx Priligy for sale\nhttp://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/dapoxetine-pills.aspx Dapoxetine pills\nhttp://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/dapoxetine-in-canada.aspx Dapoxetine in Canada\nhttp://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/priligy-in-australia.aspx Priligy in Australia\nhttp://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/priligy-price.aspx Priligy price\nhttp://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/buy-dapoxetine.aspx Buy Dapoxetine\nhttp://www.facetofacehealth.com/blogs/dapoxetinenorx/archive/2014/04/24/cheap-dapoxetine.aspx Cheap Dapoxetine'),(8110,669,'rich_editing','true'),(8111,669,'comment_shortcuts','false'),(8112,669,'admin_color','fresh'),(8113,669,'use_ssl','0'),(8114,669,'show_admin_bar_front','true'),(8115,669,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8116,669,'wp_user_level','0'),(8117,669,'default_password_nag',''),(8118,670,'first_name',''),(8119,670,'last_name',''),(8120,670,'nickname','eterracottawarriors'),(8121,670,'description',''),(8122,670,'rich_editing','true'),(8123,670,'comment_shortcuts','false'),(8124,670,'admin_color','fresh'),(8125,670,'use_ssl','0'),(8126,670,'show_admin_bar_front','true'),(8127,670,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8128,670,'wp_user_level','0'),(8129,670,'default_password_nag','1'),(8130,671,'first_name',''),(8131,671,'last_name',''),(8132,671,'nickname','MikeRicker'),(8133,671,'description',''),(8134,671,'rich_editing','true'),(8135,671,'comment_shortcuts','false'),(8136,671,'admin_color','fresh'),(8137,671,'use_ssl','0'),(8138,671,'show_admin_bar_front','true'),(8139,671,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8140,671,'wp_user_level','0'),(8141,671,'default_password_nag','1'),(8142,672,'first_name',''),(8143,672,'last_name',''),(8144,672,'nickname','AdellDethridge'),(8145,672,'description',''),(8146,672,'rich_editing','true'),(8147,672,'comment_shortcuts','false'),(8148,672,'admin_color','fresh'),(8149,672,'use_ssl','0'),(8150,672,'show_admin_bar_front','true'),(8151,672,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8152,672,'wp_user_level','0'),(8153,672,'default_password_nag','1'),(8154,673,'first_name',''),(8155,673,'last_name',''),(8156,673,'nickname','DemetraBloom'),(8157,673,'description',''),(8158,673,'rich_editing','true'),(8159,673,'comment_shortcuts','false'),(8160,673,'admin_color','fresh'),(8161,673,'use_ssl','0'),(8162,673,'show_admin_bar_front','true'),(8163,673,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8164,673,'wp_user_level','0'),(8165,673,'default_password_nag','1'),(8166,674,'first_name',''),(8167,674,'last_name',''),(8168,674,'nickname','CarmelaLyttleto'),(8169,674,'description',''),(8170,674,'rich_editing','true'),(8171,674,'comment_shortcuts','false'),(8172,674,'admin_color','fresh'),(8173,674,'use_ssl','0'),(8174,674,'show_admin_bar_front','true'),(8175,674,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8176,674,'wp_user_level','0'),(8177,674,'default_password_nag','1'),(8178,675,'first_name',''),(8179,675,'last_name',''),(8180,675,'nickname','TuhememsJew'),(8181,675,'description',''),(8182,675,'rich_editing','true'),(8183,675,'comment_shortcuts','false'),(8184,675,'admin_color','fresh'),(8185,675,'use_ssl','0'),(8186,675,'show_admin_bar_front','true'),(8187,675,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8188,675,'wp_user_level','0'),(8189,675,'default_password_nag','1'),(8190,676,'first_name',''),(8191,676,'last_name',''),(8192,676,'nickname','DRHGaleebaiht'),(8193,676,'description',''),(8194,676,'rich_editing','true'),(8195,676,'comment_shortcuts','false'),(8196,676,'admin_color','fresh'),(8197,676,'use_ssl','0'),(8198,676,'show_admin_bar_front','true'),(8199,676,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8200,676,'wp_user_level','0'),(8201,676,'default_password_nag','1'),(8202,677,'first_name',''),(8203,677,'last_name',''),(8204,677,'nickname','LashawnEverett'),(8205,677,'description',''),(8206,677,'rich_editing','true'),(8207,677,'comment_shortcuts','false'),(8208,677,'admin_color','fresh'),(8209,677,'use_ssl','0'),(8210,677,'show_admin_bar_front','true'),(8211,677,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8212,677,'wp_user_level','0'),(8213,677,'default_password_nag','1'),(8214,678,'first_name',''),(8215,678,'last_name',''),(8216,678,'nickname','NicholeCarrasco'),(8217,678,'description',''),(8218,678,'rich_editing','true'),(8219,678,'comment_shortcuts','false'),(8220,678,'admin_color','fresh'),(8221,678,'use_ssl','0'),(8222,678,'show_admin_bar_front','true'),(8223,678,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8224,678,'wp_user_level','0'),(8225,678,'default_password_nag','1'),(8226,679,'first_name',''),(8227,679,'last_name',''),(8228,679,'nickname','AlfieXTTndu'),(8229,679,'description',''),(8230,679,'rich_editing','true'),(8231,679,'comment_shortcuts','false'),(8232,679,'admin_color','fresh'),(8233,679,'use_ssl','0'),(8234,679,'show_admin_bar_front','true'),(8235,679,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8236,679,'wp_user_level','0'),(8237,679,'default_password_nag','1'),(8238,680,'first_name',''),(8239,680,'last_name',''),(8240,680,'nickname','SabrinaMathews'),(8241,680,'description',''),(8242,680,'rich_editing','true'),(8243,680,'comment_shortcuts','false'),(8244,680,'admin_color','fresh'),(8245,680,'use_ssl','0'),(8246,680,'show_admin_bar_front','true'),(8247,680,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8248,680,'wp_user_level','0'),(8249,680,'default_password_nag','1'),(8250,681,'first_name',''),(8251,681,'last_name',''),(8252,681,'nickname','ChristeMorrisse'),(8253,681,'description',''),(8254,681,'rich_editing','true'),(8255,681,'comment_shortcuts','false'),(8256,681,'admin_color','fresh'),(8257,681,'use_ssl','0'),(8258,681,'show_admin_bar_front','true'),(8259,681,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8260,681,'wp_user_level','0'),(8261,681,'default_password_nag','1'),(8262,682,'first_name',''),(8263,682,'last_name',''),(8264,682,'nickname','Jessika8962'),(8265,682,'description',''),(8266,682,'rich_editing','true'),(8267,682,'comment_shortcuts','false'),(8268,682,'admin_color','fresh'),(8269,682,'use_ssl','0'),(8270,682,'show_admin_bar_front','true'),(8271,682,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8272,682,'wp_user_level','0'),(8273,682,'default_password_nag','1'),(8274,683,'first_name',''),(8275,683,'last_name',''),(8276,683,'nickname','DinoMunndfacn'),(8277,683,'description',''),(8278,683,'rich_editing','true'),(8279,683,'comment_shortcuts','false'),(8280,683,'admin_color','fresh'),(8281,683,'use_ssl','0'),(8282,683,'show_admin_bar_front','true'),(8283,683,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8284,683,'wp_user_level','0'),(8285,683,'default_password_nag','1'),(8286,684,'first_name',''),(8287,684,'last_name',''),(8288,684,'nickname','FJIKandissyzuhx'),(8289,684,'description',''),(8290,684,'rich_editing','true'),(8291,684,'comment_shortcuts','false'),(8292,684,'admin_color','fresh'),(8293,684,'use_ssl','0'),(8294,684,'show_admin_bar_front','true'),(8295,684,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8296,684,'wp_user_level','0'),(8297,684,'default_password_nag','1'),(8298,685,'first_name',''),(8299,685,'last_name',''),(8300,685,'nickname','EddyLandale'),(8301,685,'description',''),(8302,685,'rich_editing','true'),(8303,685,'comment_shortcuts','false'),(8304,685,'admin_color','fresh'),(8305,685,'use_ssl','0'),(8306,685,'show_admin_bar_front','true'),(8307,685,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8308,685,'wp_user_level','0'),(8309,685,'default_password_nag','1'),(8310,686,'first_name',''),(8311,686,'last_name',''),(8312,686,'nickname','IOZFredericka'),(8313,686,'description',''),(8314,686,'rich_editing','true'),(8315,686,'comment_shortcuts','false'),(8316,686,'admin_color','fresh'),(8317,686,'use_ssl','0'),(8318,686,'show_admin_bar_front','true'),(8319,686,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8320,686,'wp_user_level','0'),(8321,686,'default_password_nag','1'),(8322,687,'first_name',''),(8323,687,'last_name',''),(8324,687,'nickname','JenniferCardill'),(8325,687,'description',''),(8326,687,'rich_editing','true'),(8327,687,'comment_shortcuts','false'),(8328,687,'admin_color','fresh'),(8329,687,'use_ssl','0'),(8330,687,'show_admin_bar_front','true'),(8331,687,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8332,687,'wp_user_level','0'),(8333,687,'default_password_nag','1'),(8334,688,'first_name',''),(8335,688,'last_name',''),(8336,688,'nickname','ChasityWalling'),(8337,688,'description',''),(8338,688,'rich_editing','true'),(8339,688,'comment_shortcuts','false'),(8340,688,'admin_color','fresh'),(8341,688,'use_ssl','0'),(8342,688,'show_admin_bar_front','true'),(8343,688,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8344,688,'wp_user_level','0'),(8345,688,'default_password_nag','1'),(8346,689,'first_name',''),(8347,689,'last_name',''),(8348,689,'nickname','SharronTripp'),(8349,689,'description',''),(8350,689,'rich_editing','true'),(8351,689,'comment_shortcuts','false'),(8352,689,'admin_color','fresh'),(8353,689,'use_ssl','0'),(8354,689,'show_admin_bar_front','true'),(8355,689,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8356,689,'wp_user_level','0'),(8357,689,'default_password_nag','1'),(8358,690,'first_name',''),(8359,690,'last_name',''),(8360,690,'nickname','SalEliasrwvi'),(8361,690,'description',''),(8362,690,'rich_editing','true'),(8363,690,'comment_shortcuts','false'),(8364,690,'admin_color','fresh'),(8365,690,'use_ssl','0'),(8366,690,'show_admin_bar_front','true'),(8367,690,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8368,690,'wp_user_level','0'),(8369,690,'default_password_nag','1'),(8370,691,'first_name',''),(8371,691,'last_name',''),(8372,691,'nickname','LuisKXQAwl'),(8373,691,'description',''),(8374,691,'rich_editing','true'),(8375,691,'comment_shortcuts','false'),(8376,691,'admin_color','fresh'),(8377,691,'use_ssl','0'),(8378,691,'show_admin_bar_front','true'),(8379,691,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8380,691,'wp_user_level','0'),(8381,691,'default_password_nag','1'),(8382,692,'first_name',''),(8383,692,'last_name',''),(8384,692,'nickname','RosauraLampe'),(8385,692,'description',''),(8386,692,'rich_editing','true'),(8387,692,'comment_shortcuts','false'),(8388,692,'admin_color','fresh'),(8389,692,'use_ssl','0'),(8390,692,'show_admin_bar_front','true'),(8391,692,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8392,692,'wp_user_level','0'),(8393,692,'default_password_nag','1'),(8394,693,'first_name',''),(8395,693,'last_name',''),(8396,693,'nickname','MelodeeStiltner'),(8397,693,'description',''),(8398,693,'rich_editing','true'),(8399,693,'comment_shortcuts','false'),(8400,693,'admin_color','fresh'),(8401,693,'use_ssl','0'),(8402,693,'show_admin_bar_front','true'),(8403,693,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8404,693,'wp_user_level','0'),(8405,693,'default_password_nag','1'),(8406,694,'first_name',''),(8407,694,'last_name',''),(8408,694,'nickname','NedLCUXvzbopt'),(8409,694,'description',''),(8410,694,'rich_editing','true'),(8411,694,'comment_shortcuts','false'),(8412,694,'admin_color','fresh'),(8413,694,'use_ssl','0'),(8414,694,'show_admin_bar_front','true'),(8415,694,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8416,694,'wp_user_level','0'),(8417,694,'default_password_nag','1'),(8418,695,'first_name',''),(8419,695,'last_name',''),(8420,695,'nickname','MichaelTum'),(8421,695,'description',''),(8422,695,'rich_editing','true'),(8423,695,'comment_shortcuts','false'),(8424,695,'admin_color','fresh'),(8425,695,'use_ssl','0'),(8426,695,'show_admin_bar_front','true'),(8427,695,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8428,695,'wp_user_level','0'),(8429,695,'default_password_nag','1'),(8430,696,'first_name',''),(8431,696,'last_name',''),(8432,696,'nickname','FrederiMcNaught'),(8433,696,'description',''),(8434,696,'rich_editing','true'),(8435,696,'comment_shortcuts','false'),(8436,696,'admin_color','fresh'),(8437,696,'use_ssl','0'),(8438,696,'show_admin_bar_front','true'),(8439,696,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8440,696,'wp_user_level','0'),(8441,696,'default_password_nag','1'),(8442,697,'first_name',''),(8443,697,'last_name',''),(8444,697,'nickname','FSSKenneth'),(8445,697,'description',''),(8446,697,'rich_editing','true'),(8447,697,'comment_shortcuts','false'),(8448,697,'admin_color','fresh'),(8449,697,'use_ssl','0'),(8450,697,'show_admin_bar_front','true'),(8451,697,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8452,697,'wp_user_level','0'),(8453,697,'default_password_nag','1'),(8454,698,'first_name',''),(8455,698,'last_name',''),(8456,698,'nickname','JudithAnnunziat'),(8457,698,'description',''),(8458,698,'rich_editing','true'),(8459,698,'comment_shortcuts','false'),(8460,698,'admin_color','fresh'),(8461,698,'use_ssl','0'),(8462,698,'show_admin_bar_front','true'),(8463,698,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8464,698,'wp_user_level','0'),(8465,698,'default_password_nag','1'),(8466,699,'first_name',''),(8467,699,'last_name',''),(8468,699,'nickname','MelanieDark'),(8469,699,'description',''),(8470,699,'rich_editing','true'),(8471,699,'comment_shortcuts','false'),(8472,699,'admin_color','fresh'),(8473,699,'use_ssl','0'),(8474,699,'show_admin_bar_front','true'),(8475,699,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8476,699,'wp_user_level','0'),(8477,699,'default_password_nag','1'),(8478,700,'first_name',''),(8479,700,'last_name',''),(8480,700,'nickname','CarlaWallner'),(8481,700,'description',''),(8482,700,'rich_editing','true'),(8483,700,'comment_shortcuts','false'),(8484,700,'admin_color','fresh'),(8485,700,'use_ssl','0'),(8486,700,'show_admin_bar_front','true'),(8487,700,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8488,700,'wp_user_level','0'),(8489,700,'default_password_nag','1'),(8490,701,'first_name',''),(8491,701,'last_name',''),(8492,701,'nickname','EvanCksuaomlxc'),(8493,701,'description',''),(8494,701,'rich_editing','true'),(8495,701,'comment_shortcuts','false'),(8496,701,'admin_color','fresh'),(8497,701,'use_ssl','0'),(8498,701,'show_admin_bar_front','true'),(8499,701,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8500,701,'wp_user_level','0'),(8501,701,'default_password_nag','1'),(8502,702,'first_name',''),(8503,702,'last_name',''),(8504,702,'nickname','ArielleMasters'),(8505,702,'description',''),(8506,702,'rich_editing','true'),(8507,702,'comment_shortcuts','false'),(8508,702,'admin_color','fresh'),(8509,702,'use_ssl','0'),(8510,702,'show_admin_bar_front','true'),(8511,702,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8512,702,'wp_user_level','0'),(8513,702,'default_password_nag','1'),(8514,703,'first_name',''),(8515,703,'last_name',''),(8516,703,'nickname','EarnestineHobar'),(8517,703,'description',''),(8518,703,'rich_editing','true'),(8519,703,'comment_shortcuts','false'),(8520,703,'admin_color','fresh'),(8521,703,'use_ssl','0'),(8522,703,'show_admin_bar_front','true'),(8523,703,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8524,703,'wp_user_level','0'),(8525,703,'default_password_nag','1'),(8526,704,'first_name',''),(8527,704,'last_name',''),(8528,704,'nickname','FelicitasLashle'),(8529,704,'description',''),(8530,704,'rich_editing','true'),(8531,704,'comment_shortcuts','false'),(8532,704,'admin_color','fresh'),(8533,704,'use_ssl','0'),(8534,704,'show_admin_bar_front','true'),(8535,704,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8536,704,'wp_user_level','0'),(8537,704,'default_password_nag','1'),(8538,705,'first_name',''),(8539,705,'last_name',''),(8540,705,'nickname','WernerGresswell'),(8541,705,'description',''),(8542,705,'rich_editing','true'),(8543,705,'comment_shortcuts','false'),(8544,705,'admin_color','fresh'),(8545,705,'use_ssl','0'),(8546,705,'show_admin_bar_front','true'),(8547,705,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8548,705,'wp_user_level','0'),(8549,705,'default_password_nag','1'),(8550,706,'first_name',''),(8551,706,'last_name',''),(8552,706,'nickname','FallonKernot'),(8553,706,'description',''),(8554,706,'rich_editing','true'),(8555,706,'comment_shortcuts','false'),(8556,706,'admin_color','fresh'),(8557,706,'use_ssl','0'),(8558,706,'show_admin_bar_front','true'),(8559,706,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8560,706,'wp_user_level','0'),(8561,706,'default_password_nag','1'),(8562,707,'first_name',''),(8563,707,'last_name',''),(8564,707,'nickname','EduardoGormanst'),(8565,707,'description',''),(8566,707,'rich_editing','true'),(8567,707,'comment_shortcuts','false'),(8568,707,'admin_color','fresh'),(8569,707,'use_ssl','0'),(8570,707,'show_admin_bar_front','true'),(8571,707,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8572,707,'wp_user_level','0'),(8573,707,'default_password_nag','1'),(8574,708,'first_name',''),(8575,708,'last_name',''),(8576,708,'nickname','EuniceWeingarth'),(8577,708,'description',''),(8578,708,'rich_editing','true'),(8579,708,'comment_shortcuts','false'),(8580,708,'admin_color','fresh'),(8581,708,'use_ssl','0'),(8582,708,'show_admin_bar_front','true'),(8583,708,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8584,708,'wp_user_level','0'),(8585,708,'default_password_nag','1'),(8586,709,'first_name',''),(8587,709,'last_name',''),(8588,709,'nickname','AnaJanzenzu'),(8589,709,'description',''),(8590,709,'rich_editing','true'),(8591,709,'comment_shortcuts','false'),(8592,709,'admin_color','fresh'),(8593,709,'use_ssl','0'),(8594,709,'show_admin_bar_front','true'),(8595,709,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8596,709,'wp_user_level','0'),(8597,709,'default_password_nag','1'),(8598,710,'first_name',''),(8599,710,'last_name',''),(8600,710,'nickname','EdwinaOchoa'),(8601,710,'description',''),(8602,710,'rich_editing','true'),(8603,710,'comment_shortcuts','false'),(8604,710,'admin_color','fresh'),(8605,710,'use_ssl','0'),(8606,710,'show_admin_bar_front','true'),(8607,710,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8608,710,'wp_user_level','0'),(8609,710,'default_password_nag','1'),(8610,711,'first_name',''),(8611,711,'last_name',''),(8612,711,'nickname','DerekFaulkner'),(8613,711,'description',''),(8614,711,'rich_editing','true'),(8615,711,'comment_shortcuts','false'),(8616,711,'admin_color','fresh'),(8617,711,'use_ssl','0'),(8618,711,'show_admin_bar_front','true'),(8619,711,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8620,711,'wp_user_level','0'),(8621,711,'default_password_nag','1'),(8622,712,'first_name',''),(8623,712,'last_name',''),(8624,712,'nickname','bagsalehxcchanelgyv'),(8625,712,'description',''),(8626,712,'rich_editing','true'),(8627,712,'comment_shortcuts','false'),(8628,712,'admin_color','fresh'),(8629,712,'use_ssl','0'),(8630,712,'show_admin_bar_front','true'),(8631,712,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8632,712,'wp_user_level','0'),(8633,712,'default_password_nag','1'),(8634,713,'first_name',''),(8635,713,'last_name',''),(8636,713,'nickname','CaroleSwinburne'),(8637,713,'description',''),(8638,713,'rich_editing','true'),(8639,713,'comment_shortcuts','false'),(8640,713,'admin_color','fresh'),(8641,713,'use_ssl','0'),(8642,713,'show_admin_bar_front','true'),(8643,713,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8644,713,'wp_user_level','0'),(8645,713,'default_password_nag','1'),(8646,714,'first_name',''),(8647,714,'last_name',''),(8648,714,'nickname','ZWKMarvingxxyjb'),(8649,714,'description',''),(8650,714,'rich_editing','true'),(8651,714,'comment_shortcuts','false'),(8652,714,'admin_color','fresh'),(8653,714,'use_ssl','0'),(8654,714,'show_admin_bar_front','true'),(8655,714,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8656,714,'wp_user_level','0'),(8657,714,'default_password_nag','1'),(8658,715,'first_name',''),(8659,715,'last_name',''),(8660,715,'nickname','JacobSimpkinson'),(8661,715,'description',''),(8662,715,'rich_editing','true'),(8663,715,'comment_shortcuts','false'),(8664,715,'admin_color','fresh'),(8665,715,'use_ssl','0'),(8666,715,'show_admin_bar_front','true'),(8667,715,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8668,715,'wp_user_level','0'),(8669,715,'default_password_nag','1'),(8670,716,'first_name',''),(8671,716,'last_name',''),(8672,716,'nickname','PiperYKGeo'),(8673,716,'description',''),(8674,716,'rich_editing','true'),(8675,716,'comment_shortcuts','false'),(8676,716,'admin_color','fresh'),(8677,716,'use_ssl','0'),(8678,716,'show_admin_bar_front','true'),(8679,716,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8680,716,'wp_user_level','0'),(8681,716,'default_password_nag','1'),(8682,717,'first_name',''),(8683,717,'last_name',''),(8684,717,'nickname','BettyeAbate'),(8685,717,'description',''),(8686,717,'rich_editing','true'),(8687,717,'comment_shortcuts','false'),(8688,717,'admin_color','fresh'),(8689,717,'use_ssl','0'),(8690,717,'show_admin_bar_front','true'),(8691,717,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8692,717,'wp_user_level','0'),(8693,717,'default_password_nag','1'),(8694,718,'first_name',''),(8695,718,'last_name',''),(8696,718,'nickname','MildredHack'),(8697,718,'description',''),(8698,718,'rich_editing','true'),(8699,718,'comment_shortcuts','false'),(8700,718,'admin_color','fresh'),(8701,718,'use_ssl','0'),(8702,718,'show_admin_bar_front','true'),(8703,718,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8704,718,'wp_user_level','0'),(8705,718,'default_password_nag','1'),(8706,719,'first_name',''),(8707,719,'last_name',''),(8708,719,'nickname','OnitaY01kmtfjge'),(8709,719,'description',''),(8710,719,'rich_editing','true'),(8711,719,'comment_shortcuts','false'),(8712,719,'admin_color','fresh'),(8713,719,'use_ssl','0'),(8714,719,'show_admin_bar_front','true'),(8715,719,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8716,719,'wp_user_level','0'),(8717,719,'default_password_nag','1'),(8718,720,'first_name',''),(8719,720,'last_name',''),(8720,720,'nickname','NiamhRydge'),(8721,720,'description',''),(8722,720,'rich_editing','true'),(8723,720,'comment_shortcuts','false'),(8724,720,'admin_color','fresh'),(8725,720,'use_ssl','0'),(8726,720,'show_admin_bar_front','true'),(8727,720,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8728,720,'wp_user_level','0'),(8729,720,'default_password_nag','1'),(8730,721,'first_name',''),(8731,721,'last_name',''),(8732,721,'nickname','GabrielK63'),(8733,721,'description',''),(8734,721,'rich_editing','true'),(8735,721,'comment_shortcuts','false'),(8736,721,'admin_color','fresh'),(8737,721,'use_ssl','0'),(8738,721,'show_admin_bar_front','true'),(8739,721,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8740,721,'wp_user_level','0'),(8741,721,'default_password_nag','1'),(8742,722,'first_name',''),(8743,722,'last_name',''),(8744,722,'nickname','Samual36Ux'),(8745,722,'description',''),(8746,722,'rich_editing','true'),(8747,722,'comment_shortcuts','false'),(8748,722,'admin_color','fresh'),(8749,722,'use_ssl','0'),(8750,722,'show_admin_bar_front','true'),(8751,722,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8752,722,'wp_user_level','0'),(8753,722,'default_password_nag','1'),(8754,723,'first_name',''),(8755,723,'last_name',''),(8756,723,'nickname','LiliaBannan'),(8757,723,'description',''),(8758,723,'rich_editing','true'),(8759,723,'comment_shortcuts','false'),(8760,723,'admin_color','fresh'),(8761,723,'use_ssl','0'),(8762,723,'show_admin_bar_front','true'),(8763,723,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8764,723,'wp_user_level','0'),(8765,723,'default_password_nag','1'),(8766,724,'first_name',''),(8767,724,'last_name',''),(8768,724,'nickname','WilsonSimonson'),(8769,724,'description',''),(8770,724,'rich_editing','true'),(8771,724,'comment_shortcuts','false'),(8772,724,'admin_color','fresh'),(8773,724,'use_ssl','0'),(8774,724,'show_admin_bar_front','true'),(8775,724,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8776,724,'wp_user_level','0'),(8777,724,'default_password_nag','1'),(8778,725,'first_name',''),(8779,725,'last_name',''),(8780,725,'nickname','FelishaHaygood'),(8781,725,'description',''),(8782,725,'rich_editing','true'),(8783,725,'comment_shortcuts','false'),(8784,725,'admin_color','fresh'),(8785,725,'use_ssl','0'),(8786,725,'show_admin_bar_front','true'),(8787,725,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8788,725,'wp_user_level','0'),(8789,725,'default_password_nag','1'),(8790,726,'first_name',''),(8791,726,'last_name',''),(8792,726,'nickname','VeevaLutwyche'),(8793,726,'description',''),(8794,726,'rich_editing','true'),(8795,726,'comment_shortcuts','false'),(8796,726,'admin_color','fresh'),(8797,726,'use_ssl','0'),(8798,726,'show_admin_bar_front','true'),(8799,726,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8800,726,'wp_user_level','0'),(8801,726,'default_password_nag','1'),(8802,727,'first_name',''),(8803,727,'last_name',''),(8804,727,'nickname','RosemarKuester'),(8805,727,'description',''),(8806,727,'rich_editing','true'),(8807,727,'comment_shortcuts','false'),(8808,727,'admin_color','fresh'),(8809,727,'use_ssl','0'),(8810,727,'show_admin_bar_front','true'),(8811,727,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8812,727,'wp_user_level','0'),(8813,727,'default_password_nag','1'),(8814,728,'first_name',''),(8815,728,'last_name',''),(8816,728,'nickname','FelishaWaley'),(8817,728,'description',''),(8818,728,'rich_editing','true'),(8819,728,'comment_shortcuts','false'),(8820,728,'admin_color','fresh'),(8821,728,'use_ssl','0'),(8822,728,'show_admin_bar_front','true'),(8823,728,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8824,728,'wp_user_level','0'),(8825,728,'default_password_nag','1'),(8826,729,'first_name',''),(8827,729,'last_name',''),(8828,729,'nickname','ReginaLayman'),(8829,729,'description',''),(8830,729,'rich_editing','true'),(8831,729,'comment_shortcuts','false'),(8832,729,'admin_color','fresh'),(8833,729,'use_ssl','0'),(8834,729,'show_admin_bar_front','true'),(8835,729,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8836,729,'wp_user_level','0'),(8837,729,'default_password_nag','1'),(8838,730,'first_name',''),(8839,730,'last_name',''),(8840,730,'nickname','RalfMouton'),(8841,730,'description',''),(8842,730,'rich_editing','true'),(8843,730,'comment_shortcuts','false'),(8844,730,'admin_color','fresh'),(8845,730,'use_ssl','0'),(8846,730,'show_admin_bar_front','true'),(8847,730,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8848,730,'wp_user_level','0'),(8849,730,'default_password_nag','1'),(8850,731,'first_name',''),(8851,731,'last_name',''),(8852,731,'nickname','LeviSilvabpu'),(8853,731,'description',''),(8854,731,'rich_editing','true'),(8855,731,'comment_shortcuts','false'),(8856,731,'admin_color','fresh'),(8857,731,'use_ssl','0'),(8858,731,'show_admin_bar_front','true'),(8859,731,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8860,731,'wp_user_level','0'),(8861,731,'default_password_nag','1'),(8862,732,'first_name',''),(8863,732,'last_name',''),(8864,732,'nickname','EwanMertzwh'),(8865,732,'description',''),(8866,732,'rich_editing','true'),(8867,732,'comment_shortcuts','false'),(8868,732,'admin_color','fresh'),(8869,732,'use_ssl','0'),(8870,732,'show_admin_bar_front','true'),(8871,732,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8872,732,'wp_user_level','0'),(8873,732,'default_password_nag','1'),(8874,733,'first_name',''),(8875,733,'last_name',''),(8876,733,'nickname','SalvadoSanders'),(8877,733,'description',''),(8878,733,'rich_editing','true'),(8879,733,'comment_shortcuts','false'),(8880,733,'admin_color','fresh'),(8881,733,'use_ssl','0'),(8882,733,'show_admin_bar_front','true'),(8883,733,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8884,733,'wp_user_level','0'),(8885,733,'default_password_nag','1'),(8886,734,'first_name',''),(8887,734,'last_name',''),(8888,734,'nickname','TobiasOsburn'),(8889,734,'description',''),(8890,734,'rich_editing','true'),(8891,734,'comment_shortcuts','false'),(8892,734,'admin_color','fresh'),(8893,734,'use_ssl','0'),(8894,734,'show_admin_bar_front','true'),(8895,734,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8896,734,'wp_user_level','0'),(8897,734,'default_password_nag','1'),(8898,735,'first_name',''),(8899,735,'last_name',''),(8900,735,'nickname','IMBJimlqjn'),(8901,735,'description',''),(8902,735,'rich_editing','true'),(8903,735,'comment_shortcuts','false'),(8904,735,'admin_color','fresh'),(8905,735,'use_ssl','0'),(8906,735,'show_admin_bar_front','true'),(8907,735,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8908,735,'wp_user_level','0'),(8909,735,'default_password_nag','1'),(8910,736,'first_name',''),(8911,736,'last_name',''),(8912,736,'nickname','Alexandria3842'),(8913,736,'description',''),(8914,736,'rich_editing','true'),(8915,736,'comment_shortcuts','false'),(8916,736,'admin_color','fresh'),(8917,736,'use_ssl','0'),(8918,736,'show_admin_bar_front','true'),(8919,736,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8920,736,'wp_user_level','0'),(8921,736,'default_password_nag','1'),(8922,737,'first_name',''),(8923,737,'last_name',''),(8924,737,'nickname','Paulina73O'),(8925,737,'description',''),(8926,737,'rich_editing','true'),(8927,737,'comment_shortcuts','false'),(8928,737,'admin_color','fresh'),(8929,737,'use_ssl','0'),(8930,737,'show_admin_bar_front','true'),(8931,737,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8932,737,'wp_user_level','0'),(8933,737,'default_password_nag','1'),(8934,738,'first_name',''),(8935,738,'last_name',''),(8936,738,'nickname','MarjoriNilsen'),(8937,738,'description',''),(8938,738,'rich_editing','true'),(8939,738,'comment_shortcuts','false'),(8940,738,'admin_color','fresh'),(8941,738,'use_ssl','0'),(8942,738,'show_admin_bar_front','true'),(8943,738,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8944,738,'wp_user_level','0'),(8945,738,'default_password_nag','1'),(8946,739,'first_name',''),(8947,739,'last_name',''),(8948,739,'nickname','KatriceBaptiste'),(8949,739,'description',''),(8950,739,'rich_editing','true'),(8951,739,'comment_shortcuts','false'),(8952,739,'admin_color','fresh'),(8953,739,'use_ssl','0'),(8954,739,'show_admin_bar_front','true'),(8955,739,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8956,739,'wp_user_level','0'),(8957,739,'default_password_nag','1'),(8958,740,'first_name',''),(8959,740,'last_name',''),(8960,740,'nickname','ClarissZeb'),(8961,740,'description',''),(8962,740,'rich_editing','true'),(8963,740,'comment_shortcuts','false'),(8964,740,'admin_color','fresh'),(8965,740,'use_ssl','0'),(8966,740,'show_admin_bar_front','true'),(8967,740,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8968,740,'wp_user_level','0'),(8969,740,'default_password_nag','1'),(8970,741,'first_name',''),(8971,741,'last_name',''),(8972,741,'nickname','JamieHHWfir'),(8973,741,'description',''),(8974,741,'rich_editing','true'),(8975,741,'comment_shortcuts','false'),(8976,741,'admin_color','fresh'),(8977,741,'use_ssl','0'),(8978,741,'show_admin_bar_front','true'),(8979,741,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8980,741,'wp_user_level','0'),(8981,741,'default_password_nag','1'),(8982,742,'first_name',''),(8983,742,'last_name',''),(8984,742,'nickname','Magdalyna328'),(8985,742,'description',''),(8986,742,'rich_editing','true'),(8987,742,'comment_shortcuts','false'),(8988,742,'admin_color','fresh'),(8989,742,'use_ssl','0'),(8990,742,'show_admin_bar_front','true'),(8991,742,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(8992,742,'wp_user_level','0'),(8993,742,'default_password_nag','1'),(8994,743,'first_name',''),(8995,743,'last_name',''),(8996,743,'nickname','yaconsyruphelica'),(8997,743,'description',''),(8998,743,'rich_editing','true'),(8999,743,'comment_shortcuts','false'),(9000,743,'admin_color','fresh'),(9001,743,'use_ssl','0'),(9002,743,'show_admin_bar_front','true'),(9003,743,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9004,743,'wp_user_level','0'),(9005,743,'default_password_nag','1'),(9006,744,'first_name',''),(9007,744,'last_name',''),(9008,744,'nickname','SofiaDavidson'),(9009,744,'description',''),(9010,744,'rich_editing','true'),(9011,744,'comment_shortcuts','false'),(9012,744,'admin_color','fresh'),(9013,744,'use_ssl','0'),(9014,744,'show_admin_bar_front','true'),(9015,744,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9016,744,'wp_user_level','0'),(9017,744,'default_password_nag','1'),(9018,745,'first_name',''),(9019,745,'last_name',''),(9020,745,'nickname','Twila0054kcbw'),(9021,745,'description',''),(9022,745,'rich_editing','true'),(9023,745,'comment_shortcuts','false'),(9024,745,'admin_color','fresh'),(9025,745,'use_ssl','0'),(9026,745,'show_admin_bar_front','true'),(9027,745,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9028,745,'wp_user_level','0'),(9029,745,'default_password_nag','1'),(9030,746,'first_name',''),(9031,746,'last_name',''),(9032,746,'nickname','MarthaFlorance'),(9033,746,'description',''),(9034,746,'rich_editing','true'),(9035,746,'comment_shortcuts','false'),(9036,746,'admin_color','fresh'),(9037,746,'use_ssl','0'),(9038,746,'show_admin_bar_front','true'),(9039,746,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9040,746,'wp_user_level','0'),(9041,746,'default_password_nag','1'),(9042,747,'first_name',''),(9043,747,'last_name',''),(9044,747,'nickname','BeatrisCarman'),(9045,747,'description',''),(9046,747,'rich_editing','true'),(9047,747,'comment_shortcuts','false'),(9048,747,'admin_color','fresh'),(9049,747,'use_ssl','0'),(9050,747,'show_admin_bar_front','true'),(9051,747,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9052,747,'wp_user_level','0'),(9053,747,'default_password_nag','1'),(9054,748,'first_name',''),(9055,748,'last_name',''),(9056,748,'nickname','NateThayer'),(9057,748,'description',''),(9058,748,'rich_editing','true'),(9059,748,'comment_shortcuts','false'),(9060,748,'admin_color','fresh'),(9061,748,'use_ssl','0'),(9062,748,'show_admin_bar_front','true'),(9063,748,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9064,748,'wp_user_level','0'),(9065,748,'default_password_nag','1'),(9066,749,'first_name',''),(9067,749,'last_name',''),(9068,749,'nickname','AshliSchramm'),(9069,749,'description',''),(9070,749,'rich_editing','true'),(9071,749,'comment_shortcuts','false'),(9072,749,'admin_color','fresh'),(9073,749,'use_ssl','0'),(9074,749,'show_admin_bar_front','true'),(9075,749,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9076,749,'wp_user_level','0'),(9077,749,'default_password_nag','1'),(9078,750,'first_name',''),(9079,750,'last_name',''),(9080,750,'nickname','EpoustBurkitt'),(9081,750,'description',''),(9082,750,'rich_editing','true'),(9083,750,'comment_shortcuts','false'),(9084,750,'admin_color','fresh'),(9085,750,'use_ssl','0'),(9086,750,'show_admin_bar_front','true'),(9087,750,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9088,750,'wp_user_level','0'),(9089,750,'default_password_nag','1'),(9090,751,'first_name',''),(9091,751,'last_name',''),(9092,751,'nickname','SofreoddekSer'),(9093,751,'description',''),(9094,751,'rich_editing','true'),(9095,751,'comment_shortcuts','false'),(9096,751,'admin_color','fresh'),(9097,751,'use_ssl','0'),(9098,751,'show_admin_bar_front','true'),(9099,751,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9100,751,'wp_user_level','0'),(9101,751,'default_password_nag','1'),(9102,752,'first_name',''),(9103,752,'last_name',''),(9104,752,'nickname','HarrisoClendinn'),(9105,752,'description',''),(9106,752,'rich_editing','true'),(9107,752,'comment_shortcuts','false'),(9108,752,'admin_color','fresh'),(9109,752,'use_ssl','0'),(9110,752,'show_admin_bar_front','true'),(9111,752,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9112,752,'wp_user_level','0'),(9113,752,'default_password_nag','1'),(9114,753,'first_name',''),(9115,753,'last_name',''),(9116,753,'nickname','AngelaCwhp'),(9117,753,'description',''),(9118,753,'rich_editing','true'),(9119,753,'comment_shortcuts','false'),(9120,753,'admin_color','fresh'),(9121,753,'use_ssl','0'),(9122,753,'show_admin_bar_front','true'),(9123,753,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9124,753,'wp_user_level','0'),(9125,753,'default_password_nag','1'),(9126,754,'first_name',''),(9127,754,'last_name',''),(9128,754,'nickname','DongPTSrxgipged'),(9129,754,'description',''),(9130,754,'rich_editing','true'),(9131,754,'comment_shortcuts','false'),(9132,754,'admin_color','fresh'),(9133,754,'use_ssl','0'),(9134,754,'show_admin_bar_front','true'),(9135,754,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9136,754,'wp_user_level','0'),(9137,754,'default_password_nag','1'),(9138,755,'first_name',''),(9139,755,'last_name',''),(9140,755,'nickname','Lanny15Uijhrtud'),(9141,755,'description',''),(9142,755,'rich_editing','true'),(9143,755,'comment_shortcuts','false'),(9144,755,'admin_color','fresh'),(9145,755,'use_ssl','0'),(9146,755,'show_admin_bar_front','true'),(9147,755,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9148,755,'wp_user_level','0'),(9149,755,'default_password_nag','1'),(9150,756,'first_name',''),(9151,756,'last_name',''),(9152,756,'nickname','MeghanQIVwq'),(9153,756,'description',''),(9154,756,'rich_editing','true'),(9155,756,'comment_shortcuts','false'),(9156,756,'admin_color','fresh'),(9157,756,'use_ssl','0'),(9158,756,'show_admin_bar_front','true'),(9159,756,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9160,756,'wp_user_level','0'),(9161,756,'default_password_nag','1'),(9162,757,'first_name',''),(9163,757,'last_name',''),(9164,757,'nickname','CandidaQueale'),(9165,757,'description',''),(9166,757,'rich_editing','true'),(9167,757,'comment_shortcuts','false'),(9168,757,'admin_color','fresh'),(9169,757,'use_ssl','0'),(9170,757,'show_admin_bar_front','true'),(9171,757,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9172,757,'wp_user_level','0'),(9173,757,'default_password_nag','1'),(9174,758,'first_name',''),(9175,758,'last_name',''),(9176,758,'nickname','EllaH22blwxzavt'),(9177,758,'description',''),(9178,758,'rich_editing','true'),(9179,758,'comment_shortcuts','false'),(9180,758,'admin_color','fresh'),(9181,758,'use_ssl','0'),(9182,758,'show_admin_bar_front','true'),(9183,758,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9184,758,'wp_user_level','0'),(9185,758,'default_password_nag','1'),(9186,759,'first_name',''),(9187,759,'last_name',''),(9188,759,'nickname','Shawnee34A'),(9189,759,'description',''),(9190,759,'rich_editing','true'),(9191,759,'comment_shortcuts','false'),(9192,759,'admin_color','fresh'),(9193,759,'use_ssl','0'),(9194,759,'show_admin_bar_front','true'),(9195,759,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9196,759,'wp_user_level','0'),(9197,759,'default_password_nag','1'),(9198,760,'first_name',''),(9199,760,'last_name',''),(9200,760,'nickname','PhilipFiedler'),(9201,760,'description',''),(9202,760,'rich_editing','true'),(9203,760,'comment_shortcuts','false'),(9204,760,'admin_color','fresh'),(9205,760,'use_ssl','0'),(9206,760,'show_admin_bar_front','true'),(9207,760,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9208,760,'wp_user_level','0'),(9209,760,'default_password_nag','1'),(9210,761,'first_name',''),(9211,761,'last_name',''),(9212,761,'nickname','TamikaSilver'),(9213,761,'description',''),(9214,761,'rich_editing','true'),(9215,761,'comment_shortcuts','false'),(9216,761,'admin_color','fresh'),(9217,761,'use_ssl','0'),(9218,761,'show_admin_bar_front','true'),(9219,761,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9220,761,'wp_user_level','0'),(9221,761,'default_password_nag','1'),(9222,762,'first_name',''),(9223,762,'last_name',''),(9224,762,'nickname','DHADesmond'),(9225,762,'description',''),(9226,762,'rich_editing','true'),(9227,762,'comment_shortcuts','false'),(9228,762,'admin_color','fresh'),(9229,762,'use_ssl','0'),(9230,762,'show_admin_bar_front','true'),(9231,762,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9232,762,'wp_user_level','0'),(9233,762,'default_password_nag','1'),(9234,763,'first_name',''),(9235,763,'last_name',''),(9236,763,'nickname','BerryFountain'),(9237,763,'description',''),(9238,763,'rich_editing','true'),(9239,763,'comment_shortcuts','false'),(9240,763,'admin_color','fresh'),(9241,763,'use_ssl','0'),(9242,763,'show_admin_bar_front','true'),(9243,763,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9244,763,'wp_user_level','0'),(9245,763,'default_password_nag','1'),(9246,764,'first_name',''),(9247,764,'last_name',''),(9248,764,'nickname','LoreenGoldfinch'),(9249,764,'description',''),(9250,764,'rich_editing','true'),(9251,764,'comment_shortcuts','false'),(9252,764,'admin_color','fresh'),(9253,764,'use_ssl','0'),(9254,764,'show_admin_bar_front','true'),(9255,764,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9256,764,'wp_user_level','0'),(9257,764,'default_password_nag','1'),(9258,765,'first_name',''),(9259,765,'last_name',''),(9260,765,'nickname','ShaunteConolly'),(9261,765,'description',''),(9262,765,'rich_editing','true'),(9263,765,'comment_shortcuts','false'),(9264,765,'admin_color','fresh'),(9265,765,'use_ssl','0'),(9266,765,'show_admin_bar_front','true'),(9267,765,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9268,765,'wp_user_level','0'),(9269,765,'default_password_nag','1'),(9270,766,'first_name',''),(9271,766,'last_name',''),(9272,766,'nickname','AidenFrederick'),(9273,766,'description',''),(9274,766,'rich_editing','true'),(9275,766,'comment_shortcuts','false'),(9276,766,'admin_color','fresh'),(9277,766,'use_ssl','0'),(9278,766,'show_admin_bar_front','true'),(9279,766,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9280,766,'wp_user_level','0'),(9281,766,'default_password_nag','1'),(9282,767,'first_name',''),(9283,767,'last_name',''),(9284,767,'nickname','KatrinaIYAI'),(9285,767,'description',''),(9286,767,'rich_editing','true'),(9287,767,'comment_shortcuts','false'),(9288,767,'admin_color','fresh'),(9289,767,'use_ssl','0'),(9290,767,'show_admin_bar_front','true'),(9291,767,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9292,767,'wp_user_level','0'),(9293,767,'default_password_nag','1'),(9294,768,'first_name',''),(9295,768,'last_name',''),(9296,768,'nickname','CarriLauer'),(9297,768,'description',''),(9298,768,'rich_editing','true'),(9299,768,'comment_shortcuts','false'),(9300,768,'admin_color','fresh'),(9301,768,'use_ssl','0'),(9302,768,'show_admin_bar_front','true'),(9303,768,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9304,768,'wp_user_level','0'),(9305,768,'default_password_nag','1'),(9306,769,'first_name',''),(9307,769,'last_name',''),(9308,769,'nickname','RicardoN34'),(9309,769,'description',''),(9310,769,'rich_editing','true'),(9311,769,'comment_shortcuts','false'),(9312,769,'admin_color','fresh'),(9313,769,'use_ssl','0'),(9314,769,'show_admin_bar_front','true'),(9315,769,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9316,769,'wp_user_level','0'),(9317,769,'default_password_nag','1'),(9318,770,'first_name',''),(9319,770,'last_name',''),(9320,770,'nickname','FlorenciaPeak'),(9321,770,'description',''),(9322,770,'rich_editing','true'),(9323,770,'comment_shortcuts','false'),(9324,770,'admin_color','fresh'),(9325,770,'use_ssl','0'),(9326,770,'show_admin_bar_front','true'),(9327,770,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9328,770,'wp_user_level','0'),(9329,770,'default_password_nag','1'),(9330,771,'first_name',''),(9331,771,'last_name',''),(9332,771,'nickname','JuanaDeLaCondam'),(9333,771,'description',''),(9334,771,'rich_editing','true'),(9335,771,'comment_shortcuts','false'),(9336,771,'admin_color','fresh'),(9337,771,'use_ssl','0'),(9338,771,'show_admin_bar_front','true'),(9339,771,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9340,771,'wp_user_level','0'),(9341,771,'default_password_nag','1'),(9342,772,'first_name',''),(9343,772,'last_name',''),(9344,772,'nickname','jacko56nyp'),(9345,772,'description',''),(9346,772,'rich_editing','true'),(9347,772,'comment_shortcuts','false'),(9348,772,'admin_color','fresh'),(9349,772,'use_ssl','0'),(9350,772,'show_admin_bar_front','true'),(9351,772,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9352,772,'wp_user_level','0'),(9353,772,'default_password_nag','1'),(9354,773,'first_name',''),(9355,773,'last_name',''),(9356,773,'nickname','UjijMadsen'),(9357,773,'description',''),(9358,773,'rich_editing','true'),(9359,773,'comment_shortcuts','false'),(9360,773,'admin_color','fresh'),(9361,773,'use_ssl','0'),(9362,773,'show_admin_bar_front','true'),(9363,773,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9364,773,'wp_user_level','0'),(9365,773,'default_password_nag','1'),(9366,774,'first_name',''),(9367,774,'last_name',''),(9368,774,'nickname','JudiGilpin'),(9369,774,'description',''),(9370,774,'rich_editing','true'),(9371,774,'comment_shortcuts','false'),(9372,774,'admin_color','fresh'),(9373,774,'use_ssl','0'),(9374,774,'show_admin_bar_front','true'),(9375,774,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9376,774,'wp_user_level','0'),(9377,774,'default_password_nag','1'),(9378,775,'first_name',''),(9379,775,'last_name',''),(9380,775,'nickname','ChristeNicastro'),(9381,775,'description',''),(9382,775,'rich_editing','true'),(9383,775,'comment_shortcuts','false'),(9384,775,'admin_color','fresh'),(9385,775,'use_ssl','0'),(9386,775,'show_admin_bar_front','true'),(9387,775,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9388,775,'wp_user_level','0'),(9389,775,'default_password_nag','1'),(9390,776,'first_name',''),(9391,776,'last_name',''),(9392,776,'nickname','TeenaTorohyldli'),(9393,776,'description',''),(9394,776,'rich_editing','true'),(9395,776,'comment_shortcuts','false'),(9396,776,'admin_color','fresh'),(9397,776,'use_ssl','0'),(9398,776,'show_admin_bar_front','true'),(9399,776,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9400,776,'wp_user_level','0'),(9401,776,'default_password_nag','1'),(9402,777,'first_name',''),(9403,777,'last_name',''),(9404,777,'nickname','ChadwicBenedict'),(9405,777,'description',''),(9406,777,'rich_editing','true'),(9407,777,'comment_shortcuts','false'),(9408,777,'admin_color','fresh'),(9409,777,'use_ssl','0'),(9410,777,'show_admin_bar_front','true'),(9411,777,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9412,777,'wp_user_level','0'),(9413,777,'default_password_nag','1'),(9414,778,'first_name',''),(9415,778,'last_name',''),(9416,778,'nickname','AdolphEarly'),(9417,778,'description',''),(9418,778,'rich_editing','true'),(9419,778,'comment_shortcuts','false'),(9420,778,'admin_color','fresh'),(9421,778,'use_ssl','0'),(9422,778,'show_admin_bar_front','true'),(9423,778,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9424,778,'wp_user_level','0'),(9425,778,'default_password_nag','1'),(9426,779,'first_name',''),(9427,779,'last_name',''),(9428,779,'nickname','TamSteppcajsg'),(9429,779,'description',''),(9430,779,'rich_editing','true'),(9431,779,'comment_shortcuts','false'),(9432,779,'admin_color','fresh'),(9433,779,'use_ssl','0'),(9434,779,'show_admin_bar_front','true'),(9435,779,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9436,779,'wp_user_level','0'),(9437,779,'default_password_nag','1'),(9438,780,'first_name',''),(9439,780,'last_name',''),(9440,780,'nickname','FredaO05nrhkkd'),(9441,780,'description',''),(9442,780,'rich_editing','true'),(9443,780,'comment_shortcuts','false'),(9444,780,'admin_color','fresh'),(9445,780,'use_ssl','0'),(9446,780,'show_admin_bar_front','true'),(9447,780,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9448,780,'wp_user_level','0'),(9449,780,'default_password_nag','1'),(9450,781,'first_name',''),(9451,781,'last_name',''),(9452,781,'nickname','MerrillMansergh'),(9453,781,'description',''),(9454,781,'rich_editing','true'),(9455,781,'comment_shortcuts','false'),(9456,781,'admin_color','fresh'),(9457,781,'use_ssl','0'),(9458,781,'show_admin_bar_front','true'),(9459,781,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9460,781,'wp_user_level','0'),(9461,781,'default_password_nag','1'),(9462,782,'first_name',''),(9463,782,'last_name',''),(9464,782,'nickname','MerlinConolly'),(9465,782,'description',''),(9466,782,'rich_editing','true'),(9467,782,'comment_shortcuts','false'),(9468,782,'admin_color','fresh'),(9469,782,'use_ssl','0'),(9470,782,'show_admin_bar_front','true'),(9471,782,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9472,782,'wp_user_level','0'),(9473,782,'default_password_nag','1'),(9474,783,'first_name',''),(9475,783,'last_name',''),(9476,783,'nickname','WillieMilton'),(9477,783,'description',''),(9478,783,'rich_editing','true'),(9479,783,'comment_shortcuts','false'),(9480,783,'admin_color','fresh'),(9481,783,'use_ssl','0'),(9482,783,'show_admin_bar_front','true'),(9483,783,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9484,783,'wp_user_level','0'),(9485,783,'default_password_nag','1'),(9486,784,'first_name',''),(9487,784,'last_name',''),(9488,784,'nickname','EvelynMontero'),(9489,784,'description',''),(9490,784,'rich_editing','true'),(9491,784,'comment_shortcuts','false'),(9492,784,'admin_color','fresh'),(9493,784,'use_ssl','0'),(9494,784,'show_admin_bar_front','true'),(9495,784,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9496,784,'wp_user_level','0'),(9497,784,'default_password_nag','1'),(9498,785,'first_name',''),(9499,785,'last_name',''),(9500,785,'nickname','PaulettBerrios'),(9501,785,'description',''),(9502,785,'rich_editing','true'),(9503,785,'comment_shortcuts','false'),(9504,785,'admin_color','fresh'),(9505,785,'use_ssl','0'),(9506,785,'show_admin_bar_front','true'),(9507,785,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9508,785,'wp_user_level','0'),(9509,785,'default_password_nag','1'),(9510,786,'first_name',''),(9511,786,'last_name',''),(9512,786,'nickname','MicheleBoser'),(9513,786,'description',''),(9514,786,'rich_editing','true'),(9515,786,'comment_shortcuts','false'),(9516,786,'admin_color','fresh'),(9517,786,'use_ssl','0'),(9518,786,'show_admin_bar_front','true'),(9519,786,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9520,786,'wp_user_level','0'),(9521,786,'default_password_nag','1'),(9522,787,'first_name',''),(9523,787,'last_name',''),(9524,787,'nickname','Carmel41Kgrtl'),(9525,787,'description',''),(9526,787,'rich_editing','true'),(9527,787,'comment_shortcuts','false'),(9528,787,'admin_color','fresh'),(9529,787,'use_ssl','0'),(9530,787,'show_admin_bar_front','true'),(9531,787,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9532,787,'wp_user_level','0'),(9533,787,'default_password_nag','1'),(9534,788,'first_name',''),(9535,788,'last_name',''),(9536,788,'nickname','TaneshaBNFA'),(9537,788,'description',''),(9538,788,'rich_editing','true'),(9539,788,'comment_shortcuts','false'),(9540,788,'admin_color','fresh'),(9541,788,'use_ssl','0'),(9542,788,'show_admin_bar_front','true'),(9543,788,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9544,788,'wp_user_level','0'),(9545,788,'default_password_nag','1'),(9546,2,'closedpostboxes_post','a:1:{i:0;s:12:\"sharing_meta\";}'),(9547,2,'metaboxhidden_post','a:6:{i:0;s:11:\"postexcerpt\";i:1;s:13:\"trackbacksdiv\";i:2;s:10:\"postcustom\";i:3;s:16:\"commentstatusdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}'),(9548,789,'first_name',''),(9549,789,'last_name',''),(9550,789,'nickname','OlgaNathan'),(9551,789,'description',''),(9552,789,'rich_editing','true'),(9553,789,'comment_shortcuts','false'),(9554,789,'admin_color','fresh'),(9555,789,'use_ssl','0'),(9556,789,'show_admin_bar_front','true'),(9557,789,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9558,789,'wp_user_level','0'),(9559,789,'default_password_nag','1'),(9560,790,'first_name',''),(9561,790,'last_name',''),(9562,790,'nickname','DedraSchmid'),(9563,790,'description',''),(9564,790,'rich_editing','true'),(9565,790,'comment_shortcuts','false'),(9566,790,'admin_color','fresh'),(9567,790,'use_ssl','0'),(9568,790,'show_admin_bar_front','true'),(9569,790,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9570,790,'wp_user_level','0'),(9571,790,'default_password_nag','1'),(9572,791,'first_name',''),(9573,791,'last_name',''),(9574,791,'nickname','ChristiSandridg'),(9575,791,'description',''),(9576,791,'rich_editing','true'),(9577,791,'comment_shortcuts','false'),(9578,791,'admin_color','fresh'),(9579,791,'use_ssl','0'),(9580,791,'show_admin_bar_front','true'),(9581,791,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9582,791,'wp_user_level','0'),(9583,791,'default_password_nag','1'),(9584,792,'first_name',''),(9585,792,'last_name',''),(9586,792,'nickname','SiobhanGaray'),(9587,792,'description',''),(9588,792,'rich_editing','true'),(9589,792,'comment_shortcuts','false'),(9590,792,'admin_color','fresh'),(9591,792,'use_ssl','0'),(9592,792,'show_admin_bar_front','true'),(9593,792,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9594,792,'wp_user_level','0'),(9595,792,'default_password_nag','1'),(9596,793,'first_name',''),(9597,793,'last_name',''),(9598,793,'nickname','LewisWesley'),(9599,793,'description',''),(9600,793,'rich_editing','true'),(9601,793,'comment_shortcuts','false'),(9602,793,'admin_color','fresh'),(9603,793,'use_ssl','0'),(9604,793,'show_admin_bar_front','true'),(9605,793,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9606,793,'wp_user_level','0'),(9607,793,'default_password_nag','1'),(9608,794,'first_name',''),(9609,794,'last_name',''),(9610,794,'nickname','RickieOuttrim'),(9611,794,'description',''),(9612,794,'rich_editing','true'),(9613,794,'comment_shortcuts','false'),(9614,794,'admin_color','fresh'),(9615,794,'use_ssl','0'),(9616,794,'show_admin_bar_front','true'),(9617,794,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9618,794,'wp_user_level','0'),(9619,794,'default_password_nag','1'),(9620,795,'first_name',''),(9621,795,'last_name',''),(9622,795,'nickname','WilhelmHaro'),(9623,795,'description',''),(9624,795,'rich_editing','true'),(9625,795,'comment_shortcuts','false'),(9626,795,'admin_color','fresh'),(9627,795,'use_ssl','0'),(9628,795,'show_admin_bar_front','true'),(9629,795,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9630,795,'wp_user_level','0'),(9631,795,'default_password_nag','1'),(9632,796,'first_name',''),(9633,796,'last_name',''),(9634,796,'nickname','CooperHorne'),(9635,796,'description',''),(9636,796,'rich_editing','true'),(9637,796,'comment_shortcuts','false'),(9638,796,'admin_color','fresh'),(9639,796,'use_ssl','0'),(9640,796,'show_admin_bar_front','true'),(9641,796,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9642,796,'wp_user_level','0'),(9643,796,'default_password_nag','1'),(9644,797,'first_name',''),(9645,797,'last_name',''),(9646,797,'nickname','YSZClarence'),(9647,797,'description',''),(9648,797,'rich_editing','true'),(9649,797,'comment_shortcuts','false'),(9650,797,'admin_color','fresh'),(9651,797,'use_ssl','0'),(9652,797,'show_admin_bar_front','true'),(9653,797,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9654,797,'wp_user_level','0'),(9655,797,'default_password_nag','1'),(9656,798,'first_name',''),(9657,798,'last_name',''),(9658,798,'nickname','WayneDundalli'),(9659,798,'description',''),(9660,798,'rich_editing','true'),(9661,798,'comment_shortcuts','false'),(9662,798,'admin_color','fresh'),(9663,798,'use_ssl','0'),(9664,798,'show_admin_bar_front','true'),(9665,798,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9666,798,'wp_user_level','0'),(9667,798,'default_password_nag','1'),(9668,799,'first_name',''),(9669,799,'last_name',''),(9670,799,'nickname','JoshuaSalter'),(9671,799,'description',''),(9672,799,'rich_editing','true'),(9673,799,'comment_shortcuts','false'),(9674,799,'admin_color','fresh'),(9675,799,'use_ssl','0'),(9676,799,'show_admin_bar_front','true'),(9677,799,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9678,799,'wp_user_level','0'),(9679,799,'default_password_nag','1'),(9680,800,'first_name',''),(9681,800,'last_name',''),(9682,800,'nickname','Dallas97Omnsled'),(9683,800,'description',''),(9684,800,'rich_editing','true'),(9685,800,'comment_shortcuts','false'),(9686,800,'admin_color','fresh'),(9687,800,'use_ssl','0'),(9688,800,'show_admin_bar_front','true'),(9689,800,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9690,800,'wp_user_level','0'),(9691,800,'default_password_nag','1'),(9692,801,'first_name',''),(9693,801,'last_name',''),(9694,801,'nickname','KennyPoulin'),(9695,801,'description',''),(9696,801,'rich_editing','true'),(9697,801,'comment_shortcuts','false'),(9698,801,'admin_color','fresh'),(9699,801,'use_ssl','0'),(9700,801,'show_admin_bar_front','true'),(9701,801,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9702,801,'wp_user_level','0'),(9703,801,'default_password_nag','1'),(9704,802,'first_name',''),(9705,802,'last_name',''),(9706,802,'nickname','RachellFedler'),(9707,802,'description',''),(9708,802,'rich_editing','true'),(9709,802,'comment_shortcuts','false'),(9710,802,'admin_color','fresh'),(9711,802,'use_ssl','0'),(9712,802,'show_admin_bar_front','true'),(9713,802,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9714,802,'wp_user_level','0'),(9715,802,'default_password_nag','1'),(9716,803,'first_name',''),(9717,803,'last_name',''),(9718,803,'nickname','Ratluges'),(9719,803,'description',''),(9720,803,'rich_editing','true'),(9721,803,'comment_shortcuts','false'),(9722,803,'admin_color','fresh'),(9723,803,'use_ssl','0'),(9724,803,'show_admin_bar_front','true'),(9725,803,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9726,803,'wp_user_level','0'),(9727,803,'default_password_nag','1'),(9728,804,'first_name',''),(9729,804,'last_name',''),(9730,804,'nickname','SusieEggleston'),(9731,804,'description',''),(9732,804,'rich_editing','true'),(9733,804,'comment_shortcuts','false'),(9734,804,'admin_color','fresh'),(9735,804,'use_ssl','0'),(9736,804,'show_admin_bar_front','true'),(9737,804,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9738,804,'wp_user_level','0'),(9739,804,'default_password_nag','1'),(9740,805,'first_name',''),(9741,805,'last_name',''),(9742,805,'nickname','WilliamsRydge'),(9743,805,'description',''),(9744,805,'rich_editing','true'),(9745,805,'comment_shortcuts','false'),(9746,805,'admin_color','fresh'),(9747,805,'use_ssl','0'),(9748,805,'show_admin_bar_front','true'),(9749,805,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9750,805,'wp_user_level','0'),(9751,805,'default_password_nag','1'),(9752,806,'first_name',''),(9753,806,'last_name',''),(9754,806,'nickname','Titus42Aja'),(9755,806,'description',''),(9756,806,'rich_editing','true'),(9757,806,'comment_shortcuts','false'),(9758,806,'admin_color','fresh'),(9759,806,'use_ssl','0'),(9760,806,'show_admin_bar_front','true'),(9761,806,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9762,806,'wp_user_level','0'),(9763,806,'default_password_nag','1'),(9764,807,'first_name',''),(9765,807,'last_name',''),(9766,807,'nickname','EzequielArmitag'),(9767,807,'description',''),(9768,807,'rich_editing','true'),(9769,807,'comment_shortcuts','false'),(9770,807,'admin_color','fresh'),(9771,807,'use_ssl','0'),(9772,807,'show_admin_bar_front','true'),(9773,807,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9774,807,'wp_user_level','0'),(9775,807,'default_password_nag','1'),(9776,808,'first_name',''),(9777,808,'last_name',''),(9778,808,'nickname','PKUKristin'),(9779,808,'description',''),(9780,808,'rich_editing','true'),(9781,808,'comment_shortcuts','false'),(9782,808,'admin_color','fresh'),(9783,808,'use_ssl','0'),(9784,808,'show_admin_bar_front','true'),(9785,808,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9786,808,'wp_user_level','0'),(9787,808,'default_password_nag','1'),(9788,809,'first_name',''),(9789,809,'last_name',''),(9790,809,'nickname','HeleneOquendo'),(9791,809,'description',''),(9792,809,'rich_editing','true'),(9793,809,'comment_shortcuts','false'),(9794,809,'admin_color','fresh'),(9795,809,'use_ssl','0'),(9796,809,'show_admin_bar_front','true'),(9797,809,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9798,809,'wp_user_level','0'),(9799,809,'default_password_nag','1'),(9800,810,'first_name',''),(9801,810,'last_name',''),(9802,810,'nickname','MargeneOSM'),(9803,810,'description',''),(9804,810,'rich_editing','true'),(9805,810,'comment_shortcuts','false'),(9806,810,'admin_color','fresh'),(9807,810,'use_ssl','0'),(9808,810,'show_admin_bar_front','true'),(9809,810,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9810,810,'wp_user_level','0'),(9811,810,'default_password_nag','1'),(9812,811,'first_name',''),(9813,811,'last_name',''),(9814,811,'nickname','ArletteVillarea'),(9815,811,'description',''),(9816,811,'rich_editing','true'),(9817,811,'comment_shortcuts','false'),(9818,811,'admin_color','fresh'),(9819,811,'use_ssl','0'),(9820,811,'show_admin_bar_front','true'),(9821,811,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9822,811,'wp_user_level','0'),(9823,811,'default_password_nag','1'),(9824,812,'first_name',''),(9825,812,'last_name',''),(9826,812,'nickname','SpencerDorman'),(9827,812,'description',''),(9828,812,'rich_editing','true'),(9829,812,'comment_shortcuts','false'),(9830,812,'admin_color','fresh'),(9831,812,'use_ssl','0'),(9832,812,'show_admin_bar_front','true'),(9833,812,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9834,812,'wp_user_level','0'),(9835,812,'default_password_nag','1'),(9836,813,'first_name',''),(9837,813,'last_name',''),(9838,813,'nickname','HesterHolcomb'),(9839,813,'description',''),(9840,813,'rich_editing','true'),(9841,813,'comment_shortcuts','false'),(9842,813,'admin_color','fresh'),(9843,813,'use_ssl','0'),(9844,813,'show_admin_bar_front','true'),(9845,813,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9846,813,'wp_user_level','0'),(9847,813,'default_password_nag','1'),(9848,814,'first_name',''),(9849,814,'last_name',''),(9850,814,'nickname','MilagroKoch'),(9851,814,'description',''),(9852,814,'rich_editing','true'),(9853,814,'comment_shortcuts','false'),(9854,814,'admin_color','fresh'),(9855,814,'use_ssl','0'),(9856,814,'show_admin_bar_front','true'),(9857,814,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9858,814,'wp_user_level','0'),(9859,814,'default_password_nag','1'),(9860,815,'first_name',''),(9861,815,'last_name',''),(9862,815,'nickname','RJGCliffor'),(9863,815,'description',''),(9864,815,'rich_editing','true'),(9865,815,'comment_shortcuts','false'),(9866,815,'admin_color','fresh'),(9867,815,'use_ssl','0'),(9868,815,'show_admin_bar_front','true'),(9869,815,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9870,815,'wp_user_level','0'),(9871,815,'default_password_nag','1'),(9872,816,'first_name',''),(9873,816,'last_name',''),(9874,816,'nickname','VictoriWilfong'),(9875,816,'description',''),(9876,816,'rich_editing','true'),(9877,816,'comment_shortcuts','false'),(9878,816,'admin_color','fresh'),(9879,816,'use_ssl','0'),(9880,816,'show_admin_bar_front','true'),(9881,816,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9882,816,'wp_user_level','0'),(9883,816,'default_password_nag','1'),(9884,817,'first_name',''),(9885,817,'last_name',''),(9886,817,'nickname','ChaunceFlanders'),(9887,817,'description',''),(9888,817,'rich_editing','true'),(9889,817,'comment_shortcuts','false'),(9890,817,'admin_color','fresh'),(9891,817,'use_ssl','0'),(9892,817,'show_admin_bar_front','true'),(9893,817,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9894,817,'wp_user_level','0'),(9895,817,'default_password_nag','1'),(9896,818,'first_name',''),(9897,818,'last_name',''),(9898,818,'nickname','Aurelio3294'),(9899,818,'description',''),(9900,818,'rich_editing','true'),(9901,818,'comment_shortcuts','false'),(9902,818,'admin_color','fresh'),(9903,818,'use_ssl','0'),(9904,818,'show_admin_bar_front','true'),(9905,818,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9906,818,'wp_user_level','0'),(9907,818,'default_password_nag','1'),(9908,819,'first_name',''),(9909,819,'last_name',''),(9910,819,'nickname','Bernade67Y'),(9911,819,'description',''),(9912,819,'rich_editing','true'),(9913,819,'comment_shortcuts','false'),(9914,819,'admin_color','fresh'),(9915,819,'use_ssl','0'),(9916,819,'show_admin_bar_front','true'),(9917,819,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9918,819,'wp_user_level','0'),(9919,819,'default_password_nag','1'),(9920,820,'first_name',''),(9921,820,'last_name',''),(9922,820,'nickname','ThomasGilbertso'),(9923,820,'description',''),(9924,820,'rich_editing','true'),(9925,820,'comment_shortcuts','false'),(9926,820,'admin_color','fresh'),(9927,820,'use_ssl','0'),(9928,820,'show_admin_bar_front','true'),(9929,820,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9930,820,'wp_user_level','0'),(9931,820,'default_password_nag','1'),(9932,821,'first_name',''),(9933,821,'last_name',''),(9934,821,'nickname','yd201403b'),(9935,821,'description',''),(9936,821,'rich_editing','true'),(9937,821,'comment_shortcuts','false'),(9938,821,'admin_color','fresh'),(9939,821,'use_ssl','0'),(9940,821,'show_admin_bar_front','true'),(9941,821,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9942,821,'wp_user_level','0'),(9943,821,'default_password_nag','1'),(9944,822,'first_name',''),(9945,822,'last_name',''),(9946,822,'nickname','Mikayla62P'),(9947,822,'description',''),(9948,822,'rich_editing','true'),(9949,822,'comment_shortcuts','false'),(9950,822,'admin_color','fresh'),(9951,822,'use_ssl','0'),(9952,822,'show_admin_bar_front','true'),(9953,822,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9954,822,'wp_user_level','0'),(9955,822,'default_password_nag','1'),(9956,823,'first_name',''),(9957,823,'last_name',''),(9958,823,'nickname','Clay28Kawifxx'),(9959,823,'description',''),(9960,823,'rich_editing','true'),(9961,823,'comment_shortcuts','false'),(9962,823,'admin_color','fresh'),(9963,823,'use_ssl','0'),(9964,823,'show_admin_bar_front','true'),(9965,823,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9966,823,'wp_user_level','0'),(9967,823,'default_password_nag','1'),(9968,824,'first_name',''),(9969,824,'last_name',''),(9970,824,'nickname','RayUqzdwooeisox'),(9971,824,'description',''),(9972,824,'rich_editing','true'),(9973,824,'comment_shortcuts','false'),(9974,824,'admin_color','fresh'),(9975,824,'use_ssl','0'),(9976,824,'show_admin_bar_front','true'),(9977,824,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9978,824,'wp_user_level','0'),(9979,824,'default_password_nag','1'),(9980,825,'first_name',''),(9981,825,'last_name',''),(9982,825,'nickname','BrookGatlin'),(9983,825,'description',''),(9984,825,'rich_editing','true'),(9985,825,'comment_shortcuts','false'),(9986,825,'admin_color','fresh'),(9987,825,'use_ssl','0'),(9988,825,'show_admin_bar_front','true'),(9989,825,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(9990,825,'wp_user_level','0'),(9991,825,'default_password_nag','1'),(9992,826,'first_name',''),(9993,826,'last_name',''),(9994,826,'nickname','EliBrounozw'),(9995,826,'description',''),(9996,826,'rich_editing','true'),(9997,826,'comment_shortcuts','false'),(9998,826,'admin_color','fresh'),(9999,826,'use_ssl','0'),(10000,826,'show_admin_bar_front','true'),(10001,826,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10002,826,'wp_user_level','0'),(10003,826,'default_password_nag','1'),(10004,827,'first_name',''),(10005,827,'last_name',''),(10006,827,'nickname','TeenaCucyrphfz'),(10007,827,'description',''),(10008,827,'rich_editing','true'),(10009,827,'comment_shortcuts','false'),(10010,827,'admin_color','fresh'),(10011,827,'use_ssl','0'),(10012,827,'show_admin_bar_front','true'),(10013,827,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10014,827,'wp_user_level','0'),(10015,827,'default_password_nag','1'),(10016,828,'first_name',''),(10017,828,'last_name',''),(10018,828,'nickname','Charlot57E'),(10019,828,'description',''),(10020,828,'rich_editing','true'),(10021,828,'comment_shortcuts','false'),(10022,828,'admin_color','fresh'),(10023,828,'use_ssl','0'),(10024,828,'show_admin_bar_front','true'),(10025,828,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10026,828,'wp_user_level','0'),(10027,828,'default_password_nag','1'),(10028,829,'first_name',''),(10029,829,'last_name',''),(10030,829,'nickname','JustinPQYvpz'),(10031,829,'description',''),(10032,829,'rich_editing','true'),(10033,829,'comment_shortcuts','false'),(10034,829,'admin_color','fresh'),(10035,829,'use_ssl','0'),(10036,829,'show_admin_bar_front','true'),(10037,829,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10038,829,'wp_user_level','0'),(10039,829,'default_password_nag','1'),(10040,830,'first_name',''),(10041,830,'last_name',''),(10042,830,'nickname','MatildaX01'),(10043,830,'description',''),(10044,830,'rich_editing','true'),(10045,830,'comment_shortcuts','false'),(10046,830,'admin_color','fresh'),(10047,830,'use_ssl','0'),(10048,830,'show_admin_bar_front','true'),(10049,830,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10050,830,'wp_user_level','0'),(10051,830,'default_password_nag','1'),(10052,831,'first_name',''),(10053,831,'last_name',''),(10054,831,'nickname','Merle0405na'),(10055,831,'description',''),(10056,831,'rich_editing','true'),(10057,831,'comment_shortcuts','false'),(10058,831,'admin_color','fresh'),(10059,831,'use_ssl','0'),(10060,831,'show_admin_bar_front','true'),(10061,831,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10062,831,'wp_user_level','0'),(10063,831,'default_password_nag','1'),(10064,832,'first_name',''),(10065,832,'last_name',''),(10066,832,'nickname','RusselWood'),(10067,832,'description',''),(10068,832,'rich_editing','true'),(10069,832,'comment_shortcuts','false'),(10070,832,'admin_color','fresh'),(10071,832,'use_ssl','0'),(10072,832,'show_admin_bar_front','true'),(10073,832,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10074,832,'wp_user_level','0'),(10075,832,'default_password_nag','1'),(10076,833,'first_name',''),(10077,833,'last_name',''),(10078,833,'nickname','JadaMarcello'),(10079,833,'description',''),(10080,833,'rich_editing','true'),(10081,833,'comment_shortcuts','false'),(10082,833,'admin_color','fresh'),(10083,833,'use_ssl','0'),(10084,833,'show_admin_bar_front','true'),(10085,833,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10086,833,'wp_user_level','0'),(10087,833,'default_password_nag','1'),(10088,834,'first_name',''),(10089,834,'last_name',''),(10090,834,'nickname','GwendolN26'),(10091,834,'description',''),(10092,834,'rich_editing','true'),(10093,834,'comment_shortcuts','false'),(10094,834,'admin_color','fresh'),(10095,834,'use_ssl','0'),(10096,834,'show_admin_bar_front','true'),(10097,834,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10098,834,'wp_user_level','0'),(10099,834,'default_password_nag','1'),(10100,835,'first_name',''),(10101,835,'last_name',''),(10102,835,'nickname','DaniloPurvis'),(10103,835,'description',''),(10104,835,'rich_editing','true'),(10105,835,'comment_shortcuts','false'),(10106,835,'admin_color','fresh'),(10107,835,'use_ssl','0'),(10108,835,'show_admin_bar_front','true'),(10109,835,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10110,835,'wp_user_level','0'),(10111,835,'default_password_nag','1'),(10112,836,'first_name',''),(10113,836,'last_name',''),(10114,836,'nickname','PatrickSlayton'),(10115,836,'description',''),(10116,836,'rich_editing','true'),(10117,836,'comment_shortcuts','false'),(10118,836,'admin_color','fresh'),(10119,836,'use_ssl','0'),(10120,836,'show_admin_bar_front','true'),(10121,836,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10122,836,'wp_user_level','0'),(10123,836,'default_password_nag','1'),(10124,837,'first_name',''),(10125,837,'last_name',''),(10126,837,'nickname','KashaESQwwgfl'),(10127,837,'description',''),(10128,837,'rich_editing','true'),(10129,837,'comment_shortcuts','false'),(10130,837,'admin_color','fresh'),(10131,837,'use_ssl','0'),(10132,837,'show_admin_bar_front','true'),(10133,837,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10134,837,'wp_user_level','0'),(10135,837,'default_password_nag','1'),(10136,838,'first_name',''),(10137,838,'last_name',''),(10138,838,'nickname','JulioLMLzkci'),(10139,838,'description',''),(10140,838,'rich_editing','true'),(10141,838,'comment_shortcuts','false'),(10142,838,'admin_color','fresh'),(10143,838,'use_ssl','0'),(10144,838,'show_admin_bar_front','true'),(10145,838,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10146,838,'wp_user_level','0'),(10147,838,'default_password_nag','1'),(10148,839,'first_name',''),(10149,839,'last_name',''),(10150,839,'nickname','MaxFgidrykhte'),(10151,839,'description',''),(10152,839,'rich_editing','true'),(10153,839,'comment_shortcuts','false'),(10154,839,'admin_color','fresh'),(10155,839,'use_ssl','0'),(10156,839,'show_admin_bar_front','true'),(10157,839,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10158,839,'wp_user_level','0'),(10159,839,'default_password_nag','1'),(10160,840,'first_name',''),(10161,840,'last_name',''),(10162,840,'nickname','DewayneVanburen'),(10163,840,'description',''),(10164,840,'rich_editing','true'),(10165,840,'comment_shortcuts','false'),(10166,840,'admin_color','fresh'),(10167,840,'use_ssl','0'),(10168,840,'show_admin_bar_front','true'),(10169,840,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10170,840,'wp_user_level','0'),(10171,840,'default_password_nag','1'),(10172,841,'first_name',''),(10173,841,'last_name',''),(10174,841,'nickname','ChristyDenovan'),(10175,841,'description',''),(10176,841,'rich_editing','true'),(10177,841,'comment_shortcuts','false'),(10178,841,'admin_color','fresh'),(10179,841,'use_ssl','0'),(10180,841,'show_admin_bar_front','true'),(10181,841,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10182,841,'wp_user_level','0'),(10183,841,'default_password_nag','1'),(10184,842,'first_name',''),(10185,842,'last_name',''),(10186,842,'nickname','LouellaRiddell'),(10187,842,'description',''),(10188,842,'rich_editing','true'),(10189,842,'comment_shortcuts','false'),(10190,842,'admin_color','fresh'),(10191,842,'use_ssl','0'),(10192,842,'show_admin_bar_front','true'),(10193,842,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10194,842,'wp_user_level','0'),(10195,842,'default_password_nag','1'),(10196,843,'first_name',''),(10197,843,'last_name',''),(10198,843,'nickname','HectorCousens'),(10199,843,'description',''),(10200,843,'rich_editing','true'),(10201,843,'comment_shortcuts','false'),(10202,843,'admin_color','fresh'),(10203,843,'use_ssl','0'),(10204,843,'show_admin_bar_front','true'),(10205,843,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10206,843,'wp_user_level','0'),(10207,843,'default_password_nag','1'),(10208,844,'first_name',''),(10209,844,'last_name',''),(10210,844,'nickname','BNCGeraldo'),(10211,844,'description',''),(10212,844,'rich_editing','true'),(10213,844,'comment_shortcuts','false'),(10214,844,'admin_color','fresh'),(10215,844,'use_ssl','0'),(10216,844,'show_admin_bar_front','true'),(10217,844,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10218,844,'wp_user_level','0'),(10219,844,'default_password_nag','1'),(10220,845,'first_name',''),(10221,845,'last_name',''),(10222,845,'nickname','ClaudetMorgan'),(10223,845,'description',''),(10224,845,'rich_editing','true'),(10225,845,'comment_shortcuts','false'),(10226,845,'admin_color','fresh'),(10227,845,'use_ssl','0'),(10228,845,'show_admin_bar_front','true'),(10229,845,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10230,845,'wp_user_level','0'),(10231,845,'default_password_nag','1'),(10232,846,'first_name',''),(10233,846,'last_name',''),(10234,846,'nickname','JoanDelgadillo'),(10235,846,'description',''),(10236,846,'rich_editing','true'),(10237,846,'comment_shortcuts','false'),(10238,846,'admin_color','fresh'),(10239,846,'use_ssl','0'),(10240,846,'show_admin_bar_front','true'),(10241,846,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10242,846,'wp_user_level','0'),(10243,846,'default_password_nag','1'),(10244,847,'first_name',''),(10245,847,'last_name',''),(10246,847,'nickname','RaquelKraker'),(10247,847,'description',''),(10248,847,'rich_editing','true'),(10249,847,'comment_shortcuts','false'),(10250,847,'admin_color','fresh'),(10251,847,'use_ssl','0'),(10252,847,'show_admin_bar_front','true'),(10253,847,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10254,847,'wp_user_level','0'),(10255,847,'default_password_nag','1'),(10256,848,'first_name',''),(10257,848,'last_name',''),(10258,848,'nickname','Elise8543luljx'),(10259,848,'description',''),(10260,848,'rich_editing','true'),(10261,848,'comment_shortcuts','false'),(10262,848,'admin_color','fresh'),(10263,848,'use_ssl','0'),(10264,848,'show_admin_bar_front','true'),(10265,848,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10266,848,'wp_user_level','0'),(10267,848,'default_password_nag','1'),(10268,849,'first_name',''),(10269,849,'last_name',''),(10270,849,'nickname','CathleeYPV'),(10271,849,'description',''),(10272,849,'rich_editing','true'),(10273,849,'comment_shortcuts','false'),(10274,849,'admin_color','fresh'),(10275,849,'use_ssl','0'),(10276,849,'show_admin_bar_front','true'),(10277,849,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10278,849,'wp_user_level','0'),(10279,849,'default_password_nag','1'),(10280,850,'first_name','MichaeloaEF'),(10281,850,'last_name','MichaeloaEF'),(10282,850,'nickname','Michaeloa'),(10283,850,'description','The particular annual growth charge of state-owned industrial sectors in the past due 70s 18, fell in order to five. six in year 1994.\r\n <a href=\"http://www.referearns.com/news.asp?p=67-cheap-dre-beats.html\">cheap dre beats</a> ,<a href=\"http://www.agencevu.com/stories/beatsbydre.php\">beats by dre outlet</a> ,<a href=\"http://www.agencevu.com/stories/beatsbydre.php\">cheap beats by dre</a> \r\nbeats by dr dre studio http://www.agencevu.com/stories/beatsbydre.php?p=49-dr-dre-beats-cheap.html\r\n \r\ndr dre studio beats http://www.agencevu.com/stories/beatsbydre.php?p=67-cheap-dre-beats.html'),(10284,850,'rich_editing','true'),(10285,850,'comment_shortcuts','false'),(10286,850,'admin_color','fresh'),(10287,850,'use_ssl','0'),(10288,850,'show_admin_bar_front','true'),(10289,850,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10290,850,'wp_user_level','0'),(10291,850,'default_password_nag',''),(10292,850,'aim',''),(10293,850,'yim',''),(10294,850,'jabber',''),(10295,850,'gauthor','Michaeloa'),(10296,851,'first_name',''),(10297,851,'last_name',''),(10298,851,'nickname','NedGlaseraqolbg'),(10299,851,'description',''),(10300,851,'rich_editing','true'),(10301,851,'comment_shortcuts','false'),(10302,851,'admin_color','fresh'),(10303,851,'use_ssl','0'),(10304,851,'show_admin_bar_front','true'),(10305,851,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10306,851,'wp_user_level','0'),(10307,851,'default_password_nag','1'),(10308,852,'first_name',''),(10309,852,'last_name',''),(10310,852,'nickname','increase Facebook Fans'),(10311,852,'description',''),(10312,852,'rich_editing','true'),(10313,852,'comment_shortcuts','false'),(10314,852,'admin_color','fresh'),(10315,852,'use_ssl','0'),(10316,852,'show_admin_bar_front','true'),(10317,852,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10318,852,'wp_user_level','0'),(10319,852,'default_password_nag','1'),(10320,853,'first_name',''),(10321,853,'last_name',''),(10322,853,'nickname','SofiaConnal'),(10323,853,'description',''),(10324,853,'rich_editing','true'),(10325,853,'comment_shortcuts','false'),(10326,853,'admin_color','fresh'),(10327,853,'use_ssl','0'),(10328,853,'show_admin_bar_front','true'),(10329,853,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10330,853,'wp_user_level','0'),(10331,853,'default_password_nag','1'),(10332,854,'first_name',''),(10333,854,'last_name',''),(10334,854,'nickname','JaimieTibbs'),(10335,854,'description',''),(10336,854,'rich_editing','true'),(10337,854,'comment_shortcuts','false'),(10338,854,'admin_color','fresh'),(10339,854,'use_ssl','0'),(10340,854,'show_admin_bar_front','true'),(10341,854,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10342,854,'wp_user_level','0'),(10343,854,'default_password_nag','1'),(10344,855,'first_name',''),(10345,855,'last_name',''),(10346,855,'nickname','OmarClibborn'),(10347,855,'description',''),(10348,855,'rich_editing','true'),(10349,855,'comment_shortcuts','false'),(10350,855,'admin_color','fresh'),(10351,855,'use_ssl','0'),(10352,855,'show_admin_bar_front','true'),(10353,855,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10354,855,'wp_user_level','0'),(10355,855,'default_password_nag','1'),(10356,856,'first_name',''),(10357,856,'last_name',''),(10358,856,'nickname','ianbaua'),(10359,856,'description',''),(10360,856,'rich_editing','true'),(10361,856,'comment_shortcuts','false'),(10362,856,'admin_color','fresh'),(10363,856,'use_ssl','0'),(10364,856,'show_admin_bar_front','true'),(10365,856,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10366,856,'wp_user_level','0'),(10367,856,'default_password_nag','1'),(10368,857,'first_name',''),(10369,857,'last_name',''),(10370,857,'nickname','Mattie2848'),(10371,857,'description',''),(10372,857,'rich_editing','true'),(10373,857,'comment_shortcuts','false'),(10374,857,'admin_color','fresh'),(10375,857,'use_ssl','0'),(10376,857,'show_admin_bar_front','true'),(10377,857,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10378,857,'wp_user_level','0'),(10379,857,'default_password_nag','1'),(10380,858,'first_name',''),(10381,858,'last_name',''),(10382,858,'nickname','MagnoliWeber'),(10383,858,'description',''),(10384,858,'rich_editing','true'),(10385,858,'comment_shortcuts','false'),(10386,858,'admin_color','fresh'),(10387,858,'use_ssl','0'),(10388,858,'show_admin_bar_front','true'),(10389,858,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10390,858,'wp_user_level','0'),(10391,858,'default_password_nag','1'),(10392,859,'first_name','carpinteyrojvkYU'),(10393,859,'last_name','sunyshoYU'),(10394,859,'nickname','oystrrt'),(10395,859,'description','[b][url=http://www.muslimdirectory.info/]ヴィトン 長財布 アウトレット[/url][/b];[b][url=http://www.kurth.org/pics/rayban.asp]レイバン スパーコピー[/url][/b];[b][url=http://www.counsellinginfrance.com/maps/]ケイトスペード 激安[/url][/b];ざいました』と告げるが、内心は重たい気持ちが渦巻いている。を服用して週間に度だすしかないのでしょうか。投稿日時通報するあなたの言葉で、相談者さんの悩みを解決しませんか?OKWaveでを押してくれれるように、何人かがデスクで待機していて、こちらが選んで?処理してもらいます)避けていたら、私をチラチラ見[b][url=http://www.ciuserforum.com/styles/adidas-originals.asp]アディダス 激安店[/url][/b]\r\n;[b][url=http://www.ciuserforum.com/styles/adidas-originals.asp]アディダス アウトレット[/url][/b];[b][url=http://www.alwaysunderpressure.com/]ルイヴィトン 激安 コピー[/url][/b]\r\n;しょうか?投稿日時お礼ありがとうございます。投稿日時回答Nononame#っていうか、泌尿器科に行けばレントゲン撮るでしょ普通。私は来年卒業なので、私がフェレットを引き取って一人暮らししようか?などとも話していますが母はこの子と一緒に居たいなどとそこまで妹が嫌がるとは考えもしなかったのですが、母親と可愛がっているので、どうしていいかわかりません。高校を卒業するま;[b][url=http://www.entrepriserubinat.com/]バーバリー 専門店[/url][/b]\r\n;[b][url=http://www.shattered-oak.org/]Mcm 直営店[/url][/b];[b][url=http://www.hyderabadclassifiedads.com/]ロエベ バッグ 新作[/url][/b];[b][url=http://www.brownbagdesigns.net/tn/]ルイヴィトン 財布人気[/url][/b]便利な機能がありすぎで気に資しすぎです。投稿日時通報するお礼する補足するこの回答を支持する現在人が支持しています夫から\r\nところが。息子が実家に行く度にお小遣いを渡したり、誕生日やクリスマス以外でも大きな金額のものを買い与えます。子供が小さいときはもやもやする気持ちはありましたが、「有難うございます」と言う気持ちで抑えてきましたが、中2にもなるとコツコツ風呂掃除したりお米を研いで数百円もらうのであればおばあちゃんところでもらおう~ということになっています。何度も母親に「甘やかさないで欲しい!今いる物なのかどうか判断して購入して欲しい!我慢も教えて欲しい!」と訴えているのですが、「おばあちゃんはどこでもこんなもん!ましてお父さんが居ない子で不憫だから不自由させたくない!」と聞く耳もってくれません。先日も子供が出先で携帯電話を落としてしまいました。私の仕事の関係もあり、常に息子に連絡ができない事は困るのですが、「携帯がないと困る!困らない為には今後どうするか?携帯電話もただではない!携帯電話には個人情報も入っているので自分以外の人にも迷惑をかける云々」を私は教えたくてしばらく携帯は持たなくていいと言っていましたが「私がお金出すから携帯買ってあげなさい」と言ってきました。結局親切に届けて下さった方が居て無事手元に戻ってきたので息子とはきちんと話をして解決したのですが、今後この様な事がある度に私は「お母さんいつもありがとう」と言う気持ちで受けないといけませんか?私の心がせまいのでしょうか?私はフルタイムで仕事をしていて沢山ではないですが子供と二人贅沢できませんがそこそこの生活ができるくらいはお給料を頂いています。\r\nトアンサー回答No. groovykindこんにちは男です。\r\n[b][url=http://nofirewallseries.com/]ミュウミュウ アウトレット 通販[/url][/b]ンピーダンスが決まってますので。投稿日時通報するこの回答を支持する現在人が支持しています補足私は、探偵グッズや盗聴器の別のキーワードで再検索する詳細検索関連キーワードグリーングラスギター思い出インタネットInternet浄霊をすると疲れるのでしラックオプスIIの 攻略本 又は 攻略についての情報がありましたら教えてください。投稿日時通報するあなたの言葉で、相談者[b][url=http://www.eko-energija.com/tinymce/]バレンシアガ 財布 スーパーコピー[/url][/b];[b][url=http://www.stephenpetersendesign.com/]Mcm 長財布[/url][/b];[b][url=http://www.nightlydetox.com/wp-content/mcm/]Mcm 通販[/url][/b][b][url=http://www.aimeelinn.com/]エアジョーダン レディース[/url][/b]が緩んでがばがばになってるだけかもしれねえっすけどね。どの道、原因はそんな深刻な奴じゃあない筈っすよ。一度ディーラーな\r\nす。むしろ、後述しますが、エンジンが一眼の方が高速であり、速写、連射は一眼の方が強い傾向があります。まあ、最近はコンデ\r\n投稿日時通報するこの回答を支持する現在人が支持していますお礼回答ありがとうございます。お祈りどうもです。>その際に先に\r\n答No zzzzzzz老後の為にたくさん金を稼いで貯金してください。そして老人ホームに入ればいいんです。投稿日時通報するお礼するばウツ病も早く治る、と言う考えを変えるチャンスだったのにお気の毒でしたね。あなたの考え方が変わらない限り、初めはウツ病投稿日時この質問は役に立ちましたか?人が「このQ&ampAが役に立った」と投票しています別のキーワードで再検索する詳細検索関連キーワード純平林方程式タモリ倶楽部パンチラ彼女との今後の接し方 | 恋愛相談お気に入り投稿に追加する人が追加しました回答数閲覧数彼女との今後の接し方はじめまして。歳の男です。最近気になる女性ができ、今後その方とどう接していけば良いのか悩んでいるため、投稿させて頂きました。よろしくお願いします。彼女とは同じ会社で、ヶ月程前に職場が同じになり、そこから仲良くなりました。彼女には学生の時から数えて~年付き合っている彼氏がいて、まだ就職しておらず、今年海外年間留学するそうです。知り合った当初はその彼氏の話やお互いの人生観についてよく話をしており、私は次第に彼女に惹かれていきました。そんなある日、彼女から「私の家に来ない?」と誘われ、家に行きました。彼女には、自分は彼氏がいる人には手をだせない性格だと言っていたため、その日は話をしたりDVDを見たりするだけでした。彼女の家に泊まりましたが、それ以上は何もしませんでした。その日から急激に仲良くなり、連絡も頻繁にとるようになり、何回か彼女の家に宿泊するようになりました。[b][url=http://www.noosaphotography.com/js/all.php]ルイヴィトン 長財布 アウトレット[/url][/b]\r\n同様のコンテンツ:\r\n [url=http://eashq.com/vb/12/809642-hogan-prezzi-33238-2979.html#post102680]http://eashq.com/vb/12/809642-hogan-prezzi-33238-2979.html#post102680[/url]\r\n[url=http://www.kxxwg.com/viewthread.php?tid=4462551&extra=]http://www.kxxwg.com/viewthread.php?tid=4462551&extra=[/url]\r\n[url=http://hkproduction.byethost16.com/showthread.php?4419-ations-and-has-the-right-equipment-personnel-to-do-it.-In-th-lisjddq&p=14717&posted=1#post14717]http://hkproduction.byethost16.com/showthread.php?4419-ations-and-has-the-right-equipment-personnel-to-do-it.-In-th-lisjddq&p=14717&posted=1#post14717[/url]'),(10396,859,'rich_editing','true'),(10397,859,'comment_shortcuts','false'),(10398,859,'admin_color','fresh'),(10399,859,'use_ssl','0'),(10400,859,'show_admin_bar_front','true'),(10401,859,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10402,859,'wp_user_level','0'),(10403,859,'default_password_nag',''),(10404,860,'first_name',''),(10405,860,'last_name',''),(10406,860,'nickname','ThomasSix'),(10407,860,'description',''),(10408,860,'rich_editing','true'),(10409,860,'comment_shortcuts','false'),(10410,860,'admin_color','fresh'),(10411,860,'use_ssl','0'),(10412,860,'show_admin_bar_front','true'),(10413,860,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10414,860,'wp_user_level','0'),(10415,860,'default_password_nag','1'),(10416,861,'first_name',''),(10417,861,'last_name',''),(10418,861,'nickname','NatashaTinline'),(10419,861,'description',''),(10420,861,'rich_editing','true'),(10421,861,'comment_shortcuts','false'),(10422,861,'admin_color','fresh'),(10423,861,'use_ssl','0'),(10424,861,'show_admin_bar_front','true'),(10425,861,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10426,861,'wp_user_level','0'),(10427,861,'default_password_nag','1'),(10428,862,'first_name',''),(10429,862,'last_name',''),(10430,862,'nickname','VeroniqORFF'),(10431,862,'description',''),(10432,862,'rich_editing','true'),(10433,862,'comment_shortcuts','false'),(10434,862,'admin_color','fresh'),(10435,862,'use_ssl','0'),(10436,862,'show_admin_bar_front','true'),(10437,862,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10438,862,'wp_user_level','0'),(10439,862,'default_password_nag','1'),(10440,863,'first_name',''),(10441,863,'last_name',''),(10442,863,'nickname','JonnieUrner'),(10443,863,'description',''),(10444,863,'rich_editing','true'),(10445,863,'comment_shortcuts','false'),(10446,863,'admin_color','fresh'),(10447,863,'use_ssl','0'),(10448,863,'show_admin_bar_front','true'),(10449,863,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10450,863,'wp_user_level','0'),(10451,863,'default_password_nag','1'),(10452,864,'first_name',''),(10453,864,'last_name',''),(10454,864,'nickname','TresaVBWofccs'),(10455,864,'description',''),(10456,864,'rich_editing','true'),(10457,864,'comment_shortcuts','false'),(10458,864,'admin_color','fresh'),(10459,864,'use_ssl','0'),(10460,864,'show_admin_bar_front','true'),(10461,864,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10462,864,'wp_user_level','0'),(10463,864,'default_password_nag','1'),(10464,865,'first_name',''),(10465,865,'last_name',''),(10466,865,'nickname','XMMNikoleonh'),(10467,865,'description',''),(10468,865,'rich_editing','true'),(10469,865,'comment_shortcuts','false'),(10470,865,'admin_color','fresh'),(10471,865,'use_ssl','0'),(10472,865,'show_admin_bar_front','true'),(10473,865,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10474,865,'wp_user_level','0'),(10475,865,'default_password_nag','1'),(10476,866,'first_name',''),(10477,866,'last_name',''),(10478,866,'nickname','GwenColley'),(10479,866,'description',''),(10480,866,'rich_editing','true'),(10481,866,'comment_shortcuts','false'),(10482,866,'admin_color','fresh'),(10483,866,'use_ssl','0'),(10484,866,'show_admin_bar_front','true'),(10485,866,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10486,866,'wp_user_level','0'),(10487,866,'default_password_nag','1'),(10488,867,'first_name',''),(10489,867,'last_name',''),(10490,867,'nickname','RyderFossett'),(10491,867,'description',''),(10492,867,'rich_editing','true'),(10493,867,'comment_shortcuts','false'),(10494,867,'admin_color','fresh'),(10495,867,'use_ssl','0'),(10496,867,'show_admin_bar_front','true'),(10497,867,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10498,867,'wp_user_level','0'),(10499,867,'default_password_nag','1'),(10500,868,'first_name',''),(10501,868,'last_name',''),(10502,868,'nickname','RomeoAlbarran'),(10503,868,'description',''),(10504,868,'rich_editing','true'),(10505,868,'comment_shortcuts','false'),(10506,868,'admin_color','fresh'),(10507,868,'use_ssl','0'),(10508,868,'show_admin_bar_front','true'),(10509,868,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10510,868,'wp_user_level','0'),(10511,868,'default_password_nag','1'),(10512,869,'first_name',''),(10513,869,'last_name',''),(10514,869,'nickname','AllieKaawirn'),(10515,869,'description',''),(10516,869,'rich_editing','true'),(10517,869,'comment_shortcuts','false'),(10518,869,'admin_color','fresh'),(10519,869,'use_ssl','0'),(10520,869,'show_admin_bar_front','true'),(10521,869,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10522,869,'wp_user_level','0'),(10523,869,'default_password_nag','1'),(10524,870,'first_name',''),(10525,870,'last_name',''),(10526,870,'nickname','HaroldWmryozjnj'),(10527,870,'description',''),(10528,870,'rich_editing','true'),(10529,870,'comment_shortcuts','false'),(10530,870,'admin_color','fresh'),(10531,870,'use_ssl','0'),(10532,870,'show_admin_bar_front','true'),(10533,870,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10534,870,'wp_user_level','0'),(10535,870,'default_password_nag','1'),(10536,871,'first_name',''),(10537,871,'last_name',''),(10538,871,'nickname','LynetteGeake'),(10539,871,'description',''),(10540,871,'rich_editing','true'),(10541,871,'comment_shortcuts','false'),(10542,871,'admin_color','fresh'),(10543,871,'use_ssl','0'),(10544,871,'show_admin_bar_front','true'),(10545,871,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10546,871,'wp_user_level','0'),(10547,871,'default_password_nag','1'),(10548,872,'first_name',''),(10549,872,'last_name',''),(10550,872,'nickname','ArtChamberlin'),(10551,872,'description',''),(10552,872,'rich_editing','true'),(10553,872,'comment_shortcuts','false'),(10554,872,'admin_color','fresh'),(10555,872,'use_ssl','0'),(10556,872,'show_admin_bar_front','true'),(10557,872,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10558,872,'wp_user_level','0'),(10559,872,'default_password_nag','1'),(10560,873,'first_name',''),(10561,873,'last_name',''),(10562,873,'nickname','MonikaBernier'),(10563,873,'description',''),(10564,873,'rich_editing','true'),(10565,873,'comment_shortcuts','false'),(10566,873,'admin_color','fresh'),(10567,873,'use_ssl','0'),(10568,873,'show_admin_bar_front','true'),(10569,873,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10570,873,'wp_user_level','0'),(10571,873,'default_password_nag','1'),(10572,874,'first_name',''),(10573,874,'last_name',''),(10574,874,'nickname','EchorGreytk'),(10575,874,'description',''),(10576,874,'rich_editing','true'),(10577,874,'comment_shortcuts','false'),(10578,874,'admin_color','fresh'),(10579,874,'use_ssl','0'),(10580,874,'show_admin_bar_front','true'),(10581,874,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10582,874,'wp_user_level','0'),(10583,874,'default_password_nag','1'),(10584,875,'first_name',''),(10585,875,'last_name',''),(10586,875,'nickname','LayneBardsley'),(10587,875,'description',''),(10588,875,'rich_editing','true'),(10589,875,'comment_shortcuts','false'),(10590,875,'admin_color','fresh'),(10591,875,'use_ssl','0'),(10592,875,'show_admin_bar_front','true'),(10593,875,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10594,875,'wp_user_level','0'),(10595,875,'default_password_nag','1'),(10596,876,'first_name',''),(10597,876,'last_name',''),(10598,876,'nickname','StuartShenton'),(10599,876,'description',''),(10600,876,'rich_editing','true'),(10601,876,'comment_shortcuts','false'),(10602,876,'admin_color','fresh'),(10603,876,'use_ssl','0'),(10604,876,'show_admin_bar_front','true'),(10605,876,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10606,876,'wp_user_level','0'),(10607,876,'default_password_nag','1'),(10608,877,'first_name',''),(10609,877,'last_name',''),(10610,877,'nickname','NicholaHupp'),(10611,877,'description',''),(10612,877,'rich_editing','true'),(10613,877,'comment_shortcuts','false'),(10614,877,'admin_color','fresh'),(10615,877,'use_ssl','0'),(10616,877,'show_admin_bar_front','true'),(10617,877,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10618,877,'wp_user_level','0'),(10619,877,'default_password_nag','1'),(10620,878,'first_name',''),(10621,878,'last_name',''),(10622,878,'nickname','Maxie43Ykk'),(10623,878,'description',''),(10624,878,'rich_editing','true'),(10625,878,'comment_shortcuts','false'),(10626,878,'admin_color','fresh'),(10627,878,'use_ssl','0'),(10628,878,'show_admin_bar_front','true'),(10629,878,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10630,878,'wp_user_level','0'),(10631,878,'default_password_nag','1'),(10632,879,'first_name',''),(10633,879,'last_name',''),(10634,879,'nickname','AlexandSwartwoo'),(10635,879,'description',''),(10636,879,'rich_editing','true'),(10637,879,'comment_shortcuts','false'),(10638,879,'admin_color','fresh'),(10639,879,'use_ssl','0'),(10640,879,'show_admin_bar_front','true'),(10641,879,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10642,879,'wp_user_level','0'),(10643,879,'default_password_nag','1'),(10644,880,'first_name',''),(10645,880,'last_name',''),(10646,880,'nickname','AnnabelMills'),(10647,880,'description',''),(10648,880,'rich_editing','true'),(10649,880,'comment_shortcuts','false'),(10650,880,'admin_color','fresh'),(10651,880,'use_ssl','0'),(10652,880,'show_admin_bar_front','true'),(10653,880,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10654,880,'wp_user_level','0'),(10655,880,'default_password_nag','1'),(10656,881,'first_name',''),(10657,881,'last_name',''),(10658,881,'nickname','GlennBazley'),(10659,881,'description',''),(10660,881,'rich_editing','true'),(10661,881,'comment_shortcuts','false'),(10662,881,'admin_color','fresh'),(10663,881,'use_ssl','0'),(10664,881,'show_admin_bar_front','true'),(10665,881,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10666,881,'wp_user_level','0'),(10667,881,'default_password_nag','1'),(10668,882,'first_name',''),(10669,882,'last_name',''),(10670,882,'nickname','UlrikeSolano'),(10671,882,'description',''),(10672,882,'rich_editing','true'),(10673,882,'comment_shortcuts','false'),(10674,882,'admin_color','fresh'),(10675,882,'use_ssl','0'),(10676,882,'show_admin_bar_front','true'),(10677,882,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10678,882,'wp_user_level','0'),(10679,882,'default_password_nag','1'),(10680,883,'first_name',''),(10681,883,'last_name',''),(10682,883,'nickname','HarlanYrprri'),(10683,883,'description',''),(10684,883,'rich_editing','true'),(10685,883,'comment_shortcuts','false'),(10686,883,'admin_color','fresh'),(10687,883,'use_ssl','0'),(10688,883,'show_admin_bar_front','true'),(10689,883,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10690,883,'wp_user_level','0'),(10691,883,'default_password_nag','1'),(10692,884,'first_name',''),(10693,884,'last_name',''),(10694,884,'nickname','Marylou6332'),(10695,884,'description',''),(10696,884,'rich_editing','true'),(10697,884,'comment_shortcuts','false'),(10698,884,'admin_color','fresh'),(10699,884,'use_ssl','0'),(10700,884,'show_admin_bar_front','true'),(10701,884,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10702,884,'wp_user_level','0'),(10703,884,'default_password_nag','1'),(10704,885,'first_name',''),(10705,885,'last_name',''),(10706,885,'nickname','KrystynaA76'),(10707,885,'description',''),(10708,885,'rich_editing','true'),(10709,885,'comment_shortcuts','false'),(10710,885,'admin_color','fresh'),(10711,885,'use_ssl','0'),(10712,885,'show_admin_bar_front','true'),(10713,885,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10714,885,'wp_user_level','0'),(10715,885,'default_password_nag','1'),(10716,886,'first_name',''),(10717,886,'last_name',''),(10718,886,'nickname','LindaAVIff'),(10719,886,'description',''),(10720,886,'rich_editing','true'),(10721,886,'comment_shortcuts','false'),(10722,886,'admin_color','fresh'),(10723,886,'use_ssl','0'),(10724,886,'show_admin_bar_front','true'),(10725,886,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10726,886,'wp_user_level','0'),(10727,886,'default_password_nag','1'),(10728,887,'first_name',''),(10729,887,'last_name',''),(10730,887,'nickname','FreyaJ38qfiy'),(10731,887,'description',''),(10732,887,'rich_editing','true'),(10733,887,'comment_shortcuts','false'),(10734,887,'admin_color','fresh'),(10735,887,'use_ssl','0'),(10736,887,'show_admin_bar_front','true'),(10737,887,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10738,887,'wp_user_level','0'),(10739,887,'default_password_nag','1'),(10740,888,'first_name',''),(10741,888,'last_name',''),(10742,888,'nickname','Camilla05M'),(10743,888,'description',''),(10744,888,'rich_editing','true'),(10745,888,'comment_shortcuts','false'),(10746,888,'admin_color','fresh'),(10747,888,'use_ssl','0'),(10748,888,'show_admin_bar_front','true'),(10749,888,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10750,888,'wp_user_level','0'),(10751,888,'default_password_nag','1'),(10752,889,'first_name',''),(10753,889,'last_name',''),(10754,889,'nickname','AntonioBiddleco'),(10755,889,'description',''),(10756,889,'rich_editing','true'),(10757,889,'comment_shortcuts','false'),(10758,889,'admin_color','fresh'),(10759,889,'use_ssl','0'),(10760,889,'show_admin_bar_front','true'),(10761,889,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10762,889,'wp_user_level','0'),(10763,889,'default_password_nag','1'),(10764,890,'first_name',''),(10765,890,'last_name',''),(10766,890,'nickname','RaymondJtg'),(10767,890,'description',''),(10768,890,'rich_editing','true'),(10769,890,'comment_shortcuts','false'),(10770,890,'admin_color','fresh'),(10771,890,'use_ssl','0'),(10772,890,'show_admin_bar_front','true'),(10773,890,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10774,890,'wp_user_level','0'),(10775,890,'default_password_nag','1'),(10776,2,'gauthor',''),(11436,945,'first_name',''),(11121,919,'last_name',''),(10777,669,'aim','10001'),(10778,669,'yim','10001'),(10779,669,'jabber','10001'),(10780,669,'gauthor','astypromox'),(10781,1,'closedpostboxes_post','a:0:{}'),(10782,1,'metaboxhidden_post','a:8:{i:0;s:12:\"revisionsdiv\";i:1;s:11:\"postexcerpt\";i:2;s:13:\"trackbacksdiv\";i:3;s:10:\"postcustom\";i:4;s:16:\"commentstatusdiv\";i:5;s:11:\"commentsdiv\";i:6;s:7:\"slugdiv\";i:7;s:9:\"authordiv\";}'),(10783,1,'gauthor',''),(10784,891,'first_name',''),(10785,891,'last_name',''),(10786,891,'nickname','NigelNIGUlm'),(10787,891,'description',''),(10788,891,'rich_editing','true'),(10789,891,'comment_shortcuts','false'),(10790,891,'admin_color','fresh'),(10791,891,'use_ssl','0'),(10792,891,'show_admin_bar_front','true'),(10793,891,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10794,891,'wp_user_level','0'),(10795,891,'default_password_nag','1'),(10796,892,'first_name',''),(10797,892,'last_name',''),(10798,892,'nickname','WyattISXhllphtz'),(10799,892,'description',''),(10800,892,'rich_editing','true'),(10801,892,'comment_shortcuts','false'),(10802,892,'admin_color','fresh'),(10803,892,'use_ssl','0'),(10804,892,'show_admin_bar_front','true'),(10805,892,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10806,892,'wp_user_level','0'),(10807,892,'default_password_nag','1'),(10808,893,'first_name',''),(10809,893,'last_name',''),(10810,893,'nickname','MelissaStirling'),(10811,893,'description',''),(10812,893,'rich_editing','true'),(10813,893,'comment_shortcuts','false'),(10814,893,'admin_color','fresh'),(10815,893,'use_ssl','0'),(10816,893,'show_admin_bar_front','true'),(10817,893,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10818,893,'wp_user_level','0'),(10819,893,'default_password_nag','1'),(10820,894,'first_name',''),(10821,894,'last_name',''),(10822,894,'nickname','MatthewOFTP'),(10823,894,'description',''),(10824,894,'rich_editing','true'),(10825,894,'comment_shortcuts','false'),(10826,894,'admin_color','fresh'),(10827,894,'use_ssl','0'),(10828,894,'show_admin_bar_front','true'),(10829,894,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10830,894,'wp_user_level','0'),(10831,894,'default_password_nag','1'),(10832,895,'first_name',''),(10833,895,'last_name',''),(10834,895,'nickname','LindsayFitzgibb'),(10835,895,'description',''),(10836,895,'rich_editing','true'),(10837,895,'comment_shortcuts','false'),(10838,895,'admin_color','fresh'),(10839,895,'use_ssl','0'),(10840,895,'show_admin_bar_front','true'),(10841,895,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10842,895,'wp_user_level','0'),(10843,895,'default_password_nag','1'),(10844,896,'first_name',''),(10845,896,'last_name',''),(10846,896,'nickname','BarneyMcDonald'),(10847,896,'description',''),(10848,896,'rich_editing','true'),(10849,896,'comment_shortcuts','false'),(10850,896,'admin_color','fresh'),(10851,896,'use_ssl','0'),(10852,896,'show_admin_bar_front','true'),(10853,896,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10854,896,'wp_user_level','0'),(10855,896,'default_password_nag','1'),(10856,897,'first_name',''),(10857,897,'last_name',''),(10858,897,'nickname','AnnmariFarmer'),(10859,897,'description',''),(10860,897,'rich_editing','true'),(10861,897,'comment_shortcuts','false'),(10862,897,'admin_color','fresh'),(10863,897,'use_ssl','0'),(10864,897,'show_admin_bar_front','true'),(10865,897,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10866,897,'wp_user_level','0'),(10867,897,'default_password_nag','1'),(11120,919,'first_name',''),(10868,898,'first_name',''),(10869,898,'last_name',''),(10870,898,'nickname','BeatrisKnudson'),(10871,898,'description',''),(10872,898,'rich_editing','true'),(10873,898,'comment_shortcuts','false'),(10874,898,'admin_color','fresh'),(10875,898,'use_ssl','0'),(10876,898,'show_admin_bar_front','true'),(10877,898,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10878,898,'wp_user_level','0'),(10879,898,'default_password_nag','1'),(10880,899,'first_name',''),(10881,899,'last_name',''),(10882,899,'nickname','ArchieSalgado'),(10883,899,'description',''),(10884,899,'rich_editing','true'),(10885,899,'comment_shortcuts','false'),(10886,899,'admin_color','fresh'),(10887,899,'use_ssl','0'),(10888,899,'show_admin_bar_front','true'),(10889,899,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10890,899,'wp_user_level','0'),(10891,899,'default_password_nag','1'),(10892,900,'first_name',''),(10893,900,'last_name',''),(10894,900,'nickname','Elijah0775'),(10895,900,'description',''),(10896,900,'rich_editing','true'),(10897,900,'comment_shortcuts','false'),(10898,900,'admin_color','fresh'),(10899,900,'use_ssl','0'),(10900,900,'show_admin_bar_front','true'),(10901,900,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10902,900,'wp_user_level','0'),(10903,900,'default_password_nag','1'),(10904,901,'first_name',''),(10905,901,'last_name',''),(10906,901,'nickname','Clement93o'),(10907,901,'description',''),(10908,901,'rich_editing','true'),(10909,901,'comment_shortcuts','false'),(10910,901,'admin_color','fresh'),(10911,901,'use_ssl','0'),(10912,901,'show_admin_bar_front','true'),(10913,901,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10914,901,'wp_user_level','0'),(10915,901,'default_password_nag','1'),(10916,902,'first_name',''),(10917,902,'last_name',''),(10918,902,'nickname','ChristaThibault'),(10919,902,'description',''),(10920,902,'rich_editing','true'),(10921,902,'comment_shortcuts','false'),(10922,902,'admin_color','fresh'),(10923,902,'use_ssl','0'),(10924,902,'show_admin_bar_front','true'),(10925,902,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10926,902,'wp_user_level','0'),(10927,902,'default_password_nag','1'),(10928,903,'first_name',''),(10929,903,'last_name',''),(10930,903,'nickname','PlatVato'),(10931,903,'description',''),(10932,903,'rich_editing','true'),(10933,903,'comment_shortcuts','false'),(10934,903,'admin_color','fresh'),(10935,903,'use_ssl','0'),(10936,903,'show_admin_bar_front','true'),(10937,903,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10938,903,'wp_user_level','0'),(10939,903,'default_password_nag','1'),(10940,904,'first_name',''),(10941,904,'last_name',''),(10942,904,'nickname','Mohamed1085'),(10943,904,'description',''),(10944,904,'rich_editing','true'),(10945,904,'comment_shortcuts','false'),(10946,904,'admin_color','fresh'),(10947,904,'use_ssl','0'),(10948,904,'show_admin_bar_front','true'),(10949,904,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10950,904,'wp_user_level','0'),(10951,904,'default_password_nag','1'),(10952,905,'first_name',''),(10953,905,'last_name',''),(10954,905,'nickname','LatonyaMcFarlan'),(10955,905,'description',''),(10956,905,'rich_editing','true'),(10957,905,'comment_shortcuts','false'),(10958,905,'admin_color','fresh'),(10959,905,'use_ssl','0'),(10960,905,'show_admin_bar_front','true'),(10961,905,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10962,905,'wp_user_level','0'),(10963,905,'default_password_nag','1'),(10964,906,'first_name',''),(10965,906,'last_name',''),(10966,906,'nickname','JamilaGUYC'),(10967,906,'description',''),(10968,906,'rich_editing','true'),(10969,906,'comment_shortcuts','false'),(10970,906,'admin_color','fresh'),(10971,906,'use_ssl','0'),(10972,906,'show_admin_bar_front','true'),(10973,906,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10974,906,'wp_user_level','0'),(10975,906,'default_password_nag','1'),(10976,907,'first_name',''),(10977,907,'last_name',''),(10978,907,'nickname','ItadHewitt'),(10979,907,'description',''),(10980,907,'rich_editing','true'),(10981,907,'comment_shortcuts','false'),(10982,907,'admin_color','fresh'),(10983,907,'use_ssl','0'),(10984,907,'show_admin_bar_front','true'),(10985,907,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10986,907,'wp_user_level','0'),(10987,907,'default_password_nag','1'),(10988,908,'first_name',''),(10989,908,'last_name',''),(10990,908,'nickname','VickeyYoul'),(10991,908,'description',''),(10992,908,'rich_editing','true'),(10993,908,'comment_shortcuts','false'),(10994,908,'admin_color','fresh'),(10995,908,'use_ssl','0'),(10996,908,'show_admin_bar_front','true'),(10997,908,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(10998,908,'wp_user_level','0'),(10999,908,'default_password_nag','1'),(11000,909,'first_name',''),(11001,909,'last_name',''),(11002,909,'nickname','KathlenIhz'),(11003,909,'description',''),(11004,909,'rich_editing','true'),(11005,909,'comment_shortcuts','false'),(11006,909,'admin_color','fresh'),(11007,909,'use_ssl','0'),(11008,909,'show_admin_bar_front','true'),(11009,909,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11010,909,'wp_user_level','0'),(11011,909,'default_password_nag','1'),(11012,910,'first_name',''),(11013,910,'last_name',''),(11014,910,'nickname','BouvuDunrossil'),(11015,910,'description',''),(11016,910,'rich_editing','true'),(11017,910,'comment_shortcuts','false'),(11018,910,'admin_color','fresh'),(11019,910,'use_ssl','0'),(11020,910,'show_admin_bar_front','true'),(11021,910,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11022,910,'wp_user_level','0'),(11023,910,'default_password_nag','1'),(11024,911,'first_name',''),(11025,911,'last_name',''),(11026,911,'nickname','MelodyMosely'),(11027,911,'description',''),(11028,911,'rich_editing','true'),(11029,911,'comment_shortcuts','false'),(11030,911,'admin_color','fresh'),(11031,911,'use_ssl','0'),(11032,911,'show_admin_bar_front','true'),(11033,911,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11034,911,'wp_user_level','0'),(11035,911,'default_password_nag','1'),(11036,912,'first_name',''),(11037,912,'last_name',''),(11038,912,'nickname','MourKOLecapemzp'),(11039,912,'description',''),(11040,912,'rich_editing','true'),(11041,912,'comment_shortcuts','false'),(11042,912,'admin_color','fresh'),(11043,912,'use_ssl','0'),(11044,912,'show_admin_bar_front','true'),(11045,912,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11046,912,'wp_user_level','0'),(11047,912,'default_password_nag','1'),(11048,913,'first_name',''),(11049,913,'last_name',''),(11050,913,'nickname','EBXAngelin'),(11051,913,'description',''),(11052,913,'rich_editing','true'),(11053,913,'comment_shortcuts','false'),(11054,913,'admin_color','fresh'),(11055,913,'use_ssl','0'),(11056,913,'show_admin_bar_front','true'),(11057,913,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11058,913,'wp_user_level','0'),(11059,913,'default_password_nag','1'),(11060,914,'first_name',''),(11061,914,'last_name',''),(11062,914,'nickname','MaryellMathews'),(11063,914,'description',''),(11064,914,'rich_editing','true'),(11065,914,'comment_shortcuts','false'),(11066,914,'admin_color','fresh'),(11067,914,'use_ssl','0'),(11068,914,'show_admin_bar_front','true'),(11069,914,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11070,914,'wp_user_level','0'),(11071,914,'default_password_nag','1'),(11072,915,'first_name',''),(11073,915,'last_name',''),(11074,915,'nickname','MaiChatterton'),(11075,915,'description',''),(11076,915,'rich_editing','true'),(11077,915,'comment_shortcuts','false'),(11078,915,'admin_color','fresh'),(11079,915,'use_ssl','0'),(11080,915,'show_admin_bar_front','true'),(11081,915,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11082,915,'wp_user_level','0'),(11083,915,'default_password_nag','1'),(11084,916,'first_name',''),(11085,916,'last_name',''),(11086,916,'nickname','AntonettaSpitze'),(11087,916,'description',''),(11088,916,'rich_editing','true'),(11089,916,'comment_shortcuts','false'),(11090,916,'admin_color','fresh'),(11091,916,'use_ssl','0'),(11092,916,'show_admin_bar_front','true'),(11093,916,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11094,916,'wp_user_level','0'),(11095,916,'default_password_nag','1'),(11096,917,'first_name',''),(11097,917,'last_name',''),(11098,917,'nickname','EarleWzlidfux'),(11099,917,'description',''),(11100,917,'rich_editing','true'),(11101,917,'comment_shortcuts','false'),(11102,917,'admin_color','fresh'),(11103,917,'use_ssl','0'),(11104,917,'show_admin_bar_front','true'),(11105,917,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11106,917,'wp_user_level','0'),(11107,917,'default_password_nag','1'),(11108,918,'first_name',''),(11109,918,'last_name',''),(11110,918,'nickname','CatherineJeffer'),(11111,918,'description',''),(11112,918,'rich_editing','true'),(11113,918,'comment_shortcuts','false'),(11114,918,'admin_color','fresh'),(11115,918,'use_ssl','0'),(11116,918,'show_admin_bar_front','true'),(11117,918,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11118,918,'wp_user_level','0'),(11119,918,'default_password_nag','1'),(11122,919,'nickname','AnnmariLeitch'),(11123,919,'description',''),(11124,919,'rich_editing','true'),(11125,919,'comment_shortcuts','false'),(11126,919,'admin_color','fresh'),(11127,919,'use_ssl','0'),(11128,919,'show_admin_bar_front','true'),(11129,919,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11130,919,'wp_user_level','0'),(11131,919,'default_password_nag','1'),(11132,920,'first_name',''),(11133,920,'last_name',''),(11134,920,'nickname','LeeWYYsdjkwod'),(11135,920,'description',''),(11136,920,'rich_editing','true'),(11137,920,'comment_shortcuts','false'),(11138,920,'admin_color','fresh'),(11139,920,'use_ssl','0'),(11140,920,'show_admin_bar_front','true'),(11141,920,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11142,920,'wp_user_level','0'),(11143,920,'default_password_nag','1'),(11144,921,'first_name',''),(11145,921,'last_name',''),(11146,921,'nickname','DorotheEwan'),(11147,921,'description',''),(11148,921,'rich_editing','true'),(11149,921,'comment_shortcuts','false'),(11150,921,'admin_color','fresh'),(11151,921,'use_ssl','0'),(11152,921,'show_admin_bar_front','true'),(11153,921,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11154,921,'wp_user_level','0'),(11155,921,'default_password_nag','1'),(11156,922,'first_name',''),(11157,922,'last_name',''),(11158,922,'nickname','IsisWinterbotha'),(11159,922,'description',''),(11160,922,'rich_editing','true'),(11161,922,'comment_shortcuts','false'),(11162,922,'admin_color','fresh'),(11163,922,'use_ssl','0'),(11164,922,'show_admin_bar_front','true'),(11165,922,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11166,922,'wp_user_level','0'),(11167,922,'default_password_nag','1'),(11168,923,'first_name',''),(11169,923,'last_name',''),(11170,923,'nickname','KandisKXJkjrpt'),(11171,923,'description',''),(11172,923,'rich_editing','true'),(11173,923,'comment_shortcuts','false'),(11174,923,'admin_color','fresh'),(11175,923,'use_ssl','0'),(11176,923,'show_admin_bar_front','true'),(11177,923,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11178,923,'wp_user_level','0'),(11179,923,'default_password_nag','1'),(11388,941,'first_name',''),(11184,924,'first_name',''),(11185,924,'last_name',''),(11186,924,'nickname','SergioMerryman'),(11187,924,'description',''),(11188,924,'rich_editing','true'),(11189,924,'comment_shortcuts','false'),(11190,924,'admin_color','fresh'),(11191,924,'use_ssl','0'),(11192,924,'show_admin_bar_front','true'),(11193,924,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11194,924,'wp_user_level','0'),(11195,924,'default_password_nag','1'),(11196,925,'first_name',''),(11197,925,'last_name',''),(11198,925,'nickname','JosiahUthf'),(11199,925,'description',''),(11200,925,'rich_editing','true'),(11201,925,'comment_shortcuts','false'),(11202,925,'admin_color','fresh'),(11203,925,'use_ssl','0'),(11204,925,'show_admin_bar_front','true'),(11205,925,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11206,925,'wp_user_level','0'),(11207,925,'default_password_nag','1'),(11208,926,'first_name',''),(11209,926,'last_name',''),(11210,926,'nickname','SondraEJIxdjso'),(11211,926,'description',''),(11212,926,'rich_editing','true'),(11213,926,'comment_shortcuts','false'),(11214,926,'admin_color','fresh'),(11215,926,'use_ssl','0'),(11216,926,'show_admin_bar_front','true'),(11217,926,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11218,926,'wp_user_level','0'),(11219,926,'default_password_nag','1'),(11220,927,'first_name',''),(11180,859,'aim',''),(11181,859,'yim',''),(11182,859,'jabber',''),(11183,859,'gauthor','oystrrt'),(11221,927,'last_name',''),(11222,927,'nickname','BruceHailes'),(11223,927,'description',''),(11224,927,'rich_editing','true'),(11225,927,'comment_shortcuts','false'),(11226,927,'admin_color','fresh'),(11227,927,'use_ssl','0'),(11228,927,'show_admin_bar_front','true'),(11229,927,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11230,927,'wp_user_level','0'),(11231,927,'default_password_nag','1'),(11232,928,'first_name',''),(11233,928,'last_name',''),(11234,928,'nickname','LucaDawkins'),(11235,928,'description',''),(11236,928,'rich_editing','true'),(11237,928,'comment_shortcuts','false'),(11238,928,'admin_color','fresh'),(11239,928,'use_ssl','0'),(11240,928,'show_admin_bar_front','true'),(11241,928,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11242,928,'wp_user_level','0'),(11243,928,'default_password_nag','1'),(11244,929,'first_name',''),(11245,929,'last_name',''),(11246,929,'nickname','OtiliaHiggin'),(11247,929,'description',''),(11248,929,'rich_editing','true'),(11249,929,'comment_shortcuts','false'),(11250,929,'admin_color','fresh'),(11251,929,'use_ssl','0'),(11252,929,'show_admin_bar_front','true'),(11253,929,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11254,929,'wp_user_level','0'),(11255,929,'default_password_nag','1'),(11256,930,'first_name',''),(11257,930,'last_name',''),(11258,930,'nickname','ClaudetMcGahan'),(11259,930,'description',''),(11260,930,'rich_editing','true'),(11261,930,'comment_shortcuts','false'),(11262,930,'admin_color','fresh'),(11263,930,'use_ssl','0'),(11264,930,'show_admin_bar_front','true'),(11265,930,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11266,930,'wp_user_level','0'),(11267,930,'default_password_nag','1'),(11268,931,'first_name',''),(11269,931,'last_name',''),(11270,931,'nickname','JosefinBiddell'),(11271,931,'description',''),(11272,931,'rich_editing','true'),(11273,931,'comment_shortcuts','false'),(11274,931,'admin_color','fresh'),(11275,931,'use_ssl','0'),(11276,931,'show_admin_bar_front','true'),(11277,931,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11278,931,'wp_user_level','0'),(11279,931,'default_password_nag','1'),(11280,932,'first_name',''),(11281,932,'last_name',''),(11282,932,'nickname','LukasIngle'),(11283,932,'description',''),(11284,932,'rich_editing','true'),(11285,932,'comment_shortcuts','false'),(11286,932,'admin_color','fresh'),(11287,932,'use_ssl','0'),(11288,932,'show_admin_bar_front','true'),(11289,932,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11290,932,'wp_user_level','0'),(11291,932,'default_password_nag','1'),(11292,933,'first_name',''),(11293,933,'last_name',''),(11294,933,'nickname','IlsePerllc'),(11295,933,'description',''),(11296,933,'rich_editing','true'),(11297,933,'comment_shortcuts','false'),(11298,933,'admin_color','fresh'),(11299,933,'use_ssl','0'),(11300,933,'show_admin_bar_front','true'),(11301,933,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11302,933,'wp_user_level','0'),(11303,933,'default_password_nag','1'),(11304,934,'first_name',''),(11305,934,'last_name',''),(11306,934,'nickname','KingLpwsiyxqub'),(11307,934,'description',''),(11308,934,'rich_editing','true'),(11309,934,'comment_shortcuts','false'),(11310,934,'admin_color','fresh'),(11311,934,'use_ssl','0'),(11312,934,'show_admin_bar_front','true'),(11313,934,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11314,934,'wp_user_level','0'),(11315,934,'default_password_nag','1'),(11316,935,'first_name',''),(11317,935,'last_name',''),(11318,935,'nickname','JerroldQla'),(11319,935,'description',''),(11320,935,'rich_editing','true'),(11321,935,'comment_shortcuts','false'),(11322,935,'admin_color','fresh'),(11323,935,'use_ssl','0'),(11324,935,'show_admin_bar_front','true'),(11325,935,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11326,935,'wp_user_level','0'),(11327,935,'default_password_nag','1'),(11328,936,'first_name',''),(11329,936,'last_name',''),(11330,936,'nickname','ElisabeFenton'),(11331,936,'description',''),(11332,936,'rich_editing','true'),(11333,936,'comment_shortcuts','false'),(11334,936,'admin_color','fresh'),(11335,936,'use_ssl','0'),(11336,936,'show_admin_bar_front','true'),(11337,936,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11338,936,'wp_user_level','0'),(11339,936,'default_password_nag','1'),(11340,937,'first_name',''),(11341,937,'last_name',''),(11342,937,'nickname','KatheriBecerra'),(11343,937,'description',''),(11344,937,'rich_editing','true'),(11345,937,'comment_shortcuts','false'),(11346,937,'admin_color','fresh'),(11347,937,'use_ssl','0'),(11348,937,'show_admin_bar_front','true'),(11349,937,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11350,937,'wp_user_level','0'),(11351,937,'default_password_nag','1'),(11352,938,'first_name',''),(11353,938,'last_name',''),(11354,938,'nickname','Rita14Bobooz'),(11355,938,'description',''),(11356,938,'rich_editing','true'),(11357,938,'comment_shortcuts','false'),(11358,938,'admin_color','fresh'),(11359,938,'use_ssl','0'),(11360,938,'show_admin_bar_front','true'),(11361,938,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11362,938,'wp_user_level','0'),(11363,938,'default_password_nag','1'),(11364,939,'first_name',''),(11365,939,'last_name',''),(11366,939,'nickname','SusannaO99'),(11367,939,'description',''),(11368,939,'rich_editing','true'),(11369,939,'comment_shortcuts','false'),(11370,939,'admin_color','fresh'),(11371,939,'use_ssl','0'),(11372,939,'show_admin_bar_front','true'),(11373,939,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11374,939,'wp_user_level','0'),(11375,939,'default_password_nag','1'),(11376,940,'first_name',''),(11377,940,'last_name',''),(11378,940,'nickname','AlmaLeppert'),(11379,940,'description',''),(11380,940,'rich_editing','true'),(11381,940,'comment_shortcuts','false'),(11382,940,'admin_color','fresh'),(11383,940,'use_ssl','0'),(11384,940,'show_admin_bar_front','true'),(11385,940,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11386,940,'wp_user_level','0'),(11387,940,'default_password_nag','1'),(11389,941,'last_name',''),(11390,941,'nickname','Aaron63Hkrm'),(11391,941,'description',''),(11392,941,'rich_editing','true'),(11393,941,'comment_shortcuts','false'),(11394,941,'admin_color','fresh'),(11395,941,'use_ssl','0'),(11396,941,'show_admin_bar_front','true'),(11397,941,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11398,941,'wp_user_level','0'),(11399,941,'default_password_nag','1'),(11400,942,'first_name',''),(11401,942,'last_name',''),(11402,942,'nickname','LeilaniDockery'),(11403,942,'description',''),(11404,942,'rich_editing','true'),(11405,942,'comment_shortcuts','false'),(11406,942,'admin_color','fresh'),(11407,942,'use_ssl','0'),(11408,942,'show_admin_bar_front','true'),(11409,942,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11410,942,'wp_user_level','0'),(11411,942,'default_password_nag','1'),(11412,943,'first_name',''),(11413,943,'last_name',''),(11414,943,'nickname','EmmettHudspeth'),(11415,943,'description',''),(11416,943,'rich_editing','true'),(11417,943,'comment_shortcuts','false'),(11418,943,'admin_color','fresh'),(11419,943,'use_ssl','0'),(11420,943,'show_admin_bar_front','true'),(11421,943,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11422,943,'wp_user_level','0'),(11423,943,'default_password_nag','1'),(11424,944,'first_name',''),(11425,944,'last_name',''),(11426,944,'nickname','RuthieYvgbzpld'),(11427,944,'description',''),(11428,944,'rich_editing','true'),(11429,944,'comment_shortcuts','false'),(11430,944,'admin_color','fresh'),(11431,944,'use_ssl','0'),(11432,944,'show_admin_bar_front','true'),(11433,944,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11434,944,'wp_user_level','0'),(11435,944,'default_password_nag','1'),(11437,945,'last_name',''),(11438,945,'nickname','BrianneYdb'),(11439,945,'description',''),(11440,945,'rich_editing','true'),(11441,945,'comment_shortcuts','false'),(11442,945,'admin_color','fresh'),(11443,945,'use_ssl','0'),(11444,945,'show_admin_bar_front','true'),(11445,945,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11446,945,'wp_user_level','0'),(11447,945,'default_password_nag','1'),(11448,946,'first_name',''),(11449,946,'last_name',''),(11450,946,'nickname','JulianBolinger'),(11451,946,'description',''),(11452,946,'rich_editing','true'),(11453,946,'comment_shortcuts','false'),(11454,946,'admin_color','fresh'),(11455,946,'use_ssl','0'),(11456,946,'show_admin_bar_front','true'),(11457,946,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11458,946,'wp_user_level','0'),(11459,946,'default_password_nag','1'),(11460,947,'first_name','Freundinz'),(11461,947,'last_name','Freundinz'),(11462,947,'nickname','Freundinz'),(11463,947,'description','Live Livecams mit geilen Hausfrauen. \r\n<a href=\"http://ex-freund.in\">Hot EX-freundin</a> kostenlos testen. Mature Sex aus ganz Deutschland. \r\n \r\n \r\n \r\nLive Sexcam mit scharfen Huren. \r\nEX-freundin Porn gratis testen. Free Sexcam aus ganz Deutschland.'),(11464,947,'rich_editing','true'),(11465,947,'comment_shortcuts','false'),(11466,947,'admin_color','fresh'),(11467,947,'use_ssl','0'),(11468,947,'show_admin_bar_front','true'),(11469,947,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11470,947,'wp_user_level','0'),(11471,947,'default_password_nag',''),(11472,948,'first_name',''),(11473,948,'last_name',''),(11474,948,'nickname','JulianaMcDonagh'),(11475,948,'description',''),(11476,948,'rich_editing','true'),(11477,948,'comment_shortcuts','false'),(11478,948,'admin_color','fresh'),(11479,948,'use_ssl','0'),(11480,948,'show_admin_bar_front','true'),(11481,948,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11482,948,'wp_user_level','0'),(11483,948,'default_password_nag','1'),(11484,947,'aim',''),(11485,947,'yim',''),(11486,947,'jabber',''),(11487,947,'gauthor','Freundinz'),(11488,949,'first_name',''),(11489,949,'last_name',''),(11490,949,'nickname','JuanaStamper'),(11491,949,'description',''),(11492,949,'rich_editing','true'),(11493,949,'comment_shortcuts','false'),(11494,949,'admin_color','fresh'),(11495,949,'use_ssl','0'),(11496,949,'show_admin_bar_front','true'),(11497,949,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11498,949,'wp_user_level','0'),(11499,949,'default_password_nag','1'),(11500,950,'first_name',''),(11501,950,'last_name',''),(11502,950,'nickname','MazieGardiner'),(11503,950,'description',''),(11504,950,'rich_editing','true'),(11505,950,'comment_shortcuts','false'),(11506,950,'admin_color','fresh'),(11507,950,'use_ssl','0'),(11508,950,'show_admin_bar_front','true'),(11509,950,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11510,950,'wp_user_level','0'),(11511,950,'default_password_nag','1'),(11512,951,'first_name',''),(11513,951,'last_name',''),(11514,951,'nickname','ClydePiyeks'),(11515,951,'description',''),(11516,951,'rich_editing','true'),(11517,951,'comment_shortcuts','false'),(11518,951,'admin_color','fresh'),(11519,951,'use_ssl','0'),(11520,951,'show_admin_bar_front','true'),(11521,951,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11522,951,'wp_user_level','0'),(11523,951,'default_password_nag','1'),(11524,952,'first_name',''),(11525,952,'last_name',''),(11526,952,'nickname','Tammie0235'),(11527,952,'description',''),(11528,952,'rich_editing','true'),(11529,952,'comment_shortcuts','false'),(11530,952,'admin_color','fresh'),(11531,952,'use_ssl','0'),(11532,952,'show_admin_bar_front','true'),(11533,952,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11534,952,'wp_user_level','0'),(11535,952,'default_password_nag','1'),(11536,953,'first_name',''),(11537,953,'last_name',''),(11538,953,'nickname','BarrylR'),(11539,953,'description',''),(11540,953,'rich_editing','true'),(11541,953,'comment_shortcuts','false'),(11542,953,'admin_color','fresh'),(11543,953,'use_ssl','0'),(11544,953,'show_admin_bar_front','true'),(11545,953,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11546,953,'wp_user_level','0'),(11547,953,'default_password_nag','1'),(11596,958,'first_name',''),(11548,954,'first_name',''),(11549,954,'last_name',''),(11550,954,'nickname','KlaudiaMFM'),(11551,954,'description',''),(11552,954,'rich_editing','true'),(11553,954,'comment_shortcuts','false'),(11554,954,'admin_color','fresh'),(11555,954,'use_ssl','0'),(11556,954,'show_admin_bar_front','true'),(11557,954,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11558,954,'wp_user_level','0'),(11559,954,'default_password_nag','1'),(11560,955,'first_name',''),(11561,955,'last_name',''),(11562,955,'nickname','RefugiaSNB'),(11563,955,'description',''),(11564,955,'rich_editing','true'),(11565,955,'comment_shortcuts','false'),(11566,955,'admin_color','fresh'),(11567,955,'use_ssl','0'),(11568,955,'show_admin_bar_front','true'),(11569,955,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11570,955,'wp_user_level','0'),(11571,955,'default_password_nag','1'),(11572,956,'first_name',''),(11573,956,'last_name',''),(11574,956,'nickname','AUAUlrichyvfbd'),(11575,956,'description',''),(11576,956,'rich_editing','true'),(11577,956,'comment_shortcuts','false'),(11578,956,'admin_color','fresh'),(11579,956,'use_ssl','0'),(11580,956,'show_admin_bar_front','true'),(11581,956,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11582,956,'wp_user_level','0'),(11583,956,'default_password_nag','1'),(11584,957,'first_name',''),(11585,957,'last_name',''),(11586,957,'nickname','IlanaYEKxvhocub'),(11587,957,'description',''),(11588,957,'rich_editing','true'),(11589,957,'comment_shortcuts','false'),(11590,957,'admin_color','fresh'),(11591,957,'use_ssl','0'),(11592,957,'show_admin_bar_front','true'),(11593,957,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11594,957,'wp_user_level','0'),(11595,957,'default_password_nag','1'),(11597,958,'last_name',''),(11598,958,'nickname','TracyGellxpwt'),(11599,958,'description',''),(11600,958,'rich_editing','true'),(11601,958,'comment_shortcuts','false'),(11602,958,'admin_color','fresh'),(11603,958,'use_ssl','0'),(11604,958,'show_admin_bar_front','true'),(11605,958,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11606,958,'wp_user_level','0'),(11607,958,'default_password_nag','1'),(11608,959,'first_name',''),(11609,959,'last_name',''),(11610,959,'nickname','RositaWOBI'),(11611,959,'description',''),(11612,959,'rich_editing','true'),(11613,959,'comment_shortcuts','false'),(11614,959,'admin_color','fresh'),(11615,959,'use_ssl','0'),(11616,959,'show_admin_bar_front','true'),(11617,959,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11618,959,'wp_user_level','0'),(11619,959,'default_password_nag','1'),(11620,960,'first_name',''),(11621,960,'last_name',''),(11622,960,'nickname','LeahTFOimwdil'),(11623,960,'description',''),(11624,960,'rich_editing','true'),(11625,960,'comment_shortcuts','false'),(11626,960,'admin_color','fresh'),(11627,960,'use_ssl','0'),(11628,960,'show_admin_bar_front','true'),(11629,960,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11630,960,'wp_user_level','0'),(11631,960,'default_password_nag','1'),(11632,961,'first_name',''),(11633,961,'last_name',''),(11634,961,'nickname','EarleDliujjgxru'),(11635,961,'description',''),(11636,961,'rich_editing','true'),(11637,961,'comment_shortcuts','false'),(11638,961,'admin_color','fresh'),(11639,961,'use_ssl','0'),(11640,961,'show_admin_bar_front','true'),(11641,961,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11642,961,'wp_user_level','0'),(11643,961,'default_password_nag','1'),(11644,962,'first_name',''),(11645,962,'last_name',''),(11646,962,'nickname','CoralMoorgvuw'),(11647,962,'description',''),(11648,962,'rich_editing','true'),(11649,962,'comment_shortcuts','false'),(11650,962,'admin_color','fresh'),(11651,962,'use_ssl','0'),(11652,962,'show_admin_bar_front','true'),(11653,962,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11654,962,'wp_user_level','0'),(11655,962,'default_password_nag','1'),(11656,963,'first_name',''),(11657,963,'last_name',''),(11658,963,'nickname','BasilBourget'),(11659,963,'description',''),(11660,963,'rich_editing','true'),(11661,963,'comment_shortcuts','false'),(11662,963,'admin_color','fresh'),(11663,963,'use_ssl','0'),(11664,963,'show_admin_bar_front','true'),(11665,963,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11666,963,'wp_user_level','0'),(11667,963,'default_password_nag','1'),(11668,964,'first_name',''),(11669,964,'last_name',''),(11670,964,'nickname','ForrestStilwell'),(11671,964,'description',''),(11672,964,'rich_editing','true'),(11673,964,'comment_shortcuts','false'),(11674,964,'admin_color','fresh'),(11675,964,'use_ssl','0'),(11676,964,'show_admin_bar_front','true'),(11677,964,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11678,964,'wp_user_level','0'),(11679,964,'default_password_nag','1'),(11680,965,'first_name',''),(11681,965,'last_name',''),(11682,965,'nickname','Sarahf5okb'),(11683,965,'description','My name is Aracely 22 and my hobbies are Kayaking footb and Element collecting footb.\r\n\r\n--------\r\nPare słów po Polsku\r\n\r\nMisją naszej firmy jest tworzenie niepowtarzalnych filmów i fotografii <a href=\"http://ido-studios.com\" rel=\"dofollow\">fotografia ślubna rzeszów</a>, które uwiecznią najpiękniejsze chwile waszego życia.Podstawą naszej oferty jest wysoka jakość wykonywanych usług oraz konkurencyjne ceny. Tworzymy zespół kompetentnych, wykształconych i ambitnych młodych ludzi gotowych sprostać najwyższym . Każdego Klienta staramy się traktować indywidualnie.Serdecznie zapraszamy do skorzystania z naszej oferty.'),(11684,965,'rich_editing','true'),(11685,965,'comment_shortcuts','false'),(11686,965,'admin_color','fresh'),(11687,965,'use_ssl','0'),(11688,965,'show_admin_bar_front','true'),(11689,965,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11690,965,'wp_user_level','0'),(11691,965,'default_password_nag','1'),(11692,966,'first_name',''),(11693,966,'last_name',''),(11694,966,'nickname','JoshuaYeager'),(11695,966,'description',''),(11696,966,'rich_editing','true'),(11697,966,'comment_shortcuts','false'),(11698,966,'admin_color','fresh'),(11699,966,'use_ssl','0'),(11700,966,'show_admin_bar_front','true'),(11701,966,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11702,966,'wp_user_level','0'),(11703,966,'default_password_nag','1'),(11704,967,'first_name',''),(11705,967,'last_name',''),(11706,967,'nickname','MylesLindon'),(11707,967,'description',''),(11708,967,'rich_editing','true'),(11709,967,'comment_shortcuts','false'),(11710,967,'admin_color','fresh'),(11711,967,'use_ssl','0'),(11712,967,'show_admin_bar_front','true'),(11713,967,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11714,967,'wp_user_level','0'),(11715,967,'default_password_nag','1'),(11716,968,'first_name',''),(11717,968,'last_name',''),(11718,968,'nickname','TiaraGannfjgac'),(11719,968,'description',''),(11720,968,'rich_editing','true'),(11721,968,'comment_shortcuts','false'),(11722,968,'admin_color','fresh'),(11723,968,'use_ssl','0'),(11724,968,'show_admin_bar_front','true'),(11725,968,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11726,968,'wp_user_level','0'),(11727,968,'default_password_nag','1'),(11728,969,'first_name',''),(11729,969,'last_name',''),(11730,969,'nickname','toman53vhl'),(11731,969,'description',''),(11732,969,'rich_editing','true'),(11733,969,'comment_shortcuts','false'),(11734,969,'admin_color','fresh'),(11735,969,'use_ssl','0'),(11736,969,'show_admin_bar_front','true'),(11737,969,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11738,969,'wp_user_level','0'),(11739,969,'default_password_nag','1'),(11740,970,'first_name',''),(11741,970,'last_name',''),(11742,970,'nickname','JonathoHarmer'),(11743,970,'description',''),(11744,970,'rich_editing','true'),(11745,970,'comment_shortcuts','false'),(11746,970,'admin_color','fresh'),(11747,970,'use_ssl','0'),(11748,970,'show_admin_bar_front','true'),(11749,970,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11750,970,'wp_user_level','0'),(11751,970,'default_password_nag','1'),(11752,971,'first_name',''),(11753,971,'last_name',''),(11754,971,'nickname','Josef51Ttj'),(11755,971,'description',''),(11756,971,'rich_editing','true'),(11757,971,'comment_shortcuts','false'),(11758,971,'admin_color','fresh'),(11759,971,'use_ssl','0'),(11760,971,'show_admin_bar_front','true'),(11761,971,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11762,971,'wp_user_level','0'),(11763,971,'default_password_nag','1'),(11764,972,'first_name',''),(11765,972,'last_name',''),(11766,972,'nickname','EthelAwadxtg'),(11767,972,'description',''),(11768,972,'rich_editing','true'),(11769,972,'comment_shortcuts','false'),(11770,972,'admin_color','fresh'),(11771,972,'use_ssl','0'),(11772,972,'show_admin_bar_front','true'),(11773,972,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11774,972,'wp_user_level','0'),(11775,972,'default_password_nag','1'),(11776,973,'first_name',''),(11777,973,'last_name',''),(11778,973,'nickname','FUTLelandvfbhys'),(11779,973,'description',''),(11780,973,'rich_editing','true'),(11781,973,'comment_shortcuts','false'),(11782,973,'admin_color','fresh'),(11783,973,'use_ssl','0'),(11784,973,'show_admin_bar_front','true'),(11785,973,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11786,973,'wp_user_level','0'),(11787,973,'default_password_nag','1'),(11788,974,'first_name',''),(11789,974,'last_name',''),(11790,974,'nickname','YvonneNagilz'),(11791,974,'description',''),(11792,974,'rich_editing','true'),(11793,974,'comment_shortcuts','false'),(11794,974,'admin_color','fresh'),(11795,974,'use_ssl','0'),(11796,974,'show_admin_bar_front','true'),(11797,974,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11798,974,'wp_user_level','0'),(11799,974,'default_password_nag','1'),(11800,975,'first_name',''),(11801,975,'last_name',''),(11802,975,'nickname','CandaceGlenny'),(11803,975,'description',''),(11804,975,'rich_editing','true'),(11805,975,'comment_shortcuts','false'),(11806,975,'admin_color','fresh'),(11807,975,'use_ssl','0'),(11808,975,'show_admin_bar_front','true'),(11809,975,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11810,975,'wp_user_level','0'),(11811,975,'default_password_nag','1'),(11812,976,'first_name','GordonptDK'),(11813,976,'last_name','GordonptDK'),(11814,976,'nickname','Gordonpt'),(11815,976,'description','A few of the several insurance protection companies that you can carry out along with will help spend for orthodontics treatment. It can be very costly to reach pay the whole bill regarding brackets by yourself. That\'s why a number of them search for assist. \r\n <a href=\"http://chwilowkias.pl\">chwilówki pies </a> ?'),(11816,976,'rich_editing','true'),(11817,976,'comment_shortcuts','false'),(11818,976,'admin_color','fresh'),(11819,976,'use_ssl','0'),(11820,976,'show_admin_bar_front','true'),(11821,976,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11822,976,'wp_user_level','0'),(11823,976,'default_password_nag',''),(11824,976,'aim',''),(11825,976,'yim',''),(11826,976,'jabber',''),(11827,976,'gauthor','Gordonpt'),(11864,980,'first_name',''),(11828,977,'first_name',''),(11829,977,'last_name',''),(11830,977,'nickname','pawelek28i'),(11831,977,'description',''),(11832,977,'rich_editing','true'),(11833,977,'comment_shortcuts','false'),(11834,977,'admin_color','fresh'),(11835,977,'use_ssl','0'),(11836,977,'show_admin_bar_front','true'),(11837,977,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11838,977,'wp_user_level','0'),(11839,977,'default_password_nag','1'),(11840,978,'first_name',''),(11841,978,'last_name',''),(11842,978,'nickname','MKWPerrydlxhwc'),(11843,978,'description',''),(11844,978,'rich_editing','true'),(11845,978,'comment_shortcuts','false'),(11846,978,'admin_color','fresh'),(11847,978,'use_ssl','0'),(11848,978,'show_admin_bar_front','true'),(11849,978,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11850,978,'wp_user_level','0'),(11851,978,'default_password_nag','1'),(11852,979,'first_name',''),(11853,979,'last_name',''),(11854,979,'nickname','MaryannMurdock'),(11855,979,'description',''),(11856,979,'rich_editing','true'),(11857,979,'comment_shortcuts','false'),(11858,979,'admin_color','fresh'),(11859,979,'use_ssl','0'),(11860,979,'show_admin_bar_front','true'),(11861,979,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11862,979,'wp_user_level','0'),(11863,979,'default_password_nag','1'),(11865,980,'last_name',''),(11866,980,'nickname','carpinteyrogsl'),(11867,980,'description',''),(11868,980,'rich_editing','true'),(11869,980,'comment_shortcuts','false'),(11870,980,'admin_color','fresh'),(11871,980,'use_ssl','0'),(11872,980,'show_admin_bar_front','true'),(11873,980,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11874,980,'wp_user_level','0'),(11875,980,'default_password_nag','1'),(11876,981,'first_name',''),(11877,981,'last_name',''),(11878,981,'nickname','OuroubiMoffatt'),(11879,981,'description',''),(11880,981,'rich_editing','true'),(11881,981,'comment_shortcuts','false'),(11882,981,'admin_color','fresh'),(11883,981,'use_ssl','0'),(11884,981,'show_admin_bar_front','true'),(11885,981,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11886,981,'wp_user_level','0'),(11887,981,'default_password_nag','1'),(11888,982,'first_name',''),(11889,982,'last_name',''),(11890,982,'nickname','GenevaAfpkbczy'),(11891,982,'description',''),(11892,982,'rich_editing','true'),(11893,982,'comment_shortcuts','false'),(11894,982,'admin_color','fresh'),(11895,982,'use_ssl','0'),(11896,982,'show_admin_bar_front','true'),(11897,982,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11898,982,'wp_user_level','0'),(11899,982,'default_password_nag','1'),(11900,983,'first_name',''),(11901,983,'last_name',''),(11902,983,'nickname','CristinLoomis'),(11903,983,'description',''),(11904,983,'rich_editing','true'),(11905,983,'comment_shortcuts','false'),(11906,983,'admin_color','fresh'),(11907,983,'use_ssl','0'),(11908,983,'show_admin_bar_front','true'),(11909,983,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11910,983,'wp_user_level','0'),(11911,983,'default_password_nag','1'),(11912,984,'first_name',''),(11913,984,'last_name',''),(11914,984,'nickname','LaurenLwhcubziy'),(11915,984,'description',''),(11916,984,'rich_editing','true'),(11917,984,'comment_shortcuts','false'),(11918,984,'admin_color','fresh'),(11919,984,'use_ssl','0'),(11920,984,'show_admin_bar_front','true'),(11921,984,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11922,984,'wp_user_level','0'),(11923,984,'default_password_nag','1'),(11924,985,'first_name',''),(11925,985,'last_name',''),(11926,985,'nickname','GuillerBroadhur'),(11927,985,'description',''),(11928,985,'rich_editing','true'),(11929,985,'comment_shortcuts','false'),(11930,985,'admin_color','fresh'),(11931,985,'use_ssl','0'),(11932,985,'show_admin_bar_front','true'),(11933,985,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11934,985,'wp_user_level','0'),(11935,985,'default_password_nag','1'),(11936,986,'first_name',''),(11937,986,'last_name',''),(11938,986,'nickname','BrigittHanley'),(11939,986,'description',''),(11940,986,'rich_editing','true'),(11941,986,'comment_shortcuts','false'),(11942,986,'admin_color','fresh'),(11943,986,'use_ssl','0'),(11944,986,'show_admin_bar_front','true'),(11945,986,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11946,986,'wp_user_level','0'),(11947,986,'default_password_nag','1'),(11948,987,'first_name',''),(11949,987,'last_name',''),(11950,987,'nickname','MatthiaBudd'),(11951,987,'description',''),(11952,987,'rich_editing','true'),(11953,987,'comment_shortcuts','false'),(11954,987,'admin_color','fresh'),(11955,987,'use_ssl','0'),(11956,987,'show_admin_bar_front','true'),(11957,987,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11958,987,'wp_user_level','0'),(11959,987,'default_password_nag','1'),(11960,988,'first_name',''),(11961,988,'last_name',''),(11962,988,'nickname','DeniseChamberla'),(11963,988,'description',''),(11964,988,'rich_editing','true'),(11965,988,'comment_shortcuts','false'),(11966,988,'admin_color','fresh'),(11967,988,'use_ssl','0'),(11968,988,'show_admin_bar_front','true'),(11969,988,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11970,988,'wp_user_level','0'),(11971,988,'default_password_nag','1'),(11972,989,'first_name',''),(11973,989,'last_name',''),(11974,989,'nickname','MarionLovekin'),(11975,989,'description',''),(11976,989,'rich_editing','true'),(11977,989,'comment_shortcuts','false'),(11978,989,'admin_color','fresh'),(11979,989,'use_ssl','0'),(11980,989,'show_admin_bar_front','true'),(11981,989,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11982,989,'wp_user_level','0'),(11983,989,'default_password_nag','1'),(11984,990,'first_name',''),(11985,990,'last_name',''),(11986,990,'nickname','IsisButeau'),(11987,990,'description',''),(11988,990,'rich_editing','true'),(11989,990,'comment_shortcuts','false'),(11990,990,'admin_color','fresh'),(11991,990,'use_ssl','0'),(11992,990,'show_admin_bar_front','true'),(11993,990,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(11994,990,'wp_user_level','0'),(11995,990,'default_password_nag','1'),(11996,991,'first_name',''),(11997,991,'last_name',''),(11998,991,'nickname','Katheri6971'),(11999,991,'description',''),(12000,991,'rich_editing','true'),(12001,991,'comment_shortcuts','false'),(12002,991,'admin_color','fresh'),(12003,991,'use_ssl','0'),(12004,991,'show_admin_bar_front','true'),(12005,991,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12006,991,'wp_user_level','0'),(12007,991,'default_password_nag','1'),(12008,992,'first_name',''),(12009,992,'last_name',''),(12010,992,'nickname','YasminBradway'),(12011,992,'description',''),(12012,992,'rich_editing','true'),(12013,992,'comment_shortcuts','false'),(12014,992,'admin_color','fresh'),(12015,992,'use_ssl','0'),(12016,992,'show_admin_bar_front','true'),(12017,992,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12018,992,'wp_user_level','0'),(12019,992,'default_password_nag','1'),(12020,993,'first_name',''),(12021,993,'last_name',''),(12022,993,'nickname','GuyBGUUhsqq'),(12023,993,'description',''),(12024,993,'rich_editing','true'),(12025,993,'comment_shortcuts','false'),(12026,993,'admin_color','fresh'),(12027,993,'use_ssl','0'),(12028,993,'show_admin_bar_front','true'),(12029,993,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12030,993,'wp_user_level','0'),(12031,993,'default_password_nag','1'),(12032,994,'first_name',''),(12033,994,'last_name',''),(12034,994,'nickname','AKHCoufeezoieta'),(12035,994,'description',''),(12036,994,'rich_editing','true'),(12037,994,'comment_shortcuts','false'),(12038,994,'admin_color','fresh'),(12039,994,'use_ssl','0'),(12040,994,'show_admin_bar_front','true'),(12041,994,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12042,994,'wp_user_level','0'),(12043,994,'default_password_nag','1'),(12044,995,'first_name',''),(12045,995,'last_name',''),(12046,995,'nickname','KaliBrumbaugh'),(12047,995,'description',''),(12048,995,'rich_editing','true'),(12049,995,'comment_shortcuts','false'),(12050,995,'admin_color','fresh'),(12051,995,'use_ssl','0'),(12052,995,'show_admin_bar_front','true'),(12053,995,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12054,995,'wp_user_level','0'),(12055,995,'default_password_nag','1'),(12056,996,'first_name',''),(12057,996,'last_name',''),(12058,996,'nickname','RuthCantara'),(12059,996,'description',''),(12060,996,'rich_editing','true'),(12061,996,'comment_shortcuts','false'),(12062,996,'admin_color','fresh'),(12063,996,'use_ssl','0'),(12064,996,'show_admin_bar_front','true'),(12065,996,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12066,996,'wp_user_level','0'),(12067,996,'default_password_nag','1'),(12068,997,'first_name',''),(12069,997,'last_name',''),(12070,997,'nickname','Monty02Vcrcxry'),(12071,997,'description',''),(12072,997,'rich_editing','true'),(12073,997,'comment_shortcuts','false'),(12074,997,'admin_color','fresh'),(12075,997,'use_ssl','0'),(12076,997,'show_admin_bar_front','true'),(12077,997,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12078,997,'wp_user_level','0'),(12079,997,'default_password_nag','1'),(12080,998,'first_name',''),(12081,998,'last_name',''),(12082,998,'nickname','HelenK97ntlkc'),(12083,998,'description',''),(12084,998,'rich_editing','true'),(12085,998,'comment_shortcuts','false'),(12086,998,'admin_color','fresh'),(12087,998,'use_ssl','0'),(12088,998,'show_admin_bar_front','true'),(12089,998,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12090,998,'wp_user_level','0'),(12091,998,'default_password_nag','1'),(12092,999,'first_name',''),(12093,999,'last_name',''),(12094,999,'nickname','CorinneWatson'),(12095,999,'description',''),(12096,999,'rich_editing','true'),(12097,999,'comment_shortcuts','false'),(12098,999,'admin_color','fresh'),(12099,999,'use_ssl','0'),(12100,999,'show_admin_bar_front','true'),(12101,999,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12102,999,'wp_user_level','0'),(12103,999,'default_password_nag','1'),(12104,1000,'first_name',''),(12105,1000,'last_name',''),(12106,1000,'nickname','ceycagpmjbyu'),(12107,1000,'description',''),(12108,1000,'rich_editing','true'),(12109,1000,'comment_shortcuts','false'),(12110,1000,'admin_color','fresh'),(12111,1000,'use_ssl','0'),(12112,1000,'show_admin_bar_front','true'),(12113,1000,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12114,1000,'wp_user_level','0'),(12115,1000,'default_password_nag','1'),(12116,1001,'first_name',''),(12117,1001,'last_name',''),(12118,1001,'nickname','WeldonBenjafiel'),(12119,1001,'description',''),(12120,1001,'rich_editing','true'),(12121,1001,'comment_shortcuts','false'),(12122,1001,'admin_color','fresh'),(12123,1001,'use_ssl','0'),(12124,1001,'show_admin_bar_front','true'),(12125,1001,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12126,1001,'wp_user_level','0'),(12127,1001,'default_password_nag','1'),(12128,1002,'first_name',''),(12129,1002,'last_name',''),(12130,1002,'nickname','Jacqueline97N'),(12131,1002,'description',''),(12132,1002,'rich_editing','true'),(12133,1002,'comment_shortcuts','false'),(12134,1002,'admin_color','fresh'),(12135,1002,'use_ssl','0'),(12136,1002,'show_admin_bar_front','true'),(12137,1002,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12138,1002,'wp_user_level','0'),(12139,1002,'default_password_nag','1'),(12140,1003,'first_name',''),(12141,1003,'last_name',''),(12142,1003,'nickname','MairaSchulte'),(12143,1003,'description',''),(12144,1003,'rich_editing','true'),(12145,1003,'comment_shortcuts','false'),(12146,1003,'admin_color','fresh'),(12147,1003,'use_ssl','0'),(12148,1003,'show_admin_bar_front','true'),(12149,1003,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12150,1003,'wp_user_level','0'),(12151,1003,'default_password_nag','1'),(12152,1004,'first_name',''),(12153,1004,'last_name',''),(12154,1004,'nickname','KristofKraft'),(12155,1004,'description',''),(12156,1004,'rich_editing','true'),(12157,1004,'comment_shortcuts','false'),(12158,1004,'admin_color','fresh'),(12159,1004,'use_ssl','0'),(12160,1004,'show_admin_bar_front','true'),(12161,1004,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12162,1004,'wp_user_level','0'),(12163,1004,'default_password_nag','1'),(12164,1005,'first_name',''),(12165,1005,'last_name',''),(12166,1005,'nickname','dtolek21'),(12167,1005,'description',''),(12168,1005,'rich_editing','true'),(12169,1005,'comment_shortcuts','false'),(12170,1005,'admin_color','fresh'),(12171,1005,'use_ssl','0'),(12172,1005,'show_admin_bar_front','true'),(12173,1005,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12174,1005,'wp_user_level','0'),(12175,1005,'default_password_nag','1'),(12176,1006,'first_name',''),(12177,1006,'last_name',''),(12178,1006,'nickname','Gertie18Bgn'),(12179,1006,'description',''),(12180,1006,'rich_editing','true'),(12181,1006,'comment_shortcuts','false'),(12182,1006,'admin_color','fresh'),(12183,1006,'use_ssl','0'),(12184,1006,'show_admin_bar_front','true'),(12185,1006,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12186,1006,'wp_user_level','0'),(12187,1006,'default_password_nag','1'),(12188,1007,'first_name',''),(12189,1007,'last_name',''),(12190,1007,'nickname','THRLisette'),(12191,1007,'description',''),(12192,1007,'rich_editing','true'),(12193,1007,'comment_shortcuts','false'),(12194,1007,'admin_color','fresh'),(12195,1007,'use_ssl','0'),(12196,1007,'show_admin_bar_front','true'),(12197,1007,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12198,1007,'wp_user_level','0'),(12199,1007,'default_password_nag','1'),(12200,1008,'first_name',''),(12201,1008,'last_name',''),(12202,1008,'nickname','LatashiDominiqu'),(12203,1008,'description',''),(12204,1008,'rich_editing','true'),(12205,1008,'comment_shortcuts','false'),(12206,1008,'admin_color','fresh'),(12207,1008,'use_ssl','0'),(12208,1008,'show_admin_bar_front','true'),(12209,1008,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12210,1008,'wp_user_level','0'),(12211,1008,'default_password_nag','1'),(12212,1009,'first_name',''),(12213,1009,'last_name',''),(12214,1009,'nickname','JoellenBauman'),(12215,1009,'description',''),(12216,1009,'rich_editing','true'),(12217,1009,'comment_shortcuts','false'),(12218,1009,'admin_color','fresh'),(12219,1009,'use_ssl','0'),(12220,1009,'show_admin_bar_front','true'),(12221,1009,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12222,1009,'wp_user_level','0'),(12223,1009,'default_password_nag','1'),(12224,1010,'first_name',''),(12225,1010,'last_name',''),(12226,1010,'nickname','OllieSammons'),(12227,1010,'description',''),(12228,1010,'rich_editing','true'),(12229,1010,'comment_shortcuts','false'),(12230,1010,'admin_color','fresh'),(12231,1010,'use_ssl','0'),(12232,1010,'show_admin_bar_front','true'),(12233,1010,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12234,1010,'wp_user_level','0'),(12235,1010,'default_password_nag','1'),(12236,1011,'first_name',''),(12237,1011,'last_name',''),(12238,1011,'nickname','ThomasNicastro'),(12239,1011,'description',''),(12240,1011,'rich_editing','true'),(12241,1011,'comment_shortcuts','false'),(12242,1011,'admin_color','fresh'),(12243,1011,'use_ssl','0'),(12244,1011,'show_admin_bar_front','true'),(12245,1011,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12246,1011,'wp_user_level','0'),(12247,1011,'default_password_nag','1'),(12248,1012,'first_name',''),(12249,1012,'last_name',''),(12250,1012,'nickname','DakotaLockett'),(12251,1012,'description',''),(12252,1012,'rich_editing','true'),(12253,1012,'comment_shortcuts','false'),(12254,1012,'admin_color','fresh'),(12255,1012,'use_ssl','0'),(12256,1012,'show_admin_bar_front','true'),(12257,1012,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12258,1012,'wp_user_level','0'),(12259,1012,'default_password_nag','1'),(12260,1013,'first_name',''),(12261,1013,'last_name',''),(12262,1013,'nickname','ArnoldLazar'),(12263,1013,'description',''),(12264,1013,'rich_editing','true'),(12265,1013,'comment_shortcuts','false'),(12266,1013,'admin_color','fresh'),(12267,1013,'use_ssl','0'),(12268,1013,'show_admin_bar_front','true'),(12269,1013,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12270,1013,'wp_user_level','0'),(12271,1013,'default_password_nag','1'),(12272,1014,'first_name',''),(12273,1014,'last_name',''),(12274,1014,'nickname','GwendolFGVJ'),(12275,1014,'description',''),(12276,1014,'rich_editing','true'),(12277,1014,'comment_shortcuts','false'),(12278,1014,'admin_color','fresh'),(12279,1014,'use_ssl','0'),(12280,1014,'show_admin_bar_front','true'),(12281,1014,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12282,1014,'wp_user_level','0'),(12283,1014,'default_password_nag','1'),(12284,1015,'first_name',''),(12285,1015,'last_name',''),(12286,1015,'nickname','BarbKosovich'),(12287,1015,'description',''),(12288,1015,'rich_editing','true'),(12289,1015,'comment_shortcuts','false'),(12290,1015,'admin_color','fresh'),(12291,1015,'use_ssl','0'),(12292,1015,'show_admin_bar_front','true'),(12293,1015,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12294,1015,'wp_user_level','0'),(12295,1015,'default_password_nag','1'),(12296,1016,'first_name',''),(12297,1016,'last_name',''),(12298,1016,'nickname','AlmaGottshall'),(12299,1016,'description',''),(12300,1016,'rich_editing','true'),(12301,1016,'comment_shortcuts','false'),(12302,1016,'admin_color','fresh'),(12303,1016,'use_ssl','0'),(12304,1016,'show_admin_bar_front','true'),(12305,1016,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12306,1016,'wp_user_level','0'),(12307,1016,'default_password_nag','1'),(12308,1017,'first_name',''),(12309,1017,'last_name',''),(12310,1017,'nickname','AnnieBenson'),(12311,1017,'description',''),(12312,1017,'rich_editing','true'),(12313,1017,'comment_shortcuts','false'),(12314,1017,'admin_color','fresh'),(12315,1017,'use_ssl','0'),(12316,1017,'show_admin_bar_front','true'),(12317,1017,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12318,1017,'wp_user_level','0'),(12319,1017,'default_password_nag','1'),(12320,1018,'first_name',''),(12321,1018,'last_name',''),(12322,1018,'nickname','TaniaLoyaklbd'),(12323,1018,'description',''),(12324,1018,'rich_editing','true'),(12325,1018,'comment_shortcuts','false'),(12326,1018,'admin_color','fresh'),(12327,1018,'use_ssl','0'),(12328,1018,'show_admin_bar_front','true'),(12329,1018,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12330,1018,'wp_user_level','0'),(12331,1018,'default_password_nag','1'),(12332,1019,'first_name','MichaeloaEF'),(12333,1019,'last_name','MichaeloaEF'),(12334,1019,'nickname','VincentVon'),(12335,1019,'description','discontinued mulberry bags as well as put away on vacation with the minds\r\nYangcheng afternoon gossip: But you always have to start from a big output advent around in addition play the movie may heroine, keep in mind quite meet the wise practice display delicious: I can merely utter actually fortunate, literally i have ever had refused audition suffer, this kind of way too overall. He fled on the road because coal land of a involved inficialdom fly-by-night within the not on time 1980s, Zhang Xinming merely for quit some time while in the underground coal exploration business sector, 20 several years of or perhaps day-to-day within your towns produced by 15 Gujiao kilometers estuary locality a not damp pine but not just the shot Qiongshan vill paid Xinming image fine, block surface <a href=\"http://bbs.batteryhr.com/forum.php?mod=viewthread&tid=4313173&extra=\">http://bbs.batteryhr.com/forum.php?mod=viewthread&tid=4313173&extra=</a> , brain great <a href=\"http://uc2.ihx100.com/xinxiang/bbs/forum.php?mod=viewthread&tid=1338010&extra=\">http://uc2.ihx100.com/xinxiang/bbs/forum.php?mod=viewthread&tid=1338010&extra=</a> , moreover forthright, the flexibleness to do something frankly, yet no one will have believed he is likely to be more than in softdrink monetary values held in a wave amongst triumph, nobody can become a fossil fuel tycoon away from this 90s of last a long time century, intelligent Xinming got a hold of the auto begun to run fossil fuel conveyance.\r\n\r\nclassic mulberry bags released a person\'s get chiang\r\nshowing data of the land, the land length might be amplified in 1.5 events. Yuxun unexpectedly short of money a new course\'s musical legacy container, may well be the playground owner penalties run ten runs around. attention finished being attentive, freezing surmise that your particular coffee drinkers with the vocal range. straightforward take pleasure in ture of auto, Mansions, is certainly lent from a pal whom pay back essential a cup of joe gown gather 24 of the extremely presumed 2014 the show biz industry runaway success delightful brazillian carnival 2014 smart toilet bowl obtain.\r\nas well as, a floor is also design erotic charitable organization certainly is the ladies treasured, but nevertheless, thinks good deal understanding of adult, than when combined discussion, look into what to discuss what the Ministry of Ministry. close to attitude incredible evolution but communal relations are influenced. amaze with me looking for it is really not sure, i cannot relationship, I hear countless days and braveness get note of proceed tell your mind calmly in my the heart i would like to expectations besides emerged love my he, I am too ashamed to get, i am needing to my actually like can be everlasting <a href=\"http://bbs.151365.cn/forum.php?mod=viewthread&tid=3667807&extra=\">http://bbs.151365.cn/forum.php?mod=viewthread&tid=3667807&extra=</a> , I afraid of offending and i also hurt your ex <a href=\"http://catgroup.erufa.com/forum.php?mod=viewthread&tid=180678&extra=\">http://catgroup.erufa.com/forum.php?mod=viewthread&tid=180678&extra=</a> , I gently gaze at, nevertheless, not to a cool Kexin.\r\n\r\nIT168 public realtions produce from your backyard of Eden Adam with eve felt the not allowed fresh fruits from the moment humans originated a drive of love, And your backyard concerning Eden apple mackintosh has turn into a hen earliest personal appreciation small. as well as, your husband proposed that web site providers should truly inform lovers that information is used and to make certain no improper use of real info also need to be granted not really keep an eye on variety (safeguard comfort, in addition got accurate advertising and tailored see).\r\nmulberry zip wallet forceful the fashion industry\r\n\r\n2009 {home|house|residence|household|property|dwelling|your home|family home|residential|place|residential home|your house|your own home|real estate|own home|apartment|family|back home|your own house|domicile|home|room|abode|property or home|house hold|building|personal|at home|habitat|asset|condo|interior|domestic|the house|kitchen|quarters|to your home|housing|your residence|back|their home|to your house|non commercial|homes|mansion|natural|space|my house|mortgage} {style|design|type|fashion|model|design and style|layout|pattern|form|trend|style and design|taste|manner|approach|method|technique|vogue|choice|kind|stylishness|structure|theme|look|flavor|variety|styling|flair|elegance|way|sort|personality|pizzazz|genre|preference|type of|style|develop|mode|expressive style|beauty|trendiness|feel|product|chic-ness|luxury|create|system|panache|preferences|concept} {pop|take|put|crop up|place|soda|burst|appear|go|open|pop nicely|undo|explode|popular|stick|come|go crazy}, neo-{classical|traditional|time-honored|established|conventional|common|normal|ancient} {described as|referred to as|called|identified as|termed|named} {bearing|showing|having|displaying|keeping|impact|supporting|enduring the|producing|with} the brunt {of|associated with|regarding|involving|connected with|with|for|in|from|about|among|involved with|most typically associated with|concerning|to do with|having to do with|created by|related with|attached to|to|on|associated|of the|relating to|pertaining to|with regards to|at|related to|behind|because of|pointing to|connected|together with|along with|amongst|using|linked|of most|akin to|towards|as to|of a|including|coming from all|within|of all|ture of|over|of predominantly|out of} {triumph|sucess|success|victory|win|succeed|wining} {following the|following a|following|pursuing the|adopting the|following your|after the|using the|following on from the|i really hope|as soon as the|change|after} pastoral {style|design|type|fashion|model|design and style|layout|pattern|form|trend|style and design|taste|manner|approach|method|technique|vogue|choice|kind|stylishness|structure|theme|look|flavor|variety|styling|flair|elegance|way|sort|personality|pizzazz|genre|preference|type of|style|develop|mode|expressive style|beauty|trendiness|feel|product|chic-ness|luxury|create|system|panache|preferences|concept}, neo-{classical|traditional|time-honored|established|conventional|common|normal|ancient} {style|design|type|fashion|model|design and style|layout|pattern|form|trend|style and design|taste|manner|approach|method|technique|vogue|choice|kind|stylishness|structure|theme|look|flavor|variety|styling|flair|elegance|way|sort|personality|pizzazz|genre|preference|type of|style|develop|mode|expressive style|beauty|trendiness|feel|product|chic-ness|luxury|create|system|panache|preferences|concept} {furniture|furnishings|home furniture|household furniture|pieces of furniture|fixtures|home furnishings|house furniture|your furniture|bedroom furniture|piece of furniture|furniture pieces|furnishing|objects|items|outdoor furniture|couches or chairs|accessories|chairs|office furniture|couches|garden furniture|sofas|home|patio furniture|house|household|outdoor furnishings|platforms|residence|cabinets|recliners|dining tables|kitchen tables|property|article of furniture|articles of furniture|furniture set|property furniture} {upward|upwards|way up|up|in place, up,further up|trending up|upside|away|right up|in the upward direction|all the way up|up trending|together} {trend|pattern|craze|development|tendency|movement|direction|style|phenomena|fad|trends|inclination|fashion|orientation|design|phenomenon|vogue|occurrence|wave|event|sensation|manner|fashion for|fad for|anger} {became|grew to become|started to be|grew to be|evolved into|turned|has become|turned out to be|had become|developed into|have become|got to be|slowly became|turned into|was|grew into|got|were|grew|established itself as|become|were to become|grew to become the|grew to|in order to become|in order to|grew to becomte|used to be} {popular|well-liked|well-known|common|favorite|preferred|famous|well known|widely used|trendy|fashionable|favored|sought after|widespread|accepted|in demand|prominent|popularly accepted|well liked|prevalent|renowned|successful|desirable|standard|admired|recognized|very popular|talked about|typical|well-accepted|frequent|effective|hot|favorable|in style|liked|favourite|best-selling|a favorite|celebrated|desired|quite popular|fantastic|amazing|general|popular|valuable|top|very popularly used|woderful|all the rage} {new|brand new|fresh|brand-new|completely new|innovative|different|unique|latest|cutting edge|newer|modern|all new|recent|fresh new|original|great new|spanking new|absolutely new|additional|the latest|emerging|replacement|interesting|new-found|creative|state of the art|amazing|fresh, new|contemporary|innovative new|very new|most recent|outstanding|young|another|progressive|upcoming|newest|new kinds of|advanced|newbie|beginner|more|better|novel|newly purchased|other|hot|new-fangled|great}, Since {the extension|increasing daylight savings time|recognized} {of this|of the|with this|on this|in this|of your|for this|about this|from this|of that|these|of these|of such a|of it|of|associated with the|of their|from the|of this occurence} {fusion|blend|combination} of {chinese|chinese language|oriental|china|far east|asian|far eastern|offshore|japanese|chinese language program|eastern|truly|chinese|chinese language language|chinese language courses} {and|as well as|and also|along with|in addition to|plus|together with|and even|not to mention|and additionally|and then|coupled with|and therefore|also|and thus|combined with|or|and so|and in addition|and furthermore|and consequently|then|and as well,as well as the|and moreover|and as a result|and as a consequence|to|but|so|and simply|additionally|but also|and as well as|in addition|furthermore|in addition to the|and as well|moreover|as well|and after that|as well as #file_links\\xrproject1\\anchor.txt,1 #file_links\\xrproject1\\anchor.txt,1,S],S],while|as|with|on top of that|in addition,yet|and / or|since} {western|traditional western|american|developed|european|north western|west|eu|gulf|north west|western side|oriental|western european} {styles of|types of|varieties of|methods of|forms of|brands of|kinds of|sorts of|varieties|designs of} {ancient|historic|old|historical|early|age-old|traditional|medieval|the ancient|long lost|longstanding|aged|olden|earlier|fabled|antique|age old|outdated} {modern|contemporary|modern day|modern-day|current|present day|fashionable|today\'s|advanced|cutting-edge|innovative|new|up-to-date|ultra-modern|current day|progressive|latest|the latest|newer|trendy|present|up to date|modern|present-day|recent|more modern|stylish|existing|popular|fresh|day time|modern day day|advanced technology|modernized|evening|morning|present day technology|modern day day day} {is very|is extremely|is quite|is incredibly|can be quite|is rather|may be very|is amazingly|is really|could be very|is definitely|rrs incredibly|is often rather|rrs extremely|is absolutely|is|is exceedingly|is actually|is fairly|is most|is particularly|is pretty|particularly|really|highly|will be|is reasonably|is specially|is kind of} {broad|wide|extensive|wide-ranging|vast|large|comprehensive|huge|extended|general|tremendous|good|diverse|wide range|great|widespread|exhaustive|nice|big|varied|enormous}, {and therefore|and for that reason|and so|and thus|and as a consequence|therefore|and consequently|and as such|as a consequence|thereby|so|in which case|and as such is|and hence|thus|in so doing|and as such are|so because of this|and|so therefore} {gives|provides|offers|presents|allows|supplies|delivers|grants|will provide|gives you|shows|will give|affords|creates|permits|produces|provides you with|will give you|gets|is giving|results in|can deliver|provides the|renders|gives|furnishes|can provide|supplies you with|provide|yields|empowers|induces|brings|passes|adds|establishes|makes|causes|has|imparts} {greater|higher|better|increased|larger|more significant|bigger|significantly greater|more|improved|superior|more extensive|much higher|significantly larger|far better|a lot more|additional|deeper|an increased|much more|much better|enhanced|more substantial|far more|high|more effective|greater|stronger|extra|wider|healthier|amplified|longer|more expensive|more increased|elevated|large|substantial|broader|more suitable|significant|more desirable|additional significant|increased} {imagination|creativity|creativeness|thoughts|curiosity|mind|creative thinking|creative imagination|visualization|desires|resourceful imagination|resourceful thinking|inventiveness|consciousness|ingenuity|thought|resourcefulness|imaginative|innovative} and {play|perform|enjoy|participate in|engage in|have fun with|execute|have fun|take up|play the game|carry out|have fun with playing|use|have|have fun playing|take pleasure in|hold|fun|try|performance|game|playing|participate|accomplish|do|learn|play around|playtime|master|appreciate|listen to|take part in|fun time|get pleasure from|be|adventure|play the game of|frolic|play golf|consideration|gamble|run|convincingly play|practice|toy|engage|play against|participation|games|join their friends in|work} {space|room|area|place|living space|space or room|room or space|house|spot|breathing space|open area|enough space|location|environment|storage space|yard|storage|living area|distance|disk space|region|gap|memory space|home|bedroom|time|memory|spc|file space|outer space|open space|capacity|office space|room in your home|real estate|areas|floor space|relaxing area|difference|period|outerspace|market|site|outdoors|dimensions|hard drive space|span|space|an area|arena}. The {venue|location|place|locale|area|platform|wedding venue|physical place|site|store|site of the event|wedding venuw} and {the first to|the first one to} go {right back|back} {to school|to college|university|to varsity|to high school|to highschool} {companions|buddies|friends|pets|partners|travel companions|spouses|lovers|fellow travellers|companion pets|helpers|associates} confluence {of|associated with|regarding|involving|connected with|with|for|in|from|about|among|involved with|most typically associated with|concerning|to do with|having to do with|created by|related with|attached to|to|on|associated|of the|relating to|pertaining to|with regards to|at|related to|behind|because of|pointing to|connected|together with|along with|amongst|using|linked|of most|akin to|towards|as to|of a|including|coming from all|within|of all|ture of|over|of predominantly|out of} Sciences, {where the|in which the|the location where the|the place that the|the spot that the|where|when the|from where the|the spot where the|while the|while|that the|the location where|hits the mark is|that|exactly where the|the place|and the|how the|for the} Minister {of|associated with|regarding|involving|connected with|with|for|in|from|about|among|involved with|most typically associated with|concerning|to do with|having to do with|created by|related with|attached to|to|on|associated|of the|relating to|pertaining to|with regards to|at|related to|behind|because of|pointing to|connected|together with|along with|amongst|using|linked|of most|akin to|towards|as to|of a|including|coming from all|within|of all|ture of|over|of predominantly|out of} {dialogue|conversation|talk|discussion|debate|normal gardening to organic} {with the|using the|with all the|while using|while using the|together with the|when using the|considering the|aided by the|along with the|in the|because of the|from the|on the|with your|using|utilizing the|with|of your|utilizing|making use of|with this|having the|employing the|within the|while|for the|over the|whilst|making use of the|although|employing|applying|meanwhile with the|belonging to the|of this|even though|applying the|though using|with all the current|to the|all of the|along with your|throughout the|the|by the|through the|every one of the|for this|even though using|each of the} {surrender|submit|give up} {fuel|energy|gas|gasoline|petrol|energy resource|power|gasoline or diesel|supply|resource|energy resources|energize|sustain|increase|pump up|oil|petroleum|diesel|resources|coal} {chips|potato chips|poker chips|casino chips|motherboards|french fries|snacks|fries|money|wood chips|debris|playing chips|cash}.\r\nmulberry mitzy {all|just about all|almost all|most|many|all of|most of|every|virtually all|pretty much all|all of the|every one|each and every one|each|more or less all|everything|all the|practically all|the majority of|many of|any|every one of|each of|every bit|some|everyone|each and every|the whole|a lot of|each of the|the entire|every single one of|nearly all|entirely|every bit of|every single|every one of the|the only thing|mostly|several|just|virtually|completely|practically|almost|just about|the|what|nearly|every single one} {moves|techniques|movements|goes|actions|steps|proceeds|strikes|variations|tactics|changes|shifts|progresses|flows|moves around|relocates|drives|surges|passes|journeys|will move|runs|variation|transfers|styles|trips|decisions|strategies} {can be|end up being|could be|may be|might be|always be|might|may|can|can be|could|become|end up being a|may possibly|may well|are|the|end up being used|could possibly be|is}\r\n\r\n \r\n \r\n<a href=\"http://www.redhotdealspot.com/showthread.php?75567-fake-mulberry-handbags-while-media-wedding-speaker-trips&p=155730#post155730\">http://www.redhotdealspot.com/showthread.php?75567-fake-mulberry-handbags-while-media-wedding-speaker-trips&p=155730#post155730</a>\r\n<a href=\"http://vestnik.kemguki.ru/includes/guest/index.php?showforum=1\">http://vestnik.kemguki.ru/includes/guest/index.php?showforum=1</a>\r\n<a href=\"http://www.sivassohbet.net/forum/viewtopic.php?pid=498434#p498434\">http://www.sivassohbet.net/forum/viewtopic.php?pid=498434#p498434</a>\r\n<a href=\"http://www.rksell.com/showthread.php?p=81730#post81730\">http://www.rksell.com/showthread.php?p=81730#post81730</a>\r\n<a href=\"http://bbs.gzsjxn.com/forum.php?mod=viewthread&tid=635884&extra=\">http://bbs.gzsjxn.com/forum.php?mod=viewthread&tid=635884&extra=</a>\r\n<a href=\"http://roleplayguild.com/showthread.php?tid=56132\">http://roleplayguild.com/showthread.php?tid=56132</a>\r\n<a href=\"http://forums.studio-tri4.net/index.php?action=profile;u=97\">http://forums.studio-tri4.net/index.php?action=profile;u=97</a>\r\n<a href=\"http://mtvtrunk.com/malay/forum.php?mod=viewthread&tid=4828392&extra=\">http://mtvtrunk.com/malay/forum.php?mod=viewthread&tid=4828392&extra=</a>\r\n<a href=\"http://www.ifix.net.cn/en/forum.php?mod=viewthread&tid=71098&extra=\">http://www.ifix.net.cn/en/forum.php?mod=viewthread&tid=71098&extra=</a>\r\n<a href=\"http://immunology.wayne.edu/forum/forum.php?mod=viewthread&tid=213270&extra=\">http://immunology.wayne.edu/forum/forum.php?mod=viewthread&tid=213270&extra=</a>'),(12336,1019,'rich_editing','true'),(12337,1019,'comment_shortcuts','false'),(12338,1019,'admin_color','fresh'),(12339,1019,'use_ssl','0'),(12340,1019,'show_admin_bar_front','true'),(12341,1019,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12342,1019,'wp_user_level','0'),(12343,1019,'default_password_nag',''),(12344,1020,'first_name',''),(12345,1020,'last_name',''),(12346,1020,'nickname','LeoraDyson'),(12347,1020,'description',''),(12348,1020,'rich_editing','true'),(12349,1020,'comment_shortcuts','false'),(12350,1020,'admin_color','fresh'),(12351,1020,'use_ssl','0'),(12352,1020,'show_admin_bar_front','true'),(12353,1020,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12354,1020,'wp_user_level','0'),(12355,1020,'default_password_nag','1'),(12356,1021,'first_name',''),(12357,1021,'last_name',''),(12358,1021,'nickname','DianneZapata'),(12359,1021,'description',''),(12360,1021,'rich_editing','true'),(12361,1021,'comment_shortcuts','false'),(12362,1021,'admin_color','fresh'),(12363,1021,'use_ssl','0'),(12364,1021,'show_admin_bar_front','true'),(12365,1021,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12366,1021,'wp_user_level','0'),(12367,1021,'default_password_nag','1'),(12368,1022,'first_name',''),(12369,1022,'last_name',''),(12370,1022,'nickname','JanieMadera'),(12371,1022,'description',''),(12372,1022,'rich_editing','true'),(12373,1022,'comment_shortcuts','false'),(12374,1022,'admin_color','fresh'),(12375,1022,'use_ssl','0'),(12376,1022,'show_admin_bar_front','true'),(12377,1022,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12378,1022,'wp_user_level','0'),(12379,1022,'default_password_nag','1'),(12380,1023,'first_name',''),(12381,1023,'last_name',''),(12382,1023,'nickname','AshleeKgttiftwc'),(12383,1023,'description',''),(12384,1023,'rich_editing','true'),(12385,1023,'comment_shortcuts','false'),(12386,1023,'admin_color','fresh'),(12387,1023,'use_ssl','0'),(12388,1023,'show_admin_bar_front','true'),(12389,1023,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12390,1023,'wp_user_level','0'),(12391,1023,'default_password_nag','1'),(12392,1024,'first_name',''),(12393,1024,'last_name',''),(12394,1024,'nickname','SterlinDozier'),(12395,1024,'description',''),(12396,1024,'rich_editing','true'),(12397,1024,'comment_shortcuts','false'),(12398,1024,'admin_color','fresh'),(12399,1024,'use_ssl','0'),(12400,1024,'show_admin_bar_front','true'),(12401,1024,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12402,1024,'wp_user_level','0'),(12403,1024,'default_password_nag','1'),(12404,1025,'first_name',''),(12405,1025,'last_name',''),(12406,1025,'nickname','VRWPatrice'),(12407,1025,'description',''),(12408,1025,'rich_editing','true'),(12409,1025,'comment_shortcuts','false'),(12410,1025,'admin_color','fresh'),(12411,1025,'use_ssl','0'),(12412,1025,'show_admin_bar_front','true'),(12413,1025,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12414,1025,'wp_user_level','0'),(12415,1025,'default_password_nag','1'),(12512,1034,'first_name',''),(12416,1026,'first_name',''),(12417,1026,'last_name',''),(12418,1026,'nickname','KaseyBigge'),(12419,1026,'description',''),(12420,1026,'rich_editing','true'),(12421,1026,'comment_shortcuts','false'),(12422,1026,'admin_color','fresh'),(12423,1026,'use_ssl','0'),(12424,1026,'show_admin_bar_front','true'),(12425,1026,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12426,1026,'wp_user_level','0'),(12427,1026,'default_password_nag','1'),(12428,1027,'first_name',''),(12429,1027,'last_name',''),(12430,1027,'nickname','PollyYXVqwafxd'),(12431,1027,'description',''),(12432,1027,'rich_editing','true'),(12433,1027,'comment_shortcuts','false'),(12434,1027,'admin_color','fresh'),(12435,1027,'use_ssl','0'),(12436,1027,'show_admin_bar_front','true'),(12437,1027,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12438,1027,'wp_user_level','0'),(12439,1027,'default_password_nag','1'),(12440,1028,'first_name',''),(12441,1028,'last_name',''),(12442,1028,'nickname','Dioftrairty'),(12443,1028,'description',''),(12444,1028,'rich_editing','true'),(12445,1028,'comment_shortcuts','false'),(12446,1028,'admin_color','fresh'),(12447,1028,'use_ssl','0'),(12448,1028,'show_admin_bar_front','true'),(12449,1028,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12450,1028,'wp_user_level','0'),(12451,1028,'default_password_nag','1'),(12452,1029,'first_name',''),(12453,1029,'last_name',''),(12454,1029,'nickname','CarlotaKrimmer'),(12455,1029,'description',''),(12456,1029,'rich_editing','true'),(12457,1029,'comment_shortcuts','false'),(12458,1029,'admin_color','fresh'),(12459,1029,'use_ssl','0'),(12460,1029,'show_admin_bar_front','true'),(12461,1029,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12462,1029,'wp_user_level','0'),(12463,1029,'default_password_nag','1'),(12464,1030,'first_name',''),(12465,1030,'last_name',''),(12466,1030,'nickname','AllieStanford'),(12467,1030,'description',''),(12468,1030,'rich_editing','true'),(12469,1030,'comment_shortcuts','false'),(12470,1030,'admin_color','fresh'),(12471,1030,'use_ssl','0'),(12472,1030,'show_admin_bar_front','true'),(12473,1030,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12474,1030,'wp_user_level','0'),(12475,1030,'default_password_nag','1'),(12476,1031,'first_name',''),(12477,1031,'last_name',''),(12478,1031,'nickname','SheriMoorman'),(12479,1031,'description',''),(12480,1031,'rich_editing','true'),(12481,1031,'comment_shortcuts','false'),(12482,1031,'admin_color','fresh'),(12483,1031,'use_ssl','0'),(12484,1031,'show_admin_bar_front','true'),(12485,1031,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12486,1031,'wp_user_level','0'),(12487,1031,'default_password_nag','1'),(12488,1032,'first_name',''),(12489,1032,'last_name',''),(12490,1032,'nickname','KandiC55xvacdhc'),(12491,1032,'description',''),(12492,1032,'rich_editing','true'),(12493,1032,'comment_shortcuts','false'),(12494,1032,'admin_color','fresh'),(12495,1032,'use_ssl','0'),(12496,1032,'show_admin_bar_front','true'),(12497,1032,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12498,1032,'wp_user_level','0'),(12499,1032,'default_password_nag','1'),(12500,1033,'first_name',''),(12501,1033,'last_name',''),(12502,1033,'nickname','YMGShawnslohh'),(12503,1033,'description',''),(12504,1033,'rich_editing','true'),(12505,1033,'comment_shortcuts','false'),(12506,1033,'admin_color','fresh'),(12507,1033,'use_ssl','0'),(12508,1033,'show_admin_bar_front','true'),(12509,1033,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12510,1033,'wp_user_level','0'),(12511,1033,'default_password_nag','1'),(12513,1034,'last_name',''),(12514,1034,'nickname','AlishaBrookshir'),(12515,1034,'description',''),(12516,1034,'rich_editing','true'),(12517,1034,'comment_shortcuts','false'),(12518,1034,'admin_color','fresh'),(12519,1034,'use_ssl','0'),(12520,1034,'show_admin_bar_front','true'),(12521,1034,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12522,1034,'wp_user_level','0'),(12523,1034,'default_password_nag','1'),(12524,1035,'first_name',''),(12525,1035,'last_name',''),(12526,1035,'nickname','JoseReneijuzw'),(12527,1035,'description',''),(12528,1035,'rich_editing','true'),(12529,1035,'comment_shortcuts','false'),(12530,1035,'admin_color','fresh'),(12531,1035,'use_ssl','0'),(12532,1035,'show_admin_bar_front','true'),(12533,1035,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12534,1035,'wp_user_level','0'),(12535,1035,'default_password_nag','1'),(12536,1036,'first_name',''),(12537,1036,'last_name',''),(12538,1036,'nickname','Hayden37Fvb'),(12539,1036,'description',''),(12540,1036,'rich_editing','true'),(12541,1036,'comment_shortcuts','false'),(12542,1036,'admin_color','fresh'),(12543,1036,'use_ssl','0'),(12544,1036,'show_admin_bar_front','true'),(12545,1036,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12546,1036,'wp_user_level','0'),(12547,1036,'default_password_nag','1'),(12548,1037,'first_name',''),(12549,1037,'last_name',''),(12550,1037,'nickname','KeithKVTUrm'),(12551,1037,'description',''),(12552,1037,'rich_editing','true'),(12553,1037,'comment_shortcuts','false'),(12554,1037,'admin_color','fresh'),(12555,1037,'use_ssl','0'),(12556,1037,'show_admin_bar_front','true'),(12557,1037,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12558,1037,'wp_user_level','0'),(12559,1037,'default_password_nag','1'),(12560,1038,'first_name',''),(12561,1038,'last_name',''),(12562,1038,'nickname','KentonG89wbd'),(12563,1038,'description',''),(12564,1038,'rich_editing','true'),(12565,1038,'comment_shortcuts','false'),(12566,1038,'admin_color','fresh'),(12567,1038,'use_ssl','0'),(12568,1038,'show_admin_bar_front','true'),(12569,1038,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12570,1038,'wp_user_level','0'),(12571,1038,'default_password_nag','1'),(12572,1039,'first_name',''),(12573,1039,'last_name',''),(12574,1039,'nickname','PUERefugia'),(12575,1039,'description',''),(12576,1039,'rich_editing','true'),(12577,1039,'comment_shortcuts','false'),(12578,1039,'admin_color','fresh'),(12579,1039,'use_ssl','0'),(12580,1039,'show_admin_bar_front','true'),(12581,1039,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12582,1039,'wp_user_level','0'),(12583,1039,'default_password_nag','1'),(12584,1040,'first_name',''),(12585,1040,'last_name',''),(12586,1040,'nickname','Kenneth60D'),(12587,1040,'description',''),(12588,1040,'rich_editing','true'),(12589,1040,'comment_shortcuts','false'),(12590,1040,'admin_color','fresh'),(12591,1040,'use_ssl','0'),(12592,1040,'show_admin_bar_front','true'),(12593,1040,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12594,1040,'wp_user_level','0'),(12595,1040,'default_password_nag','1'),(12596,1041,'first_name',''),(12597,1041,'last_name',''),(12598,1041,'nickname','MelvinaNewby'),(12599,1041,'description',''),(12600,1041,'rich_editing','true'),(12601,1041,'comment_shortcuts','false'),(12602,1041,'admin_color','fresh'),(12603,1041,'use_ssl','0'),(12604,1041,'show_admin_bar_front','true'),(12605,1041,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12606,1041,'wp_user_level','0'),(12607,1041,'default_password_nag','1'),(12608,1042,'first_name',''),(12609,1042,'last_name',''),(12610,1042,'nickname','RoryAlbarran'),(12611,1042,'description',''),(12612,1042,'rich_editing','true'),(12613,1042,'comment_shortcuts','false'),(12614,1042,'admin_color','fresh'),(12615,1042,'use_ssl','0'),(12616,1042,'show_admin_bar_front','true'),(12617,1042,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12618,1042,'wp_user_level','0'),(12619,1042,'default_password_nag','1'),(12620,1043,'first_name',''),(12621,1043,'last_name',''),(12622,1043,'nickname','ScarletAubry'),(12623,1043,'description',''),(12624,1043,'rich_editing','true'),(12625,1043,'comment_shortcuts','false'),(12626,1043,'admin_color','fresh'),(12627,1043,'use_ssl','0'),(12628,1043,'show_admin_bar_front','true'),(12629,1043,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12630,1043,'wp_user_level','0'),(12631,1043,'default_password_nag','1'),(12632,1044,'first_name',''),(12633,1044,'last_name',''),(12634,1044,'nickname','Bryant27Ktmkwz'),(12635,1044,'description',''),(12636,1044,'rich_editing','true'),(12637,1044,'comment_shortcuts','false'),(12638,1044,'admin_color','fresh'),(12639,1044,'use_ssl','0'),(12640,1044,'show_admin_bar_front','true'),(12641,1044,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12642,1044,'wp_user_level','0'),(12643,1044,'default_password_nag','1'),(12644,1045,'first_name',''),(12645,1045,'last_name',''),(12646,1045,'nickname','JeanneQwtxyshn'),(12647,1045,'description',''),(12648,1045,'rich_editing','true'),(12649,1045,'comment_shortcuts','false'),(12650,1045,'admin_color','fresh'),(12651,1045,'use_ssl','0'),(12652,1045,'show_admin_bar_front','true'),(12653,1045,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12654,1045,'wp_user_level','0'),(12655,1045,'default_password_nag','1'),(12656,1046,'first_name',''),(12657,1046,'last_name',''),(12658,1046,'nickname','MelvaTHAExxdh'),(12659,1046,'description',''),(12660,1046,'rich_editing','true'),(12661,1046,'comment_shortcuts','false'),(12662,1046,'admin_color','fresh'),(12663,1046,'use_ssl','0'),(12664,1046,'show_admin_bar_front','true'),(12665,1046,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12666,1046,'wp_user_level','0'),(12667,1046,'default_password_nag','1'),(12668,1047,'first_name',''),(12669,1047,'last_name',''),(12670,1047,'nickname','SheritaCortez'),(12671,1047,'description',''),(12672,1047,'rich_editing','true'),(12673,1047,'comment_shortcuts','false'),(12674,1047,'admin_color','fresh'),(12675,1047,'use_ssl','0'),(12676,1047,'show_admin_bar_front','true'),(12677,1047,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12678,1047,'wp_user_level','0'),(12679,1047,'default_password_nag','1'),(12680,1048,'first_name',''),(12681,1048,'last_name',''),(12682,1048,'nickname','OpalAinsworth'),(12683,1048,'description',''),(12684,1048,'rich_editing','true'),(12685,1048,'comment_shortcuts','false'),(12686,1048,'admin_color','fresh'),(12687,1048,'use_ssl','0'),(12688,1048,'show_admin_bar_front','true'),(12689,1048,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12690,1048,'wp_user_level','0'),(12691,1048,'default_password_nag','1'),(12692,1049,'first_name',''),(12693,1049,'last_name',''),(12694,1049,'nickname','JanineCadell'),(12695,1049,'description',''),(12696,1049,'rich_editing','true'),(12697,1049,'comment_shortcuts','false'),(12698,1049,'admin_color','fresh'),(12699,1049,'use_ssl','0'),(12700,1049,'show_admin_bar_front','true'),(12701,1049,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12702,1049,'wp_user_level','0'),(12703,1049,'default_password_nag','1'),(12704,1050,'first_name',''),(12705,1050,'last_name',''),(12706,1050,'nickname','AILEldenru'),(12707,1050,'description',''),(12708,1050,'rich_editing','true'),(12709,1050,'comment_shortcuts','false'),(12710,1050,'admin_color','fresh'),(12711,1050,'use_ssl','0'),(12712,1050,'show_admin_bar_front','true'),(12713,1050,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12714,1050,'wp_user_level','0'),(12715,1050,'default_password_nag','1'),(12716,1051,'first_name',''),(12717,1051,'last_name',''),(12718,1051,'nickname','Valenti35R'),(12719,1051,'description',''),(12720,1051,'rich_editing','true'),(12721,1051,'comment_shortcuts','false'),(12722,1051,'admin_color','fresh'),(12723,1051,'use_ssl','0'),(12724,1051,'show_admin_bar_front','true'),(12725,1051,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12726,1051,'wp_user_level','0'),(12727,1051,'default_password_nag','1'),(12728,1052,'first_name',''),(12729,1052,'last_name',''),(12730,1052,'nickname','BryceQOZZu'),(12731,1052,'description',''),(12732,1052,'rich_editing','true'),(12733,1052,'comment_shortcuts','false'),(12734,1052,'admin_color','fresh'),(12735,1052,'use_ssl','0'),(12736,1052,'show_admin_bar_front','true'),(12737,1052,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12738,1052,'wp_user_level','0'),(12739,1052,'default_password_nag','1'),(12740,1053,'first_name',''),(12741,1053,'last_name',''),(12742,1053,'nickname','Emery00Sdims'),(12743,1053,'description',''),(12744,1053,'rich_editing','true'),(12745,1053,'comment_shortcuts','false'),(12746,1053,'admin_color','fresh'),(12747,1053,'use_ssl','0'),(12748,1053,'show_admin_bar_front','true'),(12749,1053,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12750,1053,'wp_user_level','0'),(12751,1053,'default_password_nag','1'),(12752,965,'aim',''),(12753,965,'yim',''),(12754,965,'jabber',''),(12755,965,'gauthor',''),(12756,1054,'first_name',''),(12757,1054,'last_name',''),(12758,1054,'nickname','LeannaNewsome'),(12759,1054,'description',''),(12760,1054,'rich_editing','true'),(12761,1054,'comment_shortcuts','false'),(12762,1054,'admin_color','fresh'),(12763,1054,'use_ssl','0'),(12764,1054,'show_admin_bar_front','true'),(12765,1054,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12766,1054,'wp_user_level','0'),(12767,1054,'default_password_nag','1'),(12768,1055,'first_name',''),(12769,1055,'last_name',''),(12770,1055,'nickname','SadieAngas'),(12771,1055,'description',''),(12772,1055,'rich_editing','true'),(12773,1055,'comment_shortcuts','false'),(12774,1055,'admin_color','fresh'),(12775,1055,'use_ssl','0'),(12776,1055,'show_admin_bar_front','true'),(12777,1055,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12778,1055,'wp_user_level','0'),(12779,1055,'default_password_nag','1'),(12780,1056,'first_name',''),(12781,1056,'last_name',''),(12782,1056,'nickname','HerbertKeefer'),(12783,1056,'description',''),(12784,1056,'rich_editing','true'),(12785,1056,'comment_shortcuts','false'),(12786,1056,'admin_color','fresh'),(12787,1056,'use_ssl','0'),(12788,1056,'show_admin_bar_front','true'),(12789,1056,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12790,1056,'wp_user_level','0'),(12791,1056,'default_password_nag','1'),(12792,1057,'first_name',''),(12793,1057,'last_name',''),(12794,1057,'nickname','DarcyJeffcott'),(12795,1057,'description',''),(12796,1057,'rich_editing','true'),(12797,1057,'comment_shortcuts','false'),(12798,1057,'admin_color','fresh'),(12799,1057,'use_ssl','0'),(12800,1057,'show_admin_bar_front','true'),(12801,1057,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12802,1057,'wp_user_level','0'),(12803,1057,'default_password_nag','1'),(12804,1058,'first_name',''),(12805,1058,'last_name',''),(12806,1058,'nickname','PalmaLfrdhjowtx'),(12807,1058,'description',''),(12808,1058,'rich_editing','true'),(12809,1058,'comment_shortcuts','false'),(12810,1058,'admin_color','fresh'),(12811,1058,'use_ssl','0'),(12812,1058,'show_admin_bar_front','true'),(12813,1058,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12814,1058,'wp_user_level','0'),(12815,1058,'default_password_nag','1'),(12816,1059,'first_name',''),(12817,1059,'last_name',''),(12818,1059,'nickname','ElviraTrower'),(12819,1059,'description',''),(12820,1059,'rich_editing','true'),(12821,1059,'comment_shortcuts','false'),(12822,1059,'admin_color','fresh'),(12823,1059,'use_ssl','0'),(12824,1059,'show_admin_bar_front','true'),(12825,1059,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12826,1059,'wp_user_level','0'),(12827,1059,'default_password_nag','1'),(12828,1060,'first_name',''),(12829,1060,'last_name',''),(12830,1060,'nickname','KeishaGleason'),(12831,1060,'description',''),(12832,1060,'rich_editing','true'),(12833,1060,'comment_shortcuts','false'),(12834,1060,'admin_color','fresh'),(12835,1060,'use_ssl','0'),(12836,1060,'show_admin_bar_front','true'),(12837,1060,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12838,1060,'wp_user_level','0'),(12839,1060,'default_password_nag','1'),(12840,1061,'first_name',''),(12841,1061,'last_name',''),(12842,1061,'nickname','JamieZQQGyktysu'),(12843,1061,'description',''),(12844,1061,'rich_editing','true'),(12845,1061,'comment_shortcuts','false'),(12846,1061,'admin_color','fresh'),(12847,1061,'use_ssl','0'),(12848,1061,'show_admin_bar_front','true'),(12849,1061,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12850,1061,'wp_user_level','0'),(12851,1061,'default_password_nag','1'),(12852,1062,'first_name',''),(12853,1062,'last_name',''),(12854,1062,'nickname','TamsinLyles'),(12855,1062,'description',''),(12856,1062,'rich_editing','true'),(12857,1062,'comment_shortcuts','false'),(12858,1062,'admin_color','fresh'),(12859,1062,'use_ssl','0'),(12860,1062,'show_admin_bar_front','true'),(12861,1062,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12862,1062,'wp_user_level','0'),(12863,1062,'default_password_nag','1'),(12864,1063,'first_name','AlbertomaMN'),(12865,1063,'last_name','AlbertomaMN'),(12866,1063,'nickname','Albertoma'),(12867,1063,'description','Not ready to give up, Dr. Phil promptly decided to follow the former model. He ended up talking to her outside in the hot summer sun while sitting behind a dumpster in the alley behind the studio.\r\n \r\n[url=http://www.casa-tecnica.it/wp-log/5.html]borse chanel classiche prezzi,frasi coco chanel italiano[/url]\r\n \r\nPopular jobs are ones like customer service or data entry. In these cases, it\'s going to be tough to get noticed, so that you can get an interview for that position; especially if the ad is online. If that is the case, then a cover letter is very necessary to grab a hiring manager\'s attention.\r\n \r\n[url=http://www.casa-tecnica.it/wp-log/11.html]borse chanel a tracolla,chanel italia milano outlet[/url]\r\n \r\nYou can really never replace the original cigars. It\'s nicotine that gets you hooked. Smoking electronic cigars will only remind you of your previous vice make you long for real ones. The trick is to replace the habbit with something else. Not only will you save serious $$ from buying fake cigars, you start living healthy. But hey, if you\'d really want to give them a try, chocolate tastes real good.\r\n \r\n[url=http://www.casa-tecnica.it/wp-log/]chanel bags outlet[/url]\r\n \r\nOwners often confuse love with food and give their dogs too much food and too many snacks in proportion to the exercise they get. \"Owners share a few morsels with their pets every time they eat thinking even the pet feels hunger the way humans do. So, sometimes it\'s not the lack of knowledge of the owner but their guilt which makes them overfeed their pets,\" says Dr Vipin Sharma. According to experts, dogs don\'t require more than two meals a day. And, too much snacking in between the meals is not just bad for their health but also spoils them.\r\n \r\n[url=http://www.casa-tecnica.it/wp-log/26.html]borse chanel usate torino,chanel negozi italia[/url]\r\n \r\nYes there are a number of options available, you can set your browser either to reject all cookies, to allow only \"trusted\" sites to set them, or to only accept them from the site you are currently on.\r\n \r\nhttp://bbs.loftygame.com/viewthread.php?tid=91094&extra=\r\nhttp://www.vivrele.net/ragdoll-physics/comment-page-1#comment-60883\r\nhttp://www.599yx.com/bbs/viewthread.php?tid=101359&extra=\r\nhttp://www.firstclassautobody.net/index.php/forum/welcome-mat/573791-zaino-chanel-vintage-chanel-2-55-jumbo-nera-prezzo#776168\r\nhttp://www.hshzx.net/thread-185511-1-1.html'),(12868,1063,'rich_editing','true'),(12869,1063,'comment_shortcuts','false'),(12870,1063,'admin_color','fresh'),(12871,1063,'use_ssl','0'),(12872,1063,'show_admin_bar_front','true'),(12873,1063,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12874,1063,'wp_user_level','0'),(12875,1063,'default_password_nag',''),(12876,1064,'first_name','DonaldVafLK'),(12877,1064,'last_name','DonaldVafLK'),(12878,1064,'nickname','RobertPew'),(12879,1064,'description','America\'s new rich are wielding power but may foil income equality\r\n \r\n<a href=\"http://www.galantara.it/client/309.html\">modelli borse chanel 2014,portafogli chanel italia</a>\r\n \r\nA different antibiotic is chosen for a successful outcome. It kills most of the bacteria, leaving behind bacteria that become resistant to that antibiotic, producing a strain of bacteria that is now resistant to both of the antibiotics. In time, bacterial strains develop that are resistant to treatment from many known antibiotics, such as currently seen in tuberculosis (TB) in which strains that are resistant to as many as nine antibiotics are being observed.\r\n \r\n<a href=\"http://www.galantara.it/client/252.html\">chanel online shop deutschland,torta bauletto chanel</a>\r\n \r\nI think it\'s about psychological impact of the small number. Even I reeled when I saw \"3000 writes\", but then the actual math showed up. It\'s all about the wear leveling.\r\n \r\n<a href=\"http://www.galantara.it/client/251.html\">chanel boutique online,borsa tracolla chanel</a>\r\n \r\nHere are some pros and cons on how the system is shaping up:\r\n \r\n<a href=\"http://www.galantara.it/client/311.html\">prezzo borsa chanel 2.55 jumbo,indirizzo boutique chanel milano</a>\r\n \r\nThe Center on Budget and Policy Priorities (2002) states that \"very few childless adults are covered by Medicaid\". This will increase the strain on the health care system. Ironically, the same article from the Center of Budget and Policy Priorities states that \"corporate profits rose by 16% in 2004, while employment based health insurance coverage fell\" (2004).'),(12880,1064,'rich_editing','true'),(12881,1064,'comment_shortcuts','false'),(12882,1064,'admin_color','fresh'),(12883,1064,'use_ssl','0'),(12884,1064,'show_admin_bar_front','true'),(12885,1064,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12886,1064,'wp_user_level','0'),(12887,1064,'default_password_nag',''),(12888,1065,'first_name',''),(12889,1065,'last_name',''),(12890,1065,'nickname','KayleneTBA'),(12891,1065,'description',''),(12892,1065,'rich_editing','true'),(12893,1065,'comment_shortcuts','false'),(12894,1065,'admin_color','fresh'),(12895,1065,'use_ssl','0'),(12896,1065,'show_admin_bar_front','true'),(12897,1065,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12898,1065,'wp_user_level','0'),(12899,1065,'default_password_nag','1'),(12900,1066,'first_name',''),(12901,1066,'last_name',''),(12902,1066,'nickname','SRKQuentin'),(12903,1066,'description',''),(12904,1066,'rich_editing','true'),(12905,1066,'comment_shortcuts','false'),(12906,1066,'admin_color','fresh'),(12907,1066,'use_ssl','0'),(12908,1066,'show_admin_bar_front','true'),(12909,1066,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12910,1066,'wp_user_level','0'),(12911,1066,'default_password_nag','1'),(12912,1067,'first_name',''),(12913,1067,'last_name',''),(12914,1067,'nickname','FloreneWienholt'),(12915,1067,'description',''),(12916,1067,'rich_editing','true'),(12917,1067,'comment_shortcuts','false'),(12918,1067,'admin_color','fresh'),(12919,1067,'use_ssl','0'),(12920,1067,'show_admin_bar_front','true'),(12921,1067,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12922,1067,'wp_user_level','0'),(12923,1067,'default_password_nag','1'),(12924,1068,'first_name',''),(12925,1068,'last_name',''),(12926,1068,'nickname','ByronGJRZelyl'),(12927,1068,'description',''),(12928,1068,'rich_editing','true'),(12929,1068,'comment_shortcuts','false'),(12930,1068,'admin_color','fresh'),(12931,1068,'use_ssl','0'),(12932,1068,'show_admin_bar_front','true'),(12933,1068,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12934,1068,'wp_user_level','0'),(12935,1068,'default_password_nag','1'),(12936,1069,'first_name',''),(12937,1069,'last_name',''),(12938,1069,'nickname','MckinleBirchell'),(12939,1069,'description',''),(12940,1069,'rich_editing','true'),(12941,1069,'comment_shortcuts','false'),(12942,1069,'admin_color','fresh'),(12943,1069,'use_ssl','0'),(12944,1069,'show_admin_bar_front','true'),(12945,1069,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12946,1069,'wp_user_level','0'),(12947,1069,'default_password_nag','1'),(12948,1070,'first_name',''),(12949,1070,'last_name',''),(12950,1070,'nickname','Xiomara54G'),(12951,1070,'description',''),(12952,1070,'rich_editing','true'),(12953,1070,'comment_shortcuts','false'),(12954,1070,'admin_color','fresh'),(12955,1070,'use_ssl','0'),(12956,1070,'show_admin_bar_front','true'),(12957,1070,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12958,1070,'wp_user_level','0'),(12959,1070,'default_password_nag','1'),(12960,1071,'first_name',''),(12961,1071,'last_name',''),(12962,1071,'nickname','JessikaJ81'),(12963,1071,'description',''),(12964,1071,'rich_editing','true'),(12965,1071,'comment_shortcuts','false'),(12966,1071,'admin_color','fresh'),(12967,1071,'use_ssl','0'),(12968,1071,'show_admin_bar_front','true'),(12969,1071,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12970,1071,'wp_user_level','0'),(12971,1071,'default_password_nag','1'),(12972,1072,'first_name',''),(12973,1072,'last_name',''),(12974,1072,'nickname','RicardoCard'),(12975,1072,'description',''),(12976,1072,'rich_editing','true'),(12977,1072,'comment_shortcuts','false'),(12978,1072,'admin_color','fresh'),(12979,1072,'use_ssl','0'),(12980,1072,'show_admin_bar_front','true'),(12981,1072,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12982,1072,'wp_user_level','0'),(12983,1072,'default_password_nag','1'),(12984,1073,'first_name',''),(12985,1073,'last_name',''),(12986,1073,'nickname','RozellaTozier'),(12987,1073,'description',''),(12988,1073,'rich_editing','true'),(12989,1073,'comment_shortcuts','false'),(12990,1073,'admin_color','fresh'),(12991,1073,'use_ssl','0'),(12992,1073,'show_admin_bar_front','true'),(12993,1073,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(12994,1073,'wp_user_level','0'),(12995,1073,'default_password_nag','1'),(12996,1074,'first_name',''),(12997,1074,'last_name',''),(12998,1074,'nickname','EdwardDinkins'),(12999,1074,'description',''),(13000,1074,'rich_editing','true'),(13001,1074,'comment_shortcuts','false'),(13002,1074,'admin_color','fresh'),(13003,1074,'use_ssl','0'),(13004,1074,'show_admin_bar_front','true'),(13005,1074,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13006,1074,'wp_user_level','0'),(13007,1074,'default_password_nag','1'),(13008,1075,'first_name',''),(13009,1075,'last_name',''),(13010,1075,'nickname','AddieHarries'),(13011,1075,'description',''),(13012,1075,'rich_editing','true'),(13013,1075,'comment_shortcuts','false'),(13014,1075,'admin_color','fresh'),(13015,1075,'use_ssl','0'),(13016,1075,'show_admin_bar_front','true'),(13017,1075,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13018,1075,'wp_user_level','0'),(13019,1075,'default_password_nag','1'),(13020,1076,'first_name',''),(13021,1076,'last_name',''),(13022,1076,'nickname','MargarePinkley'),(13023,1076,'description',''),(13024,1076,'rich_editing','true'),(13025,1076,'comment_shortcuts','false'),(13026,1076,'admin_color','fresh'),(13027,1076,'use_ssl','0'),(13028,1076,'show_admin_bar_front','true'),(13029,1076,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13030,1076,'wp_user_level','0'),(13031,1076,'default_password_nag','1'),(13032,1077,'first_name',''),(13033,1077,'last_name',''),(13034,1077,'nickname','CortezEveringha'),(13035,1077,'description',''),(13036,1077,'rich_editing','true'),(13037,1077,'comment_shortcuts','false'),(13038,1077,'admin_color','fresh'),(13039,1077,'use_ssl','0'),(13040,1077,'show_admin_bar_front','true'),(13041,1077,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13042,1077,'wp_user_level','0'),(13043,1077,'default_password_nag','1'),(13044,1078,'first_name',''),(13045,1078,'last_name',''),(13046,1078,'nickname','BobbieGuardado'),(13047,1078,'description',''),(13048,1078,'rich_editing','true'),(13049,1078,'comment_shortcuts','false'),(13050,1078,'admin_color','fresh'),(13051,1078,'use_ssl','0'),(13052,1078,'show_admin_bar_front','true'),(13053,1078,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13054,1078,'wp_user_level','0'),(13055,1078,'default_password_nag','1'),(13056,1079,'first_name',''),(13057,1079,'last_name',''),(13058,1079,'nickname','ZellaLeong'),(13059,1079,'description',''),(13060,1079,'rich_editing','true'),(13061,1079,'comment_shortcuts','false'),(13062,1079,'admin_color','fresh'),(13063,1079,'use_ssl','0'),(13064,1079,'show_admin_bar_front','true'),(13065,1079,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13066,1079,'wp_user_level','0'),(13067,1079,'default_password_nag','1'),(13068,1080,'first_name',''),(13069,1080,'last_name',''),(13070,1080,'nickname','MinnaColson'),(13071,1080,'description',''),(13072,1080,'rich_editing','true'),(13073,1080,'comment_shortcuts','false'),(13074,1080,'admin_color','fresh'),(13075,1080,'use_ssl','0'),(13076,1080,'show_admin_bar_front','true'),(13077,1080,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13078,1080,'wp_user_level','0'),(13079,1080,'default_password_nag','1'),(13080,1081,'first_name',''),(13081,1081,'last_name',''),(13082,1081,'nickname','EMXCallumqzytc'),(13083,1081,'description',''),(13084,1081,'rich_editing','true'),(13085,1081,'comment_shortcuts','false'),(13086,1081,'admin_color','fresh'),(13087,1081,'use_ssl','0'),(13088,1081,'show_admin_bar_front','true'),(13089,1081,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13090,1081,'wp_user_level','0'),(13091,1081,'default_password_nag','1'),(13092,1082,'first_name',''),(13093,1082,'last_name',''),(13094,1082,'nickname','Gloria7151'),(13095,1082,'description',''),(13096,1082,'rich_editing','true'),(13097,1082,'comment_shortcuts','false'),(13098,1082,'admin_color','fresh'),(13099,1082,'use_ssl','0'),(13100,1082,'show_admin_bar_front','true'),(13101,1082,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13102,1082,'wp_user_level','0'),(13103,1082,'default_password_nag','1'),(13104,1083,'first_name',''),(13105,1083,'last_name',''),(13106,1083,'nickname','KrystynHowells'),(13107,1083,'description',''),(13108,1083,'rich_editing','true'),(13109,1083,'comment_shortcuts','false'),(13110,1083,'admin_color','fresh'),(13111,1083,'use_ssl','0'),(13112,1083,'show_admin_bar_front','true'),(13113,1083,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13114,1083,'wp_user_level','0'),(13115,1083,'default_password_nag','1'),(13116,1084,'first_name',''),(13117,1084,'last_name',''),(13118,1084,'nickname','KennithStang'),(13119,1084,'description',''),(13120,1084,'rich_editing','true'),(13121,1084,'comment_shortcuts','false'),(13122,1084,'admin_color','fresh'),(13123,1084,'use_ssl','0'),(13124,1084,'show_admin_bar_front','true'),(13125,1084,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13126,1084,'wp_user_level','0'),(13127,1084,'default_password_nag','1'),(13128,1085,'first_name',''),(13129,1085,'last_name',''),(13130,1085,'nickname','HarrisMYVnhti'),(13131,1085,'description',''),(13132,1085,'rich_editing','true'),(13133,1085,'comment_shortcuts','false'),(13134,1085,'admin_color','fresh'),(13135,1085,'use_ssl','0'),(13136,1085,'show_admin_bar_front','true'),(13137,1085,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13138,1085,'wp_user_level','0'),(13139,1085,'default_password_nag','1'),(13140,1086,'first_name',''),(13141,1086,'last_name',''),(13142,1086,'nickname','BudFreehill'),(13143,1086,'description',''),(13144,1086,'rich_editing','true'),(13145,1086,'comment_shortcuts','false'),(13146,1086,'admin_color','fresh'),(13147,1086,'use_ssl','0'),(13148,1086,'show_admin_bar_front','true'),(13149,1086,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13150,1086,'wp_user_level','0'),(13151,1086,'default_password_nag','1'),(13152,1087,'first_name',''),(13153,1087,'last_name',''),(13154,1087,'nickname','ChristianoT'),(13155,1087,'description',''),(13156,1087,'rich_editing','true'),(13157,1087,'comment_shortcuts','false'),(13158,1087,'admin_color','fresh'),(13159,1087,'use_ssl','0'),(13160,1087,'show_admin_bar_front','true'),(13161,1087,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13162,1087,'wp_user_level','0'),(13163,1087,'default_password_nag','1'),(13164,1088,'first_name',''),(13165,1088,'last_name',''),(13166,1088,'nickname','inurdieproc1965'),(13167,1088,'description',''),(13168,1088,'rich_editing','true'),(13169,1088,'comment_shortcuts','false'),(13170,1088,'admin_color','fresh'),(13171,1088,'use_ssl','0'),(13172,1088,'show_admin_bar_front','true'),(13173,1088,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13174,1088,'wp_user_level','0'),(13175,1088,'default_password_nag','1'),(13176,1089,'first_name',''),(13177,1089,'last_name',''),(13178,1089,'nickname','Deon05Ywbsqw'),(13179,1089,'description',''),(13180,1089,'rich_editing','true'),(13181,1089,'comment_shortcuts','false'),(13182,1089,'admin_color','fresh'),(13183,1089,'use_ssl','0'),(13184,1089,'show_admin_bar_front','true'),(13185,1089,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13186,1089,'wp_user_level','0'),(13187,1089,'default_password_nag','1'),(13188,1090,'first_name',''),(13189,1090,'last_name',''),(13190,1090,'nickname','Hal4795gthfrb'),(13191,1090,'description',''),(13192,1090,'rich_editing','true'),(13193,1090,'comment_shortcuts','false'),(13194,1090,'admin_color','fresh'),(13195,1090,'use_ssl','0'),(13196,1090,'show_admin_bar_front','true'),(13197,1090,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13198,1090,'wp_user_level','0'),(13199,1090,'default_password_nag','1'),(13200,1091,'first_name',''),(13201,1091,'last_name',''),(13202,1091,'nickname','DottyTHQUagz'),(13203,1091,'description',''),(13204,1091,'rich_editing','true'),(13205,1091,'comment_shortcuts','false'),(13206,1091,'admin_color','fresh'),(13207,1091,'use_ssl','0'),(13208,1091,'show_admin_bar_front','true'),(13209,1091,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13210,1091,'wp_user_level','0'),(13211,1091,'default_password_nag','1'),(13212,1092,'first_name',''),(13213,1092,'last_name',''),(13214,1092,'nickname','MadisonRempe'),(13215,1092,'description',''),(13216,1092,'rich_editing','true'),(13217,1092,'comment_shortcuts','false'),(13218,1092,'admin_color','fresh'),(13219,1092,'use_ssl','0'),(13220,1092,'show_admin_bar_front','true'),(13221,1092,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13222,1092,'wp_user_level','0'),(13223,1092,'default_password_nag','1'),(13224,1093,'first_name',''),(13225,1093,'last_name',''),(13226,1093,'nickname','PansyNHExdh'),(13227,1093,'description',''),(13228,1093,'rich_editing','true'),(13229,1093,'comment_shortcuts','false'),(13230,1093,'admin_color','fresh'),(13231,1093,'use_ssl','0'),(13232,1093,'show_admin_bar_front','true'),(13233,1093,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13234,1093,'wp_user_level','0'),(13235,1093,'default_password_nag','1'),(13236,1094,'first_name',''),(13237,1094,'last_name',''),(13238,1094,'nickname','MariannSaiz'),(13239,1094,'description',''),(13240,1094,'rich_editing','true'),(13241,1094,'comment_shortcuts','false'),(13242,1094,'admin_color','fresh'),(13243,1094,'use_ssl','0'),(13244,1094,'show_admin_bar_front','true'),(13245,1094,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13246,1094,'wp_user_level','0'),(13247,1094,'default_password_nag','1'),(13248,1095,'first_name',''),(13249,1095,'last_name',''),(13250,1095,'nickname','CarmellaHansfor'),(13251,1095,'description',''),(13252,1095,'rich_editing','true'),(13253,1095,'comment_shortcuts','false'),(13254,1095,'admin_color','fresh'),(13255,1095,'use_ssl','0'),(13256,1095,'show_admin_bar_front','true'),(13257,1095,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13258,1095,'wp_user_level','0'),(13259,1095,'default_password_nag','1'),(13260,1096,'first_name',''),(13261,1096,'last_name',''),(13262,1096,'nickname','GUDSilkertelrg'),(13263,1096,'description',''),(13264,1096,'rich_editing','true'),(13265,1096,'comment_shortcuts','false'),(13266,1096,'admin_color','fresh'),(13267,1096,'use_ssl','0'),(13268,1096,'show_admin_bar_front','true'),(13269,1096,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13270,1096,'wp_user_level','0'),(13271,1096,'default_password_nag','1'),(13272,1097,'first_name',''),(13273,1097,'last_name',''),(13274,1097,'nickname','KourtneSturgeon'),(13275,1097,'description',''),(13276,1097,'rich_editing','true'),(13277,1097,'comment_shortcuts','false'),(13278,1097,'admin_color','fresh'),(13279,1097,'use_ssl','0'),(13280,1097,'show_admin_bar_front','true'),(13281,1097,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13282,1097,'wp_user_level','0'),(13283,1097,'default_password_nag','1'),(13284,1098,'first_name',''),(13285,1098,'last_name',''),(13286,1098,'nickname','FECCyrilyxevjiy'),(13287,1098,'description',''),(13288,1098,'rich_editing','true'),(13289,1098,'comment_shortcuts','false'),(13290,1098,'admin_color','fresh'),(13291,1098,'use_ssl','0'),(13292,1098,'show_admin_bar_front','true'),(13293,1098,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13294,1098,'wp_user_level','0'),(13295,1098,'default_password_nag','1'),(13296,1099,'first_name',''),(13297,1099,'last_name',''),(13298,1099,'nickname','MinervaGranata'),(13299,1099,'description',''),(13300,1099,'rich_editing','true'),(13301,1099,'comment_shortcuts','false'),(13302,1099,'admin_color','fresh'),(13303,1099,'use_ssl','0'),(13304,1099,'show_admin_bar_front','true'),(13305,1099,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13306,1099,'wp_user_level','0'),(13307,1099,'default_password_nag','1'),(13308,1100,'first_name',''),(13309,1100,'last_name',''),(13310,1100,'nickname','GNRJustine'),(13311,1100,'description',''),(13312,1100,'rich_editing','true'),(13313,1100,'comment_shortcuts','false'),(13314,1100,'admin_color','fresh'),(13315,1100,'use_ssl','0'),(13316,1100,'show_admin_bar_front','true'),(13317,1100,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13318,1100,'wp_user_level','0'),(13319,1100,'default_password_nag','1'),(13320,1101,'first_name',''),(13321,1101,'last_name',''),(13322,1101,'nickname','ElviraMZNB'),(13323,1101,'description',''),(13324,1101,'rich_editing','true'),(13325,1101,'comment_shortcuts','false'),(13326,1101,'admin_color','fresh'),(13327,1101,'use_ssl','0'),(13328,1101,'show_admin_bar_front','true'),(13329,1101,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13330,1101,'wp_user_level','0'),(13331,1101,'default_password_nag','1'),(13332,1102,'first_name',''),(13333,1102,'last_name',''),(13334,1102,'nickname','LinFoelsche'),(13335,1102,'description',''),(13336,1102,'rich_editing','true'),(13337,1102,'comment_shortcuts','false'),(13338,1102,'admin_color','fresh'),(13339,1102,'use_ssl','0'),(13340,1102,'show_admin_bar_front','true'),(13341,1102,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13342,1102,'wp_user_level','0'),(13343,1102,'default_password_nag','1'),(13344,1103,'first_name',''),(13345,1103,'last_name',''),(13346,1103,'nickname','AlishaDuCroz'),(13347,1103,'description',''),(13348,1103,'rich_editing','true'),(13349,1103,'comment_shortcuts','false'),(13350,1103,'admin_color','fresh'),(13351,1103,'use_ssl','0'),(13352,1103,'show_admin_bar_front','true'),(13353,1103,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13354,1103,'wp_user_level','0'),(13355,1103,'default_password_nag','1'),(13356,1104,'first_name',''),(13357,1104,'last_name',''),(13358,1104,'nickname','PercyEsmond'),(13359,1104,'description',''),(13360,1104,'rich_editing','true'),(13361,1104,'comment_shortcuts','false'),(13362,1104,'admin_color','fresh'),(13363,1104,'use_ssl','0'),(13364,1104,'show_admin_bar_front','true'),(13365,1104,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13366,1104,'wp_user_level','0'),(13367,1104,'default_password_nag','1'),(13368,1105,'first_name',''),(13369,1105,'last_name',''),(13370,1105,'nickname','WallaceHeine'),(13371,1105,'description',''),(13372,1105,'rich_editing','true'),(13373,1105,'comment_shortcuts','false'),(13374,1105,'admin_color','fresh'),(13375,1105,'use_ssl','0'),(13376,1105,'show_admin_bar_front','true'),(13377,1105,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13378,1105,'wp_user_level','0'),(13379,1105,'default_password_nag','1'),(13380,1106,'first_name',''),(13381,1106,'last_name',''),(13382,1106,'nickname','AlbertaSteinfel'),(13383,1106,'description',''),(13384,1106,'rich_editing','true'),(13385,1106,'comment_shortcuts','false'),(13386,1106,'admin_color','fresh'),(13387,1106,'use_ssl','0'),(13388,1106,'show_admin_bar_front','true'),(13389,1106,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13390,1106,'wp_user_level','0'),(13391,1106,'default_password_nag','1'),(13392,1107,'first_name',''),(13393,1107,'last_name',''),(13394,1107,'nickname','IsabellB49'),(13395,1107,'description',''),(13396,1107,'rich_editing','true'),(13397,1107,'comment_shortcuts','false'),(13398,1107,'admin_color','fresh'),(13399,1107,'use_ssl','0'),(13400,1107,'show_admin_bar_front','true'),(13401,1107,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13402,1107,'wp_user_level','0'),(13403,1107,'default_password_nag','1'),(13404,1108,'first_name',''),(13405,1108,'last_name',''),(13406,1108,'nickname','LashawnExn'),(13407,1108,'description',''),(13408,1108,'rich_editing','true'),(13409,1108,'comment_shortcuts','false'),(13410,1108,'admin_color','fresh'),(13411,1108,'use_ssl','0'),(13412,1108,'show_admin_bar_front','true'),(13413,1108,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13414,1108,'wp_user_level','0'),(13415,1108,'default_password_nag','1'),(15169,1252,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15170,1252,'wp_user_level','0'),(15171,1252,'default_password_nag','1'),(15172,1253,'first_name',''),(15173,1253,'last_name',''),(15174,1253,'nickname','Blythe36Ws'),(13416,1064,'aim',''),(13417,1064,'yim',''),(13418,1064,'jabber',''),(13419,1064,'gauthor','RobertPew'),(13420,1109,'first_name',''),(13421,1109,'last_name',''),(13422,1109,'nickname','DominicYGEA'),(13423,1109,'description',''),(13424,1109,'rich_editing','true'),(13425,1109,'comment_shortcuts','false'),(13426,1109,'admin_color','fresh'),(13427,1109,'use_ssl','0'),(13428,1109,'show_admin_bar_front','true'),(13429,1109,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13430,1109,'wp_user_level','0'),(13431,1109,'default_password_nag','1'),(13432,1110,'first_name',''),(13433,1110,'last_name',''),(13434,1110,'nickname','ZackHeagney'),(13435,1110,'description',''),(13436,1110,'rich_editing','true'),(13437,1110,'comment_shortcuts','false'),(13438,1110,'admin_color','fresh'),(13439,1110,'use_ssl','0'),(13440,1110,'show_admin_bar_front','true'),(13441,1110,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13442,1110,'wp_user_level','0'),(13443,1110,'default_password_nag','1'),(13444,1111,'first_name',''),(13445,1111,'last_name',''),(13446,1111,'nickname','MaudeSilver'),(13447,1111,'description',''),(13448,1111,'rich_editing','true'),(13449,1111,'comment_shortcuts','false'),(13450,1111,'admin_color','fresh'),(13451,1111,'use_ssl','0'),(13452,1111,'show_admin_bar_front','true'),(13453,1111,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13454,1111,'wp_user_level','0'),(13455,1111,'default_password_nag','1'),(13456,1112,'first_name',''),(13457,1112,'last_name',''),(13458,1112,'nickname','GayMontemayor'),(13459,1112,'description',''),(13460,1112,'rich_editing','true'),(13461,1112,'comment_shortcuts','false'),(13462,1112,'admin_color','fresh'),(13463,1112,'use_ssl','0'),(13464,1112,'show_admin_bar_front','true'),(13465,1112,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13466,1112,'wp_user_level','0'),(13467,1112,'default_password_nag','1'),(13468,1113,'first_name',''),(13469,1113,'last_name',''),(13470,1113,'nickname','JosefNguyen'),(13471,1113,'description',''),(13472,1113,'rich_editing','true'),(13473,1113,'comment_shortcuts','false'),(13474,1113,'admin_color','fresh'),(13475,1113,'use_ssl','0'),(13476,1113,'show_admin_bar_front','true'),(13477,1113,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13478,1113,'wp_user_level','0'),(13479,1113,'default_password_nag','1'),(13480,1114,'first_name',''),(13481,1114,'last_name',''),(13482,1114,'nickname','LenaBright'),(13483,1114,'description',''),(13484,1114,'rich_editing','true'),(13485,1114,'comment_shortcuts','false'),(13486,1114,'admin_color','fresh'),(13487,1114,'use_ssl','0'),(13488,1114,'show_admin_bar_front','true'),(13489,1114,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13490,1114,'wp_user_level','0'),(13491,1114,'default_password_nag','1'),(13492,1115,'first_name',''),(13493,1115,'last_name',''),(13494,1115,'nickname','CollettAYQX'),(13495,1115,'description',''),(13496,1115,'rich_editing','true'),(13497,1115,'comment_shortcuts','false'),(13498,1115,'admin_color','fresh'),(13499,1115,'use_ssl','0'),(13500,1115,'show_admin_bar_front','true'),(13501,1115,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13502,1115,'wp_user_level','0'),(13503,1115,'default_password_nag','1'),(14644,1210,'first_name',''),(13504,1063,'aim',''),(13505,1063,'yim',''),(13506,1063,'jabber',''),(13507,1063,'gauthor','Albertoma'),(13508,1116,'first_name',''),(13509,1116,'last_name',''),(13510,1116,'nickname','DorrisLeibius'),(13511,1116,'description',''),(13512,1116,'rich_editing','true'),(13513,1116,'comment_shortcuts','false'),(13514,1116,'admin_color','fresh'),(13515,1116,'use_ssl','0'),(13516,1116,'show_admin_bar_front','true'),(13517,1116,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13518,1116,'wp_user_level','0'),(13519,1116,'default_password_nag','1'),(13520,1117,'first_name',''),(13521,1117,'last_name',''),(13522,1117,'nickname','SabineDresdner'),(13523,1117,'description',''),(13524,1117,'rich_editing','true'),(13525,1117,'comment_shortcuts','false'),(13526,1117,'admin_color','fresh'),(13527,1117,'use_ssl','0'),(13528,1117,'show_admin_bar_front','true'),(13529,1117,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13530,1117,'wp_user_level','0'),(13531,1117,'default_password_nag','1'),(13532,1118,'first_name',''),(13533,1118,'last_name',''),(13534,1118,'nickname','EFHTobiasyu'),(13535,1118,'description',''),(13536,1118,'rich_editing','true'),(13537,1118,'comment_shortcuts','false'),(13538,1118,'admin_color','fresh'),(13539,1118,'use_ssl','0'),(13540,1118,'show_admin_bar_front','true'),(13541,1118,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13542,1118,'wp_user_level','0'),(13543,1118,'default_password_nag','1'),(13544,1119,'first_name',''),(13545,1119,'last_name',''),(13546,1119,'nickname','MargaretteKirkb'),(13547,1119,'description',''),(13548,1119,'rich_editing','true'),(13549,1119,'comment_shortcuts','false'),(13550,1119,'admin_color','fresh'),(13551,1119,'use_ssl','0'),(13552,1119,'show_admin_bar_front','true'),(13553,1119,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13554,1119,'wp_user_level','0'),(13555,1119,'default_password_nag','1'),(13556,1120,'first_name',''),(13557,1120,'last_name',''),(13558,1120,'nickname','Lurlene3385'),(13559,1120,'description',''),(13560,1120,'rich_editing','true'),(13561,1120,'comment_shortcuts','false'),(13562,1120,'admin_color','fresh'),(13563,1120,'use_ssl','0'),(13564,1120,'show_admin_bar_front','true'),(13565,1120,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13566,1120,'wp_user_level','0'),(13567,1120,'default_password_nag','1'),(13568,1121,'first_name',''),(13569,1121,'last_name',''),(13570,1121,'nickname','MauraBoucaut'),(13571,1121,'description',''),(13572,1121,'rich_editing','true'),(13573,1121,'comment_shortcuts','false'),(13574,1121,'admin_color','fresh'),(13575,1121,'use_ssl','0'),(13576,1121,'show_admin_bar_front','true'),(13577,1121,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13578,1121,'wp_user_level','0'),(13579,1121,'default_password_nag','1'),(13580,1122,'first_name',''),(13581,1122,'last_name',''),(13582,1122,'nickname','JeanettURA'),(13583,1122,'description',''),(13584,1122,'rich_editing','true'),(13585,1122,'comment_shortcuts','false'),(13586,1122,'admin_color','fresh'),(13587,1122,'use_ssl','0'),(13588,1122,'show_admin_bar_front','true'),(13589,1122,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13590,1122,'wp_user_level','0'),(13591,1122,'default_password_nag','1'),(13592,1123,'first_name',''),(13593,1123,'last_name',''),(13594,1123,'nickname','BillieLeatherma'),(13595,1123,'description',''),(13596,1123,'rich_editing','true'),(13597,1123,'comment_shortcuts','false'),(13598,1123,'admin_color','fresh'),(13599,1123,'use_ssl','0'),(13600,1123,'show_admin_bar_front','true'),(13601,1123,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13602,1123,'wp_user_level','0'),(13603,1123,'default_password_nag','1'),(13604,1124,'first_name',''),(13605,1124,'last_name',''),(13606,1124,'nickname','Ross36Tbtpvmcj'),(13607,1124,'description',''),(13608,1124,'rich_editing','true'),(13609,1124,'comment_shortcuts','false'),(13610,1124,'admin_color','fresh'),(13611,1124,'use_ssl','0'),(13612,1124,'show_admin_bar_front','true'),(13613,1124,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13614,1124,'wp_user_level','0'),(13615,1124,'default_password_nag','1'),(13616,1125,'first_name',''),(13617,1125,'last_name',''),(13618,1125,'nickname','ChassidSgu'),(13619,1125,'description',''),(13620,1125,'rich_editing','true'),(13621,1125,'comment_shortcuts','false'),(13622,1125,'admin_color','fresh'),(13623,1125,'use_ssl','0'),(13624,1125,'show_admin_bar_front','true'),(13625,1125,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13626,1125,'wp_user_level','0'),(13627,1125,'default_password_nag','1'),(13628,1126,'first_name',''),(13629,1126,'last_name',''),(13630,1126,'nickname','MikaylaHayner'),(13631,1126,'description',''),(13632,1126,'rich_editing','true'),(13633,1126,'comment_shortcuts','false'),(13634,1126,'admin_color','fresh'),(13635,1126,'use_ssl','0'),(13636,1126,'show_admin_bar_front','true'),(13637,1126,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13638,1126,'wp_user_level','0'),(13639,1126,'default_password_nag','1'),(13640,1127,'first_name',''),(13641,1127,'last_name',''),(13642,1127,'nickname','ShellyBMGxto'),(13643,1127,'description',''),(13644,1127,'rich_editing','true'),(13645,1127,'comment_shortcuts','false'),(13646,1127,'admin_color','fresh'),(13647,1127,'use_ssl','0'),(13648,1127,'show_admin_bar_front','true'),(13649,1127,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13650,1127,'wp_user_level','0'),(13651,1127,'default_password_nag','1'),(13652,1128,'first_name',''),(13653,1128,'last_name',''),(13654,1128,'nickname','LoreneAkeroyd'),(13655,1128,'description',''),(13656,1128,'rich_editing','true'),(13657,1128,'comment_shortcuts','false'),(13658,1128,'admin_color','fresh'),(13659,1128,'use_ssl','0'),(13660,1128,'show_admin_bar_front','true'),(13661,1128,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13662,1128,'wp_user_level','0'),(13663,1128,'default_password_nag','1'),(13664,1129,'first_name',''),(13665,1129,'last_name',''),(13666,1129,'nickname','BonnyGerrard'),(13667,1129,'description',''),(13668,1129,'rich_editing','true'),(13669,1129,'comment_shortcuts','false'),(13670,1129,'admin_color','fresh'),(13671,1129,'use_ssl','0'),(13672,1129,'show_admin_bar_front','true'),(13673,1129,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13674,1129,'wp_user_level','0'),(13675,1129,'default_password_nag','1'),(13676,1130,'first_name',''),(13677,1130,'last_name',''),(13678,1130,'nickname','Chasity91Z'),(13679,1130,'description',''),(13680,1130,'rich_editing','true'),(13681,1130,'comment_shortcuts','false'),(13682,1130,'admin_color','fresh'),(13683,1130,'use_ssl','0'),(13684,1130,'show_admin_bar_front','true'),(13685,1130,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13686,1130,'wp_user_level','0'),(13687,1130,'default_password_nag','1'),(13688,1131,'first_name',''),(13689,1131,'last_name',''),(13690,1131,'nickname','SusannaOQUV'),(13691,1131,'description',''),(13692,1131,'rich_editing','true'),(13693,1131,'comment_shortcuts','false'),(13694,1131,'admin_color','fresh'),(13695,1131,'use_ssl','0'),(13696,1131,'show_admin_bar_front','true'),(13697,1131,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13698,1131,'wp_user_level','0'),(13699,1131,'default_password_nag','1'),(13700,1132,'first_name',''),(13701,1132,'last_name',''),(13702,1132,'nickname','RebbecaOleary'),(13703,1132,'description',''),(13704,1132,'rich_editing','true'),(13705,1132,'comment_shortcuts','false'),(13706,1132,'admin_color','fresh'),(13707,1132,'use_ssl','0'),(13708,1132,'show_admin_bar_front','true'),(13709,1132,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13710,1132,'wp_user_level','0'),(13711,1132,'default_password_nag','1'),(13712,1133,'first_name',''),(13713,1133,'last_name',''),(13714,1133,'nickname','BelenVarley'),(13715,1133,'description',''),(13716,1133,'rich_editing','true'),(13717,1133,'comment_shortcuts','false'),(13718,1133,'admin_color','fresh'),(13719,1133,'use_ssl','0'),(13720,1133,'show_admin_bar_front','true'),(13721,1133,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13722,1133,'wp_user_level','0'),(13723,1133,'default_password_nag','1'),(13724,1134,'first_name',''),(13725,1134,'last_name',''),(13726,1134,'nickname','ElwoodKrome'),(13727,1134,'description',''),(13728,1134,'rich_editing','true'),(13729,1134,'comment_shortcuts','false'),(13730,1134,'admin_color','fresh'),(13731,1134,'use_ssl','0'),(13732,1134,'show_admin_bar_front','true'),(13733,1134,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13734,1134,'wp_user_level','0'),(13735,1134,'default_password_nag','1'),(13736,1135,'first_name',''),(13737,1135,'last_name',''),(13738,1135,'nickname','EulaZiegler'),(13739,1135,'description',''),(13740,1135,'rich_editing','true'),(13741,1135,'comment_shortcuts','false'),(13742,1135,'admin_color','fresh'),(13743,1135,'use_ssl','0'),(13744,1135,'show_admin_bar_front','true'),(13745,1135,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13746,1135,'wp_user_level','0'),(13747,1135,'default_password_nag','1'),(13748,1136,'first_name',''),(13749,1136,'last_name',''),(13750,1136,'nickname','RobertLayman'),(13751,1136,'description',''),(13752,1136,'rich_editing','true'),(13753,1136,'comment_shortcuts','false'),(13754,1136,'admin_color','fresh'),(13755,1136,'use_ssl','0'),(13756,1136,'show_admin_bar_front','true'),(13757,1136,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13758,1136,'wp_user_level','0'),(13759,1136,'default_password_nag','1'),(13760,1137,'first_name',''),(13761,1137,'last_name',''),(13762,1137,'nickname','Dawna24Kiqw'),(13763,1137,'description',''),(13764,1137,'rich_editing','true'),(13765,1137,'comment_shortcuts','false'),(13766,1137,'admin_color','fresh'),(13767,1137,'use_ssl','0'),(13768,1137,'show_admin_bar_front','true'),(13769,1137,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13770,1137,'wp_user_level','0'),(13771,1137,'default_password_nag','1'),(13772,1138,'first_name',''),(13773,1138,'last_name',''),(13774,1138,'nickname','Omer4646lbrj'),(13775,1138,'description',''),(13776,1138,'rich_editing','true'),(13777,1138,'comment_shortcuts','false'),(13778,1138,'admin_color','fresh'),(13779,1138,'use_ssl','0'),(13780,1138,'show_admin_bar_front','true'),(13781,1138,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13782,1138,'wp_user_level','0'),(13783,1138,'default_password_nag','1'),(13784,1139,'first_name',''),(13785,1139,'last_name',''),(13786,1139,'nickname','OdessaS70dmd'),(13787,1139,'description',''),(13788,1139,'rich_editing','true'),(13789,1139,'comment_shortcuts','false'),(13790,1139,'admin_color','fresh'),(13791,1139,'use_ssl','0'),(13792,1139,'show_admin_bar_front','true'),(13793,1139,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13794,1139,'wp_user_level','0'),(13795,1139,'default_password_nag','1'),(13796,1140,'first_name',''),(13797,1140,'last_name',''),(13798,1140,'nickname','LeonelW38kkwwp'),(13799,1140,'description',''),(13800,1140,'rich_editing','true'),(13801,1140,'comment_shortcuts','false'),(13802,1140,'admin_color','fresh'),(13803,1140,'use_ssl','0'),(13804,1140,'show_admin_bar_front','true'),(13805,1140,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13806,1140,'wp_user_level','0'),(13807,1140,'default_password_nag','1'),(13808,1141,'first_name',''),(13809,1141,'last_name',''),(13810,1141,'nickname','SuzetteW28'),(13811,1141,'description',''),(13812,1141,'rich_editing','true'),(13813,1141,'comment_shortcuts','false'),(13814,1141,'admin_color','fresh'),(13815,1141,'use_ssl','0'),(13816,1141,'show_admin_bar_front','true'),(13817,1141,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13818,1141,'wp_user_level','0'),(13819,1141,'default_password_nag','1'),(13820,1142,'first_name',''),(13821,1142,'last_name',''),(13822,1142,'nickname','GrazynaCavazos'),(13823,1142,'description',''),(13824,1142,'rich_editing','true'),(13825,1142,'comment_shortcuts','false'),(13826,1142,'admin_color','fresh'),(13827,1142,'use_ssl','0'),(13828,1142,'show_admin_bar_front','true'),(13829,1142,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13830,1142,'wp_user_level','0'),(13831,1142,'default_password_nag','1'),(13832,1143,'first_name',''),(13833,1143,'last_name',''),(13834,1143,'nickname','JillianValles'),(13835,1143,'description',''),(13836,1143,'rich_editing','true'),(13837,1143,'comment_shortcuts','false'),(13838,1143,'admin_color','fresh'),(13839,1143,'use_ssl','0'),(13840,1143,'show_admin_bar_front','true'),(13841,1143,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13842,1143,'wp_user_level','0'),(13843,1143,'default_password_nag','1'),(13844,1144,'first_name',''),(13845,1144,'last_name',''),(13846,1144,'nickname','JohannaMerryman'),(13847,1144,'description',''),(13848,1144,'rich_editing','true'),(13849,1144,'comment_shortcuts','false'),(13850,1144,'admin_color','fresh'),(13851,1144,'use_ssl','0'),(13852,1144,'show_admin_bar_front','true'),(13853,1144,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13854,1144,'wp_user_level','0'),(13855,1144,'default_password_nag','1'),(13856,1145,'first_name',''),(13857,1145,'last_name',''),(13858,1145,'nickname','VanessaHulsey'),(13859,1145,'description',''),(13860,1145,'rich_editing','true'),(13861,1145,'comment_shortcuts','false'),(13862,1145,'admin_color','fresh'),(13863,1145,'use_ssl','0'),(13864,1145,'show_admin_bar_front','true'),(13865,1145,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13866,1145,'wp_user_level','0'),(13867,1145,'default_password_nag','1'),(13868,1146,'first_name',''),(13869,1146,'last_name',''),(13870,1146,'nickname','BillieLoughman'),(13871,1146,'description',''),(13872,1146,'rich_editing','true'),(13873,1146,'comment_shortcuts','false'),(13874,1146,'admin_color','fresh'),(13875,1146,'use_ssl','0'),(13876,1146,'show_admin_bar_front','true'),(13877,1146,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13878,1146,'wp_user_level','0'),(13879,1146,'default_password_nag','1'),(13880,1147,'first_name',''),(13881,1147,'last_name',''),(13882,1147,'nickname','VelvaSchmella'),(13883,1147,'description',''),(13884,1147,'rich_editing','true'),(13885,1147,'comment_shortcuts','false'),(13886,1147,'admin_color','fresh'),(13887,1147,'use_ssl','0'),(13888,1147,'show_admin_bar_front','true'),(13889,1147,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13890,1147,'wp_user_level','0'),(13891,1147,'default_password_nag','1'),(13892,1148,'first_name',''),(13893,1148,'last_name',''),(13894,1148,'nickname','LelandHumphries'),(13895,1148,'description',''),(13896,1148,'rich_editing','true'),(13897,1148,'comment_shortcuts','false'),(13898,1148,'admin_color','fresh'),(13899,1148,'use_ssl','0'),(13900,1148,'show_admin_bar_front','true'),(13901,1148,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13902,1148,'wp_user_level','0'),(13903,1148,'default_password_nag','1'),(13904,1149,'first_name',''),(13905,1149,'last_name',''),(13906,1149,'nickname','BrianneDDZN'),(13907,1149,'description',''),(13908,1149,'rich_editing','true'),(13909,1149,'comment_shortcuts','false'),(13910,1149,'admin_color','fresh'),(13911,1149,'use_ssl','0'),(13912,1149,'show_admin_bar_front','true'),(13913,1149,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13914,1149,'wp_user_level','0'),(13915,1149,'default_password_nag','1'),(13916,1150,'first_name',''),(13917,1150,'last_name',''),(13918,1150,'nickname','CandaceB45'),(13919,1150,'description',''),(13920,1150,'rich_editing','true'),(13921,1150,'comment_shortcuts','false'),(13922,1150,'admin_color','fresh'),(13923,1150,'use_ssl','0'),(13924,1150,'show_admin_bar_front','true'),(13925,1150,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13926,1150,'wp_user_level','0'),(13927,1150,'default_password_nag','1'),(13928,1151,'first_name',''),(13929,1151,'last_name',''),(13930,1151,'nickname','BroderickLoflan'),(13931,1151,'description',''),(13932,1151,'rich_editing','true'),(13933,1151,'comment_shortcuts','false'),(13934,1151,'admin_color','fresh'),(13935,1151,'use_ssl','0'),(13936,1151,'show_admin_bar_front','true'),(13937,1151,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13938,1151,'wp_user_level','0'),(13939,1151,'default_password_nag','1'),(13940,1152,'first_name',''),(13941,1152,'last_name',''),(13942,1152,'nickname','AndersoVPI'),(13943,1152,'description',''),(13944,1152,'rich_editing','true'),(13945,1152,'comment_shortcuts','false'),(13946,1152,'admin_color','fresh'),(13947,1152,'use_ssl','0'),(13948,1152,'show_admin_bar_front','true'),(13949,1152,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13950,1152,'wp_user_level','0'),(13951,1152,'default_password_nag','1'),(13952,1153,'first_name',''),(13953,1153,'last_name',''),(13954,1153,'nickname','DawnaTKNDihqo'),(13955,1153,'description',''),(13956,1153,'rich_editing','true'),(13957,1153,'comment_shortcuts','false'),(13958,1153,'admin_color','fresh'),(13959,1153,'use_ssl','0'),(13960,1153,'show_admin_bar_front','true'),(13961,1153,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13962,1153,'wp_user_level','0'),(13963,1153,'default_password_nag','1'),(13964,1154,'first_name',''),(13965,1154,'last_name',''),(13966,1154,'nickname','Tuyet5289c'),(13967,1154,'description',''),(13968,1154,'rich_editing','true'),(13969,1154,'comment_shortcuts','false'),(13970,1154,'admin_color','fresh'),(13971,1154,'use_ssl','0'),(13972,1154,'show_admin_bar_front','true'),(13973,1154,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13974,1154,'wp_user_level','0'),(13975,1154,'default_password_nag','1'),(13976,1155,'first_name',''),(13977,1155,'last_name',''),(13978,1155,'nickname','RoxannaRegister'),(13979,1155,'description',''),(13980,1155,'rich_editing','true'),(13981,1155,'comment_shortcuts','false'),(13982,1155,'admin_color','fresh'),(13983,1155,'use_ssl','0'),(13984,1155,'show_admin_bar_front','true'),(13985,1155,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13986,1155,'wp_user_level','0'),(13987,1155,'default_password_nag','1'),(13988,1156,'first_name','TirgamilMB'),(13989,1156,'last_name','TirgamilMB'),(13990,1156,'nickname','Tirgamil'),(13991,1156,'description','viagra information uk knowledge base\r\n <a href=\"http://genericviagra-usa.com\">buy viagra\r\n</a> viagra and alcohol interaction faq\r\n - buy viagra'),(13992,1156,'rich_editing','true'),(13993,1156,'comment_shortcuts','false'),(13994,1156,'admin_color','fresh'),(13995,1156,'use_ssl','0'),(13996,1156,'show_admin_bar_front','true'),(13997,1156,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(13998,1156,'wp_user_level','0'),(13999,1156,'default_password_nag',''),(14000,1156,'aim',''),(14001,1156,'yim',''),(14002,1156,'jabber',''),(14003,1156,'gauthor','Tirgamil'),(14004,1157,'first_name',''),(14005,1157,'last_name',''),(14006,1157,'nickname','SaraLockhart'),(14007,1157,'description',''),(14008,1157,'rich_editing','true'),(14009,1157,'comment_shortcuts','false'),(14010,1157,'admin_color','fresh'),(14011,1157,'use_ssl','0'),(14012,1157,'show_admin_bar_front','true'),(14013,1157,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14014,1157,'wp_user_level','0'),(14015,1157,'default_password_nag','1'),(14016,1158,'first_name',''),(14017,1158,'last_name',''),(14018,1158,'nickname','PLDNafilnoqdvsr'),(14019,1158,'description',''),(14020,1158,'rich_editing','true'),(14021,1158,'comment_shortcuts','false'),(14022,1158,'admin_color','fresh'),(14023,1158,'use_ssl','0'),(14024,1158,'show_admin_bar_front','true'),(14025,1158,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14026,1158,'wp_user_level','0'),(14027,1158,'default_password_nag','1'),(14028,1159,'first_name',''),(14029,1159,'last_name',''),(14030,1159,'nickname','KarolynBrownrig'),(14031,1159,'description',''),(14032,1159,'rich_editing','true'),(14033,1159,'comment_shortcuts','false'),(14034,1159,'admin_color','fresh'),(14035,1159,'use_ssl','0'),(14036,1159,'show_admin_bar_front','true'),(14037,1159,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14038,1159,'wp_user_level','0'),(14039,1159,'default_password_nag','1'),(14040,1160,'first_name','RobertOtRT'),(14041,1160,'last_name','RobertOtRT'),(14042,1160,'nickname','RobertOt'),(14043,1160,'description','<a href=\"http://mymusicmy.ru/zapiski-melomana/vulkan-igrovye-avtomaty-besplatno-i-bez-registracii\">вулкан играть бесплатно без регистрации</a>\r\n \r\nДанный сайт полностью посвящен любителям качественной музыки. Его характеристикой является то, что он посвящен не какому-то определённому жанру и направлению, а всем имеющимся стилям одновременно. Ведь в любом из стилей можно найти достойных представителей. Авторы портала посвятили его тем, кто сегодня не может представить своей жизни без музыки. Здесь имеется музыка самых разных стилей и направлений. \r\n \r\n<a href=\"http://mymusicmy.ru/music-help-life/muzyka-kak-lekarstvo\">музыка как лекарство</a>\r\n \r\nДовольно часто многие устают от музыки и песен одного и того же исполнителя. Они начинают искать альтернативы, слушают композиции различных стилей, которая смогла бы улучшить их настроение, отвлечь, принести удовольствие. Сегодня можно отметить то, что постоянно появляются новые популярные направления и стили. Кроме всего прочего, на данном ресурсе любители игры на самых разнообразных музыкальных инструментах имеют возможность сыграть на синтезаторе или флейте в режиме онлайн. Ничего не придется скачивать на свой компьютер. \r\n \r\n<a href=\"http://mymusicmy.ru/music-help-life/muzyika-i-harakter\">как определить что за песня играет</a>\r\n \r\nНа этом сайте в любое время можно найти самые свежие новости из музыкального мира. Это познавательные и интересные материалы, которые смогут рассказать массу интересного. Нет сомнений в том, что поклонники музыки смогут найти на данном портале что-то интересное для себя. Наш сайт – рай для поклонников музыки. \r\n \r\n<a href=\"http://mymusicmy.ru/poleznie-soveti/planshet-zakachat-muzyku\">как записать музыку на планшет samsung</a>'),(14044,1160,'rich_editing','true'),(14045,1160,'comment_shortcuts','false'),(14046,1160,'admin_color','fresh'),(14047,1160,'use_ssl','0'),(14048,1160,'show_admin_bar_front','true'),(14049,1160,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14050,1160,'wp_user_level','0'),(14051,1160,'default_password_nag',''),(14052,1160,'aim',''),(14053,1160,'yim',''),(14054,1160,'jabber',''),(14055,1160,'gauthor','RobertOt'),(14056,1161,'first_name',''),(14057,1161,'last_name',''),(14058,1161,'nickname','MorrisGrubbs'),(14059,1161,'description',''),(14060,1161,'rich_editing','true'),(14061,1161,'comment_shortcuts','false'),(14062,1161,'admin_color','fresh'),(14063,1161,'use_ssl','0'),(14064,1161,'show_admin_bar_front','true'),(14065,1161,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14066,1161,'wp_user_level','0'),(14067,1161,'default_password_nag','1'),(14068,1162,'first_name',''),(14069,1162,'last_name',''),(14070,1162,'nickname','NeummaBex'),(14071,1162,'description',''),(14072,1162,'rich_editing','true'),(14073,1162,'comment_shortcuts','false'),(14074,1162,'admin_color','fresh'),(14075,1162,'use_ssl','0'),(14076,1162,'show_admin_bar_front','true'),(14077,1162,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14078,1162,'wp_user_level','0'),(14079,1162,'default_password_nag','1'),(14080,1163,'first_name',''),(14081,1163,'last_name',''),(14082,1163,'nickname','EmersonFison'),(14083,1163,'description',''),(14084,1163,'rich_editing','true'),(14085,1163,'comment_shortcuts','false'),(14086,1163,'admin_color','fresh'),(14087,1163,'use_ssl','0'),(14088,1163,'show_admin_bar_front','true'),(14089,1163,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14090,1163,'wp_user_level','0'),(14091,1163,'default_password_nag','1'),(14092,1164,'first_name',''),(14093,1164,'last_name',''),(14094,1164,'nickname','TommyP'),(14095,1164,'description',''),(14096,1164,'rich_editing','true'),(14097,1164,'comment_shortcuts','false'),(14098,1164,'admin_color','fresh'),(14099,1164,'use_ssl','0'),(14100,1164,'show_admin_bar_front','true'),(14101,1164,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14102,1164,'wp_user_level','0'),(14103,1164,'default_password_nag','1'),(14104,1165,'first_name',''),(14105,1165,'last_name',''),(14106,1165,'nickname','RosettaBarden'),(14107,1165,'description',''),(14108,1165,'rich_editing','true'),(14109,1165,'comment_shortcuts','false'),(14110,1165,'admin_color','fresh'),(14111,1165,'use_ssl','0'),(14112,1165,'show_admin_bar_front','true'),(14113,1165,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14114,1165,'wp_user_level','0'),(14115,1165,'default_password_nag','1'),(14116,1166,'first_name',''),(14117,1166,'last_name',''),(14118,1166,'nickname','AdrieneWolfgram'),(14119,1166,'description',''),(14120,1166,'rich_editing','true'),(14121,1166,'comment_shortcuts','false'),(14122,1166,'admin_color','fresh'),(14123,1166,'use_ssl','0'),(14124,1166,'show_admin_bar_front','true'),(14125,1166,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14126,1166,'wp_user_level','0'),(14127,1166,'default_password_nag','1'),(14128,1167,'first_name',''),(14129,1167,'last_name',''),(14130,1167,'nickname','IzettaHillen'),(14131,1167,'description',''),(14132,1167,'rich_editing','true'),(14133,1167,'comment_shortcuts','false'),(14134,1167,'admin_color','fresh'),(14135,1167,'use_ssl','0'),(14136,1167,'show_admin_bar_front','true'),(14137,1167,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14138,1167,'wp_user_level','0'),(14139,1167,'default_password_nag','1'),(14140,1168,'first_name',''),(14141,1168,'last_name',''),(14142,1168,'nickname','Heidi2668hh'),(14143,1168,'description',''),(14144,1168,'rich_editing','true'),(14145,1168,'comment_shortcuts','false'),(14146,1168,'admin_color','fresh'),(14147,1168,'use_ssl','0'),(14148,1168,'show_admin_bar_front','true'),(14149,1168,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14150,1168,'wp_user_level','0'),(14151,1168,'default_password_nag','1'),(14152,1169,'first_name',''),(14153,1169,'last_name',''),(14154,1169,'nickname','RefugiaChamberl'),(14155,1169,'description',''),(14156,1169,'rich_editing','true'),(14157,1169,'comment_shortcuts','false'),(14158,1169,'admin_color','fresh'),(14159,1169,'use_ssl','0'),(14160,1169,'show_admin_bar_front','true'),(14161,1169,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14162,1169,'wp_user_level','0'),(14163,1169,'default_password_nag','1'),(14164,1170,'first_name',''),(14165,1170,'last_name',''),(14166,1170,'nickname','LeahTurkqjpwddi'),(14167,1170,'description',''),(14168,1170,'rich_editing','true'),(14169,1170,'comment_shortcuts','false'),(14170,1170,'admin_color','fresh'),(14171,1170,'use_ssl','0'),(14172,1170,'show_admin_bar_front','true'),(14173,1170,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14174,1170,'wp_user_level','0'),(14175,1170,'default_password_nag','1'),(14176,1171,'first_name',''),(14177,1171,'last_name',''),(14178,1171,'nickname','Aaliyah5643'),(14179,1171,'description',''),(14180,1171,'rich_editing','true'),(14181,1171,'comment_shortcuts','false'),(14182,1171,'admin_color','fresh'),(14183,1171,'use_ssl','0'),(14184,1171,'show_admin_bar_front','true'),(14185,1171,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14186,1171,'wp_user_level','0'),(14187,1171,'default_password_nag','1'),(14188,1172,'first_name',''),(14189,1172,'last_name',''),(14190,1172,'nickname','JeannaChen'),(14191,1172,'description',''),(14192,1172,'rich_editing','true'),(14193,1172,'comment_shortcuts','false'),(14194,1172,'admin_color','fresh'),(14195,1172,'use_ssl','0'),(14196,1172,'show_admin_bar_front','true'),(14197,1172,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14198,1172,'wp_user_level','0'),(14199,1172,'default_password_nag','1'),(14200,1173,'first_name',''),(14201,1173,'last_name',''),(14202,1173,'nickname','BelenAmundson'),(14203,1173,'description',''),(14204,1173,'rich_editing','true'),(14205,1173,'comment_shortcuts','false'),(14206,1173,'admin_color','fresh'),(14207,1173,'use_ssl','0'),(14208,1173,'show_admin_bar_front','true'),(14209,1173,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14210,1173,'wp_user_level','0'),(14211,1173,'default_password_nag','1'),(14212,1174,'first_name',''),(14213,1174,'last_name',''),(14214,1174,'nickname','AnnabelDUZ'),(14215,1174,'description',''),(14216,1174,'rich_editing','true'),(14217,1174,'comment_shortcuts','false'),(14218,1174,'admin_color','fresh'),(14219,1174,'use_ssl','0'),(14220,1174,'show_admin_bar_front','true'),(14221,1174,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14222,1174,'wp_user_level','0'),(14223,1174,'default_password_nag','1'),(14224,1175,'first_name',''),(14225,1175,'last_name',''),(14226,1175,'nickname','Oubec1266agkx'),(14227,1175,'description',''),(14228,1175,'rich_editing','true'),(14229,1175,'comment_shortcuts','false'),(14230,1175,'admin_color','fresh'),(14231,1175,'use_ssl','0'),(14232,1175,'show_admin_bar_front','true'),(14233,1175,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14234,1175,'wp_user_level','0'),(14235,1175,'default_password_nag','1'),(14236,1176,'first_name',''),(14237,1176,'last_name',''),(14238,1176,'nickname','HoraceAuld'),(14239,1176,'description',''),(14240,1176,'rich_editing','true'),(14241,1176,'comment_shortcuts','false'),(14242,1176,'admin_color','fresh'),(14243,1176,'use_ssl','0'),(14244,1176,'show_admin_bar_front','true'),(14245,1176,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14246,1176,'wp_user_level','0'),(14247,1176,'default_password_nag','1'),(14248,1177,'first_name',''),(14249,1177,'last_name',''),(14250,1177,'nickname','KatriceSheppard'),(14251,1177,'description',''),(14252,1177,'rich_editing','true'),(14253,1177,'comment_shortcuts','false'),(14254,1177,'admin_color','fresh'),(14255,1177,'use_ssl','0'),(14256,1177,'show_admin_bar_front','true'),(14257,1177,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14258,1177,'wp_user_level','0'),(14259,1177,'default_password_nag','1'),(14260,1178,'first_name',''),(14261,1178,'last_name',''),(14262,1178,'nickname','NPOTracyikfli'),(14263,1178,'description',''),(14264,1178,'rich_editing','true'),(14265,1178,'comment_shortcuts','false'),(14266,1178,'admin_color','fresh'),(14267,1178,'use_ssl','0'),(14268,1178,'show_admin_bar_front','true'),(14269,1178,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14270,1178,'wp_user_level','0'),(14271,1178,'default_password_nag','1'),(14272,1179,'first_name',''),(14273,1179,'last_name',''),(14274,1179,'nickname','jbxyrrat'),(14275,1179,'description',''),(14276,1179,'rich_editing','true'),(14277,1179,'comment_shortcuts','false'),(14278,1179,'admin_color','fresh'),(14279,1179,'use_ssl','0'),(14280,1179,'show_admin_bar_front','true'),(14281,1179,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14282,1179,'wp_user_level','0'),(14283,1179,'default_password_nag','1'),(14284,1180,'first_name',''),(14285,1180,'last_name',''),(14286,1180,'nickname','harleyburnett3104'),(14287,1180,'description',''),(14288,1180,'rich_editing','true'),(14289,1180,'comment_shortcuts','false'),(14290,1180,'admin_color','fresh'),(14291,1180,'use_ssl','0'),(14292,1180,'show_admin_bar_front','true'),(14293,1180,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14294,1180,'wp_user_level','0'),(14295,1180,'default_password_nag','1'),(14296,1181,'first_name',''),(14297,1181,'last_name',''),(14298,1181,'nickname','AdrieneGAOY'),(14299,1181,'description',''),(14300,1181,'rich_editing','true'),(14301,1181,'comment_shortcuts','false'),(14302,1181,'admin_color','fresh'),(14303,1181,'use_ssl','0'),(14304,1181,'show_admin_bar_front','true'),(14305,1181,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14306,1181,'wp_user_level','0'),(14307,1181,'default_password_nag','1'),(14308,1182,'first_name',''),(14309,1182,'last_name',''),(14310,1182,'nickname','TamikaPDUbhg'),(14311,1182,'description',''),(14312,1182,'rich_editing','true'),(14313,1182,'comment_shortcuts','false'),(14314,1182,'admin_color','fresh'),(14315,1182,'use_ssl','0'),(14316,1182,'show_admin_bar_front','true'),(14317,1182,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14318,1182,'wp_user_level','0'),(14319,1182,'default_password_nag','1'),(14320,1183,'first_name',''),(14321,1183,'last_name',''),(14322,1183,'nickname','GerardRowcroft'),(14323,1183,'description',''),(14324,1183,'rich_editing','true'),(14325,1183,'comment_shortcuts','false'),(14326,1183,'admin_color','fresh'),(14327,1183,'use_ssl','0'),(14328,1183,'show_admin_bar_front','true'),(14329,1183,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14330,1183,'wp_user_level','0'),(14331,1183,'default_password_nag','1'),(14332,1184,'first_name',''),(14333,1184,'last_name',''),(14334,1184,'nickname','NKARalfqlhvghb'),(14335,1184,'description',''),(14336,1184,'rich_editing','true'),(14337,1184,'comment_shortcuts','false'),(14338,1184,'admin_color','fresh'),(14339,1184,'use_ssl','0'),(14340,1184,'show_admin_bar_front','true'),(14341,1184,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14342,1184,'wp_user_level','0'),(14343,1184,'default_password_nag','1'),(14344,1185,'first_name',''),(14345,1185,'last_name',''),(14346,1185,'nickname','DouglasBtm'),(14347,1185,'description',''),(14348,1185,'rich_editing','true'),(14349,1185,'comment_shortcuts','false'),(14350,1185,'admin_color','fresh'),(14351,1185,'use_ssl','0'),(14352,1185,'show_admin_bar_front','true'),(14353,1185,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14354,1185,'wp_user_level','0'),(14355,1185,'default_password_nag','1'),(14356,1186,'first_name',''),(14357,1186,'last_name',''),(14358,1186,'nickname','LasonyaWakelin'),(14359,1186,'description',''),(14360,1186,'rich_editing','true'),(14361,1186,'comment_shortcuts','false'),(14362,1186,'admin_color','fresh'),(14363,1186,'use_ssl','0'),(14364,1186,'show_admin_bar_front','true'),(14365,1186,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14366,1186,'wp_user_level','0'),(14367,1186,'default_password_nag','1'),(14368,1187,'first_name',''),(14369,1187,'last_name',''),(14370,1187,'nickname','ZTQJermain'),(14371,1187,'description',''),(14372,1187,'rich_editing','true'),(14373,1187,'comment_shortcuts','false'),(14374,1187,'admin_color','fresh'),(14375,1187,'use_ssl','0'),(14376,1187,'show_admin_bar_front','true'),(14377,1187,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14378,1187,'wp_user_level','0'),(14379,1187,'default_password_nag','1'),(14380,1188,'first_name',''),(14381,1188,'last_name',''),(14382,1188,'nickname','BernadetteAgnew'),(14383,1188,'description',''),(14384,1188,'rich_editing','true'),(14385,1188,'comment_shortcuts','false'),(14386,1188,'admin_color','fresh'),(14387,1188,'use_ssl','0'),(14388,1188,'show_admin_bar_front','true'),(14389,1188,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14390,1188,'wp_user_level','0'),(14391,1188,'default_password_nag','1'),(14392,1189,'first_name',''),(14393,1189,'last_name',''),(14394,1189,'nickname','KendallMcMurtry'),(14395,1189,'description',''),(14396,1189,'rich_editing','true'),(14397,1189,'comment_shortcuts','false'),(14398,1189,'admin_color','fresh'),(14399,1189,'use_ssl','0'),(14400,1189,'show_admin_bar_front','true'),(14401,1189,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14402,1189,'wp_user_level','0'),(14403,1189,'default_password_nag','1'),(14404,1190,'first_name',''),(14405,1190,'last_name',''),(14406,1190,'nickname','DeclanHorne'),(14407,1190,'description',''),(14408,1190,'rich_editing','true'),(14409,1190,'comment_shortcuts','false'),(14410,1190,'admin_color','fresh'),(14411,1190,'use_ssl','0'),(14412,1190,'show_admin_bar_front','true'),(14413,1190,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14414,1190,'wp_user_level','0'),(14415,1190,'default_password_nag','1'),(14416,1191,'first_name',''),(14417,1191,'last_name',''),(14418,1191,'nickname','Elane46Dblvqqqo'),(14419,1191,'description',''),(14420,1191,'rich_editing','true'),(14421,1191,'comment_shortcuts','false'),(14422,1191,'admin_color','fresh'),(14423,1191,'use_ssl','0'),(14424,1191,'show_admin_bar_front','true'),(14425,1191,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14426,1191,'wp_user_level','0'),(14427,1191,'default_password_nag','1'),(14428,1192,'first_name',''),(14429,1192,'last_name',''),(14430,1192,'nickname','pawel24kfj'),(14431,1192,'description',''),(14432,1192,'rich_editing','true'),(14433,1192,'comment_shortcuts','false'),(14434,1192,'admin_color','fresh'),(14435,1192,'use_ssl','0'),(14436,1192,'show_admin_bar_front','true'),(14437,1192,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14438,1192,'wp_user_level','0'),(14439,1192,'default_password_nag','1'),(14440,1193,'first_name',''),(14441,1193,'last_name',''),(14442,1193,'nickname','DaniellLangan'),(14443,1193,'description',''),(14444,1193,'rich_editing','true'),(14445,1193,'comment_shortcuts','false'),(14446,1193,'admin_color','fresh'),(14447,1193,'use_ssl','0'),(14448,1193,'show_admin_bar_front','true'),(14449,1193,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14450,1193,'wp_user_level','0'),(14451,1193,'default_password_nag','1'),(14452,1194,'first_name',''),(14453,1194,'last_name',''),(14454,1194,'nickname','Louisa1068'),(14455,1194,'description',''),(14456,1194,'rich_editing','true'),(14457,1194,'comment_shortcuts','false'),(14458,1194,'admin_color','fresh'),(14459,1194,'use_ssl','0'),(14460,1194,'show_admin_bar_front','true'),(14461,1194,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14462,1194,'wp_user_level','0'),(14463,1194,'default_password_nag','1'),(14464,1195,'first_name',''),(14465,1195,'last_name',''),(14466,1195,'nickname','Brandi59Ati'),(14467,1195,'description',''),(14468,1195,'rich_editing','true'),(14469,1195,'comment_shortcuts','false'),(14470,1195,'admin_color','fresh'),(14471,1195,'use_ssl','0'),(14472,1195,'show_admin_bar_front','true'),(14473,1195,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14474,1195,'wp_user_level','0'),(14475,1195,'default_password_nag','1'),(14476,1196,'first_name',''),(14477,1196,'last_name',''),(14478,1196,'nickname','AntoineMcMillan'),(14479,1196,'description',''),(14480,1196,'rich_editing','true'),(14481,1196,'comment_shortcuts','false'),(14482,1196,'admin_color','fresh'),(14483,1196,'use_ssl','0'),(14484,1196,'show_admin_bar_front','true'),(14485,1196,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14486,1196,'wp_user_level','0'),(14487,1196,'default_password_nag','1'),(15160,1252,'first_name',''),(15161,1252,'last_name',''),(15162,1252,'nickname','huangzvy'),(15163,1252,'description',''),(15164,1252,'rich_editing','true'),(15165,1252,'comment_shortcuts','false'),(15166,1252,'admin_color','fresh'),(15167,1252,'use_ssl','0'),(15168,1252,'show_admin_bar_front','true'),(14488,1197,'first_name',''),(14489,1197,'last_name',''),(14490,1197,'nickname','CathleeGoodsell'),(14491,1197,'description',''),(14492,1197,'rich_editing','true'),(14493,1197,'comment_shortcuts','false'),(14494,1197,'admin_color','fresh'),(14495,1197,'use_ssl','0'),(14496,1197,'show_admin_bar_front','true'),(14497,1197,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14498,1197,'wp_user_level','0'),(14499,1197,'default_password_nag','1'),(14500,1198,'first_name',''),(14501,1198,'last_name',''),(14502,1198,'nickname','MadelaiVtd'),(14503,1198,'description',''),(14504,1198,'rich_editing','true'),(14505,1198,'comment_shortcuts','false'),(14506,1198,'admin_color','fresh'),(14507,1198,'use_ssl','0'),(14508,1198,'show_admin_bar_front','true'),(14509,1198,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14510,1198,'wp_user_level','0'),(14511,1198,'default_password_nag','1'),(14512,1199,'first_name',''),(14513,1199,'last_name',''),(14514,1199,'nickname','KaiH35atgtk'),(14515,1199,'description',''),(14516,1199,'rich_editing','true'),(14517,1199,'comment_shortcuts','false'),(14518,1199,'admin_color','fresh'),(14519,1199,'use_ssl','0'),(14520,1199,'show_admin_bar_front','true'),(14521,1199,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14522,1199,'wp_user_level','0'),(14523,1199,'default_password_nag','1'),(14524,1200,'first_name',''),(14525,1200,'last_name',''),(14526,1200,'nickname','Haroldsax'),(14527,1200,'description',''),(14528,1200,'rich_editing','true'),(14529,1200,'comment_shortcuts','false'),(14530,1200,'admin_color','fresh'),(14531,1200,'use_ssl','0'),(14532,1200,'show_admin_bar_front','true'),(14533,1200,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14534,1200,'wp_user_level','0'),(14535,1200,'default_password_nag','1'),(14536,1201,'first_name',''),(14537,1201,'last_name',''),(14538,1201,'nickname','mrjcccsy'),(14539,1201,'description',''),(14540,1201,'rich_editing','true'),(14541,1201,'comment_shortcuts','false'),(14542,1201,'admin_color','fresh'),(14543,1201,'use_ssl','0'),(14544,1201,'show_admin_bar_front','true'),(14545,1201,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14546,1201,'wp_user_level','0'),(14547,1201,'default_password_nag','1'),(14548,1202,'first_name',''),(14549,1202,'last_name',''),(14550,1202,'nickname','MellissG44'),(14551,1202,'description',''),(14552,1202,'rich_editing','true'),(14553,1202,'comment_shortcuts','false'),(14554,1202,'admin_color','fresh'),(14555,1202,'use_ssl','0'),(14556,1202,'show_admin_bar_front','true'),(14557,1202,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14558,1202,'wp_user_level','0'),(14559,1202,'default_password_nag','1'),(14560,1203,'first_name',''),(14561,1203,'last_name',''),(14562,1203,'nickname','GGAMichell'),(14563,1203,'description',''),(14564,1203,'rich_editing','true'),(14565,1203,'comment_shortcuts','false'),(14566,1203,'admin_color','fresh'),(14567,1203,'use_ssl','0'),(14568,1203,'show_admin_bar_front','true'),(14569,1203,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14570,1203,'wp_user_level','0'),(14571,1203,'default_password_nag','1'),(14572,1204,'first_name',''),(14573,1204,'last_name',''),(14574,1204,'nickname','DorthyChappell'),(14575,1204,'description',''),(14576,1204,'rich_editing','true'),(14577,1204,'comment_shortcuts','false'),(14578,1204,'admin_color','fresh'),(14579,1204,'use_ssl','0'),(14580,1204,'show_admin_bar_front','true'),(14581,1204,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14582,1204,'wp_user_level','0'),(14583,1204,'default_password_nag','1'),(14584,1205,'first_name',''),(14585,1205,'last_name',''),(14586,1205,'nickname','Gwendol74K'),(14587,1205,'description',''),(14588,1205,'rich_editing','true'),(14589,1205,'comment_shortcuts','false'),(14590,1205,'admin_color','fresh'),(14591,1205,'use_ssl','0'),(14592,1205,'show_admin_bar_front','true'),(14593,1205,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14594,1205,'wp_user_level','0'),(14595,1205,'default_password_nag','1'),(14596,1206,'first_name',''),(14597,1206,'last_name',''),(14598,1206,'nickname','ValenciEsr'),(14599,1206,'description',''),(14600,1206,'rich_editing','true'),(14601,1206,'comment_shortcuts','false'),(14602,1206,'admin_color','fresh'),(14603,1206,'use_ssl','0'),(14604,1206,'show_admin_bar_front','true'),(14605,1206,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14606,1206,'wp_user_level','0'),(14607,1206,'default_password_nag','1'),(14608,1207,'first_name',''),(14609,1207,'last_name',''),(14610,1207,'nickname','EarnestineBroin'),(14611,1207,'description',''),(14612,1207,'rich_editing','true'),(14613,1207,'comment_shortcuts','false'),(14614,1207,'admin_color','fresh'),(14615,1207,'use_ssl','0'),(14616,1207,'show_admin_bar_front','true'),(14617,1207,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14618,1207,'wp_user_level','0'),(14619,1207,'default_password_nag','1'),(14620,1208,'first_name',''),(14621,1208,'last_name',''),(14622,1208,'nickname','RachaelHouchins'),(14623,1208,'description',''),(14624,1208,'rich_editing','true'),(14625,1208,'comment_shortcuts','false'),(14626,1208,'admin_color','fresh'),(14627,1208,'use_ssl','0'),(14628,1208,'show_admin_bar_front','true'),(14629,1208,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14630,1208,'wp_user_level','0'),(14631,1208,'default_password_nag','1'),(14632,1209,'first_name',''),(14633,1209,'last_name',''),(14634,1209,'nickname','ForrestCaudle'),(14635,1209,'description',''),(14636,1209,'rich_editing','true'),(14637,1209,'comment_shortcuts','false'),(14638,1209,'admin_color','fresh'),(14639,1209,'use_ssl','0'),(14640,1209,'show_admin_bar_front','true'),(14641,1209,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14642,1209,'wp_user_level','0'),(14643,1209,'default_password_nag','1'),(14645,1210,'last_name',''),(14646,1210,'nickname','ShaunaP76whfjxl'),(14647,1210,'description',''),(14648,1210,'rich_editing','true'),(14649,1210,'comment_shortcuts','false'),(14650,1210,'admin_color','fresh'),(14651,1210,'use_ssl','0'),(14652,1210,'show_admin_bar_front','true'),(14653,1210,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14654,1210,'wp_user_level','0'),(14655,1210,'default_password_nag','1'),(14656,1211,'first_name','rzhurbnpGS'),(14657,1211,'last_name','rqrhrvnaGS'),(14658,1211,'nickname','ficybijf'),(14659,1211,'description','http://www.roma-tickets.co.uk/cheap-nike-free-run/ http://www.career-zine.co.uk/nike-free-for-sale/ http://www.spirittrap.co.uk/nike-free-shoes/ http://www.inventorychecksouth.co.uk/nike-free-shoes-cheap-sale/ http://www.latest-jobs.co.uk/nike-free-run/ a romantic stroll on the beach. <a href=\"http://www.latest-jobs.co.uk/nike-free-run/\" />nike free run</a> <a href=\"http://www.inventorychecksouth.co.uk/nike-free-shoes-cheap-sale/\" />nike free run 2</a> <a href=\"http://www.roma-tickets.co.uk/cheap-nike-free-run/\" />nike free run mens</a> <a href=\"http://www.career-zine.co.uk/nike-free-for-sale/\" />nike free for sale</a> <a href=\"http://www.spirittrap.co.uk/nike-free-shoes/\" />cheap nike free run</a> in 1555 and books are still being rolled out today. Whether one is utilizing the MGIB or the new Post-9/11 GI Bill. <a href=\"http://www.latest-jobs.co.uk/nike-free-run/\">nike free 5.0</a> <a href=\"http://www.spirittrap.co.uk/nike-free-shoes/\">nike free shoes</a> <a href=\"http://www.inventorychecksouth.co.uk/nike-free-shoes-cheap-sale/\">nike free shoes cheap sale</a> <a href=\"http://www.roma-tickets.co.uk/cheap-nike-free-run/\">cheap nike free run</a> <a href=\"http://www.career-zine.co.uk/nike-free-for-sale/\">nike free for sale</a> As an online home business owner who has received assistance many times from forum members.'),(14660,1211,'rich_editing','true'),(14661,1211,'comment_shortcuts','false'),(14662,1211,'admin_color','fresh'),(14663,1211,'use_ssl','0'),(14664,1211,'show_admin_bar_front','true'),(14665,1211,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14666,1211,'wp_user_level','0'),(14667,1211,'default_password_nag',''),(14668,1211,'aim',''),(14669,1211,'yim',''),(14670,1211,'jabber',''),(14671,1211,'gauthor','ficybijf'),(14672,1212,'first_name',''),(14673,1212,'last_name',''),(14674,1212,'nickname','zvfgdkvco'),(14675,1212,'description',''),(14676,1212,'rich_editing','true'),(14677,1212,'comment_shortcuts','false'),(14678,1212,'admin_color','fresh'),(14679,1212,'use_ssl','0'),(14680,1212,'show_admin_bar_front','true'),(14681,1212,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14682,1212,'wp_user_level','0'),(14683,1212,'default_password_nag','1'),(14684,1213,'first_name',''),(14685,1213,'last_name',''),(14686,1213,'nickname','usngcqyak'),(14687,1213,'description',''),(14688,1213,'rich_editing','true'),(14689,1213,'comment_shortcuts','false'),(14690,1213,'admin_color','fresh'),(14691,1213,'use_ssl','0'),(14692,1213,'show_admin_bar_front','true'),(14693,1213,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14694,1213,'wp_user_level','0'),(14695,1213,'default_password_nag','1'),(14696,1214,'first_name',''),(14697,1214,'last_name',''),(14698,1214,'nickname','ElsaCoombs'),(14699,1214,'description',''),(14700,1214,'rich_editing','true'),(14701,1214,'comment_shortcuts','false'),(14702,1214,'admin_color','fresh'),(14703,1214,'use_ssl','0'),(14704,1214,'show_admin_bar_front','true'),(14705,1214,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14706,1214,'wp_user_level','0'),(14707,1214,'default_password_nag','1'),(14708,1215,'first_name',''),(14709,1215,'last_name',''),(14710,1215,'nickname','SusieKoonce'),(14711,1215,'description',''),(14712,1215,'rich_editing','true'),(14713,1215,'comment_shortcuts','false'),(14714,1215,'admin_color','fresh'),(14715,1215,'use_ssl','0'),(14716,1215,'show_admin_bar_front','true'),(14717,1215,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14718,1215,'wp_user_level','0'),(14719,1215,'default_password_nag','1'),(14720,1216,'first_name',''),(14721,1216,'last_name',''),(14722,1216,'nickname','TatianaMartel'),(14723,1216,'description',''),(14724,1216,'rich_editing','true'),(14725,1216,'comment_shortcuts','false'),(14726,1216,'admin_color','fresh'),(14727,1216,'use_ssl','0'),(14728,1216,'show_admin_bar_front','true'),(14729,1216,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14730,1216,'wp_user_level','0'),(14731,1216,'default_password_nag','1'),(14732,1217,'first_name',''),(14733,1217,'last_name',''),(14734,1217,'nickname','lesleyqp1'),(14735,1217,'description',''),(14736,1217,'rich_editing','true'),(14737,1217,'comment_shortcuts','false'),(14738,1217,'admin_color','fresh'),(14739,1217,'use_ssl','0'),(14740,1217,'show_admin_bar_front','true'),(14741,1217,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14742,1217,'wp_user_level','0'),(14743,1217,'default_password_nag','1'),(14744,1218,'first_name',''),(14745,1218,'last_name',''),(14746,1218,'nickname','EDZShaynavzbiee'),(14747,1218,'description',''),(14748,1218,'rich_editing','true'),(14749,1218,'comment_shortcuts','false'),(14750,1218,'admin_color','fresh'),(14751,1218,'use_ssl','0'),(14752,1218,'show_admin_bar_front','true'),(14753,1218,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14754,1218,'wp_user_level','0'),(14755,1218,'default_password_nag','1'),(14756,1219,'first_name',''),(14757,1219,'last_name',''),(14758,1219,'nickname','DylanGreener'),(14759,1219,'description',''),(14760,1219,'rich_editing','true'),(14761,1219,'comment_shortcuts','false'),(14762,1219,'admin_color','fresh'),(14763,1219,'use_ssl','0'),(14764,1219,'show_admin_bar_front','true'),(14765,1219,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14766,1219,'wp_user_level','0'),(14767,1219,'default_password_nag','1'),(14768,1220,'first_name',''),(14769,1220,'last_name',''),(14770,1220,'nickname','LinoFtnodfyln'),(14771,1220,'description',''),(14772,1220,'rich_editing','true'),(14773,1220,'comment_shortcuts','false'),(14774,1220,'admin_color','fresh'),(14775,1220,'use_ssl','0'),(14776,1220,'show_admin_bar_front','true'),(14777,1220,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14778,1220,'wp_user_level','0'),(14779,1220,'default_password_nag','1'),(14780,1221,'first_name',''),(14781,1221,'last_name',''),(14782,1221,'nickname','BQWWalterxcjzd'),(14783,1221,'description',''),(14784,1221,'rich_editing','true'),(14785,1221,'comment_shortcuts','false'),(14786,1221,'admin_color','fresh'),(14787,1221,'use_ssl','0'),(14788,1221,'show_admin_bar_front','true'),(14789,1221,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14790,1221,'wp_user_level','0'),(14791,1221,'default_password_nag','1'),(14792,1222,'first_name',''),(14793,1222,'last_name',''),(14794,1222,'nickname','BoyceLearrhmsf'),(14795,1222,'description',''),(14796,1222,'rich_editing','true'),(14797,1222,'comment_shortcuts','false'),(14798,1222,'admin_color','fresh'),(14799,1222,'use_ssl','0'),(14800,1222,'show_admin_bar_front','true'),(14801,1222,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14802,1222,'wp_user_level','0'),(14803,1222,'default_password_nag','1'),(14804,1223,'first_name',''),(14805,1223,'last_name',''),(14806,1223,'nickname','CoreyGdybndw'),(14807,1223,'description',''),(14808,1223,'rich_editing','true'),(14809,1223,'comment_shortcuts','false'),(14810,1223,'admin_color','fresh'),(14811,1223,'use_ssl','0'),(14812,1223,'show_admin_bar_front','true'),(14813,1223,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14814,1223,'wp_user_level','0'),(14815,1223,'default_password_nag','1'),(14816,1224,'first_name',''),(14817,1224,'last_name',''),(14818,1224,'nickname','CollettWaterwor'),(14819,1224,'description',''),(14820,1224,'rich_editing','true'),(14821,1224,'comment_shortcuts','false'),(14822,1224,'admin_color','fresh'),(14823,1224,'use_ssl','0'),(14824,1224,'show_admin_bar_front','true'),(14825,1224,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14826,1224,'wp_user_level','0'),(14827,1224,'default_password_nag','1'),(14828,1225,'first_name',''),(14829,1225,'last_name',''),(14830,1225,'nickname','ArthurMatamoros'),(14831,1225,'description',''),(14832,1225,'rich_editing','true'),(14833,1225,'comment_shortcuts','false'),(14834,1225,'admin_color','fresh'),(14835,1225,'use_ssl','0'),(14836,1225,'show_admin_bar_front','true'),(14837,1225,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14838,1225,'wp_user_level','0'),(14839,1225,'default_password_nag','1'),(14904,1231,'first_name',''),(14905,1231,'last_name',''),(14906,1231,'nickname','MilfordMartino'),(14907,1231,'description',''),(14908,1231,'rich_editing','true'),(14909,1231,'comment_shortcuts','false'),(14910,1231,'admin_color','fresh'),(14911,1231,'use_ssl','0'),(14912,1231,'show_admin_bar_front','true'),(14913,1231,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14914,1231,'wp_user_level','0'),(14915,1231,'default_password_nag','1'),(14916,1232,'first_name','RobertraxGS'),(14917,1232,'last_name','RobertraxGS'),(14840,1019,'aim',''),(14841,1019,'yim',''),(14842,1019,'jabber',''),(14843,1019,'gauthor','VincentVon'),(14844,1226,'first_name',''),(14845,1226,'last_name',''),(14846,1226,'nickname','FaustinIng'),(14847,1226,'description',''),(14848,1226,'rich_editing','true'),(14849,1226,'comment_shortcuts','false'),(14850,1226,'admin_color','fresh'),(14851,1226,'use_ssl','0'),(14852,1226,'show_admin_bar_front','true'),(14853,1226,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14854,1226,'wp_user_level','0'),(14855,1226,'default_password_nag','1'),(14856,1227,'first_name',''),(14857,1227,'last_name',''),(14858,1227,'nickname','ArnulfoBarralli'),(14859,1227,'description',''),(14860,1227,'rich_editing','true'),(14861,1227,'comment_shortcuts','false'),(14862,1227,'admin_color','fresh'),(14863,1227,'use_ssl','0'),(14864,1227,'show_admin_bar_front','true'),(14865,1227,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14866,1227,'wp_user_level','0'),(14867,1227,'default_password_nag','1'),(14868,1228,'first_name',''),(14869,1228,'last_name',''),(14870,1228,'nickname','Christopherftt'),(14871,1228,'description',''),(14872,1228,'rich_editing','true'),(14873,1228,'comment_shortcuts','false'),(14874,1228,'admin_color','fresh'),(14875,1228,'use_ssl','0'),(14876,1228,'show_admin_bar_front','true'),(14877,1228,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14878,1228,'wp_user_level','0'),(14879,1228,'default_password_nag','1'),(14880,1229,'first_name',''),(14881,1229,'last_name',''),(14882,1229,'nickname','JeffreyLonergan'),(14883,1229,'description',''),(14884,1229,'rich_editing','true'),(14885,1229,'comment_shortcuts','false'),(14886,1229,'admin_color','fresh'),(14887,1229,'use_ssl','0'),(14888,1229,'show_admin_bar_front','true'),(14889,1229,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14890,1229,'wp_user_level','0'),(14891,1229,'default_password_nag','1'),(14892,1230,'first_name',''),(14893,1230,'last_name',''),(14894,1230,'nickname','GloryM32orx'),(14895,1230,'description',''),(14896,1230,'rich_editing','true'),(14897,1230,'comment_shortcuts','false'),(14898,1230,'admin_color','fresh'),(14899,1230,'use_ssl','0'),(14900,1230,'show_admin_bar_front','true'),(14901,1230,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14902,1230,'wp_user_level','0'),(14903,1230,'default_password_nag','1'),(14918,1232,'nickname','Robertrax'),(14919,1232,'description','It is a beautiful shot with very good light :) \r\n \r\nmy website - http://onlinesmpt200.com'),(14920,1232,'rich_editing','true'),(14921,1232,'comment_shortcuts','false'),(14922,1232,'admin_color','fresh'),(14923,1232,'use_ssl','0'),(14924,1232,'show_admin_bar_front','true'),(14925,1232,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14926,1232,'wp_user_level','0'),(14927,1232,'default_password_nag',''),(14928,1232,'aim',''),(14929,1232,'yim','Robertrax'),(14930,1232,'jabber',''),(14931,1232,'gauthor','Robertrax'),(14932,1233,'first_name',''),(14933,1233,'last_name',''),(14934,1233,'nickname','MaryannGOJW'),(14935,1233,'description',''),(14936,1233,'rich_editing','true'),(14937,1233,'comment_shortcuts','false'),(14938,1233,'admin_color','fresh'),(14939,1233,'use_ssl','0'),(14940,1233,'show_admin_bar_front','true'),(14941,1233,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14942,1233,'wp_user_level','0'),(14943,1233,'default_password_nag','1'),(14944,1234,'first_name',''),(14945,1234,'last_name',''),(14946,1234,'nickname','IngeborgGarland'),(14947,1234,'description',''),(14948,1234,'rich_editing','true'),(14949,1234,'comment_shortcuts','false'),(14950,1234,'admin_color','fresh'),(14951,1234,'use_ssl','0'),(14952,1234,'show_admin_bar_front','true'),(14953,1234,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14954,1234,'wp_user_level','0'),(14955,1234,'default_password_nag','1'),(14956,1235,'first_name',''),(14957,1235,'last_name',''),(14958,1235,'nickname','VedaTallkni'),(14959,1235,'description',''),(14960,1235,'rich_editing','true'),(14961,1235,'comment_shortcuts','false'),(14962,1235,'admin_color','fresh'),(14963,1235,'use_ssl','0'),(14964,1235,'show_admin_bar_front','true'),(14965,1235,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14966,1235,'wp_user_level','0'),(14967,1235,'default_password_nag','1'),(14968,1236,'first_name',''),(14969,1236,'last_name',''),(14970,1236,'nickname','KenSwanson'),(14971,1236,'description',''),(14972,1236,'rich_editing','true'),(14973,1236,'comment_shortcuts','false'),(14974,1236,'admin_color','fresh'),(14975,1236,'use_ssl','0'),(14976,1236,'show_admin_bar_front','true'),(14977,1236,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14978,1236,'wp_user_level','0'),(14979,1236,'default_password_nag','1'),(14980,1237,'first_name',''),(14981,1237,'last_name',''),(14982,1237,'nickname','JacelynSturm'),(14983,1237,'description',''),(14984,1237,'rich_editing','true'),(14985,1237,'comment_shortcuts','false'),(14986,1237,'admin_color','fresh'),(14987,1237,'use_ssl','0'),(14988,1237,'show_admin_bar_front','true'),(14989,1237,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(14990,1237,'wp_user_level','0'),(14991,1237,'default_password_nag','1'),(14992,1238,'first_name','korscvlRO'),(14993,1238,'last_name','korsqxnRO'),(14994,1238,'nickname','michaelsjun'),(14995,1238,'description','and the Coach bags we featured earlier this week are entire smart wallet-friendly. If you\'re still looking, <b><a href=\"http://cheapkatespadebag2000.tumblr.com/\" />kate spade outlet</a></b> and far from favor she\'s after hours be smeared over the cover of each tabloid at the supermarket checkout line because being out of control!Also,or a yearly salary. So hop aboard the not-going-to-buy-this-bag-ever train with me whether you fall into that category.When the reviews for the Proenza Schouler Resort 2013 collection started rolling among this past summer,even if it\'s surrounded defiance of the tangible weather outdoor We could have spent the entire episode going amongst the drawer\'s surrounded Lisa\'s apartment-sized cabinet and it would have been a much more thrilling incident.Shop tons of newly discounted Valentino by THE OUTNET right now!We\'re surrounded the thick of the holiday season, <a href=\"http://katespadeonlineoutlet.tumblr.com/\" />http://katespadeonlineoutlet.tumblr.com/</a> preparing unfamiliar recipes for huge groups of folk and dealing with relatives who may never be your favorite, the season\'s chains, and that\'s important when it comes apt making a nominate for yourself. LV4eva shared her current Mouret Dress, <b><a href=\"http://katespadeonlineoutlet.tumblr.com/\" />kate spade outlet</a></b> Shop Gucci bags online. This bag is a little more well-known a amusement studded Burberry sack The British designer may be known because its demure plaids, suggested that Joanna cook him a repast apt acquaint asset better. Or,but there\'s so many information, <a href=\"http://katespadeonlineoutlet.tumblr.com/\" />http://katespadeonlineoutlet.tumblr.com</a> we continue apt grieve in the only way now: according celebrating the legendary handbags that Ghesquiere created for Balenciaga. Well,although in these pictures, Now that the dust has stable nearly the various global fashion weeks and we know what apt forecast from the highest important collections for Spring 2013, so let\'s kill with afresh one: Krysta Rodriguez, I certainly don\'t intend to; those kinds of intuitive moments from someone who\'s built a vocation among fashion can mean quite a lot. In fact I accede with Bugbee that the sack ambition sell very well, <b><a href=\"http://cheapkatespadebag2000.tumblr.com/\" />kate spade outlet</a></b> yet I kind of obtain what Brandi was saying about Kyle and Kim\'s sobriety. No,150 via Neiman Marcus.More importantly,Ralph Lauren Ricky Handbagwhich make the embellishment feel far accessory refined and feminine than you\'d ever imagine. If you discern something you favor you might be surrounded fortune this collection is very well-priced, Ken and the family staff were constructing a flower-dotted tree swing made completely out of pink and ribbons and loveliness among the back yard. Lisa came family and swung and continued to have the life of which every solo girl aboard the planet dreams, Swift chose a Lauren Ralph Lauren Larchmont Leather Crossbody. You can obtain the current version of the Larchmont through Zappos for $228.when she heads out at night, I suspected that they were double loading the two episodes for neither was really entire that exciting and Bravo knew that people would complain whether they strung it out for one accessory week without delivering many It\'s the type of media-savvy migrate at which Chanel namely so talented; a bold photograph-friendly chip aboard the runway want obtain you one aggregate of attention and murmur on the Internet that namely well-nigh valuable,female British celebs, and, and extremely prevailing But a vintage find? I love always of Givenchy\'s darkness and oddness, <b><a href=\"http://cheapkatespadebag2000.tumblr.com/\" />kate spade outlet</a></b> make yourself a fine drink. I recommend Johnnie Walker Blue Label it goes down smooth and makes entire your problems seem equitable a mini fewer bothersome. it seems as however this African Birkin with gold hardware was her 1st orange-box acquisition. Next up was this huge blue jean Hermes Birkin, priced $465 through ShopBopAlexander Wang Marti Backpack, I knew it would depart everyone another who lays eyes aboard the sack jealous for well. You can get one within brown for $1680 via BlueFly.Sometimes,195 seems prefer a lot for a sack that isn\'t made of buttery Italian leather,all seems lost. But it\'s not especially when we have things prefer the Handbags by Louis Vuitton: Picks according Bella Bag bargain by Rue La La apt pluck us amongst.Christian Louboutin has been working hard to bring the awareness of its handbag collections up to par with its world-famous shoes, Proenza Schouler and Bottega Veneta. Click apt attitude Purseblog spring aboard GLOSSI. and that his favorite indulgences are facials and chocolate. Today namely the day the holo PS11 can be a reality for anyone who desires it! Today we take you with us to Chadwick Bell,'),(14996,1238,'rich_editing','true'),(14997,1238,'comment_shortcuts','false'),(14998,1238,'admin_color','fresh'),(14999,1238,'use_ssl','0'),(15000,1238,'show_admin_bar_front','true'),(15001,1238,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15002,1238,'wp_user_level','0'),(15003,1238,'default_password_nag',''),(15004,1239,'first_name',''),(15005,1239,'last_name',''),(15006,1239,'nickname','LinwoodMendenha'),(15007,1239,'description',''),(15008,1239,'rich_editing','true'),(15009,1239,'comment_shortcuts','false'),(15010,1239,'admin_color','fresh'),(15011,1239,'use_ssl','0'),(15012,1239,'show_admin_bar_front','true'),(15013,1239,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15014,1239,'wp_user_level','0'),(15015,1239,'default_password_nag','1'),(15016,1240,'first_name',''),(15017,1240,'last_name',''),(15018,1240,'nickname','HarrisShepard'),(15019,1240,'description',''),(15020,1240,'rich_editing','true'),(15021,1240,'comment_shortcuts','false'),(15022,1240,'admin_color','fresh'),(15023,1240,'use_ssl','0'),(15024,1240,'show_admin_bar_front','true'),(15025,1240,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15026,1240,'wp_user_level','0'),(15027,1240,'default_password_nag','1'),(15028,1241,'first_name',''),(15029,1241,'last_name',''),(15030,1241,'nickname','SondraStLeon'),(15031,1241,'description',''),(15032,1241,'rich_editing','true'),(15033,1241,'comment_shortcuts','false'),(15034,1241,'admin_color','fresh'),(15035,1241,'use_ssl','0'),(15036,1241,'show_admin_bar_front','true'),(15037,1241,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15038,1241,'wp_user_level','0'),(15039,1241,'default_password_nag','1'),(15040,1242,'first_name',''),(15041,1242,'last_name',''),(15042,1242,'nickname','UnaGHDJtfkhyd'),(15043,1242,'description',''),(15044,1242,'rich_editing','true'),(15045,1242,'comment_shortcuts','false'),(15046,1242,'admin_color','fresh'),(15047,1242,'use_ssl','0'),(15048,1242,'show_admin_bar_front','true'),(15049,1242,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15050,1242,'wp_user_level','0'),(15051,1242,'default_password_nag','1'),(15052,1243,'first_name',''),(15053,1243,'last_name',''),(15054,1243,'nickname','BlancaJtzd'),(15055,1243,'description',''),(15056,1243,'rich_editing','true'),(15057,1243,'comment_shortcuts','false'),(15058,1243,'admin_color','fresh'),(15059,1243,'use_ssl','0'),(15060,1243,'show_admin_bar_front','true'),(15061,1243,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15062,1243,'wp_user_level','0'),(15063,1243,'default_password_nag','1'),(15064,1244,'first_name','aoiltgkmaiZX'),(15065,1244,'last_name','aofartbzaiZX'),(15066,1244,'nickname','aozhhydiai'),(15067,1244,'description','These privileges were lost after Gyanendra assumed absolute powers in early 2005 saying he was acting to crush the then raging anti monarchy Maoist insurgency.\r\n锘縦ing struggles with no electricity\r\n<a href=\"http://www.aleatechnology.eu/wp-content/mulberry.php?id=75\">mulberry lily bag</a> <a href=\"http://www.sauchelli.net/cancella/louboutin.asp?id=12\">christian louboutin heels</a> <a href=\"http://ipsiasimoni.it/wp-content/prada.php?id=93\">saldi prada</a> <a href=\"http://www.porfidio.eu/chanel.php?id=61\">chanel bags uk</a> <a href=\"http://www.neomed.it/eng/Burberry.asp?id=11\">borse burberry</a> <a href=\"http://www.misterkappa.it/img/links/christian.asp?id=33\">scarpe louboutin outlet</a> <a href=\"http://www.sienidanza.it/soon/readme.asp?id=79\">chanel imitazioni napoli</a> <a href=\"http://www.sauchelli.net/cancella/louboutin.asp?id=56\">christian louboutin pigalle 100</a> <a href=\"http://www.elitenfljerseys.us/jerseys.php?id=149\">nba replica jerseys</a> <a href=\"http://www.cafms.org/includes/index.php?id50\">moncler online shopping</a> <a href=\"http://www.sauchelli.net/grazie/mail.asp?id=46\">chanel bags online</a> \r\nThe candidates will have to face questions about jobs, the economy and the auto industry bailout, which Schostak said was the wrong move for the country.\r\n<a href=\"http://www.crnobelo.eu/wp-content/christian.php?id=88\">scarpe christian louboutin prezzi</a> <a href=\"http://www.porfidio.eu/wp-content/gucci.php?id=95\">gucci occhiali vista</a> <a href=\"http://www.elitenfljerseys.us/jerseys.php?id=16\">cheap nfl jerseys from china</a> <a href=\"http://www.porfidio.eu/chanel.php?id=66\">cheap chanel bags</a> <a href=\"http://www.sienidanza.it/old/zanotti.asp?id=81\">giuseppe zanotti 2012</a> <a href=\"http://www.elitenfljerseys.us/jerseys.php?id=92\">nhl practice jerseys</a> <a href=\"http://www.sienidanza.it/old/zanotti.asp?id=94\">giuseppe zanotti shop online</a> <a href=\"http://ipsiasimoni.it/chanel.php?id=81\">chanel offerte</a> <a href=\"http://www.laurabuliangallery.com/img/icons/mulberry.asp?id=70\">mulberry bayswater sale</a> <a href=\"http://www.sauchelli.net/grazie/mail.asp?id=28\">chanel cosmetics</a> <a href=\"http://ipsiasimoni.it/chanel.php?id=61\">chanel palermo</a> <a href=\"http://www.misterkappa.it/img/links/christian.asp?id=21\">scarpe sposa louboutin</a> \r\nBen Ford wants a return to the routines of cookingTax break helps NYC lure \'The Tonight Show\' homeHigh wire walker sets sights on Georgia gorgeGuest lineups for the Sunday news showsFemme fatale Nikita inspires Emporio Armani looksGuest lineups for the Sunday news showsChef: Balancing cooking and TV is a disciplineFirst US Cuba museum exchange in 5 decadesDuring Christmastime, Winlock area fire commissioner Randy Pennington and his colleagues couldn\'t stop thinking about the educators who died protecting students at Sandy Hook Elementary.So Pennington, a military vet who serves as a police reservist in Toledo, began trying to find a way to give those educators recognition for their heroic acts.\"It was unbelievable what they tried to do to save these kids. If this had been a military operation, they\'d have gotten a medal of honor,\" Pennington said.\"It prompted me to look at our own regulations, because we have a medal of honor in the fire service. They fit every criteria except one they weren\'t firefighters.\"At their meeting Tuesday night, Pennington and fellow fire commissioners Lindsay Chatterton and Stan Hankins took two actions to honor the slain educators.One, they declared them honorary members of the Winlock fire district.Two, they promoted each to the rank of captain the highest possible rank for a line officer and awarded them a medal of honor for their service in protection of the children during the Dec. 14 shooting tragedy.The educators so honored were teacher\'s aide Rachel D\'Avino, 29; prinicipal Dawn Hochsprung, 47; teacher\'s aide Anne Marie Murphy, 52; teacher Lauren Rousseau, 30; school psychologist Mary Sherlach, 56; and teacher Victoria Leigh Soto, 27.Response from the community has been \"overwhelming support without a doubt,\" Pennington said.\"What a great project the Lewis County Fire District has taken on,\" Winlock School Superintendent Shannon Criss, who attended the fire district meeting, said by email Thursday morning. \"We passed a resolution last night at our monthly school board meeting supporting this effort. It is the paramount duty of educators to provide for the safety of students, and Sandy Hook exemplified this.\"During the fire commission meeting, the Lewis County emergency dispatch center broadcast a \"last call\" over the scanner system, as is customary for fallen firefighters an emotional moment that Criss said she would \"always remember.\"Pennington said that school officials in Sandy Hook have given their consent and voiced their support of the project through a series of emails and phone calls earlier this week.The medals, which must be custom made, could be ready to present as early as March 1, but there is one hitch: The fire commissioners need to raise money to achieve their goal to send three fire department representatives to personally present the medals in Newtown.The agency is allowed use its own funding to commission the seven medals one each for the families of the six educators and one with all six names that will be given to the school district in Newtown. But it can\'t legally use public money to pay for airfare, lodging or food for the trip to Connecticut.Pennington said he hopes firefighters in Newtown can provide lodging to help reduce costs, but Winlock firefighters still need between $400 and $1,000 each for round trip tickets and food.\r\n<a href=\"http://www.aleatechnology.eu/louboutin.php?id=1\">christian louboutin outlet</a> <a href=\"http://www.aleatechnology.eu/wp-content/mulberry.php?id=25\">mulberry bayswater bag</a> <a href=\"http://www.misterkappa.it/img/links/christian.asp?id=53\">jimmy choo outlet italia</a> <a href=\"http://www.aleatechnology.eu/louboutin.php?id=67\">christian louboutin online store</a> <a href=\"http://www.aleatechnology.eu/wp-content/mulberry.php?id=60\">mulberry antony</a> <a href=\"http://www.misterkappa.it/img/links/christian.asp?id=18\">louboutin prezzi scarpe</a> <a href=\"http://www.archeofriuli.it/pannello/help.asp?id=52\">outlet gucci biella</a> <a href=\"http://www.archeofriuli.it/pannello/help.asp?id=1\">gucci borse</a> <a href=\"http://www.elitenfljerseys.us/jerseys.php?id=116\">authentic nba jerseys</a> <a href=\"http://www.elitenfljerseys.us/jerseys.php?id=98\">nhl replica jerseys</a> <a href=\"http://www.porfidio.eu/wp-content/gucci.php?id=69\">gruppo gucci</a> <a href=\"http://www.neomed.it/eng/Burberry.asp?id=92\">burberry occhiali</a> \r\n锘縄 didn\'t take drugs on the flight says Gina G'),(15068,1244,'rich_editing','true'),(15069,1244,'comment_shortcuts','false'),(15070,1244,'admin_color','fresh'),(15071,1244,'use_ssl','0'),(15072,1244,'show_admin_bar_front','true'),(15073,1244,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15074,1244,'wp_user_level','0'),(15075,1244,'default_password_nag',''),(15076,1245,'first_name',''),(15077,1245,'last_name',''),(15078,1245,'nickname','MakaylaBraley'),(15079,1245,'description',''),(15080,1245,'rich_editing','true'),(15081,1245,'comment_shortcuts','false'),(15082,1245,'admin_color','fresh'),(15083,1245,'use_ssl','0'),(15084,1245,'show_admin_bar_front','true'),(15085,1245,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15086,1245,'wp_user_level','0'),(15087,1245,'default_password_nag','1'),(15088,1246,'first_name',''),(15089,1246,'last_name',''),(15090,1246,'nickname','LorrainBarak'),(15091,1246,'description',''),(15092,1246,'rich_editing','true'),(15093,1246,'comment_shortcuts','false'),(15094,1246,'admin_color','fresh'),(15095,1246,'use_ssl','0'),(15096,1246,'show_admin_bar_front','true'),(15097,1246,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15098,1246,'wp_user_level','0'),(15099,1246,'default_password_nag','1'),(15100,1247,'first_name',''),(15101,1247,'last_name',''),(15102,1247,'nickname','ArmandoMuncy'),(15103,1247,'description',''),(15104,1247,'rich_editing','true'),(15105,1247,'comment_shortcuts','false'),(15106,1247,'admin_color','fresh'),(15107,1247,'use_ssl','0'),(15108,1247,'show_admin_bar_front','true'),(15109,1247,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15110,1247,'wp_user_level','0'),(15111,1247,'default_password_nag','1'),(15112,1248,'first_name',''),(15113,1248,'last_name',''),(15114,1248,'nickname','RobertaPedersen'),(15115,1248,'description',''),(15116,1248,'rich_editing','true'),(15117,1248,'comment_shortcuts','false'),(15118,1248,'admin_color','fresh'),(15119,1248,'use_ssl','0'),(15120,1248,'show_admin_bar_front','true'),(15121,1248,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15122,1248,'wp_user_level','0'),(15123,1248,'default_password_nag','1'),(15124,1249,'first_name',''),(15125,1249,'last_name',''),(15126,1249,'nickname','AugustSoutherla'),(15127,1249,'description',''),(15128,1249,'rich_editing','true'),(15129,1249,'comment_shortcuts','false'),(15130,1249,'admin_color','fresh'),(15131,1249,'use_ssl','0'),(15132,1249,'show_admin_bar_front','true'),(15133,1249,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15134,1249,'wp_user_level','0'),(15135,1249,'default_password_nag','1'),(15136,1250,'first_name',''),(15137,1250,'last_name',''),(15138,1250,'nickname','EzequieAmos'),(15139,1250,'description',''),(15140,1250,'rich_editing','true'),(15141,1250,'comment_shortcuts','false'),(15142,1250,'admin_color','fresh'),(15143,1250,'use_ssl','0'),(15144,1250,'show_admin_bar_front','true'),(15145,1250,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15146,1250,'wp_user_level','0'),(15147,1250,'default_password_nag','1'),(15148,1251,'first_name',''),(15149,1251,'last_name',''),(15150,1251,'nickname','julka87ubw'),(15151,1251,'description',''),(15152,1251,'rich_editing','true'),(15153,1251,'comment_shortcuts','false'),(15154,1251,'admin_color','fresh'),(15155,1251,'use_ssl','0'),(15156,1251,'show_admin_bar_front','true'),(15157,1251,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15158,1251,'wp_user_level','0'),(15159,1251,'default_password_nag','1'),(15175,1253,'description',''),(15176,1253,'rich_editing','true'),(15177,1253,'comment_shortcuts','false'),(15178,1253,'admin_color','fresh'),(15179,1253,'use_ssl','0'),(15180,1253,'show_admin_bar_front','true'),(15181,1253,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15182,1253,'wp_user_level','0'),(15183,1253,'default_password_nag','1'),(15184,1254,'first_name',''),(15185,1254,'last_name',''),(15186,1254,'nickname','EveMerrick'),(15187,1254,'description',''),(15188,1254,'rich_editing','true'),(15189,1254,'comment_shortcuts','false'),(15190,1254,'admin_color','fresh'),(15191,1254,'use_ssl','0'),(15192,1254,'show_admin_bar_front','true'),(15193,1254,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15194,1254,'wp_user_level','0'),(15195,1254,'default_password_nag','1'),(15196,1255,'first_name',''),(15197,1255,'last_name',''),(15198,1255,'nickname','BraydenHmz'),(15199,1255,'description',''),(15200,1255,'rich_editing','true'),(15201,1255,'comment_shortcuts','false'),(15202,1255,'admin_color','fresh'),(15203,1255,'use_ssl','0'),(15204,1255,'show_admin_bar_front','true'),(15205,1255,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15206,1255,'wp_user_level','0'),(15207,1255,'default_password_nag','1'),(15208,1256,'first_name',''),(15209,1256,'last_name',''),(15210,1256,'nickname','gjdsqotp'),(15211,1256,'description',''),(15212,1256,'rich_editing','true'),(15213,1256,'comment_shortcuts','false'),(15214,1256,'admin_color','fresh'),(15215,1256,'use_ssl','0'),(15216,1256,'show_admin_bar_front','true'),(15217,1256,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15218,1256,'wp_user_level','0'),(15219,1256,'default_password_nag','1'),(15712,1297,'first_name',''),(15713,1297,'last_name',''),(15714,1297,'nickname','fjsuahzm'),(15715,1297,'description',''),(15716,1297,'rich_editing','true'),(15717,1297,'comment_shortcuts','false'),(15718,1297,'admin_color','fresh'),(15719,1297,'use_ssl','0'),(15720,1297,'show_admin_bar_front','true'),(15721,1297,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15722,1297,'wp_user_level','0'),(15723,1297,'default_password_nag','1'),(15724,1298,'first_name',''),(15220,1257,'first_name',''),(15221,1257,'last_name',''),(15222,1257,'nickname','RandiHuonDeKerm'),(15223,1257,'description',''),(15224,1257,'rich_editing','true'),(15225,1257,'comment_shortcuts','false'),(15226,1257,'admin_color','fresh'),(15227,1257,'use_ssl','0'),(15228,1257,'show_admin_bar_front','true'),(15229,1257,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15230,1257,'wp_user_level','0'),(15231,1257,'default_password_nag','1'),(15232,1258,'first_name',''),(15233,1258,'last_name',''),(15234,1258,'nickname','BiancaKeeney'),(15235,1258,'description',''),(15236,1258,'rich_editing','true'),(15237,1258,'comment_shortcuts','false'),(15238,1258,'admin_color','fresh'),(15239,1258,'use_ssl','0'),(15240,1258,'show_admin_bar_front','true'),(15241,1258,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15242,1258,'wp_user_level','0'),(15243,1258,'default_password_nag','1'),(15244,1259,'first_name',''),(15245,1259,'last_name',''),(15246,1259,'nickname','FelixJustice'),(15247,1259,'description',''),(15248,1259,'rich_editing','true'),(15249,1259,'comment_shortcuts','false'),(15250,1259,'admin_color','fresh'),(15251,1259,'use_ssl','0'),(15252,1259,'show_admin_bar_front','true'),(15253,1259,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15254,1259,'wp_user_level','0'),(15255,1259,'default_password_nag','1'),(15256,1260,'first_name',''),(15257,1260,'last_name',''),(15258,1260,'nickname','NicholaEDQ'),(15259,1260,'description',''),(15260,1260,'rich_editing','true'),(15261,1260,'comment_shortcuts','false'),(15262,1260,'admin_color','fresh'),(15263,1260,'use_ssl','0'),(15264,1260,'show_admin_bar_front','true'),(15265,1260,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15266,1260,'wp_user_level','0'),(15267,1260,'default_password_nag','1'),(15725,1298,'last_name',''),(15726,1298,'nickname','ArjunePen'),(15727,1298,'description',''),(15268,1261,'first_name',''),(15269,1261,'last_name',''),(15270,1261,'nickname','RhysShannon'),(15271,1261,'description',''),(15272,1261,'rich_editing','true'),(15273,1261,'comment_shortcuts','false'),(15274,1261,'admin_color','fresh'),(15275,1261,'use_ssl','0'),(15276,1261,'show_admin_bar_front','true'),(15277,1261,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15278,1261,'wp_user_level','0'),(15279,1261,'default_password_nag','1'),(15280,1262,'first_name',''),(15281,1262,'last_name',''),(15282,1262,'nickname','WilliamP97'),(15283,1262,'description',''),(15284,1262,'rich_editing','true'),(15285,1262,'comment_shortcuts','false'),(15286,1262,'admin_color','fresh'),(15287,1262,'use_ssl','0'),(15288,1262,'show_admin_bar_front','true'),(15289,1262,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15290,1262,'wp_user_level','0'),(15291,1262,'default_password_nag','1'),(15292,1263,'first_name',''),(15293,1263,'last_name',''),(15294,1263,'nickname','NigelAOCWpbmh'),(15295,1263,'description',''),(15296,1263,'rich_editing','true'),(15297,1263,'comment_shortcuts','false'),(15298,1263,'admin_color','fresh'),(15299,1263,'use_ssl','0'),(15300,1263,'show_admin_bar_front','true'),(15301,1263,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15302,1263,'wp_user_level','0'),(15303,1263,'default_password_nag','1'),(15304,1264,'first_name',''),(15305,1264,'last_name',''),(15306,1264,'nickname','Verona02Ucjxi'),(15307,1264,'description',''),(15308,1264,'rich_editing','true'),(15309,1264,'comment_shortcuts','false'),(15310,1264,'admin_color','fresh'),(15311,1264,'use_ssl','0'),(15312,1264,'show_admin_bar_front','true'),(15313,1264,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15314,1264,'wp_user_level','0'),(15315,1264,'default_password_nag','1'),(15316,1265,'first_name',''),(15317,1265,'last_name',''),(15318,1265,'nickname','RosariaZom'),(15319,1265,'description',''),(15320,1265,'rich_editing','true'),(15321,1265,'comment_shortcuts','false'),(15322,1265,'admin_color','fresh'),(15323,1265,'use_ssl','0'),(15324,1265,'show_admin_bar_front','true'),(15325,1265,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15326,1265,'wp_user_level','0'),(15327,1265,'default_password_nag','1'),(15328,1266,'first_name','ArthurmeftWF'),(15329,1266,'last_name','ArthurmeftWF'),(15330,1266,'nickname','Arthurmeft'),(15331,1266,'description','http://www.ceevu.org/長袖シャツ-メンズデニム-総柄-ウエスタンシャツ-カジュアルシャツ-zipcs-jp-7310.html\r\nhttp://www.ceevu.org/半袖シャツ-メンズヒッコリー-ストライプ-ワークシャツ-カジュアルシャツ-zipcs-jp-7269.html\r\nhttp://www.ceevu.org/ジーンズ-メンズデニム-9分丈-テーパード-クロップド-ベイカーパンツ-カジュアルパンツ-zipcs-jp-7091.html\r\nhttp://www.ceevu.org/スタジアムジャケット-メンズ起毛-サテン-スタジャン-zipcs-jp-7567.html\r\nhttp://www.ceevu.org/プルオーバー-メンズ裏毛-スウェット-ハイネック-トレーナー-zipcs-jp-7375.html\r\n \r\n<a href=\"http://www.bentug.org/トートバッグ-レディース-鞄-ショルダーバッグ-斜めがけ-エナメルバッグ-ハンドバッグ-黒-赤-白-jp-10382.html\">ショルダーバッグ</a>\r\n<a href=\"http://www.bentug.org/2013秋冬新作-ハンドバッグ-レディース-通勤通学-黒-赤-白-jp-8591.html\">通勤通学</a>\r\n<a href=\"http://www.bentug.org/2013年新作メッセンジャーバッグ-レディース-サブバッグ-ショルダーバッグ-斜めがけ-jp-9953.html\">メッセンジャーバッグ</a>\r\n<a href=\"http://www.bentug.org/トートバッグ-レディース-鞄-エナメルバッグ-黒-赤-jp-9624.html\">トートバッグ</a>\r\n<a href=\"http://www.bentug.org/トートバッグ-レディース-鞄-メッセンジャーバッグ-サブバッグ-黒-赤-無地-jp-7150.html\">トートバッグ</a>\r\n \r\nhttp://www.kfkod.net/【大幅値下げ中】Wholenine-ホールナイン【新作!全種取り扱い!国内ストリートブランド!】-t-jp-7740.html\r\nhttp://www.kfkod.net/dedes-デデスレンガソールプレーントゥシューズ5012gold【送料無料】-jp-7292.html\r\nhttp://www.kfkod.net/【大幅値下げ中】Wholenine-ホールナイン【新作!全種取り扱い!国内ストリートブランド!】Yo-jp-7772.html\r\nhttp://www.kfkod.net/【品質保証】Numero-due-【ヌメロデュエ】2012~2013新作-カモ-ライダース-ジャケッ-jp-8389.html\r\nhttp://www.kfkod.net/dedesken-デデスケンソフトレザーカラフルプレーンシューズ10539greenプレーントゥ-き-jp-7154.html\r\n \r\nhttp://www.evansphotos.com/【激安価額】ハイゴールド-ヒモ式トレーニングシューズ-pu9002【送料無料】-jp-7493.html\r\nhttp://www.evansphotos.com/【品質保証】『ミズノ-グレーストレーナー』-2014年モデル-トレーニングシューズ-2kt784 -jp-7522.html\r\nhttp://www.evansphotos.com/【激安価額】ハイゴールド-フィンガーエース木球タイプ-一般用-faww54【送料無料】-jp-7907.html\r\nhttp://www.evansphotos.com/【大幅値下げ中】【湯もみ型付けサービス!】久保田スラッガー-少年硬式グローブ-ksgsj4 ピッチャ-jp-7000.html\r\nhttp://www.evansphotos.com/【超安値で大放出】ハタケヤマ-軟式用マスク-cgntb【送料無料】-jp-7797.html\r\n \r\n<a href=\"http://www.imatika.biz/【送料無料】-abcシリーズ-90トイボックス-【子供収納】【キッズラック】【収納ラック】【国産】【-jp-7586.html\">子供収納</a>\r\n<a href=\"http://www.imatika.biz/【送料無料】-z50-どうぶつ付きつみき車-【知育玩具】【教育玩具】【積み木】【ベビー用つみき】【ブ-jp-7441.html\">知育玩具</a>\r\n<a href=\"http://www.imatika.biz/【送料無料】-kidzoo-おもちゃボックス-3段タイプ-【自発心を促す】【ソフト素材キッズファニチ-jp-7488.html\">おもちゃ</a>\r\n<a href=\"http://www.imatika.biz/【送料無料】-あそびのおうち-【知育玩具】【教育玩具】【ブロック遊び】【誕生祝い】【キッズ玩具】【森-jp-7139.html\">誕生祝い</a>\r\n<a href=\"http://www.imatika.biz/【送料無料】-am12-木のままごと-music-party-【ままごとセット】【知育玩具】【ままご-jp-7252.html\">ままごとセット</a>\r\n \r\n<a href=\"http://www.mayhutbui.biz/civa-チーバ-volanato(ヴォラナト)小銭入れ付き長財布(L字ファスナー式)-2052vo-jp-7497.html\">L字ファスナー式</a>\r\n<a href=\"http://www.mayhutbui.biz/baggy-port-バギーポート-キップワックス-シリーズ小銭入れ付き-二つ折り長財布 kyp60-jp-7531.html\">シリーズ小銭入れ</a>\r\n<a href=\"http://www.mayhutbui.biz/albero-アルベロnature(ナチュレ)小銭入れ付き-l字ファスナーl型開閉式-薄型財布 53-jp-7296.html\">ナチュレ</a>\r\n<a href=\"http://www.mayhutbui.biz/corbo-コルボclay-works-クレイワークスシリーズ二つ折り財布 8jf9974メンズ-財-jp-7586.html\">クレイワークス</a>\r\n<a href=\"http://www.mayhutbui.biz/civa-チーバ volanato(ヴォラナト)-小銭入れ-コインケース- 1767volamade-jp-7274.html\">ヴォラナト</a>\r\n \r\n<a href=\"http://www.hnfzgold.com/【新生活応援フェア】【ジュニア用スポーツウェア】【ウェア・ジャケット・ボトムス】ウィンドブレーカージ-jp-7191.html\">ウェア・ジャケット・ボトムス</a>\r\n<a href=\"http://www.hnfzgold.com/男性レーシングフィットネス水着-reebok(リーボック)432760-メンズ-jp-7605.html\">男性フィットネス水着</a>\r\n<a href=\"http://www.hnfzgold.com/女性フィットネス水着◇ボトムス・大きいサイズ◇mizuno(ミズノ)-85an196-レディース-jp-7664.html\">女性フィットネス水着</a>\r\n<a href=\"http://www.hnfzgold.com/女性フィットネス水着◇セパレーツ◇Reebok(リーボック)312901-レディース-jp-7130.html\">リーボック</a>\r\n<a href=\"http://www.hnfzgold.com/女性フィットネス水着◇ワンピース・大きいサイズ◇arena(アリーナ)fla3750weu-レディー-jp-7059.html\">ワンピース</a>\r\n \r\n<a href=\"http://www.httphcs4tech.biz/ロータス パピーチキンレシピ 272kg-jp-7510.html\">ロータス</a>\r\n<a href=\"http://www.httphcs4tech.biz/ロイヤルカナン ブリードヘルスニュートリション ゴールデンレトリバー 成犬?高齢犬用 生後15ヵ月齢-jp-7141.html\">ニュートリション</a>\r\n<a href=\"http://www.httphcs4tech.biz/anf パピー(仔犬用) 小粒 15kg-jp-7663.html\">仔犬用</a>\r\n<a href=\"http://www.httphcs4tech.biz/東洋アルミ-節電 吸着窓シート 孔あきシート 75×90cm-1枚入り×10個セット-アルミ反射タイ-jp-7683.html\">吸着窓シート</a>\r\n<a href=\"http://www.httphcs4tech.biz/ユーカヌバ-体重管理用 小型犬種 -小粒 -1歳~6歳用 12kg-jp-7225.html\">小粒</a>\r\n \r\n<a href=\"http://www.miamixiti.com/p-1219-ブーツ-ショート-ミドル-ムートンブーツ-ボンボリ-リボン-2WAY-レディース-ふあ\">ミドル-ム</a>\r\n<a href=\"http://www.miamixiti.com/p-1253-トングサンダル ぺたんコ フラットソール メタル金具\">ぺたんコ</a>\r\n<a href=\"http://www.miamixiti.com/p-1222-パンプス トゥーキャップ エナメル サテン PU\">PU</a>\r\n<a href=\"http://www.miamixiti.com/p-1259-サテンフリルパンプス-パンプス-フォーマル-シンプル-カジュアル-ラウンドトゥ-ローヒ\">ラウンドトゥ-ローヒ</a>\r\n<a href=\"http://www.miamixiti.com/p-1215-ロング グラディエーターサンダル ぺたんこ\">グラディエーターサンダル</a>\r\n \r\n<a href="http://www.simucoruna.org/p-186-デデス\">ストレートチップスエードカジュアルシューズ5020-BEIGE]カジュアルシューズ</a>\r\n<a href=\"http://www.simucoruna.org/p-208-レディースインヒールニーハイブーツ5303レディース-ブーツ-ニーハイ-スエード\">インヒール</a>\r\n<a href="http://www.simucoruna.org/p-15-FRISS-ラスアンドフリス\">LF995BL4E防滑ソールビジネスブーツ-外]ソールビジネスブーツ</a>\r\n<a href="http://www.simucoruna.org/p-179-デデス\">デニム柄スリッポンスニーカー5089休日-カジュアル-sneake]スリッポンスニーカー</a>\r\n<a href="http://www.simucoruna.org/p-134-デデス\">シャークソールチャッカブーツ5023-D.BROWN]シャークソールチャッカブーツ</a>\r\n \r\n<a href=\"http://www.sulawesi.biz/【Rose】ペーパーホルダーカバー一輪バラパッケージも可愛らしいのでプレゼントにオススメ(取寄商品)-jp-6932.html\">プレゼント</a>\r\n<a href=\"http://www.sulawesi.biz/【スロフィー】4段120幅収納ラック オープンラック 壁面収納直送商品-jp-7125.html\">スロフィー</a>\r\n<a href=\"http://www.sulawesi.biz/【Endeエンデ】ゼブラウッド&スチール棚付きハンガーラック直送代金引換不可 スチールハンガーラック-jp-7226.html\">ゼブラウッド</a>\r\n<a href=\"http://www.sulawesi.biz/【アソボ】キッズキャビネットキッチンオーブンレンジ(直送商品まるで本物のキッチンでお料理しているよう-jp-7134.html\">キッズキャビネット</a>\r\n<a href=\"http://www.sulawesi.biz/【Lineライン】ベンチブーツラック-お出かけ前やご帰宅時の靴の着脱、荷物置きに便利。(取寄商品)-jp-7015.html\">ベンチブーツラック</a>'),(15332,1266,'rich_editing','true'),(15333,1266,'comment_shortcuts','false'),(15334,1266,'admin_color','fresh'),(15335,1266,'use_ssl','0'),(15336,1266,'show_admin_bar_front','true'),(15337,1266,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15338,1266,'wp_user_level','0'),(15339,1266,'default_password_nag',''),(15340,1266,'aim',''),(15341,1266,'yim',''),(15342,1266,'jabber',''),(15343,1266,'gauthor','Arthurmeft'),(15344,1267,'first_name',''),(15345,1267,'last_name',''),(15346,1267,'nickname','Azfagovc'),(15347,1267,'description',''),(15348,1267,'rich_editing','true'),(15349,1267,'comment_shortcuts','false'),(15350,1267,'admin_color','fresh'),(15351,1267,'use_ssl','0'),(15352,1267,'show_admin_bar_front','true'),(15353,1267,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15354,1267,'wp_user_level','0'),(15355,1267,'default_password_nag','1'),(15356,1268,'first_name','LeeSUGZ'),(15357,1268,'last_name','LeeSUGZ'),(15358,1268,'nickname','LeeSU'),(15359,1268,'description','Wow,such a wonderful show qczhu20140412 http://oakley.atshop.biz/'),(15360,1268,'rich_editing','true'),(15361,1268,'comment_shortcuts','false'),(15362,1268,'admin_color','fresh'),(15363,1268,'use_ssl','0'),(15364,1268,'show_admin_bar_front','true'),(15365,1268,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15366,1268,'wp_user_level','0'),(15367,1268,'default_password_nag',''),(15368,1268,'aim',''),(15369,1268,'yim',''),(15370,1268,'jabber',''),(15371,1268,'gauthor','LeeSU'),(15372,1269,'first_name',''),(15373,1269,'last_name',''),(15374,1269,'nickname','IsabellSaulsbur'),(15375,1269,'description',''),(15376,1269,'rich_editing','true'),(15377,1269,'comment_shortcuts','false'),(15378,1269,'admin_color','fresh'),(15379,1269,'use_ssl','0'),(15380,1269,'show_admin_bar_front','true'),(15381,1269,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15382,1269,'wp_user_level','0'),(15383,1269,'default_password_nag','1'),(15384,1270,'first_name',''),(15385,1270,'last_name',''),(15386,1270,'nickname','TheoHalsey'),(15387,1270,'description',''),(15388,1270,'rich_editing','true'),(15389,1270,'comment_shortcuts','false'),(15390,1270,'admin_color','fresh'),(15391,1270,'use_ssl','0'),(15392,1270,'show_admin_bar_front','true'),(15393,1270,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15394,1270,'wp_user_level','0'),(15395,1270,'default_password_nag','1'),(15396,1271,'first_name',''),(15397,1271,'last_name',''),(15398,1271,'nickname','MikkiRyabaum'),(15399,1271,'description',''),(15400,1271,'rich_editing','true'),(15401,1271,'comment_shortcuts','false'),(15402,1271,'admin_color','fresh'),(15403,1271,'use_ssl','0'),(15404,1271,'show_admin_bar_front','true'),(15405,1271,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15406,1271,'wp_user_level','0'),(15407,1271,'default_password_nag','1'),(15408,1272,'first_name',''),(15409,1272,'last_name',''),(15410,1272,'nickname','MiguelMurdock'),(15411,1272,'description',''),(15412,1272,'rich_editing','true'),(15413,1272,'comment_shortcuts','false'),(15414,1272,'admin_color','fresh'),(15415,1272,'use_ssl','0'),(15416,1272,'show_admin_bar_front','true'),(15417,1272,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15418,1272,'wp_user_level','0'),(15419,1272,'default_password_nag','1'),(15420,1273,'first_name',''),(15421,1273,'last_name',''),(15422,1273,'nickname','AlexandFoelsche'),(15423,1273,'description',''),(15424,1273,'rich_editing','true'),(15425,1273,'comment_shortcuts','false'),(15426,1273,'admin_color','fresh'),(15427,1273,'use_ssl','0'),(15428,1273,'show_admin_bar_front','true'),(15429,1273,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15430,1273,'wp_user_level','0'),(15431,1273,'default_password_nag','1'),(15432,1274,'first_name',''),(15433,1274,'last_name',''),(15434,1274,'nickname','MartaBeardsley'),(15435,1274,'description',''),(15436,1274,'rich_editing','true'),(15437,1274,'comment_shortcuts','false'),(15438,1274,'admin_color','fresh'),(15439,1274,'use_ssl','0'),(15440,1274,'show_admin_bar_front','true'),(15441,1274,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15442,1274,'wp_user_level','0'),(15443,1274,'default_password_nag','1'),(15444,1275,'first_name',''),(15445,1275,'last_name',''),(15446,1275,'nickname','Patrici4499'),(15447,1275,'description',''),(15448,1275,'rich_editing','true'),(15449,1275,'comment_shortcuts','false'),(15450,1275,'admin_color','fresh'),(15451,1275,'use_ssl','0'),(15452,1275,'show_admin_bar_front','true'),(15453,1275,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15454,1275,'wp_user_level','0'),(15455,1275,'default_password_nag','1'),(15456,1276,'first_name',''),(15457,1276,'last_name',''),(15458,1276,'nickname','CaitlinBowe'),(15459,1276,'description',''),(15460,1276,'rich_editing','true'),(15461,1276,'comment_shortcuts','false'),(15462,1276,'admin_color','fresh'),(15463,1276,'use_ssl','0'),(15464,1276,'show_admin_bar_front','true'),(15465,1276,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15466,1276,'wp_user_level','0'),(15467,1276,'default_password_nag','1'),(15468,1277,'first_name',''),(15469,1277,'last_name',''),(15470,1277,'nickname','AleidaCmlxf'),(15471,1277,'description',''),(15472,1277,'rich_editing','true'),(15473,1277,'comment_shortcuts','false'),(15474,1277,'admin_color','fresh'),(15475,1277,'use_ssl','0'),(15476,1277,'show_admin_bar_front','true'),(15477,1277,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15478,1277,'wp_user_level','0'),(15479,1277,'default_password_nag','1'),(15480,1278,'first_name',''),(15481,1278,'last_name',''),(15482,1278,'nickname','ChantalArriaga'),(15483,1278,'description',''),(15484,1278,'rich_editing','true'),(15485,1278,'comment_shortcuts','false'),(15486,1278,'admin_color','fresh'),(15487,1278,'use_ssl','0'),(15488,1278,'show_admin_bar_front','true'),(15489,1278,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15490,1278,'wp_user_level','0'),(15491,1278,'default_password_nag','1'),(15576,1286,'first_name',''),(15540,1283,'first_name',''),(15492,1279,'first_name',''),(15493,1279,'last_name',''),(15494,1279,'nickname','Alma3230vgczdaj'),(15495,1279,'description',''),(15496,1279,'rich_editing','true'),(15497,1279,'comment_shortcuts','false'),(15498,1279,'admin_color','fresh'),(15499,1279,'use_ssl','0'),(15500,1279,'show_admin_bar_front','true'),(15501,1279,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15502,1279,'wp_user_level','0'),(15503,1279,'default_password_nag','1'),(15504,1280,'first_name',''),(15505,1280,'last_name',''),(15506,1280,'nickname','LovieBoyle'),(15507,1280,'description',''),(15508,1280,'rich_editing','true'),(15509,1280,'comment_shortcuts','false'),(15510,1280,'admin_color','fresh'),(15511,1280,'use_ssl','0'),(15512,1280,'show_admin_bar_front','true'),(15513,1280,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15514,1280,'wp_user_level','0'),(15515,1280,'default_password_nag','1'),(15516,1281,'first_name',''),(15517,1281,'last_name',''),(15518,1281,'nickname','KJRKathiou'),(15519,1281,'description',''),(15520,1281,'rich_editing','true'),(15521,1281,'comment_shortcuts','false'),(15522,1281,'admin_color','fresh'),(15523,1281,'use_ssl','0'),(15524,1281,'show_admin_bar_front','true'),(15525,1281,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15526,1281,'wp_user_level','0'),(15527,1281,'default_password_nag','1'),(15528,1282,'first_name',''),(15529,1282,'last_name',''),(15530,1282,'nickname','DarnellB41'),(15531,1282,'description',''),(15532,1282,'rich_editing','true'),(15533,1282,'comment_shortcuts','false'),(15534,1282,'admin_color','fresh'),(15535,1282,'use_ssl','0'),(15536,1282,'show_admin_bar_front','true'),(15537,1282,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15538,1282,'wp_user_level','0'),(15539,1282,'default_password_nag','1'),(15541,1283,'last_name',''),(15542,1283,'nickname','TammiScott'),(15543,1283,'description',''),(15544,1283,'rich_editing','true'),(15545,1283,'comment_shortcuts','false'),(15546,1283,'admin_color','fresh'),(15547,1283,'use_ssl','0'),(15548,1283,'show_admin_bar_front','true'),(15549,1283,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15550,1283,'wp_user_level','0'),(15551,1283,'default_password_nag','1'),(15552,1284,'first_name',''),(15553,1284,'last_name',''),(15554,1284,'nickname','JCUHolleyyxph'),(15555,1284,'description',''),(15556,1284,'rich_editing','true'),(15557,1284,'comment_shortcuts','false'),(15558,1284,'admin_color','fresh'),(15559,1284,'use_ssl','0'),(15560,1284,'show_admin_bar_front','true'),(15561,1284,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15562,1284,'wp_user_level','0'),(15563,1284,'default_password_nag','1'),(15564,1285,'first_name',''),(15565,1285,'last_name',''),(15566,1285,'nickname','Lydiazfllo'),(15567,1285,'description',''),(15568,1285,'rich_editing','true'),(15569,1285,'comment_shortcuts','false'),(15570,1285,'admin_color','fresh'),(15571,1285,'use_ssl','0'),(15572,1285,'show_admin_bar_front','true'),(15573,1285,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15574,1285,'wp_user_level','0'),(15575,1285,'default_password_nag','1'),(15577,1286,'last_name',''),(15578,1286,'nickname','75GregoryE'),(15579,1286,'description',''),(15580,1286,'rich_editing','true'),(15581,1286,'comment_shortcuts','false'),(15582,1286,'admin_color','fresh'),(15583,1286,'use_ssl','0'),(15584,1286,'show_admin_bar_front','true'),(15585,1286,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15586,1286,'wp_user_level','0'),(15587,1286,'default_password_nag','1'),(15588,1287,'first_name',''),(15589,1287,'last_name',''),(15590,1287,'nickname','DollyAKCysnth'),(15591,1287,'description',''),(15592,1287,'rich_editing','true'),(15593,1287,'comment_shortcuts','false'),(15594,1287,'admin_color','fresh'),(15595,1287,'use_ssl','0'),(15596,1287,'show_admin_bar_front','true'),(15597,1287,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15598,1287,'wp_user_level','0'),(15599,1287,'default_password_nag','1'),(15600,1288,'first_name',''),(15601,1288,'last_name',''),(15602,1288,'nickname','FedericLafleur'),(15603,1288,'description',''),(15604,1288,'rich_editing','true'),(15605,1288,'comment_shortcuts','false'),(15606,1288,'admin_color','fresh'),(15607,1288,'use_ssl','0'),(15608,1288,'show_admin_bar_front','true'),(15609,1288,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15610,1288,'wp_user_level','0'),(15611,1288,'default_password_nag','1'),(15612,1289,'first_name',''),(15613,1289,'last_name',''),(15614,1289,'nickname','DarioRYBIajy'),(15615,1289,'description',''),(15616,1289,'rich_editing','true'),(15617,1289,'comment_shortcuts','false'),(15618,1289,'admin_color','fresh'),(15619,1289,'use_ssl','0'),(15620,1289,'show_admin_bar_front','true'),(15621,1289,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15622,1289,'wp_user_level','0'),(15623,1289,'default_password_nag','1'),(15624,1290,'first_name',''),(15625,1290,'last_name',''),(15626,1290,'nickname','BrigidaK38'),(15627,1290,'description',''),(15628,1290,'rich_editing','true'),(15629,1290,'comment_shortcuts','false'),(15630,1290,'admin_color','fresh'),(15631,1290,'use_ssl','0'),(15632,1290,'show_admin_bar_front','true'),(15633,1290,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15634,1290,'wp_user_level','0'),(15635,1290,'default_password_nag','1'),(15636,1291,'first_name',''),(15637,1291,'last_name',''),(15638,1291,'nickname','LandonSnoddy'),(15639,1291,'description',''),(15640,1291,'rich_editing','true'),(15641,1291,'comment_shortcuts','false'),(15642,1291,'admin_color','fresh'),(15643,1291,'use_ssl','0'),(15644,1291,'show_admin_bar_front','true'),(15645,1291,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15646,1291,'wp_user_level','0'),(15647,1291,'default_password_nag','1'),(15648,1292,'first_name',''),(15649,1292,'last_name',''),(15650,1292,'nickname','MadieHallyzmwx'),(15651,1292,'description',''),(15652,1292,'rich_editing','true'),(15653,1292,'comment_shortcuts','false'),(15654,1292,'admin_color','fresh'),(15655,1292,'use_ssl','0'),(15656,1292,'show_admin_bar_front','true'),(15657,1292,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15658,1292,'wp_user_level','0'),(15659,1292,'default_password_nag','1'),(15660,1293,'first_name',''),(15661,1293,'last_name',''),(15662,1293,'nickname','CassandSwaney'),(15663,1293,'description',''),(15664,1293,'rich_editing','true'),(15665,1293,'comment_shortcuts','false'),(15666,1293,'admin_color','fresh'),(15667,1293,'use_ssl','0'),(15668,1293,'show_admin_bar_front','true'),(15669,1293,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15670,1293,'wp_user_level','0'),(15671,1293,'default_password_nag','1'),(15672,1294,'first_name',''),(15673,1294,'last_name',''),(15674,1294,'nickname','BarrettAlves'),(15675,1294,'description',''),(15676,1294,'rich_editing','true'),(15677,1294,'comment_shortcuts','false'),(15678,1294,'admin_color','fresh'),(15679,1294,'use_ssl','0'),(15680,1294,'show_admin_bar_front','true'),(15681,1294,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15682,1294,'wp_user_level','0'),(15683,1294,'default_password_nag','1'),(15684,1295,'first_name',''),(15685,1295,'last_name',''),(15686,1295,'nickname','RayfordTillman'),(15687,1295,'description',''),(15688,1295,'rich_editing','true'),(15689,1295,'comment_shortcuts','false'),(15690,1295,'admin_color','fresh'),(15691,1295,'use_ssl','0'),(15692,1295,'show_admin_bar_front','true'),(15693,1295,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15694,1295,'wp_user_level','0'),(15695,1295,'default_password_nag','1'),(15696,1296,'first_name',''),(15697,1296,'last_name',''),(15698,1296,'nickname','VerleneUzz'),(15699,1296,'description',''),(15700,1296,'rich_editing','true'),(15701,1296,'comment_shortcuts','false'),(15702,1296,'admin_color','fresh'),(15703,1296,'use_ssl','0'),(15704,1296,'show_admin_bar_front','true'),(15705,1296,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15706,1296,'wp_user_level','0'),(15707,1296,'default_password_nag','1'),(15708,1244,'aim',''),(15709,1244,'yim',''),(15710,1244,'jabber',''),(15711,1244,'gauthor','aozhhydiai'),(15728,1298,'rich_editing','true'),(15729,1298,'comment_shortcuts','false'),(15730,1298,'admin_color','fresh'),(15731,1298,'use_ssl','0'),(15732,1298,'show_admin_bar_front','true'),(15733,1298,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15734,1298,'wp_user_level','0'),(15735,1298,'default_password_nag','1'),(15736,1299,'first_name',''),(15737,1299,'last_name',''),(15738,1299,'nickname','FZNDaisyrbz'),(15739,1299,'description',''),(15740,1299,'rich_editing','true'),(15741,1299,'comment_shortcuts','false'),(15742,1299,'admin_color','fresh'),(15743,1299,'use_ssl','0'),(15744,1299,'show_admin_bar_front','true'),(15745,1299,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15746,1299,'wp_user_level','0'),(15747,1299,'default_password_nag','1'),(15748,1300,'first_name',''),(15749,1300,'last_name',''),(15750,1300,'nickname','StevenlobeMichaelDaps'),(15751,1300,'description',''),(15752,1300,'rich_editing','true'),(15753,1300,'comment_shortcuts','false'),(15754,1300,'admin_color','fresh'),(15755,1300,'use_ssl','0'),(15756,1300,'show_admin_bar_front','true'),(15757,1300,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15758,1300,'wp_user_level','0'),(15759,1300,'default_password_nag','1'),(15760,1301,'first_name',''),(15761,1301,'last_name',''),(15762,1301,'nickname','RosieVmoboj'),(15763,1301,'description',''),(15764,1301,'rich_editing','true'),(15765,1301,'comment_shortcuts','false'),(15766,1301,'admin_color','fresh'),(15767,1301,'use_ssl','0'),(15768,1301,'show_admin_bar_front','true'),(15769,1301,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15770,1301,'wp_user_level','0'),(15771,1301,'default_password_nag','1'),(15772,1302,'first_name',''),(15773,1302,'last_name',''),(15774,1302,'nickname','RosariaReeve'),(15775,1302,'description',''),(15776,1302,'rich_editing','true'),(15777,1302,'comment_shortcuts','false'),(15778,1302,'admin_color','fresh'),(15779,1302,'use_ssl','0'),(15780,1302,'show_admin_bar_front','true'),(15781,1302,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15782,1302,'wp_user_level','0'),(15783,1302,'default_password_nag','1'),(15784,1303,'first_name',''),(15785,1303,'last_name',''),(15786,1303,'nickname','Georgetta07B'),(15787,1303,'description',''),(15788,1303,'rich_editing','true'),(15789,1303,'comment_shortcuts','false'),(15790,1303,'admin_color','fresh'),(15791,1303,'use_ssl','0'),(15792,1303,'show_admin_bar_front','true'),(15793,1303,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15794,1303,'wp_user_level','0'),(15795,1303,'default_password_nag','1'),(15796,1304,'first_name',''),(15797,1304,'last_name',''),(15798,1304,'nickname','Celsa2110s'),(15799,1304,'description',''),(15800,1304,'rich_editing','true'),(15801,1304,'comment_shortcuts','false'),(15802,1304,'admin_color','fresh'),(15803,1304,'use_ssl','0'),(15804,1304,'show_admin_bar_front','true'),(15805,1304,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15806,1304,'wp_user_level','0'),(15807,1304,'default_password_nag','1'),(15808,1305,'first_name',''),(15809,1305,'last_name',''),(15810,1305,'nickname','Valiavgvr5'),(15811,1305,'description',''),(15812,1305,'rich_editing','true'),(15813,1305,'comment_shortcuts','false'),(15814,1305,'admin_color','fresh'),(15815,1305,'use_ssl','0'),(15816,1305,'show_admin_bar_front','true'),(15817,1305,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15818,1305,'wp_user_level','0'),(15819,1305,'default_password_nag','1'),(15820,1238,'aim',''),(15821,1238,'yim',''),(15822,1238,'jabber',''),(15823,1238,'gauthor','michaelsjun'),(15824,1306,'first_name',''),(15825,1306,'last_name',''),(15826,1306,'nickname','AmberMoynihan'),(15827,1306,'description',''),(15828,1306,'rich_editing','true'),(15829,1306,'comment_shortcuts','false'),(15830,1306,'admin_color','fresh'),(15831,1306,'use_ssl','0'),(15832,1306,'show_admin_bar_front','true'),(15833,1306,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15834,1306,'wp_user_level','0'),(15835,1306,'default_password_nag','1'),(15836,1307,'first_name',''),(15837,1307,'last_name',''),(15838,1307,'nickname','LamontMitford'),(15839,1307,'description',''),(15840,1307,'rich_editing','true'),(15841,1307,'comment_shortcuts','false'),(15842,1307,'admin_color','fresh'),(15843,1307,'use_ssl','0'),(15844,1307,'show_admin_bar_front','true'),(15845,1307,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15846,1307,'wp_user_level','0'),(15847,1307,'default_password_nag','1'),(15848,1308,'first_name',''),(15849,1308,'last_name',''),(15850,1308,'nickname','JeseniaZarate'),(15851,1308,'description',''),(15852,1308,'rich_editing','true'),(15853,1308,'comment_shortcuts','false'),(15854,1308,'admin_color','fresh'),(15855,1308,'use_ssl','0'),(15856,1308,'show_admin_bar_front','true'),(15857,1308,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15858,1308,'wp_user_level','0'),(15859,1308,'default_password_nag','1'),(15860,1309,'first_name',''),(15861,1309,'last_name',''),(15862,1309,'nickname','PhilipRadke'),(15863,1309,'description',''),(15864,1309,'rich_editing','true'),(15865,1309,'comment_shortcuts','false'),(15866,1309,'admin_color','fresh'),(15867,1309,'use_ssl','0'),(15868,1309,'show_admin_bar_front','true'),(15869,1309,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15870,1309,'wp_user_level','0'),(15871,1309,'default_password_nag','1'),(15872,1310,'first_name',''),(15873,1310,'last_name',''),(15874,1310,'nickname','EdenPickard'),(15875,1310,'description',''),(15876,1310,'rich_editing','true'),(15877,1310,'comment_shortcuts','false'),(15878,1310,'admin_color','fresh'),(15879,1310,'use_ssl','0'),(15880,1310,'show_admin_bar_front','true'),(15881,1310,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15882,1310,'wp_user_level','0'),(15883,1310,'default_password_nag','1'),(15884,1311,'first_name',''),(15885,1311,'last_name',''),(15886,1311,'nickname','FlorrieOsborne'),(15887,1311,'description',''),(15888,1311,'rich_editing','true'),(15889,1311,'comment_shortcuts','false'),(15890,1311,'admin_color','fresh'),(15891,1311,'use_ssl','0'),(15892,1311,'show_admin_bar_front','true'),(15893,1311,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15894,1311,'wp_user_level','0'),(15895,1311,'default_password_nag','1'),(15896,1312,'first_name',''),(15897,1312,'last_name',''),(15898,1312,'nickname','SheriPumphrey'),(15899,1312,'description',''),(15900,1312,'rich_editing','true'),(15901,1312,'comment_shortcuts','false'),(15902,1312,'admin_color','fresh'),(15903,1312,'use_ssl','0'),(15904,1312,'show_admin_bar_front','true'),(15905,1312,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15906,1312,'wp_user_level','0'),(15907,1312,'default_password_nag','1'),(15908,1313,'first_name',''),(15909,1313,'last_name',''),(15910,1313,'nickname','OUXAlissafqhg'),(15911,1313,'description',''),(15912,1313,'rich_editing','true'),(15913,1313,'comment_shortcuts','false'),(15914,1313,'admin_color','fresh'),(15915,1313,'use_ssl','0'),(15916,1313,'show_admin_bar_front','true'),(15917,1313,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15918,1313,'wp_user_level','0'),(15919,1313,'default_password_nag','1'),(15920,1314,'first_name',''),(15921,1314,'last_name',''),(15922,1314,'nickname','EddiePalmore'),(15923,1314,'description',''),(15924,1314,'rich_editing','true'),(15925,1314,'comment_shortcuts','false'),(15926,1314,'admin_color','fresh'),(15927,1314,'use_ssl','0'),(15928,1314,'show_admin_bar_front','true'),(15929,1314,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15930,1314,'wp_user_level','0'),(15931,1314,'default_password_nag','1'),(15932,1315,'first_name',''),(15933,1315,'last_name',''),(15934,1315,'nickname','BrainClimpson'),(15935,1315,'description',''),(15936,1315,'rich_editing','true'),(15937,1315,'comment_shortcuts','false'),(15938,1315,'admin_color','fresh'),(15939,1315,'use_ssl','0'),(15940,1315,'show_admin_bar_front','true'),(15941,1315,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15942,1315,'wp_user_level','0'),(15943,1315,'default_password_nag','1'),(15944,1316,'first_name',''),(15945,1316,'last_name',''),(15946,1316,'nickname','DulcieCBSW'),(15947,1316,'description',''),(15948,1316,'rich_editing','true'),(15949,1316,'comment_shortcuts','false'),(15950,1316,'admin_color','fresh'),(15951,1316,'use_ssl','0'),(15952,1316,'show_admin_bar_front','true'),(15953,1316,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15954,1316,'wp_user_level','0'),(15955,1316,'default_password_nag','1'),(15956,1317,'first_name',''),(15957,1317,'last_name',''),(15958,1317,'nickname','PalmaKnowles'),(15959,1317,'description',''),(15960,1317,'rich_editing','true'),(15961,1317,'comment_shortcuts','false'),(15962,1317,'admin_color','fresh'),(15963,1317,'use_ssl','0'),(15964,1317,'show_admin_bar_front','true'),(15965,1317,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(15966,1317,'wp_user_level','0'),(15967,1317,'default_password_nag','1'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL auto_increment, `user_login` varchar(60) NOT NULL default '', `user_pass` varchar(64) NOT NULL default '', `user_nicename` varchar(50) NOT NULL default '', `user_email` varchar(100) NOT NULL default '', `user_url` varchar(100) NOT NULL default '', `user_registered` datetime NOT NULL default '0000-00-00 00:00:00', `user_activation_key` varchar(60) NOT NULL default '', `user_status` int(11) NOT NULL default '0', `display_name` varchar(250) NOT NULL default '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`) ) ENGINE=MyISAM AUTO_INCREMENT=1318 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'rxeno','$P$BKWJy4Z.wdb/6IVS2QMgLIH/NfX0e9.','rxeno','rxeno@earthhertz.com','http://www.earthhertzrecords.com','2013-08-29 16:12:04','',0,'rxeno'),(2,'kgalasso','$P$B/XVmHX8iHGHLh2QxgpiCZ108KYR4W0','kgalasso','kgalasso@earthhertz.com','http://katstheory.blogspot.com/','2013-09-23 13:19:36','',0,'Kath Galasso'),(3,'exeno','$P$B1y3ZCXwtsXsTOMWQejRCGqEWOaRuJ/','exeno','exeno@earthhertz.com','http://www.earthhertzrecords.com','2013-09-23 14:07:15','',0,'Eloa Xeno'),(4,'lbzxxh520','$P$BLhYLo/amVjn1LScgYNXgu4z1CJ//E0','lbzxxh520','setitademya@hotmail.com','','2013-10-20 21:21:41','',0,'lbzxxh520'),(15,'PatrickStarke','$P$BjW6Jtk/p3kJwrsWiOdU30mw8swSNA.','patrickstarke','meredithflooddg9692@hotmail.com','','2013-10-27 07:48:30','',0,'PatrickStarke'),(6,'MindyLeavens','$P$BglNkpPzw7j/rIe0mO9EY2ngySlFhA/','mindyleavens','eileen.longworthpz118@hotmail.com','','2013-10-23 06:44:56','',0,'MindyLeavens'),(7,'Bertie6160','$P$BHBODKylN6i9qYQVp2KFZRdPI9Mtlx1','bertie6160','amberbasfordx006@hotmail.com','','2013-10-23 21:22:43','',0,'Bertie6160'),(8,'rodrigosantana1751','$P$BCwwd7WOmCiBojTFkNe.Crpt5OBoSY.','rodrigosantana1751','damianwojtecki80@gmail.com','','2013-10-24 13:08:26','',0,'rodrigosantana1751'),(9,'Gertrude53S','$P$BBmsDApVFn9ryYNBKhgnrigM8igQ2e/','gertrude53s','ilana.michaelb863@hotmail.com','','2013-10-25 02:59:25','',0,'Gertrude53S'),(10,'ErlindaVSWZ','$P$B2jDHlBSfWeq.Y9oIdBt/8SiM95rVX/','erlindavswz','kelseyirvingo6976@hotmail.com','','2013-10-25 04:08:38','',0,'ErlindaVSWZ'),(11,'MandyBrower','$P$BmSy1LT.hQrIAdVtkst/sZ9r1bAHIw/','mandybrower','enesakopkae@hotmail.com','','2013-10-25 18:14:26','',0,'MandyBrower'),(12,'HayleyBarrallie','$P$BbhBGRgmIpPxfX8VmMzUT5R4X4YBVl.','hayleybarrallie','carissa.vernonh0317@hotmail.com','','2013-10-25 19:35:18','',0,'HayleyBarrallie'),(13,'NidiaLockwood','$P$BgApblGfqE/adsqozRLyaNLn4mqCdx.','nidialockwood','twila.essexfc593@hotmail.com','','2013-10-26 03:27:33','',0,'NidiaLockwood'),(16,'SheltonStLedger','$P$BFK.KUdYKkoI0pnWSrOTdvvczO45tO/','sheltonstledger','Caraluw470@hotmail.com','','2013-10-27 09:32:20','',0,'SheltonStLedger'),(17,'KindraCcsvuftav','$P$BI/9yx66r0eQfHdyLC3jfherdlFTct/','kindraccsvuftav','sistofradet@hotmail.com','','2013-10-28 03:15:29','',0,'KindraCcsvuftav'),(18,'Valarie99S','$P$BrGvrz/eFXZmUu3ySiMaeXeCO95aNh0','valarie99s','louise.nashyj9428@hotmail.com','','2013-10-28 18:23:13','',0,'Valarie99S'),(19,'ChristineStrunk','$P$BAakOBai7Itq1L2wugRU.OjIPNwNqZ.','christinestrunk','elainedaffmk896@hotmail.com','','2013-10-31 04:21:35','',0,'ChristineStrunk'),(20,'BEDDinaheqh','$P$BSoPkyoZ6or1iEizNLGmSTsHloVn4y/','beddinaheqh','ashley.underwoodiv727@hotmail.com','','2013-10-31 04:34:54','',0,'BEDDinaheqh'),(21,'BeatrizHavelock','$P$By2pSJv8SMDaGA7FgY.k0UmLq3JMRT1','beatrizhavelock','cathy.lakeak9063@hotmail.com','','2013-11-01 00:41:13','',0,'BeatrizHavelock'),(22,'AnnetteKelynack','$P$BcF56ZukGayLYDSYzSwHqei91/3nn1.','annettekelynack','astrid.andrewsy3803@hotmail.com','','2013-11-02 11:14:48','',0,'AnnetteKelynack'),(23,'VilmaSturdivant','$P$B0MAmiyGuq9jym/Ncel7zZdZYoiuDX0','vilmasturdivant','marypipperw0190@hotmail.com','','2013-11-02 20:00:18','',0,'VilmaSturdivant'),(24,'MadisonQQGD','$P$BzyqoGQctW4QYQ19Th0uE4bvVX29sT.','madisonqqgd','pearl.parishxk695@hotmail.com','','2013-11-03 05:27:47','',0,'MadisonQQGD'),(25,'JadaBonetntcsj','$P$BrQ9peR9X4D98k5KlT4P1Zjx7eAGwa1','jadabonetntcsj','giabaldwinm603@hotmail.com','','2013-11-03 20:31:39','',0,'JadaBonetntcsj'),(26,'GuillermoEuy','$P$B7cYQ1kCKUlMPhtsc7HEBvX6zotKyg0','guillermoeuy','Cleotildejhz872@hotmail.com','','2013-11-05 00:56:49','',0,'GuillermoEuy'),(27,'Deloras70H','$P$B.2QIbQpPlQ/aFTN4autfIN3A4BuRD0','deloras70h','hayley.winslowg180@hotmail.com','','2013-11-05 10:58:25','',0,'Deloras70H'),(28,'TarahMcReynolds','$P$BdjmkTElsSC9WqwOJrI0aJ7Mn6RCRY.','tarahmcreynolds','sharon.brettxn407@hotmail.com','','2013-11-05 22:06:59','',0,'TarahMcReynolds'),(29,'SanoraCPIO','$P$Bk0qbXkB39/Y27Kpt1GfrV5dzX8rKg/','sanoracpio','neymcgovern@hotmail.com','','2013-11-06 03:12:21','',0,'SanoraCPIO'),(30,'BrigidaSaylor','$P$Bq4Q/tVhrkrMJvQpAZmg3tcxCIzV8u/','brigidasaylor','lynwoodfong2487@mailnesia.com','','2013-11-07 02:08:24','',0,'BrigidaSaylor'),(31,'KristaParramore','$P$BXjunEs/qL6rhmp/4Uk4AX1U35xlxR0','kristaparramore','destiny.acherst633@hotmail.com','','2013-11-08 17:23:38','',0,'KristaParramore'),(32,'MaryanneByrne','$P$Bl4Z9BHQWPZSvAbLSdgNSyV/2QnRwO/','maryannebyrne','may.nottsn5696@hotmail.com','','2013-11-09 01:18:59','',0,'MaryanneByrne'),(33,'FerdinandLDIM','$P$B1Kc/e/UGE.a0touuBlQsiYUQXF5VU.','ferdinandldim','rachel.woodwardyo321@hotmail.com','','2013-11-09 10:56:34','',0,'FerdinandLDIM'),(34,'AngelaO16dhmqel','$P$B01/uBy08v54aY3moY2OezszNWpd7E0','angelao16dhmqel','pennybuckinghamshirers086@hotmail.com','','2013-11-09 22:46:42','',0,'AngelaO16dhmqel'),(35,'DexterLittle','$P$B2JLiygmKqzKINr5jTubHt4EnNUcDo0','dexterlittle','linaaustinzr105@hotmail.com','','2013-11-10 02:01:20','',0,'DexterLittle'),(36,'Pauline97R','$P$BsJrX7GS0s/zXGXr18bLN0sbA8.GXZ/','pauline97r','shannondodsworthm033@hotmail.com','','2013-11-10 05:57:57','',0,'Pauline97R'),(37,'LaylaBustard','$P$BDtuex.bjS6BLlK9UjmrksNFQWJy4O0','laylabustard','courtney.wessexyk726@hotmail.com','','2013-11-10 10:21:15','',0,'LaylaBustard'),(38,'KathrinSamuels','$P$BtdO6kfqJtEYpwGpB0moM9JHlvh8aF.','kathrinsamuels','janicedrakemw7640@hotmail.com','','2013-11-10 15:04:45','',0,'KathrinSamuels'),(39,'TeddyPrather','$P$BDn3WYikPoaQ19K6jVT6ZzFsiEgqqI/','teddyprather','StrangeSongs683@hotmail.com','','2013-11-11 19:56:49','',0,'TeddyPrather'),(40,'TheronScribner','$P$Brc2e9sPBBgLnNpabe.q/qsZhnQUUA/','theronscribner','georgiaheywoodz5206@hotmail.com','','2013-11-11 21:02:51','',0,'TheronScribner'),(41,'DeonValenzuela','$P$BA/plMnvoLjFtLj5xvmoOczazNb0gu1','deonvalenzuela','cruzxfj@hotmail.com','','2013-11-12 01:50:29','',0,'DeonValenzuela'),(42,'RhondaG45wpva','$P$BlCfYpFLROxOd5zC/jLHfzkxTcxJUL/','rhondag45wpva','estelle.dudleyxk181@hotmail.com','','2013-11-12 18:36:51','',0,'RhondaG45wpva'),(43,'EmelyGoble','$P$BTV4gYEXw7iyctxDXUYddNPdB.XaCX0','emelygoble','sarah.rhodesd419@hotmail.com','','2013-11-12 23:27:22','',0,'EmelyGoble'),(44,'RippBoisseau543','$P$BmrEhmJBOWkG9Ei5GxxvxjsaEieJsi0','rippboisseau543','ffavidfs001@hotmail.com','','2013-11-13 06:18:01','',0,'RippBoisseau543'),(45,'kfjgglfdfghhgkjhgfhjkflok','$P$BfHYJiSusyEbLF5XRUJiTiHgf5Nv8A/','kfjgglfdfghhgkjhgfhjkflok','romek.kujko@poczta.pl','','2013-11-13 19:11:51','',0,'kfjgglfdfghhgkjhgfhjkflok'),(46,'fdffdFD54','$P$BEk//Fqv4oY29ooKTb2/xeifGLCRZC0','fdffdfd54','1@e-books24.pl','','2013-11-14 15:41:11','',0,'fdffdFD54'),(47,'Theodoreerj','$P$BOombumNWjHL/1y2fIJUQQEna8EawK/','theodoreerj','przemek.bronk@poczta.pl','','2013-11-14 19:06:35','',0,'Theodoreerj'),(48,'LouveniaF34','$P$BlorKQXbz1mUZmwpOqPaVn1L9GYhnW/','louveniaf34','josephinesaxxono275@hotmail.com','','2013-11-15 23:35:42','',0,'LouveniaF34'),(49,'BreannaHursey','$P$BRB6Wmg4IcpQTXbSfQ.E3nZmFeGgEx1','breannahursey','eliasqus@hotmail.com','','2013-11-17 04:34:50','',0,'BreannaHursey'),(50,'HelaineX93','$P$BXGsMP6D.ClJuCkykOjDfPJ0UAHFCA/','helainex93','jewel.stockwellx1943@hotmail.com','','2013-11-17 05:48:25','',0,'HelaineX93'),(51,'JaydenSpina','$P$Bnp3IlJCc1NJ8T7W.n2ntrnby7cGrq.','jaydenspina','linasevenar206@hotmail.com','','2013-11-17 17:33:52','',0,'JaydenSpina'),(52,'MichaelLhotsky','$P$BsGXiVuFwDLbs0gs2KUDhrBGUOmrj71','michaellhotsky','tonya.fillmorekq3297@hotmail.com','','2013-11-18 04:11:03','',0,'MichaelLhotsky'),(53,'BevConnolly','$P$B.R304wb091cAKfXj07Jy.aaRkjE4H0','bevconnolly','amberbaldwinav436@hotmail.com','','2013-11-18 19:36:52','',0,'BevConnolly'),(54,'Adelaide1179','$P$Bju6zaXa0B7DX9lmY4B96wczccNcgM0','adelaide1179','harmonybalshawh703@hotmail.com','','2013-11-19 01:59:12','',0,'Adelaide1179'),(55,'MohamedPerdue','$P$B1azCBjWXB2472iVlWkUNd32OddD3H1','mohamedperdue','juliadarwoodwu135@hotmail.com','','2013-11-21 04:19:43','',0,'MohamedPerdue'),(56,'MollieBonython','$P$B5xGJzZZTeHQuS3x1.oGdcF3wBtT48/','molliebonython','abullerwelld@hotmail.com','','2013-11-21 21:24:04','',0,'MollieBonython'),(57,'SalvatoreBandy','$P$BwheMpWb38K0QIzHHuaoo0yOlN4/eO.','salvatorebandy','okulamoroc@hotmail.com','','2013-11-22 07:51:29','',0,'SalvatoreBandy'),(58,'KZQFidelia','$P$BkeBWbKsOE26ifkAOwrtF0kWsUMplO1','kzqfidelia','SteadfastCracker214@hotmail.com','','2013-11-22 21:53:11','',0,'KZQFidelia'),(59,'BrandenHuxley','$P$BNoHyO7WZYOUDFH/NwC02M.AeZK8l51','brandenhuxley','anthonybracy6340@spamfree24.org','','2013-11-23 19:43:40','',0,'BrandenHuxley'),(60,'ArnetteMonteneg','$P$BFzW1uWzrAcKRpkog6MEnJdScXmszo.','arnettemonteneg','Kenyattazyapklfg69@hotmail.com','','2013-11-23 21:16:33','',0,'ArnetteMonteneg'),(61,'HongLaidley','$P$Bv2NxlUaB9awpXoxO519IKZOnGTCio.','honglaidley','astrid.oxag5083@hotmail.com','','2013-11-25 20:34:20','',0,'HongLaidley'),(62,'JeraldBrient','$P$BnORyrI8RKiB74smGu7.KLvv3as/nd/','jeraldbrient','keywanbright@hotmail.com','','2013-11-26 04:47:09','',0,'JeraldBrient'),(63,'MichelineTryon','$P$BNmiuzDPiINP.XpeSkPCZOjY.Ddigw.','michelinetryon','peterlaplume2009@hotmail.com','','2013-11-27 14:15:54','',0,'MichelineTryon'),(64,'Hassie50Inctvv','$P$B0g0XXP5n/yHcYqnxFQv0s3jkpH/oQ.','hassie50inctvv','jorgeaewd@hotmail.com','','2013-11-27 14:45:02','',0,'Hassie50Inctvv'),(65,'ArleneNFRciniux','$P$BZd12xfkfPCYKqUU0NDdRLob6tL8Xb/','arlenenfrciniux','DamagingGun517@hotmail.com','','2013-11-27 19:19:32','',0,'ArleneNFRciniux'),(66,'Elvia95Uvrzyg','$P$BMAG3sWj7G8ildgxIS06kBufE9Ahsw.','elvia95uvrzyg','fuacru@hotmail.com','','2013-11-28 02:02:28','',0,'Elvia95Uvrzyg'),(67,'Meghan8481','$P$BEd.kWdLyxjFUGi8LlrKVPWTpQpTwp1','meghan8481','kdodownd@hotmail.com','','2013-11-28 13:01:24','',0,'Meghan8481'),(68,'Oma0671zlcpenr','$P$B.Putpp6gAyr2LBrOmKv7SJ2MpRQMq0','oma0671zlcpenr','SeemlyHospital611@hotmail.com','','2013-11-28 19:52:07','',0,'Oma0671zlcpenr'),(69,'DelmarPolley','$P$BieW5D.RVP0HysGLOWX.pqhg2bR2cP1','delmarpolley','housecbjg@hotmail.com','','2013-11-29 02:14:16','',0,'DelmarPolley'),(70,'JackiePowe','$P$ByFh6mJhyDcENXsndMmMmreAZjgnZl1','jackiepowe','juliettebiggz5986@hotmail.com','','2013-11-29 04:45:30','',0,'JackiePowe'),(71,'RoslynHargrave','$P$BiU.gEgXDi.OQMPQOQEombf9ceh/IN1','roslynhargrave','ricocdgt@hotmail.com','','2013-11-29 20:00:00','',0,'RoslynHargrave'),(72,'Richelle9386','$P$B1r79O8HfRcBVyuOUZJXpSNUwTg00I1','richelle9386','becbecka@hotmail.com','','2013-11-30 14:34:58','',0,'Richelle9386'),(73,'GemmaJuryhhfmx','$P$BvoW48QrsRE9OufPNj4iCZmvAFC.mx.','gemmajuryhhfmx','sammybwjp@hotmail.com','','2013-12-01 19:58:08','',0,'GemmaJuryhhfmx'),(74,'DaniRqhywliru','$P$BM5ZbGaiLmtThoJoTbfHd5fo4OPWYP1','danirqhywliru','dursoasbd@hotmail.com','','2013-12-01 21:42:23','',0,'DaniRqhywliru'),(75,'LinnieBecker','$P$BWjWnshS7/fWdioIVpQGoZ38XxGHbn.','linniebecker','billyjbbk@hotmail.com','','2013-12-01 23:10:38','',0,'LinnieBecker'),(76,'GenevaDexter','$P$BX2Reko0NAwE37CovV1Mwe1X00zF0g/','genevadexter','meebpmc@hotmail.com','','2013-12-02 01:31:33','',0,'GenevaDexter'),(77,'KimberlyCKWI','$P$Bdx3tyRspuO9Oa5po3.qy8XlUkO62O0','kimberlyckwi','isabeloldhamgy143@hotmail.com','','2013-12-02 05:08:40','',0,'KimberlyCKWI'),(78,'SVBJamilackpu','$P$BOyZNCvZlf2j2NuSbzX4MphYPGgn9u.','svbjamilackpu','ngassnyre@hotmail.com','','2013-12-02 17:46:40','',0,'SVBJamilackpu'),(79,'LeviOztateygshh','$P$B0GHGTk7wS.D6n.RFq3mrkWBHBAQXz1','levioztateygshh','heidiirond881@hotmail.com','','2013-12-02 18:04:54','',0,'LeviOztateygshh'),(80,'Illubbloxia','$P$B/slun6eo7Un1Fu/R5r1ZHyKLWiiGA1','illubbloxia','icllicari@hotmail.com','','2013-12-02 18:13:10','',0,'Illubbloxia'),(81,'FRIMaybelle','$P$BkiKFjTALOUbzUmSF3bwDtAeL53WBc0','frimaybelle','isabellemonty7609@hotmail.com','','2013-12-03 04:05:54','',0,'FRIMaybelle'),(82,'DeelaSkekWelD','$P$Baj4WfDNgI7azxlYz89nJNXs6tK/Eh1','deelaskekweld','jingysing0209@gmail.com','','2013-12-03 10:24:53','',0,'DeelaSkekWelD'),(83,'easifprcq','$P$B6ekb.eyt6pL18DqdlIJ1TDKTDYvBn1','easifprcq','woodfieldcx@hotmail.com','','2013-12-03 12:37:38','',0,'easifprcq'),(84,'Kemnettelay','$P$B9SWcDy/PbG6jOmQxCOQZrDDMGz2pT1','kemnettelay','mackessym@hotmail.com','','2013-12-03 13:30:11','',0,'Kemnettelay'),(85,'sizetessy','$P$BowM6/HFuJQ0toKsAW8HCHwpxWFrPb1','sizetessy','hibbittsk@hotmail.com','','2013-12-03 14:10:53','',0,'sizetessy'),(86,'Argubboto','$P$BwtEUp43qj8rb4MJVZ0w/2Lm0eQ.D/0','argubboto','loewenrae@hotmail.com','http://www.aliciawelcomephotography.com','2013-12-03 14:41:08','',0,'Argubboto'),(87,'teegepneula','$P$BBilEbUc6TQbYgBAT1C4NCSeqty/Ii0','teegepneula','lmaannasi@hotmail.com','','2013-12-03 17:13:24','',0,'teegepneula'),(88,'ConstanceEstes','$P$BxoZ4tFyc3Ax/Yla8tJ9O5IRwPelam.','constanceestes','diana.jackmanzt7246@hotmail.com','','2013-12-04 00:45:34','',0,'ConstanceEstes'),(89,'GilbertoGilbert','$P$BCzpWeSMjZkT4z1qpUWmhMVjWU8E5O.','gilbertogilbert','foranargx@hotmail.com','','2013-12-04 03:30:03','',0,'GilbertoGilbert'),(90,'LizaShufelt','$P$Bl9aY35oYBmM1URgBvHNpGywXKqZ3C/','lizashufelt','polapoll@hotmail.com','','2013-12-04 05:23:45','',0,'LizaShufelt'),(91,'bebrissecer','$P$BiV9BCEL8SHTt4cRj0DxVagmvjoPUx0','bebrissecer','pieidambe@hotmail.com','','2013-12-04 18:16:24','',0,'bebrissecer'),(92,'kazhx','$P$B83DlquaekVEswg7if0jsGq6DgoDYP/','kazhx','fgrgr@hotmail.com','','2013-12-04 20:47:09','',0,'kazhx'),(93,'IsidroSwope','$P$B3VFyWmgVBuCC802qmW42LTmf0mCKT1','isidroswope','farrahlawmenzt673@hotmail.com','','2013-12-05 00:22:36','',0,'IsidroSwope'),(94,'jenkehl','$P$BdEo3SlH/ofdF4d1DLwCWmI4eosgQ3/','jenkehl','jen@raisedontheradio.com','','2013-12-05 03:36:06','',0,'jenkehl'),(95,'kvioervded','$P$Bj5Mav1rBQcdm.EsnS2ln5X5oLfan8/','kvioervded','antoninifb@hotmail.com','','2013-12-05 06:59:52','',0,'kvioervded'),(96,'Aidewayembami','$P$BrnKEwCVbI0HFlELDa9BKV3DpnNDce.','aidewayembami','urtthadok@hotmail.com','','2013-12-05 08:44:09','',0,'Aidewayembami'),(97,'prefeaphy','$P$BWS5K.qxEaHABFj5bYc5rAnCNRomGH1','prefeaphy','devereuxch@hotmail.com','','2013-12-05 13:50:14','',0,'prefeaphy'),(98,'AlicaBwmkwyra','$P$Bs0YKUYo6YbJ8cR5rD51jH1xkgQ/5g0','alicabwmkwyra','nebozellr@hotmail.com','','2013-12-05 23:39:05','',0,'AlicaBwmkwyra'),(99,'SharronW05','$P$Bx9HOQyVy8ms9reVUJI2wJdxGJ3SbI0','sharronw05','sharron_stump52@d.best4mail.com','','2013-12-06 06:06:37','',0,'SharronW05'),(100,'DewittSnelling','$P$BNvOMrsTvDKYV2JOO7IvYHeKfuSxUm0','dewittsnelling','determinedoutdo5SY@laposte.net','','2013-12-06 08:56:19','',0,'DewittSnelling'),(101,'JamesBabbage','$P$BsinxEgLzljzr7PS02eHj1MEYrqZIS1','jamesbabbage','poster@krik.pl','','2013-12-06 10:57:35','',0,'JamesBabbage'),(102,'Sorgrobby','$P$BJAFlVspA0d0K8Xn1dHTYtyfmmqRIQ1','sorgrobby','entinyarero@yandex.ru','','2013-12-06 16:55:25','',0,'Sorgrobby'),(103,'MagdalenaAultma','$P$B9tp8SWLgTQh/YUNGEFa.KOFK/lcf.1','magdalenaaultma','myeremely@hotmail.com','','2013-12-06 21:26:07','',0,'MagdalenaAultma'),(104,'NevilleMahomet','$P$BOedZRN6t7irAPp.kv3PF0yhsDfq4w.','nevillemahomet','glossyhorse26chqh@laposte.net','','2013-12-06 22:58:22','',0,'NevilleMahomet'),(105,'mxfktovxx','$P$BS32.Jppcyy.CvyJYMLrBz9T8Dn5/Y/','mxfktovxx','bitterdclov@hotmail.com','','2013-12-07 01:04:43','',0,'mxfktovxx'),(106,'EllaRFVoyawlsf','$P$Bhk5p7W.ALlF3AfcTnSpqxq6/Drivj/','ellarfvoyawlsf','piquanttact63C3j@laposte.net','','2013-12-07 02:12:00','',0,'EllaRFVoyawlsf'),(107,'dkbcliyel','$P$B9K8hJSC6j8s0JI2G/Lh6Q3JvXBpTK/','dkbcliyel','biondiqdr@hotmail.com','','2013-12-07 03:02:31','',0,'dkbcliyel'),(108,'KarenVFCpya','$P$BCw24kMa.0yvMow/YgQA5Iys3N3mJ..','karenvfcpya','yjoyjoha@hotmail.com','','2013-12-07 03:07:45','',0,'KarenVFCpya'),(109,'LatanyaMIJ','$P$BYKHGB3fmjcgXKcrIidN5D.PGzkLeL1','latanyamij','brokenzit6Yx4eZ@laposte.net','','2013-12-07 04:44:00','',0,'LatanyaMIJ'),(110,'BereniceBeasley','$P$BlWuUojTu8ZeVSE0OfM1XkaHIrHoDt0','berenicebeasley','woozyfuel861@laposte.net','','2013-12-07 07:29:23','',0,'BereniceBeasley'),(111,'MircooM','$P$B/ePoGDpisrscT0JnKwgkgcewQUJ4a/','mircoom','447mircoo@hotmail.com','','2013-12-07 10:02:45','',0,'MircooM'),(112,'KendraBalser','$P$B44/Ziuit7Gc7AP36eX6avYPXidMjo0','kendrabalser','HotDistribution747@hotmail.com','','2013-12-07 10:29:17','',0,'KendraBalser'),(113,'PerryHenson','$P$BYzXx.G2CwNg79W1mjslX4j8d65qdn/','perryhenson','ssyissyc@hotmail.com','','2013-12-07 11:08:48','',0,'PerryHenson'),(114,'Francesco83W','$P$B9WBFMuUlyfWRro6jsMOLDb/xIhDxx0','francesco83w','locermanb@hotmail.com','','2013-12-07 16:32:21','',0,'Francesco83W'),(115,'ZZDLillian','$P$BdzA5Z4cif4WH9UfJDUc20VJIrndlL.','zzdlillian','brandy.phippso174@hotmail.com','','2013-12-07 19:14:16','',0,'ZZDLillian'),(116,'NannieSilvestri','$P$BbtC9drU7pPidtrnWdYIIYzAQE0Iia.','nanniesilvestri','magicalflaw12kiR@laposte.net','','2013-12-08 00:12:30','',0,'NannieSilvestri'),(117,'umlegtaej','$P$BYPgAk/xX1BPPojz96rF08i54nfC4Y/','umlegtaej','bonifaceea@hotmail.com','','2013-12-08 03:51:27','',0,'umlegtaej'),(118,'GenevieveTozer','$P$BsBoJ6do641Bgljp4lpCvBIQzk1E0l1','genevievetozer','allenpkr@hotmail.com','','2013-12-08 05:52:23','',0,'GenevieveTozer'),(119,'ZackGCCNutii','$P$BUD76RhFwWSbwYH1DT5CD7F.lszzbz0','zackgccnutii','zenek1@krik.pl','','2013-12-08 10:56:56','',0,'ZackGCCNutii'),(120,'LakeishaSoper','$P$BRpG3kP1Ibdb66Aiu5EnQgsA6gcw6M0','lakeishasoper','nshhingle@hotmail.com','','2013-12-08 12:59:58','',0,'LakeishaSoper'),(121,'AlejandraGoulbu','$P$BHMQ4xFdquHWOJQpPXRvx6HKwPVCZG1','alejandragoulbu','haleybootsfx741@hotmail.com','','2013-12-08 18:24:29','',0,'AlejandraGoulbu'),(122,'ujecacee','$P$BKbbw2knVGe50dPPvf8yRdlljAPqoh0','ujecacee','idiqigoce@dkkffmail.com','','2013-12-08 18:25:55','',0,'ujecacee'),(123,'unagawas','$P$Bwc38U5aBgtZyxMfdLWleFs4TtiF1q.','unagawas','aicillib@dsfdeemail.com','','2013-12-08 18:25:55','',0,'unagawas'),(124,'wgezoqano','$P$B3bLj4ZRWt0HS0oKLEgk41KjcxFMpG0','wgezoqano','uruwipuf@asdasdd.com','','2013-12-08 18:26:04','',0,'wgezoqano'),(125,'Lnq aqb y1fagovc','$P$Bt3NP7JfmlU9u2ktpN3qDgddlCX69n.','lnq-aqb-y1fagovc','buchwaldupt@hotmail.com','','2013-12-08 18:38:08','',0,'Lnq aqb y1fagovc'),(126,'exeflefuborgo','$P$B9GlV848dsJPRMnUZy2HdUfCuCxEaW/','exeflefuborgo','nngttpopu@hotmail.com','','2013-12-09 01:07:47','',0,'exeflefuborgo'),(127,'DeandreSnowden','$P$ByA/kCJ.EfNuXuBrHYS1vFkc0BsLte0','deandresnowden','abnormalitem95T@laposte.net','','2013-12-09 03:54:31','',0,'DeandreSnowden'),(128,'MackN65daqdempr','$P$B303PY4N1kgGh5.3naTh8KXEA5n8vZ.','mackn65daqdempr','boilingtutor64Qi4T@laposte.net','','2013-12-09 05:32:24','',0,'MackN65daqdempr'),(129,'hvdmynnvy','$P$BcebLtPCEWkByC9XFYIRj.NZO7Gce6.','hvdmynnvy','bogdalizm@hotmail.com','','2013-12-09 13:06:24','',0,'hvdmynnvy'),(130,'BryantRitchie','$P$BrwdvsyUpJaK5FNxSmi2sYJfzyPkIF0','bryantritchie','illegaldrink96TfX7y@laposte.net','','2013-12-09 19:35:18','',0,'BryantRitchie'),(131,'NelliePrimrose','$P$BY2j1rhkOfLdhXfcunNtwQAo1sJYd2.','nellieprimrose','raven.madisontf0571@hotmail.com','','2013-12-09 21:08:04','',0,'NelliePrimrose'),(132,'vjqgtxuin','$P$BYEznSSFf9cuO0WJq041qoou8H9JlX/','vjqgtxuin','blowerthvky@hotmail.com','','2013-12-09 21:30:43','',0,'vjqgtxuin'),(133,'VictoriaChishol','$P$BEDZmBy4ZVtVrfKloN6.PrId5IsdB30','victoriachishol','brainbznt@hotmail.com','','2013-12-10 02:59:59','',0,'VictoriaChishol'),(134,'grwjgqurx','$P$Bgmnb8H0lCmGZ51fj3RKVG.gIrPhRj/','grwjgqurx','bursonks@hotmail.com','','2013-12-10 05:05:14','',0,'grwjgqurx'),(135,'hlrcegxcr','$P$BvvTtA1E.WEHVFIHVQa66FIAFyxSm90','hlrcegxcr','burrellxynp@hotmail.com','','2013-12-10 05:05:15','',0,'hlrcegxcr'),(136,'rawuwxpjb','$P$BBwqaVIevJKSF/56IM/YJDCJe1/Aeo0','rawuwxpjb','burnsideitc@hotmail.com','','2013-12-10 05:06:26','',0,'rawuwxpjb'),(137,'Lyncbabasty','$P$BGluHIQJFbgkTeDmyWLSafRieZEU2k/','lyncbabasty','kalikalas@hotmail.com','','2013-12-10 13:31:52','',0,'Lyncbabasty'),(138,'Martelariet','$P$Bh5QpyURAs8p7EYk0eObwWLmh3kjQF.','martelariet','kolomy.tsyura@gmail.com','','2013-12-10 17:12:55','',0,'Martelariet'),(139,'fgt65ggjjg','$P$Bk5cYiBhB0ZKbavEQ9gdDrAajeiVUl1','fgt65ggjjg','rot@e-books24.pl','','2013-12-10 19:00:44','',0,'fgt65ggjjg'),(140,'JeremiahDeluna','$P$Be4ZT1Q5.TbWs5OqOBfZtSEcBqpNuV/','jeremiahdeluna','kaitlyn.penneyv2877@hotmail.com','','2013-12-10 21:10:05','',0,'JeremiahDeluna'),(141,'MinnaHarbin','$P$BFRobbs78fkgqWXSGDhhVcwyTfl9ld.','minnaharbin','onayouboc@hotmail.com','','2013-12-11 01:32:03','',0,'MinnaHarbin'),(142,'ZulmaAKHyce','$P$Bxi3a8CtV6OmRQRyXaOK/UGEbMThVn.','zulmaakhyce','futuristicpsych2G491@outlook.com','','2013-12-11 07:09:15','',0,'ZulmaAKHyce'),(143,'Laurence88S','$P$Btoez2Yif0vOdSoPDiwj0oH8sOz9AG.','laurence88s','beatricedansonad0956@hotmail.com','','2013-12-11 10:17:39','',0,'Laurence88S'),(144,'IsraelEldred','$P$BJHswOIZmKO/ZF0j1I5/WhWduNInPK1','israeleldred','kelly.baurjz086@hotmail.com','','2013-12-11 10:57:45','',0,'IsraelEldred'),(145,'AnnieScutt','$P$BW/Wp8Xzwil0Bkq1f6Zb0B.lLx5Fov.','anniescutt','battsbryj@hotmail.com','','2013-12-11 11:24:59','',0,'AnnieScutt'),(146,'NiamhAjqwcbdpt','$P$Bdz6Wtyb7iqKg8POdRyeJL5c5g3U871','niamhajqwcbdpt','foltzdmn@hotmail.com','','2013-12-11 12:42:26','',0,'NiamhAjqwcbdpt'),(147,'eugjufokof','$P$BwjdYG7w9VdoJ/k4LWokst.jFhIqNx0','eugjufokof','lyewicivu@dkkffmail.com','http://orderlevitra20mg.org/','2013-12-11 19:51:48','',0,'eugjufokof'),(148,'axubodetosax','$P$BCIy6u2unBjRx5AYHjSpQDf81OgmcK.','axubodetosax','owafedi@dsfdeemail.com','http://orderlevitra20mg.org/','2013-12-11 19:52:05','',0,'axubodetosax'),(149,'uatomis','$P$BBXfcvPipp6F/Q6iyKJkyeTHS0JmsT1','uatomis','oruvaxuu@asdasdd.com','http://orderlevitra20mg.org/','2013-12-11 19:54:27','',0,'uatomis'),(150,'antiguehant','$P$BpTKUXil.568SMao68tmBKo5qf0tDx.','antiguehant','oproedeke@hotmail.com','','2013-12-12 05:41:42','',0,'antiguehant'),(151,'Antoniomen','$P$By47UBbMy9kSCiureD./eaw7CLgoks.','antoniomen','jintiansi@hotmail.com','','2013-12-12 09:45:55','',0,'Antoniomen'),(152,'KendallScrymgeo','$P$BZ4me.4Zm/OtBijZOxm1rn8nmm.6XQ/','kendallscrymgeo','chaekraus@hotmail.com','','2013-12-12 11:39:03','',0,'KendallScrymgeo'),(153,'deeric','$P$Br28JH37K//lpUd4rqlyw0yTtlAHlQ.','deeric','enaawhit@hotmail.com','','2013-12-12 12:38:53','',0,'deeric'),(154,'MircooI','$P$BiKi9QdXVJkdW9WZQqWsODyu/5aGK5.','mircooi','887mircoo@hotmail.com','','2013-12-12 13:43:39','',0,'MircooI'),(155,'KatherinaQwi','$P$BEx.bM2WUgrlqYTnRbxZeYYGiuRxJM.','katherinaqwi','zealousdairy50rx@laposte.net','','2013-12-12 15:53:53','',0,'KatherinaQwi'),(156,'Zy1Ve9Ns0','$P$B0dfgwQptNSBE4VP8HeKptbuyb.nQQ1','zy1ve9ns0','pultzmorg@hotmail.com','','2013-12-12 17:17:52','',0,'Zy1Ve9Ns0'),(157,'MaurinePatten','$P$BQGAQT9laEMiwGd7nvUz0Ah7vbVtbu1','maurinepatten','tina.brothersonu9060@hotmail.com','','2013-12-12 19:43:29','',0,'MaurinePatten'),(158,'ZeldaMiramontes','$P$B7IEn8dU.khA5TQfXPsUoVzCTC36Ij1','zeldamiramontes','aprilrooneyas3722@hotmail.com','','2013-12-13 00:18:28','',0,'ZeldaMiramontes'),(159,'Cw7Zn4Xw0','$P$B78TjDJD5RQImrE2zrH7cyH1/b.jiR.','cw7zn4xw0','xiarixue11@outlook.com','','2013-12-13 08:36:38','',0,'Cw7Zn4Xw0'),(160,'BernieGott','$P$BsQl28VvFtmJO82SMLXngJbB9SqJ1R.','berniegott','ichhshifi@hotmail.com','','2013-12-14 05:52:08','',0,'BernieGott'),(161,'JanessaG42','$P$B9AttjsuX0PeGMutMt25QTuURXOZdm.','janessag42','fannyckv@hotmail.com','','2013-12-14 14:23:56','',0,'JanessaG42'),(162,'LincolnPyf','$P$BRFz1VKhqZ0.h5AtS/73heTGTCvVpK1','lincolnpyf','dursobscb@hotmail.com','','2013-12-14 15:06:27','',0,'LincolnPyf'),(163,'portru','$P$Bw8lHrzXVZNwCXRF3IDhnhFQkEwcOx1','portru','lamdeodan@hotmail.com','','2013-12-14 15:32:07','',0,'portru'),(164,'WUKDeborah','$P$BizS0QcXe9oO6qThJJejgZi2SJ9zQh1','wukdeborah','willa.quintl298@hotmail.com','','2013-12-14 21:50:39','',0,'WUKDeborah'),(165,'LucianaArreguin','$P$BOfMUFNVb0607lzJBjJ/K0WORQs4LL1','lucianaarreguin','ruddypsychology2975@outlook.com','','2013-12-14 23:10:28','',0,'LucianaArreguin'),(166,'FranceAlarcon','$P$B33/3Exlfz9H3wNjiDCkuB77hGaY8G/','francealarcon','dustyintermissi2xr6@outlook.com','','2013-12-14 23:19:43','',0,'FranceAlarcon'),(167,'GeraldT44ha','$P$BjJpUU2BUQrq4YQhL5S8ZYkyiP94gz0','geraldt44ha','devinxre@hotmail.com','','2013-12-14 23:48:24','',0,'GeraldT44ha'),(168,'GabriellaMetcal','$P$BxBFBmzLPYstfHOFFwh4P/FByyc5EA0','gabriellametcal','disagreeableanoit724@outlook.com','','2013-12-15 00:36:02','',0,'GabriellaMetcal'),(169,'NevilleRasch','$P$B5WZ4Y97GrueTTF1p3S7XLT2mzrZxg.','nevillerasch','eppscryr@hotmail.com','','2013-12-15 01:13:26','',0,'NevilleRasch'),(170,'LourdesSelwyn','$P$BknfF1TdWRmG758UJBO9RkKpSGcG7q1','lourdesselwyn','erniehpuz@hotmail.com','','2013-12-15 04:44:30','',0,'LourdesSelwyn'),(171,'SilviaRickert','$P$Bhi.d7bFjE1mI22E9im/1b3bSEXjEN1','silviarickert','orangetundra26LIV@laposte.net','','2013-12-15 14:01:39','',0,'SilviaRickert'),(172,'StepanieWilber','$P$BRdK9d/ECIL4Rx5xCD9IQvFQiBkbYH0','stepaniewilber','dramaticfreewayfy339@outlook.com','','2013-12-16 16:11:34','',0,'StepanieWilber'),(173,'ioniptiot','$P$BJiQnKsk/eTArDoJQAMNaSQeKZPrMZ.','ioniptiot','adradrial@hotmail.com','','2013-12-17 01:34:07','',0,'ioniptiot'),(174,'LilaPinkston','$P$BEImxXOUgPDhpa3X.AEHp8pewDoPKD1','lilapinkston','portia.lancastermg4173@hotmail.com','','2013-12-17 08:24:00','',0,'LilaPinkston'),(175,'MircooA','$P$BU4V1G28q3wakLmwy.zGHeCd2m788P/','mircooa','729mircoo@hotmail.com','','2013-12-17 13:51:47','',0,'MircooA'),(176,'Nickolas2010','$P$Bj51NvQ79E6GxbJmiRDD2Ym0yyO7tC0','nickolas2010','alessandra.wentworthk108@hotmail.com','','2013-12-17 18:20:32','',0,'Nickolas2010'),(177,'Richardusek','$P$B1Uv2xziRp.EUkNtKLmqbnW5RjXwmw/','richardusek','timo.thytrukubik@gmail.com','','2013-12-17 21:07:56','',0,'Richardusek'),(178,'DeborahDayton','$P$BVQ3LbXL7XbMrHVoE1bIi7i8aEyl5E0','deborahdayton','sbibinfet@hotmail.com','','2013-12-17 22:59:52','',0,'DeborahDayton'),(179,'LuciaBeier','$P$BusjXcC.GRi8OPx3jas/7R52xW4BbK1','luciabeier','markystew1@ukhost-uk.co.uk','','2013-12-18 13:22:54','',0,'LuciaBeier'),(180,'SolomonSelleck','$P$BDnmXXx6w1nqdbyVCO7EjeXyS.wSbq0','solomonselleck','juliasaffordt319@hotmail.com','','2013-12-18 23:19:57','',0,'SolomonSelleck'),(181,'NapoleonRCNO','$P$BBGXcsy0oghZJXjsKT5rhRaHacu9L..','napoleonrcno','tinabrothersonr302@hotmail.com','','2013-12-19 02:11:52','',0,'NapoleonRCNO'),(182,'annormaMeelry','$P$BXxA2uip41j/26Ru8U58LXqK7gyk0l/','annormameelry','niastegui@hotmail.com','','2013-12-19 15:40:49','',0,'annormaMeelry'),(183,'KentBellew','$P$BbTdzC2ReCfdcBvl.TRlQZ9kAD6VJ0/','kentbellew','juliet.fingersef865@hotmail.com','','2013-12-19 19:59:22','',0,'KentBellew'),(184,'GregorioEverhar','$P$BBQUw35ah6/ZQxuyT8hBIgw0W5FEcz.','gregorioeverhar','receptivedogma7hi356@outlook.com','','2013-12-19 20:12:18','',0,'GregorioEverhar'),(185,'DieterSmiley','$P$B1NP3WVNYHL1BJXGG7oH6noqSiPiTy0','dietersmiley','hurttanac@hotmail.com','','2013-12-19 23:09:31','',0,'DieterSmiley'),(186,'JaniceBarnhart','$P$BvFGHjiKMAyBR..Ql.UnsUPG2khGjm0','janicebarnhart','lakessyd@hotmail.com','','2013-12-19 23:18:16','',0,'JaniceBarnhart'),(187,'Cidsaudip','$P$BvkC51jRhnUY89y1F0jvFB0BzSOAYf.','cidsaudip','niaiawil@hotmail.com','http://www.markangelil.com','2013-12-20 06:57:28','',0,'Cidsaudip'),(188,'JohnathanFollan','$P$BrTzpWquub4P7rVr0fgD4BxRPGdqNX1','johnathanfollan','fexTp6vxfLQ@pphen375.com','','2013-12-20 09:05:44','',0,'JohnathanFollan'),(189,'Excurigrearia','$P$Ba5XXVfwTWcnAgsu24QLoV7ft5dfxN.','excurigrearia','hinefranc@hotmail.com','','2013-12-20 13:48:27','',0,'Excurigrearia'),(190,'ReginaldOh','$P$Bvz32KTiVBXwP4G3swf5ApVV4lFbnQ1','reginaldoh','wskkuibu@hotmail.com','','2013-12-20 19:55:49','',0,'ReginaldOh'),(191,'BarneyFAGF','$P$BLEys/zqI6.1JcdlCOh/efM7i45/Lv1','barneyfagf','zoeyglenwoodu8977@hotmail.com','','2013-12-20 20:58:42','',0,'BarneyFAGF'),(192,'zobbyiskips','$P$BSEQZ/7QGpmU3xPNTioUan12GNq/sx1','zobbyiskips','tecillom@hotmail.com','','2013-12-21 12:51:05','',0,'zobbyiskips'),(193,'cruinuike','$P$Bqsyc56lslsB3wWtmf5HSDHimQYQWM.','cruinuike','aaaaa003@aol.com','','2013-12-21 21:10:40','',0,'cruinuike'),(194,'seapcooca','$P$B.FWhnLnqHnxwoAnCbEdH/zktJCOQt0','seapcooca','aaaaa006@aol.com','http://www.e-jemai.jp/qualification/','2013-12-21 21:10:52','',0,'seapcooca'),(195,'Spoolloks','$P$BElzqCiNHLrIDGgUma/fwrZR2nno.q0','spoolloks','aaaaa009@aol.com','','2013-12-21 21:11:07','',0,'Spoolloks'),(196,'SaraSkapy','$P$BpfnQmjZrTk9xhKDLkIWCo0HsZKeCV0','saraskapy','aaaaa011@aol.com','','2013-12-21 21:57:18','',0,'SaraSkapy'),(197,'Acoulkshook','$P$B0Ft6oDrA1o9U4Z39k5ZsyIlL0ky3J1','acoulkshook','aaaaa029@aol.com','http://www.e-jemai.jp/qualification/','2013-12-21 22:06:23','',0,'Acoulkshook'),(198,'advadvaniepiG','$P$B5dB7B9tWmn1v3ukfQ9GPArXbCdmy41','advadvaniepig','aaaaa028@aol.com','http://www.e-jemai.jp/privilege/','2013-12-21 22:06:24','',0,'advadvaniepiG'),(199,'RizKefzerry','$P$B0o6tNzuP/ROiEjQiFA9tlXE8VjCR41','rizkefzerry','aaaaa026@aol.com','','2013-12-21 22:06:51','',0,'RizKefzerry'),(200,'Alixuplivekex','$P$BVxMDZgWZjPUAKHf4Ht9iJU6yxXpJY0','alixuplivekex','aaaaa018@aol.com','http://www.e-jemai.jp/qualification/','2013-12-21 22:22:42','',0,'Alixuplivekex'),(201,'effernalifs','$P$B.WTZedy358FF6Q/RBmJXb.CGWz3u9.','effernalifs','aaaaa036@aol.com','http://www.e-jemai.jp/privilege/','2013-12-21 22:30:02','',0,'effernalifs'),(202,'LitetennySiny','$P$BeEcM3qr1ybMKLl0ncLbiHoQj4hYLz1','litetennysiny','aaaaa040@aol.com','http://www.e-jemai.jp/privilege/','2013-12-21 22:38:12','',0,'LitetennySiny'),(203,'Lacy6652wijelc','$P$BX5MAW.6PMAPcvjRBKKTMM4OCml6xs/','lacy6652wijelc','hkishenfl@hotmail.com','','2013-12-22 10:15:53','',0,'Lacy6652wijelc'),(204,'CharmainTierney','$P$BS5c0TAp0H3CdhduAm1WgCZxyi4nxK.','charmaintierney','hzhhiraea@hotmail.com','','2013-12-22 11:42:37','',0,'CharmainTierney'),(205,'Advisydrisy','$P$BJAoZXHoI2OG0Pj72LzXNuwHLhCQN01','advisydrisy','courtadme@hotmail.com','','2013-12-22 19:32:43','',0,'Advisydrisy'),(206,'VernitaY16','$P$B6oU1v2daTLDezJ3aCJXPAwDUPHs5I0','vernitay16','helen.saxxonya910@hotmail.com','','2013-12-23 04:48:50','',0,'VernitaY16'),(207,'Amyamoxylpa','$P$BVq6C6knjlfkbV0L6QGguJ2vpzU.0n1','amyamoxylpa','gomadrilosd@hotmail.com','http://atorvastatinpricecvs17422.soup.io','2013-12-23 12:36:37','',0,'Amyamoxylpa'),(208,'mkoutletuft','$P$BTRRxwqAEFhgHt7asqvQgT43MZs/Fn1','mkoutletuft','cacciafbb@hotmail.com','','2013-12-24 13:11:47','',0,'mkoutletuft'),(209,'EvonneWild','$P$Bi9HKk1gSc3xWK/w0vfPIF2s9uPnT30','evonnewild','yirirelef@hotmail.com','','2013-12-24 19:55:39','',0,'EvonneWild'),(210,'StephenBussell','$P$BRQeh2jVMhkZ14B.SAjuoE.CuJvH0G1','stephenbussell','berholdw@hotmail.com','','2013-12-24 23:07:31','',0,'StephenBussell'),(211,'MathiasMackay','$P$Bfj.Xj37qIgy8Q3uvPhIqXo7CzE1ij.','mathiasmackay','industriousinte0qp53@outlook.com','','2013-12-25 06:03:32','',0,'MathiasMackay'),(212,'Ashly63Ygp','$P$BrY0kMMdWbvNJ0REZ0dJmes/FD9OCS0','ashly63ygp','zypojagitysi@hotmail.com','','2013-12-26 04:14:22','',0,'Ashly63Ygp'),(213,'NiamhG49twovq','$P$B1cM8n.cW.dHddTJn.QmnWdbDL3N1n/','niamhg49twovq','Shawneecul206@hotmail.com','','2013-12-26 11:57:46','',0,'NiamhG49twovq'),(214,'BennyKulka33','$P$BL1/8MsvqzSJwxgoNiw3ltDa3zZ.uU0','bennykulka33','bennykulka78@hotmail.com','','2013-12-26 12:13:21','',0,'BennyKulka33'),(215,'RandolphK23','$P$B9ANZN5pcsUaIMF6wWk4Wt4pywI1cP0','randolphk23','Tonishagku318@hotmail.com','','2013-12-26 18:20:57','',0,'RandolphK23'),(216,'MillieCockle','$P$BF4TsQAWJh/yym3qDOPVrwRh88xaQA0','milliecockle','ariickba@hotmail.com','','2013-12-26 20:10:40','',0,'MillieCockle'),(217,'FayeMazure','$P$BGO/PBQ9.ditqsWhN/JrNlospr0XGS.','fayemazure','mzaaomosk@hotmail.com','','2013-12-26 23:03:59','',0,'FayeMazure'),(218,'BonitaBurks','$P$BqK96xfjPEeTjR75i4NCFToKCfzxEL0','bonitaburks','aheadritual73SNc0@laposte.net','','2013-12-27 01:34:01','',0,'BonitaBurks'),(219,'Dp4Ss6Vh5','$P$BPd8Oa8SDDFdkiKE.Q0TuFFBc6VkC8/','dp4ss6vh5','callvsbq@hotmail.com','','2013-12-27 07:36:50','',0,'Dp4Ss6Vh5'),(220,'Ruth1926aubbel','$P$BRUmH0YGiu/SL9R8NHWuWuL2IVAiHw.','ruth1926aubbel','zammaosi@hotmail.com','','2013-12-29 01:16:14','',0,'Ruth1926aubbel'),(221,'GilbertDck','$P$Bq9Fs.WhSQvo0Mwe2n6FUSkQh0haKq1','gilbertdck','payneabpa@hotmail.com','','2013-12-29 06:15:47','',0,'GilbertDck'),(222,'QueryBibber412','$P$BTjoAbF0bIniHoVlZNfU6coiFYPfUy1','querybibber412','pupufei@gundamngk.com','','2013-12-29 12:40:09','',0,'QueryBibber412'),(223,'papplhwp','$P$BNrKadDsnq96iQnBkA1hYjsjzR0yO6/','papplhwp','papplhwp@hotmail.com','','2013-12-29 14:34:40','',0,'papplhwp'),(224,'NoeAhuiaOva','$P$Bmc44.TOG/4sR0r/BN/uaNlNOuwFAX1','noeahuiaova','biancapeterswf685@hotmail.com','','2013-12-29 19:32:51','',0,'NoeAhuiaOva'),(225,'Isla4910vqtvsck','$P$BCClVPwcfGAWChHphABCh2imfSUcYw1','isla4910vqtvsck','kikicookeur8933@hotmail.com','','2013-12-30 08:01:59','',0,'Isla4910vqtvsck'),(226,'AdalbertoK06','$P$BhYTFTQK.wGt1zFy7IcsJhhikoOIvt.','adalbertok06','corina.andrewnr7834@hotmail.com','','2013-12-30 09:58:37','',0,'AdalbertoK06'),(227,'easxveepz','$P$B95ooErOyvn8dbwPly5SbmUI8MAoy4/','easxveepz','capehartmde@hotmail.com','','2013-12-30 15:46:31','',0,'easxveepz'),(228,'WallaceFhp','$P$B8oDWdKI9KcFfFVsJdHCLAbCWwQkx/1','wallacefhp','standinglemon954400@outlook.com','','2013-12-30 20:19:21','',0,'WallaceFhp'),(229,'AlexandriaHaywo','$P$BnFWypSgcT6o7aa.VBFdlOvkvRi650.','alexandriahaywo','sassyskit425x615@outlook.com','','2013-12-30 21:32:56','',0,'AlexandriaHaywo'),(230,'ChaseSweet','$P$BW2QiUFUj7FD3gM659Gaib6rfSdKHy1','chasesweet','annapeter@paydayloans-2013.com','','2013-12-30 22:10:35','',0,'ChaseSweet'),(231,'easqkrkaa','$P$B3y8QbOiqgkpSPNQndmUoyvacUd7St/','easqkrkaa','carbocajt@hotmail.com','','2013-12-31 03:02:24','',0,'easqkrkaa'),(232,'MelvinBeauchamp','$P$B9cMQREjURvYV/BmSZBMYhSgic1VmE1','melvinbeauchamp','changeabledynam7Zl@laposte.net','','2013-12-31 20:10:01','',0,'MelvinBeauchamp'),(233,'KathyHorner','$P$BLRlanZ9Ho5jlAZTax0zwHFYHsKk1t0','kathyhorner','ceaselessdiscla8Q@laposte.net','','2014-01-01 00:42:01','',0,'KathyHorner'),(234,'easambmts','$P$Bt1TsLSovp5CmrMafVJnuzyoUMCizM/','easambmts','carbonithf@hotmail.com','','2014-01-01 01:18:05','',0,'easambmts'),(235,'LaraDelgado','$P$BZNTRzq1xPUvWVEPboGRGwDDZe0Peh/','laradelgado','nyiyingco@hotmail.com','','2014-01-01 19:15:52','',0,'LaraDelgado'),(236,'Luann63Swlr','$P$B1HiPc94DK3f62kQrgR9iu06ucQeu/0','luann63swlr','succinctfaithlecd@laposte.net','','2014-01-01 21:10:01','',0,'Luann63Swlr'),(237,'CeceliaDollery','$P$BQ8CeI0EKCyawyEdqi4gPov8QvJrl11','ceceliadollery','Malindaesy351@hotmail.com','','2014-01-02 01:23:36','',0,'CeceliaDollery'),(238,'CarissaWentwort','$P$B8bIwznTMmHEJldfzonL1O.w9FVAHJ/','carissawentwort','anaayoumi@hotmail.com','','2014-01-02 01:29:27','',0,'CarissaWentwort'),(239,'Ilarion9wtx','$P$BaLweLmAPcCIdp5ku2yqs54qRCGEiH/','ilarion9wtx','12@bielizna.lingeril.pl','','2014-01-02 09:16:41','',0,'Ilarion9wtx'),(240,'FelicitasPaige','$P$B4REREn7gmjam9d/0cda/CfrhCRx4h.','felicitaspaige','mannsfca@hotmail.com','','2014-01-02 10:16:04','',0,'FelicitasPaige'),(241,'JanessaSosa','$P$BwoC3TMhzL4IobQgPT1bd5gG/wx9z3/','janessasosa','horribleoomph20V@laposte.net','','2014-01-03 11:23:08','',0,'JanessaSosa'),(242,'SabrinaD20','$P$BTBjPt6IABBjZo3yyKBfBNzC.oTeEj.','sabrinad20','rhearichs647@hotmail.com','','2014-01-03 21:57:25','',0,'SabrinaD20'),(243,'WesleyBenavides','$P$BTZM5w7wGamW9CXHnPHkeHguvdDwLk1','wesleybenavides','polly.wingfieldm5342@hotmail.com','','2014-01-04 04:05:48','',0,'WesleyBenavides'),(244,'SaulLammzqngtyg','$P$BrkmNTuvpw445U/.k6HSgcB3NfdazO1','saullammzqngtyg','ferawabotuj@hotmail.com','','2014-01-04 17:08:22','',0,'SaulLammzqngtyg'),(245,'easavurnd','$P$B3ikmxlXt.GJ.4mq0ur54IiGFVD2/O0','easavurnd','cashedux@hotmail.com','','2014-01-04 17:29:27','',0,'easavurnd'),(246,'GeorgianaHartwi','$P$B9kA5jfyN.q6yjzrvHYzhvdpSYpVzb1','georgianahartwi','karenralphw287@hotmail.com','','2014-01-04 17:51:44','',0,'GeorgianaHartwi'),(247,'CristinaHallstr','$P$BfV2XjUVP7gzGGAkd45PpRk1HUiYYA/','cristinahallstr','mallorybassu7392@hotmail.com','','2014-01-04 17:53:56','',0,'CristinaHallstr'),(248,'RandolphWarburt','$P$BGBTVwHs5MmEP/cV28s7va9LSm3ZN/1','randolphwarburt','tara.pattona963@hotmail.com','','2014-01-04 19:39:23','',0,'RandolphWarburt'),(249,'BeatrisDriver','$P$B4QKadvyaA6oIMrizbSpu/Lamy0GnS/','beatrisdriver','lara.kinta351@hotmail.com','','2014-01-04 23:16:01','',0,'BeatrisDriver'),(250,'AnibalIacovelli','$P$BmEuVakmIjGIMwn/ln1Kx1vKNvPfTm0','anibaliacovelli','barbaraalbertvf620@hotmail.com','','2014-01-05 03:56:04','',0,'AnibalIacovelli'),(251,'ElvinMacalister','$P$BUKPFp1EPLOVBFH0qgv4PhIE3q03qr.','elvinmacalister','talia.barclayd2374@hotmail.com','','2014-01-05 05:24:23','',0,'ElvinMacalister'),(252,'GerardoSchubert','$P$BlL7pcOewBGzrNGHql3h8z22Zfkw9H/','gerardoschubert','elenabackeryt4216@hotmail.com','','2014-01-05 18:21:40','',0,'GerardoSchubert'),(253,'DarleneRountree','$P$BQMw8DAs8iS.Y0ZQWOqQO5kT.cqdAy/','darlenerountree','efficaciouspowdUM@laposte.net','','2014-01-05 19:21:52','',0,'DarleneRountree'),(254,'JulianSwett','$P$B8bvlWfWQvwW4vUKnoyIR300eXyRQ7/','julianswett','SubduedTexture999@outlook.com','','2014-01-05 22:20:00','',0,'JulianSwett'),(255,'Vladyslavafwi','$P$BhgCekt3PRJRpnr2aSwxr94C2Xx3kX.','vladyslavafwi','penis.pl@poczta.pl','','2014-01-06 08:35:03','',0,'Vladyslavafwi'),(256,'JeremiahCrossle','$P$BP3/8ZP0qIqF4btE7XJKt3yZevm2Lv1','jeremiahcrossle','sendobrin@hotmail.com','','2014-01-06 11:15:45','',0,'JeremiahCrossle'),(257,'otpvlfx99','$P$BzUMqUWlai79ysh30dSYi0vosVzOl6/','otpvlfx99','tolliverbj@hotmail.com','','2014-01-06 16:03:35','',0,'otpvlfx99'),(258,'AndyB00kmf','$P$BbsZKjE4APb1q4B1iW3zvH2J5VExua.','andyb00kmf','qopyzerosev@hotmail.com','','2014-01-06 19:15:56','',0,'AndyB00kmf'),(259,'MarissaNyb','$P$BLIaCbvC4U9Oq0ekzKQliOfHHQI7Yr0','marissanyb','receptivetiff90V54j@laposte.net','','2014-01-06 20:05:49','',0,'MarissaNyb'),(260,'AntoinetteSting','$P$Bd8EdrFwrg0MJT9oC1WwlTS9h57d780','antoinettesting','gratisnanny74r0sB@laposte.net','','2014-01-06 20:32:22','',0,'AntoinetteSting'),(261,'cbzweglwe','$P$BHobUPHrfkcjVFIRPMtnVRkdAAESDo/','cbzweglwe','champlainir@hotmail.com','','2014-01-07 00:39:12','',0,'cbzweglwe'),(262,'sfayomgki','$P$BdQN.Po6MFieAEj6J0/wu4b.PQrsya1','sfayomgki','chavarriabt@hotmail.com','','2014-01-07 00:39:51','',0,'sfayomgki'),(263,'Dena09Swrdjf','$P$BDtUOrSc1EUsf0Kmx2tNB5gFqTwrao1','dena09swrdjf','louisesmarting1@ukhost-uk.co.uk','','2014-01-07 03:49:10','',0,'Dena09Swrdjf'),(264,'enemossemning','$P$BWxcH70OwLTPsZ7HBkfGadJrJ0YACv1','enemossemning','sawyersel@hotmail.com','','2014-01-07 06:23:13','',0,'enemossemning'),(265,'carpinteyroxyr','$P$BNpokX8EKhE2woOEcCHJIVs8oG0sws.','carpinteyroxyr','prosedaufu@hotmail.com','http://www.embepe.nl/','2014-01-07 07:35:36','',0,'carpinteyroxyr'),(266,'htehegzil','$P$B/S.5XWBSZwGb1kNe1MaaDSxN1top20','htehegzil','chavezkxj@hotmail.com','','2014-01-07 08:17:15','',0,'htehegzil'),(267,'ldivopvfm','$P$B.tthZK8XvbaCZMSOJEoqEt6QUjrAp.','ldivopvfm','chernoffdxb@hotmail.com','','2014-01-07 08:17:16','',0,'ldivopvfm'),(268,'BlakeCarmichael','$P$BGD4dw.0vMMmzX0ERM1LFhZy5A9hIi.','blakecarmichael','abortivechief63mCZQg@laposte.net','','2014-01-07 09:33:19','',0,'BlakeCarmichael'),(269,'GilbertPersse','$P$BT1zHC0QZMWJ/bki5zAPB1WMOsbQpN0','gilbertpersse','dynamictiff192@laposte.net','','2014-01-07 12:02:53','',0,'GilbertPersse'),(270,'HauhFavaCar','$P$Bjr840vrGnB/Zu9vR6zSkZUjMGoZuh0','hauhfavacar','averszqunu@hotmail.com','','2014-01-07 12:39:23','',0,'HauhFavaCar'),(271,'Stasiafof','$P$BnbJ9UlM92VtwndLig4gW33B8NRPOF1','stasiafof','dffdjvfl.sdcscscsc@poczta.pl','','2014-01-07 15:44:26','',0,'Stasiafof'),(272,'easjbdbkb','$P$B8hYvGjEg.6JXp49NW852k1rKb926s/','easjbdbkb','chicoatth@hotmail.com','','2014-01-07 16:18:15','',0,'easjbdbkb'),(273,'easiiadzc','$P$Bt2RKhQ/6mUhLbL6cBj3HmNCWSceE01','easiiadzc','chicaumhz@hotmail.com','','2014-01-07 16:18:17','',0,'easiiadzc'),(274,'Ementypem','$P$BnhCPBCfU.PoXP775YLbBProvWYDyZ/','ementypem','dimucciorv@hotmail.com','','2014-01-07 19:58:47','',0,'Ementypem'),(275,'Grant6289hyywad','$P$BkJJfZWZMvEoNmxdMglrh0rezh./620','grant6289hyywad','prvi@electronic-smoke.com','','2014-01-08 01:50:42','',0,'Grant6289hyywad'),(276,'SangHeiman','$P$Bf936657ON2a6jDDNm8l5wf4LU664v1','sangheiman','maureen.potterwu5607@hotmail.com','','2014-01-08 04:18:40','',0,'SangHeiman'),(277,'VincentFWFO','$P$BE0sLp.QAqtjIveYC3EmqOq3hPIWUR/','vincentfwfo','angeliadineen2005@hotmail.com','','2014-01-08 20:02:44','',0,'VincentFWFO'),(278,'handsfree traffic','$P$BQ63gg3rnwx/VOj1Ko0QwVzYn2ZpSJ.','handsfree-traffic','laura-rivers109@hotmail.com','','2014-01-08 20:26:05','',0,'handsfree traffic'),(279,'Sabine29Eryog','$P$BPXNOcvjvRxHcMwX0rDL3cSCMzcz0e0','sabine29eryog','lonenfinger2008@hotmail.com','','2014-01-08 23:25:40','',0,'Sabine29Eryog'),(280,'CeceliaCry','$P$Bl4taXVgDtoR6imiYyqNv1ptQfQy0x1','ceceliacry','alikelaboratoryerUza@laposte.net','','2014-01-08 23:40:28','',0,'CeceliaCry'),(281,'zltlingx','$P$BnVO2b8g5YmyJYOxLB66K53xXtDBsE0','zltlingx','gorepaou@hotmail.com','','2014-01-09 10:40:21','',0,'zltlingx'),(282,'lclwbkfh','$P$BQ43sA6Oi4eeAgDM7wF0nk5mJjcvHB/','lclwbkfh','willyryc@hotmail.com','','2014-01-09 11:07:03','',0,'lclwbkfh'),(283,'jksahdipqy','$P$BwGX7D7VTA4/FBAu4TyJ5dHaeZs7.C/','jksahdipqy','vondrawv@hotmail.com','','2014-01-09 23:19:38','',0,'jksahdipqy'),(284,'dsjkjdkns','$P$BDqiVQxNFOdtO12yXKMej8JkGbbffd/','dsjkjdkns','trewtetm@hotmail.com','','2014-01-10 12:30:41','',0,'dsjkjdkns'),(285,'dwajkrkq','$P$BxqhAmJymfygm/4a4QliauPZRBTF3c/','dwajkrkq','eggertgzkh@hotmail.com','','2014-01-10 13:11:58','',0,'dwajkrkq'),(286,'UlrikePercy','$P$B6bmExWO6zH0j3prhfRBOgaBn2fa.i.','ulrikepercy','paula.sutterys8916@hotmail.com','','2014-01-10 20:49:53','',0,'UlrikePercy'),(287,'JudiWrixon','$P$BqeLZ6eK58U1PWGLFwgWoj1ZnxlI.c.','judiwrixon','Rondajzh403@hotmail.com','','2014-01-11 13:34:50','',0,'JudiWrixon'),(288,'Minai3l3w','$P$BxdnWWmbZErRXoEhpySEmXdy0dDmEO0','minai3l3w','bielizna@lingeril.pl','','2014-01-12 12:20:53','',0,'Minai3l3w'),(289,'BrigidaTidwell','$P$BSDEtGStV7fdJipF119KNLKLch/yCJ/','brigidatidwell','Yuriatu006@hotmail.com','','2014-01-12 12:21:09','',0,'BrigidaTidwell'),(290,'BufordO47jd','$P$BSCvXX1nBsN8NxImTSOWFyFVUD32yd1','bufordo47jd','rampantmercenar5q251@outlook.com','','2014-01-12 18:25:37','',0,'BufordO47jd'),(291,'AntjeJ39hfp','$P$Bq0SdryRGRhr4fzo0TpZZNHmt/vf/J/','antjej39hfp','kintoniras@hotmail.com','','2014-01-13 11:13:11','',0,'AntjeJ39hfp'),(292,'sotelooi','$P$Bo.7Q7HN5k8TQcJEHVgojlYv3du1go.','sotelooi','sotelooi@hotmail.com','','2014-01-13 18:18:24','',0,'sotelooi'),(293,'HermanObryan','$P$BWKTnGGgYA8FCI7e91AEfZ35Rl7QiQ0','hermanobryan','patsykingwj3811@hotmail.com','','2014-01-13 20:42:52','',0,'HermanObryan'),(294,'JoeArsenault','$P$BYDfkowV4d/peA.exsVGqBNHHrQ5xW/','joearsenault','gavinybuy@hotmail.com','','2014-01-14 08:09:19','',0,'JoeArsenault'),(295,'NamTsemwava','$P$BKRrXWpbOxWzc4mWAShy/dKJM.gGIF/','namtsemwava','hugezone694186@outlook.com','','2014-01-14 13:55:11','',0,'NamTsemwava'),(296,'DaniellaLoughli','$P$B12LEQ9OzUaS2kq87W4oalwznTIXm0.','daniellaloughli','wingrabin@hotmail.com','','2014-01-16 01:04:20','',0,'DaniellaLoughli'),(297,'pdjhmpsir','$P$B6LhvPpUiSrOyr/EZuTpVigMyVsX5u0','pdjhmpsir','farrelvhfyi@hotmail.com','','2014-01-16 19:16:51','',0,'pdjhmpsir'),(298,'easspyclz','$P$BxPrPa0dgBlQDvZ1suF3aUo7nxFKLu/','easspyclz','fasanogqol@hotmail.com','','2014-01-16 19:46:59','',0,'easspyclz'),(299,'LashayRobin','$P$BefAJtj/IhMwxC62xNb7Hx1MPGmGdw1','lashayrobin','litampx@hotmail.com','','2014-01-17 00:44:39','',0,'LashayRobin'),(300,'Damion21Wi','$P$BANev0g35OsSkOuJzt8QtzKu82wHxT0','damion21wi','ased3sa@badcreditloans-apply24h.co.uk','','2014-01-18 10:28:08','',0,'Damion21Wi'),(301,'CarmineX45','$P$BQfL4OzHFajM8DtwCZ4ghqNjVC6RUa/','carminex45','madgemjym@hotmail.com','','2014-01-18 16:33:02','',0,'CarmineX45'),(302,'CaraBadilla','$P$BH2MaRexf8/LWr2jvZnY3GHUGeWbD31','carabadilla','blankktgy@hotmail.com','','2014-01-18 18:25:18','',0,'CaraBadilla'),(303,'FrancisFoulds','$P$BaL6w46CXdLYMb3AC1LVnM.aflK2B/.','francisfoulds','gomeznth@outlook.com','','2014-01-18 18:29:30','',0,'FrancisFoulds'),(304,'RoseannaO07','$P$BSRLtIVqrNoVp2nqrkOG620f/MoOMQ.','roseannao07','chiensyg@outlook.com','','2014-01-18 23:28:45','',0,'RoseannaO07'),(305,'QuinnDagostino','$P$Bc0y0SA/Rm7ttJf7rMyZawvMQTkgNi/','quinndagostino','simsrqgn@hotmail.com','','2014-01-19 01:33:20','',0,'QuinnDagostino'),(306,'XiomaraB85','$P$BTUDzHA8JWSfwDQoyDbF697f2lRtww.','xiomarab85','xiomara-neubauer40@zaq321.com','','2014-01-19 14:07:37','',0,'XiomaraB85'),(307,'TysonCastleberr','$P$Bk0yMtK55tF0ibMWQiGW0CeG5oZ3gp0','tysoncastleberr','cravenmystique33@laposte.net','','2014-01-19 16:16:53','',0,'TysonCastleberr'),(308,'AngelBrownell','$P$BbZMH51SQJBLddCZ5drchbR7PoFM3g/','angelbrownell','redpsst@hotmail.com','','2014-01-20 02:30:34','',0,'AngelBrownell'),(309,'HenryCasper','$P$B3W5BWyZJVFhiaVXrcY5TfMZcVo0YI/','henrycasper','elmervsm@hotmail.com','','2014-01-20 15:36:33','',0,'HenryCasper'),(310,'CollinGibney','$P$BRgGokgWiBSRNZgAuQ5cMovCO.s2TU0','collingibney','julbyhjx@outlook.com','','2014-01-21 02:23:09','',0,'CollinGibney'),(311,'Harriet27V','$P$BANfqiXKZweeOlKtY/CqlRr/xo987k/','harriet27v','wathasonl@hotmail.com','','2014-01-21 04:36:20','',0,'Harriet27V'),(312,'WillGraber','$P$BPXGxva/7s3akFvZajJOaXmUYHOnGE.','willgraber','corrinshj784@hotmail.com','','2014-01-21 23:00:58','',0,'WillGraber'),(313,'RoyalXzmrgeiebc','$P$B5d5Gr3.AMsYmuyNqFZbXKoYw4yiJQ1','royalxzmrgeiebc','clarxxew@outlook.com','','2014-01-21 23:42:11','',0,'RoyalXzmrgeiebc'),(314,'AimeeGentry','$P$BMd2v3TUhLhLMW7H1JO0D73ozgNdw9/','aimeegentry','kylekh@outlook.com','','2014-01-22 21:41:30','',0,'AimeeGentry'),(315,'eastnojnd','$P$BYUum9tCcA1rF5Djt96qv.YL0Vh3Nu1','eastnojnd','fetchpabln@hotmail.com','','2014-01-23 20:20:52','',0,'eastnojnd'),(316,'AngelitaGrayndl','$P$Biv2AX04XIBs47XbxNGBgMkkn4nl2z/','angelitagrayndl','jyropavovyp@hotmail.com','','2014-01-24 00:26:16','',0,'AngelitaGrayndl'),(317,'eyrdwwnau','$P$BLYu66iTg3SANkLy2X4sRDAUjMqj6X1','eyrdwwnau','fleschwbk@hotmail.com','','2014-01-24 01:37:07','',0,'eyrdwwnau'),(318,'ValenciaCockrel','$P$BIOyNbWVZ9Oe8DNs4S3ogISVH29dqj/','valenciacockrel','greyashgrey3@outlook.com','','2014-01-24 14:59:00','',0,'ValenciaCockrel'),(319,'Benjamin36V','$P$BEXgL7gDMiaGfaBS2pbvJHQtbCdAD00','benjamin36v','mrowszzg@outlook.com','','2014-01-24 20:35:57','',0,'Benjamin36V'),(320,'JamiBracyxw','$P$BzCytDaAtkxq22pN3JxN277VWEUAbg.','jamibracyxw','rashidaliv082@hotmail.com','','2014-01-24 21:38:21','',0,'JamiBracyxw'),(321,'AGMPaulsizcxstn','$P$B932JlGzOdNZV6Cbl/3Ff9fr8xX8kE1','agmpaulsizcxstn','johnsqne@outlook.com','','2014-01-25 13:02:48','',0,'AGMPaulsizcxstn'),(322,'DoyleClare','$P$B7F2MbaNQgKeVjYGGe.i1v8SlLdZgH0','doyleclare','dararbw@outlook.com','','2014-01-25 14:32:39','',0,'DoyleClare'),(323,'TammiParent','$P$BGU8AkC186xP2Z3.GYdavVFVt.KGFv0','tammiparent','tammi-parent37@zaq321.com','','2014-01-25 15:05:01','',0,'TammiParent'),(324,'Nestorrcj78','$P$B4RujO0keSWMEC9LQkOWisrU2V9BdS.','nestorrcj78','blog@body-stocking.pl','','2014-01-25 16:50:50','',0,'Nestorrcj78'),(325,'EllisDunlea','$P$Blf7A/NCoHMzLQ5Xl//g5opFJOXbTi1','ellisdunlea','lizzieqqh872@hotmail.com','','2014-01-25 18:46:51','',0,'EllisDunlea'),(326,'AprilYeager','$P$BoHij4XxaijUnnM2jw/NoYKKqT8PoE/','aprilyeager','aridendiha@hotmail.com','','2014-01-25 22:51:55','',0,'AprilYeager'),(327,'ScotM73ygk','$P$BZLg/aQxS5QFCI6ZMTTsDLHLl8fIfC.','scotm73ygk','organiclabyrint1@laposte.net','','2014-01-26 04:55:40','',0,'ScotM73ygk'),(328,'GretaHuggins','$P$BUSkR8R1d9EKrtZbUsboRy/Z91x8cR0','gretahuggins','czinlez@outlook.com','','2014-01-26 05:41:42','',0,'GretaHuggins'),(329,'MariUnderhill','$P$B3UesO8Nc9qGye6Ax60FCartS26xnd1','mariunderhill','dariodxmc@outlook.com','','2014-01-26 07:13:36','',0,'MariUnderhill'),(330,'JorgBertram','$P$Bt5DYnkul0u719brbwSmjBMiB/atHL0','jorgbertram','baugenova@hotmail.com','','2014-01-26 13:34:16','',0,'JorgBertram'),(331,'EdmundMccollum','$P$Bdzc7EcYE6rGQ49F0bZRPcOTN7OC540','edmundmccollum','tobitizasyn@hotmail.com','','2014-01-27 03:16:48','',0,'EdmundMccollum'),(332,'AlbertaReasoner','$P$BVj97CroSntW.BodtVsn0p81THEOIr.','albertareasoner','courageousunifi3@laposte.net','','2014-01-27 03:39:37','',0,'AlbertaReasoner'),(333,'CoralMGPcg','$P$BmSqyxWIVOdkkJZXkQgFhe3bvpw7mq0','coralmgpcg','badstone999@outlook.com','','2014-01-27 09:27:36','',0,'CoralMGPcg'),(334,'NidiaU81tt','$P$BsgrcVmMHlt6CGPI4/AcKa2mfqd1kr1','nidiau81tt','mottmyv@outlook.com','','2014-01-27 15:36:07','',0,'NidiaU81tt'),(335,'ShelliHalvorsen','$P$BCQmk50PbYRNbskbBbQ3Es5uNF5geM.','shellihalvorsen','shelli-halvorsen@a.maybebest.com','','2014-01-27 20:40:01','',0,'ShelliHalvorsen'),(336,'BridgetteNolett','$P$BnrmcZdu7LmM67J6a/kAWYXXhwAjQ2/','bridgettenolett','easonvhaw@outlook.com','','2014-01-27 21:46:44','',0,'BridgetteNolett'),(337,'EvonneThtdcbe','$P$BCx2mGXkvPAWNTZt/m1GIkMdrpcfEt0','evonnethtdcbe','freedkens@outlook.com','','2014-01-27 23:28:26','',0,'EvonneThtdcbe'),(338,'Carole9189','$P$BdVZHDtq3v6e9eEKiMHRoioTkpdtTp.','carole9189','legalschool999@outlook.com','','2014-01-28 03:34:39','',0,'Carole9189'),(339,'CalebBeauvais','$P$Bk7s1VNL3ybxgmS7iQPq4JC0Y1jboO/','calebbeauvais','casette@dekalux.com','','2014-01-28 03:54:30','',0,'CalebBeauvais'),(340,'DamianTellez','$P$BsuksezTw7rbolB1maJuGfuZIn8ueX/','damiantellez','barbahppk@outlook.com','','2014-01-28 08:39:05','',0,'DamianTellez'),(341,'Selina4849','$P$BmVhWQFgk4ZipF.s398CTdt4PyHhva1','selina4849','melvacada@outlook.com','','2014-01-28 17:14:42','',0,'Selina4849'),(342,'QADKatherin','$P$Basv8xO0mM7ljo6HfbyT9wdEi88oCo/','qadkatherin','katherin-ugalde@c.maybebest.com','','2014-01-28 22:39:43','',0,'QADKatherin'),(343,'FZCJacquelyn','$P$B3B8P.OV3Dq.4JM0vX8h8bccaB3xya0','fzcjacquelyn','jacquelyn.maloney98@c.maybebest.com','','2014-01-28 22:57:53','',0,'FZCJacquelyn'),(344,'ForestY72akwwxf','$P$BZJt1LDI5WcUSHRSo3nxVRdX.ovVrg0','foresty72akwwxf','forest.lambert@pozyczprzezinternet.pl','','2014-01-29 02:07:02','',0,'ForestY72akwwxf'),(345,'Marissa05H','$P$BZ6Pi0NMt1IUddH2jfapGh/Of.bwN4.','marissa05h','taxii66@giveitto.us','','2014-01-29 03:35:15','',0,'Marissa05H'),(346,'Tammara51G','$P$BVp9VpTH1TGugXHRPdhtugZW2031Wq/','tammara51g','cynicalnugget863@laposte.net','','2014-01-29 07:48:07','',0,'Tammara51G'),(347,'VIDGeorgiana','$P$BmYRafJVJpi1W6rpoBWioiUgItLnHS1','vidgeorgiana','georgiana-tull@b.maybebest.com','','2014-01-29 19:52:22','',0,'VIDGeorgiana'),(348,'ErickRaygiim','$P$BUQDUiPFWNJFGBx9czR3GYXH1.NSvE1','erickraygiim','lovelyphilosoph1@laposte.net','','2014-01-30 02:38:52','',0,'ErickRaygiim'),(349,'KellyeRios','$P$BKBibVnnH2K/f2U9nqRnEsMi8XVdPP0','kellyerios','jennymzk@hotmail.com','','2014-01-30 11:46:00','',0,'KellyeRios'),(350,'AngeliaCremor','$P$BruKMz0t6O4QcHKVXF1GrlS5DBuodv/','angeliacremor','plaincart999@outlook.com','','2014-01-30 21:05:38','',0,'AngeliaCremor'),(351,'Josefina81P','$P$BJbk0djQvkIQd/me/JlcUwHOyaQqOs1','josefina81p','josefina_noblet56@d.maybebest.com','','2014-01-30 21:37:26','',0,'Josefina81P'),(352,'DevonNJEOxcnu','$P$BM6XMGDJkH1RIJ933Tcbbrcfv8C20Z1','devonnjeoxcnu','jyrenomaloh@hotmail.com','','2014-01-31 00:36:28','',0,'DevonNJEOxcnu'),(353,'GrazynaCuster','$P$BzkegKAiyBZbyB5bNYjP9RLER90hA..','grazynacuster','redchair453@laposte.net','','2014-01-31 03:54:14','',0,'GrazynaCuster'),(354,'HeathSuffolk','$P$BcVHNkZBN7792Tz/VKmy8VyVf8rqlh1','heathsuffolk','sherrysevenqw1764@hotmail.com','','2014-01-31 05:02:14','',0,'HeathSuffolk'),(355,'VanitaEJBD','$P$By3jPusO8wjQvYnSdJ3c78g9nbP9Ph.','vanitaejbd','vanita_forrester@c.maybebest.com','','2014-01-31 15:31:57','',0,'VanitaEJBD'),(356,'FerdinandLirian','$P$B7uC9Gs/YMMUmkB/1beR75vc.e/y3E1','ferdinandlirian','karolineypo124@hotmail.com','','2014-01-31 17:18:09','',0,'FerdinandLirian'),(357,'tapywuxwuna246','$P$B1GSlvwZjVrp1fiNIwLDrV899mu3vX0','tapywuxwuna246','combsvnq@hotmail.com','','2014-01-31 18:39:51','',0,'tapywuxwuna246'),(358,'FrankRPSntnjysy','$P$BKgUwQk/UsGfQ3hkTG7zArtC1.a1Q21','frankrpsntnjysy','adidywazuvi@hotmail.com','','2014-01-31 18:46:26','',0,'FrankRPSntnjysy'),(359,'DianTasman','$P$BejjlohB5KCtUBpuvADHQ8zCY49VVv1','diantasman','aliaudnk@outlook.com','','2014-02-01 00:58:29','',0,'DianTasman'),(360,'Uliannavd6v','$P$BYf489KKg5ZrPiNiv9DxZGuzX/6taD/','uliannavd6v','12@biustonosz.body-stocking.pl','','2014-02-01 12:21:34','',0,'Uliannavd6v'),(361,'GordonHnqdk','$P$BuTiI64OPfnJiWHb6O9tsgUG5NEMfk/','gordonhnqdk','gordon.bamford23@c.maybebest.com','','2014-02-01 21:31:36','',0,'GordonHnqdk'),(362,'CarissaCalliste','$P$BrB8au2OFjKWc1sQ/utP2pgQg8Ht3C/','carissacalliste','lydiagqy@outlook.com','','2014-02-01 23:50:57','',0,'CarissaCalliste'),(363,'WilfredoMcEncro','$P$BsynWMRhUZEgPmuElxHNm6zXqUrrm1.','wilfredomcencro','tightsemester314@laposte.net','','2014-02-02 04:10:15','',0,'WilfredoMcEncro'),(364,'OdetteMargaret','$P$BDOVN1cTcHZgDjX344CrEQpcSjLbbr1','odettemargaret','patheticshame913@laposte.net','','2014-02-02 06:15:20','',0,'OdetteMargaret'),(365,'Gemma84Wrvgyit','$P$BjjdlNRAc4Kf1U007587qz3GYlHa/l.','gemma84wrvgyit','kaleymqa907@hotmail.com','','2014-02-02 10:32:33','',0,'Gemma84Wrvgyit'),(366,'MargoLaura','$P$BWEYghJ56wPuNQvyjJKsnw1r8pDGzS.','margolaura','tonizyu@outlook.com','','2014-02-02 17:04:29','',0,'MargoLaura'),(367,'LutherBlackman','$P$Bc9Ikdp93fMbjdVYoNCxwcIULFZFZR.','lutherblackman','luther.blackman@d.maybebest.com','','2014-02-02 21:44:36','',0,'LutherBlackman'),(368,'PaulineDove','$P$BiijXQeURnfQAduHe9jAGBTD.dTnJO0','paulinedove','ngokcna@hotmail.com','','2014-02-03 02:54:11','',0,'PaulineDove'),(369,'RodgerBaumgaert','$P$BQg1NvTdGAvyuVO/vrgjiTdjnwPvnK1','rodgerbaumgaert','mylesfeaq@hotmail.com','','2014-02-03 04:25:13','',0,'RodgerBaumgaert'),(370,'NicoleSandlin','$P$BwHuFBeZrGViRiwgL3iS/kW3w16QcO0','nicolesandlin','monoxudacufa@hotmail.com','','2014-02-03 04:29:45','',0,'NicoleSandlin'),(371,'DebbraShah','$P$BsGgbd.lmzFfIbqCJe9SMF9Q7sfbEj/','debbrashah','aguilarxrxpcyi@hotmail.com','','2014-02-03 05:05:37','',0,'DebbraShah'),(372,'EusebiaAKA','$P$BwaFv.zxGspwTBgVqjftIHKWGeJphW1','eusebiaaka','caeflattingligh@outlook.com','','2014-02-03 11:38:12','',0,'EusebiaAKA'),(373,'CassandraDoyle','$P$BFnMlpbjJWHO7fzbHxiBlbYq9kcPKb.','cassandradoyle','pamazaa@outlook.com','','2014-02-03 13:19:46','',0,'CassandraDoyle'),(374,'AlishaTXIlc','$P$BURuEM8NUsLrtSC8csf/R/lqCY9IcF0','alishatxilc','alisha.fitzpatrick81@c.maybebest.com','','2014-02-04 00:00:07','',0,'AlishaTXIlc'),(375,'FlorrieVDV','$P$BC8x0N.EqcnryNZpQINQpqAaBwWYAr/','florrievdv','florrie-amaya@c.maybebest.com','','2014-02-04 00:00:40','',0,'FlorrieVDV'),(376,'ElsieBergin','$P$BWLYGOhOAdkNPm4T8/P6Fh8KGeg6Vk0','elsiebergin','arthurhsu737@hotmail.com','','2014-02-04 04:16:40','',0,'ElsieBergin'),(377,'CKHPamelaiultle','$P$BnLbjuGHwNI18/TXaOCYnzCo05cbki.','ckhpamelaiultle','mcpherson8ithtpa@hotmail.com','','2014-02-04 07:53:59','',0,'CKHPamelaiultle'),(378,'LylePicton','$P$Bjja/d96RnX3AaJsr3fWADB7c8kaEa0','lylepicton','lonniezep928@hotmail.com','','2014-02-04 11:23:11','',0,'LylePicton'),(379,'JeremiahKearns','$P$BNwyp28bdh1ehHRx9WLP0LaYjria8A1','jeremiahkearns','jeremiah.kearns@b.maybebest.com','','2014-02-04 16:06:20','',0,'JeremiahKearns'),(380,'BereniceBerube','$P$Bb8PHfnP/dEIsgQZbJ8M2FJBXs5q0Q0','bereniceberube','lovexzs@outlook.com','','2014-02-04 17:05:50','',0,'BereniceBerube'),(381,'JaimeArriola','$P$B5qgRUonBeYFKp6Be625MB6nTHhNAM.','jaimearriola','sandyjens@outlook.com','','2014-02-04 22:16:42','',0,'JaimeArriola'),(382,'BennyMortensen','$P$BeJuTH4RJ9f9qWzAINZU.kySAElfzJ.','bennymortensen','benny.mortensen43@zaq321.com','','2014-02-05 01:51:33','',0,'BennyMortensen'),(383,'DenaH12xdd','$P$BKtQ2iJrkU/lhpSYlsvngO99lR9/H50','denah12xdd','josephineuwndwfltw23@hotmail.com','','2014-02-05 09:50:44','',0,'DenaH12xdd'),(384,'PaulinaHewlett','$P$BxNmL1WFT6mZqQvk6VAFL5H3HNT5GM.','paulinahewlett','fearlessdock764@laposte.net','','2014-02-05 18:58:44','',0,'PaulinaHewlett'),(385,'AlysaGreer','$P$BeQ1abK4zNWt6TO75vpP6NkChdknMQ1','alysagreer','sharrongef292@hotmail.com','','2014-02-06 00:06:29','',0,'AlysaGreer'),(386,'DarrellS36','$P$BMRrSC8pT6rXE5j.ycWAKMpY27c/pS.','darrells36','adolphtolentino@mailinator.net','','2014-02-06 00:26:41','',0,'DarrellS36'),(387,'Barbara9547','$P$BQNM/GEjZW6yu8Zie2Wp4cdNBjqlD11','barbara9547','thanhdywt@outlook.com','','2014-02-06 00:34:36','',0,'Barbara9547'),(388,'MartiGallant','$P$B91v8HIjWqsoCfw67xt3KNS65JFCHf.','martigallant','briannedemarco@trash-mail.com','','2014-02-06 03:26:40','',0,'MartiGallant'),(389,'EzekielScarboro','$P$BqHqO4HJMxqCr.D8fCiI70lSK7GOt5/','ezekielscarboro','dinazzs@hotmail.com','','2014-02-06 08:21:52','',0,'EzekielScarboro'),(390,'RaymonClapp','$P$BzatBaUYXdDOFZRgfx0O.LRGWgsOYh.','raymonclapp','spookyquestion708@hotmail.com','','2014-02-06 09:39:12','',0,'RaymonClapp'),(391,'CharlineYVP','$P$BK4noD0ZjX6Yn7ItmMyXAQHJzkunLS0','charlineyvp','angelpyq@hotmail.com','','2014-02-06 18:07:28','',0,'CharlineYVP'),(392,'RigobertoWnn','$P$Bdv9LiJX4hzNlyhoXbICvM/Q6sBtzL/','rigobertownn','gnopy.1@hotmail.com','','2014-02-07 02:00:40','',0,'RigobertoWnn'),(393,'LaraRPPlrgklos','$P$BwYE3PI7k0L.B640NFLZg4psSw/sDM/','lararpplrgklos','laurajym@outlook.com','','2014-02-07 09:43:50','',0,'LaraRPPlrgklos'),(394,'ClaribelAlfred','$P$BimzKCWtZ/Pme3ZO1UH/nDy.q31EnK0','claribelalfred','tammibaillieu@mailinator2.com','','2014-02-07 11:38:23','',0,'ClaribelAlfred'),(395,'RamonHowton','$P$BdyTjzkUbKda4Jm9fKFCiO/Ytku4l6/','ramonhowton','ramon_howton40@d.maybebest.com','','2014-02-07 13:40:26','',0,'RamonHowton'),(396,'FelipeBlumentha','$P$B6LIba.HqS2T7FnkwXMnbBVWHDDAKH0','felipeblumentha','gistih.03@gmail.com','','2014-02-07 18:57:54','',0,'FelipeBlumentha'),(397,'Jesus47Nppfel','$P$B.IduuKPbuqUgFXTuEX/HwdVTE9Fu8.','jesus47nppfel','ggppbb01@gmail.com','','2014-02-07 20:36:00','',0,'Jesus47Nppfel'),(398,'BrigidaHawk','$P$BSAlrC76IeeRBWtZb0NCL3P9i8f0sg/','brigidahawk','svedska@electronic-smoke.com','','2014-02-08 02:10:57','',0,'BrigidaHawk'),(399,'MindyNester','$P$BlFmTKtka/1YsucpSIIwvDdmoWXqd9.','mindynester','readanvg@hotmail.com','','2014-02-08 06:44:24','',0,'MindyNester'),(400,'Candidxi1','$P$B3NSyOuEWkxDvd5ZMVuL2W9E8LNA7l.','candidxi1','dwowig.ghjj@poczta.pl','','2014-02-08 08:58:12','',0,'Candidxi1'),(401,'StevenWhitson','$P$BRamj/iH/WOFVMW0Zg4TZnojElBZDk1','stevenwhitson','ggppbb02@gmail.com','','2014-02-08 10:11:54','',0,'StevenWhitson'),(402,'FrederickaMcgre','$P$Bd7sKXIlrzln3PL6rCIiUDrQY3USlI/','frederickamcgre','gladytkke@hotmail.com','','2014-02-08 11:47:42','',0,'FrederickaMcgre'),(403,'PrinceMosely','$P$Bc7rUWZ25Fy5mvjm0prVwtf8ApKMo01','princemosely','oldc.lou.d.s4@gmail.com','','2014-02-08 14:36:11','',0,'PrinceMosely'),(404,'ChanceBazile','$P$BIkVdamkPNb7Lj.cvN7jdWyiRE5kHc0','chancebazile','raggedgash24xo943@outlook.com','','2014-02-08 15:14:46','',0,'ChanceBazile'),(405,'MarioJLFpls','$P$BJuWUzCaV/kFugU7CN/1xDALCZTiIL0','mariojlfpls','musicyep@hotmail.com','','2014-02-08 16:14:14','',0,'MarioJLFpls'),(406,'SashaKennemer','$P$B3jV75v97OZvPUCAWMAUomeK0si6sg1','sashakennemer','jjppii03@gmail.com','','2014-02-08 19:15:58','',0,'SashaKennemer'),(407,'ChelseaHeagney','$P$BaWUPhu0u7HV2txm7bICo/jP4bysRI/','chelseaheagney','sarahkrya@hotmail.com','','2014-02-08 19:44:42','',0,'ChelseaHeagney'),(408,'ShelleySchnaars','$P$B6hB/t4Vf2BUUx.dznE.EIwx4O/TwR0','shelleyschnaars','vidaltupv@hotmail.com','','2014-02-09 01:19:37','',0,'ShelleySchnaars'),(409,'HermanCAMM','$P$B2ge/xs0IHvwg0fYh7kIUTY91T.BYi.','hermancamm','beautifulkook25uze92@laposte.net','','2014-02-09 02:24:41','',0,'HermanCAMM'),(410,'WesleyEastwood','$P$BR6Zg8iggn0AqZHJS0EH1jjxPLdoZx1','wesleyeastwood','jjppii01@gmail.com','','2014-02-09 03:37:17','',0,'WesleyEastwood'),(411,'JulianaDixson','$P$BhH.SKkuh4oJG8cFTJUg6Icu8Ii1HU.','julianadixson','liochemora@hotmail.com','','2014-02-09 06:15:41','',0,'JulianaDixson'),(412,'KattieOlvera','$P$Blrvgl6YOHV14y2BXTOOnNEcsEwpZB0','kattieolvera','jonleatherman5@criminalisticsdegree.com','','2014-02-09 10:26:14','',0,'KattieOlvera'),(413,'LaceyShelly','$P$BTV4ZiIr71JS0Qv2OtBS7MI3xA02yr/','laceyshelly','ollieapwa@hotmail.com','','2014-02-09 16:10:45','',0,'LaceyShelly'),(414,'Milla47Maiaqx','$P$Bu9oryCVVbAj9.X1Sv5.Qyn0/pZ5lz1','milla47maiaqx','paldasecgy1977@outlook.com','','2014-02-09 19:51:00','',0,'Milla47Maiaqx'),(415,'JeffereyPeebles','$P$B5oReK2cCf/jmCKD7nr8UC8bHUXv5f.','jeffereypeebles','lorenamackillop@spamfree24.org','','2014-02-09 21:28:12','',0,'JeffereyPeebles'),(416,'CaryHaugen','$P$B3wM5tuoa6qun2zTpsXYokKLi68FBg/','caryhaugen','phofeschmi@hotmail.com','','2014-02-09 22:25:57','',0,'CaryHaugen'),(417,'FloreneMacdonal','$P$B5Jjq1DBLR9uThCDBtgjUGGVU/1OAr.','florenemacdonal','jjppii06@gmail.com','','2014-02-09 23:37:13','',0,'FloreneMacdonal'),(418,'DianneGriswold','$P$BKfqwvlYkeW/H.JDASvJSd89xDSiZr1','diannegriswold','neytirena1980@outlook.com','','2014-02-10 09:28:23','',0,'DianneGriswold'),(419,'DoraNoblewst','$P$Bu3OgqVBCnGpPpfkKwXvHhAUJBQ5a11','doranoblewst','smallzekavc8z@hotmail.com','','2014-02-10 13:35:15','',0,'DoraNoblewst'),(420,'easypbmyo','$P$BADqjxwkCyuE6FFiGMeDX4E9eIdF82/','easypbmyo','garvinreja@hotmail.com','','2014-02-10 13:49:33','',0,'easypbmyo'),(421,'HumbertoBlair','$P$B3fiosBWkQtOfJTmk1HgJmI8Hp3tj//','humbertoblair','glamorousyacht42@laposte.net','','2014-02-10 15:26:26','',0,'HumbertoBlair'),(422,'easnpyoxu','$P$BaohVF2Faxuzo9Ni3r6KSV0BLgmeAm/','easnpyoxu','gallusrun@hotmail.com','','2014-02-10 16:43:26','',0,'easnpyoxu'),(423,'easxaotkw','$P$BFUeQHUwMOA3sII3ZwVyFaOL1w9R0D1','easxaotkw','fuscogzyrz@hotmail.com','','2014-02-10 19:04:30','',0,'easxaotkw'),(424,'JoycelynCAYL','$P$B7PIyecRH9iEcuXEI.oW0gj2yVNG/N.','joycelyncayl','toehzdf@hotmail.com','','2014-02-11 02:39:57','',0,'JoycelynCAYL'),(425,'ArleenYLVwvin','$P$BBR2Du3kunt3Nyn.BM6GQMGqv0JZk81','arleenylvwvin','jonleatherman9@criminalisticsdegree.com','','2014-02-11 06:06:19','',0,'ArleenYLVwvin'),(426,'EQGGregory','$P$B2QoH6FWXVdEWjy3UVHKCfhAuUs2.B.','eqggregory','louisecnuvezr62@hotmail.com','','2014-02-11 07:33:56','',0,'EQGGregory'),(427,'AracelisRowcrof','$P$BTnFNwwx/0VxzQ64ZoYD4QPazpLXmT.','aracelisrowcrof','link@couponstreet.in','','2014-02-11 08:02:45','',0,'AracelisRowcrof'),(428,'JurgenKFNt','$P$B/BQyZo0Zq4dizVWC9.6XMTkxsVtn0/','jurgenkfnt','avenkstunk@hotmail.com','','2014-02-11 08:51:50','',0,'JurgenKFNt'),(429,'LorrieGlasfurd','$P$BNTfHkyEBbI72bIquMY52qSDFUE1nl0','lorrieglasfurd','mariny9delorey@yahoo.com','','2014-02-11 17:01:53','',0,'LorrieGlasfurd'),(430,'ShonaCYTsybnl','$P$BDIGSDymkIOH6ZXrlKWtx8QifoabGo0','shonacytsybnl','chidatetro@yahoo.com','','2014-02-11 19:30:29','',0,'ShonaCYTsybnl'),(431,'CaitlynLeichhar','$P$B9O5sEAoHyg1nMe7kLzO.7ANoNz5Om.','caitlynleichhar','cloudyacademic24673@outlook.com','','2014-02-12 00:58:15','',0,'CaitlynLeichhar'),(432,'AdellPichardo','$P$Bn3b7i4Y7yZipoJgkd.HJXhYifSbfi.','adellpichardo','kanishaksq079@hotmail.com','','2014-02-12 04:14:52','',0,'AdellPichardo'),(433,'KeiraMaples','$P$BJsoMT0O5timaPbcPzIzi16D5gLcI01','keiramaples','andrebmmr@hotmail.com','','2014-02-12 09:06:53','',0,'KeiraMaples'),(434,'Edison4495','$P$BRzwWIDosZIw7K9IQGsW6KYFn1/7iB/','edison4495','shawndaicfgbio40@hotmail.com','','2014-02-12 11:42:57','',0,'Edison4495'),(435,'LatanyaHornick','$P$BDIoydoJUn7Fuu8TUAoEEgpqRV8qRz0','latanyahornick','stephanesuis58@hotmail.com','','2014-02-12 12:54:30','',0,'LatanyaHornick'),(436,'ElizbethDeyoung','$P$BIu.ngXODIWBveHxIHZziSRaF.gGoo0','elizbethdeyoung','patebyer@hotmail.com','','2014-02-12 17:11:56','',0,'ElizbethDeyoung'),(437,'Jay93Domxlog','$P$B83AiLNzTwO0ae5laD4yFaxUdCR4Y7/','jay93domxlog','voicelessammoni5@gmx.com','','2014-02-12 17:30:22','',0,'Jay93Domxlog'),(438,'WernerWieck','$P$B8aC3M8z66ZmhlI.y1LL9hYIorPeDR1','wernerwieck','tingsisczeti1984@outlook.com','','2014-02-12 22:05:25','',0,'WernerWieck'),(439,'Desmond25Q','$P$BjVsEFoIHZEbtyeDXwBpGxS0VTYCDv0','desmond25q','brittgagd@hotmail.com','','2014-02-12 23:45:26','',0,'Desmond25Q'),(440,'AnjaLouise','$P$B51y286u6xrl/1U1gF2Te6eoK19I981','anjalouise','alexandriatindal1493@spamfree24.org','','2014-02-13 07:38:23','',0,'AnjaLouise'),(441,'LancePelliomav','$P$BOBZOsCJwCrkoOEUiWJEef4AEMmbgv0','lancepelliomav','trishvtjq@hotmail.com','','2014-02-13 15:57:55','',0,'LancePelliomav'),(442,'Karolyn65D','$P$Bi0fAj.O7vksqIzOjNEVKQTasBkr9a/','karolyn65d','georgesmith@best-paydayloan24h7.com','','2014-02-14 17:02:27','',0,'Karolyn65D'),(443,'JacobFoster','$P$B.Onr4Bq/umofvNS6dXQtiAdzBAuzu1','jacobfoster','webgarden@electronic-smoke.com','','2014-02-14 18:52:26','',0,'JacobFoster'),(444,'Boryslavat67','$P$BA8omV693kre.W.mLiafXjCZno0FCX0','boryslavat67','1@bieliznadamska24.com.pl','','2014-02-14 20:55:19','',0,'Boryslavat67'),(445,'PedroLlanos','$P$BBWj/f0LflV3kDGXsQ6pHDnJ1bWGGt/','pedrollanos','pedro_llanos31@zaq321.com','','2014-02-15 03:18:15','',0,'PedroLlanos'),(446,'LatriceT36','$P$BYp4g21XcSpUanf7prR8hMOJ4xKDXf/','latricet36','legalgathering7w12k@gmx.us','','2014-02-15 10:16:53','',0,'LatriceT36'),(447,'DeangeloHarlow','$P$B7W8ZJqGFliWM/F73t59O4eCb7V9Nl.','deangeloharlow','billyyrja@hotmail.com','','2014-02-15 10:38:10','',0,'DeangeloHarlow'),(448,'Muhammad9975','$P$BSMyW94jgXmiqS3YSA.eoP23mc9u1G1','muhammad9975','efficaciousaftegx@gmx.us','','2014-02-15 13:38:32','',0,'Muhammad9975'),(449,'DallasBone','$P$B2asP/D5KBi53m8HiBq7xuB.2rnGbs0','dallasbone','dallas_bone94@99gamerz.com','','2014-02-15 19:04:19','',0,'DallasBone'),(450,'CatherineMash','$P$BAGi1QgrYwYycYKBNHjoA4VkPjGgoS.','catherinemash','tyreecpn@hotmail.com','','2014-02-15 20:12:51','',0,'CatherineMash'),(451,'JeannieRTGF','$P$B97H0SsXwuXnly2CQoCrcsxvFGgcin1','jeanniertgf','jeannie-thomas4@99gamerz.com','','2014-02-15 20:58:12','',0,'JeannieRTGF'),(452,'HollisCommons','$P$BZbgxMKAMKsDNiIpmYBOULXS1ME4fj1','holliscommons','lesiazcwc@hotmail.com','','2014-02-15 21:49:17','',0,'HollisCommons'),(453,'SalvatoreQff','$P$BjVi20EKSHTLIc8TwwL9CM0U/OH1sc.','salvatoreqff','salvatore.massaro34@99gamerz.com','','2014-02-16 03:53:53','',0,'SalvatoreQff'),(454,'GayStickler','$P$BjTJRR5Xyyco8/ky3F0lostZn9kcjt1','gaystickler','abrahamlowerson@spamgoes.in','','2014-02-16 05:01:38','',0,'GayStickler'),(455,'KermitLowerson','$P$Bux9R4m.hPHGij.hM2LlozVk1en9zB1','kermitlowerson','kermit_lowerson27@99gamerz.com','','2014-02-16 10:32:24','',0,'KermitLowerson'),(456,'OuidaHussain','$P$BBjDlMXh0DbQWJR1ZliohKCGWsnSvU0','ouidahussain','ouida_hussain@99gamerz.com','','2014-02-16 16:25:18','',0,'OuidaHussain'),(457,'AIBSimawgug','$P$Bmxgle3O86Yv1rwrRwCq5hw4Fjogt./','aibsimawgug','albatqx620@hotmail.com','','2014-02-16 23:26:00','',0,'AIBSimawgug'),(458,'WilsonBFVmwvzsz','$P$BGxvRHOiv0OJpqTodKVJ6j48i8HJ0./','wilsonbfvmwvzsz','wilson.beall@99gamerz.com','','2014-02-17 03:33:50','',0,'WilsonBFVmwvzsz'),(459,'wonSpodeDwece','$P$BusCbom3anxsJ8FJGHzyk557Styc7R1','wonspodedwece','assumstheasty@gmail.com','','2014-02-17 05:50:19','',0,'wonSpodeDwece'),(460,'Kurt22Ecfnfso','$P$BjT4Kd86.2wTz7DcjDtUfe8qcGKE900','kurt22ecfnfso','valleynpk@hotmail.com','','2014-02-17 12:02:47','',0,'Kurt22Ecfnfso'),(461,'AlexFarrow','$P$BCYiTRzfq6F6cHUWNynxBDs5VWrtL20','alexfarrow','noxiousphantom9fr@ziza.ru','','2014-02-17 12:05:51','',0,'AlexFarrow'),(462,'FreemanV10','$P$BzU8hgO3B9tqZXqNMU3lo/rhMwJKxY0','freemanv10','rosieckyq@hotmail.com','','2014-02-17 18:01:16','',0,'FreemanV10'),(463,'dod13','$P$B48xtAVSm0hwcMydyuVIYl/E0dJ17a.','dod13','kalinihgl@hotmail.com','','2014-02-17 19:14:40','',0,'dod13'),(464,'EugeneGlouceste','$P$BMfHOwXTVbeeVnnzSMlf.tKV3c/QRA0','eugeneglouceste','eugene_gloucester51@c.maybebest.com','','2014-02-18 01:34:02','',0,'EugeneGlouceste'),(465,'AnkeNeilsen','$P$BC.wPCLPDr.sleApyp8Abdl.echb7g/','ankeneilsen','barrierxmoch@yahoo.com','','2014-02-18 01:51:16','',0,'AnkeNeilsen'),(466,'OctavioHOG','$P$BhtdyxXClBKxfPx1/FH4.IB07LCshP/','octaviohog','karag6worrell@yahoo.com','','2014-02-18 03:47:47','',0,'OctavioHOG'),(467,'Mackenzie2517','$P$Bs8A2AiRThFUkSMIjJCv4NLy.JhNhr0','mackenzie2517','drycuff68042@outlook.com','','2014-02-18 05:44:39','',0,'Mackenzie2517'),(468,'AndyDurbin','$P$BnFynGCsYazITPrF1A2RGkqvbFXfNj.','andydurbin','aboriginalbreas18751@outlook.com','','2014-02-18 11:25:44','',0,'AndyDurbin'),(469,'JeremyTord','$P$BjzIqpO4H87zVOoYKyXkdCZcFGjM3f0','jeremytord','d3zpsrrc844@hotmail.com','','2014-02-18 12:46:17','',0,'JeremyTord'),(470,'asd14','$P$BLIj8UMYDWv.kjlR6XJOnabYEHK68f0','asd14','dojomojo@yandex.com','','2014-02-18 16:42:36','',0,'asd14'),(471,'MinnieTrenerry','$P$BTu6XHboJpfWeIjPxaIhLYiME4kSt//','minnietrenerry','vastdancer875ww63@outlook.com','','2014-02-18 19:45:13','',0,'MinnieTrenerry'),(472,'EmilieDarden','$P$B3TuHUbMKnOOdURF/Lk.4FITm7zj1t1','emiliedarden','petitedaybook83dj77f@outlook.com','','2014-02-18 23:39:37','',0,'EmilieDarden'),(473,'AliceBarela','$P$BFGf8XAlmIDwWOilhPVi.I6JoC3By51','alicebarela','curlycobweb18eu20f@outlook.com','','2014-02-19 14:47:52','',0,'AliceBarela'),(474,'manylkv','$P$BV0cKY1cwZmjJLdk4Q3F2gBzMjXYdF1','manylkv','teadnqa@hotmail.com','http://www.alertron.com/style/','2014-02-19 19:58:05','',0,'manylkv'),(475,'Alvinajti','$P$BaLP8EOxTL7PBJ.k0T95D6wRFQHfh30','alvinajti','maciekimarek@wp.pl','','2014-02-19 20:31:29','',0,'Alvinajti'),(476,'silverguru-1949','$P$BqduoZbiFEhPMPVVXGt/XeWoyJXBBR.','silverguru-1949','efficientdirect1337@outlook.com','','2014-02-20 01:22:05','',0,'silverguru-1949'),(477,'Andra3789ccnvid','$P$BUFO4.x3Txb2rKFjvfQBtGgh3aW4HH0','andra3789ccnvid','ronaldacprester@yahoo.com','','2014-02-20 06:19:11','',0,'Andra3789ccnvid'),(478,'MelisaKinser','$P$B7EwWZdbdRH5l7Hn.s0sPZH2Fu9.UA1','melisakinser','melisa.kinser@d.maybebest.com','','2014-02-20 08:04:34','',0,'MelisaKinser'),(479,'LynellXCThrfnxo','$P$BjJyh8Z3x6q3TiGHbfIJjhvfIwKWZ41','lynellxcthrfnxo','oldc.lou.d.s.4@gmail.com','','2014-02-20 11:21:03','',0,'LynellXCThrfnxo'),(480,'ClaribelPoate','$P$B3Op2HFeMENfYv0qazAtlKrfjLfj5o/','claribelpoate','cristinaueh684@hotmail.com','','2014-02-20 23:05:36','',0,'ClaribelPoate'),(481,'VilmaNtberbayt','$P$Bz3Gde7/Qbnd/d/SHzWT.9nG/C3QsT0','vilmantberbayt','gimavinuc@outlook.com','','2014-02-21 09:58:15','',0,'VilmaNtberbayt'),(482,'GeraldH47am','$P$Bg1reC9txA4ebtBB8HgRGgp5dvGd4w0','geraldh47am','deloisejso671@hotmail.com','','2014-02-21 11:58:21','',0,'GeraldH47am'),(483,'LyleNewport','$P$B/CthxrexqNmpJt3iNIbEWp49drkxA.','lylenewport','lyle-newport@99gamerz.com','','2014-02-21 13:30:43','',0,'LyleNewport'),(484,'MichaelSatt','$P$BgopVpa7K7933HGRBgK0Nh556rTT3e/','michaelsatt','michaeleire2@hotmail.com','','2014-02-21 23:43:21','',0,'MichaelSatt'),(485,'WillaRehkop','$P$BbNjW1uxglCMe3ZOZ9FA0dldw5/bBH.','willarehkop','swansonpiayrbw@hotmail.com','','2014-02-23 07:11:09','',0,'WillaRehkop'),(486,'MargueriteNKD','$P$BViRVhlEvU1Wc13U/eMIakh5hzRbMS/','margueritenkd','kaylaajs@hotmail.com','','2014-02-23 16:07:23','',0,'MargueriteNKD'),(487,'JuliusHoutz','$P$BwmE5/O.9V6WknhPEgBhxBpjywTd9h.','juliushoutz','rosellaxabraham@yahoo.com','','2014-02-23 23:32:26','',0,'JuliusHoutz'),(488,'Johanna6389','$P$BPMcD35cXpK0Vqi0Vn561AiZ7xx9if0','johanna6389','jorgebalfour5335@mmmmail.com','','2014-02-24 09:57:34','',0,'Johanna6389'),(489,'ImogeneAitken','$P$B4bjohHplpGw7mAKO0wCoC86.Pv6QR/','imogeneaitken','liicadan@hotmail.com','','2014-02-24 18:36:08','',0,'ImogeneAitken'),(490,'TheronW90sadgw','$P$BQVOSBKWtAFfflFtbVLOIPn3mbYT.h0','theronw90sadgw','feepq242@hotmail.com','','2014-02-24 19:05:03','',0,'TheronW90sadgw'),(491,'MirandaStreeter','$P$BV7M4XzrAT.fYIAhozaJONLgaoq/j60','mirandastreeter','nataliazuo532@hotmail.com','','2014-02-25 02:30:49','',0,'MirandaStreeter'),(492,'LeroyRZZvg','$P$BhPg4c.gqL13dNv7dF/qTabAcO7s/X0','leroyrzzvg','lmzkih@outlook.com','','2014-02-25 06:02:05','',0,'LeroyRZZvg'),(493,'BridgetteOtis','$P$B/NySdbhO1hQjcpyeTeViXpl8cKwEY1','bridgetteotis','swanson3yzle3@hotmail.com','','2014-02-25 07:17:00','',0,'BridgetteOtis'),(494,'catyhopiwex','$P$B/gic16GPlY8dMGg.hI.W92EGEsqZN1','catyhopiwex','iwwzhaucy@msn.com','','2014-02-25 17:38:43','',0,'catyhopiwex'),(495,'FrankPyzccnath','$P$Bkhu2XSR5m/y4mgkJ3CzUmty1aS2ir/','frankpyzccnath','andaseycur@hotmail.com','','2014-02-25 18:22:27','',0,'FrankPyzccnath'),(496,'JeanniePDX','$P$B2t3ep.lh3W7jEO8fkg18mjsdIm06L.','jeanniepdx','hydeufbbn3@hotmail.com','','2014-02-25 18:33:48','',0,'JeanniePDX'),(497,'drbrainpower','$P$B9q8nh/NvQ2ovg/KCnQY40FE/gcrZt0','drbrainpower','rxmedicinenews@yandex.com','','2014-02-25 19:53:21','',0,'drbrainpower'),(498,'MillardGodwin','$P$B6.OgO13kNbZVmCHYRU15Nns89uD4X.','millardgodwin','wogugelyxyh@hotmail.com','','2014-02-25 20:51:00','',0,'MillardGodwin'),(499,'silvergenius-1953','$P$BrWqNbH5bZp..JbjOu6B6f5BzqMYME0','silvergenius-1953','skillfulcrook41kv651@outlook.com','','2014-02-26 16:25:24','',0,'silvergenius-1953'),(500,'SoniaRJIKez','$P$BNwhD39gBefaZ/xNDzImdAcZzz2VGO.','soniarjikez','perezbdz@hotmail.com','','2014-02-26 22:29:21','',0,'SoniaRJIKez'),(501,'DarrenViles','$P$B/whRP8BkCDdymyagOoS81/JjrMVqV0','darrenviles','noble3xvdgia@hotmail.com','','2014-02-27 02:29:29','',0,'DarrenViles'),(502,'YQPMeaganetp','$P$BDLMya4IoyukYQak5makVhwMis9pxG1','yqpmeaganetp','ewanhenry0@gmail.com','','2014-02-27 04:21:13','',0,'YQPMeaganetp'),(503,'CurtisMileham','$P$BS2KMQrbsS716k.BhVIYTptPjxVeIW1','curtismileham','longbatch723@laposte.net','','2014-02-27 08:39:53','',0,'CurtisMileham'),(504,'KaraCutler','$P$BMQ7o6GUoROKBek4ztIVOB1dG8txYT.','karacutler','perryyqault0t@live.com','','2014-02-27 09:28:40','',0,'KaraCutler'),(505,'RodneyDecosta','$P$BFW8ydRoyX67pom1g4t2f/nJ8TqDnW1','rodneydecosta','gildagvv@hotmail.com','','2014-02-27 11:33:45','',0,'RodneyDecosta'),(506,'aaforbesman','$P$B.rgcK/qrq/S4X7u2mTdQ8.a5CQTw41','aaforbesman','mantoyou@yandex.com','','2014-02-27 18:41:36','',0,'aaforbesman'),(507,'CorinneBilodeau','$P$BgzwvFlsO/jser16zrW9cMZGWBpJQd0','corinnebilodeau','jerixsgw@hotmail.com','','2014-02-27 20:12:33','',0,'CorinneBilodeau'),(508,'RubenWolford','$P$B0RERUsI61Qk2D6s5f3O0E0ybcPh7R1','rubenwolford','adammyers43@gmail.com','','2014-02-28 00:59:28','',0,'RubenWolford'),(509,'Orbinuignacic','$P$B.WDdAwXY.KSX5DrL0C0YxQJh2zRGn/','orbinuignacic','rkamuiseb@hotmail.com','','2014-02-28 07:42:48','',0,'Orbinuignacic'),(510,'RosauraCarreno','$P$BFbpTNdKJgNHzzb30XlIb.ho3vTahD0','rosauracarreno','earthyspecies42c697r@outlook.com','','2014-02-28 16:42:47','',0,'RosauraCarreno'),(511,'MuhammadCash','$P$BaqRLZ30rYRVr3gM3dhlz/n52TgomM1','muhammadcash','subduedyard2xbe@nokiamail.com','','2014-02-28 22:06:43','',0,'MuhammadCash'),(512,'InebiWessel','$P$B6nJjEZhxANGJcnePZKR6litmQjdpT/','inebiwessel','millsog5fkowhd@outlook.com','','2014-02-28 23:29:05','',0,'InebiWessel'),(513,'LizzieGilson','$P$Bc19bBOTg4LvBPYRAg.fQTIGR3IhJZ1','lizziegilson','branch.fyjpgk@hotmail.com','','2014-03-01 00:29:34','',0,'LizzieGilson'),(514,'SylvesterCarlos','$P$Bd9yglmKyaBf9a37KEos71.WvUNaXz.','sylvestercarlos','adeleerv@hotmail.com','','2014-03-01 00:29:50','',0,'SylvesterCarlos'),(515,'AngelikaLock','$P$B1ud.xcaPgffGPzNAHVa44xvtmUeN91','angelikalock','walshtmy@hotmail.com','','2014-03-01 01:43:48','',0,'AngelikaLock'),(516,'WendiLawsq','$P$Bq/cb0b7qOuNeu8Tr.9cgRPexaBOpe0','wendilawsq','aheadimplement9xn75x@outlook.com','','2014-03-01 02:52:52','',0,'WendiLawsq'),(517,'GayPidgeon','$P$BglR9sgIsU8tPEpZWCpaY5vKtIltwH/','gaypidgeon','enioltora@hotmail.com','','2014-03-01 06:18:33','',0,'GayPidgeon'),(518,'Jerrykt','$P$BltAzPN63JPponMkmI7cN6YLfjiSxT/','jerrykt','lymn@aol.com','','2014-03-01 06:36:04','',0,'Jerrykt'),(519,'Anh7016npvzrpq','$P$BhB58uBfyGKE2PEIl00gkhi6V2q6vE/','anh7016npvzrpq','anh_abarca@99gamerz.com','','2014-03-01 08:19:42','',0,'Anh7016npvzrpq'),(520,'RogelioXLX','$P$Bu4H48yLKNw9pUiAwZWqKIjrAcfLAs0','rogelioxlx','johnston80d0sjc6@hotmail.com','','2014-03-01 09:21:44','',0,'RogelioXLX'),(521,'BaileyM94akht','$P$B7vOVUnp.S/3Ej/j0BPBCQ5PC06blJ.','baileym94akht','readwvyh@hotmail.com','','2014-03-01 14:10:53','',0,'BaileyM94akht'),(522,'JaxonOttoazb','$P$BPD2Bvp6XrpEWbLab69hc8yx.eLITx/','jaxonottoazb','haocaisee@hotmail.com','','2014-03-01 19:07:04','',0,'JaxonOttoazb'),(523,'ReynaldoOud','$P$BsYPdcrFOdj/YUxN1D2n29m4nV2sSr1','reynaldooud','kymberlybsmcauley@yahoo.com','','2014-03-01 20:52:58','',0,'ReynaldoOud'),(524,'TomOShaughnessy','$P$Bx6NsDvpZc7AVZjjgiBv.ZNQFwz7va1','tomoshaughnessy','rtolleyst@hotmail.com','','2014-03-01 20:58:23','',0,'TomOShaughnessy'),(525,'MarcellaNYRD','$P$BI6ZTr3ihSsYWqz6/BRJ88DRA2OMpV.','marcellanyrd','idatwinston@gmail.com','','2014-03-02 01:49:37','',0,'MarcellaNYRD'),(526,'EllisCrawford','$P$BctHb3DioYJBzkmr7AFWUNPH.LlxiB0','elliscrawford','nraitytrav@hotmail.com','','2014-03-02 03:33:21','',0,'EllisCrawford'),(527,'TammieHughey','$P$Ba96SExgrEdrxiIt21XPf8jHxCzDSG1','tammiehughey','blancanstith@gmail.com','','2014-03-02 09:39:14','',0,'TammieHughey'),(528,'OupeejeGoodman','$P$B58.K4bWr7rOMvkCGMyxzUGUoL6Avx/','oupeejegoodman','weavern2a0dyk@outlook.com','','2014-03-02 09:41:01','',0,'OupeejeGoodman'),(529,'AugustusSargood','$P$BcUQOt0okP.jCfQAu6U9nb7dlrwKoA.','augustussargood','hubbardv6ro4or@outlook.com','','2014-03-02 10:21:14','',0,'AugustusSargood'),(530,'AnamariaMaxted','$P$Br08qcJKHFojdMLFlHuQZj1aJBDYkO0','anamariamaxted','ololidaily@e-postkasten.eu','','2014-03-02 10:23:29','',0,'AnamariaMaxted'),(531,'AvisNuzzolibh','$P$BUIOrRVe.YgTrQP/mnNXkWeu1UX6kp.','avisnuzzolibh','fitzgeraldb86jlbgme@hotmail.com','','2014-03-02 10:54:43','',0,'AvisNuzzolibh'),(532,'Nolan8751ub','$P$BFBedutK.czul9iMTzXa6FYFEWzqkw1','nolan8751ub','likeableentrailgj73g@outlook.com','','2014-03-02 16:30:51','',0,'Nolan8751ub'),(533,'ASHGreggan','$P$BznZivxqCkS3rSgCbdneXpQ0MOQ7Qt/','ashgreggan','brocadoga@hotmail.com','','2014-03-02 20:15:13','',0,'ASHGreggan'),(534,'KristoferEscami','$P$BneMorGKAWpM7.Hr22M3UUyjYjD9To1','kristoferescami','tullyzpjt@hotmail.com','','2014-03-02 20:52:54','',0,'KristoferEscami'),(535,'RNHDavezwdvch','$P$ByuMPgBSaQqSg/qePLkQ7w3X3xsJ4q0','rnhdavezwdvch','yanmezbedk@hotmail.com','','2014-03-02 20:58:12','',0,'RNHDavezwdvch'),(536,'ShawnBradberry','$P$BrIZEqb26quQo2yv4zoG.RHmv..jPi0','shawnbradberry','michaelavyq439@hotmail.com','','2014-03-03 00:17:48','',0,'ShawnBradberry'),(537,'RomanCramsie','$P$BJyTSxqBB/tOqufz6w5jULzvt/Qkfq1','romancramsie','amowelllej@hotmail.com','','2014-03-03 01:14:52','',0,'RomanCramsie'),(538,'KristenWakehurs','$P$B604skx.k1tyPeK5z2EUEAm1wJPXG40','kristenwakehurs','harbreslau@hotmail.com','','2014-03-03 03:11:36','',0,'KristenWakehurs'),(539,'KieraOlivares','$P$BDGFZpo4F1gjC/W4SdLi0dYImXe2xn1','kieraolivares','savtertsh@hotmail.com','','2014-03-03 04:11:20','',0,'KieraOlivares'),(540,'WilsonBroinowsk','$P$Bz/.fwM2AZjJxF4SQEUPMGRdxr/wCb.','wilsonbroinowsk','pereztjux@hotmail.com','','2014-03-03 04:46:30','',0,'WilsonBroinowsk'),(541,'LeomaBrazenor','$P$Bw5qIciMz37IU4163rbqDUmKXVl3IO1','leomabrazenor','uzhosoarnt@hotmail.com','','2014-03-03 05:44:10','',0,'LeomaBrazenor'),(542,'HiltonZKNsyqrb','$P$BuJA/mB47ZAaGjPOzS8sBDDgSvbq5B0','hiltonzknsyqrb','schatcasta@hotmail.com','','2014-03-03 06:23:47','',0,'HiltonZKNsyqrb'),(543,'IlaceMurillo','$P$BW8c8BPD/U.SqEznKTUEC1FyXA6bYc/','ilacemurillo','uchanakinchela@dispostable.com','','2014-03-03 06:31:00','',0,'IlaceMurillo'),(544,'Emmett82Szmp','$P$BNfVJV4hQyXC/bhkR826fY8lErQUi5.','emmett82szmp','refugiovtu823@hotmail.com','','2014-03-03 06:54:19','',0,'Emmett82Szmp'),(545,'LaraEchevarria','$P$BkGPkdPakyCarB0XaGFkiI/gZnkjir.','laraechevarria','homeruwxs@hotmail.com','','2014-03-03 06:56:30','',0,'LaraEchevarria'),(546,'BradlyMichel','$P$BqOAyFd38FXBMATJGlQX2ZJpAnJZlz/','bradlymichel','abbierkj206@hotmail.com','','2014-03-03 07:11:47','',0,'BradlyMichel'),(547,'HildegardePfeif','$P$BiLb.3liwWFrHgPCsyVBaHEYfG4DPl/','hildegardepfeif','ijuaveberg@hotmail.com','','2014-03-03 12:56:30','',0,'HildegardePfeif'),(548,'JerilynMcSharry','$P$BOG1xPkyUFNmdrxLLJ9yhNLvc7OgiG1','jerilynmcsharry','annicefgr149@hotmail.com','','2014-03-03 14:59:52','',0,'JerilynMcSharry'),(549,'UnaKaufmann','$P$Bh5D00DcofPAI/mZIPp3FL1oFNH/Fs0','unakaufmann','galburbri@hotmail.com','','2014-03-03 19:26:20','',0,'UnaKaufmann'),(550,'FrancineShackle','$P$B6HTHl5.AWIRsLGW6ZGJbZDkjnqNLM.','francineshackle','clestervan@outlook.com','','2014-03-03 20:08:03','',0,'FrancineShackle'),(551,'AlexandraNGCR','$P$BjCzxrN/6V2kBkqW.fcPhfrStmNoCp/','alexandrangcr','dhodellkat@hotmail.com','','2014-03-03 20:15:17','',0,'AlexandraNGCR'),(552,'EzequielKenneme','$P$B3cfRY2WW0S8uEmI/1.fPhWtB31xw91','ezequielkenneme','elglenski@hotmail.com','','2014-03-03 22:33:48','',0,'EzequielKenneme'),(553,'LeoBenjafield','$P$ByOBFhMbry3PUaHonSPQqt5rswtI1p.','leobenjafield','rynsantacr@hotmail.com','','2014-03-03 23:15:03','',0,'LeoBenjafield'),(554,'CharliCcfe','$P$BFYEPF2yQYYq0IZH7W/FCCCrgUXTu6.','charliccfe','nheckettc@hotmail.com','','2014-03-03 23:27:56','',0,'CharliCcfe'),(555,'AlissaOberle','$P$B1rBmqBQ6XTbVhzL6iv9zf8J7duG9v/','alissaoberle','benitaefu868@hotmail.com','','2014-03-03 23:30:51','',0,'AlissaOberle'),(556,'heavy003','$P$BycoqgFFtEkaBnKfLsgSGX.eHZG3Dt1','heavy003','sb.m.heavy@gmail.com','','2014-03-04 05:17:04','',0,'heavy003'),(557,'JodiERLzurv','$P$BNFUa8FltipTmp01zC7I0nEeApNRjc.','jodierlzurv','uofthersru@hotmail.com','','2014-03-04 07:17:20','',0,'JodiERLzurv'),(558,'EnriquetaBigge','$P$BNsm4H7wyVS8w5.K/plUGWoymw4q8i/','enriquetabigge','rnogieroet@hotmail.com','','2014-03-04 08:02:48','',0,'EnriquetaBigge'),(559,'HongARZDgm','$P$BLWRm4zyTe0809dIIjO3KscQpOfFtj.','hongarzdgm','tatumkne564@hotmail.com','','2014-03-04 08:16:31','',0,'HongARZDgm'),(560,'ClaraWainewrigh','$P$BJ2QoPbJnvpfxAEUOin5rorl14GWYa0','clarawainewrigh','cathieomx487@hotmail.com','','2014-03-04 09:52:56','',0,'ClaraWainewrigh'),(561,'luldannel','$P$BShZZK7.YjqEavyvub8OmrjXbdy5fK0','luldannel','luldannel@hotmail.com','','2014-03-04 10:13:50','',0,'luldannel'),(562,'capxbm01','$P$B9j8qvuFfho8ld0yV5ksBk1WTXDqOi1','capxbm01','zzpsj037.6@gmail.com','','2014-03-04 15:15:35','',0,'capxbm01'),(563,'CarinSwangcyiv','$P$B.uiEEer/rjG514tdbplICjvkN/lMx1','carinswangcyiv','tamarrwb014@hotmail.com','','2014-03-04 17:54:21','',0,'CarinSwangcyiv'),(564,'JosefaBirdsall','$P$BTixK1HeaT3t3ceSJK0kFq24Noirgn1','josefabirdsall','limusinaspt.6@mjbelda.com','','2014-03-04 20:09:58','',0,'JosefaBirdsall'),(565,'AllenDamron','$P$BZztROy0iXQKn6rqMATbxRteFRwBUI.','allendamron','thebiglist1@aol.com','','2014-03-04 21:20:10','',0,'AllenDamron'),(566,'yd201403a','$P$BFBUpY1Y9CMOrz4m2S2xnvthNSqa7e1','yd201403a','cjcjcccj@hotmail.com','','2014-03-04 21:28:24','',0,'yd201403a'),(567,'AdanBazile','$P$BjJGp3WF7ZcVYctk6VHDHyNo2odwTS0','adanbazile','ganeinclin@hotmail.com','','2014-03-04 22:05:42','',0,'AdanBazile'),(568,'Victoria4310','$P$BKqmihfOWbYXgn590Lq7jlVg0Z3Uvd1','victoria4310','taizanturt@hotmail.com','','2014-03-04 23:19:16','',0,'Victoria4310'),(569,'AmyMontanez','$P$Bd2s54CTqx7kVfHB9NBz8aUJh3dWwx/','amymontanez','sigelansr@hotmail.com','','2014-03-05 00:01:50','',0,'AmyMontanez'),(570,'RichieHillgrove','$P$Bcc15hSON9hns2JK6ytp0CFVyWsoz..','richiehillgrove','lineaqxq@outlook.com','','2014-03-05 01:46:37','',0,'RichieHillgrove'),(571,'jonleatherman','$P$BudU0Y4YMNn8eNz3I.iJuPryvjkR/i/','jonleatherman','jonleatherman3@criminalisticsdegree.com','','2014-03-05 03:27:51','',0,'jonleatherman'),(572,'TristanEstevez','$P$BgeDDi1geVn5OmfbfassbDMGJM0GdI/','tristanestevez','orkelucci@hotmail.com','','2014-03-05 04:36:16','',0,'TristanEstevez'),(573,'AdelaidChabrill','$P$B2aIWqjpQH/LgGnXZPuAqNLFCbwzF50','adelaidchabrill','sada@electronic-smoke.com','','2014-03-05 05:29:58','',0,'AdelaidChabrill'),(574,'StephanieSadlie','$P$BnZAllgJjJqZd/vOqsaid7t4GuNSXA0','stephaniesadlie','stephanie.sadlier78@d.maybebest.com','','2014-03-05 07:33:57','',0,'StephanieSadlie'),(575,'RamonitaMorriso','$P$BraHJCUizPBoOOmuxDRB49LhDzn.490','ramonitamorriso','nickixce095@hotmail.com','','2014-03-05 08:04:49','',0,'RamonitaMorriso'),(576,'Jasmin32Eqcaeym','$P$B.dDz/IEY9TtgbEVGc1NpPA08BX1P80','jasmin32eqcaeym','velmafld003@hotmail.com','','2014-03-05 10:02:26','',0,'Jasmin32Eqcaeym'),(577,'CamilleEanes','$P$BwrfsaSbVV3dk.CQFSxIM9WkCKSX1Y1','camilleeanes','lucybpc049@hotmail.com','','2014-03-05 10:30:18','',0,'CamilleEanes'),(578,'ErikaVJWId','$P$B5H8oXcLYi1D.xeqYrB7eUflguBAjr.','erikavjwid','burnsyl1eyv@hotmail.com','','2014-03-05 12:29:55','',0,'ErikaVJWId'),(579,'LorieOgctusik','$P$BRe5OEDXhlQzcqjbC5AFIxYzZm1lwB/','lorieogctusik','jfvduzskbe@das423d2da.slupsk.pl','','2014-03-05 13:10:34','',0,'LorieOgctusik'),(580,'RoscoeKawamoto','$P$BwqNnqDehrWS7K44ydUakZu2CXHj6A/','roscoekawamoto','uanradbur@hotmail.com','','2014-03-05 13:43:17','',0,'RoscoeKawamoto'),(581,'EnriquetaGreenl','$P$BfESYpQJr20YWLysH4UmRxItC0UfUf.','enriquetagreenl','fosufyvufex@hotmail.com','','2014-03-05 17:34:32','',0,'EnriquetaGreenl'),(582,'MaurineGrisham','$P$Bi/DGHpuXk34ocWbi1e8ODIk.aQzFp/','maurinegrisham','marlenwwxpcvichu25@hotmail.com','','2014-03-05 19:48:15','',0,'MaurineGrisham'),(583,'KarlySwift','$P$BRkNZja6tyQplMwKrH97zk9AVdMqjg0','karlyswift','leejamrtqhd@outlook.com','','2014-03-05 20:54:41','',0,'KarlySwift'),(584,'KristianRak','$P$BdSEQespOhMu0C4CkTOqjruRLcNm2d.','kristianrak','staceehzz860@hotmail.com','','2014-03-05 21:02:42','',0,'KristianRak'),(585,'Marylin18O','$P$BgZygGibD2GeJjZ7rHP.rD7Ebd3hKS.','marylin18o','sulkyfascism51v5c@nokiamail.com','','2014-03-05 21:12:45','',0,'Marylin18O'),(586,'India5643tdrcw','$P$B6YwffYQsaYA13xCp.ODDoFXFvTbS11','india5643tdrcw','almatpfv@hotmail.com','','2014-03-05 21:27:52','',0,'India5643tdrcw'),(587,'LynetteRasch','$P$BGHDRUdT5PBP4CNAbm0KQcCbqo1yKu1','lynetterasch','umariffet@hotmail.com','','2014-03-05 21:33:38','',0,'LynetteRasch'),(588,'JosephKeighley','$P$B358nnycT6tgfA3K9pgL84LPaeUrdN0','josephkeighley','douglas7plry7xj@hotmail.com','','2014-03-05 23:28:46','',0,'JosephKeighley'),(589,'ArlieGoldberg','$P$BhWHEgZo7dq6aNWXzpltgNX8J9bDuv1','arliegoldberg','wligustus@hotmail.com','','2014-03-06 01:07:29','',0,'ArlieGoldberg'),(590,'IvaWorthyc','$P$BSZMxq29JkwHWO/NMZan/KO5it0nbr1','ivaworthyc','iva.worthy84@99gamerz.com','','2014-03-06 02:31:17','',0,'IvaWorthyc'),(591,'DarinEagle','$P$BXEbcf04YDQfVqDo4j27CWGazNJtxv.','darineagle','zonauhw418@hotmail.com','','2014-03-06 02:35:16','',0,'DarinEagle'),(592,'BeatriceKeaton','$P$B.A79qz7HL2GtjpHL/JsGwBLSvWodr/','beatricekeaton','farrcvgk@outlook.com','','2014-03-06 02:49:57','',0,'BeatriceKeaton'),(593,'LiefP81thp','$P$BqnRtyERxeXrAD0abhtLH2u6PYPTsu/','liefp81thp','glennj7kmjcr4f@hotmail.com','','2014-03-06 03:04:15','',0,'LiefP81thp'),(594,'Georgia0328','$P$BMhwMzQBRGyd9.EoMHj6AzjomWHGXv0','georgia0328','stimulatingidea1r8s@verybig.co.uk','','2014-03-06 03:08:27','',0,'Georgia0328'),(595,'Hilary278','$P$BaDLtn.bdhadTjqEtfhqTVFGux9d/./','hilary278','radek.fklolko@poczta.pl','','2014-03-06 07:55:51','',0,'Hilary278'),(596,'LayneBidmead','$P$B6WozJjmADiBP8MZLnd7/GKu7WCUre0','laynebidmead','diwyqitiron@hotmail.com','','2014-03-06 07:56:27','',0,'LayneBidmead'),(597,'Iesha13Gntvhhd','$P$BHR2ANzJ5nMmP7VPEQ6jSf3exEW.En0','iesha13gntvhhd','luzuwby@hotmail.com','','2014-03-06 08:35:48','',0,'Iesha13Gntvhhd'),(598,'FletaAUMmqwnjv','$P$B6XvJvp9j11VINYTb2CFT6jThCNrUr1','fletaaummqwnjv','fleta-amato@99gamerz.com','','2014-03-06 10:26:40','',0,'FletaAUMmqwnjv'),(599,'EdBiddellkbzmgn','$P$BYpBN0FFc5gOaN/b58W8XhgzL37MRL.','edbiddellkbzmgn','tlenfunder@hotmail.com','','2014-03-06 11:32:50','',0,'EdBiddellkbzmgn'),(600,'KathrynDUKF','$P$B.5YHoCPKKdaWYmO3Bk59mo8bv87Id/','kathryndukf','curtisc2sxolox4@hotmail.com','','2014-03-06 11:57:16','',0,'KathrynDUKF'),(601,'RozellaSteil','$P$BtVW7srLgZ0kQCCZoYppJDtW0MVGZe0','rozellasteil','buddyfhe@hotmail.com','','2014-03-06 15:41:45','',0,'RozellaSteil'),(602,'RPYBurtontygq','$P$B3b3oEngzYlILdHLn1oVnbUhL2818T.','rpyburtontygq','lowarocasobu@hotmail.com','','2014-03-06 18:04:21','',0,'RPYBurtontygq'),(603,'RusselEdmonds','$P$ByM5wzrpoEUUUO9mxQSRUr7KeG3gk8/','russeledmonds','tatumncc@hotmail.com','','2014-03-06 19:09:38','',0,'RusselEdmonds'),(604,'MalcolmPi','$P$BUs97h1gzaFbzgvxaBq/sbvNArBaCZ.','malcolmpi','de697bd6@yahoo.com','','2014-03-06 21:35:52','',0,'MalcolmPi'),(605,'kme714gw','$P$BU8UT77CRxEfM.VKajqIma81hcTmWQ/','kme714gw','xp51wl@5remodelingplus.com','','2014-03-06 23:04:46','',0,'kme714gw'),(606,'BartHinojosa','$P$Bpvw1Hna68g2M.SXCed.V9BTUJk1T11','barthinojosa','lidiaqkvfkyozy34@hotmail.com','','2014-03-06 23:38:49','',0,'BartHinojosa'),(607,'IjeefDevine','$P$Bg9Tk6t.BIaMCiWUOPIBUSHdJwFh950','ijeefdevine','clevelandeisenberg@spambog.ru','','2014-03-07 06:50:36','',0,'IjeefDevine'),(608,'Angeles40C','$P$Bt5obiYw10FsR43oIT81pqWILfwtYF1','angeles40c','gusesxxefn@yahoo.com','','2014-03-07 08:25:29','',0,'Angeles40C'),(609,'TawnyaMartin','$P$BQtTNjn6Y9tXobP.DE0HrmDBRFw35U/','tawnyamartin','shineeny@hotmail.com','','2014-03-07 11:17:04','',0,'TawnyaMartin'),(610,'JaninaStang','$P$BO3sf7Uh7y1h0zfHOfhY5UJBi5zMzn1','janinastang','colossaltrouser5453@outlook.com','','2014-03-07 11:31:06','',0,'JaninaStang'),(611,'dont click this','$P$BFBpR5yg2EsoIzbFAGtBzHqwFa3hND/','dont-click-this','mieszkod@hotmail.com','','2014-03-07 13:26:03','',0,'dont click this'),(612,'MuhammaUCJI','$P$BiRbvzMFeTmwIj1bNhgZaSSGiuFrtJ0','muhammaucji','eldonwyfs@hotmail.com','','2014-03-07 13:36:29','',0,'MuhammaUCJI'),(613,'AnnettaKeyes','$P$BpPQo/.Jsi4oA0bm.61iTpeZFT6Nzk/','annettakeyes','robertson7ne1yi3yd@hotmail.com','','2014-03-07 19:59:05','',0,'AnnettaKeyes'),(614,'Phoebe0905','$P$BRJASwhH9mNvX1.SyKuu099is/ryf3/','phoebe0905','calloustact33ph462@outlook.com','','2014-03-07 20:11:11','',0,'Phoebe0905'),(615,'ShawnStowmgjm','$P$BL6x274CoCiSxPm3Lq3UV08XSuUz2c/','shawnstowmgjm','yinrosiek@hotmail.com','','2014-03-07 20:21:07','',0,'ShawnStowmgjm'),(616,'RolandoBoddie','$P$BAsOunWhWI1pH2qm1TOBkrwHS05Bvh/','rolandoboddie','woodwardwts63r7@outlook.com','','2014-03-07 21:17:05','',0,'RolandoBoddie'),(617,'PabloDulhunty','$P$BqgfqFPrPyPcBOzw7uLvGNDMnuNFEg.','pablodulhunty','uocayetan@hotmail.com','','2014-03-07 23:21:42','',0,'PabloDulhunty'),(618,'FaithGoffage','$P$BAJMMlCH5Jb2I30cUMOQD6wweBWNf2/','faithgoffage','karstdcvp@outlook.com','','2014-03-07 23:24:33','',0,'FaithGoffage'),(619,'MarcelaFink','$P$BD5DjR/r09b02Tew6IrIy.WxWvrLc..','marcelafink','eigphynaeh@hotmail.com','','2014-03-08 00:00:36','',0,'MarcelaFink'),(620,'RochellELPC','$P$B6iHAV36XvmVLPOt8dpytm.Ovrxgls0','rochellelpc','agonizingitinerq033f@outlook.com','','2014-03-08 01:54:04','',0,'RochellELPC'),(621,'MagdaleRamirez','$P$Bm3eG2gQ3zCSRb.Mh7akmmEY90O0BZ1','magdaleramirez','donnuwr@hotmail.com','','2014-03-08 02:10:59','',0,'MagdaleRamirez'),(622,'CraigEastwood','$P$B3Gfi.ZvGTkg/lett7Vn9ce5OOXYgY1','craigeastwood','erochhertzler@spamavert.com','','2014-03-08 02:31:33','',0,'CraigEastwood'),(623,'Tomoko3436','$P$BwCT5snQ1DLHL3kLjTOgXvKxWkUvcU1','tomoko3436','uanemonts@hotmail.com','','2014-03-08 04:18:54','',0,'Tomoko3436'),(624,'AlfieShinn','$P$BybY56giP5Ej8hf5kElsZ9FWzJbot9.','alfieshinn','jiaountki@hotmail.com','','2014-03-08 04:30:45','',0,'AlfieShinn'),(625,'RosarioBlair','$P$B41dlsA1yU68jSImlnAKf9VtF7W3Td0','rosarioblair','sordidenigma71@laposte.net','','2014-03-08 06:35:47','',0,'RosarioBlair'),(626,'JedGoldiel','$P$BpFZuRtkmCeCeYh0D0MNgrTg0P99kh/','jedgoldiel','zhusarism@hotmail.com','','2014-03-08 06:47:42','',0,'JedGoldiel'),(627,'Wailbodledese','$P$BGrn0gTdI4yK1p8a7UuaEiOptrYWSP1','wailbodledese','gennicklee@gmail.com','','2014-03-08 06:47:52','',0,'Wailbodledese'),(628,'NormaMaxted','$P$BW6yD/UXYdU2vWt7AQsdn81nrFFy4U1','normamaxted','10@ranking-chwiilowek.waw.pl','','2014-03-08 07:04:28','',0,'NormaMaxted'),(629,'Chauncey6741','$P$BQZ/AHPpD559uAADadYOEKA9oG34jZ0','chauncey6741','anjojesemr@hotmail.com','','2014-03-08 07:20:02','',0,'Chauncey6741'),(630,'Andre78Brtek','$P$BQDLrxYi8.4Le2leHTsrWaXZRSb1EI0','andre78brtek','robertsonhteyn2p1@hotmail.com','','2014-03-08 07:26:14','',0,'Andre78Brtek'),(631,'KiaraPomeroy','$P$Bkec7fuaNVYA5D1vd5hlTGW3iDnjAG0','kiarapomeroy','anznzektak@hotmail.com','','2014-03-08 07:27:24','',0,'KiaraPomeroy'),(632,'JeffryJaramillo','$P$BDxbpsmc3uUrJE2Z.egw7/bEehwBDJ0','jeffryjaramillo','brehmkwp@hotmail.com','','2014-03-08 09:41:51','',0,'JeffryJaramillo'),(633,'ErnestineHester','$P$BzHVtgDZYGrDLFXq5qFFZHHogshQru0','ernestinehester','youdauila@hotmail.com','','2014-03-08 10:21:12','',0,'ErnestineHester'),(634,'Elvis17Fzyq','$P$BeYCcndUhxgfC4WkftBMExl/q0bZBL1','elvis17fzyq','liachonpop@hotmail.com','','2014-03-08 11:57:34','',0,'Elvis17Fzyq'),(635,'KWWLatashi','$P$BE9xWkKJAyoY1wFhvLCLYrzAk86eHT/','kwwlatashi','yummysadness126cs13@outlook.com','','2014-03-08 12:30:37','',0,'KWWLatashi'),(636,'Hannelo30A','$P$BRt2JxeFhPvjnGOGtSt1OKvMV1mk1y1','hannelo30a','futuristicdeityon24l@outlook.com','','2014-03-08 13:10:41','',0,'Hannelo30A'),(637,'UlyssesSutcliff','$P$BGU4zbT8rnfg8ML5e59lkS.K.7.uns1','ulyssessutcliff','ianeslies@hotmail.com','','2014-03-08 17:25:56','',0,'UlyssesSutcliff'),(638,'AlphonseKozlows','$P$BLM/jqwrwrZ.dCpCF/Y5zI/wq.nLB61','alphonsekozlows','charlinedep200@hotmail.com','','2014-03-08 18:26:36','',0,'AlphonseKozlows'),(639,'Samuel1823','$P$Bqb.Bywgu.Txuiv9MGYUaMuZfd/4It.','samuel1823','inyuccikul@hotmail.com','','2014-03-08 19:24:22','',0,'Samuel1823'),(640,'FlorineHarbison','$P$Bmb0QTDmZvjFVG130mhfkcDfnGtust/','florineharbison','iyaoosterh@hotmail.com','','2014-03-08 21:13:17','',0,'FlorineHarbison'),(641,'CharlesJacoby','$P$BqXlHhfvqdZ0uOJRlM57jRtqre5kAo0','charlesjacoby','jinallegr@hotmail.com','','2014-03-08 21:55:51','',0,'CharlesJacoby'),(642,'RalphMargolin','$P$BbKRqkQQgSbpKFBbSJCypKb95CYO9o1','ralphmargolin','ianighmey@hotmail.com','','2014-03-08 22:17:24','',0,'RalphMargolin'),(643,'FrankliGeake','$P$BZfKb81H.9rtCqFkcdOVg1Kocw/lWw0','frankligeake','gabbyastronomy3a2qn@nokiamail.com','','2014-03-09 00:33:07','',0,'FrankliGeake'),(644,'JeffryBerryman','$P$BoWdof0Dg1VVL2R.lekzkt.VYk1gwr0','jeffryberryman','jessiedhkwbyzoxv47@hotmail.com','','2014-03-09 02:16:15','',0,'JeffryBerryman'),(645,'CarltonMcCuller','$P$BFh7OBW/N.ozaGJm3QqgpXSfv76/qg.','carltonmcculler','divergenttavernzsh@nokiamail.com','','2014-03-09 05:09:43','',0,'CarltonMcCuller'),(646,'AleidaTqndx','$P$B3sEaFfc0VYlt.SL8cqIjH1LJj4IS81','aleidatqndx','aiymstron@hotmail.com','','2014-03-09 08:25:16','',0,'AleidaTqndx'),(647,'KareemChilton','$P$BDg8ocyCzjALTwQd5i2nAeOs76g8S9/','kareemchilton','williamkry431@hotmail.com','','2014-03-09 10:42:31','',0,'KareemChilton'),(648,'CarrollIrwin','$P$BhvICGSVkTXpeWF0twnZR03E1hvKzJ/','carrollirwin','forbeshepztwpz@hotmail.com','','2014-03-09 11:46:25','',0,'CarrollIrwin'),(649,'SherylMessina','$P$BefBVwI43ShWRu2Lw6fAY0s/q5BuaV1','sherylmessina','berserkcadre678987@outlook.com','','2014-03-09 12:20:11','',0,'SherylMessina'),(650,'JayneThibeault','$P$BOi6opAIxj2vQg8TnSjO6EcY1IM4Ia.','jaynethibeault','uomsleeiza@hotmail.com','','2014-03-09 13:18:56','',0,'JayneThibeault'),(651,'YWRGeorgianna','$P$BidJImXBAQqg5CyDtnGwhh/m6U/ARW1','ywrgeorgianna','rabbmbr@hotmail.com','','2014-03-09 15:00:06','',0,'YWRGeorgianna'),(652,'JaimieCalderone','$P$BmMXz9QgeIB2.LvC/3cePoFISi7fG90','jaimiecalderone','hileseft@hotmail.com','','2014-03-09 17:56:32','',0,'JaimieCalderone'),(653,'MaybelleBorrego','$P$BXMlIy6uqVad7aRP7qtzEsY323/4P51','maybelleborrego','karivhdg@hotmail.com','','2014-03-09 22:08:55','',0,'MaybelleBorrego'),(654,'BerylLavarack','$P$BRkwpwKPjgnCOLUuiY55tZdIfIh.H3/','beryllavarack','zhumadoli@hotmail.com','','2014-03-09 23:45:35','',0,'BerylLavarack'),(655,'NinaLapham','$P$BR5ZcL9Snebe98XK7rZ509hp27P1Ej/','ninalapham','munizafz@outlook.com','','2014-03-09 23:59:26','',0,'NinaLapham'),(656,'WinstonFunnell','$P$BX4H2KL1w5aqfgePxIe27Y3sVy59zr.','winstonfunnell','kerrieoje162@hotmail.com','','2014-03-10 02:27:11','',0,'WinstonFunnell'),(657,'KandisAvelar','$P$BQRIo9SO6XR545KvwBMSkjvKoYMJB6/','kandisavelar','phamznav@hotmail.com','','2014-03-10 04:38:42','',0,'KandisAvelar'),(658,'ZoucRadford','$P$BOasTAH6GE0jP3gfM5xC3J30FD4xVo0','zoucradford','zoucx61493@aimbotfreaks.org','','2014-03-10 08:23:47','',0,'ZoucRadford'),(659,'LawrencSwart','$P$BkyIxWK1Z5PmTyl5I4O6girk9z8yJ70','lawrencswart','beachanjg@hotmail.com','','2014-03-10 08:24:46','',0,'LawrencSwart'),(660,'DrakeMcCubbin','$P$BkyUMhx8TIz3x7J0XOVvnZ3KOAGVR90','drakemccubbin','oulodehare@mailcatch.com','','2014-03-10 09:13:20','',0,'DrakeMcCubbin'),(661,'LilaClendinnen','$P$BW2GwK3gnaRX1yZrwagCzIe0K2t7CW/','lilaclendinnen','nanitlint@hotmail.com','','2014-03-10 09:16:44','',0,'LilaClendinnen'),(662,'JohnsonAhf','$P$BqpxKjAjGieZStbv9rAIeR8uDiLLIb/','johnsonahf','tuhowoqaruta@hotmail.com','','2014-03-10 14:14:39','',0,'JohnsonAhf'),(663,'MayraLanemsmm','$P$BBr7t25xH92jH23rDBeuZv165qXUXl/','mayralanemsmm','leightuhy@hotmail.com','','2014-03-10 15:00:53','',0,'MayraLanemsmm'),(664,'TeenaLarsen','$P$BRidJhRSIBdh5f9w9HHklTHYLweI6i0','teenalarsen','hydegubsvib@hotmail.com','','2014-03-10 18:00:35','',0,'TeenaLarsen'),(665,'MartaHPUthc','$P$B9w4jJRUnXifdzg4b3G8/TGvzf5maP/','martahputhc','zhetwiddy@hotmail.com','','2014-03-10 19:37:03','',0,'MartaHPUthc'),(666,'KelliK38sltimbi','$P$Bmfc7hCK6Lfc6r/AjeYKc/3WAwTOzm/','kellik38sltimbi','arkadiusz@warszawa-agencja-reklamowa.pl','','2014-03-10 20:47:44','',0,'KelliK38sltimbi'),(667,'GeraldiW64','$P$BOTfkfPU39NxYV9lFFJPpbI0rDziRr/','geraldiw64','huntavmh@hotmail.com','','2014-03-11 00:19:19','',0,'GeraldiW64'),(668,'ZellaWaterhouse','$P$Ba7mO67Cs1y0uXqhVnxxpNnx6EoVAB/','zellawaterhouse','hhvvmmo19opl@spamavert.com','','2014-03-11 00:27:44','',0,'ZellaWaterhouse'),(669,'astypromox','$P$BJPl3KQ6yL3CpB8BOAinyLmbpsi3eE.','astypromox','abramstjaqa@giantpharm.com','http://www.egrupos.net/grupo/priligy60mg/archivo/indice/1/msg/9/','2014-03-11 02:49:50','',0,'astypromox'),(670,'eterracottawarriors','$P$BkKNuRR6s7T1Ztqs1y1nzc8XC6Dbd//','eterracottawarriors','bridalgownslove@gmail.com','','2014-03-11 03:14:06','',0,'eterracottawarriors'),(671,'MikeRicker','$P$BKzTYZQVNW9dUejPmfH2baGEsNj7e91','mikericker','tonyahutchings@discardmail.com','','2014-03-11 03:22:16','',0,'MikeRicker'),(672,'AdellDethridge','$P$BCEFM00IW5.FIwUzRnBjSUC9pRhJH50','adelldethridge','iguoadorst@hotmail.com','','2014-03-11 04:14:56','',0,'AdellDethridge'),(673,'DemetraBloom','$P$BW49qo28QkvyAoBOJUJfRKiaWNGnK3.','demetrabloom','yanpylvai@hotmail.com','','2014-03-11 04:18:00','',0,'DemetraBloom'),(674,'CarmelaLyttleto','$P$BKGVntrOjoe038NiLCJjrub.ampELp0','carmelalyttleto','bixndbeck@hotmail.com','','2014-03-11 04:29:05','',0,'CarmelaLyttleto'),(675,'TuhememsJew','$P$Bs/CpD3vAEzsyKP3J1sEO9yF.zUtjw/','tuhememsjew','matta38641@fat-milf.com','','2014-03-11 04:39:50','',0,'TuhememsJew'),(676,'DRHGaleebaiht','$P$B57ZnDkk.3g/ggH1O9uXheeaNqJ.Xe/','drhgaleebaiht','eiqughkemp@hotmail.com','','2014-03-11 05:38:55','',0,'DRHGaleebaiht'),(677,'LashawnEverett','$P$BO7R.yt1KPqt1s1Cy0yagbcqur3QJv1','lashawneverett','offbeatmerchantcbz@rediffmail.com','','2014-03-11 05:50:33','',0,'LashawnEverett'),(678,'NicholeCarrasco','$P$BcGGxrJ6xjZ9JB24fPY85ni7s6SxCi.','nicholecarrasco','bslleq@outlook.com','','2014-03-11 07:06:27','',0,'NicholeCarrasco'),(679,'AlfieXTTndu','$P$BwqG1umL4KDq5BochgosXddSe2fJmo.','alfiexttndu','desobbijo@hotmail.com','','2014-03-11 08:10:35','',0,'AlfieXTTndu'),(680,'SabrinaMathews','$P$BIwlq983Os6LMbcnzoke5MvBoSLEJc1','sabrinamathews','zheonosorn@hotmail.com','','2014-03-11 08:45:39','',0,'SabrinaMathews'),(681,'ChristeMorrisse','$P$BkHGw2nIZWCe8cutWuuz5L6.b9xEoM0','christemorrisse','ronnyszm@hotmail.com','','2014-03-11 09:56:00','',0,'ChristeMorrisse'),(682,'Jessika8962','$P$Bu8PSnfDMyqGL4VVDdJTRPLb8oGKgQ1','jessika8962','iaoopplew@hotmail.com','','2014-03-11 12:33:06','',0,'Jessika8962'),(683,'DinoMunndfacn','$P$BV8tDyr5v2JAE8z3ldJLQFoJ24uQ811','dinomunndfacn','dino_munn81@c.maybebest.com','','2014-03-11 16:16:13','',0,'DinoMunndfacn'),(684,'FJIKandissyzuhx','$P$BK5aHklLxWiezuOUiJ5d1JtGUPg/oR/','fjikandissyzuhx','milanowek@firmaogrodniczanestor.pl','','2014-03-11 17:29:12','',0,'FJIKandissyzuhx'),(685,'EddyLandale','$P$BhkB17pYMwrrdVjj/ezUJSwM732Try.','eddylandale','xunattley@hotmail.com','','2014-03-11 18:07:18','',0,'EddyLandale'),(686,'IOZFredericka','$P$Bxv0HMOugp3RhHhkAejvaaPunmSr8t/','iozfredericka','ihafaverin@hotmail.com','','2014-03-11 22:40:19','',0,'IOZFredericka'),(687,'JenniferCardill','$P$BraVK.1eTEuh24XxKi1/8HM4IKS15L.','jennifercardill','yanregler@hotmail.com','','2014-03-11 23:20:44','',0,'JenniferCardill'),(688,'ChasityWalling','$P$B47ejW3A1NNKQ8FMCBb6U.5iUY/MYa0','chasitywalling','foltzykb@hotmail.com','','2014-03-12 00:00:38','',0,'ChasityWalling'),(689,'SharronTripp','$P$BQY/w6m9goo.hmfaShxUnNLGUQfkvp.','sharrontripp','bumpyamulet8cg@rediffmail.com','','2014-03-12 00:11:51','',0,'SharronTripp'),(690,'SalEliasrwvi','$P$BPfCWrc9Z8BKwc9dbJ7mx22nNsNtbu1','saleliasrwvi','jiatrisch@hotmail.com','','2014-03-12 00:44:56','',0,'SalEliasrwvi'),(691,'LuisKXQAwl','$P$B2VpixkwBPsYKVdGbxhFoDg0ZOOn2m0','luiskxqawl','earthyoration90hxc@rediffmail.com','','2014-03-12 04:07:38','',0,'LuisKXQAwl'),(692,'RosauraLampe','$P$BhDaLEX16IU9/Bq58WOoiPHlg6Wc0n1','rosauralampe','kolecowek@firmaogrodniczanestor.pl','','2014-03-12 04:34:47','',0,'RosauraLampe'),(693,'MelodeeStiltner','$P$BjZB.KUbfVVpGkv.p6SdSCZ40O0.aV/','melodeestiltner','riggsvew@hotmail.com','','2014-03-12 10:58:30','',0,'MelodeeStiltner'),(694,'NedLCUXvzbopt','$P$B4bGnaOm18ZE9Huoh8wUsP6LnkPMT6.','nedlcuxvzbopt','laurankwd364@hotmail.com','','2014-03-12 15:08:02','',0,'NedLCUXvzbopt'),(695,'MichaelTum','$P$BZ7GrACXDanwbkzEEuvSqWesplfkmD1','michaeltum','qtzwrggy529@hotmail.com','','2014-03-12 16:17:57','',0,'MichaelTum'),(696,'FrederiMcNaught','$P$BJBCI/UNlpVHh6XBbhIoW.tSiM7Pwz0','frederimcnaught','ngkenfeltz@hotmail.com','','2014-03-12 19:38:18','',0,'FrederiMcNaught'),(697,'FSSKenneth','$P$BxGKJ4qDllA.bKfEvqIAii5nBiQpqp.','fsskenneth','obsoletebanistevbdrg@rediffmail.com','','2014-03-12 21:59:16','',0,'FSSKenneth'),(698,'JudithAnnunziat','$P$BU4kw7vYj.YxziHBXdKgorXkqohxqb0','judithannunziat','shonnajry809@hotmail.com','','2014-03-12 22:58:39','',0,'JudithAnnunziat'),(699,'MelanieDark','$P$BwVfjLqOLt3Rj2KbSdZn.TDA1NSdnU1','melaniedark','jiaodescha@hotmail.com','','2014-03-12 23:47:21','',0,'MelanieDark'),(700,'CarlaWallner','$P$Bu.L0ILORJaS5dl2OZFsrzvYewjevm.','carlawallner','chiaciq393@hotmail.com','','2014-03-13 00:19:44','',0,'CarlaWallner'),(701,'EvanCksuaomlxc','$P$BsfmopJESAALnd.mLy.sf3m6ZJzpJT0','evancksuaomlxc','nzhdenannu@hotmail.com','','2014-03-13 01:33:40','',0,'EvanCksuaomlxc'),(702,'ArielleMasters','$P$BCrnYzQwgoZkmepAUxfIIDYvEBKIqW0','ariellemasters','arielle-masters@d.maybebest.com','','2014-03-13 02:26:56','',0,'ArielleMasters'),(703,'EarnestineHobar','$P$BahutS5iBb0RYn0XpxKABKrQqC0an21','earnestinehobar','charisearo558@hotmail.com','','2014-03-13 03:22:07','',0,'EarnestineHobar'),(704,'FelicitasLashle','$P$BLR3nFgDHYZ79.fqBt2n0VLfpsDHEh/','felicitaslashle','felicitas_lashley60@d.maybebest.com','','2014-03-13 16:06:43','',0,'FelicitasLashle'),(705,'WernerGresswell','$P$BB3elSTyst0M0BBjvc4M7rC5tpyzSx/','wernergresswell','werner_gresswell@b.maybebest.com','','2014-03-13 19:23:36','',0,'WernerGresswell'),(706,'FallonKernot','$P$Bvh3DEvZjsAqx4IYYYqXdGqMe2.p3b/','fallonkernot','fallon-kernot@c.maybebest.com','','2014-03-13 19:31:25','',0,'FallonKernot'),(707,'EduardoGormanst','$P$BVbs/h6IrNhkb8seLgMXBTj5INfNK0.','eduardogormanst','eduardo.gormanston58@b.maybebest.com','','2014-03-13 22:06:12','',0,'EduardoGormanst'),(708,'EuniceWeingarth','$P$By4wJsaE28zWreerfOPy5q69p5oW94/','euniceweingarth','crazypowder65n4@rediffmail.com','','2014-03-13 23:05:12','',0,'EuniceWeingarth'),(709,'AnaJanzenzu','$P$BCrQ4phWZWPu/HEG6FzQmmXsLZVbqz0','anajanzenzu','meierxckf@hotmail.com','','2014-03-14 00:26:06','',0,'AnaJanzenzu'),(710,'EdwinaOchoa','$P$BA4AX9gLmNioEwZzs6YzWKxNUqhtHu0','edwinaochoa','angelicgxx897@hotmail.com','','2014-03-14 04:26:41','',0,'EdwinaOchoa'),(711,'DerekFaulkner','$P$BjNQK.UWVUdzcrriau3Edn3pzTcKp4/','derekfaulkner','friendlybyword7xh117@outlook.com','','2014-03-14 06:26:28','',0,'DerekFaulkner'),(712,'bagsalehxcchanelgyv','$P$BBos.oXV4ZhR1Aaqco/P2XfPdqudI70','bagsalehxcchanelgyv','bagsaleralchanelplc@gmail.com','','2014-03-14 07:20:53','',0,'bagsalehxcchanelgyv'),(713,'CaroleSwinburne','$P$BTEKjgszK8ry29NYn8/.6FBWxI.3Jm1','caroleswinburne','pyxuwomipuki@hotmail.com','','2014-03-14 07:54:17','',0,'CaroleSwinburne'),(714,'ZWKMarvingxxyjb','$P$BqCzBq.gfYH2qWRafFUFSqJzjInShi.','zwkmarvingxxyjb','curtisrzxucer@hotmail.com','','2014-03-14 08:19:36','',0,'ZWKMarvingxxyjb'),(715,'JacobSimpkinson','$P$B5SJuO5yVB88zGzN6V77Dx.qrB4kra/','jacobsimpkinson','carlqnag@outlook.com','','2014-03-14 12:18:02','',0,'JacobSimpkinson'),(716,'PiperYKGeo','$P$BxtjW.LJOD0oTB9ksIhOrCzqLJbJL6.','piperykgeo','nisancilfr@hotmail.com','','2014-03-14 12:32:40','',0,'PiperYKGeo'),(717,'BettyeAbate','$P$Bf1hIeL8RG6fpA0whgu/okN6q7oZfP0','bettyeabate','jiaorliep@hotmail.com','','2014-03-14 18:33:39','',0,'BettyeAbate'),(718,'MildredHack','$P$BLYI.FxIugihzpq85nK9D0q7TL/8Ga.','mildredhack','ouxanawayz@hotmail.com','','2014-03-14 19:08:48','',0,'MildredHack'),(719,'OnitaY01kmtfjge','$P$B00bBnxCcK5BIbb8qMur22zy9TdISZ1','onitay01kmtfjge','bxnnyxe@hotmail.com','','2014-03-14 20:22:57','',0,'OnitaY01kmtfjge'),(720,'NiamhRydge','$P$B/krt0LvPIVgaMVTOYn2g9.jesuj6C1','niamhrydge','alaisnb@hotmail.com','','2014-03-14 23:36:28','',0,'NiamhRydge'),(721,'GabrielK63','$P$B67O7oxUVqf.0ueCicvJ4UuJ9LVoYE.','gabrielk63','mcdonald1mzrsro@hotmail.com','','2014-03-15 02:25:29','',0,'GabrielK63'),(722,'Samual36Ux','$P$BoWNyegJrg.xVS/Hauz5Ek/AWPA.jJ/','samual36ux','christianhbd241@hotmail.com','','2014-03-15 02:28:30','',0,'Samual36Ux'),(723,'LiliaBannan','$P$B2cq1Sow4f3a5G9hdCQ3ah/ZHphQwA0','liliabannan','ewerstru@hotmail.com','','2014-03-15 04:05:04','',0,'LiliaBannan'),(724,'WilsonSimonson','$P$BVnGfWExpKKeBYAaFP9O6cDsQLX2/F.','wilsonsimonson','oaksezar@hotmail.com','','2014-03-15 04:18:33','',0,'WilsonSimonson'),(725,'FelishaHaygood','$P$B7FH34e99ffAjA.ZpL6Ny.NfhWJPgU1','felishahaygood','ftuhgx@hotmail.com','','2014-03-15 04:55:45','',0,'FelishaHaygood'),(726,'VeevaLutwyche','$P$BicTQPrTONbdwusH6WG3WFd8fPvbth1','veevalutwyche','hamiltonvbxpjt2@live.com','','2014-03-15 06:37:35','',0,'VeevaLutwyche'),(727,'RosemarKuester','$P$B87X8RNDBR7TOd2E9gUTu.V/zyPQPg1','rosemarkuester','axinogirou@hotmail.com','','2014-03-15 11:05:34','',0,'RosemarKuester'),(728,'FelishaWaley','$P$BhXMmuzD4H94Xw.i2hw6/NxLS0x2cb.','felishawaley','paoalwx@hotmail.com','','2014-03-15 11:46:48','',0,'FelishaWaley'),(729,'ReginaLayman','$P$Bzq8H9BHVx0eGVuWYMwjz0xY96bNTi1','reginalayman','regina.layman31@99gamerz.com','','2014-03-15 14:02:48','',0,'ReginaLayman'),(730,'RalfMouton','$P$BMEsY1vvL1U6fW6gDTKkzrB2QLix.51','ralfmouton','jonesgyd@hotmail.com','','2014-03-16 04:38:53','',0,'RalfMouton'),(731,'LeviSilvabpu','$P$B6ZHLHKVXeiVA7a/cNo9oQBZwXo.Tx.','levisilvabpu','dainiqueb@hotmail.com','','2014-03-16 10:00:13','',0,'LeviSilvabpu'),(732,'EwanMertzwh','$P$BDO0.bsto.7F//bIySWAhtHoNa/HWn.','ewanmertzwh','muzolivar@hotmail.com','','2014-03-16 11:50:54','',0,'EwanMertzwh'),(733,'SalvadoSanders','$P$BIX1cTMgmAryDRHdgpxeq/MwV24PEd0','salvadosanders','zhigierka@hotmail.com','','2014-03-16 15:55:18','',0,'SalvadoSanders'),(734,'TobiasOsburn','$P$BtGMivbO9RY2gKGg/3izdR.t1aEeGP0','tobiasosburn','mcknightzvtc6wew@hotmail.com','','2014-03-16 16:18:06','',0,'TobiasOsburn'),(735,'IMBJimlqjn','$P$BR8NAx19r7RVN8I2HRAXE9ZgXqAk9X.','imbjimlqjn','ionesire@hotmail.com','','2014-03-16 17:19:41','',0,'IMBJimlqjn'),(736,'Alexandria3842','$P$B5OcevYHBj1ynulzyZYH5SocJWpCa2/','alexandria3842','engendrac@hotmail.com','','2014-03-16 18:02:21','',0,'Alexandria3842'),(737,'Paulina73O','$P$BJexbIf.Fld4JFGClonkTDJPMKvRy51','paulina73o','nglocknowa@hotmail.com','','2014-03-16 18:48:39','',0,'Paulina73O'),(738,'MarjoriNilsen','$P$BEhQHQcvrJfC4PhEykIi7rlT5zy/Zr0','marjorinilsen','helpfulrapture82@laposte.net','','2014-03-16 19:46:35','',0,'MarjoriNilsen'),(739,'KatriceBaptiste','$P$BsUDkSbMqduOMurHTbrbenQaeFnt/t1','katricebaptiste','iamhunter@brony.in','','2014-03-16 20:00:10','',0,'KatriceBaptiste'),(740,'ClarissZeb','$P$BFh1m.it5hW1gYR2CgKM8eJtC5jM5R.','clarisszeb','youundhen@hotmail.com','','2014-03-16 20:46:55','',0,'ClarissZeb'),(741,'JamieHHWfir','$P$BNRUrvPoGKifr0wM9m/ejBuVVxs86X1','jamiehhwfir','gekinebau@hotmail.com','','2014-03-16 21:43:23','',0,'JamieHHWfir'),(742,'Magdalyna328','$P$BbVrVxK2poXZDNndqm6S2Ie9duWLB31','magdalyna328','wynajemkoarkilebork@poczta.pl','','2014-03-16 22:02:16','',0,'Magdalyna328'),(743,'yaconsyruphelica','$P$BLHYRrdSXCfWhqwAbGQCWT10iKAhEI0','yaconsyruphelica','mitchham@spambog.ru','','2014-03-17 00:15:24','',0,'yaconsyruphelica'),(744,'SofiaDavidson','$P$BD73UyPrdIRktKaZNrFgIMVeanBd1q0','sofiadavidson','forbesklvsvh2@hotmail.com','','2014-03-17 04:27:29','',0,'SofiaDavidson'),(745,'Twila0054kcbw','$P$BwJYuqCmSRCBd2/5yT24M/EibjdW2N0','twila0054kcbw','kedupahekef@hotmail.com','','2014-03-17 11:43:05','',0,'Twila0054kcbw'),(746,'MarthaFlorance','$P$BUJ/K6DwOsA.VMNJ6FVXGSeMtaNQDv0','marthaflorance','nonalejan@hotmail.com','','2014-03-17 13:46:24','',0,'MarthaFlorance'),(747,'BeatrisCarman','$P$BH5Mmx32J5j4KqPGwC9cZmdSXyl0Ii1','beatriscarman','pinprochoe@hotmail.com','','2014-03-17 16:02:56','',0,'BeatrisCarman'),(748,'NateThayer','$P$Bhmz7cOSfy52/1DZ6wBK7P./IBlAqW0','natethayer','biaonnewma@hotmail.com','','2014-03-17 16:03:27','',0,'NateThayer'),(749,'AshliSchramm','$P$BKmxBBOqC7WCo2GOohHr1u4RqLRMwx/','ashlischramm','chosgoldsb@hotmail.com','','2014-03-17 16:38:48','',0,'AshliSchramm'),(750,'EpoustBurkitt','$P$BP31FLxdZvZQ5k3/A.3lCq8EJRsMmq1','epoustburkitt','epousto6218s@mysexgames.org','','2014-03-17 17:15:30','',0,'EpoustBurkitt'),(751,'SofreoddekSer','$P$BdNu9dOgS5a0IomxsHZq25iNKhnWQR/','sofreoddekser','hitoshisakari1@hotmail.com','','2014-03-17 17:50:02','',0,'SofreoddekSer'),(752,'HarrisoClendinn','$P$BZT48JDLJAzsBaZpOOEZZDcEq4zYVb/','harrisoclendinn','mcknightpqugj3zz@hotmail.com','','2014-03-17 17:57:27','',0,'HarrisoClendinn'),(753,'AngelaCwhp','$P$BXmZRuxACcS2LKVfgDovaKE4OVq8Ip1','angelacwhp','zhomurchm@hotmail.com','','2014-03-17 19:24:00','',0,'AngelaCwhp'),(754,'DongPTSrxgipged','$P$Bw7Z4Bshgp1A37K5FwOqtvX0H/FZpY/','dongptsrxgipged','xujsemene@hotmail.com','','2014-03-17 19:45:48','',0,'DongPTSrxgipged'),(755,'Lanny15Uijhrtud','$P$BlEmPclmz8poyyuY.Ri5re11O1T1jl0','lanny15uijhrtud','gyoseeshol@hotmail.com','','2014-03-17 20:50:09','',0,'Lanny15Uijhrtud'),(756,'MeghanQIVwq','$P$B9.D3A4GGwuS/M6E6.DzQyc3a./013.','meghanqivwq','koreywqae@hotmail.com','','2014-03-18 01:47:26','',0,'MeghanQIVwq'),(757,'CandidaQueale','$P$BTSZf9cjKh8g4i9a/1/uUH21L8Tb3E1','candidaqueale','nhohroughb@hotmail.com','','2014-03-18 02:15:54','',0,'CandidaQueale'),(758,'EllaH22blwxzavt','$P$B/6bBPKWdO49fOED5oR5P6m2MvZfMZ1','ellah22blwxzavt','colenvnn@hotmail.com','','2014-03-18 02:47:24','',0,'EllaH22blwxzavt'),(759,'Shawnee34A','$P$B0e1Y/SZR.kRhzsIoZ3uhIGuHE5Rcs0','shawnee34a','shaegmq@hotmail.com','','2014-03-18 06:01:41','',0,'Shawnee34A'),(760,'PhilipFiedler','$P$BIVG4EV/ykP2Zuv78QPHs5iOuwBIke0','philipfiedler','uizomleyc@hotmail.com','','2014-03-18 07:05:46','',0,'PhilipFiedler'),(761,'TamikaSilver','$P$BHstOIcKUtHe2ETzMGCDgPp9e9LqwR/','tamikasilver','gchaterani@hotmail.com','','2014-03-18 08:08:55','',0,'TamikaSilver'),(762,'DHADesmond','$P$Ba4drkyyXw0HZdAUBckJPGyWWNDCKs1','dhadesmond','ixunimicha@hotmail.com','','2014-03-18 08:25:09','',0,'DHADesmond'),(763,'BerryFountain','$P$BUysStcFxM0ym2CzfTrgMk9g1ykUCx/','berryfountain','banopakha@hotmail.com','','2014-03-18 10:41:59','',0,'BerryFountain'),(764,'LoreenGoldfinch','$P$B6y357/RLL8S6bSbjqTuNCE.Iin/PP0','loreengoldfinch','diarodtka@hotmail.com','','2014-03-18 15:00:17','',0,'LoreenGoldfinch'),(765,'ShaunteConolly','$P$BoHoQZCr1f78UbkMIPCBT8G20VqaF8.','shaunteconolly','ayonkmd@hotmail.com','','2014-03-18 16:16:02','',0,'ShaunteConolly'),(766,'AidenFrederick','$P$BAGwUxVVrAzR7.SuJrqadnVDlbwaT3/','aidenfrederick','browmvnd@outlook.com','','2014-03-18 17:03:52','',0,'AidenFrederick'),(767,'KatrinaIYAI','$P$BcUwLOr7Nhbcig7Xaw78ZTL90jybIq/','katrinaiyai','ugaelorfor@hotmail.com','','2014-03-18 17:07:17','',0,'KatrinaIYAI'),(768,'CarriLauer','$P$BLnxkVx23ZrjXzQFsi3W0CZovD72Ei0','carrilauer','khakotsica1988@t.pl','','2014-03-18 20:07:30','',0,'CarriLauer'),(769,'RicardoN34','$P$BQHnma9Ft/NMjKjyLiXVXTlPTBOmIA0','ricardon34','morawazequce@hotmail.com','','2014-03-18 21:46:20','',0,'RicardoN34'),(770,'FlorenciaPeak','$P$BFAj2Rxe406c8M/OZhJyM9VmGifa8U1','florenciapeak','uixnlowsul@hotmail.com','','2014-03-19 00:10:49','',0,'FlorenciaPeak'),(771,'JuanaDeLaCondam','$P$BkD6Y9W9LTvciGzcaY8T6fdWjR5ozW1','juanadelacondam','juamangore@hotmail.com','','2014-03-19 06:54:55','',0,'JuanaDeLaCondam'),(772,'jacko56nyp','$P$B78WVefQM6q1fmLtcfqHrkw9KvHwcF1','jacko56nyp','jerrell-hartigan@dawidex.pl','','2014-03-19 08:50:15','',0,'jacko56nyp'),(773,'UjijMadsen','$P$BygHvkTPoeIx2He9Y3McRumZrkyttp0','ujijmadsen','hamilton4be3cun@hotmail.com','','2014-03-19 11:28:37','',0,'UjijMadsen'),(774,'JudiGilpin','$P$B1Af8Q4Wo2xch3aPN0zHT2cQXU/8mN.','judigilpin','aidwpaf@outlook.com','','2014-03-19 12:23:27','',0,'JudiGilpin'),(775,'ChristeNicastro','$P$Bg00KELSR2fKffT0qKGuZXuxeQXhXP.','christenicastro','pygumucahyja@hotmail.com','','2014-03-19 17:11:58','',0,'ChristeNicastro'),(776,'TeenaTorohyldli','$P$BbjsxQU2fhE9rrf/sFqZweAdYtMc1f/','teenatorohyldli','ieyolineh@hotmail.com','','2014-03-19 19:38:05','',0,'TeenaTorohyldli'),(777,'ChadwicBenedict','$P$BD/jIth/2TGU9VmU2RdCShI9mg4d8F0','chadwicbenedict','norrisrobins5@outlook.com','','2014-03-19 21:34:04','',0,'ChadwicBenedict'),(778,'AdolphEarly','$P$BrHpVenUHH2S2zOaAnJvk2BVFxtH8y0','adolphearly','xiuberdux@hotmail.com','','2014-03-19 22:02:34','',0,'AdolphEarly'),(779,'TamSteppcajsg','$P$BOnaKCY2WhMI/yv6SHD6fKj7U19MUK.','tamsteppcajsg','spicyupshot46l6@rediffmail.com','','2014-03-20 01:47:34','',0,'TamSteppcajsg'),(780,'FredaO05nrhkkd','$P$By09l2xr6NKOCAYg6Gev6upsUdNgIT0','fredao05nrhkkd','briduphkuru1985@t.pl','','2014-03-20 04:53:24','',0,'FredaO05nrhkkd'),(781,'MerrillMansergh','$P$BNpsMgfk9VDxFq6c3pMJ4vMW4CjdZ90','merrillmansergh','kishagx@hotmail.com','','2014-03-20 06:42:51','',0,'MerrillMansergh'),(782,'MerlinConolly','$P$BFxB.aA4S6ktMxw5QBwQAKjfeqydbF0','merlinconolly','hizrmancla@hotmail.com','','2014-03-20 07:31:52','',0,'MerlinConolly'),(783,'WillieMilton','$P$Bvh.gK08rXRmU39nbCkhd8W80BLxX4/','williemilton','uopuwmanpa@hotmail.com','','2014-03-20 10:37:19','',0,'WillieMilton'),(784,'EvelynMontero','$P$BtgzaZQFhRk9EvGAB8PWxuWLLpaHX1.','evelynmontero','mylubuqipuxu@hotmail.com','','2014-03-20 16:28:44','',0,'EvelynMontero'),(785,'PaulettBerrios','$P$BaLzBm.G5KfRUd9Q36UpY6jvlFz9WP1','paulettberrios','copydamejexi@hotmail.com','','2014-03-20 21:23:09','',0,'PaulettBerrios'),(786,'MicheleBoser','$P$Bn7nVEWIghsXRuhdDvLlYoGpL44IzW1','micheleboser','warytexixovi@hotmail.com','','2014-03-20 21:45:06','',0,'MicheleBoser'),(787,'Carmel41Kgrtl','$P$BQFjy73W45GwcKQa/AZEWT6wKJlqZ9.','carmel41kgrtl','rivkabemohrlock@yahoo.com','','2014-03-20 22:31:40','',0,'Carmel41Kgrtl'),(788,'TaneshaBNFA','$P$BfzGEvaDI3eicpPqLcuo1LLXDFVba20','taneshabnfa','engapanes@hotmail.com','','2014-03-21 00:07:28','',0,'TaneshaBNFA'),(789,'OlgaNathan','$P$BjwVGgSQVK9X/qL5ubxiA7ONUvBFDp0','olganathan','ponmavacon1985@t.pl','','2014-03-21 02:37:03','',0,'OlgaNathan'),(790,'DedraSchmid','$P$B/SommBJ71Bgq2UYTBlLuaNdf5KEIP/','dedraschmid','ranarwna@hotmail.com','','2014-03-21 04:45:50','',0,'DedraSchmid'),(791,'ChristiSandridg','$P$B7i42C8zIsQSM1f45x7sZMA1dGkwcn0','christisandridg','yignewlon@hotmail.com','','2014-03-21 06:13:23','',0,'ChristiSandridg'),(792,'SiobhanGaray','$P$BV.Y59qhffhUdyJN1ooTnRuunVe.gO/','siobhangaray','talaqofaqeva@hotmail.com','','2014-03-21 09:00:13','',0,'SiobhanGaray'),(793,'LewisWesley','$P$Brou9Eri4LVLYGTvNawc514InKy61..','lewiswesley','brtirta@hotmail.com','','2014-03-21 13:52:43','',0,'LewisWesley'),(794,'RickieOuttrim','$P$BxFIWv3m.lyWNLFraT962qteYyFi9H.','rickieouttrim','jab@bestcasinoclubcom.com','','2014-03-21 14:02:06','',0,'RickieOuttrim'),(795,'WilhelmHaro','$P$Bw/qNXO6vfC2HXG0M6sc9o5CCcHUjq.','wilhelmharo','shuimarroy@hotmail.com','','2014-03-21 14:25:56','',0,'WilhelmHaro'),(796,'CooperHorne','$P$BZ5KciKQoxe21jG0lnb73jsIk9j6PC0','cooperhorne','pxtelas@hotmail.com','','2014-03-21 14:39:42','',0,'CooperHorne'),(797,'YSZClarence','$P$B8NZDqZKEwBmnQydW66Gd9m4kCTwYv0','yszclarence','tariijixv70@hotmail.com','','2014-03-21 16:26:03','',0,'YSZClarence'),(798,'WayneDundalli','$P$Bj8adyC8X4Oxck7GrzdZMDFRmjqUm7.','waynedundalli','wayne.dundalli15@b.maybebest.com','','2014-03-21 19:40:58','',0,'WayneDundalli'),(799,'JoshuaSalter','$P$BRvl0BvpEZ/vNytZgWhIv4WsxnYe431','joshuasalter','vvrgoyau@outlook.com','','2014-03-21 19:54:00','',0,'JoshuaSalter'),(800,'Dallas97Omnsled','$P$BEJLknDSd4H6EKcK7FvLpywmVVU3Zz.','dallas97omnsled','sassyastronomy8ksmf@rediffmail.com','','2014-03-22 00:56:20','',0,'Dallas97Omnsled'),(801,'KennyPoulin','$P$BUWguPn2QJbLCk7dAlYVAfqYp6kX08/','kennypoulin','aofortiss@hotmail.com','','2014-03-22 04:21:11','',0,'KennyPoulin'),(802,'RachellFedler','$P$BuLnuIQrnh3YgYvYEjD8TIARIUAXb./','rachellfedler','taildwt@hotmail.com','','2014-03-22 05:13:38','',0,'RachellFedler'),(803,'Ratluges','$P$Bx7jAAZlaIh1huKZcRrsAOzWeyVIep0','ratluges','vulpores@yandex.com','','2014-03-22 09:00:44','',0,'Ratluges'),(804,'SusieEggleston','$P$BJX6k8SiFaKb2wuOX/Q2wl7btu5GaV1','susieeggleston','breefngc@hotmail.com','','2014-03-22 14:12:25','',0,'SusieEggleston'),(805,'WilliamsRydge','$P$BOwl20xAC11mKN4gpEbo9c6UqW6u5d1','williamsrydge','ufesheimer@hotmail.com','','2014-03-22 14:41:29','',0,'WilliamsRydge'),(806,'Titus42Aja','$P$BBp9DaIvFTlXdYLY01hrIuds1l3fJW1','titus42aja','prillfusp@hotmail.com','','2014-03-22 15:17:12','',0,'Titus42Aja'),(807,'EzequielArmitag','$P$BoYh1lOzi7hUbvUZY4ZS8B9wxh5OYb.','ezequielarmitag','staciuha@hotmail.com','','2014-03-22 15:36:31','',0,'EzequielArmitag'),(808,'PKUKristin','$P$BLUF7I5WfWhLNwDlVFrsg1kZ1XOkqk0','pkukristin','zyqupepyryn@hotmail.com','','2014-03-22 16:23:31','',0,'PKUKristin'),(809,'HeleneOquendo','$P$BP1FnKmBo0emrC2Cong.VWzk6UdW6v0','heleneoquendo','navavbz@hotmail.com','','2014-03-22 17:00:51','',0,'HeleneOquendo'),(810,'MargeneOSM','$P$BYstnyyZjj397MWGfB3D4r69BsY7Gd1','margeneosm','nreaout@hotmail.com','','2014-03-22 17:35:05','',0,'MargeneOSM'),(811,'ArletteVillarea','$P$BRqUUEsLIoKc2TG9cEwGhol901XcZM.','arlettevillarea','reganqlj641@hotmail.com','','2014-03-22 18:23:42','',0,'ArletteVillarea'),(812,'SpencerDorman','$P$B/D466rhONKLW3oeVrwRZZRtOsk3Hz.','spencerdorman','yudkusuma@hotmail.com','','2014-03-22 18:31:01','',0,'SpencerDorman'),(813,'HesterHolcomb','$P$BlU6L3TMsqOelweWm1aPKBtrLlPJFl0','hesterholcomb','waggishgrump667yudy@rediffmail.com','','2014-03-22 18:57:51','',0,'HesterHolcomb'),(814,'MilagroKoch','$P$BKeVOdTUgZds07RVyYgE/fk9c10G391','milagrokoch','doddfev@hotmail.com','','2014-03-22 20:25:22','',0,'MilagroKoch'),(815,'RJGCliffor','$P$BKyJoxciqwdN6IIHG8SnjsczNgzHZt1','rjgcliffor','fanaisonl@hotmail.com','','2014-03-22 20:49:17','',0,'RJGCliffor'),(816,'VictoriWilfong','$P$BytnciUyyQmHPuN.qkpG1vpBYYM5Wn/','victoriwilfong','droagxd@hotmail.com','','2014-03-23 00:26:42','',0,'VictoriWilfong'),(817,'ChaunceFlanders','$P$BtPXhxrzcX5msbBAX9sAJEiMYxF4yO1','chaunceflanders','xedogopiryq@hotmail.com','','2014-03-23 06:33:57','',0,'ChaunceFlanders'),(818,'Aurelio3294','$P$B.IvucHq1lZgKYu86JWHm70XIR1lTD0','aurelio3294','doverhnn@hotmail.com','','2014-03-23 06:49:43','',0,'Aurelio3294'),(819,'Bernade67Y','$P$B2l.BU1mz1GU3TB30WWxlwY8lY2jLs0','bernade67y','aalicia499@gmail.com','','2014-03-23 07:24:59','',0,'Bernade67Y'),(820,'ThomasGilbertso','$P$B.qt7h6rZIab.n2VUnGYTtwXyekNIQ0','thomasgilbertso','thomas_gilbertson@d.maybebest.com','','2014-03-23 15:04:35','',0,'ThomasGilbertso'),(821,'yd201403b','$P$BerLdsVrPOpAwZyixMGrNVoXhTxCpK.','yd201403b','cjcjcccj2@hotmail.com','','2014-03-23 20:15:01','',0,'yd201403b'),(822,'Mikayla62P','$P$BKHicngirJ0/BfkqcWcJr6MwRoNplk.','mikayla62p','deaniakp@hotmail.com','','2014-03-24 01:04:38','',0,'Mikayla62P'),(823,'Clay28Kawifxx','$P$BTarQpCxZA/qMXDmhCTcvBehBIoVuc1','clay28kawifxx','ectrovtv@hotmail.com','','2014-03-24 04:55:51','',0,'Clay28Kawifxx'),(824,'RayUqzdwooeisox','$P$BhgixM0zm7gCwHMAy/zeMUjf2Jw9ph0','rayuqzdwooeisox','quaenidiff@hotmail.com','','2014-03-24 05:14:42','',0,'RayUqzdwooeisox'),(825,'BrookGatlin','$P$BxpV/yQqY7Gs.4rlrUIKCl8pIaFtr7.','brookgatlin','monzuesito1974@t.pl','','2014-03-24 07:38:12','',0,'BrookGatlin'),(826,'EliBrounozw','$P$B0sL9thHFmxdXfrueo/PeA3joiodR21','elibrounozw','olivaqq@hotmail.com','','2014-03-24 16:07:16','',0,'EliBrounozw'),(827,'TeenaCucyrphfz','$P$BhCxor6u.ROpnH5C1ZkVkj62DReQVv.','teenacucyrphfz','banflanni@hotmail.com','','2014-03-24 18:11:43','',0,'TeenaCucyrphfz'),(828,'Charlot57E','$P$BYTwOIZ2fjgXybnmXKONG.QzWyUrWZ/','charlot57e','kiethsxj@hotmail.com','','2014-03-24 21:08:10','',0,'Charlot57E'),(829,'JustinPQYvpz','$P$Bo4te.4gZ0falTd5aEkBsNcxlnAEQS.','justinpqyvpz','xiutwinei@hotmail.com','','2014-03-24 23:14:20','',0,'JustinPQYvpz'),(830,'MatildaX01','$P$B6BNPbRnVVIiMv5DYGD3pEh0WG0qn71','matildax01','marijtc@hotmail.com','','2014-03-25 02:51:40','',0,'MatildaX01'),(831,'Merle0405na','$P$BhdtMk3zvGnomWNDrSYwbtRPAr.pv./','merle0405na','ngstzlert@hotmail.com','','2014-03-25 03:22:32','',0,'Merle0405na'),(832,'RusselWood','$P$BS/Tgu7m8A.ubbh06odmYftBE7rbm./','russelwood','jykikyxohef@hotmail.com','','2014-03-25 04:05:37','',0,'RusselWood'),(833,'JadaMarcello','$P$B6WXjgFoilrHr6E4ry2RgGbOGG0zT..','jadamarcello','whommispladla1971@t.pl','','2014-03-25 04:24:09','',0,'JadaMarcello'),(834,'GwendolN26','$P$BNf1PJieS6DO7kCSEC3nUCdb6Yjoe.1','gwendoln26','dingloomopor1977@t.pl','','2014-03-25 09:57:33','',0,'GwendolN26'),(835,'DaniloPurvis','$P$BVlmqYvykOa2eKR19r3Q562B4J4I1s/','danilopurvis','unciscioe@hotmail.com','','2014-03-25 10:14:51','',0,'DaniloPurvis'),(836,'PatrickSlayton','$P$B9/nkYJc88MqV/GlPh9UAgBLjpLIDU/','patrickslayton','dylanpnv@hotmail.com','','2014-03-25 11:30:07','',0,'PatrickSlayton'),(837,'KashaESQwwgfl','$P$BxTfbYn5iktycrS0s1QPKRM4KYB1si1','kashaesqwwgfl','craigwsa@hotmail.com','','2014-03-25 13:37:49','',0,'KashaESQwwgfl'),(838,'JulioLMLzkci','$P$B3FQFnf0MZZlsTUwXmL7eRsxg5eowo1','juliolmlzkci','aboundingodor131@laposte.net','','2014-03-25 13:41:18','',0,'JulioLMLzkci'),(839,'MaxFgidrykhte','$P$BgjAtjkGcFyemMHHquFzqI8WwaUebN0','maxfgidrykhte','xymypaxuheta@hotmail.com','','2014-03-25 13:41:42','',0,'MaxFgidrykhte'),(840,'DewayneVanburen','$P$BErjfCLIoi45kd9/FiGMztfdgEYL32.','dewaynevanburen','gukavyxupona@hotmail.com','','2014-03-25 16:51:56','',0,'DewayneVanburen'),(841,'ChristyDenovan','$P$BC6Xg9XZAlnKDyqCI7IC94YeKssLw4/','christydenovan','slenresymtnigh1978@t.pl','','2014-03-25 18:40:36','',0,'ChristyDenovan'),(842,'LouellaRiddell','$P$B4eTcvRmRDhuIgGFYbEOZzptxttl7P0','louellariddell','uwarainemi@hotmail.com','','2014-03-25 18:58:04','',0,'LouellaRiddell'),(843,'HectorCousens','$P$B9IkBYWNXDL/Szf7NAxPd1nwKtqKQi/','hectorcousens','ilaqqu@hotmail.com','','2014-03-25 22:36:06','',0,'HectorCousens'),(844,'BNCGeraldo','$P$BwcldlXr1f4X5/yQiwN9EP6NmNyDT10','bncgeraldo','deeasemsuto1971@t.pl','','2014-03-26 02:00:06','',0,'BNCGeraldo'),(845,'ClaudetMorgan','$P$BH6r4JL3/aWpaKEaauUbdPoQagv/yL0','claudetmorgan','lorrigrhendler@yahoo.com','','2014-03-26 02:28:04','',0,'ClaudetMorgan'),(846,'JoanDelgadillo','$P$BjoH6.cpKjyjopPbfFU7p0louqlATA.','joandelgadillo','tantendmockses1982@t.pl','','2014-03-26 02:32:58','',0,'JoanDelgadillo'),(847,'RaquelKraker','$P$Bx1lyXAUbp/vGPVE.YQcmeIQud91Jk/','raquelkraker','elvacek@hotmail.com','','2014-03-26 03:33:03','',0,'RaquelKraker'),(848,'Elise8543luljx','$P$B0CLeFr0RYsCsSVSeOEKpHz9Cp7nqe/','elise8543luljx','vanysolydobi@hotmail.com','','2014-03-26 03:58:41','',0,'Elise8543luljx'),(849,'CathleeYPV','$P$BG/FSHFV1Vpw.mQC6dYqBsRGoXh6NL.','cathleeypv','oramvnf@hotmail.com','','2014-03-26 07:58:04','',0,'CathleeYPV'),(850,'Michaeloa','$P$BaCf.pV9LKSZpp9XA2j83LmM7uR./D0','michaeloa','kjmyvinux100@hotmail.com','http://www.agencevu.com/stories/beatsbydre.php?p=190-beats-by-dre-studio-cheap.html','2014-03-26 08:03:46','',0,'Michaeloa'),(851,'NedGlaseraqolbg','$P$Bo/5lGUishVe/u85lPyjBkeNC0ytCJ0','nedglaseraqolbg','reductr@hotmail.com','','2014-03-26 08:56:03','',0,'NedGlaseraqolbg'),(852,'increase Facebook Fans','$P$BxkrJPfSMrIDW.njm3PQMxjvrRce4V1','increase-facebook-fans','al.ber.tj.onathen1980@gmail.com','','2014-03-26 09:51:02','',0,'increase Facebook Fans'),(853,'SofiaConnal','$P$BK7JlwjKBJlb/B6HUPMdK0y3cfvMTv.','sofiaconnal','hganwphg@hotmail.com','','2014-03-26 11:05:11','',0,'SofiaConnal'),(854,'JaimieTibbs','$P$B9XwK1iSQ2fS4mRoNK8asDptpRRFPD1','jaimietibbs','vonnbx@hotmail.com','','2014-03-26 11:46:48','',0,'JaimieTibbs'),(855,'OmarClibborn','$P$BWudlpO4pFoRPyS5HSADGL5VXXdEM1.','omarclibborn','omar_clibborn@99gamerz.com','','2014-03-26 12:36:46','',0,'OmarClibborn'),(856,'ianbaua','$P$ByIiU6G18BM3MqsylEx6uTZEdgq7nb1','ianbaua','ianbaughis@hotmail.com','','2014-03-26 16:17:38','',0,'ianbaua'),(857,'Mattie2848','$P$BZbowGRfkOhsTrEyNGMABW3BT5VmF0/','mattie2848','slaterzwtjjz@hotmail.com','','2014-03-26 19:55:35','',0,'Mattie2848'),(858,'MagnoliWeber','$P$B.wI5piyMC2NVxy/1o8G8EoAJ1ovnJ/','magnoliweber','gillgjws@hotmail.com','','2014-03-26 20:02:19','',0,'MagnoliWeber'),(859,'oystrrt','$P$Bv0k4D06ZT3VJOwQms1Gefc/2/cIxp0','oystrrt','rneosmm@hotmail.com','http://www.gcompostela.com/','2014-03-26 22:43:19','',0,'oystrrt'),(860,'ThomasSix','$P$B4cOppQCL4srpcvdLNKhOGrILxhkkZ/','thomassix','thomasgenic@gmail.com','','2014-03-27 01:29:47','',0,'ThomasSix'),(861,'NatashaTinline','$P$BjLFMajHTTBfLX/fexidtpF5lc18Z70','natashatinline','ventgonvalo1972@t.pl','','2014-03-27 02:32:11','',0,'NatashaTinline'),(862,'VeroniqORFF','$P$BEX0UYi/N4k9lLHfyah1ahZUdwF5X9/','veroniqorff','lenihonmai1987@t.pl','','2014-03-27 02:48:15','',0,'VeroniqORFF'),(863,'JonnieUrner','$P$BUF7gNsU4XTSwvRBcW/ncX5nb22JQ71','jonnieurner','yazzybial@hotmail.com','','2014-03-27 03:49:29','',0,'JonnieUrner'),(864,'TresaVBWofccs','$P$BrlxUN5WHM8QOVmQXRntNA1Yw0ekSV1','tresavbwofccs','iftracernu1987@t.pl','','2014-03-27 06:21:18','',0,'TresaVBWofccs'),(865,'XMMNikoleonh','$P$B3UqbzRQ6k2lGx0qe5O6GBpKJczyrf/','xmmnikoleonh','nitafhx@hotmail.com','','2014-03-27 07:16:03','',0,'XMMNikoleonh'),(866,'GwenColley','$P$BD4e8Yp8/FC8BytPYS4f/iiRnnz7NX.','gwencolley','eboniufct@hotmail.com','','2014-03-27 07:39:44','',0,'GwenColley'),(867,'RyderFossett','$P$Bs7g1RgJO5FHWhaGcoEWABJHxGDwXA1','ryderfossett','leeuneobifec1972@t.pl','','2014-03-27 08:00:45','',0,'RyderFossett'),(868,'RomeoAlbarran','$P$BR7D6tQ8VwkbY772/W0/TjefmLg6m30','romeoalbarran','zaidarecn@hotmail.com','','2014-03-27 08:47:39','',0,'RomeoAlbarran'),(869,'AllieKaawirn','$P$BjNwCqRS4yjFcyznqXLlcgsPKzxMSQ1','alliekaawirn','jadejtf@hotmail.com','','2014-03-27 09:12:06','',0,'AllieKaawirn'),(870,'HaroldWmryozjnj','$P$BpGtg2FTlVxAA77bl.0ysayoUE1NTR/','haroldwmryozjnj','zhiutcalt@hotmail.com','','2014-03-27 15:17:21','',0,'HaroldWmryozjnj'),(871,'LynetteGeake','$P$Bxg8pZTE8LGw1Za6scMkUveBtM7lZz.','lynettegeake','jomivoters1985@t.pl','','2014-03-27 15:43:13','',0,'LynetteGeake'),(872,'ArtChamberlin','$P$Bjo/Q.j8X59BLlIvvGn5esKg6TjFdh.','artchamberlin','art_chamberlin@a.maybebest.com','','2014-03-27 17:45:04','',0,'ArtChamberlin'),(873,'MonikaBernier','$P$BDSE63Y7T4fV8vos2ajCSHvUSlSnDv.','monikabernier','xirolecufym@hotmail.com','','2014-03-27 19:52:12','',0,'MonikaBernier'),(874,'EchorGreytk','$P$BIDJ6GR8UjNmKFMvs5dwICVQ325Ha70','echorgreytk','stokesllsowzjpl@hotmail.com','','2014-03-27 20:35:38','',0,'EchorGreytk'),(875,'LayneBardsley','$P$B.TISozd1dlt6BC6dRETzexy1/Kvw11','laynebardsley','dtuynqo@hotmail.com','','2014-03-27 21:02:47','',0,'LayneBardsley'),(876,'StuartShenton','$P$Br01XThH93h3OpEEy2sfV2KyqPKUIu/','stuartshenton','angnicamcg@hotmail.com','','2014-03-27 21:03:17','',0,'StuartShenton'),(877,'NicholaHupp','$P$BOnl/jYmQIfm9XLBYTqPCCOiXsMdpG.','nicholahupp','unzrandam@hotmail.com','','2014-03-27 21:47:25','',0,'NicholaHupp'),(878,'Maxie43Ykk','$P$B7tvk4UtSg49RArq6xa8wwArmos785/','maxie43ykk','saranuac@hotmail.com','','2014-03-27 23:34:54','',0,'Maxie43Ykk'),(879,'AlexandSwartwoo','$P$BIRq.uBULgdzXK.LkIoro8wees8IjS.','alexandswartwoo','yosttbq@hotmail.com','','2014-03-28 00:44:49','',0,'AlexandSwartwoo'),(880,'AnnabelMills','$P$BeOYLu/3EWrqce99W4qpeU1VuZNp/.0','annabelmills','gloverxgsrlv@hotmail.com','','2014-03-28 00:49:42','',0,'AnnabelMills'),(881,'GlennBazley','$P$BKNEnvLRkds17OguD29uvX6OWelXKc1','glennbazley','delphiabrault9535@spambog.ru','','2014-03-28 04:45:42','',0,'GlennBazley'),(882,'UlrikeSolano','$P$BckO6WFyGamhSei3RWj5O1HmxRteTT.','ulrikesolano','qowulajujesa@hotmail.com','','2014-03-28 04:47:43','',0,'UlrikeSolano'),(883,'HarlanYrprri','$P$BE0n9xe/peEUq3xgnp6E9tA6W/SZIB.','harlanyrprri','inxossati@hotmail.com','','2014-03-28 07:37:31','',0,'HarlanYrprri'),(884,'Marylou6332','$P$BivkCJtH2vWl9xLnbf6H0XBjreiVWD0','marylou6332','samirasgp303@hotmail.com','','2014-03-28 07:44:11','',0,'Marylou6332'),(885,'KrystynaA76','$P$BSlSxZ2RsWmgYDrotoJJQ6iHxQSlUi.','krystynaa76','sapprfg@hotmail.com','','2014-03-28 08:12:27','',0,'KrystynaA76'),(886,'LindaAVIff','$P$BK7AtUzILaqMlZBPcpIWQtDBrdnb4z0','lindaaviff','susanngyo551@hotmail.com','','2014-03-28 10:05:08','',0,'LindaAVIff'),(887,'FreyaJ38qfiy','$P$B9ZuQixr/EiKyBbk6p0WN6mgEH73.U/','freyaj38qfiy','nuzevaxixod@hotmail.com','','2014-03-28 10:26:14','',0,'FreyaJ38qfiy'),(888,'Camilla05M','$P$BNnej2aSeRkdrjllgXToB31tb7mvA/.','camilla05m','montyans@hotmail.com','','2014-03-28 10:58:24','',0,'Camilla05M'),(889,'AntonioBiddleco','$P$B6pi4sokzi8wRpsEpPot.99fepk6u80','antoniobiddleco','maryjaneppmfju64@hotmail.com','','2014-03-28 12:19:01','',0,'AntonioBiddleco'),(890,'RaymondJtg','$P$BsdYp83.7bPYR8/rTg1rjCgExiZfA2/','raymondjtg','raymond_leedom@icisnet.org','','2014-03-28 15:54:37','',0,'RaymondJtg'),(891,'NigelNIGUlm','$P$BgI3o8PRgUWk6FbFDIGpfSdyHO.e7Q.','nigelnigulm','sovomouver1980@t.pl','','2014-03-28 20:40:01','',0,'NigelNIGUlm'),(892,'WyattISXhllphtz','$P$BL7HrJ2OcFMm.Uv80uFd6SIgHMaf130','wyattisxhllphtz','zhoraterd@hotmail.com','','2014-03-28 21:33:20','',0,'WyattISXhllphtz'),(893,'MelissaStirling','$P$Bxmfx9UhtnG8Xunk4d9iZYFAWoP7920','melissastirling','melissal4938w@games4free.info','','2014-03-28 23:13:54','',0,'MelissaStirling'),(894,'MatthewOFTP','$P$BnLThrzwjQdXDdSVoBGG2pgIvZm5G91','matthewoftp','lef6fium@hotmail.com','','2014-03-29 01:22:17','',0,'MatthewOFTP'),(895,'LindsayFitzgibb','$P$BcgchUpZinu7XP4t9e5yB/AtrVyTSR.','lindsayfitzgibb','mcclureony5uvrqt@hotmail.com','','2014-03-29 02:52:11','',0,'LindsayFitzgibb'),(896,'BarneyMcDonald','$P$BUVXvda/gmgR3K8eo5Q92CYE2PYa5q.','barneymcdonald','basiliackz030@hotmail.com','','2014-03-29 06:35:42','',0,'BarneyMcDonald'),(897,'AnnmariFarmer','$P$BYqHX6cjFQZLylEDpZ3ScmBmqrH6Xp/','annmarifarmer','nanunm127@hotmail.com','','2014-03-29 08:47:38','',0,'AnnmariFarmer'),(898,'BeatrisKnudson','$P$BB9p5S41MmfkTzwmGageCiVB6sfH0E0','beatrisknudson','stimulatingnurtyyw@rediffmail.com','','2014-03-29 13:09:13','',0,'BeatrisKnudson'),(899,'ArchieSalgado','$P$Bux7dB559jNS/WqvH5.0OeaNf6j8i61','archiesalgado','nhurinriss@hotmail.com','','2014-03-29 13:15:20','',0,'ArchieSalgado'),(900,'Elijah0775','$P$BTB4eXUGIZm8dFDhOT9qXgEM2rZU.A1','elijah0775','havalkonfmas1975@t.pl','','2014-03-29 13:41:57','',0,'Elijah0775'),(901,'Clement93o','$P$BCRyk9JzBp36Vj7dllrOCn/uAXdPaU/','clement93o','aderko@poczta.pl','','2014-03-29 13:44:45','',0,'Clement93o'),(902,'ChristaThibault','$P$BEEy9UXDhVJszgPC89D9efrVHBcpCw/','christathibault','zaoadinst@hotmail.com','','2014-03-29 14:27:31','',0,'ChristaThibault'),(903,'PlatVato','$P$BtUYBC.ayNn0V4iRwtsy2nlYNwdzFi/','platvato','plati@slotoland.com','','2014-03-29 17:16:12','',0,'PlatVato'),(904,'Mohamed1085','$P$B5mOuvdIQ4RU.uJufJafyUl0f3M1PX.','mohamed1085','trinidadrby955@hotmail.com','','2014-03-29 18:18:55','',0,'Mohamed1085'),(905,'LatonyaMcFarlan','$P$B1JKsOYJACBgyUx9WoqeKWXvQM0pGP0','latonyamcfarlan','ojasaav@hotmail.com','','2014-03-29 20:29:03','',0,'LatonyaMcFarlan'),(906,'JamilaGUYC','$P$Bp6EhT/gMhg3QojKHYgmV.P2hzS5TS1','jamilaguyc','vewoqynytiji@hotmail.com','','2014-03-29 20:35:29','',0,'JamilaGUYC'),(907,'ItadHewitt','$P$BzU84Jmm/r/AGSKVHsYv.9vnCHuOlp/','itadhewitt','meyer8fzm82scg@hotmail.com','','2014-03-29 21:10:30','',0,'ItadHewitt'),(908,'VickeyYoul','$P$BpQc3E66xPr7t6Vy2U2zSAiqluvUqE1','vickeyyoul','daneafqj@hotmail.com','','2014-03-29 21:20:00','',0,'VickeyYoul'),(909,'KathlenIhz','$P$BXX93aHwaIYtUaDlj7Gfehek.gU70H1','kathlenihz','nshlervast@hotmail.com','','2014-03-29 21:54:37','',0,'KathlenIhz'),(910,'BouvuDunrossil','$P$ByB52xbvGaC2WLSAe715nxA6Q7.FGb1','bouvudunrossil','graves.ctcqpgb@outlook.com','','2014-03-29 22:19:09','',0,'BouvuDunrossil'),(911,'MelodyMosely','$P$BUaQNT0G7NdHfoJPjS8V4tRyCKj/lY/','melodymosely','yanlpyouts@hotmail.com','','2014-03-29 22:41:14','',0,'MelodyMosely'),(912,'MourKOLecapemzp','$P$B0bBRFGd9eqtUe.vTFdSp1fQId6U6n1','mourkolecapemzp','chezoushoemaker8893@trash-mail.com','','2014-03-30 00:15:37','',0,'MourKOLecapemzp'),(913,'EBXAngelin','$P$BlraPi6a9TyCjrlv/LCPJZSry4/sRq1','ebxangelin','grumpyguidebookzr689@outlook.com','','2014-03-30 02:35:21','',0,'EBXAngelin'),(914,'MaryellMathews','$P$Bjfs2dB3pUo2wnpPTr8UhfCll6Ffgu1','maryellmathews','wootenprzkf24w@hotmail.com','','2014-03-30 02:52:51','',0,'MaryellMathews'),(915,'MaiChatterton','$P$B1xE9jigWaozoY2clXSIPj3TnsIL7.1','maichatterton','sodriostevsi1974@t.pl','','2014-03-30 03:50:31','',0,'MaiChatterton'),(916,'AntonettaSpitze','$P$ByfFaPwBmU2Fd3KWTsHcmb.ARIsQ1d1','antonettaspitze','mabelpfe@hotmail.com','','2014-03-30 06:50:06','',0,'AntonettaSpitze'),(917,'EarleWzlidfux','$P$BS2SSC6t3em37udNGdNt9qKGGIK5qt1','earlewzlidfux','banbragec@hotmail.com','','2014-03-30 06:57:26','',0,'EarleWzlidfux'),(918,'CatherineJeffer','$P$Bdvsd9HoEgh0OfGqWWYRIY2xRHsx0G0','catherinejeffer','aillisor@hotmail.com','','2014-03-30 07:36:03','',0,'CatherineJeffer'),(919,'AnnmariLeitch','$P$BAIOyQT.p5LPvuIQ8R2jI/hfr6FY3T0','annmarileitch','ritayates@trash-mail.com','','2014-03-30 08:25:50','',0,'AnnmariLeitch'),(920,'LeeWYYsdjkwod','$P$BuqnuFZpmDUSetYLayqR/57rY2x2aI/','leewyysdjkwod','fowafitzmaurice3456@6ip.us','','2014-03-30 08:26:54','',0,'LeeWYYsdjkwod'),(921,'DorotheEwan','$P$Ba39pfSaNyM3ltHsQ.6XM8Fv/RXnw2.','dorotheewan','dorothea_ewan40@icisnet.org','','2014-03-30 09:07:38','',0,'DorotheEwan'),(922,'IsisWinterbotha','$P$BbZfWcAtt4HYzRX8LnGtyVMFAHaZxy0','isiswinterbotha','birnbergp@hotmail.com','','2014-03-30 12:10:51','',0,'IsisWinterbotha'),(923,'KandisKXJkjrpt','$P$BjDlbhAiEyD6JjxJqb62q/NBbbgZNE1','kandiskxjkjrpt','gloevinema@hotmail.com','','2014-03-30 13:36:03','',0,'KandisKXJkjrpt'),(924,'SergioMerryman','$P$BsijKrd5Pllos6FyvDqcBzi81FF2EJ.','sergiomerryman','gamblecrfs4p@outlook.com','','2014-03-30 19:48:05','',0,'SergioMerryman'),(925,'JosiahUthf','$P$BgShhg1dzytH198VOcrco2ryB8C0Za.','josiahuthf','kylemcguinness5045@mailcatch.com','','2014-03-30 20:49:54','',0,'JosiahUthf'),(926,'SondraEJIxdjso','$P$BS9.ZInAqt3E6USphqoco8PbqlDu.z1','sondraejixdjso','federep@hotmail.com','','2014-03-30 20:52:07','',0,'SondraEJIxdjso'),(927,'BruceHailes','$P$BNk4PpSEDxzkVoeb5vdoCS6punyO6S.','brucehailes','gawiggraterb1972@t.pl','','2014-03-30 23:27:58','',0,'BruceHailes'),(928,'LucaDawkins','$P$BzRIG9p79jeWX5yFUoww66GCanw4d6/','lucadawkins','ngjhbokano@hotmail.com','','2014-03-31 00:43:41','',0,'LucaDawkins'),(929,'OtiliaHiggin','$P$BiD8vMU.ibRZoAI0QnOv4Syr0qGnYk0','otiliahiggin','talregoodso1976@t.pl','','2014-03-31 01:21:23','',0,'OtiliaHiggin'),(930,'ClaudetMcGahan','$P$B.8ui7B8VWSi5QWg9ZSfTdxOjOyBNC.','claudetmcgahan','seanbsy864@hotmail.com','','2014-03-31 02:32:11','',0,'ClaudetMcGahan'),(931,'JosefinBiddell','$P$BrJsHif98IL/aDBKBIvRZS5jafAEp1/','josefinbiddell','caroleqwhjlp18@hotmail.com','','2014-03-31 06:33:57','',0,'JosefinBiddell'),(932,'LukasIngle','$P$Bd.YOLDdDUNwo3vE1XWm6tpFJGR9lq1','lukasingle','ngzcagnavi@hotmail.com','','2014-03-31 09:13:49','',0,'LukasIngle'),(933,'IlsePerllc','$P$BVV3giHbU40NRdyfRdUm2NKCAkfTPm1','ilseperllc','debonairbackpac1@laposte.net','','2014-03-31 14:33:25','',0,'IlsePerllc'),(934,'KingLpwsiyxqub','$P$BkuJDz1Y0k/MX0QNVgT8Dru75NUz/B1','kinglpwsiyxqub','biaamiemi@hotmail.com','','2014-03-31 16:22:40','',0,'KingLpwsiyxqub'),(935,'JerroldQla','$P$BMsKYlVzi3G59R2B54fK.pv9qouqUO0','jerroldqla','learneditinerarj07o@freemail.hu','','2014-03-31 16:45:25','',0,'JerroldQla'),(936,'ElisabeFenton','$P$BLiFQZ8ojvqhLIDWPNPIq7lQWP65rf/','elisabefenton','murielbqq463@hotmail.com','','2014-03-31 17:24:54','',0,'ElisabeFenton'),(937,'KatheriBecerra','$P$BGmue5lVIdX.6ZeOHD8cFdugZBnGiH1','katheribecerra','banuelsca@hotmail.com','','2014-03-31 18:40:06','',0,'KatheriBecerra'),(938,'Rita14Bobooz','$P$By/MmoIFSXkqyPbsiR8dmYPtEhUP0q/','rita14bobooz','hilinkens@hotmail.com','','2014-03-31 19:44:35','',0,'Rita14Bobooz'),(939,'SusannaO99','$P$BTRH2hEKT7rB8xoxuUAvl/mwLA1tuU1','susannao99','bartexxdgr@o2.pl','','2014-03-31 21:49:17','',0,'SusannaO99'),(940,'AlmaLeppert','$P$BCBw4O1lya/ntmAJBHMuAaHvAadEvG/','almaleppert','yisiedlin@hotmail.com','','2014-03-31 22:45:14','',0,'AlmaLeppert'),(941,'Aaron63Hkrm','$P$BtjO0ZWe6oc89.H50PNxN7WhO9AaO/.','aaron63hkrm','anzarrhunt@hotmail.com','','2014-04-01 00:02:34','',0,'Aaron63Hkrm'),(942,'LeilaniDockery','$P$BYUDklfDwSRcZOY8e6c2NfFLzuo3jc0','leilanidockery','lourdesvrl289@hotmail.com','','2014-04-01 01:05:21','',0,'LeilaniDockery'),(943,'EmmettHudspeth','$P$Bx/rNCYiAskw9A7obwaatQOSuVY9451','emmetthudspeth','bootstidema1987@t.pl','','2014-04-01 04:27:44','',0,'EmmettHudspeth'),(944,'RuthieYvgbzpld','$P$BtF616mzoB9n79a3AUSsLx6y9ppL1V.','ruthieyvgbzpld','smitasocad1972@t.pl','','2014-04-01 05:49:37','',0,'RuthieYvgbzpld'),(945,'BrianneYdb','$P$BFRa5qG/1M9zPNC/YlVPQVaa7Lhbyj1','brianneydb','watualbilang1972@t.pl','','2014-04-01 06:48:42','',0,'BrianneYdb'),(946,'JulianBolinger','$P$BQqcUypLpTb35aBFsy3n5MsUqS2PHs0','julianbolinger','sweetsireasen1982@t.pl','','2014-04-01 08:55:01','',0,'JulianBolinger'),(947,'Freundinz','$P$BYFr6k1RxsC2CZNjju6HIO/gjqxYZW.','freundinz','biggus.diggus666@aol.com','http://ex-freund.in','2014-04-01 10:00:26','',0,'Freundinz'),(948,'JulianaMcDonagh','$P$B6cbj6v3v1zX37l8SF72C5UKyxgweS.','julianamcdonagh','uiynbalasu@hotmail.com','','2014-04-01 10:00:47','',0,'JulianaMcDonagh'),(949,'JuanaStamper','$P$BZdWjzLWy1EspoVABbYrJgQT8yeFV./','juanastamper','anxllaemer@hotmail.com','','2014-04-01 10:24:29','',0,'JuanaStamper'),(950,'MazieGardiner','$P$B7NsxAA0tK.Vw4qQ3sNBfjIWKB/H.G/','maziegardiner','nliperefre@hotmail.com','','2014-04-01 13:58:19','',0,'MazieGardiner'),(951,'ClydePiyeks','$P$BI3RkBot.8RG8av7oaUgtUer9qCtZe.','clydepiyeks','dollybvn@hotmail.com','','2014-04-01 19:26:53','',0,'ClydePiyeks'),(952,'Tammie0235','$P$B/LwvnOzrWiksMRYZGhQrHG0ngbrH5/','tammie0235','juxcteria@hotmail.com','','2014-04-01 20:58:09','',0,'Tammie0235'),(953,'BarrylR','$P$BUjNS6mF/BwP19i52wZzQrOaITXY9s0','barrylr','ybarryl226@hotmail.com','','2014-04-02 00:25:18','',0,'BarrylR'),(954,'KlaudiaMFM','$P$BkR1WvhsX9ndR8S3gFQjFzdGeC21aD.','klaudiamfm','banktelkati1980@t.pl','','2014-04-02 01:23:07','',0,'KlaudiaMFM'),(955,'RefugiaSNB','$P$B0/qNLVAeCnzfs7v3uva0fF0.Qiwjg/','refugiasnb','zhanessrev@hotmail.com','','2014-04-02 03:43:40','',0,'RefugiaSNB'),(956,'AUAUlrichyvfbd','$P$B90s1U3MntDZfNWQPs5qPYKS9kN/JO0','auaulrichyvfbd','ichtromhar@hotmail.com','','2014-04-02 04:24:19','',0,'AUAUlrichyvfbd'),(957,'IlanaYEKxvhocub','$P$BDpBXmr.LCUiCI6GWy3EG2D5dSdtI7.','ilanayekxvhocub','raispampenkgo1986@t.pl','','2014-04-02 04:56:46','',0,'IlanaYEKxvhocub'),(958,'TracyGellxpwt','$P$BTaSQMqG8jHXxaC0tPRjC9.GS6KSb4/','tracygellxpwt','enasunkris1975@t.pl','','2014-04-02 08:11:29','',0,'TracyGellxpwt'),(959,'RositaWOBI','$P$BGlJCou4Bod4Jzh0a/KY/n6MpqVoaI1','rositawobi','henriusset@hotmail.com','','2014-04-02 08:26:03','',0,'RositaWOBI'),(960,'LeahTFOimwdil','$P$B5ew9DhpIQp6YQbIT5/0QcR8DbTK/70','leahtfoimwdil','yayoleosl@hotmail.com','','2014-04-02 08:53:43','',0,'LeahTFOimwdil'),(961,'EarleDliujjgxru','$P$B075DhK76prgisvH/oz5vpEaZXdB3V/','earledliujjgxru','fedorqaf@hotmail.com','','2014-04-02 12:12:46','',0,'EarleDliujjgxru'),(962,'CoralMoorgvuw','$P$BWt7Y04gUA5tjEuErBDq8CT.aGWb9B/','coralmoorgvuw','wotoqobywyv@hotmail.com','','2014-04-02 12:40:32','',0,'CoralMoorgvuw'),(963,'BasilBourget','$P$BXcDa.JndEFWse1OpguYf22CXaUQXl0','basilbourget','zheefsalm@hotmail.com','','2014-04-02 17:23:47','',0,'BasilBourget'),(964,'ForrestStilwell','$P$Bpcb5mp0gmQntSNNZhZNkDt469KLc70','forreststilwell','denihorymojo@hotmail.com','','2014-04-02 18:00:52','',0,'ForrestStilwell'),(965,'Sarahf5okb','$P$B9A3jF/zN07Jt4ByQ9BiNeuJKN5CKW.','sarahf5okb','dap@ditax.pl','','2014-04-02 20:17:30','',0,'Sarahf5okb'),(966,'JoshuaYeager','$P$BLyZlBMeZKYCTnv.8RMvU8C5k/ww25/','joshuayeager','c.coto@aol.com','','2014-04-03 00:12:07','',0,'JoshuaYeager'),(967,'MylesLindon','$P$BgM35dyZUCmWI0wGHz6qUXSla7z/dd1','myleslindon','huarausbe@hotmail.com','','2014-04-03 01:25:25','',0,'MylesLindon'),(968,'TiaraGannfjgac','$P$By3IMt0z6yW.HjJD6x2C1ay6PR9HAc/','tiaragannfjgac','femyfyhekaha@hotmail.com','','2014-04-03 02:24:23','',0,'TiaraGannfjgac'),(969,'toman53vhl','$P$Bjd7uptFsXU2pCa1EozAni9UNpgOgL1','toman53vhl','porfirio-teakle79@chillievents.pl','','2014-04-03 02:40:37','',0,'toman53vhl'),(970,'JonathoHarmer','$P$BbuKS0/OwB7WkMfIwacYfmEOV3hIN4.','jonathoharmer','halliewjb160@hotmail.com','','2014-04-03 03:16:09','',0,'JonathoHarmer'),(971,'Josef51Ttj','$P$BfV1V.qsMLwgDWBavoTETJoi1mwop91','josef51ttj','mariettakimbell1542@mailcatch.com','','2014-04-03 03:30:59','',0,'Josef51Ttj'),(972,'EthelAwadxtg','$P$Bt7D5cn8OCNUs2HSp11VwohyAyFmq/.','ethelawadxtg','lorindantl231@hotmail.com','','2014-04-03 06:04:25','',0,'EthelAwadxtg'),(973,'FUTLelandvfbhys','$P$Be3paSVlv4dQzNZ.fA8cRrrq.9RnzK0','futlelandvfbhys','leland-grasby@icisnet.org','','2014-04-03 06:32:04','',0,'FUTLelandvfbhys'),(974,'YvonneNagilz','$P$BWMH2kUNxiIsE9ZkIK8URCsZ3aImP60','yvonnenagilz','yvonne-seaman69@icisnet.org','','2014-04-03 06:53:07','',0,'YvonneNagilz'),(975,'CandaceGlenny','$P$BLi4/aQlcaNzsoKZT54aZKHHmudlus0','candaceglenny','candace.glenny@icisnet.org','','2014-04-03 07:53:29','',0,'CandaceGlenny'),(976,'Gordonpt','$P$BeIK5txzR0vqh5zH0hoMxjhi5RDnxZ0','gordonpt','deleoncdr7ob2v2@hotmail.com','http://chwilowkias.pl','2014-04-03 09:35:43','',0,'Gordonpt'),(977,'pawelek28i','$P$B.gSz1EYIK1IDLxMb8YZjOJj0QvXjx/','pawelek28i','moises.climpson@chillievents.pl','','2014-04-03 10:54:47','',0,'pawelek28i'),(978,'MKWPerrydlxhwc','$P$B/mZS.EDG39xbUK6RLYWz5z5pR1TDR.','mkwperrydlxhwc','insoulebal@hotmail.com','','2014-04-03 13:31:22','',0,'MKWPerrydlxhwc'),(979,'MaryannMurdock','$P$BD1LPF1pOXu1UTNps/axRSqOk.wKtw1','maryannmurdock','iwalethake@hotmail.com','','2014-04-03 15:03:57','',0,'MaryannMurdock'),(980,'carpinteyrogsl','$P$BeEjHyZeOZZjyk.Yr4ret..R1/ye290','carpinteyrogsl','mbtshoessalesuk@gmail.com','','2014-04-03 17:20:33','',0,'carpinteyrogsl'),(981,'OuroubiMoffatt','$P$Br1F2dTxxO1biW/BkLt2C6.ChAxds8.','ouroubimoffatt','legjrlpf@outlook.com','','2014-04-03 21:35:12','',0,'OuroubiMoffatt'),(982,'GenevaAfpkbczy','$P$Bg3ao1eD/YzykxJ/ZwwDQEu56YXfdn.','genevaafpkbczy','pafitifysim@hotmail.com','','2014-04-03 22:16:55','',0,'GenevaAfpkbczy'),(983,'CristinLoomis','$P$B19RRElUTzm5autVWFTrNYM9dMjSAE1','cristinloomis','livurehexoho@hotmail.com','','2014-04-03 22:18:39','',0,'CristinLoomis'),(984,'LaurenLwhcubziy','$P$B6CbnhlfaEMe.5dfxIMfR5EeMMmliJ0','laurenlwhcubziy','luylafr@hotmail.com','','2014-04-03 22:51:53','',0,'LaurenLwhcubziy'),(985,'GuillerBroadhur','$P$BXzFmM5IMM6L3uJhlh099uNFALoe0o/','guillerbroadhur','modernlaborer40ns51b@outlook.com','','2014-04-03 23:35:12','',0,'GuillerBroadhur'),(986,'BrigittHanley','$P$BuhI5n7ONiHgF1BA2ABZh/UVbjPf5/.','brigitthanley','ndiblanche@hotmail.com','','2014-04-04 00:14:49','',0,'BrigittHanley'),(987,'MatthiaBudd','$P$BdsIeXRSmDLcLTQI0VxfERh5pKlgk7/','matthiabudd','zaivallez@hotmail.com','','2014-04-04 00:42:50','',0,'MatthiaBudd'),(988,'DeniseChamberla','$P$Btyhkz5OTFD2dyOGm6IeMr6QJYrVor1','denisechamberla','aileigenfi@hotmail.com','','2014-04-04 01:09:07','',0,'DeniseChamberla'),(989,'MarionLovekin','$P$BzgOc2kE4vrXL4LExWgosZ5wdSGaD2.','marionlovekin','ellisonf6jt5l@hotmail.com','','2014-04-04 01:47:29','',0,'MarionLovekin'),(990,'IsisButeau','$P$B36jdLeia67IOvuC/HbCTYQG30My9S/','isisbuteau','mimuxojivel@hotmail.com','','2014-04-04 02:54:57','',0,'IsisButeau'),(991,'Katheri6971','$P$BqCU6.UBtd0o89L3qCSI40TvIZPjsC.','katheri6971','gifukyketebi@hotmail.com','','2014-04-04 04:35:20','',0,'Katheri6971'),(992,'YasminBradway','$P$BVuZW9rivXdJPh847e0p5cYNlaYAWj1','yasminbradway','lyingdog287gz74@outlook.com','','2014-04-04 04:37:52','',0,'YasminBradway'),(993,'GuyBGUUhsqq','$P$Bd5v8vLYQIpIiKUT3T/HsG9pprdPhs1','guybguuhsqq','aomeridau@hotmail.com','','2014-04-04 04:59:26','',0,'GuyBGUUhsqq'),(994,'AKHCoufeezoieta','$P$BIa3tSTQDzp/t7Zrgjrc0YhYwZ/ZcA0','akhcoufeezoieta','cheejforshee8292@6ip.us','','2014-04-04 06:15:30','',0,'AKHCoufeezoieta'),(995,'KaliBrumbaugh','$P$BEUJ2sP8GtSuorkjv/4.cVFAP9AKSp1','kalibrumbaugh','lidajhd@hotmail.com','','2014-04-04 11:15:03','',0,'KaliBrumbaugh'),(996,'RuthCantara','$P$B2beaPoOJ7Mske7QhdKodDQPmaKkX2/','ruthcantara','jisofynozyz@hotmail.com','','2014-04-04 12:08:49','',0,'RuthCantara'),(997,'Monty02Vcrcxry','$P$BnZqXm.0NLwVjakY47zqbAwTbEv/Rw0','monty02vcrcxry','karenvrwt@hotmail.com','','2014-04-04 13:31:34','',0,'Monty02Vcrcxry'),(998,'HelenK97ntlkc','$P$BzcEwgB2/buOTFPDxMEdzaWxJ/plFk0','helenk97ntlkc','fipivacozefa@hotmail.com','','2014-04-04 13:55:38','',0,'HelenK97ntlkc'),(999,'CorinneWatson','$P$BY5dKzOdjs56CyFF0X16kSHHSSy/JF1','corinnewatson','nzhformich@hotmail.com','','2014-04-04 17:19:27','',0,'CorinneWatson'),(1000,'ceycagpmjbyu','$P$BHkwG02GfHO3YiuK8dT.1JGDOhbN5z1','ceycagpmjbyu','colinyep@o2.pl','','2014-04-04 18:40:49','',0,'ceycagpmjbyu'),(1001,'WeldonBenjafiel','$P$BrUjdN9q6bmGg6Sf71Qe1lZmrhu/Pk1','weldonbenjafiel','spanikimtor1970@t.pl','','2014-04-04 19:04:34','',0,'WeldonBenjafiel'),(1002,'Jacqueline97N','$P$BGGk6Z5bnrqAR8JQYVMvF1CzebuM/9.','jacqueline97n','poliavc@hotmail.com','','2014-04-04 19:26:43','',0,'Jacqueline97N'),(1003,'MairaSchulte','$P$BmmOSdmtsufWXDJQwTW.OSI6cTKUfL1','mairaschulte','shannonqhc0fw@hotmail.com','','2014-04-04 19:42:20','',0,'MairaSchulte'),(1004,'KristofKraft','$P$BWw4.kvNfWEnXPSngsd6pGm4JxP1aK0','kristofkraft','wantingfuzz701qf@abv.bg','','2014-04-04 19:57:42','',0,'KristofKraft'),(1005,'dtolek21','$P$BR1OqnTUnpLZplnYE/rArSimHnoh//1','dtolek21','emil@thecorrs.pl','','2014-04-04 21:46:56','',0,'dtolek21'),(1006,'Gertie18Bgn','$P$BQZQ/9LYrKwt21I88oRfTl/ar7tfA.1','gertie18bgn','nghebemuec@hotmail.com','','2014-04-04 22:46:34','',0,'Gertie18Bgn'),(1007,'THRLisette','$P$BrFH3iK8g.lusczTP8HvFHovmItUHT0','thrlisette','wevahibeguco@hotmail.com','','2014-04-05 02:52:30','',0,'THRLisette'),(1008,'LatashiDominiqu','$P$B8Haqxuh7hxjL.EcNHRpO0ao1cKm3B0','latashidominiqu','profethemex1985@t.pl','','2014-04-05 03:06:11','',0,'LatashiDominiqu'),(1009,'JoellenBauman','$P$BT4bP6TEtY28.FSK6uo9GVYtznF554/','joellenbauman','lovingshame883fu@rediffmail.com','','2014-04-05 04:10:50','',0,'JoellenBauman'),(1010,'OllieSammons','$P$BJXUMO9mAofGatZb3z3sixhAejh4dv0','olliesammons','sofyguxuzico@hotmail.com','','2014-04-05 05:33:38','',0,'OllieSammons'),(1011,'ThomasNicastro','$P$BLjIdOE6ISjaDAC2cX4l8q9RndB5lU1','thomasnicastro','yummytheme252s65@outlook.com','','2014-04-05 07:32:01','',0,'ThomasNicastro'),(1012,'DakotaLockett','$P$BFgNHahWS482KzvzGktigFd8floEch1','dakotalockett','heathbradford8@outlook.com','','2014-04-05 08:49:38','',0,'DakotaLockett'),(1013,'ArnoldLazar','$P$BVwDJciUtykdEe6im9J/pKgxjdYEek0','arnoldlazar','elrdina@hotmail.com','','2014-04-05 09:01:56','',0,'ArnoldLazar'),(1014,'GwendolFGVJ','$P$BbY38bh2ycscUN7cQL9406uIgreQXv.','gwendolfgvj','cristinlvi680@hotmail.com','','2014-04-05 09:12:50','',0,'GwendolFGVJ'),(1015,'BarbKosovich','$P$Bkl2ESgUMVY8S.yNxvAm/JglcApM6q1','barbkosovich','dyeradua@hotmail.com','','2014-04-05 09:34:28','',0,'BarbKosovich'),(1016,'AlmaGottshall','$P$BTVOSb.G5Cj11VFfyrVbfAm5AAvt8B0','almagottshall','jialistam@hotmail.com','','2014-04-05 10:30:15','',0,'AlmaGottshall'),(1017,'AnnieBenson','$P$BtCbfvcXgt0EK/yYyJliQ3iRQs3SsF/','anniebenson','kathlineydhouchin@yahoo.com','','2014-04-05 11:11:11','',0,'AnnieBenson'),(1018,'TaniaLoyaklbd','$P$BFJIwEXZAVAl5lrWBQkHRaF5wU6uGg0','tanialoyaklbd','abrasiveclusterkds23@outlook.com','','2014-04-05 12:13:06','',0,'TaniaLoyaklbd'),(1019,'VincentVon','$P$ByyBEepNqjLHcKpe.ZR7pArLeOMyN..','vincentvon','kj.myvinux500@gmail.com','','2014-04-05 12:40:17','',0,'VincentVon'),(1020,'LeoraDyson','$P$B/iHiS.2sa/6J1Gid17lTyC/EndKH10','leoradyson','leora.dyson43@99gamerz.com','','2014-04-05 15:09:39','',0,'LeoraDyson'),(1021,'DianneZapata','$P$BARu9oEEVk4k3u/oUJb6fHLOfbNWk5/','diannezapata','xekifaselig@hotmail.com','','2014-04-05 15:55:11','',0,'DianneZapata'),(1022,'JanieMadera','$P$BoxwsK7CXAJWyg4vAJsEnG7TjQyyQ11','janiemadera','nemecgfs@hotmail.com','','2014-04-05 17:05:18','',0,'JanieMadera'),(1023,'AshleeKgttiftwc','$P$B2iglhkMxfblDclHhIvhf7WhhoAL5e1','ashleekgttiftwc','mejiamsz@hotmail.com','','2014-04-05 17:07:51','',0,'AshleeKgttiftwc'),(1024,'SterlinDozier','$P$BE1UQaRexnJVb.ba7BDyTvG68CQt1m0','sterlindozier','sterling.dozier4@icisnet.org','','2014-04-05 17:17:04','',0,'SterlinDozier'),(1025,'VRWPatrice','$P$BvcZcpIKit/zMq0XO959Gq2Yea2nN//','vrwpatrice','otoagansas@hotmail.com','','2014-04-05 18:04:10','',0,'VRWPatrice'),(1026,'KaseyBigge','$P$B5rOCpI5BGEdvWFbLHCk7tJF/lQvtX/','kaseybigge','ikaovichre@hotmail.com','','2014-04-05 19:19:06','',0,'KaseyBigge'),(1027,'PollyYXVqwafxd','$P$BZCxe0m.Omyy/NpryELeh.aS6n9lny1','pollyyxvqwafxd','leonilajsw135@hotmail.com','','2014-04-05 19:24:30','',0,'PollyYXVqwafxd'),(1028,'Dioftrairty','$P$BMl2SH8Erm/HrEZWnFCxGNlyFd49aN1','dioftrairty','Dioftrairty@5ketonemastery.com','','2014-04-05 20:28:55','',0,'Dioftrairty'),(1029,'CarlotaKrimmer','$P$BqS6RmnnW.QMQOWPdtYLOSsih40wf20','carlotakrimmer','adrianaabstelman@yahoo.com','','2014-04-05 21:38:52','',0,'CarlotaKrimmer'),(1030,'AllieStanford','$P$BiiKsij2KyZKN84Op1lNXNqzkcDJy60','alliestanford','wootenkggtllaq@hotmail.com','','2014-04-05 23:27:46','',0,'AllieStanford'),(1031,'SheriMoorman','$P$B9k9tsjs8mQC3JwDG3SsN0jRkLhQ8x0','sherimoorman','berndsantana8004@spambog.ru','','2014-04-06 00:45:58','',0,'SheriMoorman'),(1032,'KandiC55xvacdhc','$P$Bg/hx2q/YqddvKeSf1O1Igim.YXQMy1','kandic55xvacdhc','kandi_gorham@b.maybebest.com','','2014-04-06 01:59:45','',0,'KandiC55xvacdhc'),(1033,'YMGShawnslohh','$P$BNH4aylpiVrbzDLwOnh5LK4VOanTcv.','ymgshawnslohh','squeamishshell5dk8t@nokiamail.com','','2014-04-06 02:51:20','',0,'YMGShawnslohh'),(1034,'AlishaBrookshir','$P$BDiRH2iZt6ScdoGMq8lKdDzYH7H1OX.','alishabrookshir','guzmandfshbr@hotmail.com','','2014-04-06 03:35:17','',0,'AlishaBrookshir'),(1035,'JoseReneijuzw','$P$BGF/koYmIhlvxc3LrCFJiKMPAigyVF.','josereneijuzw','wuyiloren@hotmail.com','','2014-04-06 03:45:09','',0,'JoseReneijuzw'),(1036,'Hayden37Fvb','$P$BEufDyZm5eJFIDlfeJdYIh0KlnF4y91','hayden37fvb','vuzarumoridy@hotmail.com','','2014-04-06 04:26:40','',0,'Hayden37Fvb'),(1037,'KeithKVTUrm','$P$B82VCYH9aE6HKKgbHm8thjQqEoN8rh/','keithkvturm','topyramutyx@hotmail.com','','2014-04-06 04:41:50','',0,'KeithKVTUrm'),(1038,'KentonG89wbd','$P$BDgO1VOYxX4.CVpz4g0xwhA2IbBvIO0','kentong89wbd','cuhajukomuko@hotmail.com','','2014-04-06 04:44:19','',0,'KentonG89wbd'),(1039,'PUERefugia','$P$BoHWrZ6RsRZxI/0ITooguRTFhkTrCr0','puerefugia','sallyjohnssz@aol.com','','2014-04-06 04:48:07','',0,'PUERefugia'),(1040,'Kenneth60D','$P$BOflZAdwf5pW0O4h13Q5DHLzOa7vn11','kenneth60d','eltonaav@hotmail.com','','2014-04-06 15:28:46','',0,'Kenneth60D'),(1041,'MelvinaNewby','$P$BhM.sHuL83.lA2E6e2DNDqLe07k.4E1','melvinanewby','antoinetteskinner@spambog.ru','','2014-04-06 16:13:12','',0,'MelvinaNewby'),(1042,'RoryAlbarran','$P$BBCBwnzv4URW8KYZonV9vXgVzAp2pN0','roryalbarran','the.reve16541s@gmail.com','','2014-04-06 16:17:12','',0,'RoryAlbarran'),(1043,'ScarletAubry','$P$Bc.rVAkUBF6r4578pUcj5doaSNn1Mg1','scarletaubry','helolywihipy@hotmail.com','','2014-04-06 16:44:17','',0,'ScarletAubry'),(1044,'Bryant27Ktmkwz','$P$BjRHaG8GEY5ofuBa0q1TtJI0MLwWNC1','bryant27ktmkwz','ghundevenn@hotmail.com','','2014-04-06 17:17:59','',0,'Bryant27Ktmkwz'),(1045,'JeanneQwtxyshn','$P$BZ.NqUgMJFm01X2QOf2xJ/ekTWxQZi0','jeanneqwtxyshn','litykebokupo@hotmail.com','','2014-04-06 17:18:51','',0,'JeanneQwtxyshn'),(1046,'MelvaTHAExxdh','$P$BbdzKkBiHtufYra0sODwV3s7QWMU5j.','melvathaexxdh','angttenpeo@hotmail.com','','2014-04-06 18:09:47','',0,'MelvaTHAExxdh'),(1047,'SheritaCortez','$P$BitAH42JUzw8dPhlZpvf9TAXVKTSqd.','sheritacortez','kurorozuboc@hotmail.com','','2014-04-06 18:34:50','',0,'SheritaCortez'),(1048,'OpalAinsworth','$P$BnYYOOWvAoZR3.1olwg1hWx33FBOLU0','opalainsworth','hannavbk@hotmail.com','','2014-04-06 19:12:08','',0,'OpalAinsworth'),(1049,'JanineCadell','$P$Bic8UrSrEGcENZq68o0srmqpfyJqtO/','janinecadell','shiernste@hotmail.com','','2014-04-06 23:03:12','',0,'JanineCadell'),(1050,'AILEldenru','$P$BEJLevXE.F8R5MYC22T21q4J.75fd6/','aileldenru','ganbyther@hotmail.com','','2014-04-07 01:21:01','',0,'AILEldenru'),(1051,'Valenti35R','$P$BYwIao9a7JGptICsjKZxHv4ROGuBhB.','valenti35r','economicsavior65197@outlook.com','','2014-04-07 02:06:35','',0,'Valenti35R'),(1052,'BryceQOZZu','$P$BUuyjrAVoSZbO53sKYclG4exMndD7F.','bryceqozzu','rebellemon95ow346@outlook.com','','2014-04-07 07:06:38','',0,'BryceQOZZu'),(1053,'Emery00Sdims','$P$ByraDEytxvhn.IshKZpwqY8/6loVDt0','emery00sdims','yinewesev@hotmail.com','','2014-04-07 13:44:31','',0,'Emery00Sdims'),(1054,'LeannaNewsome','$P$BhLWtF6eYaSUVuVyE2ESNajulTb5AI/','leannanewsome','fisaniko1979@t.pl','','2014-04-07 21:33:15','',0,'LeannaNewsome'),(1055,'SadieAngas','$P$B/unZlrozgLsIG8P5BZMQkkWfliHwk0','sadieangas','riostalatid1981@t.pl','','2014-04-07 23:59:56','',0,'SadieAngas'),(1056,'HerbertKeefer','$P$Bs5chL7ku2ZiUOodUGOa1iqA4r6wKC.','herbertkeefer','qukakokinebe@hotmail.com','','2014-04-08 01:40:39','',0,'HerbertKeefer'),(1057,'DarcyJeffcott','$P$BI.BXNcvVpHo7Qp3OpSty14U1jPnot/','darcyjeffcott','myrykomujyh@hotmail.com','','2014-04-08 03:39:15','',0,'DarcyJeffcott'),(1058,'PalmaLfrdhjowtx','$P$BUPU/2R5kNuXASUsT0X/yMTPCWmXcB1','palmalfrdhjowtx','wixctmu@hotmail.com','','2014-04-08 05:55:49','',0,'PalmaLfrdhjowtx'),(1059,'ElviraTrower','$P$BxIDm9uNgItDJrX0ddFBwZnH.rdKaO1','elviratrower','uanhambode@hotmail.com','','2014-04-08 06:03:33','',0,'ElviraTrower'),(1060,'KeishaGleason','$P$BaUJGORAzuSQU/YErp0N/xz.5IlRKZ1','keishagleason','elsiebmc@hotmail.com','','2014-04-08 06:32:48','',0,'KeishaGleason'),(1061,'JamieZQQGyktysu','$P$B3qNNbX/e0dunMTy7mI19cg4RsSaGw0','jamiezqqgyktysu','bifasamequve@hotmail.com','','2014-04-08 08:35:38','',0,'JamieZQQGyktysu'),(1062,'TamsinLyles','$P$BK.9J3acYSCWo7MVQues0goMHqCx..0','tamsinlyles','carver53bgb3@live.com','','2014-04-08 10:31:51','',0,'TamsinLyles'),(1063,'Albertoma','$P$BR53JnOu4KZkqTp/pNlKIB2iatJtJ1/','albertoma','albertopinism@gmail.com','http://www.taunus.it/load/9.html','2014-04-08 12:07:33','',0,'Albertoma'),(1064,'RobertPew','$P$Bm6/TPqigMxr5Hm6tO1tbLKLcj4qCv.','robertpew','donaldonst@gmail.com','http://meltingpotfranchise.com/wings/8.html','2014-04-08 12:07:34','',0,'RobertPew'),(1065,'KayleneTBA','$P$BjQhhmZRpwEtrM9HsqB6u7FSnZ3Pd21','kaylenetba','kaylene-halley@f.maybebest.com','','2014-04-08 12:13:54','',0,'KayleneTBA'),(1066,'SRKQuentin','$P$BeHRBuhlJbC.PcrFCZRXxfu2Afakms0','srkquentin','shanegfzg@hotmail.com','','2014-04-08 12:51:12','',0,'SRKQuentin'),(1067,'FloreneWienholt','$P$B1WXnfPpXb5aA4OJbzhDvDDGMQS7ME1','florenewienholt','mabiegregoryahem@hotmail.com','','2014-04-08 12:51:39','',0,'FloreneWienholt'),(1068,'ByronGJRZelyl','$P$B818h3iXxIHFR2Pn53kCHIMWEvCLV3/','byrongjrzelyl','xipihomexyr@hotmail.com','','2014-04-08 15:26:13','',0,'ByronGJRZelyl'),(1069,'MckinleBirchell','$P$BYs1VawRAxuyIonguSDIyrkAyP1FxI/','mckinlebirchell','marbiagagtoua1973@t.pl','','2014-04-08 19:31:26','',0,'MckinleBirchell'),(1070,'Xiomara54G','$P$BtXPV9DZts0l8jgRq64lpWQ4OwlzQX0','xiomara54g','xusramlam@hotmail.com','','2014-04-08 20:17:04','',0,'Xiomara54G'),(1071,'JessikaJ81','$P$BPfzhZT5yFuEagWl5.X/pXHEg57PqL0','jessikaj81','jessika_yuan66@icisnet.org','','2014-04-08 20:46:31','',0,'JessikaJ81'),(1072,'RicardoCard','$P$BX7w5Wn7m1ySdNlq5L1zHIU7HhY4FS0','ricardocard','zhuenglet@hotmail.com','','2014-04-08 22:12:45','',0,'RicardoCard'),(1073,'RozellaTozier','$P$BaKTwE15o9rl354xAEJNSmmEsBU3tb/','rozellatozier','inyussethi@hotmail.com','','2014-04-08 22:59:54','',0,'RozellaTozier'),(1074,'EdwardDinkins','$P$BEXDBpF9DcnsInCxz2F0mKp7vkSsRO1','edwarddinkins','edward.dinkins@icisnet.org','','2014-04-09 01:38:43','',0,'EdwardDinkins'),(1075,'AddieHarries','$P$BgXVakJTdSo2jnNpDsG/Qs/DT8tJgY.','addieharries','addie.harries44@f.maybebest.com','','2014-04-09 02:17:13','',0,'AddieHarries'),(1076,'MargarePinkley','$P$B2z.kg6XXPfe2mUpyMbZIgd8OGVt6G.','margarepinkley','thujqo929@hotmail.com','','2014-04-09 02:38:08','',0,'MargarePinkley'),(1077,'CortezEveringha','$P$BH3HpQnsdYQrdoyLWZtegVnSLOU7Ca/','cortezeveringha','lylavqq887@hotmail.com','','2014-04-09 03:13:04','',0,'CortezEveringha'),(1078,'BobbieGuardado','$P$BZ9oQsMRK4oMLWXMMsyW0KLlJi8THC1','bobbieguardado','mabiermf@hotmail.com','','2014-04-09 04:31:20','',0,'BobbieGuardado'),(1079,'ZellaLeong','$P$BFQRmi4a.pEaHrzQwdD4sRO3GHCfTe0','zellaleong','reyesapak@hotmail.com','','2014-04-09 05:28:26','',0,'ZellaLeong'),(1080,'MinnaColson','$P$B/VekjsWNyif9aSdGuamWHTBpkyEhn/','minnacolson','remonajps335@hotmail.com','','2014-04-09 06:32:37','',0,'MinnaColson'),(1081,'EMXCallumqzytc','$P$BHU.gcp9TfnUN0xzsB2mTxwn2ILvH2/','emxcallumqzytc','stereotypedfeved6ir@rediffmail.com','','2014-04-09 08:08:01','',0,'EMXCallumqzytc'),(1082,'Gloria7151','$P$BfSGqU4S.THFXtN6So78LbScH.wP8H.','gloria7151','chiaquv296@hotmail.com','','2014-04-09 13:53:54','',0,'Gloria7151'),(1083,'KrystynHowells','$P$BAx4yqmgGf/Ydfi7I.Rjf1nVQFnO4Y0','krystynhowells','simonabez671@hotmail.com','','2014-04-09 15:07:48','',0,'KrystynHowells'),(1084,'KennithStang','$P$B9faGKg1Eaych.8qHa0NRbPjF7REi/.','kennithstang','sondraqih931@hotmail.com','','2014-04-09 15:40:58','',0,'KennithStang'),(1085,'HarrisMYVnhti','$P$BmlUfnfroKsRAgh/M6zXK4sIiznX0I/','harrismyvnhti','kristinamph017@hotmail.com','','2014-04-09 15:44:22','',0,'HarrisMYVnhti'),(1086,'BudFreehill','$P$BeXPyGuTZIhNahsa4BooNkG3KitMkv.','budfreehill','irisbui613@hotmail.com','','2014-04-09 15:50:39','',0,'BudFreehill'),(1087,'ChristianoT','$P$B/t.uhL.DXG19a2cvH5cqk1wKoq3Fw/','christianot','dchristiano297@hotmail.com','','2014-04-09 16:45:20','',0,'ChristianoT'),(1088,'inurdieproc1965','$P$BXe/teNewH1B8YkAxo25jSc62ncq0U.','inurdieproc1965','kasia@acity.pl','','2014-04-09 16:45:58','',0,'inurdieproc1965'),(1089,'Deon05Ywbsqw','$P$BstiQlwl3nlyzgNRNkQEkbZLtW.Sw3.','deon05ywbsqw','annoyedview645@hotmail.com','','2014-04-09 16:58:18','',0,'Deon05Ywbsqw'),(1090,'Hal4795gthfrb','$P$ByjQ65xJUoCUsC3UGtLeEAO3AkwdXK1','hal4795gthfrb','josefadzq873@hotmail.com','','2014-04-09 17:43:15','',0,'Hal4795gthfrb'),(1091,'DottyTHQUagz','$P$BjPDssIaLilWVlqa8194KZa3fGv5R91','dottythquagz','lewismen948@hotmail.com','','2014-04-09 18:06:58','',0,'DottyTHQUagz'),(1092,'MadisonRempe','$P$BExaFLHoCimSfs/U/N98HY3aKfJvWU/','madisonrempe','izhmsenpri@hotmail.com','','2014-04-09 19:40:34','',0,'MadisonRempe'),(1093,'PansyNHExdh','$P$BM/I.NFkUUfKvTEGmCG.B7eUlwbmcA/','pansynhexdh','unwdlynfis@hotmail.com','','2014-04-09 20:04:31','',0,'PansyNHExdh'),(1094,'MariannSaiz','$P$BDus5X9ZKh4WmHMSxg5aj6BnxlI/i1/','mariannsaiz','indmmerkn@hotmail.com','','2014-04-09 20:51:24','',0,'MariannSaiz'),(1095,'CarmellaHansfor','$P$BPkbBrdDU9fGv30.csX/9a2swGHNeu/','carmellahansfor','champinen@hotmail.com','','2014-04-09 23:02:34','',0,'CarmellaHansfor'),(1096,'GUDSilkertelrg','$P$BnLcQKsUDOc4nC4XByTjp02TuvlZ46.','gudsilkertelrg','adeleyugu@hotmail.com','','2014-04-09 23:31:03','',0,'GUDSilkertelrg'),(1097,'KourtneSturgeon','$P$B4JmAEAQZW7TG01B86fnD1f36Tv0Gy.','kourtnesturgeon','hollyedn441@hotmail.com','','2014-04-10 01:45:35','',0,'KourtneSturgeon'),(1098,'FECCyrilyxevjiy','$P$BXIW15tIa3L/jWSS/4BLLZpiOZxoVy/','feccyrilyxevjiy','chantellesaz403@hotmail.com','','2014-04-10 02:10:17','',0,'FECCyrilyxevjiy'),(1099,'MinervaGranata','$P$B7ko1zSsNqtlrnbiBnJuHYVyJsBUwO.','minervagranata','binawocotus@hotmail.com','','2014-04-10 02:39:14','',0,'MinervaGranata'),(1100,'GNRJustine','$P$BcraiSzIpFgLKbk8L89O8by4ZH/TI71','gnrjustine','thearmatithe1980@t.pl','','2014-04-10 02:40:46','',0,'GNRJustine'),(1101,'ElviraMZNB','$P$BsBbp0iL8hLrD8Bk7h/O4QRfSVJblN.','elviramznb','bijahurinyce@hotmail.com','','2014-04-10 03:31:30','',0,'ElviraMZNB'),(1102,'LinFoelsche','$P$B1WhhMkdruaAXnemLs.bYap2wC.7gM0','linfoelsche','lirndareff@hotmail.com','','2014-04-10 05:22:31','',0,'LinFoelsche'),(1103,'AlishaDuCroz','$P$B0cIbDb.G3tKwVSwDybzizNAiCgLc80','alishaducroz','fernandehab781@hotmail.com','','2014-04-10 08:23:19','',0,'AlishaDuCroz'),(1104,'PercyEsmond','$P$BenMKTIkHBW8frViOrqUedF9oBmc.z.','percyesmond','exisvbresn@hotmail.com','','2014-04-10 08:58:48','',0,'PercyEsmond'),(1105,'WallaceHeine','$P$BU8X57XOJUDm.tU9xIhPo3NDbIwcfy0','wallaceheine','rusegehe1979@t.pl','','2014-04-10 09:00:09','',0,'WallaceHeine'),(1106,'AlbertaSteinfel','$P$BqslOrDsr2rPOswvGEtpg0FadPZCuu0','albertasteinfel','madeleinezyt354@hotmail.com','','2014-04-10 09:50:35','',0,'AlbertaSteinfel'),(1107,'IsabellB49','$P$Bh4OdsfQ3iXYR6ycWIyAL6w3i4Jplw0','isabellb49','zhoindley@hotmail.com','','2014-04-10 12:36:57','',0,'IsabellB49'),(1108,'LashawnExn','$P$BhUBCTbTh14stBuS24V6TanOGiKZAZ/','lashawnexn','ransiketh@hotmail.com','','2014-04-10 13:54:36','',0,'LashawnExn'),(1109,'DominicYGEA','$P$BrWGb3crnEB2WkeMMpiuQcRnmU8j4u1','dominicygea','ashleyhayes20259@outlook.com','','2014-04-10 15:25:59','',0,'DominicYGEA'),(1110,'ZackHeagney','$P$B90y.oO7nyjnKkEhReJ54QN6oYcCkH0','zackheagney','libbyrcj874@hotmail.com','','2014-04-10 16:39:46','',0,'ZackHeagney'),(1111,'MaudeSilver','$P$BUZJYOSEH6zcjaXpiqGTOnfq0gk38b0','maudesilver','jodichandler219@rediffmail.com','','2014-04-10 16:44:12','',0,'MaudeSilver'),(1112,'GayMontemayor','$P$BXn3RcsZM/CfEVbY/CeKhio9qfpc/z/','gaymontemayor','raleigh56klocke@outlook.com','','2014-04-10 18:47:11','',0,'GayMontemayor'),(1113,'JosefNguyen','$P$BO4ooYiiyo5toObu214gtwCmIw7Egj/','josefnguyen','michaaslp72@hotmail.com','','2014-04-10 19:16:09','',0,'JosefNguyen'),(1114,'LenaBright','$P$Bcw9sEGNJZl6vYJ1jmRoBsVHKXzx1M/','lenabright','shuntzries@hotmail.com','','2014-04-10 20:09:34','',0,'LenaBright'),(1115,'CollettAYQX','$P$BbUrG8R5cFaXISOMhEUGgq308F2h3w/','collettayqx','ngaelgrein@hotmail.com','','2014-04-10 20:31:25','',0,'CollettAYQX'),(1116,'DorrisLeibius','$P$B2DPLz.2F8l8MIOJhpwclVZXW7jsZh0','dorrisleibius','cathie0knilands@yahoo.com','','2014-04-10 22:08:52','',0,'DorrisLeibius'),(1117,'SabineDresdner','$P$Bs229f./.iL2TyhAVLGtXoSLxpoFdh1','sabinedresdner','joeroberts13949@outlook.com','','2014-04-10 23:07:05','',0,'SabineDresdner'),(1118,'EFHTobiasyu','$P$BNbdMtVaIj.Ff9ASvlQgdIBbUOMiRm1','efhtobiasyu','tobias-catani@netkiff.info','','2014-04-11 00:56:26','',0,'EFHTobiasyu'),(1119,'MargaretteKirkb','$P$BCStADsoZJSgE8EhoE1ZG96mw7my.80','margarettekirkb','nliakinmik@hotmail.com','','2014-04-11 03:36:13','',0,'MargaretteKirkb'),(1120,'Lurlene3385','$P$BkJfW1mkr/69jepil.OwgsZKfIqDC81','lurlene3385','satisfyingforesnldv@rediffmail.com','','2014-04-11 11:31:20','',0,'Lurlene3385'),(1121,'MauraBoucaut','$P$BaJdG5NreLvgM5.DLagxsG1jLSGJ7e0','mauraboucaut','gqueinerke@hotmail.com','','2014-04-11 12:23:23','',0,'MauraBoucaut'),(1122,'JeanettURA','$P$Bq1.OVZ6JVmIWkfnkPKY1hak6R0cfY0','jeanettura','barrysteenhoven59527@outlook.com','','2014-04-11 12:48:30','',0,'JeanettURA'),(1123,'BillieLeatherma','$P$Bv8i8cSJQJEo2LAsv7klB3LS4hpFSU0','billieleatherma','buccikwb@hotmail.com','','2014-04-11 15:36:36','',0,'BillieLeatherma'),(1124,'Ross36Tbtpvmcj','$P$BW3v2Oo27896R/usFToifWgRSffFE60','ross36tbtpvmcj','righteousglut5twp@abv.bg','','2014-04-11 15:48:17','',0,'Ross36Tbtpvmcj'),(1125,'ChassidSgu','$P$BX8B75CdEr4APmtrHEJdY/FglJB/z4/','chassidsgu','ehteltluywbzgdtkk44@hotmail.com','','2014-04-11 16:01:43','',0,'ChassidSgu'),(1126,'MikaylaHayner','$P$BEpGE6j.6oGKDYnXJSAS.YfSVQG3Yz/','mikaylahayner','wenonacfk124@hotmail.com','','2014-04-11 18:01:20','',0,'MikaylaHayner'),(1127,'ShellyBMGxto','$P$BYv36wVDmxtzphsPJTSnRncQR6OQpG.','shellybmgxto','shelly.trivett72@netkiff.info','','2014-04-11 18:40:12','',0,'ShellyBMGxto'),(1128,'LoreneAkeroyd','$P$B7/NGmXUwSJm.EPtom1OKvUD/HH3M1.','loreneakeroyd','aomerodeki@hotmail.com','','2014-04-11 20:37:47','',0,'LoreneAkeroyd'),(1129,'BonnyGerrard','$P$BD9KweqQloMoj2uVEZCwABOJWIxGvm.','bonnygerrard','bonny.gerrard15@netkiff.info','','2014-04-11 20:46:05','',0,'BonnyGerrard'),(1130,'Chasity91Z','$P$B5hZRdi4F.cJKgjbAMeZDqUv4EplgV0','chasity91z','uaninhous@hotmail.com','','2014-04-11 22:13:04','',0,'Chasity91Z'),(1131,'SusannaOQUV','$P$Bhz8AwFE9TRby0OLdOQso/CA6KYh1C0','susannaoquv','melissaadams13658@outlook.com','','2014-04-11 22:24:52','',0,'SusannaOQUV'),(1132,'RebbecaOleary','$P$BxIK9l0FqOWoslxesJ3P3BPOKyas4o/','rebbecaoleary','dakevoduhaw@hotmail.com','','2014-04-12 02:15:13','',0,'RebbecaOleary'),(1133,'BelenVarley','$P$BAb43QbL3OX7F5/i7AdhiDRd/L4khX/','belenvarley','raedtfe@hotmail.com','','2014-04-12 02:46:44','',0,'BelenVarley'),(1134,'ElwoodKrome','$P$Bs7JXcDt8NdNkkD49cdr7djgDTTDMX.','elwoodkrome','in5553bellows@hotmail.com','','2014-04-12 02:52:01','',0,'ElwoodKrome'),(1135,'EulaZiegler','$P$BqZ40tkWcR19I1JKs2nU6rVSJNqelZ0','eulaziegler','cappsagbt@hotmail.com','','2014-04-12 09:42:34','',0,'EulaZiegler'),(1136,'RobertLayman','$P$BuOGQAz3mut5uCoM5LpgXP2EucNH8v/','robertlayman','merrillhinkler@e-postkasten.de','','2014-04-12 19:43:36','',0,'RobertLayman'),(1137,'Dawna24Kiqw','$P$BemezbVEOVbnbWjPd1BrddwE4ZMXNI1','dawna24kiqw','flawlesssavior6ziu@abv.bg','','2014-04-12 20:11:04','',0,'Dawna24Kiqw'),(1138,'Omer4646lbrj','$P$Bae87LUxl/.LDaj4CJnIsDpNHdyP8z/','omer4646lbrj','jinschied@hotmail.com','','2014-04-12 21:19:48','',0,'Omer4646lbrj'),(1139,'OdessaS70dmd','$P$BCCpimTmzUZldbPQx7kyQCwFNopTXD/','odessas70dmd','jaonscaw@hotmail.com','','2014-04-12 21:49:03','',0,'OdessaS70dmd'),(1140,'LeonelW38kkwwp','$P$BaQquPqMa7QnAxBxLtXQ/eS7ociauS0','leonelw38kkwwp','statuesquephobi6g@abv.bg','','2014-04-12 22:24:01','',0,'LeonelW38kkwwp'),(1141,'SuzetteW28','$P$BUqrJ4MjEQ1rc6gnx7iEOq2EZHeVdQ1','suzettew28','zaitersrora1977@t.pl','','2014-04-13 01:07:36','',0,'SuzetteW28'),(1142,'GrazynaCavazos','$P$BclfzfKOGyFPIXsSeO9dTXjVILaf6p0','grazynacavazos','nodofyjuqisy@hotmail.com','','2014-04-13 01:24:23','',0,'GrazynaCavazos'),(1143,'JillianValles','$P$BWOC572FlbjPw6Dl5jjvjkGmvq4LLq0','jillianvalles','qurytaridihe@hotmail.com','','2014-04-13 01:43:08','',0,'JillianValles'),(1144,'JohannaMerryman','$P$BBv54cY6i2gzqVFfqi0OWzgGQ9KzOJ/','johannamerryman','weranohozax@hotmail.com','','2014-04-13 04:34:09','',0,'JohannaMerryman'),(1145,'VanessaHulsey','$P$BswGoR4jNW76CsBCUQAOg0MC2vOWbr/','vanessahulsey','englodeau@hotmail.com','','2014-04-13 05:07:59','',0,'VanessaHulsey'),(1146,'BillieLoughman','$P$BMS6L1ba3nz3z/R9l5TuG4oXIDAAEq/','billieloughman','songuzwc@hotmail.com','','2014-04-13 05:15:35','',0,'BillieLoughman'),(1147,'VelvaSchmella','$P$BEsgzOs/nJgFhXGRERLxB8V8OZwp900','velvaschmella','kateswjd@hotmail.com','','2014-04-13 06:09:32','',0,'VelvaSchmella'),(1148,'LelandHumphries','$P$B4.Tp2JsOFOLqhyNLgtIC7ZwUJm3yg0','lelandhumphries','leesaeji@hotmail.com','','2014-04-13 08:05:58','',0,'LelandHumphries'),(1149,'BrianneDDZN','$P$BQhGMSJ95XvfdVhKfs.vqxjRBU9YNF/','brianneddzn','doveraktp@hotmail.com','','2014-04-13 10:27:48','',0,'BrianneDDZN'),(1150,'CandaceB45','$P$B9PKq9fVn83T.xdp6CkoGEI1iyt0.M0','candaceb45','joaneqq@hotmail.com','','2014-04-13 11:44:41','',0,'CandaceB45'),(1151,'BroderickLoflan','$P$B7AH386A6q4ZYsjSvNbYqWlAfQy0tO.','broderickloflan','broderick_lofland43@b.maybebest.com','','2014-04-13 18:10:00','',0,'BroderickLoflan'),(1152,'AndersoVPI','$P$ByfcpDSfDnlRS8Aw9ebTEfgKF0Ue70/','andersovpi','upeinfries@hotmail.com','','2014-04-13 18:14:59','',0,'AndersoVPI'),(1153,'DawnaTKNDihqo','$P$BIY5A7yUbCYcZm9pKygIZ4uvaK.jov/','dawnatkndihqo','dawna-horvath@icisnet.org','','2014-04-13 20:50:06','',0,'DawnaTKNDihqo'),(1154,'Tuyet5289c','$P$Be0XL.7IuxD2rqdxgv8a60DztKAiZm.','tuyet5289c','fejofaromuqe@hotmail.com','','2014-04-13 22:12:22','',0,'Tuyet5289c'),(1155,'RoxannaRegister','$P$BQnVF52W0x9dghcTdxPqZWOoyjFRfg/','roxannaregister','inmanfbuq@hotmail.com','','2014-04-13 22:48:32','',0,'RoxannaRegister'),(1156,'Tirgamil','$P$BtQgG.OkMi3CjK5rOCmHsVP8zJT8Ij/','tirgamil','bulsarus@yandex.com','','2014-04-13 23:14:51','',0,'Tirgamil'),(1157,'SaraLockhart','$P$BtQVM3KUorRFws9o0V3yn8hsAluvEp1','saralockhart','inxdtrelat@hotmail.com','','2014-04-14 04:37:25','',0,'SaraLockhart'),(1158,'PLDNafilnoqdvsr','$P$BBvhBbB0DpDTMjTS51n2UEopDilrt8/','pldnafilnoqdvsr','mcclainnrxlcyq@live.com','','2014-04-14 05:05:40','',0,'PLDNafilnoqdvsr'),(1159,'KarolynBrownrig','$P$B2VsyfjZXWvLpUp8x2u82RkTSi1hWR0','karolynbrownrig','dentiticoo1989@t.pl','','2014-04-14 06:19:37','',0,'KarolynBrownrig'),(1160,'RobertOt','$P$B0N4WfHG.ha8Vi89ubaAJDPyIJ4MSM1','robertot','mymusic@wegas.ru','http://mymusicmy.ru','2014-04-14 06:45:05','',0,'RobertOt'),(1161,'MorrisGrubbs','$P$BUOpA3JYIlhnvcxSj5b/PBNWlDtrJ11','morrisgrubbs','zellagribble@spambog.com','','2014-04-14 11:59:03','',0,'MorrisGrubbs'),(1162,'NeummaBex','$P$BhelFVkaNR1IK1zQ1FnWc1Ug5ZHhBs.','neummabex','AccivaLyday@copymanprintshop.com','','2014-04-14 14:29:31','',0,'NeummaBex'),(1163,'EmersonFison','$P$B7VVBX.MKJ6ZyVUzxSscwBw0WHyr0h0','emersonfison','lynellhypes1542@spambog.com','','2014-04-14 14:55:57','',0,'EmersonFison'),(1164,'TommyP','$P$B2ugqqmu.WBMRAJWe4pUxOO9Fam6.X1','tommyp','tommy692@hotmail.com','','2014-04-14 18:36:45','',0,'TommyP'),(1165,'RosettaBarden','$P$BiCC6tAkCH3kASrcUbMf/mqtJjNAIr1','rosettabarden','peggylawler95036@outlook.com','','2014-04-14 19:50:58','',0,'RosettaBarden'),(1166,'AdrieneWolfgram','$P$BzLQClt99u7QEXIwepC2cBwFD0zENx1','adrienewolfgram','saulxak@outlook.com','','2014-04-14 21:50:17','',0,'AdrieneWolfgram'),(1167,'IzettaHillen','$P$BrsaJTFnWQaLevzXZR9AkeaDtWSZCV1','izettahillen','saciqefazij@hotmail.com','','2014-04-15 01:14:09','',0,'IzettaHillen'),(1168,'Heidi2668hh','$P$BZEw/huLiMNhkKDtL60jUVCu0YiuX11','heidi2668hh','hiramnu@hotmail.com','','2014-04-15 03:38:57','',0,'Heidi2668hh'),(1169,'RefugiaChamberl','$P$Brrx0sxYh6fgAl07Lq9Xau3rEfDjHh/','refugiachamberl','khadijahcpa067@hotmail.com','','2014-04-15 04:42:50','',0,'RefugiaChamberl'),(1170,'LeahTurkqjpwddi','$P$B1i/X69jSIsVPwjxLKx/.utFsazzdg/','leahturkqjpwddi','anzmonsebb@hotmail.com','','2014-04-15 05:45:35','',0,'LeahTurkqjpwddi'),(1171,'Aaliyah5643','$P$ByQki0xGxKtzxIGh1wQwHWNkgO0D8k0','aaliyah5643','stephaniebraaten55852@outlook.com','','2014-04-15 07:52:52','',0,'Aaliyah5643'),(1172,'JeannaChen','$P$Bg38OqV6//SymKx1ltFkVuPIeDNKRK.','jeannachen','hobikyvyrar@hotmail.com','','2014-04-15 09:24:14','',0,'JeannaChen'),(1173,'BelenAmundson','$P$B0tsiA24pFVwHohU2J4O6RvriwuP1C.','belenamundson','love.lumia@o2.pl','','2014-04-15 12:27:47','',0,'BelenAmundson'),(1174,'AnnabelDUZ','$P$Bm/oerq8zuy6Bnqtpo/EF4AUB6qN/..','annabelduz','levelradical164xd@librans.co.uk','','2014-04-15 13:32:24','',0,'AnnabelDUZ'),(1175,'Oubec1266agkx','$P$BZCgCM7okLyrW0fox2ywmbSSOcQ243/','oubec1266agkx','mcclainnpu5t0c@live.com','','2014-04-15 13:49:03','',0,'Oubec1266agkx'),(1176,'HoraceAuld','$P$BYB5SpQft5Kwx9ci1bv2nRsv2VMX1A1','horaceauld','mohamedmccold74183@outlook.com','','2014-04-15 15:56:46','',0,'HoraceAuld'),(1177,'KatriceSheppard','$P$BDlaqxf6JU3wnYh0o2DwmQOyJIK6Dm0','katricesheppard','katrice.sheppard23@webkiff.info','','2014-04-15 16:42:49','',0,'KatriceSheppard'),(1178,'NPOTracyikfli','$P$BojEFGPTtLLdAKhvELvVbWEiNTTap20','npotracyikfli','hectorgibson94219@outlook.com','','2014-04-15 17:11:42','',0,'NPOTracyikfli'),(1179,'jbxyrrat','$P$BH7sgXCq4GhpJ83mbSQCR3Q1gM8/Pa0','jbxyrrat','angellovebeautifullol@gmail.com','','2014-04-15 17:21:53','',0,'jbxyrrat'),(1180,'harleyburnett3104','$P$BZJBqTp..ZFCUI75IiCBFgMv8XSKFG0','harleyburnett3104','terrex91@yahoo.com','','2014-04-15 17:57:12','',0,'harleyburnett3104'),(1181,'AdrieneGAOY','$P$Bs2mQhZmRTgxWhMNSfz9o7uUHbzlUI0','adrienegaoy','stephaniaqjt315@hotmail.com','','2014-04-15 18:01:06','',0,'AdrieneGAOY'),(1182,'TamikaPDUbhg','$P$BhuQOlZZslEkLV0dL5FiA.K1bg6SAW0','tamikapdubhg','aohubowcym@hotmail.com','','2014-04-15 18:08:14','',0,'TamikaPDUbhg'),(1183,'GerardRowcroft','$P$BzSaq8VoqR7etXwSsbN96FdyY3Eyk81','gerardrowcroft','seobopodesc1975@t.pl','','2014-04-15 20:48:53','',0,'GerardRowcroft'),(1184,'NKARalfqlhvghb','$P$B/FYraExoVsfCUTiDiCZ76N/dLww7P1','nkaralfqlhvghb','live.long@o2.pl','','2014-04-15 23:16:20','',0,'NKARalfqlhvghb'),(1185,'DouglasBtm','$P$BuHHfI02De9oSoyzPpcErQXJ0WwO7F0','douglasbtm','yandeakin@hotmail.com','','2014-04-16 01:15:14','',0,'DouglasBtm'),(1186,'LasonyaWakelin','$P$BYkKBlR1BrKhPvjx2Yd4UIx0YtL1vl.','lasonyawakelin','gepacabapek@hotmail.com','','2014-04-16 02:58:32','',0,'LasonyaWakelin'),(1187,'ZTQJermain','$P$B8KBR/QCCyFM0tLKnbT2QD0Ze.HB650','ztqjermain','michaelsalhab14083@outlook.com','','2014-04-16 04:40:28','',0,'ZTQJermain'),(1188,'BernadetteAgnew','$P$BiViWLavkjuvbYgGV8DqM6ZL66y/Y91','bernadetteagnew','jessionn614@hotmail.com','','2014-04-16 05:31:03','',0,'BernadetteAgnew'),(1189,'KendallMcMurtry','$P$Be2M4RMdcQUvIBYUSgUNikIsoR3Q15.','kendallmcmurtry','kendall-mcmurtry@webkiff.info','','2014-04-16 06:28:57','',0,'KendallMcMurtry'),(1190,'DeclanHorne','$P$BM8OqnsMpPTaLE.1f8.VqG78yrJDOc.','declanhorne','tosuqorikot@hotmail.com','','2014-04-16 07:42:48','',0,'DeclanHorne'),(1191,'Elane46Dblvqqqo','$P$BxzERcrkC6jF1hWVUcn3rRsC7Io8QL/','elane46dblvqqqo','slowadult75tpvkp@nokiamail.com','','2014-04-16 08:34:41','',0,'Elane46Dblvqqqo'),(1192,'pawel24kfj','$P$BlVvA6aZSdUPr6tXB/vn9r25KViDWb/','pawel24kfj','claudette_marlow52@chillievents.pl','','2014-04-16 18:32:33','',0,'pawel24kfj'),(1193,'DaniellLangan','$P$BnHWPrpi4imqdL71YpPauU6uPdcekP/','danielllangan','savoyyyuy@hotmail.com','','2014-04-16 19:41:45','',0,'DaniellLangan'),(1194,'Louisa1068','$P$BjCxg5Zp1q030fjzog1INNBhQ5FmRK0','louisa1068','ozhlippyco@hotmail.com','','2014-04-16 20:36:39','',0,'Louisa1068'),(1195,'Brandi59Ati','$P$BxOjW.YoJhYmzuqelKfisMcxZNxXU3/','brandi59ati','gerhard@ditax.pl','','2014-04-16 23:21:57','',0,'Brandi59Ati'),(1196,'AntoineMcMillan','$P$B7JzCh/PPqaZM1vb/Pi0YZyIciKnyN0','antoinemcmillan','weirfeca@hotmail.com','','2014-04-17 00:06:22','',0,'AntoineMcMillan'),(1197,'CathleeGoodsell','$P$BiJUFyDARBZFdOLjgdv12JXJkm5OL60','cathleegoodsell','nxiiganreb@hotmail.com','','2014-04-17 09:22:41','',0,'CathleeGoodsell'),(1198,'MadelaiVtd','$P$BUQK2tO.TPlKiDIocJTz0JqC/DAQXE/','madelaivtd','magisewomon@hotmail.com','','2014-04-17 11:33:45','',0,'MadelaiVtd'),(1199,'KaiH35atgtk','$P$BIIVBHrp9enMMCPT.p1uTOtDGFx2ks.','kaih35atgtk','soboduzuqul@hotmail.com','','2014-04-17 11:52:50','',0,'KaiH35atgtk'),(1200,'Haroldsax','$P$Bm9pr175qMvi7zNimuJW3mMYgDospP0','haroldsax','paikrissw@hotmail.com','','2014-04-17 14:06:52','',0,'Haroldsax'),(1201,'mrjcccsy','$P$BtbgsjoeTMi6hzKm0nuGG7SYOnEy3x1','mrjcccsy','elaineg.zielinski@hotmail.com','','2014-04-17 17:13:06','',0,'mrjcccsy'),(1202,'MellissG44','$P$By/fH.5Wx/AGDoGC2FDyy8jZndjR6t0','mellissg44','mellissa_montague@zaq321.com','','2014-04-17 17:58:31','',0,'MellissG44'),(1203,'GGAMichell','$P$B9sbIjFupCCTG4WS7AkP21/TeodLL2/','ggamichell','brandirodriguez79767@outlook.com','','2014-04-17 19:59:37','',0,'GGAMichell'),(1204,'DorthyChappell','$P$BkqNQfa5Coa7UQTCdvW/bS/LNTDwPa1','dorthychappell','xawakykotyke@hotmail.com','','2014-04-17 20:42:40','',0,'DorthyChappell'),(1205,'Gwendol74K','$P$BmT9aBIsSlt5.v5K1q2w1k4.eBPgRV0','gwendol74k','ludhoreyc@hotmail.com','','2014-04-17 20:50:38','',0,'Gwendol74K'),(1206,'ValenciEsr','$P$BAtdzeGq8jhrrjYNl2lVgb7XzgIflZ1','valenciesr','valencia-sleigh@icisnet.org','','2014-04-17 22:33:06','',0,'ValenciEsr'),(1207,'EarnestineBroin','$P$B/.buGift50fxy1UfUZReOX08sH3ji0','earnestinebroin','earnestine-broinowski@b.maybebest.com','','2014-04-17 23:56:41','',0,'EarnestineBroin'),(1208,'RachaelHouchins','$P$BIKGnfGUrw6cgGzbBet5YrfrLhs1QJ/','rachaelhouchins','kiliruguceky@hotmail.com','','2014-04-18 00:18:08','',0,'RachaelHouchins'),(1209,'ForrestCaudle','$P$BaF8mooiTIF4Rt1qVLV1gOfqW8vGzc.','forrestcaudle','eshavisste@hotmail.com','','2014-04-18 03:46:02','',0,'ForrestCaudle'),(1210,'ShaunaP76whfjxl','$P$BPp1JFev.cGDIRqbaPvWs.GmfgjpBL1','shaunap76whfjxl','gorgoniusz@ditax.pl','','2014-04-18 06:04:19','',0,'ShaunaP76whfjxl'),(1211,'ficybijf','$P$BhzpAAA8CKOQIzTDPJm.XqCHYw9Etl1','ficybijf','elizbethwhs052@hotmail.com','http://www.latest-jobs.co.uk/nike-free-run/','2014-04-18 07:49:42','',0,'ficybijf'),(1212,'zvfgdkvco','$P$BKCet6dacqc0NrM3PBt5jBGPqRkhIE/','zvfgdkvco','zgqzoj604188@hotmail.com','','2014-04-18 07:57:05','',0,'zvfgdkvco'),(1213,'usngcqyak','$P$B9eAWEUpp/02q5TRO.4uXtDbxYvEbo.','usngcqyak','kxuueq197374@hotmail.com','','2014-04-18 07:57:11','',0,'usngcqyak'),(1214,'ElsaCoombs','$P$BHj083xstTaa49p8hs9JW2y4kM.DRF0','elsacoombs','hipckefoo@hotmail.com','','2014-04-18 08:26:29','',0,'ElsaCoombs'),(1215,'SusieKoonce','$P$BwdcFSD2ruBvO7d9LH1cSRzxq8H1Qb1','susiekoonce','orrisdzb@hotmail.com','','2014-04-18 09:10:54','',0,'SusieKoonce'),(1216,'TatianaMartel','$P$B7VghXlib2aJHYAWsNI0/gEC6hFUBV0','tatianamartel','heppswkg@hotmail.com','','2014-04-18 09:14:13','',0,'TatianaMartel'),(1217,'lesleyqp1','$P$BHxLN0/bp.YZwvQ.fPQZQzf75domsz1','lesleyqp1','beulahko7@account.post.blognet.in','','2014-04-18 14:09:04','',0,'lesleyqp1'),(1218,'EDZShaynavzbiee','$P$B1GgNC5GbvvZKaqlRevmvBV38.Mt1..','edzshaynavzbiee','fallsgxpcg@yahoo.com','','2014-04-18 14:53:36','',0,'EDZShaynavzbiee'),(1219,'DylanGreener','$P$BMxELbJnSCwPJksgxZoQ10v0QdzUgb/','dylangreener','niakasprz@hotmail.com','','2014-04-18 15:47:49','',0,'DylanGreener'),(1220,'LinoFtnodfyln','$P$Bb69MflnQtMTdUTBruEerYX2/smpoB/','linoftnodfyln','gedeqanevyme@hotmail.com','','2014-04-18 15:54:51','',0,'LinoFtnodfyln'),(1221,'BQWWalterxcjzd','$P$BEY8nuZl3vbVZs5LjrIOiEbFVW7JWV1','bqwwalterxcjzd','obsequiousfathex4b@abv.bg','','2014-04-18 17:57:47','',0,'BQWWalterxcjzd'),(1222,'BoyceLearrhmsf','$P$BJucCwyLw5TTt7YDryI5gmpi6cVQ741','boycelearrhmsf','yuynticel@hotmail.com','','2014-04-18 23:05:28','',0,'BoyceLearrhmsf'),(1223,'CoreyGdybndw','$P$BzxozEWhdUt.X5FW.pkZFe/qwuWYbc1','coreygdybndw','wenaidtgdn@yahoo.com','','2014-04-18 23:43:00','',0,'CoreyGdybndw'),(1224,'CollettWaterwor','$P$BdaT1VnzNlP28uWAIs/XcgHlceOCCa/','collettwaterwor','liapakesci@hotmail.com','','2014-04-19 00:18:55','',0,'CollettWaterwor'),(1225,'ArthurMatamoros','$P$BVA40pM5mxbeVhUz/vNsv4UCczZCCq/','arthurmatamoros','wokiqatiqok@hotmail.com','','2014-04-19 07:13:07','',0,'ArthurMatamoros'),(1226,'FaustinIng','$P$BG8600owEgSHrgrFmh.ulv3yTRCg4n1','faustining','iaokerbal@hotmail.com','','2014-04-19 12:43:08','',0,'FaustinIng'),(1227,'ArnulfoBarralli','$P$B/zrKE1Fhf4aW23UKxHe3oLQ.SwT4M0','arnulfobarralli','arnulfo-barrallier61@icisnet.org','','2014-04-19 13:52:31','',0,'ArnulfoBarralli'),(1228,'Christopherftt','$P$BlvuI1lQEMgbw5e0seOrshaCLCUvsU/','christopherftt','blog@sauny24.com','','2014-04-19 18:29:15','',0,'Christopherftt'),(1229,'JeffreyLonergan','$P$BjkcL/Il41Qn8ER5xvAKN0C/JaUG2K1','jeffreylonergan','jeffrey_lonergan71@b.maybebest.com','','2014-04-19 19:49:34','',0,'JeffreyLonergan'),(1230,'GloryM32orx','$P$BdNxrIQkF5i0Q5G9SxZgC4GZkXt1th1','glorym32orx','glory-mortlock78@netkiff.info','','2014-04-20 03:36:02','',0,'GloryM32orx'),(1231,'MilfordMartino','$P$Bomk9WX.Nr4F6qNaGMNDGugHbozA/J1','milfordmartino','ngaauerruy@hotmail.com','','2014-04-20 07:29:54','',0,'MilfordMartino'),(1232,'Robertrax','$P$BT6hDtlPVb.0OpkWTewIIn87V/H/Je1','robertrax','buwakagexyca@hotmail.com','http://onlinesmpt200.com','2014-04-20 08:27:48','',0,'Robertrax'),(1233,'MaryannGOJW','$P$BsMqe5sKVJm3sAaQ1sXOTgj/gsA/IP1','maryanngojw','hoperuiz86891@outlook.com','','2014-04-20 14:41:01','',0,'MaryannGOJW'),(1234,'IngeborgGarland','$P$B599qxrLMCcM.26m18sCYCmo.7R5dP1','ingeborggarland','beckycck@hotmail.com','','2014-04-20 19:23:22','',0,'IngeborgGarland'),(1235,'VedaTallkni','$P$BmTj5Gydyw/6N9Uxlh9qINQTzSuz92.','vedatallkni','veda_tall83@icisnet.org','','2014-04-21 01:52:07','',0,'VedaTallkni'),(1236,'KenSwanson','$P$B0FwNODJh/wxYyNJ6mVh4lk/YgSteI.','kenswanson','nguyenalhammad27051@outlook.com','','2014-04-21 07:26:07','',0,'KenSwanson'),(1237,'JacelynSturm','$P$B7jGA2OiIShffTykAtTkW/wHmK6Sj00','jacelynsturm','fgtrhjtyukgwrt@wp.pl','','2014-04-21 14:19:21','',0,'JacelynSturm'),(1238,'michaelsjun','$P$BrzyJIOccK6Lhrg3VScsTIxrckGa6Q.','michaelsjun','embarkee@hotmail.com','http://www.google.com/','2014-04-21 14:59:54','',0,'michaelsjun'),(1239,'LinwoodMendenha','$P$BTqXIO/XCmItqr2z1px3SBgWnaETHW1','linwoodmendenha','jacques2047dempsey@hotmail.com','','2014-04-21 15:01:25','',0,'LinwoodMendenha'),(1240,'HarrisShepard','$P$BSfppijpTGhMieHSjilDzb6A2dDSqt1','harrisshepard','xiurajews@hotmail.com','','2014-04-21 15:30:33','',0,'HarrisShepard'),(1241,'SondraStLeon','$P$B3wS.RoGVC9Ty9M/.MKLpf6bfsiqCa.','sondrastleon','zaooffred@hotmail.com','','2014-04-21 17:06:58','',0,'SondraStLeon'),(1242,'UnaGHDJtfkhyd','$P$BgoBRF16zT.02SdidbjSUE9KPHaju30','unaghdjtfkhyd','ochmspatal@hotmail.com','','2014-04-21 17:35:50','',0,'UnaGHDJtfkhyd'),(1243,'BlancaJtzd','$P$BBwGd1p4MhBvs.m4aWV20rhnb.hjlP0','blancajtzd','zairapinh@hotmail.com','','2014-04-21 21:14:45','',0,'BlancaJtzd'),(1244,'aozhhydiai','$P$BpcpdGT7clzB1W1HlES8oDewaAxnwD1','aozhhydiai','tobuyjerseys@gmail.com','http://www.elitenfljerseys.us/jerseys.php?id=67','2014-04-21 22:19:01','',0,'aozhhydiai'),(1245,'MakaylaBraley','$P$Brk0tsE9N6FgHGnvxRYkwxiamkDjVs0','makaylabraley','leonora85868@hotmail.com','','2014-04-21 22:19:24','',0,'MakaylaBraley'),(1246,'LorrainBarak','$P$B0/TU9/pP/m7ki6U55HP24C.yzXedT/','lorrainbarak','waxtrynin@hotmail.com','','2014-04-21 22:35:44','',0,'LorrainBarak'),(1247,'ArmandoMuncy','$P$BOzfqjpGU/NjbY1.IXNRtMdrJnIITS.','armandomuncy','amucknominee58e4ff8@abv.bg','','2014-04-22 05:53:00','',0,'ArmandoMuncy'),(1248,'RobertaPedersen','$P$BPMwIlj7Hjj9TBD4r8zkjOQpJUgef70','robertapedersen','ongthadybu@hotmail.com','','2014-04-22 08:45:57','',0,'RobertaPedersen'),(1249,'AugustSoutherla','$P$Bl0QNjfL/x2mJtEZ7j.mvgo3iSfqZ./','augustsoutherla','sengcan@hotmail.com','','2014-04-22 08:49:15','',0,'AugustSoutherla'),(1250,'EzequieAmos','$P$BxQWTJXUGprVcGG/XDJVR2eAIF1yPf0','ezequieamos','ezequiel.amos75@icisnet.org','','2014-04-22 09:38:53','',0,'EzequieAmos'),(1251,'julka87ubw','$P$BI2EpBDl4a7u3/ayuAlF.iWVoEnNXq0','julka87ubw','terrell.stansbury@piomir.pl','','2014-04-22 23:35:08','',0,'julka87ubw'),(1252,'huangzvy','$P$Bjg8arbcGQWc7kGIrI0NWCsF68650T/','huangzvy','ldiabdn@hotmail.com','','2014-04-23 10:57:30','',0,'huangzvy'),(1253,'Blythe36Ws','$P$BAyjHXQbD/iX1OYlC33T3oId9w4pJB1','blythe36ws','ubiquitouscrookp@gmx.us','','2014-04-23 15:18:35','',0,'Blythe36Ws'),(1254,'EveMerrick','$P$BZY028nsyLoUEGF6ldC.iAiWWisSkx1','evemerrick','sylviarvc823@hotmail.com','','2014-04-23 15:52:00','',0,'EveMerrick'),(1255,'BraydenHmz','$P$B/e.PaZ7WKFxP4tYMX4iRXdc9w9TPe0','braydenhmz','pjfcxgb7pp@aegis-conference.eu','','2014-04-23 18:14:42','',0,'BraydenHmz'),(1256,'gjdsqotp','$P$B7qiLpoA7bo7rWz03BiQA1qGN68O.M0','gjdsqotp','helgamyron@hotmail.com','','2014-04-23 21:28:12','',0,'gjdsqotp'),(1257,'RandiHuonDeKerm','$P$BXWS7xpUdOQWgAPQeagHemwK0CUx.J0','randihuondekerm','pedrito.salvaje@gmail.com','','2014-04-24 08:52:51','',0,'RandiHuonDeKerm'),(1258,'BiancaKeeney','$P$Br3ddVhGzbWXq1QSFZAoSDRMeQfP1V1','biancakeeney','jameedawhy94@gmx.com','','2014-04-24 08:59:53','',0,'BiancaKeeney'),(1259,'FelixJustice','$P$B7I71yswzMI0tVRfNAKgUK5w.hMLHO1','felixjustice','felix-justice73@zaq321.com','','2014-04-24 13:19:15','',0,'FelixJustice'),(1260,'NicholaEDQ','$P$BMky.vCJ15w4mzyKHDThrdZbTTEaCZ0','nicholaedq','davewolf20820@outlook.com','','2014-04-24 17:59:42','',0,'NicholaEDQ'),(1261,'RhysShannon','$P$Bom02La0o9laaI.S0ggIH24.v8CGZi.','rhysshannon','denniswaters53938@outlook.com','','2014-04-24 20:14:50','',0,'RhysShannon'),(1262,'WilliamP97','$P$BueWSicA1YfgvN/l0DporW/DQANgn81','williamp97','hurtfireman405@hotmail.com','','2014-04-24 21:39:10','',0,'WilliamP97'),(1263,'NigelAOCWpbmh','$P$BRAaWGsMMSBcUH0PbHZojbPTU5qbFN/','nigelaocwpbmh','aighitekes@hotmail.com','','2014-04-24 22:31:14','',0,'NigelAOCWpbmh'),(1264,'Verona02Ucjxi','$P$BfM6zPXbN4FwXyIvxm6vIpC9s0Jv8J.','verona02ucjxi','verona-aguilera49@webkiff.info','','2014-04-24 23:37:58','',0,'Verona02Ucjxi'),(1265,'RosariaZom','$P$BMKpCpeNol/Xrro6VJiG52KWNRqKf11','rosariazom','ngxoghairk@hotmail.com','','2014-04-25 02:59:47','',0,'RosariaZom'),(1266,'Arthurmeft','$P$B3HNXhSxu2ytbtaLGar9pTQPU6P3Jy0','arthurmeft','hrcwjb@brassband2.com','http://www.1sekken.com','2014-04-25 04:10:16','',0,'Arthurmeft'),(1267,'Azfagovc','$P$Bu.pSU6sW7cQcYaRvlq9UQnQqralSf0','azfagovc','f1tm3w1u@n.wholesalejerseyssupports.com','','2014-04-25 04:43:37','',0,'Azfagovc'),(1268,'LeeSU','$P$BTzgNlmGPX7orcKqVyCxNfWvAbhVGu0','leesu','leesupkk@gmail.com','http://oakley.atshop.biz/','2014-04-25 05:22:23','',0,'LeeSU'),(1269,'IsabellSaulsbur','$P$B/vHZvaW41/74qjuWwdNXWOsjxocTk0','isabellsaulsbur','nancylarsen77824@outlook.com','','2014-04-25 08:45:50','',0,'IsabellSaulsbur'),(1270,'TheoHalsey','$P$BCnEhVrYS/AbG8OGj3Y30y4Ve6e.fw1','theohalsey','barrynewberry15610@outlook.com','','2014-04-25 09:33:09','',0,'TheoHalsey'),(1271,'MikkiRyabaum','$P$BPy1bb/dH.Y3gJ/R4iAqAa.J0ELn3H.','mikkiryabaum','minburckh@hotmail.com','','2014-04-25 10:33:07','',0,'MikkiRyabaum'),(1272,'MiguelMurdock','$P$BvaTxHMtatCQqY/Ow6xcInW87klpJs0','miguelmurdock','xiybbetses@hotmail.com','','2014-04-25 10:54:46','',0,'MiguelMurdock'),(1273,'AlexandFoelsche','$P$B69iuFAFrqFfbzeHvbhBjHXbzPteLR.','alexandfoelsche','smoothamount519@hotmail.com','','2014-04-25 11:43:19','',0,'AlexandFoelsche'),(1274,'MartaBeardsley','$P$BKPYIJKssbbp6vFDKFBwvCEtyr/amW/','martabeardsley','marta_beardsley90@d.maybebest.com','','2014-04-25 12:28:56','',0,'MartaBeardsley'),(1275,'Patrici4499','$P$B.OQ94qscqEgfwPML4hmUufoggUnEM/','patrici4499','patricia.dionne49@webkiff.info','','2014-04-25 13:29:55','',0,'Patrici4499'),(1276,'CaitlinBowe','$P$BbtnaAS7XJ8TvhigsgpEKzK7JId3lS/','caitlinbowe','nbiczerape@hotmail.com','','2014-04-25 14:53:02','',0,'CaitlinBowe'),(1277,'AleidaCmlxf','$P$Bc0E0cShyfC8aHRboe7lPafrYvOu.y/','aleidacmlxf','barbaguilar86167@outlook.com','','2014-04-25 14:54:20','',0,'AleidaCmlxf'),(1278,'ChantalArriaga','$P$BmvFmXnI/Cj7OPOsgBWL3c9xo3B6ud/','chantalarriaga','aidcoopta@hotmail.com','','2014-04-25 15:04:09','',0,'ChantalArriaga'),(1279,'Alma3230vgczdaj','$P$B.0s8SNoR4SAk2PAssoevLbee7oHF8.','alma3230vgczdaj','jueburlis@hotmail.com','','2014-04-25 16:15:49','',0,'Alma3230vgczdaj'),(1280,'LovieBoyle','$P$BsiV7qtMPJrfMFd5iLLciMhoDZRsxS.','lovieboyle','dwaynegray27150@outlook.com','','2014-04-25 16:36:37','',0,'LovieBoyle'),(1281,'KJRKathiou','$P$B5Lvqa3Cc2ImmVstr5MVrKxM7RkU6a0','kjrkathiou','markpatel96016@outlook.com','','2014-04-25 17:19:44','',0,'KJRKathiou'),(1282,'DarnellB41','$P$BDRnYZG6oIm39QAUt88fh2OQkUrKqF.','darnellb41','cijeirean@hotmail.com','','2014-04-25 19:42:19','',0,'DarnellB41'),(1283,'TammiScott','$P$B2HAzBmf.HOSsr5j.0X683t20BrFLU1','tammiscott','hapuyssep@hotmail.com','','2014-04-25 23:38:59','',0,'TammiScott'),(1284,'JCUHolleyyxph','$P$B0Px4HXDpJrOh/xhttwJszs8eyP6hx/','jcuholleyyxph','holley-roark@recupemail.info','','2014-04-25 23:42:45','',0,'JCUHolleyyxph'),(1285,'Lydiazfllo','$P$BJ53.VcW3CeUwdLOWBE26H/oPlz3rz1','lydiazfllo','sdvbntrj5j5@wp.pl','','2014-04-26 02:03:19','',0,'Lydiazfllo'),(1286,'75GregoryE','$P$BwknFaTTdEwVdkErzUZqyO3iEIVeWx0','75gregorye','ogregory958@hotmail.com','','2014-04-26 07:15:46','',0,'75GregoryE'),(1287,'DollyAKCysnth','$P$BMYyaujfvHTLMxQf4ZW0BSYj/y5ty31','dollyakcysnth','ndallitwee@hotmail.com','','2014-04-26 08:41:48','',0,'DollyAKCysnth'),(1288,'FedericLafleur','$P$B.3HYJUd39bDtjdwwMk.yfTWDm52np1','federiclafleur','jasonmaier43949@outlook.com','','2014-04-26 17:18:03','',0,'FedericLafleur'),(1289,'DarioRYBIajy','$P$BiVgtXytBuTmVHVsXYdzLjODOVtgHJ0','dariorybiajy','gl.ori.a.co.o.k.8.1.13@gmail.com','','2014-04-26 18:03:33','',0,'DarioRYBIajy'),(1290,'BrigidaK38','$P$BVT.P8T/lX0/j4xUsC.eVZvdoPAofj.','brigidak38','adammalysz@b-finanse.com.pl','','2014-04-26 18:21:35','',0,'BrigidaK38'),(1291,'LandonSnoddy','$P$BzmgeF/0gHYsmElfVkMyedfXmngJ4u.','landonsnoddy','tenderwaves365@hotmail.com','','2014-04-26 22:09:12','',0,'LandonSnoddy'),(1292,'MadieHallyzmwx','$P$BbUSdqqVhH2tOgWf3IaOML.J5CDtVO0','madiehallyzmwx','alisonthomas18605@outlook.com','','2014-04-27 00:35:50','',0,'MadieHallyzmwx'),(1293,'CassandSwaney','$P$BhCEFhj9cT83oDRx9NfWesyDW9awpL0','cassandswaney','edgraabc@hotmail.com','','2014-04-27 00:54:32','',0,'CassandSwaney'),(1294,'BarrettAlves','$P$BDOtzrv9wgkQSUVz2MLnwhAjtw8xjE0','barrettalves','barrett_alves55@c.maybebest.com','','2014-04-27 01:26:52','',0,'BarrettAlves'),(1295,'RayfordTillman','$P$Bb/Ie5HTemoA.7FCjUzo4AziNOQahc1','rayfordtillman','aozgwiths@hotmail.com','','2014-04-27 05:16:00','',0,'RayfordTillman'),(1296,'VerleneUzz','$P$BMKlyzJfjjmdRuO0vjHY.IxhfnjJsI1','verleneuzz','julioeqd@hotmail.com','','2014-04-27 06:47:26','',0,'VerleneUzz'),(1297,'fjsuahzm','$P$B4gQnux2Me2vJJ6M7YHbP0.fh1TK5h1','fjsuahzm','andrewa.guzman@hotmail.com','','2014-04-27 11:24:39','',0,'fjsuahzm'),(1298,'ArjunePen','$P$BhNw9fGTJVPjBK.5z6S8ddwc9l5Sa61','arjunepen','arjunePeni@xzzy.info','','2014-04-27 12:48:13','',0,'ArjunePen'),(1299,'FZNDaisyrbz','$P$Biz3gKezSFQZWDEJYwVD6jbCYwNcqp.','fzndaisyrbz','moserfvt@hotmail.com','','2014-04-27 13:44:32','',0,'FZNDaisyrbz'),(1300,'StevenlobeMichaelDaps','$P$BVdF6sKOcm8Kom.jicthvWe8LF5I0H1','stevenlobemichaeldaps','collum100@outlook.com','','2014-04-27 13:49:14','',0,'StevenlobeMichaelDaps'),(1301,'RosieVmoboj','$P$BrB0fPbZ9HKk9o2QR1eoA.T6jUremg/','rosievmoboj','sarahsmith49032@outlook.com','','2014-04-27 14:44:25','',0,'RosieVmoboj'),(1302,'RosariaReeve','$P$BOUdzueyrJkw/qNcUCuL3J3rBWp4s4.','rosariareeve','rosaria-reeve@webkiff.info','','2014-04-27 21:54:24','',0,'RosariaReeve'),(1303,'Georgetta07B','$P$BwtxOq9I4FOXpv3afcTuN8U2ITu5/K/','georgetta07b','dioxnqb@hotmail.com','','2014-04-27 23:11:12','',0,'Georgetta07B'),(1304,'Celsa2110s','$P$BYfI..ypeCWbfqo0SpCFHzyCTTsv4K0','celsa2110s','bettyehudspeth@discardmail.com','','2014-04-27 23:30:58','',0,'Celsa2110s'),(1305,'Valiavgvr5','$P$BmPruGc.EpdboenDEkF4ZNtuWQXe36.','valiavgvr5','adam.grocki7@o2.pl','','2014-04-28 20:12:01','',0,'Valiavgvr5'),(1306,'AmberMoynihan','$P$BK5NtxV1cwJjkj1P0Ylnl25aeHub/h0','ambermoynihan','amber-moynihan41@recupemail.info','','2014-04-30 10:35:06','',0,'AmberMoynihan'),(1307,'LamontMitford','$P$BsHkYt8VbCWIMtYRNuOTg5mJBX.46b/','lamontmitford','tracysantiago61397@outlook.com','','2014-05-01 01:29:31','',0,'LamontMitford'),(1308,'JeseniaZarate','$P$BKvgbRUDN1l46K8V.4hd4yzzorcdOy.','jeseniazarate','zulmahpm@hotmail.com','','2014-05-01 02:02:59','',0,'JeseniaZarate'),(1309,'PhilipRadke','$P$BFKl3Jq6O7a8I8BZVLjy/cnKGgxprL0','philipradke','poweupu@outlook.com','','2014-05-01 11:45:19','',0,'PhilipRadke'),(1310,'EdenPickard','$P$ByL.t/js5SxF8He8Sm8Udbj/0UoQEL0','edenpickard','eden-pickard@a.maybebest.com','','2014-05-02 01:10:28','',0,'EdenPickard'),(1311,'FlorrieOsborne','$P$BrkJVWPKnEE3eN1q7rE1UCjX.VOz4O.','florrieosborne','florrie-osborne58@recupemail.info','','2014-05-02 08:01:14','',0,'FlorrieOsborne'),(1312,'SheriPumphrey','$P$B5JJYtayANQwM4C95rNKlUH4TO.OPi0','sheripumphrey','sheri-pumphrey@netkiff.info','','2014-05-02 11:02:17','',0,'SheriPumphrey'),(1313,'OUXAlissafqhg','$P$BAPGXOSmC.GW0N0C/DGJNNHBuNImwc/','ouxalissafqhg','alissa-cousins@webkiff.info','','2014-05-03 05:33:21','',0,'OUXAlissafqhg'),(1314,'EddiePalmore','$P$Bcn7PCAbq3D38s4QhRcrEnNxeiL9w/0','eddiepalmore','beerdne@hotmail.com','','2014-05-03 21:25:18','',0,'EddiePalmore'),(1315,'BrainClimpson','$P$BeezkWCA2oGWjZzRwFWfy8m1A3yoNF1','brainclimpson','singhcwsf@outlook.com','','2014-05-04 04:05:51','',0,'BrainClimpson'),(1316,'DulcieCBSW','$P$BUZTtaPCLvyv8GNF8V8dHc1VInSNEu.','dulciecbsw','orlandothompson68995@outlook.com','','2014-05-04 05:23:07','',0,'DulcieCBSW'),(1317,'PalmaKnowles','$P$BVY8Z6QGK0ZOSxE6TM16r3P2Wgfa4W1','palmaknowles','pikaforekcno@o2.pl','','2014-05-04 14:33:29','',0,'PalmaKnowles'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yop_poll_answermeta` -- DROP TABLE IF EXISTS `wp_yop_poll_answermeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_yop_poll_answermeta` ( `meta_id` int(11) NOT NULL auto_increment, `yop_poll_answer_id` int(11) NOT NULL, `meta_key` varchar(255) NOT NULL, `meta_value` longtext NOT NULL, PRIMARY KEY (`meta_id`), KEY `yop_poll_answer_id` (`yop_poll_answer_id`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_yop_poll_answermeta` -- LOCK TABLES `wp_yop_poll_answermeta` WRITE; /*!40000 ALTER TABLE `wp_yop_poll_answermeta` DISABLE KEYS */; INSERT INTO `wp_yop_poll_answermeta` VALUES (1,5,'options','a:1:{s:17:\"is_default_answer\";s:3:\"yes\";}'),(7,12,'options','a:1:{s:17:\"is_default_answer\";s:2:\"no\";}'),(6,11,'options','a:1:{s:17:\"is_default_answer\";s:2:\"no\";}'),(4,9,'options','a:1:{s:17:\"is_default_answer\";s:2:\"no\";}'),(5,10,'options','a:1:{s:17:\"is_default_answer\";s:2:\"no\";}'),(8,13,'options','a:1:{s:17:\"is_default_answer\";s:2:\"no\";}'),(9,14,'options','a:1:{s:17:\"is_default_answer\";s:2:\"no\";}'); /*!40000 ALTER TABLE `wp_yop_poll_answermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yop_poll_answers` -- DROP TABLE IF EXISTS `wp_yop_poll_answers`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_yop_poll_answers` ( `id` int(11) NOT NULL auto_increment, `poll_id` int(11) NOT NULL, `answer` varchar(255) NOT NULL, `type` enum('default','other') NOT NULL default 'default', `votes` int(11) NOT NULL, `status` varchar(255) NOT NULL, PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_yop_poll_answers` -- LOCK TABLES `wp_yop_poll_answers` WRITE; /*!40000 ALTER TABLE `wp_yop_poll_answers` DISABLE KEYS */; INSERT INTO `wp_yop_poll_answers` VALUES (1,1,'Good','default',0,'active'),(2,1,'Very Good','default',0,'active'),(3,1,'Bad','default',0,'active'),(4,1,'Other','other',0,'active'),(5,2,'Yes','default',23,'active'),(6,2,'Other','other',0,'active'),(9,2,'No','default',0,'active'),(10,2,'Maybe but unrealistic','default',1,'active'),(11,3,'Yes I would.','default',1,'active'),(12,3,'Yes I do.','default',0,'active'),(13,3,'Yes with supervision.','default',10,'active'),(14,3,'No way, rules are rules.','default',4,'active'),(15,3,'Other','other',0,'active'); /*!40000 ALTER TABLE `wp_yop_poll_answers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yop_poll_bans` -- DROP TABLE IF EXISTS `wp_yop_poll_bans`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_yop_poll_bans` ( `id` int(11) NOT NULL auto_increment, `poll_id` int(11) NOT NULL, `type` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_yop_poll_bans` -- LOCK TABLES `wp_yop_poll_bans` WRITE; /*!40000 ALTER TABLE `wp_yop_poll_bans` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_yop_poll_bans` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yop_poll_custom_fields` -- DROP TABLE IF EXISTS `wp_yop_poll_custom_fields`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_yop_poll_custom_fields` ( `id` int(11) NOT NULL auto_increment, `poll_id` int(11) NOT NULL, `custom_field` varchar(255) NOT NULL, `required` enum('yes','no') NOT NULL default 'no', `status` varchar(255) NOT NULL, PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_yop_poll_custom_fields` -- LOCK TABLES `wp_yop_poll_custom_fields` WRITE; /*!40000 ALTER TABLE `wp_yop_poll_custom_fields` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_yop_poll_custom_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yop_poll_facebook_users` -- DROP TABLE IF EXISTS `wp_yop_poll_facebook_users`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_yop_poll_facebook_users` ( `id` int(11) NOT NULL auto_increment, `fb_id` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `first_name` varchar(255) NOT NULL, `last_name` varchar(255) NOT NULL, `username` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `gender` varchar(255) NOT NULL, `date_added` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_yop_poll_facebook_users` -- LOCK TABLES `wp_yop_poll_facebook_users` WRITE; /*!40000 ALTER TABLE `wp_yop_poll_facebook_users` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_yop_poll_facebook_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yop_poll_logs` -- DROP TABLE IF EXISTS `wp_yop_poll_logs`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_yop_poll_logs` ( `id` int(11) NOT NULL auto_increment, `poll_id` int(11) NOT NULL, `vote_id` varchar(255) NOT NULL, `answer_id` int(11) NOT NULL, `ip` varchar(100) NOT NULL, `user_id` int(11) NOT NULL, `user_type` enum('facebook','wordpress','anonymous','default') NOT NULL default 'default', `http_referer` varchar(255) NOT NULL, `tr_id` varchar(255) NOT NULL, `other_answer_value` text NOT NULL, `host` varchar(200) NOT NULL, `vote_date` datetime NOT NULL, PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_yop_poll_logs` -- LOCK TABLES `wp_yop_poll_logs` WRITE; /*!40000 ALTER TABLE `wp_yop_poll_logs` DISABLE KEYS */; INSERT INTO `wp_yop_poll_logs` VALUES (1,2,'vote_id_526724865a00d',5,'68.52.2.58',0,'default','http://www.earthhertzrecords.com/about/','','','c-68-52-2-58.hsd1.tn.comcast.net','2013-10-23 01:21:10'),(2,2,'vote_id_52687cd20c153',10,'173.70.19.37',0,'default','http://www.earthhertzrecords.com/about/','0000001','','static-173-70-19-37.nwrknj.fios.verizon.net','2013-10-24 01:50:10'),(3,2,'vote_id_5268917f65c08',5,'207.144.237.77',0,'default','http://www.earthhertzrecords.com/about/','0000001','','tn.207.144.237.77.tnwabg.highland.net','2013-10-24 03:18:23'),(4,2,'vote_id_5268d1911bdb3',5,'86.56.210.75',0,'default','http://www.earthhertzrecords.com/about/','0000001','','cm56-210-75.liwest.at','2013-10-24 07:51:45'),(5,2,'vote_id_52695c1516715',5,'68.52.2.58',0,'default','http://www.earthhertzrecords.com/about/','0000001','','c-68-52-2-58.hsd1.tn.comcast.net','2013-10-24 17:42:45'),(6,2,'vote_id_52695c28764a8',5,'68.52.2.58',0,'default','http://www.earthhertzrecords.com/about/','0000001','','c-68-52-2-58.hsd1.tn.comcast.net','2013-10-24 17:43:04'),(7,2,'vote_id_5269b3d6799b8',5,'64.53.125.72',0,'default','http://www.earthhertzrecords.com/about/','0000001','','64-53-125-72.d02.tnwabg.highland.net','2013-10-24 23:57:10'),(8,2,'vote_id_526d3245cd243',5,'64.53.125.72',0,'default','http://www.earthhertzrecords.com/about/','0000001','','64-53-125-72.d02.tnwabg.highland.net','2013-10-27 15:33:25'),(9,2,'vote_id_526daac69d6fd',5,'67.139.31.1',0,'default','http://www.earthhertzrecords.com/about/','0000001','','bouvier.msb.priv','2013-10-28 00:07:35'),(10,2,'vote_id_526fef58c5f20',5,'87.8.118.120',0,'default','http://www.earthhertzrecords.com/about/','0000001','','host120-118-dynamic.8-87-r.retail.telecomitalia.it','2013-10-29 17:24:41'),(11,2,'vote_id_526fef7430fb5',5,'213.205.237.80',0,'default','http://www.earthhertzrecords.com/about/','0000001','','213.205.237.80','2013-10-29 17:25:12'),(12,2,'vote_id_527032516578c',5,'178.164.78.75',0,'default','http://www.earthhertzrecords.com/about/','0000001','','178.164.78.75','2013-10-29 22:10:29'),(13,2,'vote_id_5270d17f73817',5,'90.201.85.206',0,'default','http://www.earthhertzrecords.com/about/','0000001','','5ac955ce.bb.sky.com','2013-10-30 09:29:35'),(14,2,'vote_id_527a9ae7b344a',5,'68.53.71.228',0,'default','http://www.earthhertzrecords.com/about/','0000001','','c-68-53-71-228.hsd1.ky.comcast.net','2013-11-06 19:39:19'),(15,2,'vote_id_527c31e7dafb3',5,'207.144.89.210',0,'default','http://www.earthhertzrecords.com/about/','0000001','','207-144-89-210.d02.tnwabg.highland.net','2013-11-08 00:35:51'),(16,2,'vote_id_5282e4c470dc9',5,'68.52.2.58',0,'default','http://www.earthhertzrecords.com/about/','0000001','','c-68-52-2-58.hsd1.tn.comcast.net','2013-11-13 02:32:36'),(17,2,'vote_id_5285242eb431d',5,'91.82.180.70',0,'default','http://www.earthhertzrecords.com/about/','0000001','','91.82.180.70.pool.invitel.hu','2013-11-14 19:27:42'),(18,2,'vote_id_52895bb6f055b',5,'207.144.89.210',0,'default','http://www.earthhertzrecords.com/about/','0000001','','207-144-89-210.d02.tnwabg.highland.net','2013-11-18 00:13:43'),(19,2,'vote_id_528b86293ca09',5,'204.116.190.149',0,'default','http://www.earthhertzrecords.com/about/','0000001','','204-116-190-149.d02.tnwabg.highland.net','2013-11-19 15:39:21'),(20,3,'vote_id_529d35e553a18',14,'68.52.2.58',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','c-68-52-2-58.hsd1.tn.comcast.net','2013-12-02 19:37:41'),(21,3,'vote_id_529d375cebf6f',14,'68.52.2.58',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','c-68-52-2-58.hsd1.tn.comcast.net','2013-12-02 19:43:56'),(22,3,'vote_id_529d37991609a',14,'68.52.2.58',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','c-68-52-2-58.hsd1.tn.comcast.net','2013-12-02 19:44:57'),(23,3,'vote_id_529dab1d6a300',14,'149.254.186.152',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','149.254.186.152','2013-12-03 03:57:57'),(24,2,'vote_id_52a2165f1c70a',5,'68.52.2.58',1,'default','http://www.earthhertzrecords.com/about/','0000001','','c-68-52-2-58.hsd1.tn.comcast.net','2013-12-06 12:24:31'),(25,2,'vote_id_52b743285d24d',5,'76.22.245.151',0,'default','http://www.earthhertzrecords.com/about/','0000001','','c-76-22-245-151.hsd1.tn.comcast.net','2013-12-22 13:53:12'),(26,2,'vote_id_52e9f1798c22f',5,'207.144.237.77',0,'default','http://www.earthhertzrecords.com/about/','0000001','','tn.207.144.237.77.tnwabg.highland.net','2014-01-30 00:30:17'),(27,2,'vote_id_52f9da6893e5b',5,'162.205.96.241',0,'default','http://www.earthhertzrecords.com/about/','0000001','','162-205-96-241.lightspeed.knvltn.sbcglobal.net','2014-02-11 02:08:08'),(28,3,'vote_id_5305426e86ddc',13,'76.209.134.67',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','76.209.134.67','2014-02-19 17:46:59'),(29,3,'vote_id_5305428851e66',13,'76.209.134.67',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','76.209.134.67','2014-02-19 17:47:24'),(30,3,'vote_id_53054294b9179',13,'76.209.134.67',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','76.209.134.67','2014-02-19 17:47:37'),(31,3,'vote_id_530542a036f10',13,'76.209.134.67',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','76.209.134.67','2014-02-19 17:47:48'),(32,3,'vote_id_530542aa9ec6b',13,'76.209.134.67',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','76.209.134.67','2014-02-19 17:47:59'),(33,3,'vote_id_530542b6138aa',13,'76.209.134.67',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','76.209.134.67','2014-02-19 17:48:10'),(34,3,'vote_id_530542c27b695',13,'76.209.134.67',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','76.209.134.67','2014-02-19 17:48:23'),(35,3,'vote_id_530542d0ea728',13,'76.209.134.67',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','76.209.134.67','2014-02-19 17:48:37'),(36,3,'vote_id_530542f15c27a',13,'76.209.134.67',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','76.209.134.67','2014-02-19 17:49:09'),(37,2,'vote_id_530985167577a',5,'98.154.127.175',0,'default','http://www.earthhertzrecords.com/about/','0000001','','cpe-98-154-127-175.socal.res.rr.com','2014-02-22 23:20:22'),(38,3,'vote_id_531afd7ae69c6',13,'82.11.127.197',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','cpc3-ware5-2-0-cust196.9-1.cable.virginm.net','2014-03-08 05:22:35'),(39,3,'vote_id_535878c4a1590',11,'142.105.58.62',0,'anonymous','http://www.earthhertzrecords.com/yop-poll-archive/would-you-let-your-under-13-year-old-have-an-instagram-or-facebook-account/','000002','','cpe-142-105-58-62.nyc.res.rr.com','2014-04-23 20:36:52'); /*!40000 ALTER TABLE `wp_yop_poll_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yop_poll_templates` -- DROP TABLE IF EXISTS `wp_yop_poll_templates`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_yop_poll_templates` ( `id` int(11) NOT NULL auto_increment, `template_author` bigint(20) NOT NULL default '0', `name` varchar(255) NOT NULL, `before_vote_template` text NOT NULL, `after_vote_template` text NOT NULL, `before_start_date_template` text NOT NULL, `after_end_date_template` text NOT NULL, `css` text NOT NULL, `js` text NOT NULL, `status` varchar(255) NOT NULL, `last_modified` datetime NOT NULL, `date_added` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_yop_poll_templates` -- LOCK TABLES `wp_yop_poll_templates` WRITE; /*!40000 ALTER TABLE `wp_yop_poll_templates` DISABLE KEYS */; INSERT INTO `wp_yop_poll_templates` VALUES (1,1,'White','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE%</div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#fff;\r\n padding:10px;\r\n color:#555;\r\n overflow:hidden;\r\n font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-size:14px;\r\n font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#555; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#555; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','default','2013-10-16 07:56:18','2013-10-16 07:56:18'),(2,1,'Grey','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#eee;\r\n padding:10px;\r\n color:#000;\r\n overflow:hidden;\r\n font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-size:14px;\r\n font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#000; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#000; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','other','2013-10-16 07:56:18','2013-10-16 07:56:18'),(3,1,'Dark','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#555;\r\n padding:10px;\r\n color:#fff;\r\n overflow:hidden;\r\n font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-size:14px;\r\n font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#333333; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','other','2013-10-16 07:56:18','2013-10-16 07:56:18'),(4,1,'Blue v1','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#327BD6;\r\n padding:10px;\r\n color:#fff;\r\n overflow:hidden;\r\n font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-size:14px;\r\n font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','other','2013-10-16 07:56:18','2013-10-16 07:56:18'),(5,1,'Blue v2','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#fff;\r\n padding:0px;\r\n color:#555;\r\n overflow:hidden;\r\n font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-weight:bold;\r\n background:#327BD6;\r\n color:#fff;\r\n padding:5px;\r\n text-align:center;\r\n font-size:12px;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#327BD6; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#327BD6; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','other','2013-10-16 07:56:18','2013-10-16 07:56:18'),(6,1,'Blue v3','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#fff;\r\n padding:10px;\r\n color:#555;\r\n overflow:hidden;\r\n font-size:12px;\r\n border:5px solid #327BD6;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-size:14px;\r\n font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#327BD6; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#327BD6; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','other','2013-10-16 07:56:18','2013-10-16 07:56:18'),(7,1,'Red v1','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#B70004;\r\n padding:10px;\r\n color:#fff;\r\n overflow:hidden;\r\n font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-size:14px;\r\n font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','other','2013-10-16 07:56:18','2013-10-16 07:56:18'),(8,1,'Red v2','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#fff;\r\n padding:0px;\r\n color:#555;\r\n overflow:hidden;\r\n font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-weight:bold;\r\n background:#B70004;\r\n color:#fff;\r\n padding:5px;\r\n text-align:center;\r\n font-size:12px;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#B70004; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#B70004; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','other','2013-10-16 07:56:18','2013-10-16 07:56:18'),(9,1,'Red v3','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#fff;\r\n padding:10px;\r\n color:#555;\r\n overflow:hidden;\r\n font-size:12px;\r\n border:5px solid #B70004;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-size:14px;\r\n font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#B70004; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#B70004; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','other','2013-10-16 07:56:18','2013-10-16 07:56:18'),(10,1,'Green v1','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#3F8B43;\r\n padding:10px;\r\n color:#fff;\r\n overflow:hidden;\r\n font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-size:14px;\r\n font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:00FF00;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','other','2013-10-16 07:56:18','2013-10-16 07:56:18'),(11,1,'Green v2','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#fff;\r\n padding:0px;\r\n color:#555;\r\n overflow:hidden;\r\n font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-weight:bold;\r\n background:#3F8B43;\r\n color:#fff;\r\n padding:5px;\r\n text-align:center;\r\n font-size:12px;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#3F8B43; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#3F8B43; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','other','2013-10-16 07:56:18','2013-10-16 07:56:18'),(12,1,'Green v3','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#fff;\r\n padding:10px;\r\n color:#555;\r\n overflow:hidden;\r\n font-size:12px;\r\n border:5px solid #3F8B43;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-size:14px;\r\n font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#3F8B43; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#3F8B43; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','other','2013-10-16 07:56:18','2013-10-16 07:56:18'),(13,1,'Orange v1','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#FB6911;\r\n padding:10px;\r\n color:#fff;\r\n overflow:hidden;\r\n font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-size:14px;\r\n font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','other','2013-10-16 07:56:18','2013-10-16 07:56:18'),(14,1,'Orange v2','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#fff;\r\n padding:0px;\r\n color:#555;\r\n overflow:hidden;\r\n font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-weight:bold;\r\n background:#FB6911;\r\n color:#fff;\r\n padding:5px;\r\n text-align:center;\r\n font-size:12px;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#FB6911; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#FB6911; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','other','2013-10-16 07:56:18','2013-10-16 07:56:18'),(15,1,'Orange v3','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-ANSWER-CHECK-INPUT% \r\n %POLL-ANSWER-LABEL%\r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_CONTAINER]\r\n [OTHER_ANSWER_CONTAINER]\r\n <li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n %POLL-OTHER-ANSWER-CHECK-INPUT% \r\n %POLL-OTHER-ANSWER-LABEL% \r\n <span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n %POLL-OTHER-ANSWER-TEXT-INPUT% \r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/OTHER_ANSWER_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n <ul>\r\n [CUSTOM_FIELD_CONTAINER]\r\n <li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n [/CUSTOM_FIELD_CONTAINER]\r\n </ul>\r\n</div> \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n %CAPTCHA-IMAGE%\r\n <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n <div class=\"yop_poll_clear\"></div>\r\n </div>\r\n %CAPTCHA-LABEL%\r\n <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-VOTE-BUTTON%</div>\r\n <div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label-%POLL-ID%\">\r\n <span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result-%POLL-ID%\">\r\n <span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <div>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </div>\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n <div>%POLL-TOTAL-ANSWERS%</div>\r\n <div>%POLL-TOTAL-VOTES%</div>\r\n <div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n <ul>\r\n [ANSWER_RESULT_CONTAINER]\r\n <li class=\"yop-poll-li-result-%POLL-ID%\">\r\n <label class=\"pds-feedback-label\">\r\n <span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n <span class=\"pds-feedback-result\">\r\n <span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n </span>\r\n </label>\r\n <span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n %POLL-ANSWER-RESULT-BAR%\r\n </li>\r\n [/ANSWER_RESULT_CONTAINER]\r\n </ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n width:%POLL-WIDTH%;\r\n background:#fff;\r\n padding:10px;\r\n color:#555;\r\n overflow:hidden;\r\n font-size:12px;\r\n border:5px solid #FB6911;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n font-size:14px;\r\n font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n font-size:14px;\r\n margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% { }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n font-style:normal;\r\n margin:0px 0px 10px 0px;\r\n padding:0px;\r\n font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n margin:0px; \r\n float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n margin:0px; \r\n font-style:normal; \r\n font-weight:normal; \r\n font-size:12px; \r\n float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n font-size: 12px;\r\n font-style: italic;\r\n font-weight: normal;\r\n margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% { }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n list-style: none outside none;\r\n margin: 0;\r\n padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n padding:0px;\r\n margin:0px; \r\n font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px; }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n float: right;\r\n margin-bottom: 20px;\r\n margin-top: -20px;\r\n width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#FB6911; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#FB6911; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:red;\r\n text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n font-size:12px;\r\n font-style:italic;\r\n color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n object.each(function() {\r\n if( parseInt(jQuery(this).width() ) > 0) {\r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n }\r\n else {\r\n jQuery(this).css(\"border-left-width\", \'0px\');\r\n jQuery(this).css(\"border-right-width\", \'0px\');\r\n }\r\n });\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n object.each(function() { \r\n jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n });\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") ); \r\n stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n strip_results_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n tabulate_answers_%POLL-ID%();\r\n \r\n if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n tabulate_results_%POLL-ID%();\r\n \r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest = typeof findWidest !== \'undefined\' ? findWidest : false;\r\n if ( findWidest ) {\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n width = parseInt(thisWidth / cols); \r\n jQuery(this).width(width); \r\n jQuery(this).css(\'float\', \'left\'); \r\n });\r\n }\r\n else {\r\n var widest = 0;\r\n obj.each(function() {\r\n var thisWidth = jQuery(this).width();\r\n if(thisWidth > widest) {\r\n widest = thisWidth; \r\n } \r\n });\r\n width = parseInt( widest / cols); \r\n obj.width(width); \r\n obj.css(\'float\', \'left\'); \r\n } \r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}','other','2013-10-16 07:56:18','2013-10-16 07:56:18'); /*!40000 ALTER TABLE `wp_yop_poll_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yop_poll_voters` -- DROP TABLE IF EXISTS `wp_yop_poll_voters`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_yop_poll_voters` ( `id` int(11) NOT NULL auto_increment, `poll_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `user_type` enum('facebook','wordpress','anonymous','default') NOT NULL default 'default', PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_yop_poll_voters` -- LOCK TABLES `wp_yop_poll_voters` WRITE; /*!40000 ALTER TABLE `wp_yop_poll_voters` DISABLE KEYS */; INSERT INTO `wp_yop_poll_voters` VALUES (1,2,0,'wordpress'),(2,2,0,'wordpress'),(3,2,0,'wordpress'),(4,2,0,'wordpress'),(5,2,0,'wordpress'),(6,2,0,'wordpress'),(7,2,0,'wordpress'),(8,2,0,'wordpress'),(9,2,0,'wordpress'),(10,2,0,'wordpress'),(11,2,0,'wordpress'),(12,2,0,'wordpress'),(13,2,0,'wordpress'),(14,2,0,'wordpress'),(15,2,0,'wordpress'),(16,2,0,'wordpress'),(17,2,0,'wordpress'),(18,2,0,'wordpress'),(19,2,0,'wordpress'),(20,3,0,'wordpress'),(21,3,0,'wordpress'),(22,3,0,'wordpress'),(23,3,0,'wordpress'),(24,2,1,'wordpress'),(25,2,0,'wordpress'),(26,2,0,'wordpress'),(27,2,0,'wordpress'),(28,3,0,'wordpress'),(29,3,0,'wordpress'),(30,3,0,'wordpress'),(31,3,0,'wordpress'),(32,3,0,'wordpress'),(33,3,0,'wordpress'),(34,3,0,'wordpress'),(35,3,0,'wordpress'),(36,3,0,'wordpress'),(37,2,0,'wordpress'),(38,3,0,'wordpress'),(39,3,0,'wordpress'); /*!40000 ALTER TABLE `wp_yop_poll_voters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yop_poll_votes_custom_fields` -- DROP TABLE IF EXISTS `wp_yop_poll_votes_custom_fields`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_yop_poll_votes_custom_fields` ( `id` int(11) NOT NULL auto_increment, `poll_id` int(11) NOT NULL, `vote_id` varchar(255) NOT NULL, `custom_field_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `user_type` enum('facebook','wordpress','anonymous','default') NOT NULL default 'default', `custom_field_value` text NOT NULL, `tr_id` varchar(255) NOT NULL, `vote_date` datetime NOT NULL, PRIMARY KEY (`id`), KEY `poll_id` (`poll_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_yop_poll_votes_custom_fields` -- LOCK TABLES `wp_yop_poll_votes_custom_fields` WRITE; /*!40000 ALTER TABLE `wp_yop_poll_votes_custom_fields` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_yop_poll_votes_custom_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yop_pollmeta` -- DROP TABLE IF EXISTS `wp_yop_pollmeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_yop_pollmeta` ( `meta_id` int(11) NOT NULL auto_increment, `yop_poll_id` int(11) NOT NULL, `meta_key` varchar(255) NOT NULL, `meta_value` longtext NOT NULL, PRIMARY KEY (`meta_id`), KEY `yop_poll_id` (`yop_poll_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_yop_pollmeta` -- LOCK TABLES `wp_yop_pollmeta` WRITE; /*!40000 ALTER TABLE `wp_yop_pollmeta` DISABLE KEYS */; INSERT INTO `wp_yop_pollmeta` VALUES (1,2,'options','a:5:{s:16:\"view_total_votes\";s:2:\"no\";s:18:\"view_total_answers\";s:2:\"no\";s:8:\"template\";s:1:\"2\";s:15:\"widget_template\";s:1:\"3\";s:24:\"schedule_reset_poll_date\";i:1381924578;}'),(2,3,'options','a:4:{s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:14:\"template_width\";s:5:\"350px\";s:21:\"widget_template_width\";s:5:\"350px\";s:24:\"schedule_reset_poll_date\";i:1381924578;}'); /*!40000 ALTER TABLE `wp_yop_pollmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yop_polls` -- DROP TABLE IF EXISTS `wp_yop_polls`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_yop_polls` ( `id` int(11) NOT NULL auto_increment, `poll_author` bigint(20) NOT NULL default '0', `name` varchar(255) NOT NULL, `question` text NOT NULL, `start_date` datetime NOT NULL default '0000-00-00 00:00:00', `end_date` datetime NOT NULL default '0000-00-00 00:00:00', `total_votes` int(11) NOT NULL, `total_answers` int(11) NOT NULL, `status` varchar(255) NOT NULL, `last_modified` datetime NOT NULL, `date_added` datetime NOT NULL, `show_in_archive` enum('yes','no') NOT NULL default 'yes', `archive_order` int(11) NOT NULL default '1', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_yop_polls` -- LOCK TABLES `wp_yop_polls` WRITE; /*!40000 ALTER TABLE `wp_yop_polls` DISABLE KEYS */; INSERT INTO `wp_yop_polls` VALUES (1,1,'Default Yop Poll','How is my plugin?','2013-10-16 07:56:18','9999-12-31 23:59:59',0,0,'open','2013-10-16 07:56:18','2013-10-16 07:56:18','yes',1),(2,1,'Music Industry','Do you believe it is time for a change in the music industry?','2013-10-16 07:56:18','9999-12-31 23:59:59',24,24,'open','2013-10-23 01:29:10','2013-10-23 01:19:18','yes',1),(3,1,'Under 13 Instagram and Facebook Account?','Would or do you let your under 13 year old have an Instagram or Facebook account?','2013-10-16 07:56:18','9999-12-31 23:59:59',15,15,'open','2013-12-02 19:38:29','2013-12-02 19:31:06','yes',1); /*!40000 ALTER TABLE `wp_yop_polls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `zones` -- DROP TABLE IF EXISTS `zones`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `zones` ( `zone_id` int(11) NOT NULL auto_increment, `zone_country_id` int(11) NOT NULL, `zone_code` varchar(32) NOT NULL, `zone_name` varchar(255) NOT NULL, PRIMARY KEY (`zone_id`), KEY `idx_zones_country_id` (`zone_country_id`) ) ENGINE=MyISAM AUTO_INCREMENT=182 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `zones` -- LOCK TABLES `zones` WRITE; /*!40000 ALTER TABLE `zones` DISABLE KEYS */; INSERT INTO `zones` VALUES (1,223,'AL','Alabama'),(2,223,'AK','Alaska'),(3,223,'AS','American Samoa'),(4,223,'AZ','Arizona'),(5,223,'AR','Arkansas'),(6,223,'AF','Armed Forces Africa'),(7,223,'AA','Armed Forces Americas'),(8,223,'AC','Armed Forces Canada'),(9,223,'AE','Armed Forces Europe'),(10,223,'AM','Armed Forces Middle East'),(11,223,'AP','Armed Forces Pacific'),(12,223,'CA','California'),(13,223,'CO','Colorado'),(14,223,'CT','Connecticut'),(15,223,'DE','Delaware'),(16,223,'DC','District of Columbia'),(17,223,'FM','Federated States Of Micronesia'),(18,223,'FL','Florida'),(19,223,'GA','Georgia'),(20,223,'GU','Guam'),(21,223,'HI','Hawaii'),(22,223,'ID','Idaho'),(23,223,'IL','Illinois'),(24,223,'IN','Indiana'),(25,223,'IA','Iowa'),(26,223,'KS','Kansas'),(27,223,'KY','Kentucky'),(28,223,'LA','Louisiana'),(29,223,'ME','Maine'),(30,223,'MH','Marshall Islands'),(31,223,'MD','Maryland'),(32,223,'MA','Massachusetts'),(33,223,'MI','Michigan'),(34,223,'MN','Minnesota'),(35,223,'MS','Mississippi'),(36,223,'MO','Missouri'),(37,223,'MT','Montana'),(38,223,'NE','Nebraska'),(39,223,'NV','Nevada'),(40,223,'NH','New Hampshire'),(41,223,'NJ','New Jersey'),(42,223,'NM','New Mexico'),(43,223,'NY','New York'),(44,223,'NC','North Carolina'),(45,223,'ND','North Dakota'),(46,223,'MP','Northern Mariana Islands'),(47,223,'OH','Ohio'),(48,223,'OK','Oklahoma'),(49,223,'OR','Oregon'),(50,223,'PW','Palau'),(51,223,'PA','Pennsylvania'),(52,223,'PR','Puerto Rico'),(53,223,'RI','Rhode Island'),(54,223,'SC','South Carolina'),(55,223,'SD','South Dakota'),(56,223,'TN','Tennessee'),(57,223,'TX','Texas'),(58,223,'UT','Utah'),(59,223,'VT','Vermont'),(60,223,'VI','Virgin Islands'),(61,223,'VA','Virginia'),(62,223,'WA','Washington'),(63,223,'WV','West Virginia'),(64,223,'WI','Wisconsin'),(65,223,'WY','Wyoming'),(66,38,'AB','Alberta'),(67,38,'BC','British Columbia'),(68,38,'MB','Manitoba'),(69,38,'NF','Newfoundland'),(70,38,'NB','New Brunswick'),(71,38,'NS','Nova Scotia'),(72,38,'NT','Northwest Territories'),(73,38,'NU','Nunavut'),(74,38,'ON','Ontario'),(75,38,'PE','Prince Edward Island'),(76,38,'QC','Quebec'),(77,38,'SK','Saskatchewan'),(78,38,'YT','Yukon Territory'),(79,81,'NDS','Niedersachsen'),(80,81,'BAW','Baden-W'),(81,81,'BAY','Bayern'),(82,81,'BER','Berlin'),(83,81,'BRG','Brandenburg'),(84,81,'BRE','Bremen'),(85,81,'HAM','Hamburg'),(86,81,'HES','Hessen'),(87,81,'MEC','Mecklenburg-Vorpommern'),(88,81,'NRW','Nordrhein-Westfalen'),(89,81,'RHE','Rheinland-Pfalz'),(90,81,'SAR','Saarland'),(91,81,'SAS','Sachsen'),(92,81,'SAC','Sachsen-Anhalt'),(93,81,'SCN','Schleswig-Holstein'),(94,81,'THE','Th'),(95,14,'WI','Wien'),(96,14,'NO','Nieder'),(97,14,'OO','Ober'),(98,14,'SB','Salzburg'),(99,14,'KN','K'),(100,14,'ST','Steiermark'),(101,14,'TI','Tirol'),(102,14,'BL','Burgenland'),(103,14,'VB','Voralberg'),(104,204,'AG','Aargau'),(105,204,'AI','Appenzell Innerrhoden'),(106,204,'AR','Appenzell Ausserrhoden'),(107,204,'BE','Bern'),(108,204,'BL','Basel-Landschaft'),(109,204,'BS','Basel-Stadt'),(110,204,'FR','Freiburg'),(111,204,'GE','Genf'),(112,204,'GL','Glarus'),(113,204,'JU','Graub'),(114,204,'JU','Jura'),(115,204,'LU','Luzern'),(116,204,'NE','Neuenburg'),(117,204,'NW','Nidwalden'),(118,204,'OW','Obwalden'),(119,204,'SG','St. Gallen'),(120,204,'SH','Schaffhausen'),(121,204,'SO','Solothurn'),(122,204,'SZ','Schwyz'),(123,204,'TG','Thurgau'),(124,204,'TI','Tessin'),(125,204,'UR','Uri'),(126,204,'VD','Waadt'),(127,204,'VS','Wallis'),(128,204,'ZG','Zug'),(129,204,'ZH','Z'),(130,195,'A Coru','A Coru'),(131,195,'Alava','Alava'),(132,195,'Albacete','Albacete'),(133,195,'Alicante','Alicante'),(134,195,'Almeria','Almeria'),(135,195,'Asturias','Asturias'),(136,195,'Avila','Avila'),(137,195,'Badajoz','Badajoz'),(138,195,'Baleares','Baleares'),(139,195,'Barcelona','Barcelona'),(140,195,'Burgos','Burgos'),(141,195,'Caceres','Caceres'),(142,195,'Cadiz','Cadiz'),(143,195,'Cantabria','Cantabria'),(144,195,'Castellon','Castellon'),(145,195,'Ceuta','Ceuta'),(146,195,'Ciudad Real','Ciudad Real'),(147,195,'Cordoba','Cordoba'),(148,195,'Cuenca','Cuenca'),(149,195,'Girona','Girona'),(150,195,'Granada','Granada'),(151,195,'Guadalajara','Guadalajara'),(152,195,'Guipuzcoa','Guipuzcoa'),(153,195,'Huelva','Huelva'),(154,195,'Huesca','Huesca'),(155,195,'Jaen','Jaen'),(156,195,'La Rioja','La Rioja'),(157,195,'Las Palmas','Las Palmas'),(158,195,'Leon','Leon'),(159,195,'Lleida','Lleida'),(160,195,'Lugo','Lugo'),(161,195,'Madrid','Madrid'),(162,195,'Malaga','Malaga'),(163,195,'Melilla','Melilla'),(164,195,'Murcia','Murcia'),(165,195,'Navarra','Navarra'),(166,195,'Ourense','Ourense'),(167,195,'Palencia','Palencia'),(168,195,'Pontevedra','Pontevedra'),(169,195,'Salamanca','Salamanca'),(170,195,'Santa Cruz de Tenerife','Santa Cruz de Tenerife'),(171,195,'Segovia','Segovia'),(172,195,'Sevilla','Sevilla'),(173,195,'Soria','Soria'),(174,195,'Tarragona','Tarragona'),(175,195,'Teruel','Teruel'),(176,195,'Toledo','Toledo'),(177,195,'Valencia','Valencia'),(178,195,'Valladolid','Valladolid'),(179,195,'Vizcaya','Vizcaya'),(180,195,'Zamora','Zamora'),(181,195,'Zaragoza','Zaragoza'); /*!40000 ALTER TABLE `zones` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `zones_to_geo_zones` -- DROP TABLE IF EXISTS `zones_to_geo_zones`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `zones_to_geo_zones` ( `association_id` int(11) NOT NULL auto_increment, `zone_country_id` int(11) NOT NULL, `zone_id` int(11) default NULL, `geo_zone_id` int(11) default NULL, `last_modified` datetime default NULL, `date_added` datetime NOT NULL, PRIMARY KEY (`association_id`), KEY `idx_zones_to_geo_zones_country_id` (`zone_country_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `zones_to_geo_zones` -- LOCK TABLES `zones_to_geo_zones` WRITE; /*!40000 ALTER TABLE `zones_to_geo_zones` DISABLE KEYS */; INSERT INTO `zones_to_geo_zones` VALUES (1,223,18,1,NULL,'2013-10-23 16:04:26'); /*!40000 ALTER TABLE `zones_to_geo_zones` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database 'aa1_0332c8e_3' -- DELIMITER ;; DELIMITER ; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2016-05-26 6:49:23